]> sigrok.org Git - pulseview.git/blame - pv/widgets/popup.h
Added missing includes and defintions
[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{
31public:
32 enum Position
33 {
34 Right,
35 Top,
36 Left,
37 Bottom
38 };
39
40private:
41 static const unsigned int ArrowLength;
42 static const unsigned int ArrowOverlap;
43 static const unsigned int MarginWidth;
44
45public:
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
53private:
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
6e3f046e
JH
70 void mouseReleaseEvent(QMouseEvent *e);
71
b7b659aa
JH
72protected:
73 void showEvent(QShowEvent *e);
74
6e3f046e
JH
75private:
76 QPoint _point;
77 Position _pos;
78};
79
80} // namespace widgets
81} // namespace pv
82
83#endif // PULSEVIEW_PV_WIDGETS_POPUP_H