]> sigrok.org Git - pulseview.git/blame - pv/view/triggermarker.hpp
SignalBase: Also emit data related signals
[pulseview.git] / pv / view / triggermarker.hpp
CommitLineData
51ae69ae
TS
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2014 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/>.
51ae69ae
TS
18 */
19
f4e57597
SA
20#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_TRIGGER_MARKER_HPP
21#define PULSEVIEW_PV_VIEWS_TRACEVIEW_TRIGGER_MARKER_HPP
51ae69ae
TS
22
23#include "timeitem.hpp"
24
25namespace pv {
f4e57597
SA
26namespace views {
27namespace TraceView {
51ae69ae
TS
28
29class TriggerMarker : public TimeItem
30{
31 Q_OBJECT
32
33public:
34 static const QColor Colour;
35
36public:
37 /**
38 * Constructor.
39 * @param view A reference to the view that owns this marker.
40 * @param time The time to set the marker to.
41 */
42 TriggerMarker(View &view, const pv::util::Timestamp& time);
43
44 /**
45 * Copy constructor.
46 */
47 TriggerMarker(const TriggerMarker &marker);
48
49 /**
50 * Returns true if the item is visible and enabled.
51 */
52 bool enabled() const override;
53
54 /**
55 Returns true if the item may be dragged/moved.
56 */
57 bool is_draggable() const override;
58
59 /**
60 * Sets the time of the marker.
61 */
62 void set_time(const pv::util::Timestamp& time) override;
63
64 float get_x() const override;
65
66 /**
67 * Gets the arrow-tip point of the time marker.
68 * @param rect the rectangle of the ruler area.
69 */
70 QPoint point(const QRect &rect) const override;
71
72 /**
73 * Paints the foreground layer of the item with a QPainter
74 * @param p the QPainter to paint into.
75 * @param pp the painting parameters object to paint with.
223d0c37 76 */
60938e04 77 void paint_fore(QPainter &p, ViewItemPaintParams &pp) override;
51ae69ae
TS
78
79private:
80 pv::util::Timestamp time_;
81};
82
f4e57597
SA
83} // namespace TraceView
84} // namespace views
51ae69ae
TS
85} // namespace pv
86
f4e57597 87#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_TRIGGER_MARKER_HPP