2 * This file is part of the PulseView project.
4 * Copyright (C) 2012 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, see <http://www.gnu.org/licenses/>.
28 #include <QApplication>
31 #include <QFormLayout>
32 #include <QGridLayout>
36 #include "analogsignal.hpp"
37 #include "logicsignal.hpp"
40 #include "pv/data/analog.hpp"
41 #include "pv/data/analogsegment.hpp"
42 #include "pv/data/logic.hpp"
43 #include "pv/data/logicsegment.hpp"
44 #include "pv/data/signalbase.hpp"
45 #include "pv/globalsettings.hpp"
47 #include <libsigrokcxx/libsigrokcxx.hpp>
55 using std::numeric_limits;
57 using std::shared_ptr;
64 const QColor AnalogSignal::SignalColours[4] = {
65 QColor(0xC4, 0xA0, 0x00), // Yellow
66 QColor(0x87, 0x20, 0x7A), // Magenta
67 QColor(0x20, 0x4A, 0x87), // Blue
68 QColor(0x4E, 0x9A, 0x06) // Green
71 const QColor AnalogSignal::GridMajorColor = QColor(0, 0, 0, 40 * 256 / 100);
72 const QColor AnalogSignal::GridMinorColor = QColor(0, 0, 0, 20 * 256 / 100);
74 const QColor AnalogSignal::SamplingPointColour(0x77, 0x77, 0x77);
76 const int64_t AnalogSignal::TracePaintBlockSize = 1024 * 1024; // 4 MiB (due to float)
77 const float AnalogSignal::EnvelopeThreshold = 64.0f;
79 const int AnalogSignal::MaximumVDivs = 10;
80 const int AnalogSignal::MinScaleIndex = -6;
81 const int AnalogSignal::MaxScaleIndex = 7;
83 const int AnalogSignal::InfoTextMarginRight = 20;
84 const int AnalogSignal::InfoTextMarginBottom = 5;
86 AnalogSignal::AnalogSignal(
88 shared_ptr<data::SignalBase> base) :
89 Signal(session, base),
90 scale_index_(4), // 20 per div
91 scale_index_drag_offset_(0),
95 display_type_(DisplayBoth),
98 pv::data::Analog* analog_data =
99 dynamic_cast<pv::data::Analog*>(data().get());
101 connect(analog_data, SIGNAL(samples_added(QObject*, uint64_t, uint64_t)),
102 this, SLOT(on_samples_added()));
105 div_height_ = gs.value(GlobalSettings::Key_View_DefaultDivHeight).toInt();
107 base_->set_colour(SignalColours[base_->index() % countof(SignalColours)]);
111 shared_ptr<pv::data::SignalData> AnalogSignal::data() const
113 return base_->analog_data();
116 void AnalogSignal::save_settings(QSettings &settings) const
118 settings.setValue("pos_vdivs", pos_vdivs_);
119 settings.setValue("neg_vdivs", neg_vdivs_);
120 settings.setValue("scale_index", scale_index_);
121 settings.setValue("display_type", display_type_);
122 settings.setValue("autoranging", autoranging_);
123 settings.setValue("div_height", div_height_);
126 void AnalogSignal::restore_settings(QSettings &settings)
128 if (settings.contains("pos_vdivs"))
129 pos_vdivs_ = settings.value("pos_vdivs").toInt();
131 if (settings.contains("neg_vdivs"))
132 neg_vdivs_ = settings.value("neg_vdivs").toInt();
134 if (settings.contains("scale_index")) {
135 scale_index_ = settings.value("scale_index").toInt();
139 if (settings.contains("display_type"))
140 display_type_ = (DisplayType)(settings.value("display_type").toInt());
142 if (settings.contains("autoranging"))
143 autoranging_ = settings.value("autoranging").toBool();
145 if (settings.contains("div_height")) {
146 const int old_height = div_height_;
147 div_height_ = settings.value("div_height").toInt();
149 if ((div_height_ != old_height) && owner_) {
150 // Call order is important, otherwise the lazy event handler won't work
151 owner_->extents_changed(false, true);
152 owner_->row_item_appearance_changed(false, true);
157 pair<int, int> AnalogSignal::v_extents() const
159 const int ph = pos_vdivs_ * div_height_;
160 const int nh = neg_vdivs_ * div_height_;
161 return make_pair(-ph, nh);
164 int AnalogSignal::scale_handle_offset() const
166 const int h = (pos_vdivs_ + neg_vdivs_) * div_height_;
168 return ((scale_index_drag_offset_ - scale_index_) * h / 4) - h / 2;
171 void AnalogSignal::scale_handle_dragged(int offset)
173 const int h = (pos_vdivs_ + neg_vdivs_) * div_height_;
175 scale_index_ = scale_index_drag_offset_ - (offset + h / 2) / (h / 4);
180 void AnalogSignal::scale_handle_drag_release()
182 scale_index_drag_offset_ = scale_index_;
186 void AnalogSignal::paint_back(QPainter &p, ViewItemPaintParams &pp)
188 if (base_->enabled()) {
189 Trace::paint_back(p, pp);
190 paint_axis(p, pp, get_visual_y());
194 void AnalogSignal::paint_mid(QPainter &p, ViewItemPaintParams &pp)
196 assert(base_->analog_data());
199 const int y = get_visual_y();
201 if (!base_->enabled())
204 if ((display_type_ == DisplayAnalog) || (display_type_ == DisplayBoth)) {
205 paint_grid(p, y, pp.left(), pp.right());
207 const deque< shared_ptr<pv::data::AnalogSegment> > &segments =
208 base_->analog_data()->analog_segments();
209 if (segments.empty())
212 const shared_ptr<pv::data::AnalogSegment> &segment =
215 const double pixels_offset = pp.pixels_offset();
216 const double samplerate = max(1.0, segment->samplerate());
217 const pv::util::Timestamp& start_time = segment->start_time();
218 const int64_t last_sample = segment->get_sample_count() - 1;
219 const double samples_per_pixel = samplerate * pp.scale();
220 const pv::util::Timestamp start = samplerate * (pp.offset() - start_time);
221 const pv::util::Timestamp end = start + samples_per_pixel * pp.width();
223 const int64_t start_sample = min(max(floor(start).convert_to<int64_t>(),
224 (int64_t)0), last_sample);
225 const int64_t end_sample = min(max((ceil(end) + 1).convert_to<int64_t>(),
226 (int64_t)0), last_sample);
228 if (samples_per_pixel < EnvelopeThreshold)
229 paint_trace(p, segment, y, pp.left(),
230 start_sample, end_sample,
231 pixels_offset, samples_per_pixel);
233 paint_envelope(p, segment, y, pp.left(),
234 start_sample, end_sample,
235 pixels_offset, samples_per_pixel);
238 if ((display_type_ == DisplayConverted) || (display_type_ == DisplayBoth)) {
239 const data::SignalBase::ConversionType conv_type =
240 base_->get_conversion_type();
242 if (((conv_type == data::SignalBase::A2LConversionByTreshold) ||
243 (conv_type == data::SignalBase::A2LConversionBySchmittTrigger))) {
245 paint_logic_mid(p, pp);
250 void AnalogSignal::paint_fore(QPainter &p, ViewItemPaintParams &pp)
255 if ((display_type_ == DisplayAnalog) || (display_type_ == DisplayBoth)) {
256 const int y = get_visual_y();
258 // Show the info section on the right side of the trace
259 const QString infotext = QString("%1 V/div").arg(resolution_);
261 p.setPen(base_->colour());
262 p.setFont(QApplication::font());
264 const QRectF bounding_rect = QRectF(pp.left(),
265 y + v_extents().first,
266 pp.width() - InfoTextMarginRight,
267 v_extents().second - v_extents().first - InfoTextMarginBottom);
269 p.drawText(bounding_rect, Qt::AlignRight | Qt::AlignBottom, infotext);
273 void AnalogSignal::paint_grid(QPainter &p, int y, int left, int right)
275 p.setRenderHint(QPainter::Antialiasing, false);
277 GlobalSettings settings;
278 const bool show_analog_minor_grid =
279 settings.value(GlobalSettings::Key_View_ShowAnalogMinorGrid).toBool();
281 if (pos_vdivs_ > 0) {
282 p.setPen(QPen(GridMajorColor, 1, Qt::DashLine));
283 for (int i = 1; i <= pos_vdivs_; i++) {
284 const float dy = i * div_height_;
285 p.drawLine(QLineF(left, y - dy, right, y - dy));
289 if ((pos_vdivs_ > 0) && show_analog_minor_grid) {
290 p.setPen(QPen(GridMinorColor, 1, Qt::DashLine));
291 for (int i = 0; i < pos_vdivs_; i++) {
292 const float dy = i * div_height_;
293 const float dy25 = dy + (0.25 * div_height_);
294 const float dy50 = dy + (0.50 * div_height_);
295 const float dy75 = dy + (0.75 * div_height_);
296 p.drawLine(QLineF(left, y - dy25, right, y - dy25));
297 p.drawLine(QLineF(left, y - dy50, right, y - dy50));
298 p.drawLine(QLineF(left, y - dy75, right, y - dy75));
302 if (neg_vdivs_ > 0) {
303 p.setPen(QPen(GridMajorColor, 1, Qt::DashLine));
304 for (int i = 1; i <= neg_vdivs_; i++) {
305 const float dy = i * div_height_;
306 p.drawLine(QLineF(left, y + dy, right, y + dy));
310 if ((pos_vdivs_ > 0) && show_analog_minor_grid) {
311 p.setPen(QPen(GridMinorColor, 1, Qt::DashLine));
312 for (int i = 0; i < neg_vdivs_; i++) {
313 const float dy = i * div_height_;
314 const float dy25 = dy + (0.25 * div_height_);
315 const float dy50 = dy + (0.50 * div_height_);
316 const float dy75 = dy + (0.75 * div_height_);
317 p.drawLine(QLineF(left, y + dy25, right, y + dy25));
318 p.drawLine(QLineF(left, y + dy50, right, y + dy50));
319 p.drawLine(QLineF(left, y + dy75, right, y + dy75));
323 p.setRenderHint(QPainter::Antialiasing, true);
326 void AnalogSignal::paint_trace(QPainter &p,
327 const shared_ptr<pv::data::AnalogSegment> &segment,
328 int y, int left, const int64_t start, const int64_t end,
329 const double pixels_offset, const double samples_per_pixel)
334 // Calculate and paint the sampling points if enabled and useful
335 GlobalSettings settings;
336 const bool show_sampling_points =
337 settings.value(GlobalSettings::Key_View_ShowSamplingPoints).toBool() &&
338 (samples_per_pixel < 0.25);
340 p.setPen(base_->colour());
342 const int64_t points_count = end - start;
344 QPointF *points = new QPointF[points_count];
345 QPointF *point = points;
347 QRectF *sampling_points = nullptr;
348 if (show_sampling_points)
349 sampling_points = new QRectF[points_count];
350 QRectF *sampling_point = sampling_points;
352 int64_t sample_count = min(points_count, TracePaintBlockSize);
353 int64_t block_sample = 0;
354 float *sample_block = new float[TracePaintBlockSize];
355 segment->get_samples(start, start + sample_count, sample_block);
358 for (int64_t sample = start; sample != end; sample++, block_sample++) {
360 if (block_sample == TracePaintBlockSize) {
362 sample_count = min(points_count - sample, TracePaintBlockSize);
363 segment->get_samples(sample, sample + sample_count, sample_block);
366 const float x = (sample / samples_per_pixel -
367 pixels_offset) + left;
369 *point++ = QPointF(x, y - sample_block[block_sample] * scale_);
371 if (show_sampling_points)
373 QRectF(x - (w / 2), y - sample_block[block_sample] * scale_ - (w / 2), w, w);
375 delete[] sample_block;
377 p.drawPolyline(points, points_count);
379 if (show_sampling_points) {
380 p.setPen(SamplingPointColour);
381 p.drawRects(sampling_points, points_count);
382 delete[] sampling_points;
388 void AnalogSignal::paint_envelope(QPainter &p,
389 const shared_ptr<pv::data::AnalogSegment> &segment,
390 int y, int left, const int64_t start, const int64_t end,
391 const double pixels_offset, const double samples_per_pixel)
393 using pv::data::AnalogSegment;
395 AnalogSegment::EnvelopeSection e;
396 segment->get_envelope_section(e, start, end, samples_per_pixel);
401 p.setPen(QPen(Qt::NoPen));
402 p.setBrush(base_->colour());
404 QRectF *const rects = new QRectF[e.length];
405 QRectF *rect = rects;
407 for (uint64_t sample = 0; sample < e.length - 1; sample++) {
408 const float x = ((e.scale * sample + e.start) /
409 samples_per_pixel - pixels_offset) + left;
410 const AnalogSegment::EnvelopeSample *const s =
413 // We overlap this sample with the next so that vertical
414 // gaps do not appear during steep rising or falling edges
415 const float b = y - max(s->max, (s + 1)->min) * scale_;
416 const float t = y - min(s->min, (s + 1)->max) * scale_;
419 if (h >= 0.0f && h <= 1.0f)
421 if (h <= 0.0f && h >= -1.0f)
424 *rect++ = QRectF(x, t, 1.0f, h);
427 p.drawRects(rects, e.length);
433 void AnalogSignal::paint_logic_mid(QPainter &p, ViewItemPaintParams &pp)
437 vector< pair<int64_t, bool> > edges;
441 const int y = get_visual_y();
443 if (!base_->enabled() || !base_->logic_data())
446 const int signal_margin =
447 QFontMetrics(QApplication::font()).height() / 2;
449 const int ph = min(pos_vdivs_, 1) * div_height_;
450 const int nh = min(neg_vdivs_, 1) * div_height_;
451 const float high_offset = y - ph + signal_margin + 0.5f;
452 const float low_offset = y + nh - signal_margin - 0.5f;
454 const deque< shared_ptr<pv::data::LogicSegment> > &segments =
455 base_->logic_data()->logic_segments();
457 if (segments.empty())
460 const shared_ptr<pv::data::LogicSegment> &segment =
463 double samplerate = segment->samplerate();
465 // Show sample rate as 1Hz when it is unknown
466 if (samplerate == 0.0)
469 const double pixels_offset = pp.pixels_offset();
470 const pv::util::Timestamp& start_time = segment->start_time();
471 const int64_t last_sample = segment->get_sample_count() - 1;
472 const double samples_per_pixel = samplerate * pp.scale();
473 const double pixels_per_sample = 1 / samples_per_pixel;
474 const pv::util::Timestamp start = samplerate * (pp.offset() - start_time);
475 const pv::util::Timestamp end = start + samples_per_pixel * pp.width();
477 const int64_t start_sample = min(max(floor(start).convert_to<int64_t>(),
478 (int64_t)0), last_sample);
479 const uint64_t end_sample = min(max(ceil(end).convert_to<int64_t>(),
480 (int64_t)0), last_sample);
482 segment->get_subsampled_edges(edges, start_sample, end_sample,
483 samples_per_pixel / LogicSignal::Oversampling, 0);
484 assert(edges.size() >= 2);
486 // Check whether we need to paint the sampling points
487 GlobalSettings settings;
488 const bool show_sampling_points =
489 settings.value(GlobalSettings::Key_View_ShowSamplingPoints).toBool() &&
490 (samples_per_pixel < 0.25);
492 vector<QRectF> sampling_points;
493 float sampling_point_x = 0.0f;
494 int64_t sampling_point_sample = start_sample;
497 if (show_sampling_points) {
498 sampling_points.reserve(end_sample - start_sample + 1);
499 sampling_point_x = (edges.cbegin()->first / samples_per_pixel - pixels_offset) + pp.left();
503 const unsigned int edge_count = edges.size() - 2;
504 QLineF *const edge_lines = new QLineF[edge_count];
507 for (auto i = edges.cbegin() + 1; i != edges.cend() - 1; i++) {
508 const float x = ((*i).first / samples_per_pixel -
509 pixels_offset) + pp.left();
510 *line++ = QLineF(x, high_offset, x, low_offset);
512 if (show_sampling_points)
513 while (sampling_point_sample < (*i).first) {
514 const float y = (*i).second ? low_offset : high_offset;
515 sampling_points.emplace_back(
516 QRectF(sampling_point_x - (w / 2), y - (w / 2), w, w));
517 sampling_point_sample++;
518 sampling_point_x += pixels_per_sample;
522 // Calculate the sample points from the last edge to the end of the trace
523 if (show_sampling_points)
524 while ((uint64_t)sampling_point_sample <= end_sample) {
525 // Signal changed after the last edge, so the level is inverted
526 const float y = (edges.cend() - 1)->second ? high_offset : low_offset;
527 sampling_points.emplace_back(
528 QRectF(sampling_point_x - (w / 2), y - (w / 2), w, w));
529 sampling_point_sample++;
530 sampling_point_x += pixels_per_sample;
533 p.setPen(LogicSignal::EdgeColour);
534 p.drawLines(edge_lines, edge_count);
538 const unsigned int max_cap_line_count = edges.size();
539 QLineF *const cap_lines = new QLineF[max_cap_line_count];
541 p.setPen(LogicSignal::HighColour);
542 paint_logic_caps(p, cap_lines, edges, true, samples_per_pixel,
543 pixels_offset, pp.left(), high_offset);
544 p.setPen(LogicSignal::LowColour);
545 paint_logic_caps(p, cap_lines, edges, false, samples_per_pixel,
546 pixels_offset, pp.left(), low_offset);
550 // Paint the sampling points
551 if (show_sampling_points) {
552 p.setPen(SamplingPointColour);
553 p.drawRects(sampling_points.data(), sampling_points.size());
557 void AnalogSignal::paint_logic_caps(QPainter &p, QLineF *const lines,
558 vector< pair<int64_t, bool> > &edges, bool level,
559 double samples_per_pixel, double pixels_offset, float x_offset,
562 QLineF *line = lines;
564 for (auto i = edges.begin(); i != (edges.end() - 1); i++)
565 if ((*i).second == level) {
567 ((*i).first / samples_per_pixel -
568 pixels_offset) + x_offset, y_offset,
569 ((*(i+1)).first / samples_per_pixel -
570 pixels_offset) + x_offset, y_offset);
573 p.drawLines(lines, line - lines);
576 float AnalogSignal::get_resolution(int scale_index)
578 const float seq[] = {1.0f, 2.0f, 5.0f};
580 const int offset = numeric_limits<int>::max() / (2 * countof(seq));
581 const div_t d = div((int)(scale_index + countof(seq) * offset),
584 return powf(10.0f, d.quot - offset) * seq[d.rem];
587 void AnalogSignal::update_scale()
589 resolution_ = get_resolution(scale_index_);
590 scale_ = div_height_ / resolution_;
593 void AnalogSignal::perform_autoranging(bool keep_divs, bool force_update)
595 const deque< shared_ptr<pv::data::AnalogSegment> > &segments =
596 base_->analog_data()->analog_segments();
598 if (segments.empty())
601 static double prev_min = 0, prev_max = 0;
602 double min = 0, max = 0;
604 for (shared_ptr<pv::data::AnalogSegment> segment : segments) {
605 pair<double, double> mm = segment->get_min_max();
606 min = std::min(min, mm.first);
607 max = std::max(max, mm.second);
610 if ((min == prev_min) && (max == prev_max) && !force_update)
616 // If we're allowed to alter the div assignment...
618 // Use all divs for the positive range if there are no negative values
619 if ((min == 0) && (neg_vdivs_ > 0)) {
620 pos_vdivs_ += neg_vdivs_;
624 // Split up the divs if there are negative values but no negative divs
625 if ((min < 0) && (neg_vdivs_ == 0)) {
626 neg_vdivs_ = pos_vdivs_ / 2;
627 pos_vdivs_ -= neg_vdivs_;
631 // If there is still no positive div when we need it, add one
632 // (this can happen when pos_vdivs==neg_vdivs==0)
633 if ((max > 0) && (pos_vdivs_ == 0)) {
635 owner_->extents_changed(false, true);
638 // If there is still no negative div when we need it, add one
639 // (this can happen when pos_vdivs was 0 or 1 when trying to split)
640 if ((min < 0) && (neg_vdivs_ == 0)) {
642 owner_->extents_changed(false, true);
645 double min_value_per_div;
646 if ((pos_vdivs_ > 0) && (neg_vdivs_ > 0))
647 min_value_per_div = std::max(max / pos_vdivs_, -min / neg_vdivs_);
648 else if (pos_vdivs_ > 0)
649 min_value_per_div = max / pos_vdivs_;
651 min_value_per_div = -min / neg_vdivs_;
653 // Find first scale value that is bigger than the value we need
654 for (int i = MinScaleIndex; i < MaxScaleIndex; i++)
655 if (get_resolution(i) > min_value_per_div) {
663 void AnalogSignal::populate_popup_form(QWidget *parent, QFormLayout *form)
665 // Add the standard options
666 Signal::populate_popup_form(parent, form);
668 QFormLayout *const layout = new QFormLayout;
670 // Add div-related settings
671 pvdiv_sb_ = new QSpinBox(parent);
672 pvdiv_sb_->setRange(0, MaximumVDivs);
673 pvdiv_sb_->setValue(pos_vdivs_);
674 connect(pvdiv_sb_, SIGNAL(valueChanged(int)),
675 this, SLOT(on_pos_vdivs_changed(int)));
676 layout->addRow(tr("Number of pos vertical divs"), pvdiv_sb_);
678 nvdiv_sb_ = new QSpinBox(parent);
679 nvdiv_sb_->setRange(0, MaximumVDivs);
680 nvdiv_sb_->setValue(neg_vdivs_);
681 connect(nvdiv_sb_, SIGNAL(valueChanged(int)),
682 this, SLOT(on_neg_vdivs_changed(int)));
683 layout->addRow(tr("Number of neg vertical divs"), nvdiv_sb_);
685 div_height_sb_ = new QSpinBox(parent);
686 div_height_sb_->setRange(20, 1000);
687 div_height_sb_->setSingleStep(5);
688 div_height_sb_->setSuffix(tr(" pixels"));
689 div_height_sb_->setValue(div_height_);
690 connect(div_height_sb_, SIGNAL(valueChanged(int)),
691 this, SLOT(on_div_height_changed(int)));
692 layout->addRow(tr("Div height"), div_height_sb_);
694 // Add the vertical resolution
695 resolution_cb_ = new QComboBox(parent);
697 for (int i = MinScaleIndex; i < MaxScaleIndex; i++) {
698 const QString label = QString("%1").arg(get_resolution(i));
699 resolution_cb_->insertItem(0, label, QVariant(i));
702 int cur_idx = resolution_cb_->findData(QVariant(scale_index_));
703 resolution_cb_->setCurrentIndex(cur_idx);
705 connect(resolution_cb_, SIGNAL(currentIndexChanged(int)),
706 this, SLOT(on_resolution_changed(int)));
708 QGridLayout *const vdiv_layout = new QGridLayout;
709 QLabel *const vdiv_unit = new QLabel(tr("V/div"));
710 vdiv_layout->addWidget(resolution_cb_, 0, 0);
711 vdiv_layout->addWidget(vdiv_unit, 0, 1);
713 layout->addRow(tr("Vertical resolution"), vdiv_layout);
715 // Add the autoranging checkbox
716 QCheckBox* autoranging_cb = new QCheckBox();
717 autoranging_cb->setCheckState(autoranging_ ? Qt::Checked : Qt::Unchecked);
719 connect(autoranging_cb, SIGNAL(stateChanged(int)),
720 this, SLOT(on_autoranging_changed(int)));
722 layout->addRow(tr("Autoranging"), autoranging_cb);
724 // Add the conversion type dropdown
725 conversion_cb_ = new QComboBox();
727 conversion_cb_->addItem("none", data::SignalBase::NoConversion);
728 conversion_cb_->addItem("to logic via threshold", data::SignalBase::A2LConversionByTreshold);
729 conversion_cb_->addItem("to logic via schmitt-trigger", data::SignalBase::A2LConversionBySchmittTrigger);
731 cur_idx = conversion_cb_->findData(QVariant(base_->get_conversion_type()));
732 conversion_cb_->setCurrentIndex(cur_idx);
734 layout->addRow(tr("Conversion"), conversion_cb_);
736 connect(conversion_cb_, SIGNAL(currentIndexChanged(int)),
737 this, SLOT(on_conversion_changed(int)));
739 // Add the display type dropdown
740 display_type_cb_ = new QComboBox();
742 display_type_cb_->addItem(tr("Analog"), DisplayAnalog);
743 display_type_cb_->addItem(tr("Converted"), DisplayConverted);
744 display_type_cb_->addItem(tr("Both"), DisplayBoth);
746 cur_idx = display_type_cb_->findData(QVariant(display_type_));
747 display_type_cb_->setCurrentIndex(cur_idx);
749 layout->addRow(tr("Traces to show:"), display_type_cb_);
751 connect(display_type_cb_, SIGNAL(currentIndexChanged(int)),
752 this, SLOT(on_display_type_changed(int)));
754 form->addRow(layout);
757 void AnalogSignal::on_samples_added()
759 perform_autoranging(false, false);
762 void AnalogSignal::on_pos_vdivs_changed(int vdivs)
764 if (vdivs == pos_vdivs_)
769 // There has to be at least one div, positive or negative
770 if ((neg_vdivs_ == 0) && (pos_vdivs_ == 0)) {
773 pvdiv_sb_->setValue(pos_vdivs_);
777 perform_autoranging(true, true);
779 // It could be that a positive or negative div was added, so update
781 pvdiv_sb_->setValue(pos_vdivs_);
782 nvdiv_sb_->setValue(neg_vdivs_);
787 // Call order is important, otherwise the lazy event handler won't work
788 owner_->extents_changed(false, true);
789 owner_->row_item_appearance_changed(false, true);
793 void AnalogSignal::on_neg_vdivs_changed(int vdivs)
795 if (vdivs == neg_vdivs_)
800 // There has to be at least one div, positive or negative
801 if ((neg_vdivs_ == 0) && (pos_vdivs_ == 0)) {
804 pvdiv_sb_->setValue(pos_vdivs_);
808 perform_autoranging(true, true);
810 // It could be that a positive or negative div was added, so update
812 pvdiv_sb_->setValue(pos_vdivs_);
813 nvdiv_sb_->setValue(neg_vdivs_);
818 // Call order is important, otherwise the lazy event handler won't work
819 owner_->extents_changed(false, true);
820 owner_->row_item_appearance_changed(false, true);
824 void AnalogSignal::on_div_height_changed(int height)
826 div_height_ = height;
830 // Call order is important, otherwise the lazy event handler won't work
831 owner_->extents_changed(false, true);
832 owner_->row_item_appearance_changed(false, true);
836 void AnalogSignal::on_resolution_changed(int index)
838 scale_index_ = resolution_cb_->itemData(index).toInt();
842 owner_->row_item_appearance_changed(false, true);
845 void AnalogSignal::on_autoranging_changed(int state)
847 autoranging_ = (state == Qt::Checked);
850 perform_autoranging(false, true);
853 // Call order is important, otherwise the lazy event handler won't work
854 owner_->extents_changed(false, true);
855 owner_->row_item_appearance_changed(false, true);
859 void AnalogSignal::on_conversion_changed(int index)
861 data::SignalBase::ConversionType old_conv_type =
862 base_->get_conversion_type();
864 data::SignalBase::ConversionType conv_type =
865 (data::SignalBase::ConversionType)(conversion_cb_->itemData(index).toInt());
867 if (conv_type != old_conv_type) {
868 base_->set_conversion_type(conv_type);
871 owner_->row_item_appearance_changed(false, true);
875 void AnalogSignal::on_display_type_changed(int index)
877 display_type_ = (DisplayType)(display_type_cb_->itemData(index).toInt());
880 owner_->row_item_appearance_changed(false, true);