X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Ftoolbars%2Fsamplingbar.cpp;h=dce7aa38417753c7927f3eefa0c23cd0369b7ae4;hb=3cbffdcf7c99c9722f9ba7b8b9e483c2f6132b68;hp=27af7c7b8acfd1cc6787cfbe70f6c917f08ac1ea;hpb=82afd5e35c8113b719d78e5c654edf933375218a;p=pulseview.git diff --git a/pv/toolbars/samplingbar.cpp b/pv/toolbars/samplingbar.cpp index 27af7c7b..dce7aa38 100644 --- a/pv/toolbars/samplingbar.cpp +++ b/pv/toolbars/samplingbar.cpp @@ -30,7 +30,7 @@ #include "samplingbar.h" #include -#include +#include #include #include @@ -96,14 +96,14 @@ SamplingBar::SamplingBar(SigSession &session, QWidget *parent) : } void SamplingBar::set_device_list( - const std::list< shared_ptr > &devices) + const std::list< shared_ptr > &devices) { _updating_device_selector = true; _device_selector.clear(); _device_selector_map.clear(); - BOOST_FOREACH (shared_ptr dev_inst, devices) { + BOOST_FOREACH (shared_ptr dev_inst, devices) { assert(dev_inst); const string title = dev_inst->format_device_title(); const sr_dev_inst *sdi = dev_inst->dev_inst(); @@ -115,36 +115,36 @@ void SamplingBar::set_device_list( } _updating_device_selector = false; - - on_device_selected(); } -shared_ptr SamplingBar::get_selected_device() const +shared_ptr SamplingBar::get_selected_device() const { const int index = _device_selector.currentIndex(); if (index < 0) - return shared_ptr(); + return shared_ptr(); const sr_dev_inst *const sdi = (const sr_dev_inst*)_device_selector.itemData( index).value(); assert(sdi); - map >:: + map >:: const_iterator iter = _device_selector_map.find(sdi); if (iter == _device_selector_map.end()) - return shared_ptr(); + return shared_ptr(); - return shared_ptr((*iter).second); + return shared_ptr((*iter).second); } -void SamplingBar::set_selected_device(boost::shared_ptr dev_inst) +void SamplingBar::set_selected_device(shared_ptr dev_inst) { assert(dev_inst); for (int i = 0; i < _device_selector.count(); i++) if (dev_inst->dev_inst() == _device_selector.itemData(i).value()) { + // Calling this leads to on_device_selected being + // invoked, which updates the sampling bar widgets. _device_selector.setCurrentIndex(i); return; } @@ -167,7 +167,7 @@ void SamplingBar::update_sample_rate_selector() if (_updating_sample_rate) return; - const shared_ptr dev_inst = get_selected_device(); + const shared_ptr dev_inst = get_selected_device(); if (!dev_inst) return; @@ -231,7 +231,7 @@ void SamplingBar::update_sample_rate_selector_value() if (_updating_sample_rate) return; - const shared_ptr dev_inst = get_selected_device(); + const shared_ptr dev_inst = get_selected_device(); if (!dev_inst) return; @@ -255,7 +255,7 @@ void SamplingBar::update_sample_count_selector() if (_updating_sample_count) return; - const shared_ptr dev_inst = get_selected_device(); + const shared_ptr dev_inst = get_selected_device(); if (!dev_inst) return; @@ -264,10 +264,13 @@ void SamplingBar::update_sample_count_selector() if (_sample_count_supported) { - uint64_t sample_count = DefaultSampleCount; + uint64_t sample_count = _sample_count.value(); uint64_t min_sample_count = 0; uint64_t max_sample_count = MaxSampleCount; + if (sample_count == 0) + sample_count = DefaultSampleCount; + if ((gvar = dev_inst->list_config(NULL, SR_CONF_LIMIT_SAMPLES))) { g_variant_get(gvar, "(tt)", @@ -307,7 +310,7 @@ void SamplingBar::commit_sample_count() if (_updating_sample_count) return; - const shared_ptr dev_inst = get_selected_device(); + const shared_ptr dev_inst = get_selected_device(); if (!dev_inst) return; @@ -316,7 +319,8 @@ void SamplingBar::commit_sample_count() // Set the sample count assert(!_updating_sample_count); _updating_sample_count = true; - if (!dev_inst->set_config(NULL, SR_CONF_LIMIT_SAMPLES, + if (_sample_count_supported && + !dev_inst->set_config(NULL, SR_CONF_LIMIT_SAMPLES, g_variant_new_uint64(sample_count))) { qDebug() << "Failed to configure sample count."; return; @@ -331,7 +335,7 @@ void SamplingBar::commit_sample_rate() if (_updating_sample_rate) return; - const shared_ptr dev_inst = get_selected_device(); + const shared_ptr dev_inst = get_selected_device(); if (!dev_inst) return; @@ -359,7 +363,7 @@ void SamplingBar::on_device_selected() if (_updating_device_selector) return; - const shared_ptr dev_inst = get_selected_device(); + const shared_ptr dev_inst = get_selected_device(); if (!dev_inst) return;