]> sigrok.org Git - pulseview.git/blame - pv/views/trace/triggermarker.cpp
AnalogSignal: Draw analog thresholds differently
[pulseview.git] / pv / views / trace / triggermarker.cpp
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
20#include "triggermarker.hpp"
21#include "view.hpp"
22
23namespace pv {
f4e57597 24namespace views {
1573bf16 25namespace trace {
51ae69ae
TS
26
27const QColor TriggerMarker::Colour(0x00, 0x00, 0xB0);
28
29TriggerMarker::TriggerMarker(View &view, const pv::util::Timestamp& time) :
30 TimeItem(view),
31 time_(time)
32{
33}
34
35TriggerMarker::TriggerMarker(const TriggerMarker &marker) :
36 TimeItem(marker.view_),
37 time_(marker.time_)
38{
39}
40
41bool TriggerMarker::enabled() const
42{
43 return true;
44}
45
46bool TriggerMarker::is_draggable() const
47{
48 return false;
49}
50
51void TriggerMarker::set_time(const pv::util::Timestamp& time)
52{
53 time_ = time;
54
55 view_.time_item_appearance_changed(true, true);
56}
57
58float TriggerMarker::get_x() const
59{
60 return ((time_ - view_.offset()) / view_.scale()).convert_to<float>();
61}
62
a3d5a7c7 63QPoint TriggerMarker::drag_point(const QRect &rect) const
51ae69ae 64{
963be497
SA
65 (void)rect;
66
67 // The trigger marker cannot be moved, so there is no drag point
68 return QPoint(INT_MIN, INT_MIN);
51ae69ae
TS
69}
70
60938e04 71void TriggerMarker::paint_fore(QPainter &p, ViewItemPaintParams &pp)
51ae69ae
TS
72{
73 if (!enabled())
74 return;
75
76 QPen pen(Colour);
77 pen.setStyle(Qt::DashLine);
78
79 const float x = get_x();
80 p.setPen(pen);
81 p.drawLine(QPointF(x, pp.top()), QPointF(x, pp.bottom()));
82}
83
1573bf16 84} // namespace trace
f4e57597 85} // namespace views
51ae69ae 86} // namespace pv