]> sigrok.org Git - pulseview.git/blame - pv/widgets/popup.hpp
DecodeSignal: Break up annotation storage to allow multiple segments
[pulseview.git] / pv / widgets / popup.hpp
CommitLineData
6e3f046e
JH
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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
6e3f046e
JH
18 */
19
7a01bd36
JH
20#ifndef PULSEVIEW_PV_WIDGETS_POPUP_HPP
21#define PULSEVIEW_PV_WIDGETS_POPUP_HPP
6e3f046e
JH
22
23#include <QWidget>
24
25namespace pv {
26namespace widgets {
27
28class Popup : public QWidget
29{
0bce8609
JH
30 Q_OBJECT
31
6e3f046e
JH
32public:
33 enum Position
34 {
35 Right,
36 Top,
37 Left,
38 Bottom
39 };
40
41private:
42 static const unsigned int ArrowLength;
43 static const unsigned int ArrowOverlap;
44 static const unsigned int MarginWidth;
45
46public:
47 Popup(QWidget *parent);
48
49 const QPoint& point() const;
50 Position position() const;
51
52 void set_position(const QPoint point, Position pos);
53
d9ea9628 54 bool eventFilter(QObject *obj, QEvent *event);
0715fb8c
SA
55
56 void show();
57
6e3f046e 58private:
092e2a0a
JH
59 bool space_for_arrow() const;
60
6e3f046e
JH
61 QPolygon arrow_polygon() const;
62
63 QRegion arrow_region() const;
64
65 QRect bubble_rect() const;
66
67 QRegion bubble_region() const;
68
69 QRegion popup_region() const;
70
71 void reposition_widget();
72
0bce8609
JH
73private:
74 void closeEvent(QCloseEvent*);
75
6e3f046e
JH
76 void paintEvent(QPaintEvent*);
77
78 void resizeEvent(QResizeEvent*);
79
d9ea9628 80 void mouseReleaseEvent(QMouseEvent *event);
6e3f046e 81
b7b659aa 82protected:
d9ea9628 83 void showEvent(QShowEvent *);
b7b659aa 84
e9213170 85Q_SIGNALS:
0bce8609
JH
86 void closed();
87
6e3f046e 88private:
8dbbc7f0
JH
89 QPoint point_;
90 Position pos_;
6e3f046e
JH
91};
92
93} // namespace widgets
94} // namespace pv
95
7a01bd36 96#endif // PULSEVIEW_PV_WIDGETS_POPUP_HPP