]> sigrok.org Git - pulseview.git/blame - pv/view/timemarker.hpp
TimeMarker: Added get_text
[pulseview.git] / pv / view / timemarker.hpp
CommitLineData
cd6c8ee2
JH
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>
1e256e16 25#include <QDoubleSpinBox>
3efda736 26#include <QObject>
ca4ec3ea 27#include <QRectF>
1e256e16 28#include <QWidgetAction>
cd6c8ee2 29
2acdb232 30#include "selectableitem.hpp"
2a2512b2 31
cd6c8ee2
JH
32class QPainter;
33class QRect;
34
35namespace pv {
36namespace view {
37
38class View;
39
2a2512b2 40class TimeMarker : public SelectableItem
cd6c8ee2 41{
3efda736
JH
42 Q_OBJECT
43
4fabd61a
JH
44public:
45 static const int ArrowSize;
46 static const int Offset;
47
cd6c8ee2
JH
48protected:
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 */
8debe10d 55 TimeMarker(View &view, const QColor &colour, double time);
cd6c8ee2
JH
56
57public:
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
509727eb
JH
68 float get_x() const;
69
0dda6fe5
JH
70 /**
71 * Gets the drag point of the row item.
72 */
73 QPoint point() const;
74
cd6c8ee2
JH
75 /**
76 * Paints the marker to the viewport.
77 * @param p The painter to draw with.
78 * @param rect The rectangle of the viewport client area.
79 */
80 virtual void paint(QPainter &p, const QRect &rect);
81
3b84fd6d
JH
82 /**
83 * Gets the text to show in the marker.
84 */
85 virtual QString get_text() const = 0;
86
ca4ec3ea
JH
87 /**
88 * Gets the marker label rectangle.
89 * @param rect The rectangle of the ruler client area.
90 * @return Returns the label rectangle.
91 */
ced0548e 92 virtual QRectF get_label_rect(const QRect &rect) const;
ca4ec3ea 93
cd6c8ee2
JH
94 /**
95 * Paints the marker's label to the ruler.
96 * @param p The painter to draw with.
97 * @param rect The rectangle of the ruler client area.
98 */
4fabd61a 99 void paint_label(QPainter &p, const QRect &rect);
cd6c8ee2 100
a28a212c
JH
101 pv::widgets::Popup* create_popup(QWidget *parent);
102
e9213170 103private Q_SLOTS:
1e256e16
JH
104 void on_value_changed(double value);
105
e9213170 106Q_SIGNALS:
ca4ec3ea
JH
107 void time_changed();
108
cd6c8ee2 109protected:
8dbbc7f0
JH
110 View &view_;
111 const QColor &colour_;
cd6c8ee2 112
8dbbc7f0 113 double time_;
34c1ef02 114
8dbbc7f0 115 QSizeF text_size_;
1e256e16 116
8dbbc7f0
JH
117 QWidgetAction *value_action_;
118 QDoubleSpinBox *value_widget_;
119 bool updating_value_widget_;
cd6c8ee2
JH
120};
121
122} // namespace view
123} // namespace pv
124
8782a1fd 125#endif // PULSEVIEW_PV_VIEW_MARKER_H