Add menu option for coloured/alternating trace background colors
[pulseview.git] / pv / mainwindow.cpp
1 /*
2  * This file is part of the PulseView project.
3  *
4  * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
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
21 #include <cassert>
22
23 #ifdef ENABLE_DECODE
24 #include <libsigrokdecode/libsigrokdecode.h>
25 #endif
26
27 #include <algorithm>
28 #include <iterator>
29
30 #include <boost/algorithm/string/join.hpp>
31
32 #include <QAction>
33 #include <QApplication>
34 #include <QButtonGroup>
35 #include <QCloseEvent>
36 #include <QFileDialog>
37 #include <QMessageBox>
38 #include <QMenu>
39 #include <QMenuBar>
40 #include <QSettings>
41 #include <QStatusBar>
42 #include <QVBoxLayout>
43 #include <QWidget>
44
45 #include "mainwindow.hpp"
46
47 #include "devicemanager.hpp"
48 #include "util.hpp"
49 #include "data/segment.hpp"
50 #include "devices/hardwaredevice.hpp"
51 #include "devices/inputfile.hpp"
52 #include "devices/sessionfile.hpp"
53 #include "dialogs/about.hpp"
54 #include "dialogs/connect.hpp"
55 #include "dialogs/inputoutputoptions.hpp"
56 #include "dialogs/storeprogress.hpp"
57 #include "toolbars/mainbar.hpp"
58 #include "view/logicsignal.hpp"
59 #include "view/view.hpp"
60 #include "widgets/exportmenu.hpp"
61 #include "widgets/importmenu.hpp"
62 #ifdef ENABLE_DECODE
63 #include "widgets/decodermenu.hpp"
64 #endif
65 #include "widgets/hidingmenubar.hpp"
66
67 #include <inttypes.h>
68 #include <stdint.h>
69 #include <stdarg.h>
70 #include <glib.h>
71 #include <libsigrokcxx/libsigrokcxx.hpp>
72
73 using std::cerr;
74 using std::endl;
75 using std::list;
76 using std::map;
77 using std::pair;
78 using std::shared_ptr;
79 using std::string;
80 using std::vector;
81
82 using boost::algorithm::join;
83
84 using sigrok::Error;
85 using sigrok::OutputFormat;
86 using sigrok::InputFormat;
87
88 namespace pv {
89
90 namespace view {
91 class ViewItem;
92 }
93
94 const char *MainWindow::SettingOpenDirectory = "MainWindow/OpenDirectory";
95 const char *MainWindow::SettingSaveDirectory = "MainWindow/SaveDirectory";
96
97 MainWindow::MainWindow(DeviceManager &device_manager,
98         string open_file_name, string open_file_format,
99         QWidget *parent) :
100         QMainWindow(parent),
101         device_manager_(device_manager),
102         session_(device_manager),
103         action_open_(new QAction(this)),
104         action_save_as_(new QAction(this)),
105         action_save_selection_as_(new QAction(this)),
106         action_connect_(new QAction(this)),
107         action_quit_(new QAction(this)),
108         action_view_zoom_in_(new QAction(this)),
109         action_view_zoom_out_(new QAction(this)),
110         action_view_zoom_fit_(new QAction(this)),
111         action_view_zoom_one_to_one_(new QAction(this)),
112         action_view_sticky_scrolling_(new QAction(this)),
113         action_view_coloured_bg_(new QAction(this)),
114         action_view_show_cursors_(new QAction(this)),
115         action_about_(new QAction(this))
116 #ifdef ENABLE_DECODE
117         , menu_decoders_add_(new pv::widgets::DecoderMenu(this, true))
118 #endif
119 {
120         qRegisterMetaType<util::Timestamp>("util::Timestamp");
121
122         setup_ui();
123         restore_ui_settings();
124         if (open_file_name.empty())
125                 select_init_device();
126         else
127                 load_init_file(open_file_name, open_file_format);
128 }
129
130 QAction* MainWindow::action_open() const
131 {
132         return action_open_;
133 }
134
135 QAction* MainWindow::action_save_as() const
136 {
137         return action_save_as_;
138 }
139
140 QAction* MainWindow::action_save_selection_as() const
141 {
142         return action_save_selection_as_;
143 }
144
145 QAction* MainWindow::action_connect() const
146 {
147         return action_connect_;
148 }
149
150 QAction* MainWindow::action_quit() const
151 {
152         return action_quit_;
153 }
154
155 QAction* MainWindow::action_view_zoom_in() const
156 {
157         return action_view_zoom_in_;
158 }
159
160 QAction* MainWindow::action_view_zoom_out() const
161 {
162         return action_view_zoom_out_;
163 }
164
165 QAction* MainWindow::action_view_zoom_fit() const
166 {
167         return action_view_zoom_fit_;
168 }
169
170 QAction* MainWindow::action_view_zoom_one_to_one() const
171 {
172         return action_view_zoom_one_to_one_;
173 }
174
175 QAction* MainWindow::action_view_sticky_scrolling() const
176 {
177         return action_view_sticky_scrolling_;
178 }
179
180 QAction* MainWindow::action_view_show_cursors() const
181 {
182         return action_view_show_cursors_;
183 }
184
185 QAction* MainWindow::action_about() const
186 {
187         return action_about_;
188 }
189
190 #ifdef ENABLE_DECODE
191 QMenu* MainWindow::menu_decoder_add() const
192 {
193         return menu_decoders_add_;
194 }
195 #endif
196
197 void MainWindow::run_stop()
198 {
199         switch (session_.get_capture_state()) {
200         case Session::Stopped:
201                 session_.start_capture([&](QString message) {
202                         session_error("Capture failed", message); });
203                 break;
204         case Session::AwaitingTrigger:
205         case Session::Running:
206                 session_.stop_capture();
207                 break;
208         }
209 }
210
211 void MainWindow::select_device(shared_ptr<devices::Device> device)
212 {
213         try {
214                 if (device)
215                         session_.set_device(device);
216                 else
217                         session_.set_default_device();
218         } catch (const QString &e) {
219                 QMessageBox msg(this);
220                 msg.setText(e);
221                 msg.setInformativeText(tr("Failed to Select Device"));
222                 msg.setStandardButtons(QMessageBox::Ok);
223                 msg.setIcon(QMessageBox::Warning);
224                 msg.exec();
225         }
226 }
227
228 void MainWindow::export_file(shared_ptr<OutputFormat> format,
229         bool selection_only)
230 {
231         using pv::dialogs::StoreProgress;
232
233         // Stop any currently running capture session
234         session_.stop_capture();
235
236         QSettings settings;
237         const QString dir = settings.value(SettingSaveDirectory).toString();
238
239         std::pair<uint64_t, uint64_t> sample_range;
240
241         // Selection only? Verify that the cursors are active and fetch their values
242         if (selection_only) {
243                 if (!view_->cursors()->enabled()) {
244                         show_session_error(tr("Missing Cursors"), tr("You need to set the " \
245                                         "cursors before you can save the data enclosed by them " \
246                                         "to a session file (e.g. using ALT-V - Show Cursors)."));
247                         return;
248                 }
249
250                 const double samplerate = session_.get_samplerate();
251
252                 const pv::util::Timestamp& start_time = view_->cursors()->first()->time();
253                 const pv::util::Timestamp& end_time = view_->cursors()->second()->time();
254
255                 const uint64_t start_sample = start_time.convert_to<double>() * samplerate;
256                 const uint64_t end_sample = end_time.convert_to<double>() * samplerate;
257
258                 sample_range = std::make_pair(start_sample, end_sample);
259         } else {
260                 sample_range = std::make_pair(0, 0);
261         }
262
263         // Construct the filter
264         const vector<string> exts = format->extensions();
265         QString filter = tr("%1 files ").arg(
266                 QString::fromStdString(format->description()));
267
268         if (exts.empty())
269                 filter += "(*.*)";
270         else
271                 filter += QString("(*.%1);;%2 (*.*)").arg(
272                         QString::fromStdString(join(exts, ", *."))).arg(
273                         tr("All Files"));
274
275         // Show the file dialog
276         const QString file_name = QFileDialog::getSaveFileName(
277                 this, tr("Save File"), dir, filter);
278
279         if (file_name.isEmpty())
280                 return;
281
282         const QString abs_path = QFileInfo(file_name).absolutePath();
283         settings.setValue(SettingSaveDirectory, abs_path);
284
285         // Show the options dialog
286         map<string, Glib::VariantBase> options;
287         if (!format->options().empty()) {
288                 dialogs::InputOutputOptions dlg(
289                         tr("Export %1").arg(QString::fromStdString(
290                                 format->description())),
291                         format->options(), this);
292                 if (!dlg.exec())
293                         return;
294                 options = dlg.options();
295         }
296
297         StoreProgress *dlg = new StoreProgress(file_name, format, options,
298                 sample_range, session_, this);
299         dlg->run();
300 }
301
302 void MainWindow::import_file(shared_ptr<InputFormat> format)
303 {
304         assert(format);
305
306         QSettings settings;
307         const QString dir = settings.value(SettingOpenDirectory).toString();
308
309         // Construct the filter
310         const vector<string> exts = format->extensions();
311         const QString filter = exts.empty() ? "" :
312                 tr("%1 files (*.%2)").arg(
313                         QString::fromStdString(format->description())).arg(
314                         QString::fromStdString(join(exts, ", *.")));
315
316         // Show the file dialog
317         const QString file_name = QFileDialog::getOpenFileName(
318                 this, tr("Import File"), dir, tr(
319                         "%1 files (*.*);;All Files (*.*)").arg(
320                         QString::fromStdString(format->description())));
321
322         if (file_name.isEmpty())
323                 return;
324
325         // Show the options dialog
326         map<string, Glib::VariantBase> options;
327         if (!format->options().empty()) {
328                 dialogs::InputOutputOptions dlg(
329                         tr("Import %1").arg(QString::fromStdString(
330                                 format->description())),
331                         format->options(), this);
332                 if (!dlg.exec())
333                         return;
334                 options = dlg.options();
335         }
336
337         load_file(file_name, format, options);
338
339         const QString abs_path = QFileInfo(file_name).absolutePath();
340         settings.setValue(SettingOpenDirectory, abs_path);
341 }
342
343 void MainWindow::setup_ui()
344 {
345         setObjectName(QString::fromUtf8("MainWindow"));
346
347         // Set the window icon
348         QIcon icon;
349         icon.addFile(QString(":/icons/sigrok-logo-notext.svg"));
350         setWindowIcon(icon);
351
352         // Setup the central widget
353         central_widget_ = new QWidget(this);
354         vertical_layout_ = new QVBoxLayout(central_widget_);
355         vertical_layout_->setSpacing(6);
356         vertical_layout_->setContentsMargins(0, 0, 0, 0);
357         setCentralWidget(central_widget_);
358
359         view_ = new pv::view::View(session_, this);
360
361         vertical_layout_->addWidget(view_);
362
363         // Setup the menu bar
364         pv::widgets::HidingMenuBar *const menu_bar =
365                 new pv::widgets::HidingMenuBar(this);
366
367         // File Menu
368         QMenu *const menu_file = new QMenu;
369         menu_file->setTitle(tr("&File"));
370
371         action_open_->setText(tr("&Open..."));
372         action_open_->setIcon(QIcon::fromTheme("document-open",
373                 QIcon(":/icons/document-open.png")));
374         action_open_->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_O));
375         action_open_->setObjectName(QString::fromUtf8("actionOpen"));
376         menu_file->addAction(action_open_);
377
378         action_save_as_->setText(tr("&Save As..."));
379         action_save_as_->setIcon(QIcon::fromTheme("document-save-as",
380                 QIcon(":/icons/document-save-as.png")));
381         action_save_as_->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_S));
382         action_save_as_->setObjectName(QString::fromUtf8("actionSaveAs"));
383         menu_file->addAction(action_save_as_);
384
385         action_save_selection_as_->setText(tr("Save Selected &Range As..."));
386         action_save_selection_as_->setIcon(QIcon::fromTheme("document-save-as",
387                 QIcon(":/icons/document-save-as.png")));
388         action_save_selection_as_->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_R));
389         action_save_selection_as_->setObjectName(QString::fromUtf8("actionSaveSelectionAs"));
390         menu_file->addAction(action_save_selection_as_);
391
392         menu_file->addSeparator();
393
394         widgets::ExportMenu *menu_file_export = new widgets::ExportMenu(this,
395                 device_manager_.context());
396         menu_file_export->setTitle(tr("&Export"));
397         connect(menu_file_export,
398                 SIGNAL(format_selected(std::shared_ptr<sigrok::OutputFormat>)),
399                 this, SLOT(export_file(std::shared_ptr<sigrok::OutputFormat>)));
400         menu_file->addAction(menu_file_export->menuAction());
401
402         widgets::ImportMenu *menu_file_import = new widgets::ImportMenu(this,
403                 device_manager_.context());
404         menu_file_import->setTitle(tr("&Import"));
405         connect(menu_file_import,
406                 SIGNAL(format_selected(std::shared_ptr<sigrok::InputFormat>)),
407                 this, SLOT(import_file(std::shared_ptr<sigrok::InputFormat>)));
408         menu_file->addAction(menu_file_import->menuAction());
409
410         menu_file->addSeparator();
411
412         action_connect_->setText(tr("&Connect to Device..."));
413         action_connect_->setObjectName(QString::fromUtf8("actionConnect"));
414         menu_file->addAction(action_connect_);
415
416         menu_file->addSeparator();
417
418         action_quit_->setText(tr("&Quit"));
419         action_quit_->setIcon(QIcon::fromTheme("application-exit",
420                 QIcon(":/icons/application-exit.png")));
421         action_quit_->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q));
422         action_quit_->setObjectName(QString::fromUtf8("actionQuit"));
423         menu_file->addAction(action_quit_);
424
425         // View Menu
426         QMenu *menu_view = new QMenu;
427         menu_view->setTitle(tr("&View"));
428
429         action_view_zoom_in_->setText(tr("Zoom &In"));
430         action_view_zoom_in_->setIcon(QIcon::fromTheme("zoom-in",
431                 QIcon(":/icons/zoom-in.png")));
432         // simply using Qt::Key_Plus shows no + in the menu
433         action_view_zoom_in_->setShortcut(QKeySequence::ZoomIn);
434         action_view_zoom_in_->setObjectName(
435                 QString::fromUtf8("actionViewZoomIn"));
436         menu_view->addAction(action_view_zoom_in_);
437
438         action_view_zoom_out_->setText(tr("Zoom &Out"));
439         action_view_zoom_out_->setIcon(QIcon::fromTheme("zoom-out",
440                 QIcon(":/icons/zoom-out.png")));
441         action_view_zoom_out_->setShortcut(QKeySequence::ZoomOut);
442         action_view_zoom_out_->setObjectName(
443                 QString::fromUtf8("actionViewZoomOut"));
444         menu_view->addAction(action_view_zoom_out_);
445
446         action_view_zoom_fit_->setCheckable(true);
447         action_view_zoom_fit_->setText(tr("Zoom to &Fit"));
448         action_view_zoom_fit_->setIcon(QIcon::fromTheme("zoom-fit",
449                 QIcon(":/icons/zoom-fit.png")));
450         action_view_zoom_fit_->setShortcut(QKeySequence(Qt::Key_F));
451         action_view_zoom_fit_->setObjectName(
452                 QString::fromUtf8("actionViewZoomFit"));
453         menu_view->addAction(action_view_zoom_fit_);
454
455         action_view_zoom_one_to_one_->setText(tr("Zoom to O&ne-to-One"));
456         action_view_zoom_one_to_one_->setIcon(QIcon::fromTheme("zoom-original",
457                 QIcon(":/icons/zoom-original.png")));
458         action_view_zoom_one_to_one_->setShortcut(QKeySequence(Qt::Key_O));
459         action_view_zoom_one_to_one_->setObjectName(
460                 QString::fromUtf8("actionViewZoomOneToOne"));
461         menu_view->addAction(action_view_zoom_one_to_one_);
462
463         menu_view->addSeparator();
464
465         action_view_sticky_scrolling_->setCheckable(true);
466         action_view_sticky_scrolling_->setChecked(true);
467         action_view_sticky_scrolling_->setShortcut(QKeySequence(Qt::Key_S));
468         action_view_sticky_scrolling_->setObjectName(
469                 QString::fromUtf8("actionViewStickyScrolling"));
470         action_view_sticky_scrolling_->setText(tr("&Sticky Scrolling"));
471         menu_view->addAction(action_view_sticky_scrolling_);
472
473         view_->enable_sticky_scrolling(action_view_sticky_scrolling_->isChecked());
474
475         menu_view->addSeparator();
476
477         action_view_coloured_bg_->setCheckable(true);
478         action_view_coloured_bg_->setChecked(true);
479         action_view_coloured_bg_->setShortcut(QKeySequence(Qt::Key_S));
480         action_view_coloured_bg_->setObjectName(
481                 QString::fromUtf8("actionViewColouredBg"));
482         action_view_coloured_bg_->setText(tr("Use &coloured backgrounds"));
483         menu_view->addAction(action_view_coloured_bg_);
484
485         menu_view->addSeparator();
486
487         action_view_show_cursors_->setCheckable(true);
488         action_view_show_cursors_->setChecked(view_->cursors_shown());
489         action_view_show_cursors_->setIcon(QIcon::fromTheme("show-cursors",
490                 QIcon(":/icons/show-cursors.svg")));
491         action_view_show_cursors_->setShortcut(QKeySequence(Qt::Key_C));
492         action_view_show_cursors_->setObjectName(
493                 QString::fromUtf8("actionViewShowCursors"));
494         action_view_show_cursors_->setText(tr("Show &Cursors"));
495         menu_view->addAction(action_view_show_cursors_);
496
497         // Decoders Menu
498 #ifdef ENABLE_DECODE
499         QMenu *const menu_decoders = new QMenu;
500         menu_decoders->setTitle(tr("&Decoders"));
501
502         menu_decoders_add_->setTitle(tr("&Add"));
503         connect(menu_decoders_add_, SIGNAL(decoder_selected(srd_decoder*)),
504                 this, SLOT(add_decoder(srd_decoder*)));
505
506         menu_decoders->addMenu(menu_decoders_add_);
507 #endif
508
509         // Help Menu
510         QMenu *const menu_help = new QMenu;
511         menu_help->setTitle(tr("&Help"));
512
513         action_about_->setObjectName(QString::fromUtf8("actionAbout"));
514         action_about_->setText(tr("&About..."));
515         menu_help->addAction(action_about_);
516
517         menu_bar->addAction(menu_file->menuAction());
518         menu_bar->addAction(menu_view->menuAction());
519 #ifdef ENABLE_DECODE
520         menu_bar->addAction(menu_decoders->menuAction());
521 #endif
522         menu_bar->addAction(menu_help->menuAction());
523
524         setMenuBar(menu_bar);
525         QMetaObject::connectSlotsByName(this);
526
527         // Also add all actions to the main window for always-enabled hotkeys
528         for (QAction* action : menu_bar->actions())
529                 this->addAction(action);
530
531         // Setup the toolbar
532         main_bar_ = new toolbars::MainBar(session_, *this);
533
534         // Populate the device list and select the initially selected device
535         update_device_list();
536
537         addToolBar(main_bar_);
538
539         // Set the title
540         setWindowTitle(tr("PulseView"));
541
542         // Setup session_ events
543         connect(&session_, SIGNAL(capture_state_changed(int)), this,
544                 SLOT(capture_state_changed(int)));
545         connect(&session_, SIGNAL(device_selected()), this,
546                 SLOT(device_selected()));
547         connect(&session_, SIGNAL(trigger_event(util::Timestamp)), view_,
548                 SLOT(trigger_event(util::Timestamp)));
549
550         // Setup view_ events
551         connect(view_, SIGNAL(sticky_scrolling_changed(bool)), this,
552                 SLOT(sticky_scrolling_changed(bool)));
553         connect(view_, SIGNAL(always_zoom_to_fit_changed(bool)), this,
554                 SLOT(always_zoom_to_fit_changed(bool)));
555
556 }
557
558 void MainWindow::select_init_device()
559 {
560         QSettings settings;
561         map<string, string> dev_info;
562         list<string> key_list;
563
564         // Re-select last used device if possible.
565         settings.beginGroup("Device");
566         key_list.push_back("vendor");
567         key_list.push_back("model");
568         key_list.push_back("version");
569         key_list.push_back("serial_num");
570         key_list.push_back("connection_id");
571
572         for (string key : key_list) {
573                 const QString k = QString::fromStdString(key);
574                 if (!settings.contains(k))
575                         continue;
576
577                 const string value = settings.value(k).toString().toStdString();
578                 if (!value.empty())
579                         dev_info.insert(std::make_pair(key, value));
580         }
581
582         const shared_ptr<devices::HardwareDevice> device =
583                 device_manager_.find_device_from_info(dev_info);
584         select_device(device);
585         update_device_list();
586
587         settings.endGroup();
588 }
589
590 void MainWindow::load_init_file(const std::string &file_name,
591         const std::string &format)
592 {
593         shared_ptr<InputFormat> input_format;
594
595         if (!format.empty()) {
596                 const map<string, shared_ptr<InputFormat> > formats =
597                         device_manager_.context()->input_formats();
598                 const auto iter = find_if(formats.begin(), formats.end(),
599                         [&](const pair<string, shared_ptr<InputFormat> > f) {
600                                 return f.first == format; });
601                 if (iter == formats.end()) {
602                         cerr << "Unexpected input format: " << format << endl;
603                         return;
604                 }
605
606                 input_format = (*iter).second;
607         }
608
609         load_file(QString::fromStdString(file_name), input_format);
610 }
611
612
613 void MainWindow::save_ui_settings()
614 {
615         QSettings settings;
616
617         map<string, string> dev_info;
618         list<string> key_list;
619
620         settings.beginGroup("MainWindow");
621         settings.setValue("state", saveState());
622         settings.setValue("geometry", saveGeometry());
623         settings.endGroup();
624
625         if (session_.device()) {
626                 settings.beginGroup("Device");
627                 key_list.push_back("vendor");
628                 key_list.push_back("model");
629                 key_list.push_back("version");
630                 key_list.push_back("serial_num");
631                 key_list.push_back("connection_id");
632
633                 dev_info = device_manager_.get_device_info(
634                         session_.device());
635
636                 for (string key : key_list) {
637                         if (dev_info.count(key))
638                                 settings.setValue(QString::fromUtf8(key.c_str()),
639                                                 QString::fromUtf8(dev_info.at(key).c_str()));
640                         else
641                                 settings.remove(QString::fromUtf8(key.c_str()));
642                 }
643
644                 settings.endGroup();
645         }
646 }
647
648 void MainWindow::restore_ui_settings()
649 {
650         QSettings settings;
651
652         settings.beginGroup("MainWindow");
653
654         if (settings.contains("geometry")) {
655                 restoreGeometry(settings.value("geometry").toByteArray());
656                 restoreState(settings.value("state").toByteArray());
657         } else
658                 resize(1000, 720);
659
660         settings.endGroup();
661 }
662
663 void MainWindow::session_error(
664         const QString text, const QString info_text)
665 {
666         QMetaObject::invokeMethod(this, "show_session_error",
667                 Qt::QueuedConnection, Q_ARG(QString, text),
668                 Q_ARG(QString, info_text));
669 }
670
671 void MainWindow::update_device_list()
672 {
673         main_bar_->update_device_list();
674 }
675
676 void MainWindow::load_file(QString file_name,
677         std::shared_ptr<sigrok::InputFormat> format,
678         const std::map<std::string, Glib::VariantBase> &options)
679 {
680         const QString errorMessage(
681                 QString("Failed to load file %1").arg(file_name));
682
683         try {
684                 if (format)
685                         session_.set_device(shared_ptr<devices::Device>(
686                                 new devices::InputFile(
687                                         device_manager_.context(),
688                                         file_name.toStdString(),
689                                         format, options)));
690                 else
691                         session_.set_device(shared_ptr<devices::Device>(
692                                 new devices::SessionFile(
693                                         device_manager_.context(),
694                                         file_name.toStdString())));
695         } catch (Error e) {
696                 show_session_error(tr("Failed to load ") + file_name, e.what());
697                 session_.set_default_device();
698                 update_device_list();
699                 return;
700         }
701
702         update_device_list();
703
704         session_.start_capture([&, errorMessage](QString infoMessage) {
705                 session_error(errorMessage, infoMessage); });
706 }
707
708 void MainWindow::closeEvent(QCloseEvent *event)
709 {
710         save_ui_settings();
711         event->accept();
712 }
713
714 void MainWindow::keyReleaseEvent(QKeyEvent *event)
715 {
716         if (event->key() == Qt::Key_Alt) {
717                 menuBar()->setHidden(!menuBar()->isHidden());
718                 menuBar()->setFocus();
719         }
720         QMainWindow::keyReleaseEvent(event);
721 }
722
723 void MainWindow::show_session_error(
724         const QString text, const QString info_text)
725 {
726         QMessageBox msg(this);
727         msg.setText(text);
728         msg.setInformativeText(info_text);
729         msg.setStandardButtons(QMessageBox::Ok);
730         msg.setIcon(QMessageBox::Warning);
731         msg.exec();
732 }
733
734 void MainWindow::on_actionOpen_triggered()
735 {
736         QSettings settings;
737         const QString dir = settings.value(SettingOpenDirectory).toString();
738
739         // Show the dialog
740         const QString file_name = QFileDialog::getOpenFileName(
741                 this, tr("Open File"), dir, tr(
742                         "Sigrok Sessions (*.sr);;"
743                         "All Files (*.*)"));
744
745         if (!file_name.isEmpty()) {
746                 load_file(file_name);
747
748                 const QString abs_path = QFileInfo(file_name).absolutePath();
749                 settings.setValue(SettingOpenDirectory, abs_path);
750         }
751 }
752
753 void MainWindow::on_actionSaveAs_triggered()
754 {
755         export_file(device_manager_.context()->output_formats()["srzip"]);
756 }
757
758 void MainWindow::on_actionSaveSelectionAs_triggered()
759 {
760         export_file(device_manager_.context()->output_formats()["srzip"], true);
761 }
762
763 void MainWindow::on_actionConnect_triggered()
764 {
765         // Stop any currently running capture session
766         session_.stop_capture();
767
768         dialogs::Connect dlg(this, device_manager_);
769
770         // If the user selected a device, select it in the device list. Select the
771         // current device otherwise.
772         if (dlg.exec())
773                 select_device(dlg.get_selected_device());
774
775         update_device_list();
776 }
777
778 void MainWindow::on_actionQuit_triggered()
779 {
780         close();
781 }
782
783 void MainWindow::on_actionViewZoomIn_triggered()
784 {
785         view_->zoom(1);
786 }
787
788 void MainWindow::on_actionViewZoomOut_triggered()
789 {
790         view_->zoom(-1);
791 }
792
793 void MainWindow::on_actionViewZoomFit_triggered()
794 {
795         view_->zoom_fit(action_view_zoom_fit_->isChecked());
796 }
797
798 void MainWindow::on_actionViewZoomOneToOne_triggered()
799 {
800         view_->zoom_one_to_one();
801 }
802
803 void MainWindow::on_actionViewStickyScrolling_triggered()
804 {
805         view_->enable_sticky_scrolling(action_view_sticky_scrolling_->isChecked());
806 }
807
808 void MainWindow::on_actionViewColouredBg_triggered()
809 {
810 }
811
812 void MainWindow::on_actionViewShowCursors_triggered()
813 {
814         assert(view_);
815
816         const bool show = !view_->cursors_shown();
817         if (show)
818                 view_->centre_cursors();
819
820         view_->show_cursors(show);
821 }
822
823 void MainWindow::on_actionAbout_triggered()
824 {
825         dialogs::About dlg(device_manager_.context(), this);
826         dlg.exec();
827 }
828
829 void MainWindow::sticky_scrolling_changed(bool state)
830 {
831         action_view_sticky_scrolling_->setChecked(state);
832 }
833
834 void MainWindow::always_zoom_to_fit_changed(bool state)
835 {
836         action_view_zoom_fit_->setChecked(state);
837 }
838
839 void MainWindow::add_decoder(srd_decoder *decoder)
840 {
841 #ifdef ENABLE_DECODE
842         assert(decoder);
843         session_.add_decoder(decoder);
844 #else
845         (void)decoder;
846 #endif
847 }
848
849 void MainWindow::capture_state_changed(int state)
850 {
851         main_bar_->set_capture_state((pv::Session::capture_state)state);
852 }
853
854 void MainWindow::device_selected()
855 {
856         // Set the title to include the device/file name
857         const shared_ptr<devices::Device> device = session_.device();
858         if (!device)
859                 return;
860
861         const string display_name = device->display_name(device_manager_);
862         setWindowTitle(tr("%1 - PulseView").arg(display_name.c_str()));
863 }
864
865 } // namespace pv