2 * This file is part of the PulseView project.
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
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.
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.
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/>.
21 #include <libsigrokdecode/libsigrokdecode.h>
31 #include <QApplication>
32 #include <QCloseEvent>
33 #include <QDockWidget>
34 #include <QHBoxLayout>
35 #include <QMessageBox>
40 #include "mainwindow.hpp"
42 #include "devicemanager.hpp"
43 #include "devices/hardwaredevice.hpp"
44 #include "dialogs/settings.hpp"
45 #include "globalsettings.hpp"
46 #include "toolbars/mainbar.hpp"
48 #include "views/trace/view.hpp"
49 #include "views/trace/standardbar.hpp"
51 #include <libsigrokcxx/libsigrokcxx.hpp>
53 using std::dynamic_pointer_cast;
54 using std::make_shared;
55 using std::shared_ptr;
64 using toolbars::MainBar;
66 const QString MainWindow::WindowTitle = tr("PulseView");
68 MainWindow::MainWindow(DeviceManager &device_manager, QWidget *parent) :
70 device_manager_(device_manager),
71 session_selector_(this),
72 session_state_mapper_(this),
73 icon_red_(":/icons/status-red.svg"),
74 icon_green_(":/icons/status-green.svg"),
75 icon_grey_(":/icons/status-grey.svg")
77 qRegisterMetaType<util::Timestamp>("util::Timestamp");
78 qRegisterMetaType<uint64_t>("uint64_t");
80 GlobalSettings::add_change_handler(this);
82 GlobalSettings settings;
83 settings.set_defaults_where_needed();
86 restore_ui_settings();
89 MainWindow::~MainWindow()
91 GlobalSettings::remove_change_handler(this);
93 while (!sessions_.empty())
94 remove_session(sessions_.front());
97 shared_ptr<views::ViewBase> MainWindow::get_active_view() const
99 // If there's only one view, use it...
100 if (view_docks_.size() == 1)
101 return view_docks_.begin()->second;
103 // ...otherwise find the dock widget the widget with focus is contained in
104 QObject *w = QApplication::focusWidget();
105 QDockWidget *dock = nullptr;
108 dock = qobject_cast<QDockWidget*>(w);
114 // Get the view contained in the dock widget
115 for (auto entry : view_docks_)
116 if (entry.first == dock)
122 shared_ptr<views::ViewBase> MainWindow::add_view(const QString &title,
123 views::ViewType type, Session &session)
125 GlobalSettings settings;
126 shared_ptr<views::ViewBase> v;
128 QMainWindow *main_window = nullptr;
129 for (auto entry : session_windows_)
130 if (entry.first.get() == &session)
131 main_window = entry.second;
135 shared_ptr<MainBar> main_bar = session.main_bar();
137 QDockWidget* dock = new QDockWidget(title, main_window);
138 dock->setObjectName(title);
139 main_window->addDockWidget(Qt::TopDockWidgetArea, dock);
141 // Insert a QMainWindow into the dock widget to allow for a tool bar
142 QMainWindow *dock_main = new QMainWindow(dock);
143 dock_main->setWindowFlags(Qt::Widget); // Remove Qt::Window flag
145 if (type == views::ViewTypeTrace)
146 // This view will be the main view if there's no main bar yet
147 v = make_shared<views::trace::View>(session,
148 (main_bar ? false : true), dock_main);
153 view_docks_[dock] = v;
154 session.register_view(v);
156 dock_main->setCentralWidget(v.get());
157 dock->setWidget(dock_main);
159 dock->setContextMenuPolicy(Qt::PreventContextMenu);
160 dock->setFeatures(QDockWidget::DockWidgetMovable |
161 QDockWidget::DockWidgetFloatable | QDockWidget::DockWidgetClosable);
163 QAbstractButton *close_btn =
164 dock->findChildren<QAbstractButton*>
165 ("qt_dockwidget_closebutton").front();
167 connect(close_btn, SIGNAL(clicked(bool)),
168 this, SLOT(on_view_close_clicked()));
170 connect(&session, SIGNAL(trigger_event(int, util::Timestamp)),
171 qobject_cast<views::ViewBase*>(v.get()),
172 SLOT(trigger_event(int, util::Timestamp)));
174 if (type == views::ViewTypeTrace) {
175 views::trace::View *tv =
176 qobject_cast<views::trace::View*>(v.get());
178 tv->enable_coloured_bg(settings.value(GlobalSettings::Key_View_ColouredBG).toBool());
179 tv->enable_show_sampling_points(settings.value(GlobalSettings::Key_View_ShowSamplingPoints).toBool());
180 tv->enable_show_analog_minor_grid(settings.value(GlobalSettings::Key_View_ShowAnalogMinorGrid).toBool());
183 /* Initial view, create the main bar */
184 main_bar = make_shared<MainBar>(session, this, tv);
185 dock_main->addToolBar(main_bar.get());
186 session.set_main_bar(main_bar);
188 connect(main_bar.get(), SIGNAL(new_view(Session*)),
189 this, SLOT(on_new_view(Session*)));
191 main_bar->action_view_show_cursors()->setChecked(tv->cursors_shown());
193 /* For the main view we need to prevent the dock widget from
194 * closing itself when its close button is clicked. This is
195 * so we can confirm with the user first. Regular views don't
197 close_btn->disconnect(SIGNAL(clicked()), dock, SLOT(close()));
199 /* Additional view, create a standard bar */
200 pv::views::trace::StandardBar *standard_bar =
201 new pv::views::trace::StandardBar(session, this, tv);
202 dock_main->addToolBar(standard_bar);
204 standard_bar->action_view_show_cursors()->setChecked(tv->cursors_shown());
211 void MainWindow::remove_view(shared_ptr<views::ViewBase> view)
213 for (shared_ptr<Session> session : sessions_) {
214 if (!session->has_view(view))
217 // Find the dock the view is contained in and remove it
218 for (auto entry : view_docks_)
219 if (entry.second == view) {
220 // Remove the view from the session
221 session->deregister_view(view);
223 // Remove the view from its parent; otherwise, Qt will
224 // call deleteLater() on it, which causes a double free
225 // since the shared_ptr in view_docks_ doesn't know
226 // that Qt keeps a pointer to the view around
227 view->setParent(nullptr);
229 // Delete the view's dock widget and all widgets inside it
230 entry.first->deleteLater();
232 // Remove the dock widget from the list and stop iterating
233 view_docks_.erase(entry.first);
239 shared_ptr<Session> MainWindow::add_session()
241 static int last_session_id = 1;
242 QString name = tr("Session %1").arg(last_session_id++);
244 shared_ptr<Session> session = make_shared<Session>(device_manager_, name);
246 connect(session.get(), SIGNAL(add_view(const QString&, views::ViewType, Session*)),
247 this, SLOT(on_add_view(const QString&, views::ViewType, Session*)));
248 connect(session.get(), SIGNAL(name_changed()),
249 this, SLOT(on_session_name_changed()));
250 session_state_mapper_.setMapping(session.get(), session.get());
251 connect(session.get(), SIGNAL(capture_state_changed(int)),
252 &session_state_mapper_, SLOT(map()));
254 sessions_.push_back(session);
256 QMainWindow *window = new QMainWindow();
257 window->setWindowFlags(Qt::Widget); // Remove Qt::Window flag
258 session_windows_[session] = window;
260 int index = session_selector_.addTab(window, name);
261 session_selector_.setCurrentIndex(index);
262 last_focused_session_ = session;
264 window->setDockNestingEnabled(true);
266 shared_ptr<views::ViewBase> main_view =
267 add_view(name, views::ViewTypeTrace, *session);
272 void MainWindow::remove_session(shared_ptr<Session> session)
274 // Determine the height of the button before it collapses
275 int h = new_session_button_->height();
277 // Stop capture while the session still exists so that the UI can be
278 // updated in case we're currently running. If so, this will schedule a
279 // call to our on_capture_state_changed() slot for the next run of the
280 // event loop. We need to have this executed immediately or else it will
281 // be dismissed since the session object will be deleted by the time we
282 // leave this method and the event loop gets a chance to run again.
283 session->stop_capture();
284 QApplication::processEvents();
286 for (shared_ptr<views::ViewBase> view : session->views())
289 QMainWindow *window = session_windows_.at(session);
290 session_selector_.removeTab(session_selector_.indexOf(window));
292 session_windows_.erase(session);
294 if (last_focused_session_ == session)
295 last_focused_session_.reset();
297 // Remove the session from our list of sessions (which also destroys it)
298 sessions_.remove_if([&](shared_ptr<Session> s) {
299 return s == session; });
301 if (sessions_.empty()) {
302 // When there are no more tabs, the height of the QTabWidget
303 // drops to zero. We must prevent this to keep the static
305 for (QWidget *w : static_tab_widget_->findChildren<QWidget*>())
306 w->setMinimumHeight(h);
308 int margin = static_tab_widget_->layout()->contentsMargins().bottom();
309 static_tab_widget_->setMinimumHeight(h + 2 * margin);
310 session_selector_.setMinimumHeight(h + 2 * margin);
312 // Update the window title if there is no view left to
313 // generate focus change events
314 setWindowTitle(WindowTitle);
318 void MainWindow::add_session_with_file(string open_file_name,
319 string open_file_format)
321 shared_ptr<Session> session = add_session();
322 session->load_init_file(open_file_name, open_file_format);
325 void MainWindow::add_default_session()
327 // Only add the default session if there would be no session otherwise
328 if (sessions_.size() > 0)
331 shared_ptr<Session> session = add_session();
333 // Check the list of available devices. Prefer the one that was
334 // found with user supplied scan specs (if applicable). Then try
335 // one of the auto detected devices that are not the demo device.
336 // Pick demo in the absence of "genuine" hardware devices.
337 shared_ptr<devices::HardwareDevice> user_device, other_device, demo_device;
338 for (shared_ptr<devices::HardwareDevice> dev : device_manager_.devices()) {
339 if (dev == device_manager_.user_spec_device()) {
341 } else if (dev->hardware_device()->driver()->name() == "demo") {
348 session->select_device(user_device);
349 else if (other_device)
350 session->select_device(other_device);
352 session->select_device(demo_device);
355 void MainWindow::save_sessions()
360 for (shared_ptr<Session> session : sessions_) {
361 // Ignore sessions using the demo device or no device at all
362 if (session->device()) {
363 shared_ptr<devices::HardwareDevice> device =
364 dynamic_pointer_cast< devices::HardwareDevice >
368 device->hardware_device()->driver()->name() == "demo")
371 settings.beginGroup("Session" + QString::number(id++));
372 settings.remove(""); // Remove all keys in this group
373 session->save_settings(settings);
378 settings.setValue("sessions", id);
381 void MainWindow::restore_sessions()
384 int i, session_count;
386 session_count = settings.value("sessions", 0).toInt();
388 for (i = 0; i < session_count; i++) {
389 settings.beginGroup("Session" + QString::number(i));
390 shared_ptr<Session> session = add_session();
391 session->restore_settings(settings);
396 void MainWindow::on_setting_changed(const QString &key, const QVariant &value)
398 if (key == GlobalSettings::Key_View_ColouredBG)
399 on_settingViewColouredBg_changed(value);
401 if (key == GlobalSettings::Key_View_ShowSamplingPoints)
402 on_settingViewShowSamplingPoints_changed(value);
404 if (key == GlobalSettings::Key_View_ShowAnalogMinorGrid)
405 on_settingViewShowAnalogMinorGrid_changed(value);
408 void MainWindow::setup_ui()
410 setObjectName(QString::fromUtf8("MainWindow"));
412 setCentralWidget(&session_selector_);
414 // Set the window icon
416 icon.addFile(QString(":/icons/pulseview.png"));
419 view_sticky_scrolling_shortcut_ = new QShortcut(QKeySequence(Qt::Key_S), this, SLOT(on_view_sticky_scrolling_shortcut()));
420 view_sticky_scrolling_shortcut_->setAutoRepeat(false);
422 view_show_sampling_points_shortcut_ = new QShortcut(QKeySequence(Qt::Key_Period), this, SLOT(on_view_show_sampling_points_shortcut()));
423 view_show_sampling_points_shortcut_->setAutoRepeat(false);
425 view_show_analog_minor_grid_shortcut_ = new QShortcut(QKeySequence(Qt::Key_G), this, SLOT(on_view_show_analog_minor_grid_shortcut()));
426 view_show_analog_minor_grid_shortcut_->setAutoRepeat(false);
428 view_coloured_bg_shortcut_ = new QShortcut(QKeySequence(Qt::Key_B), this, SLOT(on_view_coloured_bg_shortcut()));
429 view_coloured_bg_shortcut_->setAutoRepeat(false);
431 // Set up the tab area
432 new_session_button_ = new QToolButton();
433 new_session_button_->setIcon(QIcon::fromTheme("document-new",
434 QIcon(":/icons/document-new.png")));
435 new_session_button_->setToolTip(tr("Create New Session"));
436 new_session_button_->setAutoRaise(true);
438 run_stop_button_ = new QToolButton();
439 run_stop_button_->setAutoRaise(true);
440 run_stop_button_->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
441 run_stop_button_->setToolTip(tr("Start/Stop Acquisition"));
443 run_stop_shortcut_ = new QShortcut(QKeySequence(Qt::Key_Space), run_stop_button_, SLOT(click()));
444 run_stop_shortcut_->setAutoRepeat(false);
446 settings_button_ = new QToolButton();
447 settings_button_->setIcon(QIcon::fromTheme("preferences-system",
448 QIcon(":/icons/preferences-system.png")));
449 settings_button_->setToolTip(tr("Settings"));
450 settings_button_->setAutoRaise(true);
452 QFrame *separator1 = new QFrame();
453 separator1->setFrameStyle(QFrame::VLine | QFrame::Raised);
454 QFrame *separator2 = new QFrame();
455 separator2->setFrameStyle(QFrame::VLine | QFrame::Raised);
457 QHBoxLayout* layout = new QHBoxLayout();
458 layout->setContentsMargins(2, 2, 2, 2);
459 layout->addWidget(new_session_button_);
460 layout->addWidget(separator1);
461 layout->addWidget(run_stop_button_);
462 layout->addWidget(separator2);
463 layout->addWidget(settings_button_);
465 static_tab_widget_ = new QWidget();
466 static_tab_widget_->setLayout(layout);
468 session_selector_.setCornerWidget(static_tab_widget_, Qt::TopLeftCorner);
469 session_selector_.setTabsClosable(true);
471 close_application_shortcut_ = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q), this, SLOT(close()));
472 close_application_shortcut_->setAutoRepeat(false);
474 close_current_tab_shortcut_ = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_W), this, SLOT(on_close_current_tab()));
476 connect(new_session_button_, SIGNAL(clicked(bool)),
477 this, SLOT(on_new_session_clicked()));
478 connect(run_stop_button_, SIGNAL(clicked(bool)),
479 this, SLOT(on_run_stop_clicked()));
480 connect(&session_state_mapper_, SIGNAL(mapped(QObject*)),
481 this, SLOT(on_capture_state_changed(QObject*)));
482 connect(settings_button_, SIGNAL(clicked(bool)),
483 this, SLOT(on_settings_clicked()));
485 connect(&session_selector_, SIGNAL(tabCloseRequested(int)),
486 this, SLOT(on_tab_close_requested(int)));
487 connect(&session_selector_, SIGNAL(currentChanged(int)),
488 this, SLOT(on_tab_changed(int)));
491 connect(static_cast<QApplication *>(QCoreApplication::instance()),
492 SIGNAL(focusChanged(QWidget*, QWidget*)),
493 this, SLOT(on_focus_changed()));
496 void MainWindow::save_ui_settings()
500 settings.beginGroup("MainWindow");
501 settings.setValue("state", saveState());
502 settings.setValue("geometry", saveGeometry());
506 void MainWindow::restore_ui_settings()
510 settings.beginGroup("MainWindow");
512 if (settings.contains("geometry")) {
513 restoreGeometry(settings.value("geometry").toByteArray());
514 restoreState(settings.value("state").toByteArray());
521 shared_ptr<Session> MainWindow::get_tab_session(int index) const
523 // Find the session that belongs to the tab's main window
524 for (auto entry : session_windows_)
525 if (entry.second == session_selector_.widget(index))
531 void MainWindow::closeEvent(QCloseEvent *event)
533 bool data_saved = true;
535 for (auto entry : session_windows_)
536 if (!entry.first->data_saved())
539 if (!data_saved && (QMessageBox::question(this, tr("Confirmation"),
540 tr("There is unsaved data. Close anyway?"),
541 QMessageBox::Yes | QMessageBox::No) == QMessageBox::No)) {
550 QMenu* MainWindow::createPopupMenu()
555 bool MainWindow::restoreState(const QByteArray &state, int version)
560 // Do nothing. We don't want Qt to handle this, or else it
561 // will try to restore all the dock widgets and create havoc.
566 void MainWindow::session_error(const QString text, const QString info_text)
568 QMetaObject::invokeMethod(this, "show_session_error",
569 Qt::QueuedConnection, Q_ARG(QString, text),
570 Q_ARG(QString, info_text));
573 void MainWindow::show_session_error(const QString text, const QString info_text)
575 QMessageBox msg(this);
577 msg.setInformativeText(info_text);
578 msg.setStandardButtons(QMessageBox::Ok);
579 msg.setIcon(QMessageBox::Warning);
583 void MainWindow::on_add_view(const QString &title, views::ViewType type,
586 // We get a pointer and need a reference
587 for (shared_ptr<Session> s : sessions_)
588 if (s.get() == session)
589 add_view(title, type, *s);
592 void MainWindow::on_focus_changed()
594 shared_ptr<views::ViewBase> view = get_active_view();
597 for (shared_ptr<Session> session : sessions_) {
598 if (session->has_view(view)) {
599 if (session != last_focused_session_) {
600 // Activate correct tab if necessary
601 shared_ptr<Session> tab_session = get_tab_session(
602 session_selector_.currentIndex());
603 if (tab_session != session)
604 session_selector_.setCurrentWidget(
605 session_windows_.at(session));
607 on_focused_session_changed(session);
615 if (sessions_.empty())
616 setWindowTitle(WindowTitle);
619 void MainWindow::on_focused_session_changed(shared_ptr<Session> session)
621 last_focused_session_ = session;
623 setWindowTitle(session->name() + " - " + WindowTitle);
625 // Update the state of the run/stop button, too
626 on_capture_state_changed(session.get());
629 void MainWindow::on_new_session_clicked()
634 void MainWindow::on_run_stop_clicked()
636 shared_ptr<Session> session = last_focused_session_;
641 switch (session->get_capture_state()) {
642 case Session::Stopped:
643 session->start_capture([&](QString message) {
644 session_error("Capture failed", message); });
646 case Session::AwaitingTrigger:
647 case Session::Running:
648 session->stop_capture();
653 void MainWindow::on_settings_clicked()
655 dialogs::Settings dlg(device_manager_);
659 void MainWindow::on_session_name_changed()
661 // Update the corresponding dock widget's name(s)
662 Session *session = qobject_cast<Session*>(QObject::sender());
665 for (shared_ptr<views::ViewBase> view : session->views()) {
666 // Get the dock that contains the view
667 for (auto entry : view_docks_)
668 if (entry.second == view) {
669 entry.first->setObjectName(session->name());
670 entry.first->setWindowTitle(session->name());
674 // Update the tab widget by finding the main window and the tab from that
675 for (auto entry : session_windows_)
676 if (entry.first.get() == session) {
677 QMainWindow *window = entry.second;
678 const int index = session_selector_.indexOf(window);
679 session_selector_.setTabText(index, session->name());
682 // Refresh window title if the affected session has focus
683 if (session == last_focused_session_.get())
684 setWindowTitle(session->name() + " - " + WindowTitle);
687 void MainWindow::on_capture_state_changed(QObject *obj)
689 Session *caller = qobject_cast<Session*>(obj);
691 // Ignore if caller is not the currently focused session
692 // unless there is only one session
693 if ((sessions_.size() > 1) && (caller != last_focused_session_.get()))
696 int state = caller->get_capture_state();
698 const QIcon *icons[] = {&icon_grey_, &icon_red_, &icon_green_};
699 run_stop_button_->setIcon(*icons[state]);
700 run_stop_button_->setText((state == pv::Session::Stopped) ?
701 tr("Run") : tr("Stop"));
704 void MainWindow::on_new_view(Session *session)
706 // We get a pointer and need a reference
707 for (shared_ptr<Session> s : sessions_)
708 if (s.get() == session)
709 add_view(session->name(), views::ViewTypeTrace, *s);
712 void MainWindow::on_view_close_clicked()
714 // Find the dock widget that contains the close button that was clicked
715 QObject *w = QObject::sender();
716 QDockWidget *dock = nullptr;
719 dock = qobject_cast<QDockWidget*>(w);
725 // Get the view contained in the dock widget
726 shared_ptr<views::ViewBase> view;
728 for (auto entry : view_docks_)
729 if (entry.first == dock)
732 // Deregister the view
733 for (shared_ptr<Session> session : sessions_) {
734 if (!session->has_view(view))
737 // Also destroy the entire session if its main view is closing...
738 if (view == session->main_view()) {
739 // ...but only if data is saved or the user confirms closing
740 if (session->data_saved() || (QMessageBox::question(this, tr("Confirmation"),
741 tr("This session contains unsaved data. Close it anyway?"),
742 QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes))
743 remove_session(session);
746 // All other views can be closed at any time as no data will be lost
751 void MainWindow::on_tab_changed(int index)
753 shared_ptr<Session> session = get_tab_session(index);
756 on_focused_session_changed(session);
759 void MainWindow::on_tab_close_requested(int index)
761 shared_ptr<Session> session = get_tab_session(index);
766 if (session->data_saved() || (QMessageBox::question(this, tr("Confirmation"),
767 tr("This session contains unsaved data. Close it anyway?"),
768 QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes))
769 remove_session(session);
772 void MainWindow::on_view_coloured_bg_shortcut()
774 GlobalSettings settings;
776 bool state = settings.value(GlobalSettings::Key_View_ColouredBG).toBool();
777 settings.setValue(GlobalSettings::Key_View_ColouredBG, !state);
780 void MainWindow::on_view_sticky_scrolling_shortcut()
782 GlobalSettings settings;
784 bool state = settings.value(GlobalSettings::Key_View_StickyScrolling).toBool();
785 settings.setValue(GlobalSettings::Key_View_StickyScrolling, !state);
788 void MainWindow::on_view_show_sampling_points_shortcut()
790 GlobalSettings settings;
792 bool state = settings.value(GlobalSettings::Key_View_ShowSamplingPoints).toBool();
793 settings.setValue(GlobalSettings::Key_View_ShowSamplingPoints, !state);
796 void MainWindow::on_view_show_analog_minor_grid_shortcut()
798 GlobalSettings settings;
800 bool state = settings.value(GlobalSettings::Key_View_ShowAnalogMinorGrid).toBool();
801 settings.setValue(GlobalSettings::Key_View_ShowAnalogMinorGrid, !state);
804 void MainWindow::on_settingViewColouredBg_changed(const QVariant new_value)
806 bool state = new_value.toBool();
808 for (auto entry : view_docks_) {
809 shared_ptr<views::ViewBase> viewbase = entry.second;
811 // Only trace views have this setting
812 views::trace::View* view =
813 qobject_cast<views::trace::View*>(viewbase.get());
815 view->enable_coloured_bg(state);
819 void MainWindow::on_settingViewShowSamplingPoints_changed(const QVariant new_value)
821 bool state = new_value.toBool();
823 for (auto entry : view_docks_) {
824 shared_ptr<views::ViewBase> viewbase = entry.second;
826 // Only trace views have this setting
827 views::trace::View* view =
828 qobject_cast<views::trace::View*>(viewbase.get());
830 view->enable_show_sampling_points(state);
834 void MainWindow::on_settingViewShowAnalogMinorGrid_changed(const QVariant new_value)
836 bool state = new_value.toBool();
838 for (auto entry : view_docks_) {
839 shared_ptr<views::ViewBase> viewbase = entry.second;
841 // Only trace views have this setting
842 views::trace::View* view =
843 qobject_cast<views::trace::View*>(viewbase.get());
845 view->enable_show_analog_minor_grid(state);
849 void MainWindow::on_close_current_tab()
851 int tab = session_selector_.currentIndex();
853 on_tab_close_requested(tab);