-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqrubberband.cpp
121 lines (84 loc) · 2.12 KB
/
qrubberband.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#include <QApplication>
#include <QtGui>
#include <QTimer>
#include <iostream>
#include <QString>
class TestApp: public QApplication {
public:
TestApp(int &argc, char **argv);
public slots:
void timeout();
};
class Tidget : public QMainWindow
{
public:
Tidget(QWidget *parent=0);
void mousePressEvent(QMouseEvent *); // event
void mouseMoveEvent(QMouseEvent *); // event
void mouseReleaseEvent(QMouseEvent *); // event
void setName(QPoint x){
end = x;
}
QPoint getName(){
return end;
}
QRubberBand *rubberBand;
QPoint origin;
QPoint end;
int x1;
int y1;
int x2;
int y2;
int w;
int h;
private:
};
Tidget::Tidget(QWidget *parent)
: QMainWindow(parent)
{
QWidget *mainWidget = new QWidget;
mainWidget->setBackgroundRole(QPalette::Light);
mainWidget->setAutoFillBackground(true);
setCentralWidget(mainWidget);
setStyleSheet("background:transparent;");
setAttribute(Qt::WA_TranslucentBackground);
setWindowFlags(Qt::FramelessWindowHint);
setWindowState(Qt::WindowFullScreen);
rubberBand = NULL;
}
void Tidget::mousePressEvent(QMouseEvent *event)
{
origin = event->pos();
if (!rubberBand)
rubberBand = new QRubberBand(QRubberBand::Rectangle, this);
rubberBand->setGeometry(QRect(origin, QSize()));
rubberBand->show();
x1=event->x();
y1=event->y();
}
void Tidget::mouseMoveEvent(QMouseEvent *event)
{
rubberBand->setGeometry(QRect(origin, event->pos()).normalized());
}
void Tidget::mouseReleaseEvent(QMouseEvent *event)
{
end = event->pos();
x2=event->x();
y2=event->y();
rubberBand->hide();
std::cout <<std::abs(x2-x1)<<"x"<<std::abs(y2-y1)<<"+"<<x1<<"+"<<y1<<std::endl;
QCoreApplication::exit(0);
}
void myMessageOutput(QtMsgType type, const char *msg)
{
//qDebug()<<QMouseEvent;
//do nothing, i.e. discard message completely
}
int main(int argc, char * argv[])
{
QApplication app(argc,argv);
qInstallMsgHandler(myMessageOutput);
Tidget rubber;
rubber.show();
return app.exec();
}