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