]> sigrok.org Git - pulseview.git/blob - pv/widgets/popup.h
Implemented Popup dialog widget
[pulseview.git] / pv / widgets / popup.h
1 /*
2  * This file is part of the PulseView project.
3  *
4  * Copyright (C) 2013 Joel Holdsworth <joel@airwebreathe.org.uk>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #ifndef PULSEVIEW_PV_WIDGETS_POPUP_H
22 #define PULSEVIEW_PV_WIDGETS_POPUP_H
23
24 #include <QWidget>
25
26 namespace pv {
27 namespace widgets {
28
29 class Popup : public QWidget
30 {
31 public:
32         enum Position
33         {
34                 Right,
35                 Top,
36                 Left,
37                 Bottom
38         };
39
40 private:
41         static const unsigned int ArrowLength;
42         static const unsigned int ArrowOverlap;
43         static const unsigned int MarginWidth;
44
45 public:
46         Popup(QWidget *parent);
47
48         const QPoint& point() const;
49         Position position() const;
50
51         void set_position(const QPoint point, Position pos);
52
53 private:
54         QPolygon arrow_polygon() const;
55
56         QRegion arrow_region() const;
57
58         QRect bubble_rect() const;
59
60         QRegion bubble_region() const;
61
62         QRegion popup_region() const;
63
64         void reposition_widget();
65
66         void paintEvent(QPaintEvent*);
67
68         void resizeEvent(QResizeEvent*);
69
70         void showEvent(QShowEvent*);
71
72         void mouseReleaseEvent(QMouseEvent *e);
73
74 private:
75         QPoint _point;
76         Position _pos;
77 };
78
79 } // namespace widgets
80 } // namespace pv
81
82 #endif // PULSEVIEW_PV_WIDGETS_POPUP_H