]> sigrok.org Git - pulseview.git/blame - pv/view/timemarker.cpp
CursorPair: Paint with ViewItem::paint_fore/paint_back
[pulseview.git] / pv / view / timemarker.cpp
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
4fabd61a
JH
21#include <algorithm>
22
23#include <extdef.h>
24
2acdb232 25#include "timemarker.hpp"
cd6c8ee2 26
2acdb232 27#include "view.hpp"
cd6c8ee2 28
ced0548e 29#include <QApplication>
b213ef09 30#include <QFormLayout>
ced0548e 31#include <QFontMetrics>
cd6c8ee2
JH
32#include <QPainter>
33
2acdb232 34#include <pv/widgets/popup.hpp>
a28a212c 35
4fabd61a
JH
36using std::max;
37using std::min;
38
cd6c8ee2
JH
39namespace pv {
40namespace view {
41
4fabd61a
JH
42const int TimeMarker::ArrowSize = 4;
43const int TimeMarker::Offset = 1;
44
8debe10d 45TimeMarker::TimeMarker(View &view, const QColor &colour, double time) :
ad341c3a 46 TimeItem(view),
8dbbc7f0
JH
47 colour_(colour),
48 time_(time),
49 value_action_(NULL),
50 value_widget_(NULL),
51 updating_value_widget_(false)
cd6c8ee2 52{
ef8311a4
JH
53}
54
cd6c8ee2
JH
55double TimeMarker::time() const
56{
8dbbc7f0 57 return time_;
cd6c8ee2
JH
58}
59
509727eb
JH
60float TimeMarker::get_x() const
61{
8dbbc7f0 62 return (time_ - view_.offset()) / view_.scale();
509727eb
JH
63}
64
0dda6fe5
JH
65QPoint TimeMarker::point() const
66{
67 return QPoint(get_x(), 0);
68}
69
cd6c8ee2
JH
70void TimeMarker::set_time(double time)
71{
8dbbc7f0 72 time_ = time;
317008ba 73
8dbbc7f0
JH
74 if (value_widget_) {
75 updating_value_widget_ = true;
76 value_widget_->setValue(time);
77 updating_value_widget_ = false;
317008ba
JH
78 }
79
ca4ec3ea 80 time_changed();
cd6c8ee2
JH
81}
82
689dea92 83QRectF TimeMarker::label_rect(const QRectF &rect) const
ced0548e
JH
84{
85 const float x = (time_ - view_.offset()) / view_.scale();
86
87 QFontMetrics m(QApplication::font());
312f4083
JH
88 const float text_width =
89 max(m.boundingRect(get_text()).size().width(), ArrowSize);
90 const float text_height = m.boundingRect("Tg").size().height();
ced0548e
JH
91
92 const QSizeF label_size(
312f4083
JH
93 text_width + View::LabelPadding.width() * 2,
94 text_height + View::LabelPadding.height() * 2);
ced0548e
JH
95 const float top = rect.height() - label_size.height() -
96 TimeMarker::Offset - TimeMarker::ArrowSize - 0.5f;
97 const float height = label_size.height();
98
312f4083 99 return QRectF(x - label_size.width() / 2, top,
ced0548e
JH
100 label_size.width(), height);
101}
102
4fabd61a
JH
103void TimeMarker::paint_label(QPainter &p, const QRect &rect)
104{
096fb584
JH
105 if (!enabled())
106 return;
107
4fabd61a 108 const qreal x = (time_ - view_.offset()) / view_.scale();
689dea92 109 const QRectF r(label_rect(rect));
4fabd61a
JH
110
111 const QPointF points[] = {
112 r.topLeft(),
113 r.bottomLeft(),
114 QPointF(max(r.left(), x - ArrowSize), r.bottom()),
115 QPointF(x, rect.bottom()),
116 QPointF(min(r.right(), x + ArrowSize), r.bottom()),
117 r.bottomRight(),
118 r.topRight()
119 };
120
121 const QPointF highlight_points[] = {
122 QPointF(r.left() + 1, r.top() + 1),
123 QPointF(r.left() + 1, r.bottom() - 1),
124 QPointF(max(r.left() + 1, x - ArrowSize), r.bottom() - 1),
125 QPointF(min(max(r.left() + 1, x), r.right() - 1),
126 rect.bottom() - 1),
127 QPointF(min(r.right() - 1, x + ArrowSize), r.bottom() - 1),
128 QPointF(r.right() - 1, r.bottom() - 1),
129 QPointF(r.right() - 1, r.top() + 1),
130 };
131
132 if (selected()) {
133 p.setPen(highlight_pen());
134 p.setBrush(Qt::transparent);
135 p.drawPolygon(points, countof(points));
136 }
137
138 p.setPen(Qt::transparent);
139 p.setBrush(colour_);
140 p.drawPolygon(points, countof(points));
141
142 p.setPen(colour_.lighter());
143 p.setBrush(Qt::transparent);
144 p.drawPolygon(highlight_points, countof(highlight_points));
145
146 p.setPen(colour_.darker());
147 p.setBrush(Qt::transparent);
148 p.drawPolygon(points, countof(points));
149
150 p.setPen(select_text_colour(colour_));
3b84fd6d 151 p.drawText(r, Qt::AlignCenter | Qt::AlignVCenter, get_text());
4fabd61a
JH
152}
153
beb897c6
JH
154void TimeMarker::paint_fore(QPainter &p, const ViewItemPaintParams &pp)
155{
156 if (!enabled())
157 return;
158
159 const float x = get_x();
160 p.setPen(colour_.darker());
161 p.drawLine(QPointF(x, pp.top()), QPointF(x, pp.bottom()));
162}
163
a28a212c
JH
164pv::widgets::Popup* TimeMarker::create_popup(QWidget *parent)
165{
166 using pv::widgets::Popup;
167
168 Popup *const popup = new Popup(parent);
169 QFormLayout *const form = new QFormLayout(popup);
170 popup->setLayout(form);
171
8dbbc7f0
JH
172 value_widget_ = new QDoubleSpinBox(parent);
173 value_widget_->setDecimals(9);
174 value_widget_->setSuffix("s");
175 value_widget_->setSingleStep(1e-6);
bccef542 176 value_widget_->setRange(-1.0e9, 1.0e9);
8dbbc7f0 177 value_widget_->setValue(time_);
a28a212c 178
8dbbc7f0 179 connect(value_widget_, SIGNAL(valueChanged(double)),
a28a212c
JH
180 this, SLOT(on_value_changed(double)));
181
8dbbc7f0 182 form->addRow(tr("Time"), value_widget_);
a28a212c
JH
183
184 return popup;
185}
186
1e256e16
JH
187void TimeMarker::on_value_changed(double value)
188{
8dbbc7f0
JH
189 if (!updating_value_widget_) {
190 time_ = value;
1e256e16
JH
191 time_changed();
192 }
193}
194
cd6c8ee2
JH
195} // namespace view
196} // namespace pv