]> sigrok.org Git - pulseview.git/blame - pv/views/trace/trace.cpp
Allow for a context menu in the view area
[pulseview.git] / pv / views / trace / trace.cpp
CommitLineData
931f20b0
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2013 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/>.
931f20b0
JH
18 */
19
20#include <extdef.h>
21
eb8269e3 22#include <cassert>
d9e71737 23#include <cmath>
931f20b0 24
d7c0ca4a 25#include <QApplication>
b213ef09 26#include <QFormLayout>
0891e69b 27#include <QKeyEvent>
b213ef09
JH
28#include <QLineEdit>
29
2acdb232
JH
30#include "trace.hpp"
31#include "tracepalette.hpp"
32#include "view.hpp"
931f20b0 33
24c29d4f 34#include "pv/globalsettings.hpp"
641574bc 35#include "pv/widgets/colorbutton.hpp"
24c29d4f 36#include "pv/widgets/popup.hpp"
569d1e41 37
6f925ba9
UH
38using std::pair;
39using std::shared_ptr;
40
931f20b0 41namespace pv {
f4e57597 42namespace views {
1573bf16 43namespace trace {
931f20b0 44
c063290a 45const QPen Trace::AxisPen(QColor(0, 0, 0, 30 * 256 / 100));
931f20b0
JH
46const int Trace::LabelHitPadding = 2;
47
641574bc
SA
48const QColor Trace::BrightGrayBGColor = QColor(0, 0, 0, 10 * 255 / 100);
49const QColor Trace::DarkGrayBGColor = QColor(0, 0, 0, 15 * 255 / 100);
ac0708fb 50
6f925ba9 51Trace::Trace(shared_ptr<data::SignalBase> channel) :
73a25a6e 52 base_(channel),
561ba3ae 53 axis_pen_(AxisPen),
7daebd05 54 segment_display_mode_(ShowLastSegmentOnly), // Will be overwritten by View
2749b858 55 current_segment_(0),
4c60462b
JH
56 popup_(nullptr),
57 popup_form_(nullptr)
931f20b0 58{
bf0edd2b
SA
59 connect(channel.get(), SIGNAL(name_changed(const QString&)),
60 this, SLOT(on_name_changed(const QString&)));
641574bc
SA
61 connect(channel.get(), SIGNAL(color_changed(const QColor&)),
62 this, SLOT(on_color_changed(const QColor&)));
1931b5f9
SA
63
64 GlobalSettings::add_change_handler(this);
65
66 GlobalSettings settings;
67 show_hover_marker_ =
68 settings.value(GlobalSettings::Key_View_ShowHoverMarker).toBool();
931f20b0
JH
69}
70
99c49526
SA
71Trace::~Trace()
72{
73 GlobalSettings::remove_change_handler(this);
74}
75
5ed05b69
SA
76shared_ptr<data::SignalBase> Trace::base() const
77{
78 return base_;
79}
80
1931b5f9
SA
81void Trace::set_segment_display_mode(SegmentDisplayMode mode)
82{
83 segment_display_mode_ = mode;
84
85 if (owner_)
86 owner_->row_item_appearance_changed(true, true);
87}
88
89void Trace::on_setting_changed(const QString &key, const QVariant &value)
90{
91 if (key == GlobalSettings::Key_View_ShowHoverMarker)
92 show_hover_marker_ = value.toBool();
93}
94
b3f44329 95void Trace::paint_label(QPainter &p, const QRect &rect, bool hover)
01fd3263 96{
be9e7b4b 97 const int y = get_visual_y();
01fd3263 98
641574bc 99 p.setBrush(base_->color());
931f20b0
JH
100
101 if (!enabled())
102 return;
103
b3f44329 104 const QRectF r = label_rect(rect);
931f20b0 105
c1a6513b
SA
106 // When selected, move the arrow to the left so that the border can show
107 const QPointF offs = (selected()) ? QPointF(-2, 0) : QPointF(0, 0);
108
931f20b0 109 // Paint the label
b5cb6c35 110 const float label_arrow_length = r.height() / 2;
c1a6513b
SA
111 QPointF points[] = {
112 offs + r.topLeft(),
113 offs + QPointF(r.right() - label_arrow_length, r.top()),
114 offs + QPointF(r.right(), y),
115 offs + QPointF(r.right() - label_arrow_length, r.bottom()),
116 offs + r.bottomLeft()
931f20b0 117 };
c1a6513b
SA
118 QPointF highlight_points[] = {
119 offs + QPointF(r.left() + 1, r.top() + 1),
120 offs + QPointF(r.right() - label_arrow_length, r.top() + 1),
121 offs + QPointF(r.right() - 1, y),
122 offs + QPointF(r.right() - label_arrow_length, r.bottom() - 1),
123 offs + QPointF(r.left() + 1, r.bottom() - 1)
931f20b0
JH
124 };
125
126 if (selected()) {
127 p.setPen(highlight_pen());
128 p.setBrush(Qt::transparent);
129 p.drawPolygon(points, countof(points));
130 }
131
132 p.setPen(Qt::transparent);
641574bc 133 p.setBrush(hover ? base_->color().lighter() : base_->color());
931f20b0
JH
134 p.drawPolygon(points, countof(points));
135
641574bc 136 p.setPen(base_->color().lighter());
931f20b0
JH
137 p.setBrush(Qt::transparent);
138 p.drawPolygon(highlight_points, countof(highlight_points));
139
641574bc 140 p.setPen(base_->color().darker());
931f20b0
JH
141 p.setBrush(Qt::transparent);
142 p.drawPolygon(points, countof(points));
143
144 // Paint the text
641574bc 145 p.setPen(select_text_color(base_->color()));
d7c0ca4a 146 p.setFont(QApplication::font());
b5cb6c35
JH
147 p.drawText(QRectF(r.x(), r.y(),
148 r.width() - label_arrow_length, r.height()),
73a25a6e 149 Qt::AlignCenter | Qt::AlignVCenter, base_->name());
931f20b0
JH
150}
151
9b6378f1
JH
152QMenu* Trace::create_context_menu(QWidget *parent)
153{
26e3af6b 154 QMenu *const menu = ViewItem::create_context_menu(parent);
9b6378f1 155
9b6378f1
JH
156 return menu;
157}
158
569d1e41
JH
159pv::widgets::Popup* Trace::create_popup(QWidget *parent)
160{
161 using pv::widgets::Popup;
20eaae39 162
8dbbc7f0 163 popup_ = new Popup(parent);
786b7678 164 popup_->set_position(parent->mapToGlobal(
a3d5a7c7 165 drag_point(parent->rect())), Popup::Right);
20eaae39 166
37fd11b1 167 create_popup_form();
20eaae39 168
c063290a 169 connect(popup_, SIGNAL(closed()), this, SLOT(on_popup_closed()));
20eaae39 170
8dbbc7f0 171 return popup_;
569d1e41
JH
172}
173
b3f44329 174QRectF Trace::label_rect(const QRectF &rect) const
d7c0ca4a 175{
d7c0ca4a
JH
176 QFontMetrics m(QApplication::font());
177 const QSize text_size(
73a25a6e 178 m.boundingRect(QRect(), 0, base_->name()).width(), m.height());
d7c0ca4a 179 const QSizeF label_size(
ec39632d
JH
180 text_size.width() + LabelPadding.width() * 2,
181 ceilf((text_size.height() + LabelPadding.height() * 2) / 2) * 2);
b5cb6c35 182 const float half_height = label_size.height() / 2;
d7c0ca4a 183 return QRectF(
b3f44329 184 rect.right() - half_height - label_size.width() - 0.5,
be9e7b4b 185 get_visual_y() + 0.5f - half_height,
b5cb6c35
JH
186 label_size.width() + half_height,
187 label_size.height());
d7c0ca4a
JH
188}
189
d9b55cc8
SA
190QRectF Trace::hit_box_rect(const ViewItemPaintParams &pp) const
191{
192 pair<int, int> extents = v_extents();
193 const int top = pp.top() + get_visual_y() + extents.first;
194 const int height = extents.second - extents.first;
195 return QRectF(pp.left(), top, pp.width(), height);
196}
197
2749b858
SA
198void Trace::set_current_segment(const int segment)
199{
200 current_segment_ = segment;
201}
202
203int Trace::get_current_segment() const
204{
205 return current_segment_;
206}
207
1931b5f9
SA
208void Trace::hover_point_changed(const QPoint &hp)
209{
210 (void)hp;
211
212 if (owner_)
213 owner_->row_item_appearance_changed(false, true);
214}
215
60938e04 216void Trace::paint_back(QPainter &p, ViewItemPaintParams &pp)
99af6802 217{
48995388
JH
218 const View *view = owner_->view();
219 assert(view);
220
641574bc
SA
221 if (view->colored_bg())
222 p.setBrush(base_->bgcolor());
ac0708fb 223 else
641574bc 224 p.setBrush(pp.next_bg_color_state() ? BrightGrayBGColor : DarkGrayBGColor);
99af6802 225
ac0708fb 226 p.setPen(QPen(Qt::NoPen));
99af6802 227
6f925ba9 228 const pair<int, int> extents = v_extents();
857ebbef
JH
229 p.drawRect(pp.left(), get_visual_y() + extents.first,
230 pp.width(), extents.second - extents.first);
99af6802
SA
231}
232
60938e04 233void Trace::paint_axis(QPainter &p, ViewItemPaintParams &pp, int y)
fe08b6e8 234{
46a0cadc
SA
235 p.setRenderHint(QPainter::Antialiasing, false);
236
561ba3ae 237 p.setPen(axis_pen_);
46a0cadc
SA
238 p.drawLine(QPointF(pp.left(), y), QPointF(pp.right(), y));
239
240 p.setRenderHint(QPainter::Antialiasing, true);
fe08b6e8
JH
241}
242
641574bc 243void Trace::add_color_option(QWidget *parent, QFormLayout *form)
91e8bf08 244{
641574bc 245 using pv::widgets::ColorButton;
91e8bf08 246
641574bc 247 ColorButton *const color_button = new ColorButton(
91e8bf08 248 TracePalette::Rows, TracePalette::Cols, parent);
641574bc
SA
249 color_button->set_palette(TracePalette::Colors);
250 color_button->set_color(base_->color());
251 connect(color_button, SIGNAL(selected(const QColor&)),
252 this, SLOT(on_coloredit_changed(const QColor&)));
91e8bf08 253
641574bc 254 form->addRow(tr("Color"), color_button);
91e8bf08
JH
255}
256
1931b5f9
SA
257void Trace::paint_hover_marker(QPainter &p)
258{
259 const View *view = owner_->view();
260 assert(view);
261
262 const int x = view->hover_point().x();
263
264 if (x == -1)
265 return;
266
267 p.setPen(QPen(QColor(Qt::lightGray)));
268
269 const pair<int, int> extents = v_extents();
270
271 p.setRenderHint(QPainter::Antialiasing, false);
272 p.drawLine(x, get_visual_y() + extents.first,
273 x, get_visual_y() + extents.second);
274 p.setRenderHint(QPainter::Antialiasing, true);
275}
276
37fd11b1
JH
277void Trace::create_popup_form()
278{
279 // Clear the layout
280
281 // Transfer the layout and the child widgets to a temporary widget
e3004449
EO
282 // which we delete after the event was handled. This way, the layout
283 // and all widgets contained therein are deleted after the event was
284 // handled, leaving the parent popup_ time to handle the change.
285 if (popup_form_) {
286 QWidget *suicidal = new QWidget();
287 suicidal->setLayout(popup_form_);
288 suicidal->deleteLater();
289 }
37fd11b1
JH
290
291 // Repopulate the popup
8dbbc7f0
JH
292 popup_form_ = new QFormLayout(popup_);
293 popup_->setLayout(popup_form_);
294 populate_popup_form(popup_, popup_form_);
37fd11b1
JH
295}
296
569d1e41
JH
297void Trace::populate_popup_form(QWidget *parent, QFormLayout *form)
298{
68456dab 299 QLineEdit *const name_edit = new QLineEdit(parent);
73a25a6e 300 name_edit->setText(base_->name());
68456dab 301 connect(name_edit, SIGNAL(textChanged(const QString&)),
bf0edd2b 302 this, SLOT(on_nameedit_changed(const QString&)));
68456dab 303 form->addRow(tr("Name"), name_edit);
91e8bf08 304
641574bc 305 add_color_option(parent, form);
569d1e41
JH
306}
307
bf0edd2b
SA
308void Trace::on_name_changed(const QString &text)
309{
310 /* This event handler is called by SignalBase when the name was changed there */
311 (void)text;
312
313 if (owner_) {
8dbbc7f0 314 owner_->extents_changed(true, false);
bf0edd2b
SA
315 owner_->row_item_appearance_changed(true, false);
316 }
68456dab 317}
9b6378f1 318
641574bc 319void Trace::on_color_changed(const QColor &color)
91e8bf08 320{
641574bc
SA
321 /* This event handler is called by SignalBase when the color was changed there */
322 (void)color;
32218d3e 323
8dbbc7f0 324 if (owner_)
99af6802 325 owner_->row_item_appearance_changed(true, true);
91e8bf08
JH
326}
327
bf0edd2b
SA
328void Trace::on_popup_closed()
329{
330 popup_ = nullptr;
331 popup_form_ = nullptr;
332}
333
334void Trace::on_nameedit_changed(const QString &name)
335{
336 /* This event handler notifies SignalBase that the name changed */
0acf629d 337 base_->set_name(name);
bf0edd2b
SA
338}
339
641574bc 340void Trace::on_coloredit_changed(const QColor &color)
bf0edd2b 341{
641574bc 342 /* This event handler notifies SignalBase that the color changed */
0acf629d 343 base_->set_color(color);
bf0edd2b
SA
344}
345
1573bf16 346} // namespace trace
f4e57597 347} // namespace views
931f20b0 348} // namespace pv