]> sigrok.org Git - pulseview.git/blame - pv/views/trace/logicsignal.cpp
Typo fix: treshold -> threshold
[pulseview.git] / pv / views / trace / logicsignal.cpp
CommitLineData
28a4c9c5 1/*
b3f22de0 2 * This file is part of the PulseView project.
28a4c9c5
JH
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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
28a4c9c5
JH
18 */
19
cef18fc6 20#include <extdef.h>
7cd5faf8 21
d2344534
JH
22#include <cassert>
23#include <cmath>
3e46726a 24
640bd149
PZ
25#include <algorithm>
26
ab6d2eab 27#include <QApplication>
b213ef09
JH
28#include <QFormLayout>
29#include <QToolBar>
30
2acdb232
JH
31#include "logicsignal.hpp"
32#include "view.hpp"
33
2acdb232 34#include <pv/data/logic.hpp>
f3d66e52 35#include <pv/data/logicsegment.hpp>
bf0edd2b 36#include <pv/data/signalbase.hpp>
aca9aa83
UH
37#include <pv/devicemanager.hpp>
38#include <pv/devices/device.hpp>
051ba3b3 39#include <pv/globalsettings.hpp>
aca9aa83 40#include <pv/session.hpp>
28a4c9c5 41
fe3a1c21 42#include <libsigrokcxx/libsigrokcxx.hpp>
e8d00928 43
819f4c25
JH
44using std::deque;
45using std::max;
a5d93c27 46using std::make_pair;
819f4c25 47using std::min;
6f925ba9 48using std::none_of;
819f4c25 49using std::pair;
f9abf97e 50using std::shared_ptr;
819f4c25 51using std::vector;
81a635d1 52
e8d00928 53using sigrok::ConfigKey;
7bb0fbf4 54using sigrok::Capability;
e8d00928 55using sigrok::Trigger;
640bd149 56using sigrok::TriggerMatch;
e8d00928
ML
57using sigrok::TriggerMatchType;
58
51e77110 59namespace pv {
f4e57597 60namespace views {
1573bf16 61namespace trace {
51e77110 62
17d94d7c 63const float LogicSignal::Oversampling = 2.0f;
131e8012 64
64b60583
JH
65const QColor LogicSignal::EdgeColour(0x80, 0x80, 0x80);
66const QColor LogicSignal::HighColour(0x00, 0xC0, 0x00);
67const QColor LogicSignal::LowColour(0xC0, 0x00, 0x00);
e9c8e87c 68const QColor LogicSignal::SamplingPointColour(0x77, 0x77, 0x77);
131e8012 69
299d0e75 70const QColor LogicSignal::SignalColours[10] = {
3e46726a
JH
71 QColor(0x16, 0x19, 0x1A), // Black
72 QColor(0x8F, 0x52, 0x02), // Brown
73 QColor(0xCC, 0x00, 0x00), // Red
74 QColor(0xF5, 0x79, 0x00), // Orange
75 QColor(0xED, 0xD4, 0x00), // Yellow
76 QColor(0x73, 0xD2, 0x16), // Green
77 QColor(0x34, 0x65, 0xA4), // Blue
78 QColor(0x75, 0x50, 0x7B), // Violet
79 QColor(0x88, 0x8A, 0x85), // Grey
80 QColor(0xEE, 0xEE, 0xEC), // White
81};
82
ddfda54d
JH
83QColor LogicSignal::TriggerMarkerBackgroundColour = QColor(0xED, 0xD4, 0x00);
84const int LogicSignal::TriggerMarkerPadding = 2;
85const char* LogicSignal::TriggerMarkerIcons[8] = {
86 nullptr,
87 ":/icons/trigger-marker-low.svg",
88 ":/icons/trigger-marker-high.svg",
89 ":/icons/trigger-marker-rising.svg",
90 ":/icons/trigger-marker-falling.svg",
91 ":/icons/trigger-marker-change.svg",
92 nullptr,
93 nullptr
94};
95
96QCache<QString, const QIcon> LogicSignal::icon_cache_;
97QCache<QString, const QPixmap> LogicSignal::pixmap_cache_;
98
b86aa8f4 99LogicSignal::LogicSignal(
2b81ae46 100 pv::Session &session,
da30ecb7 101 shared_ptr<devices::Device> device,
0aa57689 102 shared_ptr<data::SignalBase> base) :
73a25a6e 103 Signal(session, base),
8dbbc7f0 104 device_(device),
4c60462b
JH
105 trigger_none_(nullptr),
106 trigger_rising_(nullptr),
107 trigger_high_(nullptr),
108 trigger_falling_(nullptr),
109 trigger_low_(nullptr),
110 trigger_change_(nullptr)
28a4c9c5 111{
e8d00928 112 shared_ptr<Trigger> trigger;
b1e8c93d 113
73a25a6e 114 base_->set_colour(SignalColours[base->index() % countof(SignalColours)]);
b1e8c93d 115
a2b2b65e
SA
116 GlobalSettings gs;
117 signal_height_ = gs.value(GlobalSettings::Key_View_DefaultLogicHeight).toInt();
118
b1e8c93d
BV
119 /* Populate this channel's trigger setting with whatever we
120 * find in the current session trigger, if anything. */
8dbbc7f0
JH
121 trigger_match_ = nullptr;
122 if ((trigger = session_.session()->trigger()))
e8d00928
ML
123 for (auto stage : trigger->stages())
124 for (auto match : stage->matches())
73a25a6e 125 if (match->channel() == base_->channel())
8dbbc7f0 126 trigger_match_ = match->type();
ef8311a4
JH
127}
128
748dd753 129shared_ptr<pv::data::SignalData> LogicSignal::data() const
9a0cd293 130{
0aa57689 131 return base_->logic_data();
9a0cd293
JH
132}
133
748dd753 134shared_ptr<pv::data::Logic> LogicSignal::logic_data() const
e0fc5810 135{
0aa57689 136 return base_->logic_data();
8e097c27
JH
137}
138
a2b2b65e
SA
139void LogicSignal::save_settings(QSettings &settings) const
140{
141 settings.setValue("trace_height", signal_height_);
142}
143
144void LogicSignal::restore_settings(QSettings &settings)
145{
146 if (settings.contains("trace_height")) {
147 const int old_height = signal_height_;
148 signal_height_ = settings.value("trace_height").toInt();
149
150 if ((signal_height_ != old_height) && owner_) {
151 // Call order is important, otherwise the lazy event handler won't work
152 owner_->extents_changed(false, true);
153 owner_->row_item_appearance_changed(false, true);
154 }
155 }
156}
157
6f925ba9 158pair<int, int> LogicSignal::v_extents() const
a5d93c27 159{
ab6d2eab
JH
160 const int signal_margin =
161 QFontMetrics(QApplication::font()).height() / 2;
303d6ea6 162 return make_pair(-signal_height_ - signal_margin, signal_margin);
a5d93c27
JH
163}
164
214470fc
JH
165int LogicSignal::scale_handle_offset() const
166{
303d6ea6 167 return -signal_height_;
214470fc
JH
168}
169
170void LogicSignal::scale_handle_dragged(int offset)
171{
303d6ea6
JH
172 const int font_height = QFontMetrics(QApplication::font()).height();
173 const int units = (-offset / font_height);
174 signal_height_ = ((units < 1) ? 1 : units) * font_height;
214470fc
JH
175}
176
60938e04 177void LogicSignal::paint_mid(QPainter &p, ViewItemPaintParams &pp)
e3f65ace 178{
64b60583 179 QLineF *line;
2858b391
JH
180
181 vector< pair<int64_t, bool> > edges;
182
73a25a6e 183 assert(base_);
8dbbc7f0 184 assert(owner_);
2858b391 185
be9e7b4b 186 const int y = get_visual_y();
eae6e30a 187
73a25a6e 188 if (!base_->enabled())
cec48d16
JH
189 return;
190
303d6ea6 191 const float high_offset = y - signal_height_ + 0.5f;
2658961b 192 const float low_offset = y + 0.5f;
131e8012 193
f3d66e52 194 const deque< shared_ptr<pv::data::LogicSegment> > &segments =
0aa57689 195 base_->logic_data()->logic_segments();
f3d66e52 196 if (segments.empty())
2858b391
JH
197 return;
198
c063290a 199 const shared_ptr<pv::data::LogicSegment> &segment = segments.front();
2858b391 200
f3d66e52 201 double samplerate = segment->samplerate();
9d4e5cd8
JH
202
203 // Show sample rate as 1Hz when it is unknown
9ba4ca35 204 if (samplerate == 0.0)
9d4e5cd8
JH
205 samplerate = 1.0;
206
4c8a6a6d 207 const double pixels_offset = pp.pixels_offset();
60d9b99a 208 const pv::util::Timestamp& start_time = segment->start_time();
f3d66e52 209 const int64_t last_sample = segment->get_sample_count() - 1;
4c8a6a6d 210 const double samples_per_pixel = samplerate * pp.scale();
124be547 211 const double pixels_per_sample = 1 / samples_per_pixel;
60d9b99a
JS
212 const pv::util::Timestamp start = samplerate * (pp.offset() - start_time);
213 const pv::util::Timestamp end = start + samples_per_pixel * pp.width();
2858b391 214
60d9b99a
JS
215 const int64_t start_sample = min(max(floor(start).convert_to<int64_t>(),
216 (int64_t)0), last_sample);
217 const uint64_t end_sample = min(max(ceil(end).convert_to<int64_t>(),
218 (int64_t)0), last_sample);
219
220 segment->get_subsampled_edges(edges, start_sample, end_sample,
73a25a6e 221 samples_per_pixel / Oversampling, base_->index());
c352ce60 222 assert(edges.size() >= 2);
2858b391 223
124be547
SA
224 // Check whether we need to paint the sampling points
225 GlobalSettings settings;
226 const bool show_sampling_points =
227 settings.value(GlobalSettings::Key_View_ShowSamplingPoints).toBool() &&
228 (samples_per_pixel < 0.25);
229
230 vector<QRectF> sampling_points;
231 float sampling_point_x = 0.0f;
232 int64_t sampling_point_sample = start_sample;
233 const int w = 2;
234
235 if (show_sampling_points) {
236 sampling_points.reserve(end_sample - start_sample + 1);
237 sampling_point_x = (edges.cbegin()->first / samples_per_pixel - pixels_offset) + pp.left();
238 }
239
2858b391 240 // Paint the edges
64b60583
JH
241 const unsigned int edge_count = edges.size() - 2;
242 QLineF *const edge_lines = new QLineF[edge_count];
243 line = edge_lines;
244
f46e495e 245 for (auto i = edges.cbegin() + 1; i != edges.cend() - 1; i++) {
ce6e73a8 246 const float x = ((*i).first / samples_per_pixel -
3eb29afd 247 pixels_offset) + pp.left();
64b60583 248 *line++ = QLineF(x, high_offset, x, low_offset);
124be547
SA
249
250 if (show_sampling_points)
251 while (sampling_point_sample < (*i).first) {
252 const float y = (*i).second ? low_offset : high_offset;
253 sampling_points.emplace_back(
254 QRectF(sampling_point_x - (w / 2), y - (w / 2), w, w));
255 sampling_point_sample++;
256 sampling_point_x += pixels_per_sample;
257 };
2858b391 258 }
81a635d1 259
124be547
SA
260 // Calculate the sample points from the last edge to the end of the trace
261 if (show_sampling_points)
262 while ((uint64_t)sampling_point_sample <= end_sample) {
263 // Signal changed after the last edge, so the level is inverted
264 const float y = (edges.cend() - 1)->second ? high_offset : low_offset;
265 sampling_points.emplace_back(
266 QRectF(sampling_point_x - (w / 2), y - (w / 2), w, w));
267 sampling_point_sample++;
268 sampling_point_x += pixels_per_sample;
269 };
270
64b60583
JH
271 p.setPen(EdgeColour);
272 p.drawLines(edge_lines, edge_count);
273 delete[] edge_lines;
2858b391
JH
274
275 // Paint the caps
175d6573 276 const unsigned int max_cap_line_count = edges.size();
64b60583 277 QLineF *const cap_lines = new QLineF[max_cap_line_count];
2858b391 278
64b60583
JH
279 p.setPen(HighColour);
280 paint_caps(p, cap_lines, edges, true, samples_per_pixel,
3eb29afd 281 pixels_offset, pp.left(), high_offset);
64b60583
JH
282 p.setPen(LowColour);
283 paint_caps(p, cap_lines, edges, false, samples_per_pixel,
3eb29afd 284 pixels_offset, pp.left(), low_offset);
2858b391 285
64b60583 286 delete[] cap_lines;
e9c8e87c
UH
287
288 // Paint the sampling points
124be547
SA
289 if (show_sampling_points) {
290 p.setPen(SamplingPointColour);
291 p.drawRects(sampling_points.data(), sampling_points.size());
e9c8e87c 292 }
131e8012 293}
2858b391 294
60938e04 295void LogicSignal::paint_fore(QPainter &p, ViewItemPaintParams &pp)
ddfda54d 296{
ddfda54d 297 // Draw the trigger marker
73a25a6e 298 if (!trigger_match_ || !base_->enabled())
ddfda54d
JH
299 return;
300
301 const int y = get_visual_y();
302 const vector<int32_t> trig_types = get_trigger_types();
303 for (int32_t type_id : trig_types) {
304 const TriggerMatchType *const type =
305 TriggerMatchType::get(type_id);
306 if (trigger_match_ != type || type_id < 0 ||
307 (size_t)type_id >= countof(TriggerMarkerIcons) ||
308 !TriggerMarkerIcons[type_id])
309 continue;
310
311 const QPixmap *const pixmap = get_pixmap(
312 TriggerMarkerIcons[type_id]);
313 if (!pixmap)
314 continue;
315
3b84fd6d 316 const float pad = TriggerMarkerPadding - 0.5f;
ddfda54d
JH
317 const QSize size = pixmap->size();
318 const QPoint point(
3eb29afd 319 pp.right() - size.width() - pad * 2,
303d6ea6 320 y - (signal_height_ + size.height()) / 2);
ddfda54d 321
3b84fd6d 322 p.setPen(QPen(TriggerMarkerBackgroundColour.darker()));
ddfda54d 323 p.setBrush(TriggerMarkerBackgroundColour);
3b84fd6d 324 p.drawRoundedRect(QRectF(point, size).adjusted(
ddfda54d
JH
325 -pad, -pad, pad, pad), pad, pad);
326 p.drawPixmap(point, *pixmap);
327
328 break;
329 }
330}
331
f4270878 332void LogicSignal::paint_caps(QPainter &p, QLineF *const lines,
131e8012 333 vector< pair<int64_t, bool> > &edges, bool level,
ce6e73a8
JH
334 double samples_per_pixel, double pixels_offset, float x_offset,
335 float y_offset)
131e8012 336{
64b60583 337 QLineF *line = lines;
2858b391 338
f46e495e 339 for (auto i = edges.begin(); i != (edges.end() - 1); i++)
333d5bbc 340 if ((*i).second == level) {
64b60583 341 *line++ = QLineF(
ce6e73a8 342 ((*i).first / samples_per_pixel -
64b60583 343 pixels_offset) + x_offset, y_offset,
ce6e73a8 344 ((*(i+1)).first / samples_per_pixel -
64b60583 345 pixels_offset) + x_offset, y_offset);
131e8012
JH
346 }
347
64b60583 348 p.drawLines(lines, line - lines);
e3f65ace 349}
3e46726a 350
767281c8
JH
351void LogicSignal::init_trigger_actions(QWidget *parent)
352{
0f1f98fe 353 trigger_none_ = new QAction(*get_icon(":/icons/trigger-none.svg"),
767281c8 354 tr("No trigger"), parent);
8dbbc7f0
JH
355 trigger_none_->setCheckable(true);
356 connect(trigger_none_, SIGNAL(triggered()), this, SLOT(on_trigger()));
767281c8 357
0f1f98fe 358 trigger_rising_ = new QAction(*get_icon(":/icons/trigger-rising.svg"),
767281c8 359 tr("Trigger on rising edge"), parent);
8dbbc7f0
JH
360 trigger_rising_->setCheckable(true);
361 connect(trigger_rising_, SIGNAL(triggered()), this, SLOT(on_trigger()));
767281c8 362
0f1f98fe 363 trigger_high_ = new QAction(*get_icon(":/icons/trigger-high.svg"),
767281c8 364 tr("Trigger on high level"), parent);
8dbbc7f0
JH
365 trigger_high_->setCheckable(true);
366 connect(trigger_high_, SIGNAL(triggered()), this, SLOT(on_trigger()));
767281c8 367
0f1f98fe 368 trigger_falling_ = new QAction(*get_icon(":/icons/trigger-falling.svg"),
767281c8 369 tr("Trigger on falling edge"), parent);
8dbbc7f0
JH
370 trigger_falling_->setCheckable(true);
371 connect(trigger_falling_, SIGNAL(triggered()), this, SLOT(on_trigger()));
767281c8 372
0f1f98fe 373 trigger_low_ = new QAction(*get_icon(":/icons/trigger-low.svg"),
767281c8 374 tr("Trigger on low level"), parent);
8dbbc7f0
JH
375 trigger_low_->setCheckable(true);
376 connect(trigger_low_, SIGNAL(triggered()), this, SLOT(on_trigger()));
767281c8 377
0f1f98fe 378 trigger_change_ = new QAction(*get_icon(":/icons/trigger-change.svg"),
767281c8 379 tr("Trigger on rising or falling edge"), parent);
8dbbc7f0
JH
380 trigger_change_->setCheckable(true);
381 connect(trigger_change_, SIGNAL(triggered()), this, SLOT(on_trigger()));
767281c8
JH
382}
383
77817b43
JH
384const vector<int32_t> LogicSignal::get_trigger_types() const
385{
3afe5afe
SA
386 // We may not be associated with a device
387 if (!device_)
388 return vector<int32_t>();
389
da30ecb7 390 const auto sr_dev = device_->device();
7bb0fbf4
ML
391 if (sr_dev->config_check(ConfigKey::TRIGGER_MATCH, Capability::LIST)) {
392 const Glib::VariantContainerBase gvar =
393 sr_dev->config_list(ConfigKey::TRIGGER_MATCH);
d60820d8
SA
394
395 vector<int32_t> ttypes;
396
397 for (unsigned int i = 0; i < gvar.get_n_children(); i++) {
398 Glib::VariantBase tmp_vb;
399 gvar.get_child(tmp_vb, i);
400
401 Glib::Variant<int32_t> tmp_v =
402 Glib::VariantBase::cast_dynamic< Glib::Variant<int32_t> >(tmp_vb);
403
404 ttypes.push_back(tmp_v.get());
405 }
406
407 return ttypes;
7bb0fbf4
ML
408 } else {
409 return vector<int32_t>();
77817b43
JH
410 }
411}
412
aa5e9140 413QAction* LogicSignal::action_from_trigger_type(const TriggerMatchType *type)
767281c8 414{
b1e8c93d
BV
415 QAction *action;
416
8dbbc7f0 417 action = trigger_none_;
640bd149
PZ
418 if (type) {
419 switch (type->id()) {
420 case SR_TRIGGER_ZERO:
8dbbc7f0 421 action = trigger_low_;
640bd149
PZ
422 break;
423 case SR_TRIGGER_ONE:
8dbbc7f0 424 action = trigger_high_;
640bd149
PZ
425 break;
426 case SR_TRIGGER_RISING:
8dbbc7f0 427 action = trigger_rising_;
640bd149
PZ
428 break;
429 case SR_TRIGGER_FALLING:
8dbbc7f0 430 action = trigger_falling_;
640bd149
PZ
431 break;
432 case SR_TRIGGER_EDGE:
8dbbc7f0 433 action = trigger_change_;
640bd149
PZ
434 break;
435 default:
0402d7a3 436 assert(false);
640bd149 437 }
767281c8 438 }
767281c8 439
b1e8c93d 440 return action;
767281c8
JH
441}
442
aa5e9140 443const TriggerMatchType *LogicSignal::trigger_type_from_action(QAction *action)
139fef92 444{
8dbbc7f0 445 if (action == trigger_low_)
e8d00928 446 return TriggerMatchType::ZERO;
8dbbc7f0 447 else if (action == trigger_high_)
e8d00928 448 return TriggerMatchType::ONE;
8dbbc7f0 449 else if (action == trigger_rising_)
e8d00928 450 return TriggerMatchType::RISING;
8dbbc7f0 451 else if (action == trigger_falling_)
e8d00928 452 return TriggerMatchType::FALLING;
8dbbc7f0 453 else if (action == trigger_change_)
e8d00928 454 return TriggerMatchType::EDGE;
b1e8c93d 455 else
e8d00928 456 return nullptr;
139fef92
JH
457}
458
b1e8c93d 459void LogicSignal::populate_popup_form(QWidget *parent, QFormLayout *form)
b08d7222 460{
b1e8c93d 461 Signal::populate_popup_form(parent, form);
b08d7222 462
a2b2b65e
SA
463 signal_height_sb_ = new QSpinBox(parent);
464 signal_height_sb_->setRange(5, 1000);
465 signal_height_sb_->setSingleStep(5);
466 signal_height_sb_->setSuffix(tr(" pixels"));
467 signal_height_sb_->setValue(signal_height_);
468 connect(signal_height_sb_, SIGNAL(valueChanged(int)),
469 this, SLOT(on_signal_height_changed(int)));
470 form->addRow(tr("Trace height"), signal_height_sb_);
471
472 // Trigger settings
77817b43 473 const vector<int32_t> trig_types = get_trigger_types();
139fef92 474
ffd90566
JH
475 if (!trig_types.empty()) {
476 trigger_bar_ = new QToolBar(parent);
477 init_trigger_actions(trigger_bar_);
478 trigger_bar_->addAction(trigger_none_);
479 trigger_none_->setChecked(!trigger_match_);
480
481 for (auto type_id : trig_types) {
482 const TriggerMatchType *const type =
483 TriggerMatchType::get(type_id);
484 QAction *const action = action_from_trigger_type(type);
485 trigger_bar_->addAction(action);
486 action->setChecked(trigger_match_ == type);
487 }
488 form->addRow(tr("Trigger"), trigger_bar_);
489 }
b08d7222
JH
490}
491
640bd149
PZ
492void LogicSignal::modify_trigger()
493{
8dbbc7f0
JH
494 auto trigger = session_.session()->trigger();
495 auto new_trigger = session_.device_manager().context()->create_trigger("pulseview");
640bd149
PZ
496
497 if (trigger) {
498 for (auto stage : trigger->stages()) {
499 const auto &matches = stage->matches();
6f925ba9 500 if (none_of(matches.begin(), matches.end(),
640bd149 501 [&](shared_ptr<TriggerMatch> match) {
73a25a6e 502 return match->channel() != base_->channel(); }))
640bd149
PZ
503 continue;
504
505 auto new_stage = new_trigger->add_stage();
506 for (auto match : stage->matches()) {
73a25a6e 507 if (match->channel() == base_->channel())
640bd149
PZ
508 continue;
509 new_stage->add_match(match->channel(), match->type());
510 }
511 }
512 }
513
fcc00c4d
TS
514 if (trigger_match_) {
515 // Until we can let the user decide how to group trigger matches
516 // into stages, put all of the matches into a single stage --
517 // most devices only support a single trigger stage.
518 if (new_trigger->stages().empty())
519 new_trigger->add_stage();
520
73a25a6e 521 new_trigger->stages().back()->add_match(base_->channel(),
bf0edd2b 522 trigger_match_);
fcc00c4d 523 }
640bd149 524
8dbbc7f0 525 session_.session()->set_trigger(
640bd149 526 new_trigger->stages().empty() ? nullptr : new_trigger);
ddfda54d
JH
527
528 if (owner_)
6e2c3c85 529 owner_->row_item_appearance_changed(false, true);
640bd149
PZ
530}
531
0f1f98fe
JH
532const QIcon* LogicSignal::get_icon(const char *path)
533{
ed2cec68
SA
534 if (!icon_cache_.contains(path)) {
535 const QIcon *icon = new QIcon(path);
0f1f98fe
JH
536 icon_cache_.insert(path, icon);
537 }
538
ed2cec68 539 return icon_cache_.take(path);
0f1f98fe
JH
540}
541
ddfda54d
JH
542const QPixmap* LogicSignal::get_pixmap(const char *path)
543{
ed2cec68
SA
544 if (!pixmap_cache_.contains(path)) {
545 const QPixmap *pixmap = new QPixmap(path);
ddfda54d
JH
546 pixmap_cache_.insert(path, pixmap);
547 }
548
ed2cec68 549 return pixmap_cache_.take(path);
ddfda54d
JH
550}
551
b1e8c93d 552void LogicSignal::on_trigger()
b08d7222 553{
b1e8c93d 554 QAction *action;
b08d7222 555
aa5e9140 556 action_from_trigger_type(trigger_match_)->setChecked(false);
b08d7222 557
b1e8c93d 558 action = (QAction *)sender();
923f8b22 559 action->setChecked(true);
aa5e9140 560 trigger_match_ = trigger_type_from_action(action);
b08d7222 561
640bd149 562 modify_trigger();
b08d7222
JH
563}
564
a2b2b65e
SA
565void LogicSignal::on_signal_height_changed(int height)
566{
567 signal_height_ = height;
568
569 if (owner_) {
570 // Call order is important, otherwise the lazy event handler won't work
571 owner_->extents_changed(false, true);
572 owner_->row_item_appearance_changed(false, true);
573 }
574}
575
1573bf16 576} // namespace trace
f4e57597 577} // namespace views
51e77110 578} // namespace pv