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