]> sigrok.org Git - pulseview.git/blob - pv/mainwindow.cpp
46f8a123ae8907b7d3793dd0b47eac9d3ba3bf1f
[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 #ifdef ENABLE_DECODE
21 #include <libsigrokdecode/libsigrokdecode.h>
22 #endif
23
24 #include <cassert>
25 #include <algorithm>
26 #include <iterator>
27 #include <cstdint>
28 #include <cstdarg>
29
30 #include <QAction>
31 #include <QApplication>
32 #include <QCloseEvent>
33 #include <QDockWidget>
34 #include <QHBoxLayout>
35 #include <QMessageBox>
36 #include <QSettings>
37 #include <QWidget>
38 #include <QShortcut>
39
40 #include "mainwindow.hpp"
41
42 #include "devicemanager.hpp"
43 #include "globalsettings.hpp"
44 #include "util.hpp"
45 #include "devices/hardwaredevice.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 <libsigrokcxx/libsigrokcxx.hpp>
52
53 using std::bind;
54 using std::dynamic_pointer_cast;
55 using std::list;
56 using std::make_shared;
57 using std::map;
58 using std::placeholders::_1;
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 const QString MainWindow::WindowTitle = tr("PulseView");
71
72 MainWindow::MainWindow(DeviceManager &device_manager,
73         string open_file_name, string open_file_format,
74         QWidget *parent) :
75         QMainWindow(parent),
76         device_manager_(device_manager),
77         session_selector_(this),
78         session_state_mapper_(this),
79         icon_red_(":/icons/status-red.svg"),
80         icon_green_(":/icons/status-green.svg"),
81         icon_grey_(":/icons/status-grey.svg")
82 {
83         qRegisterMetaType<util::Timestamp>("util::Timestamp");
84         qRegisterMetaType<uint64_t>("uint64_t");
85
86         GlobalSettings::register_change_handler(GlobalSettings::Key_View_ColouredBG,
87                 bind(&MainWindow::on_settingViewColouredBg_changed, this, _1));
88
89         GlobalSettings::register_change_handler(GlobalSettings::Key_View_ShowSamplingPoints,
90                 bind(&MainWindow::on_settingViewShowSamplingPoints_changed, this, _1));
91
92         setup_ui();
93         restore_ui_settings();
94
95         if (!open_file_name.empty()) {
96                 shared_ptr<Session> session = add_session();
97                 session->load_init_file(open_file_name, open_file_format);
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
117                 session->select_device(other_device ? other_device : demo_device);
118         }
119 }
120
121 MainWindow::~MainWindow()
122 {
123         while (!sessions_.empty())
124                 remove_session(sessions_.front());
125 }
126
127 shared_ptr<views::ViewBase> MainWindow::get_active_view() const
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();
135         QDockWidget *dock = nullptr;
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_)
146                 if (entry.first == dock)
147                         return entry.second;
148
149         return nullptr;
150 }
151
152 shared_ptr<views::ViewBase> MainWindow::add_view(const QString &title,
153         views::ViewType type, Session &session)
154 {
155         GlobalSettings settings;
156         shared_ptr<views::ViewBase> v;
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         shared_ptr<MainBar> main_bar = session.main_bar();
166
167         QDockWidget* dock = new QDockWidget(title, main_window);
168         dock->setObjectName(title);
169         main_window->addDockWidget(Qt::TopDockWidgetArea, dock);
170
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
174
175         if (type == views::ViewTypeTrace)
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);
179
180         if (!v)
181                 return nullptr;
182
183         view_docks_[dock] = v;
184         session.register_view(v);
185
186         dock_main->setCentralWidget(v.get());
187         dock->setWidget(dock_main);
188
189         dock->setFeatures(QDockWidget::DockWidgetMovable |
190                 QDockWidget::DockWidgetFloatable | QDockWidget::DockWidgetClosable);
191
192         QAbstractButton *close_btn =
193                 dock->findChildren<QAbstractButton*>
194                         ("qt_dockwidget_closebutton").front();
195
196         connect(close_btn, SIGNAL(clicked(bool)),
197                 this, SLOT(on_view_close_clicked()));
198
199         connect(&session, SIGNAL(trigger_event(util::Timestamp)),
200                 qobject_cast<views::ViewBase*>(v.get()),
201                 SLOT(trigger_event(util::Timestamp)));
202
203         if (type == views::ViewTypeTrace) {
204                 views::TraceView::View *tv =
205                         qobject_cast<views::TraceView::View*>(v.get());
206
207                 tv->enable_coloured_bg(settings.value(GlobalSettings::Key_View_ColouredBG).toBool());
208                 tv->enable_show_sampling_points(settings.value(GlobalSettings::Key_View_ShowSamplingPoints).toBool());
209
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());
233                 }
234         }
235
236         return v;
237 }
238
239 void 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
255                                 view->setParent(nullptr);
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
267 shared_ptr<Session> MainWindow::add_session()
268 {
269         static int last_session_id = 1;
270         QString name = tr("Session %1").arg(last_session_id++);
271
272         shared_ptr<Session> session = make_shared<Session>(device_manager_, name);
273
274         connect(session.get(), SIGNAL(add_view(const QString&, views::ViewType, Session*)),
275                 this, SLOT(on_add_view(const QString&, views::ViewType, Session*)));
276         connect(session.get(), SIGNAL(name_changed()),
277                 this, SLOT(on_session_name_changed()));
278         session_state_mapper_.setMapping(session.get(), session.get());
279         connect(session.get(), SIGNAL(capture_state_changed(int)),
280                 &session_state_mapper_, SLOT(map()));
281
282         sessions_.push_back(session);
283
284         QMainWindow *window = new QMainWindow();
285         window->setWindowFlags(Qt::Widget);  // Remove Qt::Window flag
286         session_windows_[session] = window;
287
288         int index = session_selector_.addTab(window, name);
289         session_selector_.setCurrentIndex(index);
290         last_focused_session_ = session;
291
292         window->setDockNestingEnabled(true);
293
294         shared_ptr<views::ViewBase> main_view =
295                 add_view(name, views::ViewTypeTrace, *session);
296
297         return session;
298 }
299
300 void MainWindow::remove_session(shared_ptr<Session> session)
301 {
302         int h = new_session_button_->height();
303
304         for (shared_ptr<views::ViewBase> view : session->views())
305                 remove_view(view);
306
307         QMainWindow *window = session_windows_.at(session);
308         session_selector_.removeTab(session_selector_.indexOf(window));
309
310         session_windows_.erase(session);
311
312         if (last_focused_session_ == session)
313                 last_focused_session_.reset();
314
315         sessions_.remove_if([&](shared_ptr<Session> s) {
316                 return s == session; });
317
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
331                 setWindowTitle(WindowTitle);
332         }
333 }
334
335 void MainWindow::setup_ui()
336 {
337         setObjectName(QString::fromUtf8("MainWindow"));
338
339         setCentralWidget(&session_selector_);
340
341         // Set the window icon
342         QIcon icon;
343         icon.addFile(QString(":/icons/sigrok-logo-notext.png"));
344         setWindowIcon(icon);
345
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);
348
349         view_show_sampling_points_shortcut_ = new QShortcut(QKeySequence(Qt::Key_Period), this, SLOT(on_view_show_sampling_points_shortcut()));
350         view_show_sampling_points_shortcut_->setAutoRepeat(false);
351
352         view_coloured_bg_shortcut_ = new QShortcut(QKeySequence(Qt::Key_B), this, SLOT(on_view_coloured_bg_shortcut()));
353         view_coloured_bg_shortcut_->setAutoRepeat(false);
354
355         // Set up the tab area
356         new_session_button_ = new QToolButton();
357         new_session_button_->setIcon(QIcon::fromTheme("document-new",
358                 QIcon(":/icons/document-new.png")));
359         new_session_button_->setToolTip(tr("Create New Session"));
360         new_session_button_->setAutoRaise(true);
361
362         run_stop_button_ = new QToolButton();
363         run_stop_button_->setAutoRaise(true);
364         run_stop_button_->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
365         run_stop_button_->setToolTip(tr("Start/Stop Acquisition"));
366
367         run_stop_shortcut_ = new QShortcut(QKeySequence(Qt::Key_Space), run_stop_button_, SLOT(click()));
368         run_stop_shortcut_->setAutoRepeat(false);
369
370         settings_button_ = new QToolButton();
371         settings_button_->setIcon(QIcon::fromTheme("configure",
372                 QIcon(":/icons/configure.png")));
373         settings_button_->setToolTip(tr("Settings"));
374         settings_button_->setAutoRaise(true);
375
376         QFrame *separator1 = new QFrame();
377         separator1->setFrameStyle(QFrame::VLine | QFrame::Raised);
378         QFrame *separator2 = new QFrame();
379         separator2->setFrameStyle(QFrame::VLine | QFrame::Raised);
380
381         QHBoxLayout* layout = new QHBoxLayout();
382         layout->setContentsMargins(2, 2, 2, 2);
383         layout->addWidget(new_session_button_);
384         layout->addWidget(separator1);
385         layout->addWidget(run_stop_button_);
386         layout->addWidget(separator2);
387         layout->addWidget(settings_button_);
388
389         static_tab_widget_ = new QWidget();
390         static_tab_widget_->setLayout(layout);
391
392         session_selector_.setCornerWidget(static_tab_widget_, Qt::TopLeftCorner);
393         session_selector_.setTabsClosable(true);
394
395         close_application_shortcut_ = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q), this, SLOT(close()));
396         close_application_shortcut_->setAutoRepeat(false);
397
398         close_current_tab_shortcut_ = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_W), this, SLOT(on_close_current_tab()));
399
400         connect(new_session_button_, SIGNAL(clicked(bool)),
401                 this, SLOT(on_new_session_clicked()));
402         connect(run_stop_button_, SIGNAL(clicked(bool)),
403                 this, SLOT(on_run_stop_clicked()));
404         connect(&session_state_mapper_, SIGNAL(mapped(QObject*)),
405                 this, SLOT(on_capture_state_changed(QObject*)));
406         connect(settings_button_, SIGNAL(clicked(bool)),
407                 this, SLOT(on_settings_clicked()));
408
409         connect(&session_selector_, SIGNAL(tabCloseRequested(int)),
410                 this, SLOT(on_tab_close_requested(int)));
411         connect(&session_selector_, SIGNAL(currentChanged(int)),
412                 this, SLOT(on_tab_changed(int)));
413
414
415         connect(static_cast<QApplication *>(QCoreApplication::instance()),
416                 SIGNAL(focusChanged(QWidget*, QWidget*)),
417                 this, SLOT(on_focus_changed()));
418 }
419
420 void MainWindow::save_ui_settings()
421 {
422         QSettings settings;
423         int id = 0;
424
425         settings.beginGroup("MainWindow");
426         settings.setValue("state", saveState());
427         settings.setValue("geometry", saveGeometry());
428         settings.endGroup();
429
430         for (shared_ptr<Session> session : sessions_) {
431                 // Ignore sessions using the demo device or no device at all
432                 if (session->device()) {
433                         shared_ptr<devices::HardwareDevice> device =
434                                 dynamic_pointer_cast< devices::HardwareDevice >
435                                 (session->device());
436
437                         if (device &&
438                                 device->hardware_device()->driver()->name() == "demo")
439                                 continue;
440
441                         settings.beginGroup("Session" + QString::number(id++));
442                         settings.remove("");  // Remove all keys in this group
443                         session->save_settings(settings);
444                         settings.endGroup();
445                 }
446         }
447
448         settings.setValue("sessions", id);
449 }
450
451 void MainWindow::restore_ui_settings()
452 {
453         QSettings settings;
454         int i, session_count;
455
456         settings.beginGroup("MainWindow");
457
458         if (settings.contains("geometry")) {
459                 restoreGeometry(settings.value("geometry").toByteArray());
460                 restoreState(settings.value("state").toByteArray());
461         } else
462                 resize(1000, 720);
463
464         settings.endGroup();
465
466         session_count = settings.value("sessions", 0).toInt();
467
468         for (i = 0; i < session_count; i++) {
469                 settings.beginGroup("Session" + QString::number(i));
470                 shared_ptr<Session> session = add_session();
471                 session->restore_settings(settings);
472                 settings.endGroup();
473         }
474 }
475
476 shared_ptr<Session> MainWindow::get_tab_session(int index) const
477 {
478         // Find the session that belongs to the tab's main window
479         for (auto entry : session_windows_)
480                 if (entry.second == session_selector_.widget(index))
481                         return entry.first;
482
483         return nullptr;
484 }
485
486 void MainWindow::closeEvent(QCloseEvent *event)
487 {
488         bool data_saved = true;
489
490         for (auto entry : session_windows_)
491                 if (!entry.first->data_saved())
492                         data_saved = false;
493
494         if (!data_saved && (QMessageBox::question(this, tr("Confirmation"),
495                 tr("There is unsaved data. Close anyway?"),
496                 QMessageBox::Yes | QMessageBox::No) == QMessageBox::No)) {
497                 event->ignore();
498         } else {
499                 save_ui_settings();
500                 event->accept();
501         }
502 }
503
504 QMenu* MainWindow::createPopupMenu()
505 {
506         return nullptr;
507 }
508
509 bool MainWindow::restoreState(const QByteArray &state, int version)
510 {
511         (void)state;
512         (void)version;
513
514         // Do nothing. We don't want Qt to handle this, or else it
515         // will try to restore all the dock widgets and create havoc.
516
517         return false;
518 }
519
520 void MainWindow::session_error(const QString text, const QString info_text)
521 {
522         QMetaObject::invokeMethod(this, "show_session_error",
523                 Qt::QueuedConnection, Q_ARG(QString, text),
524                 Q_ARG(QString, info_text));
525 }
526
527 void MainWindow::show_session_error(const QString text, const QString info_text)
528 {
529         QMessageBox msg(this);
530         msg.setText(text);
531         msg.setInformativeText(info_text);
532         msg.setStandardButtons(QMessageBox::Ok);
533         msg.setIcon(QMessageBox::Warning);
534         msg.exec();
535 }
536
537 void MainWindow::on_add_view(const QString &title, views::ViewType type,
538         Session *session)
539 {
540         // We get a pointer and need a reference
541         for (shared_ptr<Session> s : sessions_)
542                 if (s.get() == session)
543                         add_view(title, type, *s);
544 }
545
546 void MainWindow::on_focus_changed()
547 {
548         shared_ptr<views::ViewBase> view = get_active_view();
549
550         if (view) {
551                 for (shared_ptr<Session> session : sessions_) {
552                         if (session->has_view(view)) {
553                                 if (session != last_focused_session_) {
554                                         // Activate correct tab if necessary
555                                         shared_ptr<Session> tab_session = get_tab_session(
556                                                 session_selector_.currentIndex());
557                                         if (tab_session != session)
558                                                 session_selector_.setCurrentWidget(
559                                                         session_windows_.at(session));
560
561                                         on_focused_session_changed(session);
562                                 }
563
564                                 break;
565                         }
566                 }
567         }
568
569         if (sessions_.empty())
570                 setWindowTitle(WindowTitle);
571 }
572
573 void MainWindow::on_focused_session_changed(shared_ptr<Session> session)
574 {
575         last_focused_session_ = session;
576
577         setWindowTitle(session->name() + " - " + WindowTitle);
578
579         // Update the state of the run/stop button, too
580         on_capture_state_changed(session.get());
581 }
582
583 void MainWindow::on_new_session_clicked()
584 {
585         add_session();
586 }
587
588 void MainWindow::on_run_stop_clicked()
589 {
590         shared_ptr<Session> session = last_focused_session_;
591
592         if (!session)
593                 return;
594
595         switch (session->get_capture_state()) {
596         case Session::Stopped:
597                 session->start_capture([&](QString message) {
598                         session_error("Capture failed", message); });
599                 break;
600         case Session::AwaitingTrigger:
601         case Session::Running:
602                 session->stop_capture();
603                 break;
604         }
605 }
606
607 void MainWindow::on_settings_clicked()
608 {
609         dialogs::Settings dlg(device_manager_);
610         dlg.exec();
611 }
612
613 void MainWindow::on_session_name_changed()
614 {
615         // Update the corresponding dock widget's name(s)
616         Session *session = qobject_cast<Session*>(QObject::sender());
617         assert(session);
618
619         for (shared_ptr<views::ViewBase> view : session->views()) {
620                 // Get the dock that contains the view
621                 for (auto entry : view_docks_)
622                         if (entry.second == view) {
623                                 entry.first->setObjectName(session->name());
624                                 entry.first->setWindowTitle(session->name());
625                         }
626         }
627
628         // Update the tab widget by finding the main window and the tab from that
629         for (auto entry : session_windows_)
630                 if (entry.first.get() == session) {
631                         QMainWindow *window = entry.second;
632                         const int index = session_selector_.indexOf(window);
633                         session_selector_.setTabText(index, session->name());
634                 }
635
636         // Refresh window title if the affected session has focus
637         if (session == last_focused_session_.get())
638                 setWindowTitle(session->name() + " - " + WindowTitle);
639 }
640
641 void MainWindow::on_capture_state_changed(QObject *obj)
642 {
643         Session *caller = qobject_cast<Session*>(obj);
644
645         // Ignore if caller is not the currently focused session
646         // unless there is only one session
647         if ((sessions_.size() > 1) && (caller != last_focused_session_.get()))
648                 return;
649
650         int state = caller->get_capture_state();
651
652         const QIcon *icons[] = {&icon_grey_, &icon_red_, &icon_green_};
653         run_stop_button_->setIcon(*icons[state]);
654         run_stop_button_->setText((state == pv::Session::Stopped) ?
655                 tr("Run") : tr("Stop"));
656 }
657
658 void MainWindow::on_new_view(Session *session)
659 {
660         // We get a pointer and need a reference
661         for (shared_ptr<Session> s : sessions_)
662                 if (s.get() == session)
663                         add_view(session->name(), views::ViewTypeTrace, *s);
664 }
665
666 void MainWindow::on_view_close_clicked()
667 {
668         // Find the dock widget that contains the close button that was clicked
669         QObject *w = QObject::sender();
670         QDockWidget *dock = nullptr;
671
672         while (w) {
673             dock = qobject_cast<QDockWidget*>(w);
674             if (dock)
675                 break;
676             w = w->parent();
677         }
678
679         // Get the view contained in the dock widget
680         shared_ptr<views::ViewBase> view;
681
682         for (auto entry : view_docks_)
683                 if (entry.first == dock)
684                         view = entry.second;
685
686         // Deregister the view
687         for (shared_ptr<Session> session : sessions_) {
688                 if (!session->has_view(view))
689                         continue;
690
691                 // Also destroy the entire session if its main view is closing...
692                 if (view == session->main_view()) {
693                         // ...but only if data is saved or the user confirms closing
694                         if (session->data_saved() || (QMessageBox::question(this, tr("Confirmation"),
695                                 tr("This session contains unsaved data. Close it anyway?"),
696                                 QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes))
697                                 remove_session(session);
698                         break;
699                 } else
700                         // All other views can be closed at any time as no data will be lost
701                         remove_view(view);
702         }
703 }
704
705 void MainWindow::on_tab_changed(int index)
706 {
707         shared_ptr<Session> session = get_tab_session(index);
708
709         if (session)
710                 on_focused_session_changed(session);
711 }
712
713 void MainWindow::on_tab_close_requested(int index)
714 {
715         shared_ptr<Session> session = get_tab_session(index);
716
717         assert(session);
718
719         if (session->data_saved() || (QMessageBox::question(this, tr("Confirmation"),
720                 tr("This session contains unsaved data. Close it anyway?"),
721                 QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes))
722                 remove_session(session);
723 }
724
725 void MainWindow::on_view_coloured_bg_shortcut()
726 {
727         GlobalSettings settings;
728
729         bool state = settings.value(GlobalSettings::Key_View_ColouredBG).toBool();
730         settings.setValue(GlobalSettings::Key_View_ColouredBG, !state);
731 }
732
733 void MainWindow::on_view_sticky_scrolling_shortcut()
734 {
735         GlobalSettings settings;
736
737         bool state = settings.value(GlobalSettings::Key_View_StickyScrolling).toBool();
738         settings.setValue(GlobalSettings::Key_View_StickyScrolling, !state);
739 }
740
741 void MainWindow::on_view_show_sampling_points_shortcut()
742 {
743         GlobalSettings settings;
744
745         bool state = settings.value(GlobalSettings::Key_View_ShowSamplingPoints).toBool();
746         settings.setValue(GlobalSettings::Key_View_ShowSamplingPoints, !state);
747 }
748
749 void MainWindow::on_settingViewColouredBg_changed(const QVariant new_value)
750 {
751         bool state = new_value.toBool();
752
753         for (auto entry : view_docks_) {
754                 shared_ptr<views::ViewBase> viewbase = entry.second;
755
756                 // Only trace views have this setting
757                 views::TraceView::View* view =
758                                 qobject_cast<views::TraceView::View*>(viewbase.get());
759                 if (view)
760                         view->enable_coloured_bg(state);
761         }
762 }
763
764 void MainWindow::on_settingViewShowSamplingPoints_changed(const QVariant new_value)
765 {
766         bool state = new_value.toBool();
767
768         for (auto entry : view_docks_) {
769                 shared_ptr<views::ViewBase> viewbase = entry.second;
770
771                 // Only trace views have this setting
772                 views::TraceView::View* view =
773                                 qobject_cast<views::TraceView::View*>(viewbase.get());
774                 if (view)
775                         view->enable_show_sampling_points(state);
776         }
777 }
778
779 void MainWindow::on_close_current_tab()
780 {
781         int tab = session_selector_.currentIndex();
782
783         on_tab_close_requested(tab);
784 }
785
786 } // namespace pv