]> sigrok.org Git - pulseview.git/blame - pv/views/trace/timemarker.hpp
Move trace view files
[pulseview.git] / pv / views / trace / 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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
cd6c8ee2
JH
18 */
19
f4e57597
SA
20#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_MARKER_HPP
21#define PULSEVIEW_PV_VIEWS_TRACEVIEW_MARKER_HPP
cd6c8ee2
JH
22
23#include <QColor>
1e256e16 24#include <QDoubleSpinBox>
3efda736 25#include <QObject>
ca4ec3ea 26#include <QRectF>
1e256e16 27#include <QWidgetAction>
cd6c8ee2 28
ad341c3a 29#include "timeitem.hpp"
2a2512b2 30
cd6c8ee2
JH
31class QPainter;
32class QRect;
33
34namespace pv {
806d3e1e
JS
35namespace widgets {
36 class TimestampSpinBox;
37}
38
f4e57597 39namespace views {
1573bf16 40namespace trace {
cd6c8ee2
JH
41
42class View;
43
ad341c3a 44class TimeMarker : public TimeItem
cd6c8ee2 45{
3efda736
JH
46 Q_OBJECT
47
4fabd61a
JH
48public:
49 static const int ArrowSize;
4fabd61a 50
cd6c8ee2
JH
51protected:
52 /**
53 * Constructor.
54 * @param view A reference to the view that owns this marker.
55 * @param colour A reference to the colour of this cursor.
56 * @param time The time to set the flag to.
57 */
60d9b99a 58 TimeMarker(View &view, const QColor &colour, const pv::util::Timestamp& time);
cd6c8ee2
JH
59
60public:
61 /**
62 * Gets the time of the marker.
63 */
60d9b99a 64 const pv::util::Timestamp& time() const;
cd6c8ee2
JH
65
66 /**
67 * Sets the time of the marker.
68 */
60d9b99a 69 void set_time(const pv::util::Timestamp& time) override;
cd6c8ee2 70
b2650e69 71 float get_x() const override;
509727eb 72
0dda6fe5 73 /**
be717066
JH
74 * Gets the arrow-tip point of the time marker.
75 * @param rect the rectangle of the ruler area.
0dda6fe5 76 */
b2650e69 77 QPoint point(const QRect &rect) const override;
0dda6fe5 78
3b84fd6d 79 /**
4a5c385e
JH
80 * Computes the outline rectangle of a label.
81 * @param rect the rectangle of the header area.
82 * @return Returns the rectangle of the signal label.
3b84fd6d 83 */
b2650e69 84 QRectF label_rect(const QRectF &rect) const override;
3b84fd6d 85
7708eb92
JH
86 /**
87 * Computes the outline rectangle of the viewport hit-box.
88 * @param rect the rectangle of the viewport area.
89 * @return Returns the rectangle of the hit-box.
90 */
b2650e69 91 QRectF hit_box_rect(const ViewItemPaintParams &pp) const override;
7708eb92 92
ca4ec3ea 93 /**
4a5c385e 94 * Gets the text to show in the marker.
ca4ec3ea 95 */
4a5c385e 96 virtual QString get_text() const = 0;
ca4ec3ea 97
cd6c8ee2
JH
98 /**
99 * Paints the marker's label to the ruler.
100 * @param p The painter to draw with.
101 * @param rect The rectangle of the ruler client area.
49028d6c 102 * @param hover true if the label is being hovered over by the mouse.
cd6c8ee2 103 */
b2650e69 104 void paint_label(QPainter &p, const QRect &rect, bool hover) override;
cd6c8ee2 105
beb897c6
JH
106 /**
107 * Paints the foreground layer of the item with a QPainter
108 * @param p the QPainter to paint into.
109 * @param pp the painting parameters object to paint with.
223d0c37 110 */
60938e04 111 void paint_fore(QPainter &p, ViewItemPaintParams &pp) override;
beb897c6 112
b2650e69 113 virtual pv::widgets::Popup* create_popup(QWidget *parent) override;
a28a212c 114
e9213170 115private Q_SLOTS:
806d3e1e 116 void on_value_changed(const pv::util::Timestamp& value);
1e256e16 117
cd6c8ee2 118protected:
8dbbc7f0 119 const QColor &colour_;
cd6c8ee2 120
60d9b99a 121 pv::util::Timestamp time_;
34c1ef02 122
8dbbc7f0 123 QSizeF text_size_;
1e256e16 124
8dbbc7f0 125 QWidgetAction *value_action_;
806d3e1e 126 pv::widgets::TimestampSpinBox *value_widget_;
8dbbc7f0 127 bool updating_value_widget_;
cd6c8ee2
JH
128};
129
1573bf16 130} // namespace trace
f4e57597 131} // namespace views
cd6c8ee2
JH
132} // namespace pv
133
f4e57597 134#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_MARKER_HPP