]> sigrok.org Git - pulseview.git/blame - pv/mainwindow.cpp
Use the TriggerMarker class to visualize the time of SR_DF_TRIGGER.
[pulseview.git] / pv / mainwindow.cpp
CommitLineData
d7bed479 1/*
b3f22de0 2 * This file is part of the PulseView project.
d7bed479
JH
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
943edd76
MC
21#include <cassert>
22
269528f5 23#ifdef ENABLE_DECODE
aaabd61b 24#include <libsigrokdecode/libsigrokdecode.h>
269528f5 25#endif
30236a54 26
85843b14
JH
27#include <algorithm>
28#include <iterator>
29
ea2dbfea
JH
30#include <boost/algorithm/string/join.hpp>
31
7d5425ef
JH
32#include <QAction>
33#include <QApplication>
34#include <QButtonGroup>
93f683ad 35#include <QCloseEvent>
2953961c 36#include <QFileDialog>
f2edb557 37#include <QMessageBox>
7d5425ef
JH
38#include <QMenu>
39#include <QMenuBar>
643f65f9 40#include <QSettings>
7d5425ef
JH
41#include <QStatusBar>
42#include <QVBoxLayout>
43#include <QWidget>
2953961c 44
2acdb232 45#include "mainwindow.hpp"
107ca6d3 46
2acdb232 47#include "devicemanager.hpp"
d2fc6be9
SA
48#include "util.hpp"
49#include "data/segment.hpp"
da30ecb7 50#include "devices/hardwaredevice.hpp"
dd3fd4df 51#include "devices/inputfile.hpp"
da30ecb7 52#include "devices/sessionfile.hpp"
2acdb232
JH
53#include "dialogs/about.hpp"
54#include "dialogs/connect.hpp"
e93f5538 55#include "dialogs/inputoutputoptions.hpp"
2acdb232 56#include "dialogs/storeprogress.hpp"
7c657094 57#include "toolbars/mainbar.hpp"
2acdb232
JH
58#include "view/logicsignal.hpp"
59#include "view/view.hpp"
998b89fd 60#include "widgets/exportmenu.hpp"
ed43ef2e 61#include "widgets/importmenu.hpp"
269528f5 62#ifdef ENABLE_DECODE
2acdb232 63#include "widgets/decodermenu.hpp"
269528f5 64#endif
1c4c23b8 65#include "widgets/hidingmenubar.hpp"
d7bed479 66
30236a54
JH
67#include <inttypes.h>
68#include <stdint.h>
69#include <stdarg.h>
70#include <glib.h>
fe3a1c21 71#include <libsigrokcxx/libsigrokcxx.hpp>
e82fd481 72
e3c79b07
JH
73using std::cerr;
74using std::endl;
819f4c25 75using std::list;
6842b5fc 76using std::map;
e3c79b07 77using std::pair;
f9abf97e 78using std::shared_ptr;
6842b5fc 79using std::string;
ea2dbfea
JH
80using std::vector;
81
82using boost::algorithm::join;
30236a54 83
e8d00928 84using sigrok::Error;
998b89fd 85using sigrok::OutputFormat;
dd3fd4df 86using sigrok::InputFormat;
e8d00928 87
51e77110
JH
88namespace pv {
89
b1264f56 90namespace view {
26e3af6b 91class ViewItem;
b1264f56
JH
92}
93
643f65f9
JS
94const char *MainWindow::SettingOpenDirectory = "MainWindow/OpenDirectory";
95const char *MainWindow::SettingSaveDirectory = "MainWindow/SaveDirectory";
96
107ca6d3 97MainWindow::MainWindow(DeviceManager &device_manager,
e3c79b07 98 string open_file_name, string open_file_format,
1d478458 99 QWidget *parent) :
107ca6d3 100 QMainWindow(parent),
8dbbc7f0 101 device_manager_(device_manager),
69654681
JH
102 session_(device_manager),
103 action_open_(new QAction(this)),
104 action_save_as_(new QAction(this)),
d2fc6be9 105 action_save_selection_as_(new QAction(this)),
69654681
JH
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)),
c7b03d9d 112 action_view_sticky_scrolling_(new QAction(this)),
69654681 113 action_view_show_cursors_(new QAction(this)),
e79171dc
BG
114 action_about_(new QAction(this))
115#ifdef ENABLE_DECODE
116 , menu_decoders_add_(new pv::widgets::DecoderMenu(this, true))
19be0af1 117#endif
d7bed479 118{
48257a69
SA
119 qRegisterMetaType<util::Timestamp>("util::Timestamp");
120
7d5425ef 121 setup_ui();
93f683ad 122 restore_ui_settings();
e3c79b07
JH
123 if (open_file_name.empty())
124 select_init_device();
125 else
126 load_init_file(open_file_name, open_file_format);
7d5425ef
JH
127}
128
69654681
JH
129QAction* MainWindow::action_open() const
130{
131 return action_open_;
132}
133
134QAction* MainWindow::action_save_as() const
135{
136 return action_save_as_;
61501398
SA
137}
138
139QAction* MainWindow::action_save_selection_as() const
140{
141 return action_save_selection_as_;
69654681
JH
142}
143
144QAction* MainWindow::action_connect() const
145{
146 return action_connect_;
147}
148
149QAction* MainWindow::action_quit() const
150{
151 return action_quit_;
152}
153
154QAction* MainWindow::action_view_zoom_in() const
155{
156 return action_view_zoom_in_;
157}
158
159QAction* MainWindow::action_view_zoom_out() const
160{
161 return action_view_zoom_out_;
162}
163
164QAction* MainWindow::action_view_zoom_fit() const
165{
166 return action_view_zoom_fit_;
167}
168
169QAction* MainWindow::action_view_zoom_one_to_one() const
170{
171 return action_view_zoom_one_to_one_;
172}
173
c7b03d9d
SA
174QAction* MainWindow::action_view_sticky_scrolling() const
175{
176 return action_view_sticky_scrolling_;
177}
178
69654681
JH
179QAction* MainWindow::action_view_show_cursors() const
180{
181 return action_view_show_cursors_;
182}
183
184QAction* MainWindow::action_about() const
185{
186 return action_about_;
187}
188
e79171dc 189#ifdef ENABLE_DECODE
0f90452b
JH
190QMenu* MainWindow::menu_decoder_add() const
191{
192 return menu_decoders_add_;
193}
19be0af1 194#endif
0f90452b 195
4e7f5ba8
JH
196void MainWindow::run_stop()
197{
198 switch(session_.get_capture_state()) {
2b81ae46 199 case Session::Stopped:
4e7f5ba8
JH
200 session_.start_capture([&](QString message) {
201 session_error("Capture failed", message); });
202 break;
203
2b81ae46
JH
204 case Session::AwaitingTrigger:
205 case Session::Running:
4e7f5ba8
JH
206 session_.stop_capture();
207 break;
208 }
209}
210
da30ecb7 211void MainWindow::select_device(shared_ptr<devices::Device> device)
51cf49fe
JH
212{
213 try {
859ca307
JH
214 if (device)
215 session_.set_device(device);
216 else
217 session_.set_default_device();
51cf49fe
JH
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
7d6984a5
SA
228void MainWindow::export_file(shared_ptr<OutputFormat> format,
229 bool selection_only)
998b89fd
JH
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
a55e7918
SA
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;
3d79f521 256 const uint64_t end_sample = end_time.convert_to<double>() * samplerate;
a55e7918 257
3d79f521 258 sample_range = std::make_pair(start_sample, end_sample);
a55e7918
SA
259 } else {
260 sample_range = std::make_pair(0, 0);
261 }
262
ea2dbfea
JH
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
e93f5538 275 // Show the file dialog
998b89fd 276 const QString file_name = QFileDialog::getSaveFileName(
ea2dbfea 277 this, tr("Save File"), dir, filter);
998b89fd
JH
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
e93f5538
JH
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,
d2fc6be9 298 sample_range, session_, this);
998b89fd
JH
299 dlg->run();
300}
301
ed43ef2e
JH
302void 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
53d45c55
JH
322 if (file_name.isEmpty())
323 return;
ed43ef2e 324
53d45c55
JH
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();
ed43ef2e 335 }
53d45c55
JH
336
337 load_file(file_name, format, options);
338
339 const QString abs_path = QFileInfo(file_name).absolutePath();
340 settings.setValue(SettingOpenDirectory, abs_path);
ed43ef2e
JH
341}
342
7d5425ef
JH
343void MainWindow::setup_ui()
344{
345 setObjectName(QString::fromUtf8("MainWindow"));
346
7d5425ef
JH
347 // Set the window icon
348 QIcon icon;
4523c509 349 icon.addFile(QString(":/icons/sigrok-logo-notext.svg"));
7d5425ef
JH
350 setWindowIcon(icon);
351
e072efc8 352 // Setup the central widget
8dbbc7f0
JH
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_);
e072efc8 358
8dbbc7f0 359 view_ = new pv::view::View(session_, this);
b1264f56 360
8dbbc7f0 361 vertical_layout_->addWidget(view_);
e072efc8 362
ab1d13ee 363 // Setup the menu bar
1c4c23b8
JH
364 pv::widgets::HidingMenuBar *const menu_bar =
365 new pv::widgets::HidingMenuBar(this);
a429590b 366
ab1d13ee 367 // File Menu
ced1cc13 368 QMenu *const menu_file = new QMenu;
0a9fdca5 369 menu_file->setTitle(tr("&File"));
e072efc8 370
69654681
JH
371 action_open_->setText(tr("&Open..."));
372 action_open_->setIcon(QIcon::fromTheme("document-open",
362eea96 373 QIcon(":/icons/document-open.png")));
69654681
JH
374 action_open_->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_O));
375 action_open_->setObjectName(QString::fromUtf8("actionOpen"));
376 menu_file->addAction(action_open_);
009e1503 377
69654681
JH
378 action_save_as_->setText(tr("&Save As..."));
379 action_save_as_->setIcon(QIcon::fromTheme("document-save-as",
0fbda3c2 380 QIcon(":/icons/document-save-as.png")));
69654681
JH
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_);
0fbda3c2 384
d2fc6be9
SA
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
ced1cc13 392 menu_file->addSeparator();
2a032dcb 393
998b89fd
JH
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
ed43ef2e
JH
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
998b89fd
JH
410 menu_file->addSeparator();
411
69654681
JH
412 action_connect_->setText(tr("&Connect to Device..."));
413 action_connect_->setObjectName(QString::fromUtf8("actionConnect"));
414 menu_file->addAction(action_connect_);
9663c82b 415
ced1cc13 416 menu_file->addSeparator();
9663c82b 417
69654681
JH
418 action_quit_->setText(tr("&Quit"));
419 action_quit_->setIcon(QIcon::fromTheme("application-exit",
2a032dcb 420 QIcon(":/icons/application-exit.png")));
69654681
JH
421 action_quit_->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q));
422 action_quit_->setObjectName(QString::fromUtf8("actionQuit"));
423 menu_file->addAction(action_quit_);
2a032dcb 424
ab1d13ee 425 // View Menu
ced1cc13 426 QMenu *menu_view = new QMenu;
0a9fdca5 427 menu_view->setTitle(tr("&View"));
ab1d13ee 428
69654681
JH
429 action_view_zoom_in_->setText(tr("Zoom &In"));
430 action_view_zoom_in_->setIcon(QIcon::fromTheme("zoom-in",
ab1d13ee 431 QIcon(":/icons/zoom-in.png")));
d2899ad5 432 // simply using Qt::Key_Plus shows no + in the menu
69654681
JH
433 action_view_zoom_in_->setShortcut(QKeySequence::ZoomIn);
434 action_view_zoom_in_->setObjectName(
ab1d13ee 435 QString::fromUtf8("actionViewZoomIn"));
69654681 436 menu_view->addAction(action_view_zoom_in_);
ab1d13ee 437
69654681
JH
438 action_view_zoom_out_->setText(tr("Zoom &Out"));
439 action_view_zoom_out_->setIcon(QIcon::fromTheme("zoom-out",
ab1d13ee 440 QIcon(":/icons/zoom-out.png")));
69654681
JH
441 action_view_zoom_out_->setShortcut(QKeySequence::ZoomOut);
442 action_view_zoom_out_->setObjectName(
ab1d13ee 443 QString::fromUtf8("actionViewZoomOut"));
69654681 444 menu_view->addAction(action_view_zoom_out_);
ab1d13ee 445
ce11b2ea 446 action_view_zoom_fit_->setCheckable(true);
69654681
JH
447 action_view_zoom_fit_->setText(tr("Zoom to &Fit"));
448 action_view_zoom_fit_->setIcon(QIcon::fromTheme("zoom-fit",
ca46b534 449 QIcon(":/icons/zoom-fit.png")));
69654681
JH
450 action_view_zoom_fit_->setShortcut(QKeySequence(Qt::Key_F));
451 action_view_zoom_fit_->setObjectName(
ca46b534 452 QString::fromUtf8("actionViewZoomFit"));
69654681 453 menu_view->addAction(action_view_zoom_fit_);
ca46b534 454
1c4c23b8 455 action_view_zoom_one_to_one_->setText(tr("Zoom to O&ne-to-One"));
69654681 456 action_view_zoom_one_to_one_->setIcon(QIcon::fromTheme("zoom-original",
d1e7d82c 457 QIcon(":/icons/zoom-original.png")));
69654681
JH
458 action_view_zoom_one_to_one_->setShortcut(QKeySequence(Qt::Key_O));
459 action_view_zoom_one_to_one_->setObjectName(
d1e7d82c 460 QString::fromUtf8("actionViewZoomOneToOne"));
69654681 461 menu_view->addAction(action_view_zoom_one_to_one_);
d1e7d82c 462
c7b03d9d
SA
463 menu_file->addSeparator();
464
465 action_view_sticky_scrolling_->setCheckable(true);
466 action_view_sticky_scrolling_->setChecked(true);
69282fae 467 action_view_sticky_scrolling_->setShortcut(QKeySequence(Qt::Key_S));
c7b03d9d
SA
468 action_view_sticky_scrolling_->setObjectName(
469 QString::fromUtf8("actionViewStickyScrolling"));
69282fae 470 action_view_sticky_scrolling_->setText(tr("&Sticky Scrolling"));
c7b03d9d
SA
471 menu_view->addAction(action_view_sticky_scrolling_);
472
473 view_->enable_sticky_scrolling(action_view_sticky_scrolling_->isChecked());
474
ced1cc13 475 menu_view->addSeparator();
ab1d13ee 476
69654681
JH
477 action_view_show_cursors_->setCheckable(true);
478 action_view_show_cursors_->setChecked(view_->cursors_shown());
587f1d15
JH
479 action_view_show_cursors_->setIcon(QIcon::fromTheme("show-cursors",
480 QIcon(":/icons/show-cursors.svg")));
69654681
JH
481 action_view_show_cursors_->setShortcut(QKeySequence(Qt::Key_C));
482 action_view_show_cursors_->setObjectName(
ab1d13ee 483 QString::fromUtf8("actionViewShowCursors"));
69654681
JH
484 action_view_show_cursors_->setText(tr("Show &Cursors"));
485 menu_view->addAction(action_view_show_cursors_);
a429590b 486
7dd093df 487 // Decoders Menu
269528f5 488#ifdef ENABLE_DECODE
ced1cc13 489 QMenu *const menu_decoders = new QMenu;
0a9fdca5 490 menu_decoders->setTitle(tr("&Decoders"));
7dd093df 491
0f90452b
JH
492 menu_decoders_add_->setTitle(tr("&Add"));
493 connect(menu_decoders_add_, SIGNAL(decoder_selected(srd_decoder*)),
f0d37dab 494 this, SLOT(add_decoder(srd_decoder*)));
7dd093df 495
0f90452b 496 menu_decoders->addMenu(menu_decoders_add_);
269528f5 497#endif
7dd093df 498
ab1d13ee 499 // Help Menu
ced1cc13 500 QMenu *const menu_help = new QMenu;
0a9fdca5 501 menu_help->setTitle(tr("&Help"));
ab1d13ee 502
69654681
JH
503 action_about_->setObjectName(QString::fromUtf8("actionAbout"));
504 action_about_->setText(tr("&About..."));
505 menu_help->addAction(action_about_);
7d5425ef 506
ced1cc13
JH
507 menu_bar->addAction(menu_file->menuAction());
508 menu_bar->addAction(menu_view->menuAction());
269528f5 509#ifdef ENABLE_DECODE
ced1cc13 510 menu_bar->addAction(menu_decoders->menuAction());
269528f5 511#endif
ced1cc13 512 menu_bar->addAction(menu_help->menuAction());
7d5425ef 513
ced1cc13 514 setMenuBar(menu_bar);
7d5425ef
JH
515 QMetaObject::connectSlotsByName(this);
516
b4543062
SA
517 // Also add all actions to the main window for always-enabled hotkeys
518 for (QAction* action : menu_bar->actions())
519 this->addAction(action);
520
d2f13e3e 521 // Setup the toolbar
7c657094 522 main_bar_ = new toolbars::MainBar(session_, *this);
5ac961e3
JH
523
524 // Populate the device list and select the initially selected device
107ca6d3 525 update_device_list();
5ac961e3 526
7c657094 527 addToolBar(main_bar_);
d4984fe7 528
5ac961e3 529 // Set the title
0a9fdca5 530 setWindowTitle(tr("PulseView"));
a8d3fb2d 531
8dbbc7f0
JH
532 // Setup session_ events
533 connect(&session_, SIGNAL(capture_state_changed(int)), this,
6ac96c2e 534 SLOT(capture_state_changed(int)));
20f81a58
JH
535 connect(&session_, SIGNAL(device_selected()), this,
536 SLOT(device_selected()));
48257a69
SA
537 connect(&session_, SIGNAL(trigger_event(util::Timestamp)), view_,
538 SLOT(trigger_event(util::Timestamp)));
c7b03d9d
SA
539
540 // Setup view_ events
541 connect(view_, SIGNAL(sticky_scrolling_changed(bool)), this,
542 SLOT(sticky_scrolling_changed(bool)));
ce11b2ea
SA
543 connect(view_, SIGNAL(always_zoom_to_fit_changed(bool)), this,
544 SLOT(always_zoom_to_fit_changed(bool)));
48257a69 545
d7bed479 546}
30236a54 547
e3c79b07
JH
548void MainWindow::select_init_device() {
549 QSettings settings;
550 map<string, string> dev_info;
551 list<string> key_list;
552
553 // Re-select last used device if possible.
554 settings.beginGroup("Device");
555 key_list.push_back("vendor");
556 key_list.push_back("model");
557 key_list.push_back("version");
558 key_list.push_back("serial_num");
559 key_list.push_back("connection_id");
560
561 for (string key : key_list) {
562 const QString k = QString::fromStdString(key);
563 if (!settings.contains(k))
564 continue;
565
566 const string value = settings.value(k).toString().toStdString();
567 if (!value.empty())
568 dev_info.insert(std::make_pair(key, value));
569 }
570
571 const shared_ptr<devices::HardwareDevice> device =
572 device_manager_.find_device_from_info(dev_info);
573 select_device(device);
574 update_device_list();
575
576 settings.endGroup();
577}
578
579void MainWindow::load_init_file(const std::string &file_name,
580 const std::string &format) {
581 shared_ptr<InputFormat> input_format;
582
583 if (!format.empty()) {
584 const map<string, shared_ptr<InputFormat> > formats =
585 device_manager_.context()->input_formats();
586 const auto iter = find_if(formats.begin(), formats.end(),
587 [&](const pair<string, shared_ptr<InputFormat> > f) {
588 return f.first == format; });
589 if (iter == formats.end()) {
590 cerr << "Unexpected input format: " << format << endl;
591 return;
592 }
593
594 input_format = (*iter).second;
595 }
596
597 load_file(QString::fromStdString(file_name), input_format);
598}
599
600
93f683ad
SA
601void MainWindow::save_ui_settings()
602{
39eb0d45 603 QSettings settings;
93f683ad 604
6842b5fc
SA
605 map<string, string> dev_info;
606 list<string> key_list;
607
93f683ad
SA
608 settings.beginGroup("MainWindow");
609 settings.setValue("state", saveState());
610 settings.setValue("geometry", saveGeometry());
611 settings.endGroup();
6842b5fc 612
8dbbc7f0 613 if (session_.device()) {
6842b5fc
SA
614 settings.beginGroup("Device");
615 key_list.push_back("vendor");
616 key_list.push_back("model");
617 key_list.push_back("version");
618 key_list.push_back("serial_num");
619 key_list.push_back("connection_id");
620
8dbbc7f0
JH
621 dev_info = device_manager_.get_device_info(
622 session_.device());
6842b5fc
SA
623
624 for (string key : key_list) {
625
626 if (dev_info.count(key))
627 settings.setValue(QString::fromUtf8(key.c_str()),
628 QString::fromUtf8(dev_info.at(key).c_str()));
629 else
630 settings.remove(QString::fromUtf8(key.c_str()));
631 }
632
633 settings.endGroup();
634 }
93f683ad
SA
635}
636
637void MainWindow::restore_ui_settings()
638{
39eb0d45 639 QSettings settings;
93f683ad
SA
640
641 settings.beginGroup("MainWindow");
642
643 if (settings.contains("geometry")) {
644 restoreGeometry(settings.value("geometry").toByteArray());
645 restoreState(settings.value("state").toByteArray());
646 } else
647 resize(1000, 720);
648
649 settings.endGroup();
650}
651
f2edb557
JH
652void MainWindow::session_error(
653 const QString text, const QString info_text)
654{
655 QMetaObject::invokeMethod(this, "show_session_error",
656 Qt::QueuedConnection, Q_ARG(QString, text),
657 Q_ARG(QString, info_text));
658}
659
d873f4d6 660void MainWindow::update_device_list()
107ca6d3 661{
079d39ea 662 main_bar_->update_device_list();
107ca6d3
JH
663}
664
dd3fd4df
JH
665void MainWindow::load_file(QString file_name,
666 std::shared_ptr<sigrok::InputFormat> format,
667 const std::map<std::string, Glib::VariantBase> &options)
1d478458 668{
f2edb557
JH
669 const QString errorMessage(
670 QString("Failed to load file %1").arg(file_name));
ae2d1bc5
JH
671
672 try {
dd3fd4df
JH
673 if (format)
674 session_.set_device(shared_ptr<devices::Device>(
675 new devices::InputFile(
676 device_manager_.context(),
677 file_name.toStdString(),
678 format, options)));
679 else
680 session_.set_device(shared_ptr<devices::Device>(
681 new devices::SessionFile(
682 device_manager_.context(),
683 file_name.toStdString())));
e8d00928
ML
684 } catch(Error e) {
685 show_session_error(tr("Failed to load ") + file_name, e.what());
8dbbc7f0 686 session_.set_default_device();
6fd0b639
JH
687 update_device_list();
688 return;
ae2d1bc5
JH
689 }
690
a5ea63c2
JH
691 update_device_list();
692
accd9c05 693 session_.start_capture([&, errorMessage](QString infoMessage) {
6db73158 694 session_error(errorMessage, infoMessage); });
f2edb557
JH
695}
696
e3c79b07
JH
697void MainWindow::closeEvent(QCloseEvent *event)
698{
699 save_ui_settings();
700 event->accept();
701}
702
703void MainWindow::keyReleaseEvent(QKeyEvent *event)
704{
705 if (event->key() == Qt::Key_Alt) {
706 menuBar()->setHidden(!menuBar()->isHidden());
707 menuBar()->setFocus();
708 }
709 QMainWindow::keyReleaseEvent(event);
710}
711
f2edb557
JH
712void MainWindow::show_session_error(
713 const QString text, const QString info_text)
714{
715 QMessageBox msg(this);
716 msg.setText(text);
717 msg.setInformativeText(info_text);
718 msg.setStandardButtons(QMessageBox::Ok);
719 msg.setIcon(QMessageBox::Warning);
720 msg.exec();
1d478458
JH
721}
722
2953961c
JH
723void MainWindow::on_actionOpen_triggered()
724{
643f65f9
JS
725 QSettings settings;
726 const QString dir = settings.value(SettingOpenDirectory).toString();
727
1d43d767 728 // Show the dialog
1d478458 729 const QString file_name = QFileDialog::getOpenFileName(
643f65f9 730 this, tr("Open File"), dir, tr(
6866d5de
JH
731 "Sigrok Sessions (*.sr);;"
732 "All Files (*.*)"));
643f65f9
JS
733
734 if (!file_name.isEmpty()) {
92b139d0 735 load_file(file_name);
643f65f9
JS
736
737 const QString abs_path = QFileInfo(file_name).absolutePath();
738 settings.setValue(SettingOpenDirectory, abs_path);
739 }
2953961c
JH
740}
741
0fbda3c2
JH
742void MainWindow::on_actionSaveAs_triggered()
743{
998b89fd 744 export_file(device_manager_.context()->output_formats()["srzip"]);
0fbda3c2
JH
745}
746
d2fc6be9
SA
747void MainWindow::on_actionSaveSelectionAs_triggered()
748{
a55e7918 749 export_file(device_manager_.context()->output_formats()["srzip"], true);
d2fc6be9
SA
750}
751
9663c82b
JH
752void MainWindow::on_actionConnect_triggered()
753{
b99cfc42 754 // Stop any currently running capture session
8dbbc7f0 755 session_.stop_capture();
b99cfc42 756
8dbbc7f0 757 dialogs::Connect dlg(this, device_manager_);
5eb0fa13 758
dc0867ff
JH
759 // If the user selected a device, select it in the device list. Select the
760 // current device otherwise.
d873f4d6 761 if (dlg.exec())
51cf49fe 762 select_device(dlg.get_selected_device());
dc0867ff 763
d873f4d6 764 update_device_list();
9663c82b
JH
765}
766
2a032dcb
JH
767void MainWindow::on_actionQuit_triggered()
768{
769 close();
770}
771
a429590b
JH
772void MainWindow::on_actionViewZoomIn_triggered()
773{
8dbbc7f0 774 view_->zoom(1);
a429590b
JH
775}
776
777void MainWindow::on_actionViewZoomOut_triggered()
778{
8dbbc7f0 779 view_->zoom(-1);
a429590b
JH
780}
781
ca46b534
JH
782void MainWindow::on_actionViewZoomFit_triggered()
783{
ce11b2ea 784 view_->zoom_fit(action_view_zoom_fit_->isChecked());
ca46b534
JH
785}
786
d1e7d82c
JH
787void MainWindow::on_actionViewZoomOneToOne_triggered()
788{
8dbbc7f0 789 view_->zoom_one_to_one();
d1e7d82c
JH
790}
791
c7b03d9d
SA
792void MainWindow::on_actionViewStickyScrolling_triggered()
793{
794 view_->enable_sticky_scrolling(action_view_sticky_scrolling_->isChecked());
795}
796
e072efc8
JH
797void MainWindow::on_actionViewShowCursors_triggered()
798{
8dbbc7f0 799 assert(view_);
b4d91e56 800
8dbbc7f0 801 const bool show = !view_->cursors_shown();
f3290553 802 if (show)
8dbbc7f0 803 view_->centre_cursors();
b4d91e56 804
8dbbc7f0 805 view_->show_cursors(show);
e072efc8
JH
806}
807
30236a54
JH
808void MainWindow::on_actionAbout_triggered()
809{
8dbbc7f0 810 dialogs::About dlg(device_manager_.context(), this);
40eb2ff4 811 dlg.exec();
30236a54 812}
274d4f13 813
c7b03d9d
SA
814void MainWindow::sticky_scrolling_changed(bool state)
815{
816 action_view_sticky_scrolling_->setChecked(state);
817}
818
ce11b2ea
SA
819void MainWindow::always_zoom_to_fit_changed(bool state)
820{
821 action_view_zoom_fit_->setChecked(state);
822}
823
f0d37dab 824void MainWindow::add_decoder(srd_decoder *decoder)
7dd093df 825{
269528f5 826#ifdef ENABLE_DECODE
f0d37dab 827 assert(decoder);
8dbbc7f0 828 session_.add_decoder(decoder);
269528f5
JH
829#else
830 (void)decoder;
831#endif
7dd093df
JH
832}
833
6ac96c2e
JH
834void MainWindow::capture_state_changed(int state)
835{
7c657094 836 main_bar_->set_capture_state((pv::Session::capture_state)state);
6ac96c2e
JH
837}
838
20f81a58
JH
839void MainWindow::device_selected()
840{
841 // Set the title to include the device/file name
da30ecb7 842 const shared_ptr<devices::Device> device = session_.device();
20f81a58
JH
843 if (!device)
844 return;
845
3084ed4b 846 const string display_name = device->display_name(device_manager_);
20f81a58
JH
847 setWindowTitle(tr("%1 - PulseView").arg(display_name.c_str()));
848}
849
51e77110 850} // namespace pv