2 * This file is part of the PulseView project.
4 * Copyright (C) 2013 Joel Holdsworth <joel@airwebreathe.org.uk>
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.
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.
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
26 #include <QApplication>
27 #include <QFormLayout>
32 #include "tracepalette.hpp"
35 #include <pv/widgets/colourbutton.hpp>
36 #include <pv/widgets/popup.hpp>
41 const QPen Trace::AxisPen(QColor(0, 0, 0, 30*256/100));
42 const int Trace::LabelHitPadding = 2;
44 const QColor Trace::BrightGrayBGColour = QColor(0, 0, 0, 10*255/100);
45 const QColor Trace::DarkGrayBGColour = QColor(0, 0, 0, 15*255/100);
47 Trace::Trace(std::shared_ptr<data::SignalBase> channel) :
49 coloured_bg_(true), // Default setting is set in MainWindow::setup_ui()
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&)));
59 void Trace::set_coloured_bg(bool state)
64 void Trace::paint_label(QPainter &p, const QRect &rect, bool hover)
66 const int y = get_visual_y();
68 p.setBrush(base_->colour());
73 const QRectF r = label_rect(rect);
76 const float label_arrow_length = r.height() / 2;
77 const QPointF points[] = {
79 QPointF(r.right() - label_arrow_length, r.top()),
80 QPointF(r.right(), y),
81 QPointF(r.right() - label_arrow_length, r.bottom()),
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)
93 p.setPen(highlight_pen());
94 p.setBrush(Qt::transparent);
95 p.drawPolygon(points, countof(points));
98 p.setPen(Qt::transparent);
99 p.setBrush(hover ? base_->colour().lighter() : base_->colour());
100 p.drawPolygon(points, countof(points));
102 p.setPen(base_->colour().lighter());
103 p.setBrush(Qt::transparent);
104 p.drawPolygon(highlight_points, countof(highlight_points));
106 p.setPen(base_->colour().darker());
107 p.setBrush(Qt::transparent);
108 p.drawPolygon(points, countof(points));
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());
118 QMenu* Trace::create_context_menu(QWidget *parent)
120 QMenu *const menu = ViewItem::create_context_menu(parent);
125 pv::widgets::Popup* Trace::create_popup(QWidget *parent)
127 using pv::widgets::Popup;
129 popup_ = new Popup(parent);
130 popup_->set_position(parent->mapToGlobal(
131 point(parent->rect())), Popup::Right);
135 connect(popup_, SIGNAL(closed()),
136 this, SLOT(on_popup_closed()));
141 QRectF Trace::label_rect(const QRectF &rect) const
143 using pv::view::View;
145 QFontMetrics m(QApplication::font());
146 const QSize text_size(
147 m.boundingRect(QRect(), 0, base_->name()).width(), m.height());
148 const QSizeF label_size(
149 text_size.width() + LabelPadding.width() * 2,
150 ceilf((text_size.height() + LabelPadding.height() * 2) / 2) * 2);
151 const float half_height = label_size.height() / 2;
153 rect.right() - half_height - label_size.width() - 0.5,
154 get_visual_y() + 0.5f - half_height,
155 label_size.width() + half_height,
156 label_size.height());
159 void Trace::paint_back(QPainter &p, const ViewItemPaintParams &pp)
162 p.setBrush(base_->bgcolour());
164 p.setBrush(bgcolour_state_ ? BrightGrayBGColour : DarkGrayBGColour);
166 p.setPen(QPen(Qt::NoPen));
168 const std::pair<int, int> extents = v_extents();
171 const int y = get_visual_y() + extents.first;
172 const int w = pp.right() - pp.left();
173 const int h = extents.second - extents.first;
175 p.drawRect(x, y, w, h);
178 void Trace::paint_axis(QPainter &p, const ViewItemPaintParams &pp, int y)
180 p.setRenderHint(QPainter::Antialiasing, false);
183 p.drawLine(QPointF(pp.left(), y), QPointF(pp.right(), y));
185 p.setRenderHint(QPainter::Antialiasing, true);
188 void Trace::add_colour_option(QWidget *parent, QFormLayout *form)
190 using pv::widgets::ColourButton;
192 ColourButton *const colour_button = new ColourButton(
193 TracePalette::Rows, TracePalette::Cols, parent);
194 colour_button->set_palette(TracePalette::Colours);
195 colour_button->set_colour(base_->colour());
196 connect(colour_button, SIGNAL(selected(const QColor&)),
197 this, SLOT(on_colouredit_changed(const QColor&)));
199 form->addRow(tr("Colour"), colour_button);
202 void Trace::create_popup_form()
206 // Transfer the layout and the child widgets to a temporary widget
207 // which we delete after the event was handled. This way, the layout
208 // and all widgets contained therein are deleted after the event was
209 // handled, leaving the parent popup_ time to handle the change.
211 QWidget *suicidal = new QWidget();
212 suicidal->setLayout(popup_form_);
213 suicidal->deleteLater();
216 // Repopulate the popup
217 popup_form_ = new QFormLayout(popup_);
218 popup_->setLayout(popup_form_);
219 populate_popup_form(popup_, popup_form_);
222 void Trace::populate_popup_form(QWidget *parent, QFormLayout *form)
224 QLineEdit *const name_edit = new QLineEdit(parent);
225 name_edit->setText(base_->name());
226 connect(name_edit, SIGNAL(textChanged(const QString&)),
227 this, SLOT(on_nameedit_changed(const QString&)));
228 form->addRow(tr("Name"), name_edit);
230 add_colour_option(parent, form);
233 void Trace::set_name(QString name)
235 base_->set_name(name);
238 void Trace::set_colour(QColor colour)
240 base_->set_colour(colour);
243 void Trace::on_name_changed(const QString &text)
245 /* This event handler is called by SignalBase when the name was changed there */
249 owner_->extents_changed(true, false);
250 owner_->row_item_appearance_changed(true, false);
254 void Trace::on_colour_changed(const QColor &colour)
256 /* This event handler is called by SignalBase when the colour was changed there */
260 owner_->row_item_appearance_changed(true, true);
263 void Trace::on_popup_closed()
266 popup_form_ = nullptr;
269 void Trace::on_nameedit_changed(const QString &name)
271 /* This event handler notifies SignalBase that the name changed */
275 void Trace::on_colouredit_changed(const QColor &colour)
277 /* This event handler notifies SignalBase that the colour changed */