]> sigrok.org Git - pulseview.git/blame - pv/mainwindow.cpp
MainWindow: Don't use get_active_view() to determine active session
[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
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
943edd76
MC
21#include <cassert>
22
269528f5 23#ifdef ENABLE_DECODE
aaabd61b 24#include <libsigrokdecode/libsigrokdecode.h>
269528f5 25#endif
30236a54 26
85843b14
JH
27#include <algorithm>
28#include <iterator>
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>
2953961c 38
2acdb232 39#include "mainwindow.hpp"
107ca6d3 40
2acdb232 41#include "devicemanager.hpp"
d2fc6be9 42#include "util.hpp"
101e7a9b 43#include "devices/hardwaredevice.hpp"
2acdb232 44#include "dialogs/about.hpp"
7c657094 45#include "toolbars/mainbar.hpp"
2acdb232 46#include "view/view.hpp"
d7bed479 47
30236a54
JH
48#include <stdint.h>
49#include <stdarg.h>
fe3a1c21 50#include <libsigrokcxx/libsigrokcxx.hpp>
e82fd481 51
101e7a9b 52using std::dynamic_pointer_cast;
819f4c25 53using std::list;
25272fee 54using std::make_shared;
6842b5fc 55using std::map;
f9abf97e 56using std::shared_ptr;
6842b5fc 57using std::string;
e8d00928 58
51e77110
JH
59namespace pv {
60
b1264f56 61namespace view {
26e3af6b 62class ViewItem;
b1264f56
JH
63}
64
0f8f8c18 65using toolbars::MainBar;
643f65f9 66
33e1afbe
SA
67const QString MainWindow::WindowTitle = tr("PulseView");
68
107ca6d3 69MainWindow::MainWindow(DeviceManager &device_manager,
e3c79b07 70 string open_file_name, string open_file_format,
1d478458 71 QWidget *parent) :
107ca6d3 72 QMainWindow(parent),
8dbbc7f0 73 device_manager_(device_manager),
3b84fd0b 74 session_selector_(this),
3231fbf9 75 session_state_mapper_(this),
c7b03d9d 76 action_view_sticky_scrolling_(new QAction(this)),
0fb9d645 77 action_view_coloured_bg_(new QAction(this)),
3231fbf9
SA
78 action_about_(new QAction(this)),
79 icon_red_(":/icons/status-red.svg"),
80 icon_green_(":/icons/status-green.svg"),
81 icon_grey_(":/icons/status-grey.svg")
d7bed479 82{
48257a69
SA
83 qRegisterMetaType<util::Timestamp>("util::Timestamp");
84
7d5425ef 85 setup_ui();
93f683ad 86 restore_ui_settings();
101e7a9b
SA
87
88 if (!open_file_name.empty()) {
89 shared_ptr<Session> session = add_session();
90 session->main_bar()->load_init_file(open_file_name, open_file_format);
91 }
92
93 // Add empty default session if there aren't any sessions
94 if (sessions_.size() == 0) {
95 shared_ptr<Session> session = add_session();
96
97 map<string, string> dev_info;
98 shared_ptr<devices::HardwareDevice> other_device, demo_device;
99
100 // Use any available device that's not demo
101 for (shared_ptr<devices::HardwareDevice> dev : device_manager_.devices()) {
102 if (dev->hardware_device()->driver()->name() == "demo") {
103 demo_device = dev;
104 } else {
105 other_device = dev;
106 }
107 }
108
109 // ...and if there isn't any, just use demo then
110 session->main_bar()->select_device(other_device ?
111 other_device : demo_device);
112 }
7d5425ef
JH
113}
114
47e9e7bb
SA
115MainWindow::~MainWindow()
116{
3b84fd0b
SA
117 while (!sessions_.empty())
118 remove_session(sessions_.front());
47e9e7bb
SA
119}
120
c7b03d9d
SA
121QAction* MainWindow::action_view_sticky_scrolling() const
122{
123 return action_view_sticky_scrolling_;
124}
125
bea236d6
JH
126QAction* MainWindow::action_view_coloured_bg() const
127{
128 return action_view_coloured_bg_;
129}
130
69654681
JH
131QAction* MainWindow::action_about() const
132{
133 return action_about_;
134}
135
f4e57597 136shared_ptr<views::ViewBase> MainWindow::get_active_view() const
168bd8ac
SA
137{
138 // If there's only one view, use it...
139 if (view_docks_.size() == 1)
140 return view_docks_.begin()->second;
141
142 // ...otherwise find the dock widget the widget with focus is contained in
143 QObject *w = QApplication::focusWidget();
144 QDockWidget *dock = 0;
145
146 while (w) {
147 dock = qobject_cast<QDockWidget*>(w);
148 if (dock)
149 break;
150 w = w->parent();
151 }
152
153 // Get the view contained in the dock widget
154 for (auto entry : view_docks_)
cbf7b5db 155 if (entry.first == dock)
168bd8ac
SA
156 return entry.second;
157
82f8a42b 158 return nullptr;
168bd8ac
SA
159}
160
f4e57597
SA
161shared_ptr<views::ViewBase> MainWindow::add_view(const QString &title,
162 views::ViewType type, Session &session)
7cd2b5f3 163{
3b84fd0b
SA
164 QMainWindow *main_window;
165 for (auto entry : session_windows_)
166 if (entry.first.get() == &session)
167 main_window = entry.second;
168
169 assert(main_window);
170
f4e57597 171 if (type == views::ViewTypeTrace) {
cbf7b5db 172 QDockWidget* dock = new QDockWidget(title, main_window);
7cd2b5f3 173 dock->setObjectName(title);
cbf7b5db 174 main_window->addDockWidget(Qt::TopDockWidgetArea, dock);
0f8f8c18
SA
175
176 // Insert a QMainWindow into the dock widget to allow for a tool bar
cbf7b5db 177 QMainWindow *dock_main = new QMainWindow(dock);
0f8f8c18
SA
178 dock_main->setWindowFlags(Qt::Widget); // Remove Qt::Window flag
179
f4e57597
SA
180 shared_ptr<views::TraceView::View> v =
181 make_shared<views::TraceView::View>(session, dock_main);
7cd2b5f3 182 view_docks_[dock] = v;
0f8f8c18
SA
183 session.register_view(v);
184
185 dock_main->setCentralWidget(v.get());
186 dock->setWidget(dock_main);
7cd2b5f3 187
d6ab7b9a 188 dock->setFeatures(QDockWidget::DockWidgetMovable |
36a8185e
SA
189 QDockWidget::DockWidgetFloatable | QDockWidget::DockWidgetClosable);
190
191 QAbstractButton *close_btn =
192 dock->findChildren<QAbstractButton*>
193 ("qt_dockwidget_closebutton").front();
194
195 connect(close_btn, SIGNAL(clicked(bool)),
196 this, SLOT(on_view_close_clicked()));
d6ab7b9a 197
f4e57597
SA
198 if (type == views::ViewTypeTrace) {
199 connect(&session, SIGNAL(trigger_event(util::Timestamp)),
200 qobject_cast<views::ViewBase*>(v.get()),
7cd2b5f3 201 SLOT(trigger_event(util::Timestamp)));
7cd2b5f3
SA
202
203 v->enable_sticky_scrolling(action_view_sticky_scrolling_->isChecked());
204 v->enable_coloured_bg(action_view_coloured_bg_->isChecked());
7cd2b5f3 205
0f8f8c18
SA
206 shared_ptr<MainBar> main_bar = session.main_bar();
207 if (!main_bar) {
101e7a9b 208 main_bar = make_shared<MainBar>(session, *this);
0f8f8c18
SA
209 dock_main->addToolBar(main_bar.get());
210 session.set_main_bar(main_bar);
c9da5118 211
c9da5118
SA
212 connect(main_bar.get(), SIGNAL(new_view(Session*)),
213 this, SLOT(on_new_view(Session*)));
0f8f8c18
SA
214 }
215 main_bar->action_view_show_cursors()->setChecked(v->cursors_shown());
d552c5c7
SA
216
217 connect(v.get(), SIGNAL(always_zoom_to_fit_changed(bool)),
218 main_bar.get(), SLOT(on_always_zoom_to_fit_changed(bool)));
a55e7918 219 }
f4e57597
SA
220
221 return v;
e93f5538
JH
222 }
223
f4e57597 224 return nullptr;
ed43ef2e
JH
225}
226
101e7a9b
SA
227shared_ptr<Session> MainWindow::add_session()
228{
90d77e35
SA
229 static int last_session_id = 1;
230 QString name = tr("Untitled-%1").arg(last_session_id++);
101e7a9b
SA
231
232 shared_ptr<Session> session = make_shared<Session>(device_manager_, name);
233
f4e57597
SA
234 connect(session.get(), SIGNAL(add_view(const QString&, views::ViewType, Session*)),
235 this, SLOT(on_add_view(const QString&, views::ViewType, Session*)));
33e1afbe
SA
236 connect(session.get(), SIGNAL(name_changed()),
237 this, SLOT(on_session_name_changed()));
3231fbf9
SA
238 session_state_mapper_.setMapping(session.get(), session.get());
239 connect(session.get(), SIGNAL(capture_state_changed(int)),
240 &session_state_mapper_, SLOT(map()));
3a21afa6 241
101e7a9b
SA
242 sessions_.push_back(session);
243
3b84fd0b
SA
244 QMainWindow *window = new QMainWindow();
245 window->setWindowFlags(Qt::Widget); // Remove Qt::Window flag
246 session_windows_[session] = window;
085cd160
SA
247
248 int index = session_selector_.addTab(window, name);
249 session_selector_.setCurrentIndex(index);
33bedfc1 250 last_focused_session_ = session;
3b84fd0b 251
68ad932d
SA
252 window->setDockNestingEnabled(true);
253
f4e57597
SA
254 shared_ptr<views::ViewBase> main_view =
255 add_view(name, views::ViewTypeTrace, *session);
101e7a9b
SA
256
257 return session;
258}
259
36a8185e
SA
260void MainWindow::remove_session(shared_ptr<Session> session)
261{
cc964645
SA
262 int h = new_session_button_->height();
263
f4e57597 264 for (shared_ptr<views::ViewBase> view : session->views()) {
3b84fd0b 265 // Find the dock the view is contained in and remove it
36a8185e 266 for (auto entry : view_docks_)
3b84fd0b
SA
267 if (entry.second == view) {
268 // Remove the view from the session
269 session->deregister_view(view);
270
271 // Remove the view from its parent; otherwise, Qt will
272 // call deleteLater() on it, which causes a double free
273 // since the shared_ptr in view_docks_ doesn't know
274 // that Qt keeps a pointer to the view around
275 entry.second->setParent(0);
276
277 // Remove this entry from the container
278 view_docks_.erase(entry.first);
279 }
36a8185e
SA
280 }
281
3b84fd0b
SA
282 QMainWindow *window = session_windows_.at(session);
283 session_selector_.removeTab(session_selector_.indexOf(window));
284
285 session_windows_.erase(session);
286
33bedfc1
SA
287 if (last_focused_session_ == session)
288 last_focused_session_.reset();
289
36a8185e
SA
290 sessions_.remove_if([&](shared_ptr<Session> s) {
291 return s == session; });
33e1afbe 292
cc964645
SA
293 if (sessions_.empty()) {
294 // When there are no more tabs, the height of the QTabWidget
295 // drops to zero. We must prevent this to keep the static
296 // widgets visible
297 for (QWidget *w : static_tab_widget_->findChildren<QWidget*>())
298 w->setMinimumHeight(h);
299
300 int margin = static_tab_widget_->layout()->contentsMargins().bottom();
301 static_tab_widget_->setMinimumHeight(h + 2 * margin);
302 session_selector_.setMinimumHeight(h + 2 * margin);
303
304 // Update the window title if there is no view left to
305 // generate focus change events
2ec81436 306 setWindowTitle(WindowTitle);
cc964645 307 }
36a8185e
SA
308}
309
7d5425ef
JH
310void MainWindow::setup_ui()
311{
312 setObjectName(QString::fromUtf8("MainWindow"));
313
3b84fd0b
SA
314 setCentralWidget(&session_selector_);
315
7d5425ef
JH
316 // Set the window icon
317 QIcon icon;
14f9d4a1 318 icon.addFile(QString(":/icons/sigrok-logo-notext.png"));
7d5425ef
JH
319 setWindowIcon(icon);
320
c7b03d9d
SA
321 action_view_sticky_scrolling_->setCheckable(true);
322 action_view_sticky_scrolling_->setChecked(true);
69282fae 323 action_view_sticky_scrolling_->setShortcut(QKeySequence(Qt::Key_S));
c7b03d9d
SA
324 action_view_sticky_scrolling_->setObjectName(
325 QString::fromUtf8("actionViewStickyScrolling"));
69282fae 326 action_view_sticky_scrolling_->setText(tr("&Sticky Scrolling"));
ab1d13ee 327
0fb9d645
SA
328 action_view_coloured_bg_->setCheckable(true);
329 action_view_coloured_bg_->setChecked(true);
574c568d 330 action_view_coloured_bg_->setShortcut(QKeySequence(Qt::Key_B));
0fb9d645
SA
331 action_view_coloured_bg_->setObjectName(
332 QString::fromUtf8("actionViewColouredBg"));
333 action_view_coloured_bg_->setText(tr("Use &coloured backgrounds"));
0fb9d645 334
69654681
JH
335 action_about_->setObjectName(QString::fromUtf8("actionAbout"));
336 action_about_->setText(tr("&About..."));
7d5425ef 337
f1e2d26b
SA
338 // Set up the tab area
339 new_session_button_ = new QToolButton();
340 new_session_button_->setIcon(QIcon::fromTheme("document-new",
341 QIcon(":/icons/document-new.png")));
342 new_session_button_->setAutoRaise(true);
343
3231fbf9
SA
344 run_stop_button_ = new QToolButton();
345 run_stop_button_->setAutoRaise(true);
346 run_stop_button_->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
347 run_stop_button_->setShortcut(QKeySequence(Qt::Key_Space));
348
f1e2d26b
SA
349 QHBoxLayout* layout = new QHBoxLayout();
350 layout->setContentsMargins(2, 2, 2, 2);
351 layout->addWidget(new_session_button_);
3231fbf9 352 layout->addWidget(run_stop_button_);
f1e2d26b 353
cc964645 354 static_tab_widget_ = new QWidget();
f1e2d26b
SA
355 static_tab_widget_->setLayout(layout);
356
357 session_selector_.setCornerWidget(static_tab_widget_, Qt::TopLeftCorner);
4a4e20f5
SA
358 session_selector_.setTabsClosable(true);
359
f1e2d26b
SA
360 connect(new_session_button_, SIGNAL(clicked(bool)),
361 this, SLOT(on_new_session_clicked()));
3231fbf9
SA
362 connect(run_stop_button_, SIGNAL(clicked(bool)),
363 this, SLOT(on_run_stop_clicked()));
364 connect(&session_state_mapper_, SIGNAL(mapped(QObject*)),
365 this, SLOT(on_capture_state_changed(QObject*)));
f1e2d26b 366
4a4e20f5
SA
367 connect(&session_selector_, SIGNAL(tabCloseRequested(int)),
368 this, SLOT(on_tab_close_requested(int)));
e7aff437
SA
369 connect(&session_selector_, SIGNAL(currentChanged(int)),
370 this, SLOT(on_tab_changed(int)));
4a4e20f5 371
f1e2d26b 372
33e1afbe
SA
373 connect(static_cast<QApplication *>(QCoreApplication::instance()),
374 SIGNAL(focusChanged(QWidget*, QWidget*)),
375 this, SLOT(on_focus_changed()));
e3c79b07
JH
376}
377
93f683ad
SA
378void MainWindow::save_ui_settings()
379{
39eb0d45 380 QSettings settings;
101e7a9b 381 int id = 0;
6842b5fc 382
93f683ad
SA
383 settings.beginGroup("MainWindow");
384 settings.setValue("state", saveState());
385 settings.setValue("geometry", saveGeometry());
386 settings.endGroup();
6842b5fc 387
101e7a9b 388 for (shared_ptr<Session> session : sessions_) {
3503810c 389 // Ignore sessions using the demo device or no device at all
101e7a9b
SA
390 if (session->device()) {
391 shared_ptr<devices::HardwareDevice> device =
392 dynamic_pointer_cast< devices::HardwareDevice >
393 (session->device());
394
f2040dcb
SA
395 if (device &&
396 device->hardware_device()->driver()->name() == "demo")
101e7a9b 397 continue;
6842b5fc 398
3503810c
SA
399 settings.beginGroup("Session" + QString::number(id++));
400 settings.remove(""); // Remove all keys in this group
401 session->save_settings(settings);
402 settings.endGroup();
403 }
6842b5fc 404 }
101e7a9b
SA
405
406 settings.setValue("sessions", id);
93f683ad
SA
407}
408
409void MainWindow::restore_ui_settings()
410{
39eb0d45 411 QSettings settings;
101e7a9b 412 int i, session_count;
93f683ad
SA
413
414 settings.beginGroup("MainWindow");
415
416 if (settings.contains("geometry")) {
417 restoreGeometry(settings.value("geometry").toByteArray());
418 restoreState(settings.value("state").toByteArray());
419 } else
420 resize(1000, 720);
421
422 settings.endGroup();
101e7a9b
SA
423
424 session_count = settings.value("sessions", 0).toInt();
425
426 for (i = 0; i < session_count; i++) {
427 settings.beginGroup("Session" + QString::number(i));
428 shared_ptr<Session> session = add_session();
429 session->restore_settings(settings);
430 settings.endGroup();
431 }
93f683ad
SA
432}
433
e7aff437
SA
434std::shared_ptr<Session> MainWindow::get_tab_session(int index) const
435{
436 // Find the session that belongs to the tab's main window
437 for (auto entry : session_windows_)
438 if (entry.second == session_selector_.widget(index))
439 return entry.first;
440
441 return nullptr;
442}
443
e3c79b07
JH
444void MainWindow::closeEvent(QCloseEvent *event)
445{
446 save_ui_settings();
447 event->accept();
448}
449
d290e89f
SA
450QMenu* MainWindow::createPopupMenu()
451{
452 return nullptr;
453}
454
55547a45
SA
455bool MainWindow::restoreState(const QByteArray &state, int version)
456{
457 (void)state;
458 (void)version;
459
460 // Do nothing. We don't want Qt to handle this, or else it
461 // will try to restore all the dock widgets and create havoc.
462
463 return false;
464}
465
3231fbf9
SA
466void MainWindow::session_error(const QString text, const QString info_text)
467{
468 QMetaObject::invokeMethod(this, "show_session_error",
469 Qt::QueuedConnection, Q_ARG(QString, text),
470 Q_ARG(QString, info_text));
471}
472
473void MainWindow::show_session_error(const QString text, const QString info_text)
474{
475 QMessageBox msg(this);
476 msg.setText(text);
477 msg.setInformativeText(info_text);
478 msg.setStandardButtons(QMessageBox::Ok);
479 msg.setIcon(QMessageBox::Warning);
480 msg.exec();
481}
482
f4e57597 483void MainWindow::on_add_view(const QString &title, views::ViewType type,
3a21afa6
SA
484 Session *session)
485{
486 // We get a pointer and need a reference
487 for (std::shared_ptr<Session> s : sessions_)
488 if (s.get() == session)
489 add_view(title, type, *s);
490}
491
33e1afbe
SA
492void MainWindow::on_focus_changed()
493{
e7aff437
SA
494 shared_ptr<views::ViewBase> view = get_active_view();
495
496 if (view) {
497 for (shared_ptr<Session> session : sessions_) {
498 if (session->has_view(view)) {
33bedfc1 499 if (session != last_focused_session_) {
e7aff437
SA
500 // Activate correct tab if necessary
501 shared_ptr<Session> tab_session = get_tab_session(
502 session_selector_.currentIndex());
503 if (tab_session != session)
504 session_selector_.setCurrentWidget(
505 session_windows_.at(session));
506
507 on_focused_session_changed(session);
508 }
509
e7aff437
SA
510 break;
511 }
512 }
33e1afbe
SA
513 }
514
e7aff437 515 if (sessions_.empty())
33e1afbe
SA
516 setWindowTitle(WindowTitle);
517}
518
e7aff437
SA
519void MainWindow::on_focused_session_changed(shared_ptr<Session> session)
520{
33bedfc1
SA
521 last_focused_session_ = session;
522
e7aff437 523 setWindowTitle(session->name() + " - " + WindowTitle);
3231fbf9
SA
524
525 // Update the state of the run/stop button, too
526 on_capture_state_changed(session.get());
e7aff437
SA
527}
528
f1e2d26b 529void MainWindow::on_new_session_clicked()
c9da5118
SA
530{
531 add_session();
532}
533
3231fbf9
SA
534void MainWindow::on_run_stop_clicked()
535{
33bedfc1
SA
536 shared_ptr<Session> session = last_focused_session_;
537
538 if (!session)
539 return;
3231fbf9 540
33bedfc1 541 switch (session->get_capture_state()) {
3231fbf9 542 case Session::Stopped:
33bedfc1 543 session->start_capture([&](QString message) {
3231fbf9
SA
544 session_error("Capture failed", message); });
545 break;
546 case Session::AwaitingTrigger:
547 case Session::Running:
33bedfc1 548 session->stop_capture();
3231fbf9
SA
549 break;
550 }
551}
552
33e1afbe
SA
553void MainWindow::on_session_name_changed()
554{
555 // Update the corresponding dock widget's name(s)
556 Session *session = qobject_cast<Session*>(QObject::sender());
557 assert(session);
558
f4e57597 559 for (shared_ptr<views::ViewBase> view : session->views()) {
33e1afbe
SA
560 // Get the dock that contains the view
561 for (auto entry : view_docks_)
562 if (entry.second == view) {
563 entry.first->setObjectName(session->name());
564 entry.first->setWindowTitle(session->name());
565 }
566 }
567
568 // Refresh window title if the affected session has focus
33bedfc1 569 if (session == last_focused_session_.get())
e7aff437 570 setWindowTitle(session->name() + " - " + WindowTitle);
33e1afbe
SA
571}
572
3231fbf9
SA
573void MainWindow::on_capture_state_changed(QObject *obj)
574{
575 Session *caller = qobject_cast<Session*>(obj);
576
577 // Ignore if caller is not the currently focused session
578 // unless there is only one session
33bedfc1
SA
579 if ((sessions_.size() > 1) && (caller != last_focused_session_.get()))
580 return;
3231fbf9
SA
581
582 int state = caller->get_capture_state();
583
584 const QIcon *icons[] = {&icon_grey_, &icon_red_, &icon_green_};
585 run_stop_button_->setIcon(*icons[state]);
586 run_stop_button_->setText((state == pv::Session::Stopped) ?
587 tr("Run") : tr("Stop"));
588}
589
c9da5118
SA
590void MainWindow::on_new_view(Session *session)
591{
592 // We get a pointer and need a reference
593 for (std::shared_ptr<Session> s : sessions_)
594 if (s.get() == session)
f4e57597 595 add_view(session->name(), views::ViewTypeTrace, *s);
c9da5118
SA
596}
597
36a8185e
SA
598void MainWindow::on_view_close_clicked()
599{
600 // Find the dock widget that contains the close button that was clicked
601 QObject *w = QObject::sender();
602 QDockWidget *dock = 0;
603
604 while (w) {
605 dock = qobject_cast<QDockWidget*>(w);
606 if (dock)
607 break;
608 w = w->parent();
609 }
610
611 // Get the view contained in the dock widget
f4e57597 612 shared_ptr<views::ViewBase> view;
36a8185e
SA
613
614 for (auto entry : view_docks_)
cbf7b5db 615 if (entry.first == dock)
36a8185e
SA
616 view = entry.second;
617
618 // Deregister the view
619 for (shared_ptr<Session> session : sessions_) {
620 if (!session->has_view(view))
621 continue;
622
623 // Also destroy the entire session if its main view is closing
624 if (view == session->main_view()) {
625 remove_session(session);
626 break;
627 } else
628 session->deregister_view(view);
629 }
630}
631
e7aff437
SA
632void MainWindow::on_tab_changed(int index)
633{
634 shared_ptr<Session> session = get_tab_session(index);
635
636 if (session)
637 on_focused_session_changed(session);
638}
639
4a4e20f5
SA
640void MainWindow::on_tab_close_requested(int index)
641{
642 // TODO Ask user if this is intended in case data is unsaved
643
e7aff437
SA
644 shared_ptr<Session> session = get_tab_session(index);
645
646 if (session)
647 remove_session(session);
4a4e20f5
SA
648}
649
c7b03d9d
SA
650void MainWindow::on_actionViewStickyScrolling_triggered()
651{
f4e57597
SA
652 shared_ptr<views::ViewBase> viewbase = get_active_view();
653 views::TraceView::View* view =
654 qobject_cast<views::TraceView::View*>(viewbase.get());
168bd8ac
SA
655 if (view)
656 view->enable_sticky_scrolling(action_view_sticky_scrolling_->isChecked());
c7b03d9d
SA
657}
658
0fb9d645
SA
659void MainWindow::on_actionViewColouredBg_triggered()
660{
f4e57597
SA
661 shared_ptr<views::ViewBase> viewbase = get_active_view();
662 views::TraceView::View* view =
663 qobject_cast<views::TraceView::View*>(viewbase.get());
168bd8ac
SA
664 if (view)
665 view->enable_coloured_bg(action_view_coloured_bg_->isChecked());
0fb9d645
SA
666}
667
30236a54
JH
668void MainWindow::on_actionAbout_triggered()
669{
8dbbc7f0 670 dialogs::About dlg(device_manager_.context(), this);
40eb2ff4 671 dlg.exec();
30236a54 672}
274d4f13 673
51e77110 674} // namespace pv