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