]> sigrok.org Git - pulseview.git/blob - pv/widgets/popup.h
e7c867acbad82ed0b49f4ea81d29ac0b4e71d35a
[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         Q_OBJECT
32
33 public:
34         enum Position
35         {
36                 Right,
37                 Top,
38                 Left,
39                 Bottom
40         };
41
42 private:
43         static const unsigned int ArrowLength;
44         static const unsigned int ArrowOverlap;
45         static const unsigned int MarginWidth;
46
47 public:
48         Popup(QWidget *parent);
49
50         const QPoint& point() const;
51         Position position() const;
52
53         void set_position(const QPoint point, Position pos);
54
55 private:
56         QPolygon arrow_polygon() const;
57
58         QRegion arrow_region() const;
59
60         QRect bubble_rect() const;
61
62         QRegion bubble_region() const;
63
64         QRegion popup_region() const;
65
66         void reposition_widget();
67
68 private:
69         void closeEvent(QCloseEvent*);
70
71         void paintEvent(QPaintEvent*);
72
73         void resizeEvent(QResizeEvent*);
74
75         void mouseReleaseEvent(QMouseEvent *e);
76
77 protected:
78         void showEvent(QShowEvent *e);
79
80 signals:
81         void closed();
82
83 private:
84         QPoint _point;
85         Position _pos;
86 };
87
88 } // namespace widgets
89 } // namespace pv
90
91 #endif // PULSEVIEW_PV_WIDGETS_POPUP_H