]> sigrok.org Git - pulseview.git/blame_incremental - pv/view/analogsignal.cpp
AnalogSignal: Don't paint logic when there's no logic data
[pulseview.git] / pv / view / analogsignal.cpp
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
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
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <extdef.h>
21
22#include <cassert>
23#include <cmath>
24#include <cstdlib>
25#include <limits>
26#include <vector>
27
28#include <QApplication>
29#include <QCheckBox>
30#include <QComboBox>
31#include <QFormLayout>
32#include <QGridLayout>
33#include <QLabel>
34#include <QSpinBox>
35#include <QString>
36
37#include "analogsignal.hpp"
38#include "pv/data/analog.hpp"
39#include "pv/data/analogsegment.hpp"
40#include "pv/data/logic.hpp"
41#include "pv/data/logicsegment.hpp"
42#include "pv/data/signalbase.hpp"
43#include "pv/globalsettings.hpp"
44#include "pv/view/logicsignal.hpp"
45#include "pv/view/view.hpp"
46
47#include <libsigrokcxx/libsigrokcxx.hpp>
48
49using std::deque;
50using std::div;
51using std::div_t;
52using std::max;
53using std::make_pair;
54using std::min;
55using std::numeric_limits;
56using std::pair;
57using std::shared_ptr;
58using std::vector;
59
60namespace pv {
61namespace views {
62namespace TraceView {
63
64const 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
69};
70
71const QColor AnalogSignal::GridMajorColor = QColor(0, 0, 0, 40 * 256 / 100);
72const QColor AnalogSignal::GridMinorColor = QColor(0, 0, 0, 20 * 256 / 100);
73
74const QColor AnalogSignal::SamplingPointColour(0x77, 0x77, 0x77);
75
76const int64_t AnalogSignal::TracePaintBlockSize = 1024 * 1024; // 4 MiB (due to float)
77const float AnalogSignal::EnvelopeThreshold = 64.0f;
78
79const int AnalogSignal::MaximumVDivs = 10;
80const int AnalogSignal::MinScaleIndex = -6;
81const int AnalogSignal::MaxScaleIndex = 7;
82
83const int AnalogSignal::InfoTextMarginRight = 20;
84const int AnalogSignal::InfoTextMarginBottom = 5;
85
86AnalogSignal::AnalogSignal(
87 pv::Session &session,
88 shared_ptr<data::SignalBase> base) :
89 Signal(session, base),
90 scale_index_(4), // 20 per div
91 scale_index_drag_offset_(0),
92 div_height_(3 * QFontMetrics(QApplication::font()).height()),
93 pos_vdivs_(1),
94 neg_vdivs_(1),
95 resolution_(0),
96 conversion_type_(data::SignalBase::NoConversion),
97 display_type_(DisplayBoth),
98 autoranging_(true)
99{
100 pv::data::Analog* analog_data =
101 dynamic_cast<pv::data::Analog*>(data().get());
102
103 connect(analog_data, SIGNAL(samples_added(QObject*, uint64_t, uint64_t)),
104 this, SLOT(on_samples_added()));
105
106 base_->set_colour(SignalColours[base_->index() % countof(SignalColours)]);
107 update_scale();
108}
109
110shared_ptr<pv::data::SignalData> AnalogSignal::data() const
111{
112 return base_->analog_data();
113}
114
115void AnalogSignal::save_settings(QSettings &settings) const
116{
117 settings.setValue("pos_vdivs", pos_vdivs_);
118 settings.setValue("neg_vdivs", neg_vdivs_);
119 settings.setValue("scale_index", scale_index_);
120 settings.setValue("conversion_type", conversion_type_);
121 settings.setValue("display_type", display_type_);
122 settings.setValue("autoranging", autoranging_);
123}
124
125void AnalogSignal::restore_settings(QSettings &settings)
126{
127 if (settings.contains("pos_vdivs"))
128 pos_vdivs_ = settings.value("pos_vdivs").toInt();
129
130 if (settings.contains("neg_vdivs"))
131 neg_vdivs_ = settings.value("neg_vdivs").toInt();
132
133 if (settings.contains("scale_index")) {
134 scale_index_ = settings.value("scale_index").toInt();
135 update_scale();
136 }
137
138 if (settings.contains("conversion_type")) {
139 conversion_type_ = (data::SignalBase::ConversionType)(settings.value("conversion_type").toInt());
140 update_conversion_type();
141 }
142
143 if (settings.contains("display_type"))
144 display_type_ = (DisplayType)(settings.value("display_type").toInt());
145
146 if (settings.contains("autoranging"))
147 autoranging_ = settings.value("autoranging").toBool();
148}
149
150pair<int, int> AnalogSignal::v_extents() const
151{
152 const int ph = pos_vdivs_ * div_height_;
153 const int nh = neg_vdivs_ * div_height_;
154 return make_pair(-ph, nh);
155}
156
157int AnalogSignal::scale_handle_offset() const
158{
159 const int h = (pos_vdivs_ + neg_vdivs_) * div_height_;
160
161 return ((scale_index_drag_offset_ - scale_index_) * h / 4) - h / 2;
162}
163
164void AnalogSignal::scale_handle_dragged(int offset)
165{
166 const int h = (pos_vdivs_ + neg_vdivs_) * div_height_;
167
168 scale_index_ = scale_index_drag_offset_ - (offset + h / 2) / (h / 4);
169
170 update_scale();
171}
172
173void AnalogSignal::scale_handle_drag_release()
174{
175 scale_index_drag_offset_ = scale_index_;
176 update_scale();
177}
178
179void AnalogSignal::paint_back(QPainter &p, ViewItemPaintParams &pp)
180{
181 if (base_->enabled()) {
182 Trace::paint_back(p, pp);
183 paint_axis(p, pp, get_visual_y());
184 }
185}
186
187void AnalogSignal::paint_mid(QPainter &p, ViewItemPaintParams &pp)
188{
189 assert(base_->analog_data());
190 assert(owner_);
191
192 const int y = get_visual_y();
193
194 if (!base_->enabled())
195 return;
196
197 if ((display_type_ == DisplayAnalog) || (display_type_ == DisplayBoth)) {
198 paint_grid(p, y, pp.left(), pp.right());
199
200 const deque< shared_ptr<pv::data::AnalogSegment> > &segments =
201 base_->analog_data()->analog_segments();
202 if (segments.empty())
203 return;
204
205 const shared_ptr<pv::data::AnalogSegment> &segment =
206 segments.front();
207
208 const double pixels_offset = pp.pixels_offset();
209 const double samplerate = max(1.0, segment->samplerate());
210 const pv::util::Timestamp& start_time = segment->start_time();
211 const int64_t last_sample = segment->get_sample_count() - 1;
212 const double samples_per_pixel = samplerate * pp.scale();
213 const pv::util::Timestamp start = samplerate * (pp.offset() - start_time);
214 const pv::util::Timestamp end = start + samples_per_pixel * pp.width();
215
216 const int64_t start_sample = min(max(floor(start).convert_to<int64_t>(),
217 (int64_t)0), last_sample);
218 const int64_t end_sample = min(max((ceil(end) + 1).convert_to<int64_t>(),
219 (int64_t)0), last_sample);
220
221 if (samples_per_pixel < EnvelopeThreshold)
222 paint_trace(p, segment, y, pp.left(),
223 start_sample, end_sample,
224 pixels_offset, samples_per_pixel);
225 else
226 paint_envelope(p, segment, y, pp.left(),
227 start_sample, end_sample,
228 pixels_offset, samples_per_pixel);
229 }
230
231 if ((display_type_ == DisplayConverted) || (display_type_ == DisplayBoth)) {
232 if (((conversion_type_ == data::SignalBase::A2LConversionByTreshold) ||
233 (conversion_type_ == data::SignalBase::A2LConversionBySchmittTrigger))) {
234
235 paint_logic_mid(p, pp);
236 }
237 }
238}
239
240void AnalogSignal::paint_fore(QPainter &p, ViewItemPaintParams &pp)
241{
242 if (!enabled())
243 return;
244
245 if ((display_type_ == DisplayAnalog) || (display_type_ == DisplayBoth)) {
246 const int y = get_visual_y();
247
248 // Show the info section on the right side of the trace
249 const QString infotext = QString("%1 V/div").arg(resolution_);
250
251 p.setPen(base_->colour());
252 p.setFont(QApplication::font());
253
254 const QRectF bounding_rect = QRectF(pp.left(),
255 y + v_extents().first,
256 pp.width() - InfoTextMarginRight,
257 v_extents().second - v_extents().first - InfoTextMarginBottom);
258
259 p.drawText(bounding_rect, Qt::AlignRight | Qt::AlignBottom, infotext);
260 }
261}
262
263void AnalogSignal::paint_grid(QPainter &p, int y, int left, int right)
264{
265 p.setRenderHint(QPainter::Antialiasing, false);
266
267 GlobalSettings settings;
268 const bool show_analog_minor_grid =
269 settings.value(GlobalSettings::Key_View_ShowAnalogMinorGrid).toBool();
270
271 if (pos_vdivs_ > 0) {
272 p.setPen(QPen(GridMajorColor, 1, Qt::DashLine));
273 for (int i = 1; i <= pos_vdivs_; i++) {
274 const float dy = i * div_height_;
275 p.drawLine(QLineF(left, y - dy, right, y - dy));
276 }
277 }
278
279 if ((pos_vdivs_ > 0) && show_analog_minor_grid) {
280 p.setPen(QPen(GridMinorColor, 1, Qt::DashLine));
281 for (int i = 0; i < pos_vdivs_; i++) {
282 const float dy = i * div_height_;
283 const float dy25 = dy + (0.25 * div_height_);
284 const float dy50 = dy + (0.50 * div_height_);
285 const float dy75 = dy + (0.75 * div_height_);
286 p.drawLine(QLineF(left, y - dy25, right, y - dy25));
287 p.drawLine(QLineF(left, y - dy50, right, y - dy50));
288 p.drawLine(QLineF(left, y - dy75, right, y - dy75));
289 }
290 }
291
292 if (neg_vdivs_ > 0) {
293 p.setPen(QPen(GridMajorColor, 1, Qt::DashLine));
294 for (int i = 1; i <= neg_vdivs_; i++) {
295 const float dy = i * div_height_;
296 p.drawLine(QLineF(left, y + dy, right, y + dy));
297 }
298 }
299
300 if ((pos_vdivs_ > 0) && show_analog_minor_grid) {
301 p.setPen(QPen(GridMinorColor, 1, Qt::DashLine));
302 for (int i = 0; i < neg_vdivs_; i++) {
303 const float dy = i * div_height_;
304 const float dy25 = dy + (0.25 * div_height_);
305 const float dy50 = dy + (0.50 * div_height_);
306 const float dy75 = dy + (0.75 * div_height_);
307 p.drawLine(QLineF(left, y + dy25, right, y + dy25));
308 p.drawLine(QLineF(left, y + dy50, right, y + dy50));
309 p.drawLine(QLineF(left, y + dy75, right, y + dy75));
310 }
311 }
312
313 p.setRenderHint(QPainter::Antialiasing, true);
314}
315
316void AnalogSignal::paint_trace(QPainter &p,
317 const shared_ptr<pv::data::AnalogSegment> &segment,
318 int y, int left, const int64_t start, const int64_t end,
319 const double pixels_offset, const double samples_per_pixel)
320{
321 if (end <= start)
322 return;
323
324 // Calculate and paint the sampling points if enabled and useful
325 GlobalSettings settings;
326 const bool show_sampling_points =
327 settings.value(GlobalSettings::Key_View_ShowSamplingPoints).toBool() &&
328 (samples_per_pixel < 0.25);
329
330 p.setPen(base_->colour());
331
332 const int64_t points_count = end - start;
333
334 QPointF *points = new QPointF[points_count];
335 QPointF *point = points;
336
337 QRectF *sampling_points = nullptr;
338 if (show_sampling_points)
339 sampling_points = new QRectF[points_count];
340 QRectF *sampling_point = sampling_points;
341
342 int64_t sample_count = min(points_count, TracePaintBlockSize);
343 int64_t block_sample = 0;
344 const float *sample_block = segment->get_samples(start, start + sample_count);
345
346 const int w = 2;
347 for (int64_t sample = start; sample != end; sample++, block_sample++) {
348
349 if (block_sample == TracePaintBlockSize) {
350 block_sample = 0;
351 delete[] sample_block;
352 sample_count = min(points_count - sample, TracePaintBlockSize);
353 sample_block = segment->get_samples(sample, sample + sample_count);
354 }
355
356 const float x = (sample / samples_per_pixel -
357 pixels_offset) + left;
358
359 *point++ = QPointF(x, y - sample_block[block_sample] * scale_);
360
361 if (show_sampling_points)
362 *sampling_point++ =
363 QRectF(x - (w / 2), y - sample_block[block_sample] * scale_ - (w / 2), w, w);
364 }
365 delete[] sample_block;
366
367 p.drawPolyline(points, points_count);
368
369 if (show_sampling_points) {
370 p.setPen(SamplingPointColour);
371 p.drawRects(sampling_points, points_count);
372 delete[] sampling_points;
373 }
374
375 delete[] points;
376}
377
378void AnalogSignal::paint_envelope(QPainter &p,
379 const shared_ptr<pv::data::AnalogSegment> &segment,
380 int y, int left, const int64_t start, const int64_t end,
381 const double pixels_offset, const double samples_per_pixel)
382{
383 using pv::data::AnalogSegment;
384
385 AnalogSegment::EnvelopeSection e;
386 segment->get_envelope_section(e, start, end, samples_per_pixel);
387
388 if (e.length < 2)
389 return;
390
391 p.setPen(QPen(Qt::NoPen));
392 p.setBrush(base_->colour());
393
394 QRectF *const rects = new QRectF[e.length];
395 QRectF *rect = rects;
396
397 for (uint64_t sample = 0; sample < e.length - 1; sample++) {
398 const float x = ((e.scale * sample + e.start) /
399 samples_per_pixel - pixels_offset) + left;
400 const AnalogSegment::EnvelopeSample *const s =
401 e.samples + sample;
402
403 // We overlap this sample with the next so that vertical
404 // gaps do not appear during steep rising or falling edges
405 const float b = y - max(s->max, (s + 1)->min) * scale_;
406 const float t = y - min(s->min, (s + 1)->max) * scale_;
407
408 float h = b - t;
409 if (h >= 0.0f && h <= 1.0f)
410 h = 1.0f;
411 if (h <= 0.0f && h >= -1.0f)
412 h = -1.0f;
413
414 *rect++ = QRectF(x, t, 1.0f, h);
415 }
416
417 p.drawRects(rects, e.length);
418
419 delete[] rects;
420 delete[] e.samples;
421}
422
423void AnalogSignal::paint_logic_mid(QPainter &p, ViewItemPaintParams &pp)
424{
425 QLineF *line;
426
427 vector< pair<int64_t, bool> > edges;
428
429 assert(base_);
430
431 const int y = get_visual_y();
432
433 if (!base_->enabled() || !base_->logic_data())
434 return;
435
436 const int signal_margin =
437 QFontMetrics(QApplication::font()).height() / 2;
438
439 const int ph = min(pos_vdivs_, 1) * div_height_;
440 const int nh = min(neg_vdivs_, 1) * div_height_;
441 const float high_offset = y - ph + signal_margin + 0.5f;
442 const float low_offset = y + nh - signal_margin - 0.5f;
443
444 const deque< shared_ptr<pv::data::LogicSegment> > &segments =
445 base_->logic_data()->logic_segments();
446
447 if (segments.empty())
448 return;
449
450 const shared_ptr<pv::data::LogicSegment> &segment =
451 segments.front();
452
453 double samplerate = segment->samplerate();
454
455 // Show sample rate as 1Hz when it is unknown
456 if (samplerate == 0.0)
457 samplerate = 1.0;
458
459 const double pixels_offset = pp.pixels_offset();
460 const pv::util::Timestamp& start_time = segment->start_time();
461 const int64_t last_sample = segment->get_sample_count() - 1;
462 const double samples_per_pixel = samplerate * pp.scale();
463 const pv::util::Timestamp start = samplerate * (pp.offset() - start_time);
464 const pv::util::Timestamp end = start + samples_per_pixel * pp.width();
465
466 const int64_t start_sample = min(max(floor(start).convert_to<int64_t>(),
467 (int64_t)0), last_sample);
468 const uint64_t end_sample = min(max(ceil(end).convert_to<int64_t>(),
469 (int64_t)0), last_sample);
470
471 segment->get_subsampled_edges(edges, start_sample, end_sample,
472 samples_per_pixel / LogicSignal::Oversampling, 0);
473 assert(edges.size() >= 2);
474
475 // Paint the edges
476 const unsigned int edge_count = edges.size() - 2;
477 QLineF *const edge_lines = new QLineF[edge_count];
478 line = edge_lines;
479
480 for (auto i = edges.cbegin() + 1; i != edges.cend() - 1; i++) {
481 const float x = ((*i).first / samples_per_pixel -
482 pixels_offset) + pp.left();
483 *line++ = QLineF(x, high_offset, x, low_offset);
484 }
485
486 p.setPen(LogicSignal::EdgeColour);
487 p.drawLines(edge_lines, edge_count);
488 delete[] edge_lines;
489
490 // Paint the caps
491 const unsigned int max_cap_line_count = edges.size();
492 QLineF *const cap_lines = new QLineF[max_cap_line_count];
493
494 p.setPen(LogicSignal::HighColour);
495 paint_logic_caps(p, cap_lines, edges, true, samples_per_pixel,
496 pixels_offset, pp.left(), high_offset);
497 p.setPen(LogicSignal::LowColour);
498 paint_logic_caps(p, cap_lines, edges, false, samples_per_pixel,
499 pixels_offset, pp.left(), low_offset);
500
501 delete[] cap_lines;
502
503 // Return if we don't need to paint the sampling points
504 GlobalSettings settings;
505 const bool show_sampling_points =
506 settings.value(GlobalSettings::Key_View_ShowSamplingPoints).toBool();
507
508 if (!show_sampling_points || (samples_per_pixel >= 0.25))
509 return;
510
511 // Paint the sampling points
512 const uint64_t sampling_points_count = end_sample - start_sample + 1;
513 QRectF *const sampling_points = new QRectF[sampling_points_count];
514 QRectF *sampling_point = sampling_points;
515
516 const int w = 1;
517 const float y_middle = high_offset - ((high_offset - low_offset) / 2);
518 for (uint64_t i = start_sample; i < end_sample + 1; ++i) {
519 const float x = (i / samples_per_pixel - pixels_offset) + pp.left();
520 *sampling_point++ = QRectF(x - (w / 2), y_middle - (w / 2), w, w);
521 }
522
523 p.setPen(SamplingPointColour);
524 p.drawRects(sampling_points, sampling_points_count);
525 delete[] sampling_points;
526}
527
528void AnalogSignal::paint_logic_caps(QPainter &p, QLineF *const lines,
529 vector< pair<int64_t, bool> > &edges, bool level,
530 double samples_per_pixel, double pixels_offset, float x_offset,
531 float y_offset)
532{
533 QLineF *line = lines;
534
535 for (auto i = edges.begin(); i != (edges.end() - 1); i++)
536 if ((*i).second == level) {
537 *line++ = QLineF(
538 ((*i).first / samples_per_pixel -
539 pixels_offset) + x_offset, y_offset,
540 ((*(i+1)).first / samples_per_pixel -
541 pixels_offset) + x_offset, y_offset);
542 }
543
544 p.drawLines(lines, line - lines);
545}
546
547float AnalogSignal::get_resolution(int scale_index)
548{
549 const float seq[] = {1.0f, 2.0f, 5.0f};
550
551 const int offset = numeric_limits<int>::max() / (2 * countof(seq));
552 const div_t d = div((int)(scale_index + countof(seq) * offset),
553 countof(seq));
554
555 return powf(10.0f, d.quot - offset) * seq[d.rem];
556}
557
558void AnalogSignal::update_scale()
559{
560 resolution_ = get_resolution(scale_index_);
561 scale_ = div_height_ / resolution_;
562}
563
564void AnalogSignal::update_conversion_type()
565{
566 base_->set_conversion_type(conversion_type_);
567
568 if (owner_)
569 owner_->row_item_appearance_changed(false, true);
570}
571
572void AnalogSignal::perform_autoranging(bool force_update)
573{
574 const deque< shared_ptr<pv::data::AnalogSegment> > &segments =
575 base_->analog_data()->analog_segments();
576
577 if (segments.empty())
578 return;
579
580 static double prev_min = 0, prev_max = 0;
581 double min = 0, max = 0;
582
583 for (shared_ptr<pv::data::AnalogSegment> segment : segments) {
584 pair<double, double> mm = segment->get_min_max();
585 min = std::min(min, mm.first);
586 max = std::max(max, mm.second);
587 }
588
589 if ((min == prev_min) && (max == prev_max) && !force_update)
590 return;
591
592 prev_min = min;
593 prev_max = max;
594
595 // Use all divs for the positive range if there are no negative values
596 if ((min == 0) && (neg_vdivs_ > 0)) {
597 pos_vdivs_ += neg_vdivs_;
598 neg_vdivs_ = 0;
599 }
600
601 // Split up the divs if there are negative values but no negative divs
602 if ((min < 0) && (neg_vdivs_ == 0)) {
603 neg_vdivs_ = pos_vdivs_ / 2;
604 pos_vdivs_ -= neg_vdivs_;
605 }
606
607 double min_value_per_div;
608 if ((pos_vdivs_ > 0) && (neg_vdivs_ > 0))
609 min_value_per_div = std::max(max / pos_vdivs_, -min / neg_vdivs_);
610 else if (pos_vdivs_ > 0)
611 min_value_per_div = max / pos_vdivs_;
612 else
613 min_value_per_div = -min / neg_vdivs_;
614
615 // Find first scale value that is bigger than the value we need
616 for (int i = MinScaleIndex; i < MaxScaleIndex; i++)
617 if (get_resolution(i) > min_value_per_div) {
618 scale_index_ = i;
619 break;
620 }
621
622 update_scale();
623}
624
625void AnalogSignal::populate_popup_form(QWidget *parent, QFormLayout *form)
626{
627 // Add the standard options
628 Signal::populate_popup_form(parent, form);
629
630 QFormLayout *const layout = new QFormLayout;
631
632 // Add the number of vdivs
633 QSpinBox *pvdiv_sb = new QSpinBox(parent);
634 pvdiv_sb->setRange(0, MaximumVDivs);
635 pvdiv_sb->setValue(pos_vdivs_);
636 connect(pvdiv_sb, SIGNAL(valueChanged(int)),
637 this, SLOT(on_pos_vdivs_changed(int)));
638 layout->addRow(tr("Number of pos vertical divs"), pvdiv_sb);
639
640 QSpinBox *nvdiv_sb = new QSpinBox(parent);
641 nvdiv_sb->setRange(0, MaximumVDivs);
642 nvdiv_sb->setValue(neg_vdivs_);
643 connect(nvdiv_sb, SIGNAL(valueChanged(int)),
644 this, SLOT(on_neg_vdivs_changed(int)));
645 layout->addRow(tr("Number of neg vertical divs"), nvdiv_sb);
646
647 // Add the vertical resolution
648 resolution_cb_ = new QComboBox(parent);
649
650 for (int i = MinScaleIndex; i < MaxScaleIndex; i++) {
651 const QString label = QString("%1").arg(get_resolution(i));
652 resolution_cb_->insertItem(0, label, QVariant(i));
653 }
654
655 int cur_idx = resolution_cb_->findData(QVariant(scale_index_));
656 resolution_cb_->setCurrentIndex(cur_idx);
657
658 connect(resolution_cb_, SIGNAL(currentIndexChanged(int)),
659 this, SLOT(on_resolution_changed(int)));
660
661 QGridLayout *const vdiv_layout = new QGridLayout;
662 QLabel *const vdiv_unit = new QLabel(tr("V/div"));
663 vdiv_layout->addWidget(resolution_cb_, 0, 0);
664 vdiv_layout->addWidget(vdiv_unit, 0, 1);
665
666 layout->addRow(tr("Vertical resolution"), vdiv_layout);
667
668 // Add the autoranging checkbox
669 QCheckBox* autoranging_cb = new QCheckBox();
670 autoranging_cb->setCheckState(autoranging_ ? Qt::Checked : Qt::Unchecked);
671
672 connect(autoranging_cb, SIGNAL(stateChanged(int)),
673 this, SLOT(on_autoranging_changed(int)));
674
675 layout->addRow(tr("Autoranging"), autoranging_cb);
676
677 // Add the conversion type dropdown
678 conversion_cb_ = new QComboBox();
679
680 conversion_cb_->addItem("none", data::SignalBase::NoConversion);
681 conversion_cb_->addItem("to logic via threshold", data::SignalBase::A2LConversionByTreshold);
682 conversion_cb_->addItem("to logic via schmitt-trigger", data::SignalBase::A2LConversionBySchmittTrigger);
683
684 cur_idx = conversion_cb_->findData(QVariant(conversion_type_));
685 conversion_cb_->setCurrentIndex(cur_idx);
686
687 layout->addRow(tr("Conversion"), conversion_cb_);
688
689 connect(conversion_cb_, SIGNAL(currentIndexChanged(int)),
690 this, SLOT(on_conversion_changed(int)));
691
692 // Add the display type dropdown
693 display_type_cb_ = new QComboBox();
694
695 display_type_cb_->addItem(tr("Analog"), DisplayAnalog);
696 display_type_cb_->addItem(tr("Converted"), DisplayConverted);
697 display_type_cb_->addItem(tr("Both"), DisplayBoth);
698
699 cur_idx = display_type_cb_->findData(QVariant(display_type_));
700 display_type_cb_->setCurrentIndex(cur_idx);
701
702 layout->addRow(tr("Traces to show:"), display_type_cb_);
703
704 connect(display_type_cb_, SIGNAL(currentIndexChanged(int)),
705 this, SLOT(on_display_type_changed(int)));
706
707 form->addRow(layout);
708}
709
710void AnalogSignal::on_samples_added()
711{
712 perform_autoranging();
713
714 if (owner_) {
715 // Call order is important, otherwise the lazy event handler won't work
716 owner_->extents_changed(false, true);
717 owner_->row_item_appearance_changed(false, true);
718 }
719}
720
721void AnalogSignal::on_pos_vdivs_changed(int vdivs)
722{
723 pos_vdivs_ = vdivs;
724
725 if (autoranging_)
726 perform_autoranging(true);
727
728 if (owner_) {
729 // Call order is important, otherwise the lazy event handler won't work
730 owner_->extents_changed(false, true);
731 owner_->row_item_appearance_changed(false, true);
732 }
733}
734
735void AnalogSignal::on_neg_vdivs_changed(int vdivs)
736{
737 neg_vdivs_ = vdivs;
738
739 if (autoranging_)
740 perform_autoranging(true);
741
742 if (owner_) {
743 // Call order is important, otherwise the lazy event handler won't work
744 owner_->extents_changed(false, true);
745 owner_->row_item_appearance_changed(false, true);
746 }
747}
748
749void AnalogSignal::on_resolution_changed(int index)
750{
751 scale_index_ = resolution_cb_->itemData(index).toInt();
752 update_scale();
753
754 if (owner_)
755 owner_->row_item_appearance_changed(false, true);
756}
757
758void AnalogSignal::on_autoranging_changed(int state)
759{
760 autoranging_ = (state == Qt::Checked);
761
762 if (autoranging_)
763 perform_autoranging(true);
764
765 if (owner_) {
766 // Call order is important, otherwise the lazy event handler won't work
767 owner_->extents_changed(false, true);
768 owner_->row_item_appearance_changed(false, true);
769 }
770}
771
772void AnalogSignal::on_conversion_changed(int index)
773{
774 data::SignalBase::ConversionType old_conv_type = conversion_type_;
775
776 conversion_type_ = (data::SignalBase::ConversionType)(conversion_cb_->itemData(index).toInt());
777
778 if (conversion_type_ != old_conv_type) {
779 base_->set_conversion_type(conversion_type_);
780 update_conversion_type();
781 }
782}
783
784void AnalogSignal::on_display_type_changed(int index)
785{
786 display_type_ = (DisplayType)(display_type_cb_->itemData(index).toInt());
787
788 if (owner_)
789 owner_->row_item_appearance_changed(false, true);
790}
791
792} // namespace TraceView
793} // namespace views
794} // namespace pv