]> sigrok.org Git - pulseview.git/blob - pv/view/trace.cpp
TraceView: Restore vertical offset
[pulseview.git] / pv / view / trace.cpp
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
17  * along with this program; if not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include <extdef.h>
21
22 #include <assert.h>
23 #include <cmath>
24
25 #include <QApplication>
26 #include <QFormLayout>
27 #include <QKeyEvent>
28 #include <QLineEdit>
29
30 #include "trace.hpp"
31 #include "tracepalette.hpp"
32 #include "view.hpp"
33
34 #include <pv/widgets/colourbutton.hpp>
35 #include <pv/widgets/popup.hpp>
36
37 namespace pv {
38 namespace views {
39 namespace TraceView {
40
41 const QPen Trace::AxisPen(QColor(0, 0, 0, 30*256/100));
42 const int Trace::LabelHitPadding = 2;
43
44 const QColor Trace::BrightGrayBGColour = QColor(0, 0, 0, 10*255/100);
45 const QColor Trace::DarkGrayBGColour = QColor(0, 0, 0, 15*255/100);
46
47 Trace::Trace(std::shared_ptr<data::SignalBase> channel) :
48         base_(channel),
49         coloured_bg_(true), // Default setting is set in MainWindow::setup_ui()
50         popup_(nullptr),
51         popup_form_(nullptr)
52 {
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&)));
57 }
58
59 void Trace::set_coloured_bg(bool state)
60 {
61         coloured_bg_ = state;
62 }
63
64 void Trace::paint_label(QPainter &p, const QRect &rect, bool hover)
65 {
66         const int y = get_visual_y();
67
68         p.setBrush(base_->colour());
69
70         if (!enabled())
71                 return;
72
73         const QRectF r = label_rect(rect);
74
75         // Paint the label
76         const float label_arrow_length = r.height() / 2;
77         const QPointF points[] = {
78                 r.topLeft(),
79                 QPointF(r.right() - label_arrow_length, r.top()),
80                 QPointF(r.right(), y),
81                 QPointF(r.right() - label_arrow_length, r.bottom()),
82                 r.bottomLeft()
83         };
84         const QPointF highlight_points[] = {
85                 QPointF(r.left() + 1, r.top() + 1),
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),
89                 QPointF(r.left() + 1, r.bottom() - 1)
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);
99         p.setBrush(hover ? base_->colour().lighter() : base_->colour());
100         p.drawPolygon(points, countof(points));
101
102         p.setPen(base_->colour().lighter());
103         p.setBrush(Qt::transparent);
104         p.drawPolygon(highlight_points, countof(highlight_points));
105
106         p.setPen(base_->colour().darker());
107         p.setBrush(Qt::transparent);
108         p.drawPolygon(points, countof(points));
109
110         // Paint the text
111         p.setPen(select_text_colour(base_->colour()));
112         p.setFont(QApplication::font());
113         p.drawText(QRectF(r.x(), r.y(),
114                 r.width() - label_arrow_length, r.height()),
115                 Qt::AlignCenter | Qt::AlignVCenter, base_->name());
116 }
117
118 QMenu* Trace::create_context_menu(QWidget *parent)
119 {
120         QMenu *const menu = ViewItem::create_context_menu(parent);
121
122         return menu;
123 }
124
125 pv::widgets::Popup* Trace::create_popup(QWidget *parent)
126 {
127         using pv::widgets::Popup;
128
129         popup_ = new Popup(parent);
130         popup_->set_position(parent->mapToGlobal(
131                 point(parent->rect())), Popup::Right);
132
133         create_popup_form();
134
135         connect(popup_, SIGNAL(closed()),
136                 this, SLOT(on_popup_closed()));
137
138         return popup_;
139 }
140
141 QRectF Trace::label_rect(const QRectF &rect) const
142 {
143         QFontMetrics m(QApplication::font());
144         const QSize text_size(
145                 m.boundingRect(QRect(), 0, base_->name()).width(), m.height());
146         const QSizeF label_size(
147                 text_size.width() + LabelPadding.width() * 2,
148                 ceilf((text_size.height() + LabelPadding.height() * 2) / 2) * 2);
149         const float half_height = label_size.height() / 2;
150         return QRectF(
151                 rect.right() - half_height - label_size.width() - 0.5,
152                 get_visual_y() + 0.5f - half_height,
153                 label_size.width() + half_height,
154                 label_size.height());
155 }
156
157 void Trace::paint_back(QPainter &p, const ViewItemPaintParams &pp)
158 {
159         if (coloured_bg_)
160                 p.setBrush(base_->bgcolour());
161         else
162                 p.setBrush(bgcolour_state_ ? BrightGrayBGColour : DarkGrayBGColour);
163
164         p.setPen(QPen(Qt::NoPen));
165
166         const std::pair<int, int> extents = v_extents();
167
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);
174 }
175
176 void Trace::paint_axis(QPainter &p, const ViewItemPaintParams &pp, int y)
177 {
178         p.setRenderHint(QPainter::Antialiasing, false);
179
180         p.setPen(AxisPen);
181         p.drawLine(QPointF(pp.left(), y), QPointF(pp.right(), y));
182
183         p.setRenderHint(QPainter::Antialiasing, true);
184 }
185
186 void 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);
193         colour_button->set_colour(base_->colour());
194         connect(colour_button, SIGNAL(selected(const QColor&)),
195                 this, SLOT(on_colouredit_changed(const QColor&)));
196
197         form->addRow(tr("Colour"), colour_button);
198 }
199
200 void Trace::create_popup_form()
201 {
202         // Clear the layout
203
204         // Transfer the layout and the child widgets to a temporary widget
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         }
213
214         // Repopulate the popup
215         popup_form_ = new QFormLayout(popup_);
216         popup_->setLayout(popup_form_);
217         populate_popup_form(popup_, popup_form_);
218 }
219
220 void Trace::populate_popup_form(QWidget *parent, QFormLayout *form)
221 {
222         QLineEdit *const name_edit = new QLineEdit(parent);
223         name_edit->setText(base_->name());
224         connect(name_edit, SIGNAL(textChanged(const QString&)),
225                 this, SLOT(on_nameedit_changed(const QString&)));
226         form->addRow(tr("Name"), name_edit);
227
228         add_colour_option(parent, form);
229 }
230
231 void Trace::set_name(QString name)
232 {
233         base_->set_name(name);
234 }
235
236 void Trace::set_colour(QColor colour)
237 {
238         base_->set_colour(colour);
239 }
240
241 void 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_) {
247                 owner_->extents_changed(true, false);
248                 owner_->row_item_appearance_changed(true, false);
249         }
250 }
251
252 void Trace::on_colour_changed(const QColor &colour)
253 {
254         /* This event handler is called by SignalBase when the colour was changed there */
255         (void)colour;
256
257         if (owner_)
258                 owner_->row_item_appearance_changed(true, true);
259 }
260
261 void Trace::on_popup_closed()
262 {
263         popup_ = nullptr;
264         popup_form_ = nullptr;
265 }
266
267 void Trace::on_nameedit_changed(const QString &name)
268 {
269         /* This event handler notifies SignalBase that the name changed */
270         set_name(name);
271 }
272
273 void Trace::on_colouredit_changed(const QColor &colour)
274 {
275         /* This event handler notifies SignalBase that the colour changed */
276         set_colour(colour);
277 }
278
279 } // namespace TraceView
280 } // namespace views
281 } // namespace pv