]> sigrok.org Git - pulseview.git/blob - pv/view/timemarker.hpp
ViewItem: Moved in paint_label
[pulseview.git] / pv / view / timemarker.hpp
1 /*
2  * This file is part of the PulseView project.
3  *
4  * Copyright (C) 2012 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_VIEW_MARKER_H
22 #define PULSEVIEW_PV_VIEW_MARKER_H
23
24 #include <QColor>
25 #include <QDoubleSpinBox>
26 #include <QObject>
27 #include <QRectF>
28 #include <QWidgetAction>
29
30 #include "timeitem.hpp"
31
32 class QPainter;
33 class QRect;
34
35 namespace pv {
36 namespace view {
37
38 class View;
39
40 class TimeMarker : public TimeItem
41 {
42         Q_OBJECT
43
44 public:
45         static const int ArrowSize;
46         static const int Offset;
47
48 protected:
49         /**
50          * Constructor.
51          * @param view A reference to the view that owns this marker.
52          * @param colour A reference to the colour of this cursor.
53          * @param time The time to set the flag to.
54          */
55         TimeMarker(View &view, const QColor &colour, double time);
56
57 public:
58         /**
59          * Gets the time of the marker.
60          */
61         double time() const;
62
63         /**
64          * Sets the time of the marker.
65          */
66         void set_time(double time);
67
68         float get_x() const;
69
70         /**
71          * Gets the drag point of the row item.
72          */
73         QPoint point() const;
74
75         /**
76          * Computes the outline rectangle of a label.
77          * @param rect the rectangle of the header area.
78          * @return Returns the rectangle of the signal label.
79          */
80         QRectF label_rect(const QRectF &rect) const;
81
82         /**
83          * Gets the text to show in the marker.
84          */
85         virtual QString get_text() const = 0;
86
87         /**
88          * Paints the marker's label to the ruler.
89          * @param p The painter to draw with.
90          * @param rect The rectangle of the ruler client area.
91          * @param hover true if the label is being hovered over by the mouse.
92          */
93         void paint_label(QPainter &p, const QRect &rect, bool hover);
94
95         /**
96          * Paints the foreground layer of the item with a QPainter
97          * @param p the QPainter to paint into.
98          * @param pp the painting parameters object to paint with.
99          **/
100         void paint_fore(QPainter &p, const ViewItemPaintParams &pp);
101
102         virtual pv::widgets::Popup* create_popup(QWidget *parent);
103
104 private Q_SLOTS:
105         void on_value_changed(double value);
106
107 protected:
108         const QColor &colour_;
109
110         double time_;
111
112         QSizeF text_size_;
113
114         QWidgetAction *value_action_;
115         QDoubleSpinBox *value_widget_;
116         bool updating_value_widget_;
117 };
118
119 } // namespace view
120 } // namespace pv
121
122 #endif // PULSEVIEW_PV_VIEW_MARKER_H