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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/*
* UNCustomCaptureWindow.cpp
*
* Created on: Feb 2, 2009
* Author: julienbachmann
*/
#include "UBCustomCaptureWindow.h"
#include "gui/UBRubberBand.h"
UBCustomCaptureWindow::UBCustomCaptureWindow(QWidget *parent)
: QDialog(parent, Qt::FramelessWindowHint | Qt::Window)
, mSelectionBand(0)
, mRubberBandStyle(0)
, mOrigin(0,0)
, mIsSelecting(false)
{
setCursor(Qt::CrossCursor);
setWindowOpacity(0.0);
}
UBCustomCaptureWindow::~UBCustomCaptureWindow()
{
delete mSelectionBand;
delete mRubberBandStyle;
}
QPixmap UBCustomCaptureWindow::getSelectedPixmap()
{
if (mSelectionBand)
{
return mWholeScreenPixmap.copy(mSelectionBand->geometry());
}
else
{
return QPixmap();
}
}
int UBCustomCaptureWindow::execute(const QPixmap &pScreenPixmap)
{
mWholeScreenPixmap = pScreenPixmap;
QDesktopWidget *desktop = QApplication::desktop();
int currentScreen = desktop->screenNumber(QCursor::pos());
setGeometry(desktop->screenGeometry(currentScreen));
showFullScreen();
setWindowOpacity(1.0);
return exec();
}
void UBCustomCaptureWindow::mouseMoveEvent ( QMouseEvent * event )
{
if (mIsSelecting)
{
mSelectionBand->setGeometry(QRect(mOrigin, event->pos()).normalized());
}
event->accept();
}
void UBCustomCaptureWindow::mousePressEvent ( QMouseEvent * event )
{
if (!mIsSelecting)
{
mIsSelecting = true;
mOrigin = event->pos();
if (!mSelectionBand)
{
mSelectionBand = new UBRubberBand(QRubberBand::Rectangle, this);
}
mSelectionBand->setGeometry(QRect(mOrigin, QSize()));
mSelectionBand->show();
event->accept();
}
}
void UBCustomCaptureWindow::mouseReleaseEvent ( QMouseEvent * event )
{
mIsSelecting = false;
if (mSelectionBand)
{
mSelectionBand->hide();
}
event->accept();
// do not accept very small selection
if (!(mSelectionBand->geometry().width() < 6 && mSelectionBand->geometry().height() < 6))
{
accept();
}
}
void UBCustomCaptureWindow::keyPressEvent ( QKeyEvent * event )
{
if (event->key() == Qt::Key_Escape)
{
mIsSelecting = false;
if (mSelectionBand)
{
mSelectionBand->hide();
}
event->accept();
reject();
}
}
void UBCustomCaptureWindow::showEvent ( QShowEvent * event )
{
Q_UNUSED(event);
}
void UBCustomCaptureWindow::paintEvent(QPaintEvent *event)
{
Q_UNUSED(event);
QPainter painter(this);
painter.drawPixmap(0,0, mWholeScreenPixmap);
}