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
/*
* UNCustomCaptureWindow.h
*
* Created on: Feb 2, 2009
* Author: julienbachmann
*/
#ifndef UBCUSTOMCAPTUREWINDOW_H_
#define UBCUSTOMCAPTUREWINDOW_H_
#include <QtGui>
/**
* This class is used to do the custom capture of Uninotes
**/
class UBCustomCaptureWindow : public QDialog
{
Q_OBJECT;
public:
UBCustomCaptureWindow(QWidget *parent = 0);
virtual ~UBCustomCaptureWindow();
// launch the custom capture window based on pSreenPixmap.
// The function returns a DialogCode result.
int execute(const QPixmap &pScreenPixmap);
// return the selected area pixmap.
QPixmap getSelectedPixmap();
protected:
virtual void showEvent ( QShowEvent * event );
virtual void mouseMoveEvent ( QMouseEvent * event );
virtual void mousePressEvent ( QMouseEvent * event );
virtual void mouseReleaseEvent ( QMouseEvent * event );
virtual void keyPressEvent ( QKeyEvent * event );
virtual void paintEvent(QPaintEvent *event);
QPixmap mWholeScreenPixmap;
QRubberBand *mSelectionBand;
QStyle *mRubberBandStyle;
QPoint mOrigin;
bool mIsSelecting;
};
#endif /* UBCUSTOMCAPTUREWINDOW_H_ */