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