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