]> sigrok.org Git - pulseview.git/blame - pv/widgets/popup.hpp
WellArray: Renamed to avoid namespace collissions, now that QWellArray is public
[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
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
0715fb8c
SA
55 bool eventFilter(QObject *obj, QEvent *evt);
56
57 void show();
58
6e3f046e 59private:
092e2a0a
JH
60 bool space_for_arrow() const;
61
6e3f046e
JH
62 QPolygon arrow_polygon() const;
63
64 QRegion arrow_region() const;
65
66 QRect bubble_rect() const;
67
68 QRegion bubble_region() const;
69
70 QRegion popup_region() const;
71
72 void reposition_widget();
73
0bce8609
JH
74private:
75 void closeEvent(QCloseEvent*);
76
6e3f046e
JH
77 void paintEvent(QPaintEvent*);
78
79 void resizeEvent(QResizeEvent*);
80
6e3f046e
JH
81 void mouseReleaseEvent(QMouseEvent *e);
82
b7b659aa
JH
83protected:
84 void showEvent(QShowEvent *e);
85
e9213170 86Q_SIGNALS:
0bce8609
JH
87 void closed();
88
6e3f046e 89private:
8dbbc7f0
JH
90 QPoint point_;
91 Position pos_;
6e3f046e
JH
92};
93
94} // namespace widgets
95} // namespace pv
96
97#endif // PULSEVIEW_PV_WIDGETS_POPUP_H