]> sigrok.org Git - pulseview.git/blame - pv/view/timemarker.h
Added get_context_bar_actions
[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 27
2a2512b2
JH
28#include "selectableitem.h"
29
cd6c8ee2
JH
30class QPainter;
31class QRect;
32
33namespace pv {
34namespace view {
35
36class View;
37
2a2512b2 38class TimeMarker : public SelectableItem
cd6c8ee2 39{
3efda736
JH
40 Q_OBJECT
41
cd6c8ee2
JH
42protected:
43 /**
44 * Constructor.
45 * @param view A reference to the view that owns this marker.
46 * @param colour A reference to the colour of this cursor.
47 * @param time The time to set the flag to.
48 */
49 TimeMarker(const View &view, const QColor &colour, double time);
50
51public:
52 /**
53 * Gets the time of the marker.
54 */
55 double time() const;
56
57 /**
58 * Sets the time of the marker.
59 */
60 void set_time(double time);
61
62 /**
63 * Paints the marker to the viewport.
64 * @param p The painter to draw with.
65 * @param rect The rectangle of the viewport client area.
66 */
67 virtual void paint(QPainter &p, const QRect &rect);
68
ca4ec3ea
JH
69 /**
70 * Gets the marker label rectangle.
71 * @param rect The rectangle of the ruler client area.
72 * @return Returns the label rectangle.
73 */
74 virtual QRectF get_label_rect(const QRect &rect) const = 0;
75
cd6c8ee2
JH
76 /**
77 * Paints the marker's label to the ruler.
78 * @param p The painter to draw with.
79 * @param rect The rectangle of the ruler client area.
3a6fe081 80 * @param prefix The SI prefix to paint time value with.
cd6c8ee2 81 */
3a6fe081
JH
82 virtual void paint_label(QPainter &p, const QRect &rect,
83 unsigned int prefix) = 0;
cd6c8ee2 84
a55c544b
JH
85 /**
86 * Returns a list of context menu items to show in the context
87 * bar.
88 */
89 const std::list<QAction*> get_context_bar_actions();
90
ca4ec3ea
JH
91signals:
92 void time_changed();
93
cd6c8ee2
JH
94protected:
95 const View &_view;
96 const QColor &_colour;
97
98 double _time;
34c1ef02
JH
99
100 QSizeF _text_size;
cd6c8ee2
JH
101};
102
103} // namespace view
104} // namespace pv
105
8782a1fd 106#endif // PULSEVIEW_PV_VIEW_MARKER_H