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