X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fanalogsignal.cpp;h=7e5bcd11facdb6d1a81368c27fd866da1afc6ff9;hp=b92792d7f6e630f431f8c14430a20bcec89ea3f5;hb=e40a79cb13eef1ca4f8e7670ac4a36e56b26a23c;hpb=834a4f1bb78a4098c59954500698bdd13060c219 diff --git a/pv/view/analogsignal.cpp b/pv/view/analogsignal.cpp index b92792d7..7e5bcd11 100644 --- a/pv/view/analogsignal.cpp +++ b/pv/view/analogsignal.cpp @@ -26,6 +26,12 @@ #include #include +#include +#include +#include +#include +#include +#include #include "analogsignal.hpp" #include "pv/data/analog.hpp" @@ -57,6 +63,13 @@ const QColor AnalogSignal::GridMinorColor = QColor(0xD0, 0xD0, 0xD0); const float AnalogSignal::EnvelopeThreshold = 256.0f; +const int AnalogSignal::MaximumVDivs = 10; +const int AnalogSignal::MinScaleIndex = -6; +const int AnalogSignal::MaxScaleIndex = 7; + +const int AnalogSignal::InfoTextMarginRight = 20; +const int AnalogSignal::InfoTextMarginBottom = 5; + AnalogSignal::AnalogSignal( pv::Session &session, shared_ptr channel, @@ -164,6 +177,27 @@ void AnalogSignal::paint_mid(QPainter &p, const ViewItemPaintParams &pp) pixels_offset, samples_per_pixel); } +void AnalogSignal::paint_fore(QPainter &p, const ViewItemPaintParams &pp) +{ + if (!enabled()) + return; + + const int y = get_visual_y(); + + // Show the info section on the right side of the trace + const QString infotext = QString("%1 V/div").arg(resolution_); + + p.setPen(colour_); + p.setFont(QApplication::font()); + + const QRectF bounding_rect = QRectF(pp.left(), + y + v_extents().first, + pp.width() - InfoTextMarginRight, + v_extents().second - v_extents().first - InfoTextMarginBottom); + + p.drawText(bounding_rect, Qt::AlignRight | Qt::AlignBottom, infotext); +} + void AnalogSignal::paint_grid(QPainter &p, int y, int left, int right) { p.setPen(QPen(GridMajorColor, 0.5, Qt::DashLine)); @@ -261,18 +295,79 @@ void AnalogSignal::paint_envelope(QPainter &p, delete[] e.samples; } -void AnalogSignal::update_scale() +float AnalogSignal::get_resolution(int scale_index) { const float seq[] = {1.0f, 2.0f, 5.0f}; const int offset = std::numeric_limits::max() / (2 * countof(seq)); const std::div_t d = std::div( - (int)(scale_index_ + countof(seq) * offset), + (int)(scale_index + countof(seq) * offset), countof(seq)); - resolution_ = powf(10.0f, d.quot - offset) * seq[d.rem]; + return powf(10.0f, d.quot - offset) * seq[d.rem]; +} + +void AnalogSignal::update_scale() +{ + resolution_ = get_resolution(scale_index_); scale_ = div_height_ / resolution_; } +void AnalogSignal::populate_popup_form(QWidget *parent, QFormLayout *form) +{ + // Add the standard options + Signal::populate_popup_form(parent, form); + + QFormLayout *const layout = new QFormLayout; + + // Add the number of vdivs + QSpinBox *vdiv_sb = new QSpinBox(parent); + vdiv_sb->setRange(1, MaximumVDivs); + vdiv_sb->setValue(vdivs_); + connect(vdiv_sb, SIGNAL(valueChanged(int)), + this, SLOT(on_vdivs_changed(int))); + layout->addRow(tr("Number of vertical divs"), vdiv_sb); + + // Add the vertical resolution + resolution_cb_ = new QComboBox(parent); + + for (int i = MinScaleIndex; i < MaxScaleIndex; i++) { + const QString label = QString("%1").arg(get_resolution(i)); + resolution_cb_->insertItem(0, label, QVariant(i)); + } + + const int cur_idx = resolution_cb_->findData(QVariant(scale_index_)); + resolution_cb_->setCurrentIndex(cur_idx); + + connect(resolution_cb_, SIGNAL(currentIndexChanged(int)), + this, SLOT(on_resolution_changed(int))); + + QGridLayout *const vdiv_layout = new QGridLayout; + QLabel *const vdiv_unit = new QLabel(tr("V/div")); + vdiv_layout->addWidget(resolution_cb_, 0, 0); + vdiv_layout->addWidget(vdiv_unit, 0, 1); + + layout->addRow(tr("Vertical resolution"), vdiv_layout); + + form->addRow(layout); +} + +void AnalogSignal::on_vdivs_changed(int vdivs) +{ + vdivs_ = vdivs; + + if (owner_) + owner_->extents_changed(false, true); +} + +void AnalogSignal::on_resolution_changed(int index) +{ + scale_index_ = resolution_cb_->itemData(index).toInt(); + update_scale(); + + if (owner_) + owner_->row_item_appearance_changed(false, true); +} + } // namespace view } // namespace pv