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