]> sigrok.org Git - pulseview.git/blame - pv/view/timemarker.h
Improved propagation of drag event so that the scroll bars can be updated
[pulseview.git] / pv / view / timemarker.h
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>
3efda736 25#include <QObject>
ca4ec3ea 26#include <QRectF>
cd6c8ee2
JH
27
28class QPainter;
29class QRect;
30
31namespace pv {
32namespace view {
33
34class View;
35
3efda736 36class TimeMarker : public QObject
cd6c8ee2 37{
3efda736
JH
38 Q_OBJECT
39
cd6c8ee2
JH
40protected:
41 /**
42 * Constructor.
43 * @param view A reference to the view that owns this marker.
44 * @param colour A reference to the colour of this cursor.
45 * @param time The time to set the flag to.
46 */
47 TimeMarker(const View &view, const QColor &colour, double time);
48
3efda736
JH
49 /**
50 * Copy constructor
51 */
52 TimeMarker(const TimeMarker &s);
53
cd6c8ee2
JH
54public:
55 /**
56 * Gets the time of the marker.
57 */
58 double time() const;
59
60 /**
61 * Sets the time of the marker.
62 */
63 void set_time(double time);
64
65 /**
66 * Paints the marker to the viewport.
67 * @param p The painter to draw with.
68 * @param rect The rectangle of the viewport client area.
69 */
70 virtual void paint(QPainter &p, const QRect &rect);
71
ca4ec3ea
JH
72 /**
73 * Gets the marker label rectangle.
74 * @param rect The rectangle of the ruler client area.
75 * @return Returns the label rectangle.
76 */
77 virtual QRectF get_label_rect(const QRect &rect) const = 0;
78
cd6c8ee2
JH
79 /**
80 * Paints the marker's label to the ruler.
81 * @param p The painter to draw with.
82 * @param rect The rectangle of the ruler client area.
83 */
84 virtual void paint_label(QPainter &p, const QRect &rect) = 0;
85
ca4ec3ea
JH
86signals:
87 void time_changed();
88
cd6c8ee2
JH
89protected:
90 const View &_view;
91 const QColor &_colour;
92
93 double _time;
34c1ef02
JH
94
95 QSizeF _text_size;
cd6c8ee2
JH
96};
97
98} // namespace view
99} // namespace pv
100
101#endif // PULSEVIEW_PV_VIEW_MARKER_H