]> sigrok.org Git - pulseview.git/blame - pv/widgets/popup.h
Added Popup::closed signal
[pulseview.git] / pv / widgets / popup.h
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
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
26namespace pv {
27namespace widgets {
28
29class Popup : public QWidget
30{
0bce8609
JH
31 Q_OBJECT
32
6e3f046e
JH
33public:
34 enum Position
35 {
36 Right,
37 Top,
38 Left,
39 Bottom
40 };
41
42private:
43 static const unsigned int ArrowLength;
44 static const unsigned int ArrowOverlap;
45 static const unsigned int MarginWidth;
46
47public:
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
55private:
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
0bce8609
JH
68private:
69 void closeEvent(QCloseEvent*);
70
6e3f046e
JH
71 void paintEvent(QPaintEvent*);
72
73 void resizeEvent(QResizeEvent*);
74
6e3f046e
JH
75 void mouseReleaseEvent(QMouseEvent *e);
76
b7b659aa
JH
77protected:
78 void showEvent(QShowEvent *e);
79
0bce8609
JH
80signals:
81 void closed();
82
6e3f046e
JH
83private:
84 QPoint _point;
85 Position _pos;
86};
87
88} // namespace widgets
89} // namespace pv
90
91#endif // PULSEVIEW_PV_WIDGETS_POPUP_H