]> sigrok.org Git - pulseview.git/blame - pv/mainwindow.cpp
Fix typo
[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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
d7bed479
JH
18 */
19
269528f5 20#ifdef ENABLE_DECODE
aaabd61b 21#include <libsigrokdecode/libsigrokdecode.h>
269528f5 22#endif
30236a54 23
85843b14 24#include <algorithm>
aca9aa83 25#include <cassert>
eb8269e3 26#include <cstdarg>
aca9aa83
UH
27#include <cstdint>
28#include <iterator>
85843b14 29
7d5425ef
JH
30#include <QAction>
31#include <QApplication>
93f683ad 32#include <QCloseEvent>
403c3e87 33#include <QDebug>
0f8f8c18 34#include <QDockWidget>
f1e2d26b 35#include <QHBoxLayout>
3231fbf9 36#include <QMessageBox>
643f65f9 37#include <QSettings>
45cb64ff 38#include <QShortcut>
aca9aa83 39#include <QWidget>
2953961c 40
2acdb232 41#include "mainwindow.hpp"
107ca6d3 42
2acdb232 43#include "devicemanager.hpp"
101e7a9b 44#include "devices/hardwaredevice.hpp"
bf9f1268 45#include "dialogs/settings.hpp"
aca9aa83 46#include "globalsettings.hpp"
7c657094 47#include "toolbars/mainbar.hpp"
aca9aa83 48#include "util.hpp"
1573bf16 49#include "views/trace/view.hpp"
e0ba4f6f 50#include "views/trace/standardbar.hpp"
d7bed479 51
1fa702cf
SA
52#ifdef ENABLE_DECODE
53#include "subwindows/decoder_selector/subwindow.hpp"
54#endif
55
fe3a1c21 56#include <libsigrokcxx/libsigrokcxx.hpp>
e82fd481 57
101e7a9b 58using std::dynamic_pointer_cast;
25272fee 59using std::make_shared;
f9abf97e 60using std::shared_ptr;
6842b5fc 61using std::string;
e8d00928 62
51e77110
JH
63namespace pv {
64
b1264f56 65namespace view {
26e3af6b 66class ViewItem;
b1264f56
JH
67}
68
0f8f8c18 69using toolbars::MainBar;
643f65f9 70
33e1afbe
SA
71const QString MainWindow::WindowTitle = tr("PulseView");
72
3ed18835 73MainWindow::MainWindow(DeviceManager &device_manager, QWidget *parent) :
107ca6d3 74 QMainWindow(parent),
8dbbc7f0 75 device_manager_(device_manager),
3b84fd0b 76 session_selector_(this),
3231fbf9 77 session_state_mapper_(this),
3231fbf9
SA
78 icon_red_(":/icons/status-red.svg"),
79 icon_green_(":/icons/status-green.svg"),
80 icon_grey_(":/icons/status-grey.svg")
d7bed479 81{
d0c0573b 82 GlobalSettings::add_change_handler(this);
8ad61f40 83
7d5425ef 84 setup_ui();
3ed18835 85 restore_ui_settings();
7d5425ef
JH
86}
87
47e9e7bb
SA
88MainWindow::~MainWindow()
89{
d0c0573b
SA
90 GlobalSettings::remove_change_handler(this);
91
97378470
SA
92 // Make sure we no longer hold any shared pointers to widgets after the
93 // destructor finishes (goes for sessions and sub windows alike)
94
3b84fd0b
SA
95 while (!sessions_.empty())
96 remove_session(sessions_.front());
97378470
SA
97
98 sub_windows_.clear();
47e9e7bb
SA
99}
100
5e685656
SA
101void MainWindow::show_session_error(const QString text, const QString info_text)
102{
fe060a48
SA
103 // TODO Emulate noquote()
104 qDebug() << "Notifying user of session error:" << info_text;
5e685656
SA
105
106 QMessageBox msg;
970fca0d 107 msg.setText(text + "\n\n" + info_text);
5e685656
SA
108 msg.setStandardButtons(QMessageBox::Ok);
109 msg.setIcon(QMessageBox::Warning);
110 msg.exec();
111}
112
f4e57597 113shared_ptr<views::ViewBase> MainWindow::get_active_view() const
168bd8ac
SA
114{
115 // If there's only one view, use it...
116 if (view_docks_.size() == 1)
117 return view_docks_.begin()->second;
118
119 // ...otherwise find the dock widget the widget with focus is contained in
120 QObject *w = QApplication::focusWidget();
13e475e4 121 QDockWidget *dock = nullptr;
168bd8ac
SA
122
123 while (w) {
c063290a
UH
124 dock = qobject_cast<QDockWidget*>(w);
125 if (dock)
126 break;
127 w = w->parent();
168bd8ac
SA
128 }
129
130 // Get the view contained in the dock widget
f4ab4b5c 131 for (auto& entry : view_docks_)
cbf7b5db 132 if (entry.first == dock)
168bd8ac
SA
133 return entry.second;
134
82f8a42b 135 return nullptr;
168bd8ac
SA
136}
137
f4e57597
SA
138shared_ptr<views::ViewBase> MainWindow::add_view(const QString &title,
139 views::ViewType type, Session &session)
7cd2b5f3 140{
24c29d4f 141 GlobalSettings settings;
ddaded8b 142 shared_ptr<views::ViewBase> v;
24c29d4f 143
8d466c03 144 QMainWindow *main_window = nullptr;
f4ab4b5c 145 for (auto& entry : session_windows_)
3b84fd0b
SA
146 if (entry.first.get() == &session)
147 main_window = entry.second;
148
149 assert(main_window);
150
143d322d
SA
151 shared_ptr<MainBar> main_bar = session.main_bar();
152
ddaded8b
SA
153 QDockWidget* dock = new QDockWidget(title, main_window);
154 dock->setObjectName(title);
155 main_window->addDockWidget(Qt::TopDockWidgetArea, dock);
0f8f8c18 156
ddaded8b
SA
157 // Insert a QMainWindow into the dock widget to allow for a tool bar
158 QMainWindow *dock_main = new QMainWindow(dock);
159 dock_main->setWindowFlags(Qt::Widget); // Remove Qt::Window flag
7cd2b5f3 160
ddaded8b 161 if (type == views::ViewTypeTrace)
143d322d 162 // This view will be the main view if there's no main bar yet
f23c4692 163 v = make_shared<views::trace::View>(session,
143d322d 164 (main_bar ? false : true), dock_main);
36a8185e 165
ddaded8b
SA
166 if (!v)
167 return nullptr;
36a8185e 168
ddaded8b
SA
169 view_docks_[dock] = v;
170 session.register_view(v);
d6ab7b9a 171
ddaded8b
SA
172 dock_main->setCentralWidget(v.get());
173 dock->setWidget(dock_main);
7cd2b5f3 174
d375140b 175 dock->setContextMenuPolicy(Qt::PreventContextMenu);
ddaded8b
SA
176 dock->setFeatures(QDockWidget::DockWidgetMovable |
177 QDockWidget::DockWidgetFloatable | QDockWidget::DockWidgetClosable);
7cd2b5f3 178
ddaded8b 179 QAbstractButton *close_btn =
7a0d99e6
SA
180 dock->findChildren<QAbstractButton*>("qt_dockwidget_closebutton") // clazy:exclude=detaching-temporary
181 .front();
c9da5118 182
ddaded8b
SA
183 connect(close_btn, SIGNAL(clicked(bool)),
184 this, SLOT(on_view_close_clicked()));
dfe1bf82 185
7ea2a4ff 186 connect(&session, SIGNAL(trigger_event(int, util::Timestamp)),
ddaded8b 187 qobject_cast<views::ViewBase*>(v.get()),
7ea2a4ff 188 SLOT(trigger_event(int, util::Timestamp)));
d552c5c7 189
ddaded8b 190 if (type == views::ViewTypeTrace) {
f23c4692
SA
191 views::trace::View *tv =
192 qobject_cast<views::trace::View*>(v.get());
ddaded8b 193
641574bc 194 tv->enable_colored_bg(settings.value(GlobalSettings::Key_View_ColoredBG).toBool());
051ba3b3 195 tv->enable_show_sampling_points(settings.value(GlobalSettings::Key_View_ShowSamplingPoints).toBool());
8ad61f40 196 tv->enable_show_analog_minor_grid(settings.value(GlobalSettings::Key_View_ShowAnalogMinorGrid).toBool());
ddaded8b 197
ddaded8b
SA
198 if (!main_bar) {
199 /* Initial view, create the main bar */
200 main_bar = make_shared<MainBar>(session, this, tv);
201 dock_main->addToolBar(main_bar.get());
202 session.set_main_bar(main_bar);
203
204 connect(main_bar.get(), SIGNAL(new_view(Session*)),
205 this, SLOT(on_new_view(Session*)));
97378470
SA
206 connect(main_bar.get(), SIGNAL(show_decoder_selector(Session*)),
207 this, SLOT(on_show_decoder_selector(Session*)));
ddaded8b
SA
208
209 main_bar->action_view_show_cursors()->setChecked(tv->cursors_shown());
210
211 /* For the main view we need to prevent the dock widget from
212 * closing itself when its close button is clicked. This is
213 * so we can confirm with the user first. Regular views don't
214 * need this */
215 close_btn->disconnect(SIGNAL(clicked()), dock, SLOT(close()));
216 } else {
217 /* Additional view, create a standard bar */
218 pv::views::trace::StandardBar *standard_bar =
219 new pv::views::trace::StandardBar(session, this, tv);
220 dock_main->addToolBar(standard_bar);
221
222 standard_bar->action_view_show_cursors()->setChecked(tv->cursors_shown());
a55e7918 223 }
e93f5538
JH
224 }
225
ddaded8b 226 return v;
ed43ef2e
JH
227}
228
f30eb549
SA
229void MainWindow::remove_view(shared_ptr<views::ViewBase> view)
230{
231 for (shared_ptr<Session> session : sessions_) {
232 if (!session->has_view(view))
233 continue;
234
235 // Find the dock the view is contained in and remove it
f4ab4b5c 236 for (auto& entry : view_docks_)
f30eb549
SA
237 if (entry.second == view) {
238 // Remove the view from the session
239 session->deregister_view(view);
240
241 // Remove the view from its parent; otherwise, Qt will
242 // call deleteLater() on it, which causes a double free
243 // since the shared_ptr in view_docks_ doesn't know
244 // that Qt keeps a pointer to the view around
13e475e4 245 view->setParent(nullptr);
f30eb549
SA
246
247 // Delete the view's dock widget and all widgets inside it
248 entry.first->deleteLater();
249
250 // Remove the dock widget from the list and stop iterating
251 view_docks_.erase(entry.first);
252 break;
253 }
254 }
255}
256
97378470
SA
257shared_ptr<subwindows::SubWindowBase> MainWindow::add_subwindow(
258 subwindows::SubWindowType type, Session &session)
259{
260 GlobalSettings settings;
261 shared_ptr<subwindows::SubWindowBase> v;
262
263 QMainWindow *main_window = nullptr;
264 for (auto entry : session_windows_)
265 if (entry.first.get() == &session)
266 main_window = entry.second;
267
268 assert(main_window);
269
270 QString title = "";
271
272 switch (type) {
1fa702cf 273#ifdef ENABLE_DECODE
97378470
SA
274 case subwindows::SubWindowTypeDecoderSelector:
275 title = tr("Decoder Selector");
1fa702cf
SA
276 break;
277#endif
278 default:
279 break;
97378470
SA
280 }
281
282 QDockWidget* dock = new QDockWidget(title, main_window);
283 dock->setObjectName(title);
284 main_window->addDockWidget(Qt::TopDockWidgetArea, dock);
285
286 // Insert a QMainWindow into the dock widget to allow for a tool bar
287 QMainWindow *dock_main = new QMainWindow(dock);
288 dock_main->setWindowFlags(Qt::Widget); // Remove Qt::Window flag
289
1fa702cf 290#ifdef ENABLE_DECODE
97378470
SA
291 if (type == subwindows::SubWindowTypeDecoderSelector)
292 v = make_shared<subwindows::decoder_selector::SubWindow>(session, dock_main);
1fa702cf 293#endif
97378470
SA
294
295 if (!v)
296 return nullptr;
297
298 sub_windows_[dock] = v;
299 dock_main->setCentralWidget(v.get());
300 dock->setWidget(dock_main);
301
302 dock->setContextMenuPolicy(Qt::PreventContextMenu);
303 dock->setFeatures(QDockWidget::DockWidgetMovable |
304 QDockWidget::DockWidgetFloatable | QDockWidget::DockWidgetClosable);
305
306 QAbstractButton *close_btn =
307 dock->findChildren<QAbstractButton*>
308 ("qt_dockwidget_closebutton").front();
309
310 connect(close_btn, SIGNAL(clicked(bool)),
311 this, SLOT(on_sub_window_close_clicked()));
312
313 if (v->has_toolbar())
314 dock_main->addToolBar(v->create_toolbar(dock_main));
315
c52493c9
SA
316 if (v->minimum_width() > 0)
317 dock->setMinimumSize(v->minimum_width(), 0);
318
97378470
SA
319 return v;
320}
321
101e7a9b
SA
322shared_ptr<Session> MainWindow::add_session()
323{
90d77e35 324 static int last_session_id = 1;
7b254679 325 QString name = tr("Session %1").arg(last_session_id++);
101e7a9b
SA
326
327 shared_ptr<Session> session = make_shared<Session>(device_manager_, name);
328
f4e57597
SA
329 connect(session.get(), SIGNAL(add_view(const QString&, views::ViewType, Session*)),
330 this, SLOT(on_add_view(const QString&, views::ViewType, Session*)));
33e1afbe
SA
331 connect(session.get(), SIGNAL(name_changed()),
332 this, SLOT(on_session_name_changed()));
3231fbf9
SA
333 session_state_mapper_.setMapping(session.get(), session.get());
334 connect(session.get(), SIGNAL(capture_state_changed(int)),
335 &session_state_mapper_, SLOT(map()));
3a21afa6 336
101e7a9b
SA
337 sessions_.push_back(session);
338
3b84fd0b
SA
339 QMainWindow *window = new QMainWindow();
340 window->setWindowFlags(Qt::Widget); // Remove Qt::Window flag
341 session_windows_[session] = window;
085cd160
SA
342
343 int index = session_selector_.addTab(window, name);
344 session_selector_.setCurrentIndex(index);
33bedfc1 345 last_focused_session_ = session;
3b84fd0b 346
68ad932d
SA
347 window->setDockNestingEnabled(true);
348
f4e57597
SA
349 shared_ptr<views::ViewBase> main_view =
350 add_view(name, views::ViewTypeTrace, *session);
101e7a9b
SA
351
352 return session;
353}
354
36a8185e
SA
355void MainWindow::remove_session(shared_ptr<Session> session)
356{
ae1b6126 357 // Determine the height of the button before it collapses
cc964645
SA
358 int h = new_session_button_->height();
359
ae1b6126
SA
360 // Stop capture while the session still exists so that the UI can be
361 // updated in case we're currently running. If so, this will schedule a
362 // call to our on_capture_state_changed() slot for the next run of the
363 // event loop. We need to have this executed immediately or else it will
364 // be dismissed since the session object will be deleted by the time we
365 // leave this method and the event loop gets a chance to run again.
366 session->stop_capture();
367 QApplication::processEvents();
368
f4ab4b5c 369 for (const shared_ptr<views::ViewBase>& view : session->views())
f30eb549 370 remove_view(view);
36a8185e 371
3b84fd0b
SA
372 QMainWindow *window = session_windows_.at(session);
373 session_selector_.removeTab(session_selector_.indexOf(window));
374
375 session_windows_.erase(session);
376
33bedfc1
SA
377 if (last_focused_session_ == session)
378 last_focused_session_.reset();
379
ae1b6126 380 // Remove the session from our list of sessions (which also destroys it)
36a8185e
SA
381 sessions_.remove_if([&](shared_ptr<Session> s) {
382 return s == session; });
33e1afbe 383
cc964645
SA
384 if (sessions_.empty()) {
385 // When there are no more tabs, the height of the QTabWidget
386 // drops to zero. We must prevent this to keep the static
387 // widgets visible
7a0d99e6
SA
388 for (QWidget *w : static_tab_widget_->findChildren<QWidget*>()) // clazy:exclude=range-loop
389 w->setMinimumHeight(h);
cc964645
SA
390
391 int margin = static_tab_widget_->layout()->contentsMargins().bottom();
392 static_tab_widget_->setMinimumHeight(h + 2 * margin);
393 session_selector_.setMinimumHeight(h + 2 * margin);
394
395 // Update the window title if there is no view left to
396 // generate focus change events
2ec81436 397 setWindowTitle(WindowTitle);
cc964645 398 }
36a8185e
SA
399}
400
3ed18835 401void MainWindow::add_session_with_file(string open_file_name,
96dbf014 402 string open_file_format, string open_setup_file_name)
3ed18835
SA
403{
404 shared_ptr<Session> session = add_session();
96dbf014 405 session->load_init_file(open_file_name, open_file_format, open_setup_file_name);
3ed18835
SA
406}
407
408void MainWindow::add_default_session()
409{
410 // Only add the default session if there would be no session otherwise
411 if (sessions_.size() > 0)
412 return;
413
414 shared_ptr<Session> session = add_session();
415
6e2a5b1d
GS
416 // Check the list of available devices. Prefer the one that was
417 // found with user supplied scan specs (if applicable). Then try
418 // one of the auto detected devices that are not the demo device.
419 // Pick demo in the absence of "genuine" hardware devices.
420 shared_ptr<devices::HardwareDevice> user_device, other_device, demo_device;
f4ab4b5c 421 for (const shared_ptr<devices::HardwareDevice>& dev : device_manager_.devices()) {
6e2a5b1d
GS
422 if (dev == device_manager_.user_spec_device()) {
423 user_device = dev;
424 } else if (dev->hardware_device()->driver()->name() == "demo") {
3ed18835
SA
425 demo_device = dev;
426 } else {
427 other_device = dev;
428 }
429 }
6e2a5b1d
GS
430 if (user_device)
431 session->select_device(user_device);
432 else if (other_device)
433 session->select_device(other_device);
434 else
435 session->select_device(demo_device);
3ed18835
SA
436}
437
438void MainWindow::save_sessions()
439{
440 QSettings settings;
441 int id = 0;
442
f4ab4b5c 443 for (shared_ptr<Session>& session : sessions_) {
3ed18835
SA
444 // Ignore sessions using the demo device or no device at all
445 if (session->device()) {
446 shared_ptr<devices::HardwareDevice> device =
447 dynamic_pointer_cast< devices::HardwareDevice >
448 (session->device());
449
450 if (device &&
451 device->hardware_device()->driver()->name() == "demo")
452 continue;
453
454 settings.beginGroup("Session" + QString::number(id++));
455 settings.remove(""); // Remove all keys in this group
456 session->save_settings(settings);
457 settings.endGroup();
458 }
459 }
460
461 settings.setValue("sessions", id);
462}
463
464void MainWindow::restore_sessions()
465{
466 QSettings settings;
467 int i, session_count;
468
469 session_count = settings.value("sessions", 0).toInt();
470
471 for (i = 0; i < session_count; i++) {
472 settings.beginGroup("Session" + QString::number(i));
473 shared_ptr<Session> session = add_session();
474 session->restore_settings(settings);
475 settings.endGroup();
476 }
477}
478
d0c0573b
SA
479void MainWindow::on_setting_changed(const QString &key, const QVariant &value)
480{
641574bc
SA
481 if (key == GlobalSettings::Key_View_ColoredBG)
482 on_settingViewColoredBg_changed(value);
d0c0573b
SA
483
484 if (key == GlobalSettings::Key_View_ShowSamplingPoints)
485 on_settingViewShowSamplingPoints_changed(value);
486
487 if (key == GlobalSettings::Key_View_ShowAnalogMinorGrid)
488 on_settingViewShowAnalogMinorGrid_changed(value);
489}
490
7d5425ef
JH
491void MainWindow::setup_ui()
492{
493 setObjectName(QString::fromUtf8("MainWindow"));
494
3b84fd0b
SA
495 setCentralWidget(&session_selector_);
496
7d5425ef
JH
497 // Set the window icon
498 QIcon icon;
5ea53b3c 499 icon.addFile(QString(":/icons/pulseview.png"));
7d5425ef
JH
500 setWindowIcon(icon);
501
9eae6de4
PET
502 view_sticky_scrolling_shortcut_ = new QShortcut(QKeySequence(Qt::Key_S), this, SLOT(on_view_sticky_scrolling_shortcut()));
503 view_sticky_scrolling_shortcut_->setAutoRepeat(false);
ab1d13ee 504
051ba3b3
UH
505 view_show_sampling_points_shortcut_ = new QShortcut(QKeySequence(Qt::Key_Period), this, SLOT(on_view_show_sampling_points_shortcut()));
506 view_show_sampling_points_shortcut_->setAutoRepeat(false);
507
8ad61f40
UH
508 view_show_analog_minor_grid_shortcut_ = new QShortcut(QKeySequence(Qt::Key_G), this, SLOT(on_view_show_analog_minor_grid_shortcut()));
509 view_show_analog_minor_grid_shortcut_->setAutoRepeat(false);
510
641574bc
SA
511 view_colored_bg_shortcut_ = new QShortcut(QKeySequence(Qt::Key_B), this, SLOT(on_view_colored_bg_shortcut()));
512 view_colored_bg_shortcut_->setAutoRepeat(false);
0fb9d645 513
b6262d70
MM
514 zoom_in_shortcut_ = new QShortcut(QKeySequence(Qt::Key_Plus), this, SLOT(on_zoom_in_shortcut_triggered()));
515 zoom_in_shortcut_->setAutoRepeat(false);
516
c2d0c484
JF
517 zoom_in_shortcut_2_ = new QShortcut(QKeySequence(Qt::Key_Up), this, SLOT(on_zoom_in_shortcut_triggered()));
518
b6262d70
MM
519 zoom_out_shortcut_ = new QShortcut(QKeySequence(Qt::Key_Minus), this, SLOT(on_zoom_out_shortcut_triggered()));
520 zoom_out_shortcut_->setAutoRepeat(false);
521
c2d0c484
JF
522 zoom_out_shortcut_2_ = new QShortcut(QKeySequence(Qt::Key_Down), this, SLOT(on_zoom_out_shortcut_triggered()));
523
ccf6a266
MM
524 home_shortcut_ = new QShortcut(QKeySequence(Qt::Key_Home), this, SLOT(on_scroll_to_start_triggered()));
525 home_shortcut_->setAutoRepeat(false);
526
527 end_shortcut_ = new QShortcut(QKeySequence(Qt::Key_End), this, SLOT(on_scroll_to_end_triggered()));
528 end_shortcut_->setAutoRepeat(false);
529
f1e2d26b
SA
530 // Set up the tab area
531 new_session_button_ = new QToolButton();
532 new_session_button_->setIcon(QIcon::fromTheme("document-new",
533 QIcon(":/icons/document-new.png")));
5f66b56e 534 new_session_button_->setToolTip(tr("Create New Session"));
f1e2d26b
SA
535 new_session_button_->setAutoRaise(true);
536
3231fbf9
SA
537 run_stop_button_ = new QToolButton();
538 run_stop_button_->setAutoRaise(true);
539 run_stop_button_->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
5f66b56e 540 run_stop_button_->setToolTip(tr("Start/Stop Acquisition"));
3231fbf9 541
45cb64ff
PET
542 run_stop_shortcut_ = new QShortcut(QKeySequence(Qt::Key_Space), run_stop_button_, SLOT(click()));
543 run_stop_shortcut_->setAutoRepeat(false);
544
4d1ec09a 545 settings_button_ = new QToolButton();
3432032f
UH
546 settings_button_->setIcon(QIcon::fromTheme("preferences-system",
547 QIcon(":/icons/preferences-system.png")));
5f66b56e 548 settings_button_->setToolTip(tr("Settings"));
4d1ec09a
SA
549 settings_button_->setAutoRaise(true);
550
551 QFrame *separator1 = new QFrame();
552 separator1->setFrameStyle(QFrame::VLine | QFrame::Raised);
553 QFrame *separator2 = new QFrame();
554 separator2->setFrameStyle(QFrame::VLine | QFrame::Raised);
baa8560e 555
f1e2d26b
SA
556 QHBoxLayout* layout = new QHBoxLayout();
557 layout->setContentsMargins(2, 2, 2, 2);
558 layout->addWidget(new_session_button_);
4d1ec09a 559 layout->addWidget(separator1);
3231fbf9 560 layout->addWidget(run_stop_button_);
4d1ec09a
SA
561 layout->addWidget(separator2);
562 layout->addWidget(settings_button_);
f1e2d26b 563
cc964645 564 static_tab_widget_ = new QWidget();
f1e2d26b
SA
565 static_tab_widget_->setLayout(layout);
566
567 session_selector_.setCornerWidget(static_tab_widget_, Qt::TopLeftCorner);
4a4e20f5
SA
568 session_selector_.setTabsClosable(true);
569
763945bb
PET
570 close_application_shortcut_ = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q), this, SLOT(close()));
571 close_application_shortcut_->setAutoRepeat(false);
572
573 close_current_tab_shortcut_ = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_W), this, SLOT(on_close_current_tab()));
574
f1e2d26b
SA
575 connect(new_session_button_, SIGNAL(clicked(bool)),
576 this, SLOT(on_new_session_clicked()));
3231fbf9
SA
577 connect(run_stop_button_, SIGNAL(clicked(bool)),
578 this, SLOT(on_run_stop_clicked()));
579 connect(&session_state_mapper_, SIGNAL(mapped(QObject*)),
580 this, SLOT(on_capture_state_changed(QObject*)));
bf9f1268
SA
581 connect(settings_button_, SIGNAL(clicked(bool)),
582 this, SLOT(on_settings_clicked()));
f1e2d26b 583
4a4e20f5
SA
584 connect(&session_selector_, SIGNAL(tabCloseRequested(int)),
585 this, SLOT(on_tab_close_requested(int)));
e7aff437
SA
586 connect(&session_selector_, SIGNAL(currentChanged(int)),
587 this, SLOT(on_tab_changed(int)));
4a4e20f5 588
f1e2d26b 589
33e1afbe
SA
590 connect(static_cast<QApplication *>(QCoreApplication::instance()),
591 SIGNAL(focusChanged(QWidget*, QWidget*)),
592 this, SLOT(on_focus_changed()));
e3c79b07
JH
593}
594
93f683ad
SA
595void MainWindow::save_ui_settings()
596{
39eb0d45 597 QSettings settings;
6842b5fc 598
93f683ad
SA
599 settings.beginGroup("MainWindow");
600 settings.setValue("state", saveState());
601 settings.setValue("geometry", saveGeometry());
602 settings.endGroup();
603}
604
3ed18835 605void MainWindow::restore_ui_settings()
93f683ad 606{
39eb0d45 607 QSettings settings;
93f683ad
SA
608
609 settings.beginGroup("MainWindow");
610
611 if (settings.contains("geometry")) {
612 restoreGeometry(settings.value("geometry").toByteArray());
613 restoreState(settings.value("state").toByteArray());
614 } else
615 resize(1000, 720);
616
617 settings.endGroup();
618}
619
b6262d70
MM
620void MainWindow::zoom_current_view(double steps)
621{
622 shared_ptr<Session> session = get_tab_session(session_selector_.currentIndex());
623
624 if (!session)
625 return;
626
627 shared_ptr<views::ViewBase> v = session.get()->main_view();
628 views::trace::View *tv =
629 qobject_cast<views::trace::View*>(v.get());
630 tv->zoom(steps);
631}
632
6f925ba9 633shared_ptr<Session> MainWindow::get_tab_session(int index) const
e7aff437
SA
634{
635 // Find the session that belongs to the tab's main window
f4ab4b5c 636 for (auto& entry : session_windows_)
e7aff437
SA
637 if (entry.second == session_selector_.widget(index))
638 return entry.first;
639
640 return nullptr;
641}
642
e3c79b07
JH
643void MainWindow::closeEvent(QCloseEvent *event)
644{
5ccfc97e
SA
645 bool data_saved = true;
646
f4ab4b5c 647 for (auto& entry : session_windows_)
5ccfc97e
SA
648 if (!entry.first->data_saved())
649 data_saved = false;
650
651 if (!data_saved && (QMessageBox::question(this, tr("Confirmation"),
652 tr("There is unsaved data. Close anyway?"),
653 QMessageBox::Yes | QMessageBox::No) == QMessageBox::No)) {
654 event->ignore();
655 } else {
656 save_ui_settings();
3ed18835 657 save_sessions();
5ccfc97e
SA
658 event->accept();
659 }
e3c79b07
JH
660}
661
d290e89f
SA
662QMenu* MainWindow::createPopupMenu()
663{
664 return nullptr;
665}
666
55547a45
SA
667bool MainWindow::restoreState(const QByteArray &state, int version)
668{
669 (void)state;
670 (void)version;
671
672 // Do nothing. We don't want Qt to handle this, or else it
673 // will try to restore all the dock widgets and create havoc.
674
675 return false;
676}
677
f4e57597 678void MainWindow::on_add_view(const QString &title, views::ViewType type,
3a21afa6
SA
679 Session *session)
680{
681 // We get a pointer and need a reference
f4ab4b5c 682 for (shared_ptr<Session>& s : sessions_)
3a21afa6
SA
683 if (s.get() == session)
684 add_view(title, type, *s);
685}
686
33e1afbe
SA
687void MainWindow::on_focus_changed()
688{
e7aff437
SA
689 shared_ptr<views::ViewBase> view = get_active_view();
690
691 if (view) {
692 for (shared_ptr<Session> session : sessions_) {
693 if (session->has_view(view)) {
33bedfc1 694 if (session != last_focused_session_) {
e7aff437
SA
695 // Activate correct tab if necessary
696 shared_ptr<Session> tab_session = get_tab_session(
697 session_selector_.currentIndex());
698 if (tab_session != session)
699 session_selector_.setCurrentWidget(
700 session_windows_.at(session));
701
702 on_focused_session_changed(session);
703 }
704
e7aff437
SA
705 break;
706 }
707 }
33e1afbe
SA
708 }
709
e7aff437 710 if (sessions_.empty())
33e1afbe
SA
711 setWindowTitle(WindowTitle);
712}
713
e7aff437
SA
714void MainWindow::on_focused_session_changed(shared_ptr<Session> session)
715{
33bedfc1
SA
716 last_focused_session_ = session;
717
e7aff437 718 setWindowTitle(session->name() + " - " + WindowTitle);
3231fbf9
SA
719
720 // Update the state of the run/stop button, too
721 on_capture_state_changed(session.get());
e7aff437
SA
722}
723
f1e2d26b 724void MainWindow::on_new_session_clicked()
c9da5118
SA
725{
726 add_session();
727}
728
3231fbf9
SA
729void MainWindow::on_run_stop_clicked()
730{
33bedfc1
SA
731 shared_ptr<Session> session = last_focused_session_;
732
733 if (!session)
734 return;
3231fbf9 735
33bedfc1 736 switch (session->get_capture_state()) {
3231fbf9 737 case Session::Stopped:
33bedfc1 738 session->start_capture([&](QString message) {
5e685656 739 show_session_error("Capture failed", message); });
3231fbf9
SA
740 break;
741 case Session::AwaitingTrigger:
742 case Session::Running:
33bedfc1 743 session->stop_capture();
3231fbf9
SA
744 break;
745 }
746}
747
bf9f1268
SA
748void MainWindow::on_settings_clicked()
749{
4e4d72b2 750 dialogs::Settings dlg(device_manager_);
bf9f1268
SA
751 dlg.exec();
752}
753
33e1afbe
SA
754void MainWindow::on_session_name_changed()
755{
756 // Update the corresponding dock widget's name(s)
757 Session *session = qobject_cast<Session*>(QObject::sender());
758 assert(session);
759
f4ab4b5c 760 for (const shared_ptr<views::ViewBase>& view : session->views()) {
33e1afbe 761 // Get the dock that contains the view
f4ab4b5c 762 for (auto& entry : view_docks_)
33e1afbe
SA
763 if (entry.second == view) {
764 entry.first->setObjectName(session->name());
765 entry.first->setWindowTitle(session->name());
766 }
767 }
768
3cb15390 769 // Update the tab widget by finding the main window and the tab from that
f4ab4b5c 770 for (auto& entry : session_windows_)
3cb15390
SA
771 if (entry.first.get() == session) {
772 QMainWindow *window = entry.second;
773 const int index = session_selector_.indexOf(window);
774 session_selector_.setTabText(index, session->name());
775 }
776
33e1afbe 777 // Refresh window title if the affected session has focus
33bedfc1 778 if (session == last_focused_session_.get())
e7aff437 779 setWindowTitle(session->name() + " - " + WindowTitle);
33e1afbe
SA
780}
781
3231fbf9
SA
782void MainWindow::on_capture_state_changed(QObject *obj)
783{
784 Session *caller = qobject_cast<Session*>(obj);
785
786 // Ignore if caller is not the currently focused session
787 // unless there is only one session
33bedfc1
SA
788 if ((sessions_.size() > 1) && (caller != last_focused_session_.get()))
789 return;
3231fbf9
SA
790
791 int state = caller->get_capture_state();
792
793 const QIcon *icons[] = {&icon_grey_, &icon_red_, &icon_green_};
794 run_stop_button_->setIcon(*icons[state]);
795 run_stop_button_->setText((state == pv::Session::Stopped) ?
796 tr("Run") : tr("Stop"));
797}
798
c9da5118
SA
799void MainWindow::on_new_view(Session *session)
800{
801 // We get a pointer and need a reference
f4ab4b5c 802 for (shared_ptr<Session>& s : sessions_)
c9da5118 803 if (s.get() == session)
f4e57597 804 add_view(session->name(), views::ViewTypeTrace, *s);
c9da5118
SA
805}
806
36a8185e
SA
807void MainWindow::on_view_close_clicked()
808{
809 // Find the dock widget that contains the close button that was clicked
810 QObject *w = QObject::sender();
13e475e4 811 QDockWidget *dock = nullptr;
36a8185e
SA
812
813 while (w) {
814 dock = qobject_cast<QDockWidget*>(w);
815 if (dock)
816 break;
817 w = w->parent();
818 }
819
820 // Get the view contained in the dock widget
f4e57597 821 shared_ptr<views::ViewBase> view;
36a8185e 822
f4ab4b5c 823 for (auto& entry : view_docks_)
cbf7b5db 824 if (entry.first == dock)
36a8185e
SA
825 view = entry.second;
826
827 // Deregister the view
828 for (shared_ptr<Session> session : sessions_) {
829 if (!session->has_view(view))
830 continue;
831
a2b9ac40 832 // Also destroy the entire session if its main view is closing...
36a8185e 833 if (view == session->main_view()) {
a2b9ac40
SA
834 // ...but only if data is saved or the user confirms closing
835 if (session->data_saved() || (QMessageBox::question(this, tr("Confirmation"),
836 tr("This session contains unsaved data. Close it anyway?"),
837 QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes))
838 remove_session(session);
36a8185e
SA
839 break;
840 } else
a2b9ac40 841 // All other views can be closed at any time as no data will be lost
f30eb549 842 remove_view(view);
36a8185e
SA
843 }
844}
845
e7aff437
SA
846void MainWindow::on_tab_changed(int index)
847{
848 shared_ptr<Session> session = get_tab_session(index);
849
850 if (session)
851 on_focused_session_changed(session);
852}
853
4a4e20f5
SA
854void MainWindow::on_tab_close_requested(int index)
855{
e7aff437
SA
856 shared_ptr<Session> session = get_tab_session(index);
857
d8d053b6
SA
858 if (!session)
859 return;
5ccfc97e
SA
860
861 if (session->data_saved() || (QMessageBox::question(this, tr("Confirmation"),
862 tr("This session contains unsaved data. Close it anyway?"),
863 QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes))
e7aff437 864 remove_session(session);
4a4e20f5
SA
865}
866
97378470
SA
867void MainWindow::on_show_decoder_selector(Session *session)
868{
1fa702cf 869#ifdef ENABLE_DECODE
97378470
SA
870 // Close dock widget if it's already showing and return
871 for (auto entry : sub_windows_) {
872 QDockWidget* dock = entry.first;
ac91f7ad
SA
873 shared_ptr<subwindows::SubWindowBase> decoder_selector =
874 dynamic_pointer_cast<subwindows::decoder_selector::SubWindow>(entry.second);
875
876 if (decoder_selector && (&decoder_selector->session() == session)) {
97378470
SA
877 sub_windows_.erase(dock);
878 dock->close();
879 return;
880 }
881 }
882
883 // We get a pointer and need a reference
884 for (shared_ptr<Session> s : sessions_)
885 if (s.get() == session)
886 add_subwindow(subwindows::SubWindowTypeDecoderSelector, *s);
1fa702cf 887#endif
97378470
SA
888}
889
890void MainWindow::on_sub_window_close_clicked()
891{
892 // Find the dock widget that contains the close button that was clicked
893 QObject *w = QObject::sender();
894 QDockWidget *dock = nullptr;
895
896 while (w) {
897 dock = qobject_cast<QDockWidget*>(w);
898 if (dock)
899 break;
900 w = w->parent();
901 }
902
903 sub_windows_.erase(dock);
904 dock->close();
905}
906
641574bc 907void MainWindow::on_view_colored_bg_shortcut()
0fb9d645 908{
24c29d4f
SA
909 GlobalSettings settings;
910
641574bc
SA
911 bool state = settings.value(GlobalSettings::Key_View_ColoredBG).toBool();
912 settings.setValue(GlobalSettings::Key_View_ColoredBG, !state);
24c29d4f
SA
913}
914
87a97d8a
SA
915void MainWindow::on_view_sticky_scrolling_shortcut()
916{
917 GlobalSettings settings;
918
919 bool state = settings.value(GlobalSettings::Key_View_StickyScrolling).toBool();
920 settings.setValue(GlobalSettings::Key_View_StickyScrolling, !state);
921}
922
051ba3b3
UH
923void MainWindow::on_view_show_sampling_points_shortcut()
924{
925 GlobalSettings settings;
926
927 bool state = settings.value(GlobalSettings::Key_View_ShowSamplingPoints).toBool();
928 settings.setValue(GlobalSettings::Key_View_ShowSamplingPoints, !state);
929}
930
8ad61f40
UH
931void MainWindow::on_view_show_analog_minor_grid_shortcut()
932{
933 GlobalSettings settings;
934
935 bool state = settings.value(GlobalSettings::Key_View_ShowAnalogMinorGrid).toBool();
936 settings.setValue(GlobalSettings::Key_View_ShowAnalogMinorGrid, !state);
937}
938
641574bc 939void MainWindow::on_settingViewColoredBg_changed(const QVariant new_value)
24c29d4f
SA
940{
941 bool state = new_value.toBool();
942
f4ab4b5c 943 for (auto& entry : view_docks_) {
24c29d4f
SA
944 shared_ptr<views::ViewBase> viewbase = entry.second;
945
946 // Only trace views have this setting
f23c4692
SA
947 views::trace::View* view =
948 qobject_cast<views::trace::View*>(viewbase.get());
24c29d4f 949 if (view)
641574bc 950 view->enable_colored_bg(state);
24c29d4f 951 }
0fb9d645
SA
952}
953
051ba3b3
UH
954void MainWindow::on_settingViewShowSamplingPoints_changed(const QVariant new_value)
955{
956 bool state = new_value.toBool();
957
f4ab4b5c 958 for (auto& entry : view_docks_) {
051ba3b3
UH
959 shared_ptr<views::ViewBase> viewbase = entry.second;
960
961 // Only trace views have this setting
f23c4692
SA
962 views::trace::View* view =
963 qobject_cast<views::trace::View*>(viewbase.get());
051ba3b3
UH
964 if (view)
965 view->enable_show_sampling_points(state);
966 }
967}
968
8ad61f40
UH
969void MainWindow::on_settingViewShowAnalogMinorGrid_changed(const QVariant new_value)
970{
971 bool state = new_value.toBool();
972
f4ab4b5c 973 for (auto& entry : view_docks_) {
8ad61f40
UH
974 shared_ptr<views::ViewBase> viewbase = entry.second;
975
976 // Only trace views have this setting
f23c4692
SA
977 views::trace::View* view =
978 qobject_cast<views::trace::View*>(viewbase.get());
8ad61f40
UH
979 if (view)
980 view->enable_show_analog_minor_grid(state);
981 }
982}
983
b6262d70
MM
984void MainWindow::on_zoom_out_shortcut_triggered()
985{
986 zoom_current_view(-1);
987}
988
989void MainWindow::on_zoom_in_shortcut_triggered()
990{
991 zoom_current_view(1);
992}
993
ccf6a266
MM
994void MainWindow::on_scroll_to_start_triggered()
995{
996 scroll_to_start_or_end(true);
997}
998
999void MainWindow::on_scroll_to_end_triggered()
1000{
1001 scroll_to_start_or_end(false);
1002}
1003
1004void MainWindow::scroll_to_start_or_end(bool start)
1005{
1006 shared_ptr<Session> session = get_tab_session(session_selector_.currentIndex());
1007
1008 if (!session)
1009 return;
1010
1011 shared_ptr<views::ViewBase> v = session.get()->main_view();
1012 views::trace::View *tv =
1013 qobject_cast<views::trace::View*>(v.get());
1014 tv->set_h_offset(start ? 0 : tv->get_h_scrollbar_maximum());
1015}
1016
763945bb
PET
1017void MainWindow::on_close_current_tab()
1018{
1019 int tab = session_selector_.currentIndex();
1020
1021 on_tab_close_requested(tab);
1022}
1023
51e77110 1024} // namespace pv