]> sigrok.org Git - pulseview.git/blame - pv/toolbars/mainbar.cpp
MainBar: Only show "total sampling time" tooltip if supported by device.
[pulseview.git] / pv / toolbars / mainbar.cpp
CommitLineData
d4984fe7 1/*
b3f22de0 2 * This file is part of the PulseView project.
d4984fe7 3 *
079d39ea 4 * Copyright (C) 2012-2015 Joel Holdsworth <joel@airwebreathe.org.uk>
d4984fe7
JH
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, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
09f5d123 21#include <extdef.h>
dde1a563 22
079d39ea
JH
23#include <algorithm>
24#include <cassert>
215f9499 25
dde1a563 26#include <QAction>
48888313 27#include <QDebug>
40065ab6 28#include <QHelpEvent>
87f0df9b 29#include <QMenu>
40065ab6 30#include <QToolTip>
dde1a563 31
7c657094 32#include "mainbar.hpp"
d4984fe7 33
2acdb232 34#include <pv/devicemanager.hpp>
da30ecb7 35#include <pv/devices/hardwaredevice.hpp>
4e7f5ba8 36#include <pv/mainwindow.hpp>
2acdb232
JH
37#include <pv/popups/deviceoptions.hpp>
38#include <pv/popups/channels.hpp>
39#include <pv/util.hpp>
998b89fd 40#include <pv/widgets/exportmenu.hpp>
ed43ef2e 41#include <pv/widgets/importmenu.hpp>
cdb50f67 42
fe3a1c21 43#include <libsigrokcxx/libsigrokcxx.hpp>
e8d00928 44
079d39ea
JH
45using std::back_inserter;
46using std::copy;
47using std::list;
19adbc2c 48using std::map;
b50ef520
JH
49using std::max;
50using std::min;
f9abf97e 51using std::shared_ptr;
819f4c25 52using std::string;
079d39ea 53using std::vector;
dd63af74 54
e8d00928
ML
55using sigrok::Capability;
56using sigrok::ConfigKey;
e8d00928 57using sigrok::Error;
ed43ef2e 58using sigrok::InputFormat;
e8d00928 59
51e77110 60namespace pv {
f4c92e1c 61namespace toolbars {
51e77110 62
7c657094
JH
63const uint64_t MainBar::MinSampleCount = 100ULL;
64const uint64_t MainBar::MaxSampleCount = 1000000000000ULL;
65const uint64_t MainBar::DefaultSampleCount = 1000000;
09f5d123 66
7c657094 67MainBar::MainBar(Session &session, MainWindow &main_window) :
4e7f5ba8 68 QToolBar("Sampling Bar", &main_window),
8dbbc7f0 69 session_(session),
4e7f5ba8 70 main_window_(main_window),
079d39ea
JH
71 device_selector_(this, session.device_manager(),
72 main_window.action_connect()),
8dbbc7f0 73 configure_button_(this),
4c60462b 74 configure_button_action_(nullptr),
8dbbc7f0 75 channels_button_(this),
9dd88889 76 channels_button_action_(nullptr),
8dbbc7f0
JH
77 sample_count_(" samples", this),
78 sample_rate_("Hz", this),
79 updating_sample_rate_(false),
80 updating_sample_count_(false),
81 sample_count_supported_(false),
82 icon_red_(":/icons/status-red.svg"),
83 icon_green_(":/icons/status-green.svg"),
84 icon_grey_(":/icons/status-grey.svg"),
87f0df9b 85 run_stop_button_(this),
9dd88889 86 run_stop_button_action_(nullptr),
87f0df9b 87 menu_button_(this)
6fb67b27 88{
7c657094 89 setObjectName(QString::fromUtf8("MainBar"));
0c7cdea2 90
f2dbf150
JH
91 setMovable(false);
92 setFloatable(false);
758f6023 93 setContextMenuPolicy(Qt::PreventContextMenu);
f2dbf150 94
ed43ef2e
JH
95 // Open button
96 QToolButton *const open_button = new QToolButton(this);
97
98 widgets::ImportMenu *import_menu = new widgets::ImportMenu(this,
99 session.device_manager().context(),
100 main_window.action_open());
101 connect(import_menu,
102 SIGNAL(format_selected(std::shared_ptr<sigrok::InputFormat>)),
103 &main_window_,
104 SLOT(import_file(std::shared_ptr<sigrok::InputFormat>)));
105
106 open_button->setMenu(import_menu);
107 open_button->setDefaultAction(main_window.action_open());
108 open_button->setPopupMode(QToolButton::MenuButtonPopup);
109
998b89fd
JH
110 // Save button
111 QToolButton *const save_button = new QToolButton(this);
112
686d9151
SA
113 vector<QAction *> open_actions;
114 open_actions.push_back(main_window.action_save_as());
61501398 115 open_actions.push_back(main_window.action_save_selection_as());
686d9151 116
998b89fd
JH
117 widgets::ExportMenu *export_menu = new widgets::ExportMenu(this,
118 session.device_manager().context(),
686d9151 119 open_actions);
998b89fd
JH
120 connect(export_menu,
121 SIGNAL(format_selected(std::shared_ptr<sigrok::OutputFormat>)),
122 &main_window_,
123 SLOT(export_file(std::shared_ptr<sigrok::OutputFormat>)));
124
125 save_button->setMenu(export_menu);
126 save_button->setDefaultAction(main_window.action_save_as());
127 save_button->setPopupMode(QToolButton::MenuButtonPopup);
128
079d39ea
JH
129 // Device selector menu
130 connect(&device_selector_, SIGNAL(device_selected()),
131 this, SLOT(on_device_selected()));
132
168888e2
JH
133 // Setup the decoder button
134#ifdef ENABLE_DECODE
135 QToolButton *add_decoder_button = new QToolButton(this);
136 add_decoder_button->setIcon(QIcon::fromTheme("add-decoder",
137 QIcon(":/icons/add-decoder.svg")));
138 add_decoder_button->setPopupMode(QToolButton::InstantPopup);
139 add_decoder_button->setMenu(main_window_.menu_decoder_add());
140#endif
141
c7b03d9d 142 // Setup the burger menu
87f0df9b
JH
143 QMenu *const menu = new QMenu(this);
144
c7b03d9d
SA
145 QMenu *const menu_view = new QMenu;
146 menu_view->setTitle(tr("&View"));
147 menu_view->addAction(main_window.action_view_sticky_scrolling());
148
87f0df9b
JH
149 QMenu *const menu_help = new QMenu;
150 menu_help->setTitle(tr("&Help"));
151 menu_help->addAction(main_window.action_about());
152
c7b03d9d
SA
153 menu->addAction(menu_view->menuAction());
154 menu->addSeparator();
87f0df9b
JH
155 menu->addAction(menu_help->menuAction());
156 menu->addSeparator();
157 menu->addAction(main_window.action_quit());
158
159 menu_button_.setMenu(menu);
160 menu_button_.setPopupMode(QToolButton::InstantPopup);
161 menu_button_.setIcon(QIcon::fromTheme("menu",
162 QIcon(":/icons/menu.svg")));
163
164 // Setup the toolbar
ed43ef2e 165 addWidget(open_button);
998b89fd 166 addWidget(save_button);
87f0df9b
JH
167 addSeparator();
168 addAction(main_window.action_view_zoom_in());
169 addAction(main_window.action_view_zoom_out());
170 addAction(main_window.action_view_zoom_fit());
171 addAction(main_window.action_view_zoom_one_to_one());
172 addSeparator();
bdf57963
JH
173 addAction(main_window.action_view_show_cursors());
174 addSeparator();
87f0df9b 175
8dbbc7f0 176 connect(&run_stop_button_, SIGNAL(clicked()),
9f3d12f3 177 this, SLOT(on_run_stop()));
8dbbc7f0 178 connect(&sample_count_, SIGNAL(value_changed()),
124d97de 179 this, SLOT(on_sample_count_changed()));
8dbbc7f0 180 connect(&sample_rate_, SIGNAL(value_changed()),
1198b887 181 this, SLOT(on_sample_rate_changed()));
dde1a563 182
8dbbc7f0 183 sample_count_.show_min_max_step(0, UINT64_MAX, 1);
215f9499 184
2b81ae46 185 set_capture_state(pv::Session::Stopped);
274d4f13 186
8dbbc7f0 187 configure_button_.setIcon(QIcon::fromTheme("configure",
688ef645 188 QIcon(":/icons/configure.png")));
b7b659aa 189
8dbbc7f0 190 channels_button_.setIcon(QIcon::fromTheme("channels",
6ac6242b 191 QIcon(":/icons/channels.svg")));
cdb50f67 192
8dbbc7f0 193 run_stop_button_.setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
f5798068 194
8dbbc7f0
JH
195 addWidget(&device_selector_);
196 configure_button_action_ = addWidget(&configure_button_);
9dd88889 197 channels_button_action_ = addWidget(&channels_button_);
8dbbc7f0
JH
198 addWidget(&sample_count_);
199 addWidget(&sample_rate_);
9dd88889 200 run_stop_button_action_ = addWidget(&run_stop_button_);
168888e2
JH
201#ifdef ENABLE_DECODE
202 addSeparator();
203 addWidget(add_decoder_button);
204#endif
40065ab6 205
87f0df9b
JH
206 QWidget *const spacer = new QWidget();
207 spacer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
208 addWidget(spacer);
209
210 addWidget(&menu_button_);
211
8dbbc7f0
JH
212 sample_count_.installEventFilter(this);
213 sample_rate_.installEventFilter(this);
6fb67b27
JH
214}
215
079d39ea 216void MainBar::update_device_list()
18203d86 217{
079d39ea 218 DeviceManager &mgr = session_.device_manager();
da30ecb7
JH
219 shared_ptr<devices::Device> selected_device = session_.device();
220 list< shared_ptr<devices::Device> > devs;
e8d00928 221
079d39ea 222 copy(mgr.devices().begin(), mgr.devices().end(), back_inserter(devs));
53a7cce4 223
079d39ea
JH
224 if (std::find(devs.begin(), devs.end(), selected_device) == devs.end())
225 devs.push_back(selected_device);
e95e8563 226
079d39ea 227 device_selector_.set_device_list(devs, selected_device);
e95e8563 228 update_device_config_widgets();
18203d86
JH
229}
230
6fb67b27 231
7c657094 232void MainBar::set_capture_state(pv::Session::capture_state state)
6ac96c2e 233{
8dbbc7f0
JH
234 const QIcon *icons[] = {&icon_grey_, &icon_red_, &icon_green_};
235 run_stop_button_.setIcon(*icons[state]);
2b81ae46 236 run_stop_button_.setText((state == pv::Session::Stopped) ?
2b49eeb0 237 tr("Run") : tr("Stop"));
8dbbc7f0 238 run_stop_button_.setShortcut(QKeySequence(Qt::Key_Space));
73e170f9
SA
239
240 bool ui_enabled = (state == pv::Session::Stopped) ? true : false;
241
242 device_selector_.setEnabled(ui_enabled);
243 configure_button_.setEnabled(ui_enabled);
244 channels_button_.setEnabled(ui_enabled);
245 sample_count_.setEnabled(ui_enabled);
246 sample_rate_.setEnabled(ui_enabled);
6ac96c2e
JH
247}
248
7c657094 249void MainBar::update_sample_rate_selector()
dde1a563 250{
e8d00928
ML
251 Glib::VariantContainerBase gvar_dict;
252 GVariant *gvar_list;
4c60462b 253 const uint64_t *elements = nullptr;
488f5d3f 254 gsize num_elements;
a6ed12bf 255 map< const ConfigKey*, std::set<Capability> > keys;
dde1a563 256
9dd88889
JH
257 if (updating_sample_rate_) {
258 sample_rate_.show_none();
3d4f16af 259 return;
9dd88889 260 }
3d4f16af 261
da30ecb7
JH
262 const shared_ptr<devices::Device> device =
263 device_selector_.selected_device();
e8d00928 264 if (!device)
ef4d0201
JH
265 return;
266
8dbbc7f0
JH
267 assert(!updating_sample_rate_);
268 updating_sample_rate_ = true;
1198b887 269
da30ecb7 270 const shared_ptr<sigrok::Device> sr_dev = device->device();
a6ed12bf
JH
271
272 try {
273 keys = sr_dev->config_keys(ConfigKey::DEVICE_OPTIONS);
274 } catch (Error) {}
275
ed1d9d81
JH
276 const auto iter = keys.find(ConfigKey::SAMPLERATE);
277 if (iter != keys.end() &&
278 (*iter).second.find(sigrok::LIST) != (*iter).second.end()) {
c2db8ec3 279 try {
da30ecb7 280 gvar_dict = sr_dev->config_list(ConfigKey::SAMPLERATE);
c2db8ec3
JH
281 } catch(const sigrok::Error &e) {
282 // Failed to enunmerate samplerate
283 (void)e;
284 }
285 }
286
0aff286e 287 if (!gvar_dict.gobj()) {
8dbbc7f0
JH
288 sample_rate_.show_none();
289 updating_sample_rate_ = false;
dde1a563 290 return;
1198b887 291 }
dde1a563 292
e8d00928 293 if ((gvar_list = g_variant_lookup_value(gvar_dict.gobj(),
1198b887
JH
294 "samplerate-steps", G_VARIANT_TYPE("at"))))
295 {
488f5d3f
BV
296 elements = (const uint64_t *)g_variant_get_fixed_array(
297 gvar_list, &num_elements, sizeof(uint64_t));
aafe53af
JH
298
299 const uint64_t min = elements[0];
300 const uint64_t max = elements[1];
301 const uint64_t step = elements[2];
302
488f5d3f 303 g_variant_unref(gvar_list);
aafe53af
JH
304
305 assert(min > 0);
306 assert(max > 0);
307 assert(max > min);
308 assert(step > 0);
309
310 if (step == 1)
8dbbc7f0 311 sample_rate_.show_125_list(min, max);
aafe53af
JH
312 else
313 {
314 // When the step is not 1, we cam't make a 1-2-5-10
315 // list of sample rates, because we may not be able to
316 // make round numbers. Therefore in this case, show a
317 // spin box.
8dbbc7f0 318 sample_rate_.show_min_max_step(min, max, step);
aafe53af 319 }
dde1a563 320 }
e8d00928 321 else if ((gvar_list = g_variant_lookup_value(gvar_dict.gobj(),
488f5d3f 322 "samplerates", G_VARIANT_TYPE("at"))))
dde1a563 323 {
488f5d3f
BV
324 elements = (const uint64_t *)g_variant_get_fixed_array(
325 gvar_list, &num_elements, sizeof(uint64_t));
8dbbc7f0 326 sample_rate_.show_list(elements, num_elements);
488f5d3f 327 g_variant_unref(gvar_list);
dde1a563 328 }
8dbbc7f0 329 updating_sample_rate_ = false;
48888313
JH
330
331 update_sample_rate_selector_value();
332}
333
7c657094 334void MainBar::update_sample_rate_selector_value()
48888313 335{
8dbbc7f0 336 if (updating_sample_rate_)
3d4f16af
JH
337 return;
338
da30ecb7
JH
339 const shared_ptr<devices::Device> device =
340 device_selector_.selected_device();
e8d00928 341 if (!device)
19adbc2c
JH
342 return;
343
e8d00928 344 try {
da30ecb7 345 auto gvar = device->device()->config_get(ConfigKey::SAMPLERATE);
e8d00928 346 uint64_t samplerate =
15289d5c 347 Glib::VariantBase::cast_dynamic<Glib::Variant<guint64>>(gvar).get();
8dbbc7f0
JH
348 assert(!updating_sample_rate_);
349 updating_sample_rate_ = true;
350 sample_rate_.set_value(samplerate);
351 updating_sample_rate_ = false;
e8d00928 352 } catch (Error error) {
8dd44190 353 qDebug() << "WARNING: Failed to get value of sample rate";
eb4008a6
JH
354 return;
355 }
48888313
JH
356}
357
7c657094 358void MainBar::update_sample_count_selector()
85756012 359{
8dbbc7f0 360 if (updating_sample_count_)
3d4f16af
JH
361 return;
362
da30ecb7
JH
363 const shared_ptr<devices::Device> device =
364 device_selector_.selected_device();
e8d00928 365 if (!device)
19adbc2c
JH
366 return;
367
da30ecb7
JH
368 const shared_ptr<sigrok::Device> sr_dev = device->device();
369
8dbbc7f0
JH
370 assert(!updating_sample_count_);
371 updating_sample_count_ = true;
85756012 372
3e7636f9 373 if (!sample_count_supported_)
df3c1aa3 374 {
3e7636f9
JH
375 sample_count_.show_none();
376 updating_sample_count_ = false;
377 return;
378 }
b50ef520 379
3e7636f9
JH
380 uint64_t sample_count = sample_count_.value();
381 uint64_t min_sample_count = 0;
382 uint64_t max_sample_count = MaxSampleCount;
3cbffdcf 383
3e7636f9
JH
384 if (sample_count == 0)
385 sample_count = DefaultSampleCount;
b50ef520 386
da30ecb7 387 const auto keys = sr_dev->config_keys(ConfigKey::DEVICE_OPTIONS);
ed1d9d81
JH
388 const auto iter = keys.find(ConfigKey::LIMIT_SAMPLES);
389 if (iter != keys.end() &&
390 (*iter).second.find(sigrok::LIST) != (*iter).second.end()) {
6454b1e9
JH
391 try {
392 auto gvar =
da30ecb7 393 sr_dev->config_list(ConfigKey::LIMIT_SAMPLES);
0aff286e 394 if (gvar.gobj())
6454b1e9
JH
395 g_variant_get(gvar.gobj(), "(tt)",
396 &min_sample_count, &max_sample_count);
397 } catch(const sigrok::Error &e) {
398 // Failed to query sample limit
399 (void)e;
400 }
ed1d9d81 401 }
1d04852f 402
3e7636f9
JH
403 min_sample_count = min(max(min_sample_count, MinSampleCount),
404 max_sample_count);
b50ef520 405
3e7636f9
JH
406 sample_count_.show_125_list(
407 min_sample_count, max_sample_count);
b50ef520 408
3e7636f9 409 try {
da30ecb7 410 auto gvar = sr_dev->config_get(ConfigKey::LIMIT_SAMPLES);
3e7636f9
JH
411 sample_count = g_variant_get_uint64(gvar.gobj());
412 if (sample_count == 0)
413 sample_count = DefaultSampleCount;
414 sample_count = min(max(sample_count, MinSampleCount),
415 max_sample_count);
416 } catch (Error error) {}
417
418 sample_count_.set_value(sample_count);
df3c1aa3 419
8dbbc7f0 420 updating_sample_count_ = false;
85756012
ML
421}
422
7c657094 423void MainBar::update_device_config_widgets()
e95e8563 424{
e95e8563
JH
425 using namespace pv::popups;
426
da30ecb7
JH
427 const shared_ptr<devices::Device> device =
428 device_selector_.selected_device();
9dd88889
JH
429
430 // Hide the widgets if no device is selected
431 channels_button_action_->setVisible(!!device);
432 run_stop_button_action_->setVisible(!!device);
433 if (!device) {
434 configure_button_action_->setVisible(false);
435 sample_count_.show_none();
436 sample_rate_.show_none();
e95e8563 437 return;
9dd88889 438 }
e95e8563 439
da30ecb7
JH
440 const shared_ptr<sigrok::Device> sr_dev = device->device();
441 if (!sr_dev)
442 return;
443
e95e8563 444 // Update the configure popup
da30ecb7 445 DeviceOptions *const opts = new DeviceOptions(sr_dev, this);
8dbbc7f0 446 configure_button_action_->setVisible(
e95e8563 447 !opts->binding().properties().empty());
8dbbc7f0 448 configure_button_.set_popup(opts);
e95e8563 449
6ac6242b 450 // Update the channels popup
8dbbc7f0
JH
451 Channels *const channels = new Channels(session_, this);
452 channels_button_.set_popup(channels);
e95e8563
JH
453
454 // Update supported options.
8dbbc7f0 455 sample_count_supported_ = false;
e95e8563 456
e8d00928 457 try {
da30ecb7 458 for (auto entry : sr_dev->config_keys(ConfigKey::DEVICE_OPTIONS))
e95e8563 459 {
e8d00928
ML
460 auto key = entry.first;
461 auto capabilities = entry.second;
462 switch (key->id()) {
e95e8563 463 case SR_CONF_LIMIT_SAMPLES:
e8d00928 464 if (capabilities.count(Capability::SET))
8dbbc7f0 465 sample_count_supported_ = true;
e95e8563
JH
466 break;
467 case SR_CONF_LIMIT_FRAMES:
e8d00928
ML
468 if (capabilities.count(Capability::SET))
469 {
da30ecb7 470 sr_dev->config_set(ConfigKey::LIMIT_FRAMES,
15289d5c 471 Glib::Variant<guint64>::create(1));
e8d00928
ML
472 on_config_changed();
473 }
474 break;
475 default:
e95e8563
JH
476 break;
477 }
478 }
e8d00928 479 } catch (Error error) {}
e95e8563
JH
480
481 // Add notification of reconfigure events
482 disconnect(this, SLOT(on_config_changed()));
e8d00928 483 connect(&opts->binding(), SIGNAL(config_changed()),
e95e8563
JH
484 this, SLOT(on_config_changed()));
485
486 // Update sweep timing widgets.
487 update_sample_count_selector();
488 update_sample_rate_selector();
489}
490
7c657094 491void MainBar::commit_sample_count()
124d97de
ML
492{
493 uint64_t sample_count = 0;
494
da30ecb7
JH
495 const shared_ptr<devices::Device> device =
496 device_selector_.selected_device();
e8d00928 497 if (!device)
19adbc2c
JH
498 return;
499
da30ecb7
JH
500 const shared_ptr<sigrok::Device> sr_dev = device->device();
501
8dbbc7f0 502 sample_count = sample_count_.value();
8dbbc7f0 503 if (sample_count_supported_)
e8d00928
ML
504 {
505 try {
da30ecb7 506 sr_dev->config_set(ConfigKey::LIMIT_SAMPLES,
15289d5c 507 Glib::Variant<guint64>::create(sample_count));
449aec3c 508 update_sample_count_selector();
e8d00928
ML
509 } catch (Error error) {
510 qDebug() << "Failed to configure sample count.";
511 return;
512 }
124d97de 513 }
e13e7879
SA
514
515 // Devices with built-in memory might impose limits on certain
516 // configurations, so let's check what sample rate the driver
517 // lets us use now.
518 update_sample_rate_selector();
124d97de
ML
519}
520
7c657094 521void MainBar::commit_sample_rate()
48888313
JH
522{
523 uint64_t sample_rate = 0;
524
da30ecb7
JH
525 const shared_ptr<devices::Device> device =
526 device_selector_.selected_device();
e8d00928 527 if (!device)
19adbc2c
JH
528 return;
529
da30ecb7
JH
530 const shared_ptr<sigrok::Device> sr_dev = device->device();
531
8dbbc7f0 532 sample_rate = sample_rate_.value();
f9541bde
JH
533 if (sample_rate == 0)
534 return;
535
e8d00928 536 try {
da30ecb7 537 sr_dev->config_set(ConfigKey::SAMPLERATE,
15289d5c 538 Glib::Variant<guint64>::create(sample_rate));
0e0b6b3e 539 update_sample_rate_selector();
e8d00928 540 } catch (Error error) {
48888313
JH
541 qDebug() << "Failed to configure samplerate.";
542 return;
543 }
e13e7879
SA
544
545 // Devices with built-in memory might impose limits on certain
546 // configurations, so let's check what sample count the driver
547 // lets us use now.
548 update_sample_count_selector();
dde1a563
JH
549}
550
7c657094 551void MainBar::on_device_selected()
dde1a563 552{
da30ecb7 553 shared_ptr<devices::Device> device = device_selector_.selected_device();
e8d00928 554 if (!device)
19adbc2c
JH
555 return;
556
51cf49fe 557 main_window_.select_device(device);
51d4a9ab 558
e95e8563 559 update_device_config_widgets();
dde1a563 560}
51e77110 561
7c657094 562void MainBar::on_sample_count_changed()
124d97de 563{
449aec3c
SA
564 if (!updating_sample_count_)
565 commit_sample_count();
124d97de
ML
566}
567
7c657094 568void MainBar::on_sample_rate_changed()
48888313 569{
0e0b6b3e
SA
570 if (!updating_sample_rate_)
571 commit_sample_rate();
48888313
JH
572}
573
7c657094 574void MainBar::on_run_stop()
9f3d12f3 575{
b50ef520 576 commit_sample_count();
9f3d12f3 577 commit_sample_rate();
4e7f5ba8 578 main_window_.run_stop();
9f3d12f3
JH
579}
580
7c657094 581void MainBar::on_config_changed()
82afd5e3
JH
582{
583 commit_sample_count();
82afd5e3 584 commit_sample_rate();
82afd5e3
JH
585}
586
7c657094 587bool MainBar::eventFilter(QObject *watched, QEvent *event)
40065ab6 588{
4a818587
TS
589 if (sample_count_supported_ &&
590 (watched == &sample_count_ || watched == &sample_rate_) &&
40065ab6 591 (event->type() == QEvent::ToolTip)) {
60d9b99a 592 auto sec = pv::util::Timestamp(sample_count_.value()) / sample_rate_.value();
40065ab6 593 QHelpEvent *help_event = static_cast<QHelpEvent*>(event);
62974f45 594
3ccf0f7f
JS
595 QString str = tr("Total sampling time: %1").arg(
596 pv::util::format_time_si(sec, pv::util::SIPrefix::unspecified, 0, "s", false));
40065ab6
JS
597 QToolTip::showText(help_event->globalPos(), str);
598
599 return true;
600 }
601
602 return false;
603}
604
f4c92e1c 605} // namespace toolbars
51e77110 606} // namespace pv