]> sigrok.org Git - pulseview.git/blame - pv/view/trace.cpp
Build fixes for Qt5 Windows/mingw/MXE support.
[pulseview.git] / pv / view / 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
22#include <assert.h>
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
2acdb232
JH
34#include <pv/widgets/colourbutton.hpp>
35#include <pv/widgets/popup.hpp>
569d1e41 36
931f20b0 37namespace pv {
f4e57597
SA
38namespace views {
39namespace TraceView {
931f20b0 40
46a0cadc 41const QPen Trace::AxisPen(QColor(0, 0, 0, 30*256/100));
931f20b0
JH
42const int Trace::LabelHitPadding = 2;
43
d55923a6
SA
44const QColor Trace::BrightGrayBGColour = QColor(0, 0, 0, 10*255/100);
45const QColor Trace::DarkGrayBGColour = QColor(0, 0, 0, 15*255/100);
ac0708fb 46
bf0edd2b 47Trace::Trace(std::shared_ptr<data::SignalBase> channel) :
73a25a6e 48 base_(channel),
574c568d 49 coloured_bg_(true), // Default setting is set in MainWindow::setup_ui()
4c60462b
JH
50 popup_(nullptr),
51 popup_form_(nullptr)
931f20b0 52{
bf0edd2b
SA
53 connect(channel.get(), SIGNAL(name_changed(const QString&)),
54 this, SLOT(on_name_changed(const QString&)));
55 connect(channel.get(), SIGNAL(colour_changed(const QColor&)),
56 this, SLOT(on_colour_changed(const QColor&)));
931f20b0
JH
57}
58
574c568d
SA
59void Trace::set_coloured_bg(bool state)
60{
61 coloured_bg_ = state;
62}
63
b3f44329 64void Trace::paint_label(QPainter &p, const QRect &rect, bool hover)
01fd3263 65{
be9e7b4b 66 const int y = get_visual_y();
01fd3263 67
73a25a6e 68 p.setBrush(base_->colour());
931f20b0
JH
69
70 if (!enabled())
71 return;
72
b3f44329 73 const QRectF r = label_rect(rect);
931f20b0
JH
74
75 // Paint the label
b5cb6c35 76 const float label_arrow_length = r.height() / 2;
931f20b0 77 const QPointF points[] = {
1053d05c 78 r.topLeft(),
b5cb6c35
JH
79 QPointF(r.right() - label_arrow_length, r.top()),
80 QPointF(r.right(), y),
81 QPointF(r.right() - label_arrow_length, r.bottom()),
1053d05c 82 r.bottomLeft()
931f20b0 83 };
931f20b0 84 const QPointF highlight_points[] = {
1053d05c 85 QPointF(r.left() + 1, r.top() + 1),
b5cb6c35
JH
86 QPointF(r.right() - label_arrow_length, r.top() + 1),
87 QPointF(r.right() - 1, y),
88 QPointF(r.right() - label_arrow_length, r.bottom() - 1),
1053d05c 89 QPointF(r.left() + 1, r.bottom() - 1)
931f20b0
JH
90 };
91
92 if (selected()) {
93 p.setPen(highlight_pen());
94 p.setBrush(Qt::transparent);
95 p.drawPolygon(points, countof(points));
96 }
97
98 p.setPen(Qt::transparent);
73a25a6e 99 p.setBrush(hover ? base_->colour().lighter() : base_->colour());
931f20b0
JH
100 p.drawPolygon(points, countof(points));
101
73a25a6e 102 p.setPen(base_->colour().lighter());
931f20b0
JH
103 p.setBrush(Qt::transparent);
104 p.drawPolygon(highlight_points, countof(highlight_points));
105
73a25a6e 106 p.setPen(base_->colour().darker());
931f20b0
JH
107 p.setBrush(Qt::transparent);
108 p.drawPolygon(points, countof(points));
109
110 // Paint the text
73a25a6e 111 p.setPen(select_text_colour(base_->colour()));
d7c0ca4a 112 p.setFont(QApplication::font());
b5cb6c35
JH
113 p.drawText(QRectF(r.x(), r.y(),
114 r.width() - label_arrow_length, r.height()),
73a25a6e 115 Qt::AlignCenter | Qt::AlignVCenter, base_->name());
931f20b0
JH
116}
117
9b6378f1
JH
118QMenu* Trace::create_context_menu(QWidget *parent)
119{
26e3af6b 120 QMenu *const menu = ViewItem::create_context_menu(parent);
9b6378f1 121
9b6378f1
JH
122 return menu;
123}
124
569d1e41
JH
125pv::widgets::Popup* Trace::create_popup(QWidget *parent)
126{
127 using pv::widgets::Popup;
20eaae39 128
8dbbc7f0 129 popup_ = new Popup(parent);
786b7678
JH
130 popup_->set_position(parent->mapToGlobal(
131 point(parent->rect())), Popup::Right);
20eaae39 132
37fd11b1 133 create_popup_form();
20eaae39 134
8dbbc7f0 135 connect(popup_, SIGNAL(closed()),
20eaae39
JH
136 this, SLOT(on_popup_closed()));
137
8dbbc7f0 138 return popup_;
569d1e41
JH
139}
140
b3f44329 141QRectF Trace::label_rect(const QRectF &rect) const
d7c0ca4a 142{
d7c0ca4a
JH
143 QFontMetrics m(QApplication::font());
144 const QSize text_size(
73a25a6e 145 m.boundingRect(QRect(), 0, base_->name()).width(), m.height());
d7c0ca4a 146 const QSizeF label_size(
ec39632d
JH
147 text_size.width() + LabelPadding.width() * 2,
148 ceilf((text_size.height() + LabelPadding.height() * 2) / 2) * 2);
b5cb6c35 149 const float half_height = label_size.height() / 2;
d7c0ca4a 150 return QRectF(
b3f44329 151 rect.right() - half_height - label_size.width() - 0.5,
be9e7b4b 152 get_visual_y() + 0.5f - half_height,
b5cb6c35
JH
153 label_size.width() + half_height,
154 label_size.height());
d7c0ca4a
JH
155}
156
99af6802
SA
157void Trace::paint_back(QPainter &p, const ViewItemPaintParams &pp)
158{
ac0708fb 159 if (coloured_bg_)
73a25a6e 160 p.setBrush(base_->bgcolour());
ac0708fb 161 else
d55923a6 162 p.setBrush(bgcolour_state_ ? BrightGrayBGColour : DarkGrayBGColour);
99af6802 163
ac0708fb 164 p.setPen(QPen(Qt::NoPen));
99af6802 165
ac0708fb 166 const std::pair<int, int> extents = v_extents();
99af6802 167
ac0708fb
SA
168 const int x = 0;
169 const int y = get_visual_y() + extents.first;
170 const int w = pp.right() - pp.left();
171 const int h = extents.second - extents.first;
172
173 p.drawRect(x, y, w, h);
99af6802
SA
174}
175
5b5fa4da 176void Trace::paint_axis(QPainter &p, const ViewItemPaintParams &pp, int y)
fe08b6e8 177{
46a0cadc
SA
178 p.setRenderHint(QPainter::Antialiasing, false);
179
fe08b6e8 180 p.setPen(AxisPen);
46a0cadc
SA
181 p.drawLine(QPointF(pp.left(), y), QPointF(pp.right(), y));
182
183 p.setRenderHint(QPainter::Antialiasing, true);
fe08b6e8
JH
184}
185
91e8bf08
JH
186void Trace::add_colour_option(QWidget *parent, QFormLayout *form)
187{
188 using pv::widgets::ColourButton;
189
190 ColourButton *const colour_button = new ColourButton(
191 TracePalette::Rows, TracePalette::Cols, parent);
192 colour_button->set_palette(TracePalette::Colours);
73a25a6e 193 colour_button->set_colour(base_->colour());
91e8bf08 194 connect(colour_button, SIGNAL(selected(const QColor&)),
bf0edd2b 195 this, SLOT(on_colouredit_changed(const QColor&)));
91e8bf08
JH
196
197 form->addRow(tr("Colour"), colour_button);
198}
199
37fd11b1
JH
200void Trace::create_popup_form()
201{
202 // Clear the layout
203
204 // Transfer the layout and the child widgets to a temporary widget
e3004449
EO
205 // which we delete after the event was handled. This way, the layout
206 // and all widgets contained therein are deleted after the event was
207 // handled, leaving the parent popup_ time to handle the change.
208 if (popup_form_) {
209 QWidget *suicidal = new QWidget();
210 suicidal->setLayout(popup_form_);
211 suicidal->deleteLater();
212 }
37fd11b1
JH
213
214 // Repopulate the popup
8dbbc7f0
JH
215 popup_form_ = new QFormLayout(popup_);
216 popup_->setLayout(popup_form_);
217 populate_popup_form(popup_, popup_form_);
37fd11b1
JH
218}
219
569d1e41
JH
220void Trace::populate_popup_form(QWidget *parent, QFormLayout *form)
221{
68456dab 222 QLineEdit *const name_edit = new QLineEdit(parent);
73a25a6e 223 name_edit->setText(base_->name());
68456dab 224 connect(name_edit, SIGNAL(textChanged(const QString&)),
bf0edd2b 225 this, SLOT(on_nameedit_changed(const QString&)));
68456dab 226 form->addRow(tr("Name"), name_edit);
91e8bf08
JH
227
228 add_colour_option(parent, form);
569d1e41
JH
229}
230
bf0edd2b 231void Trace::set_name(QString name)
20eaae39 232{
73a25a6e 233 base_->set_name(name);
20eaae39
JH
234}
235
bf0edd2b 236void Trace::set_colour(QColor colour)
68456dab 237{
73a25a6e 238 base_->set_colour(colour);
bf0edd2b 239}
32218d3e 240
bf0edd2b
SA
241void Trace::on_name_changed(const QString &text)
242{
243 /* This event handler is called by SignalBase when the name was changed there */
244 (void)text;
245
246 if (owner_) {
8dbbc7f0 247 owner_->extents_changed(true, false);
bf0edd2b
SA
248 owner_->row_item_appearance_changed(true, false);
249 }
68456dab 250}
9b6378f1 251
91e8bf08
JH
252void Trace::on_colour_changed(const QColor &colour)
253{
bf0edd2b
SA
254 /* This event handler is called by SignalBase when the colour was changed there */
255 (void)colour;
32218d3e 256
8dbbc7f0 257 if (owner_)
99af6802 258 owner_->row_item_appearance_changed(true, true);
91e8bf08
JH
259}
260
bf0edd2b
SA
261void Trace::on_popup_closed()
262{
263 popup_ = nullptr;
264 popup_form_ = nullptr;
265}
266
267void Trace::on_nameedit_changed(const QString &name)
268{
269 /* This event handler notifies SignalBase that the name changed */
270 set_name(name);
271}
272
273void Trace::on_colouredit_changed(const QColor &colour)
274{
275 /* This event handler notifies SignalBase that the colour changed */
276 set_colour(colour);
277}
278
f4e57597
SA
279} // namespace TraceView
280} // namespace views
931f20b0 281} // namespace pv