SLOT(on_view_showAnalogMinorGrid_changed(int)));
trace_view_layout->addRow(tr("Show analog minor grid in addition to vdiv grid"), cb);
+ cb = create_checkbox(GlobalSettings::Key_View_ShowConversionThresholds,
+ SLOT(on_view_showConversionThresholds_changed(int)));
+ trace_view_layout->addRow(tr("Show conversion thresholds in analog traces"), cb);
+
QSpinBox *default_div_height_sb = new QSpinBox();
default_div_height_sb->setRange(20, 1000);
default_div_height_sb->setSuffix(tr(" pixels"));
settings.setValue(GlobalSettings::Key_View_ShowAnalogMinorGrid, state ? true : false);
}
+void Settings::on_view_showConversionThresholds_changed(int state)
+{
+ GlobalSettings settings;
+ settings.setValue(GlobalSettings::Key_View_ShowConversionThresholds, state ? true : false);
+}
+
void Settings::on_view_defaultDivHeight_changed(int value)
{
GlobalSettings settings;
void on_view_stickyScrolling_changed(int state);
void on_view_showSamplingPoints_changed(int state);
void on_view_showAnalogMinorGrid_changed(int state);
+ void on_view_showConversionThresholds_changed(int state);
void on_view_defaultDivHeight_changed(int value);
void on_view_defaultLogicHeight_changed(int value);
void on_dec_initialStateConfigurable_changed(int state);
const QString GlobalSettings::Key_View_StickyScrolling = "View_StickyScrolling";
const QString GlobalSettings::Key_View_ShowSamplingPoints = "View_ShowSamplingPoints";
const QString GlobalSettings::Key_View_ShowAnalogMinorGrid = "View_ShowAnalogMinorGrid";
+const QString GlobalSettings::Key_View_ShowConversionThresholds = "View_ShowConversionThresholds";
const QString GlobalSettings::Key_View_DefaultDivHeight = "View_DefaultDivHeight";
const QString GlobalSettings::Key_View_DefaultLogicHeight = "View_DefaultLogicHeight";
const QString GlobalSettings::Key_Dec_InitialStateConfigurable = "Dec_InitialStateConfigurable";
static const QString Key_View_StickyScrolling;
static const QString Key_View_ShowSamplingPoints;
static const QString Key_View_ShowAnalogMinorGrid;
+ static const QString Key_View_ShowConversionThresholds;
static const QString Key_View_DefaultDivHeight;
static const QString Key_View_DefaultLogicHeight;
static const QString Key_Dec_InitialStateConfigurable;
const QColor AnalogSignal::SamplingPointColour(0x77, 0x77, 0x77);
+const QColor AnalogSignal::ThresholdColor = QColor(0, 0, 0, 30 * 256 / 100);
+
const int64_t AnalogSignal::TracePaintBlockSize = 1024 * 1024; // 4 MiB (due to float)
const float AnalogSignal::EnvelopeThreshold = 64.0f;
pixels_offset, samples_per_pixel);
}
- if ((display_type_ == DisplayConverted) || (display_type_ == DisplayBoth)) {
- const SignalBase::ConversionType conv_type = base_->get_conversion_type();
+ const SignalBase::ConversionType conv_type = base_->get_conversion_type();
+
+ if (((conv_type == SignalBase::A2LConversionByThreshold) ||
+ (conv_type == SignalBase::A2LConversionBySchmittTrigger))) {
+
+ if ((display_type_ == DisplayAnalog) || (display_type_ == DisplayBoth))
+ paint_conversion_thresholds(p, pp);
- if (((conv_type == SignalBase::A2LConversionByThreshold) ||
- (conv_type == SignalBase::A2LConversionBySchmittTrigger)))
+ if ((display_type_ == DisplayConverted) || (display_type_ == DisplayBoth))
paint_logic_mid(p, pp);
}
}
delete[] e.samples;
}
+void AnalogSignal::paint_conversion_thresholds(QPainter &p,
+ ViewItemPaintParams &pp)
+{
+ if (!base_->enabled() || !base_->logic_data())
+ return;
+
+ // TODO Register a change handler instead of querying this with every repaint
+ GlobalSettings settings;
+ const bool show_conversion_thresholds =
+ settings.value(GlobalSettings::Key_View_ShowConversionThresholds).toBool();
+
+ if (!show_conversion_thresholds)
+ return;
+
+ const vector<double> thresholds = base_->get_conversion_thresholds();
+ const int y = get_visual_y();
+
+ p.setRenderHint(QPainter::Antialiasing, false);
+
+ p.setPen(ThresholdColor);
+
+ if (thresholds.size() == 2) {
+ // Draw as hatched block because two thresholds denote lower/upper level
+ const double thr_y0 = y - thresholds[0] * scale_;
+ const double thr_y1 = y - thresholds[1] * scale_;
+ p.fillRect(QRect(pp.left(), thr_y0, pp.right(), thr_y1 - thr_y0),
+ QBrush(ThresholdColor, Qt::BDiagPattern));
+ } else {
+ // Draw as individual lines
+ for (const double thr : thresholds) {
+ const double thr_y = y - thr * scale_;
+ p.drawLine(QPointF(pp.left(), thr_y), QPointF(pp.right(), thr_y));
+ }
+ }
+
+ p.setRenderHint(QPainter::Antialiasing, true);
+}
+
void AnalogSignal::paint_logic_mid(QPainter &p, ViewItemPaintParams &pp)
{
QLineF *line;
static const QColor SignalColours[4];
static const QColor GridMajorColor, GridMinorColor;
static const QColor SamplingPointColour;
+ static const QColor ThresholdColor;
static const int64_t TracePaintBlockSize;
static const float EnvelopeThreshold;
int y, int left, const int64_t start, const int64_t end,
const double pixels_offset, const double samples_per_pixel);
+ void paint_conversion_thresholds(QPainter &p, ViewItemPaintParams &pp);
+
void paint_logic_mid(QPainter &p, ViewItemPaintParams &pp);
void paint_logic_caps(QPainter &p, QLineF *const lines,