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