blob: 42ed60469874c82be4a8cd420bc0ce26d5a7513b [file] [log] [blame]
Edric Milaret7153eed2015-06-03 15:29:03 -04001/***************************************************************************
2 * Copyright (C) 2015 by Savoir-Faire Linux *
3 * Author: Edric Ladent Milaret <edric.ladent-milaret@savoirfairelinux.com>*
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
17 **************************************************************************/
18
19#ifndef SELECTAREADIALOG_H
20#define SELECTAREADIALOG_H
21
22#include <QDialog>
23#include <QMouseEvent>
24#include <QRubberBand>
25#include <QDialog>
26#include <QPixmap>
27
28class SelectAreaDialog : public QDialog
29{
30 Q_OBJECT
31public:
32 SelectAreaDialog();
33protected:
34 void mousePressEvent(QMouseEvent* event);
35 void mouseMoveEvent(QMouseEvent* event);
36 void mouseReleaseEvent(QMouseEvent* event);
37 void paintEvent(QPaintEvent* event);
38private:
39 QPoint origin_;
40 QDialog transDialog_;
41 QRubberBand* rubberBand_;
42 QPixmap originalPixmap_;
43};
44
45#endif // SELECTAREADIALOG_H