X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fmainwindow.cpp;h=eaaea089964c9ba32c245e6d8641c6c592997a02;hp=8b650e1ca00067b0d406b6387a3eab657a2dfae4;hb=b14db788ee3483eed195c1e73a1ab85ea8c41e47;hpb=bf9f12687c8d43422455cbdc27ec1cc5d4305149 diff --git a/pv/mainwindow.cpp b/pv/mainwindow.cpp index 8b650e1c..eaaea089 100644 --- a/pv/mainwindow.cpp +++ b/pv/mainwindow.cpp @@ -17,14 +17,15 @@ * along with this program; if not, see . */ -#include - #ifdef ENABLE_DECODE #include #endif +#include #include #include +#include +#include #include #include @@ -48,8 +49,6 @@ #include "view/view.hpp" #include "views/trace/standardbar.hpp" -#include -#include #include using std::dynamic_pointer_cast; @@ -87,6 +86,9 @@ MainWindow::MainWindow(DeviceManager &device_manager, qRegisterMetaType("util::Timestamp"); qRegisterMetaType("uint64_t"); + GlobalSettings::register_change_handler(GlobalSettings::Key_View_ColouredBG, + bind(&MainWindow::on_settingViewColouredBg_changed, this, _1)); + setup_ui(); restore_ui_settings(); @@ -135,7 +137,7 @@ shared_ptr MainWindow::get_active_view() const // ...otherwise find the dock widget the widget with focus is contained in QObject *w = QApplication::focusWidget(); - QDockWidget *dock = 0; + QDockWidget *dock = nullptr; while (w) { dock = qobject_cast(w); @@ -155,6 +157,9 @@ shared_ptr MainWindow::get_active_view() const shared_ptr MainWindow::add_view(const QString &title, views::ViewType type, Session &session) { + GlobalSettings settings; + shared_ptr v; + QMainWindow *main_window = nullptr; for (auto entry : session_windows_) if (entry.first.get() == &session) @@ -162,72 +167,78 @@ shared_ptr MainWindow::add_view(const QString &title, assert(main_window); - if (type == views::ViewTypeTrace) { - QDockWidget* dock = new QDockWidget(title, main_window); - dock->setObjectName(title); - main_window->addDockWidget(Qt::TopDockWidgetArea, dock); - - // Insert a QMainWindow into the dock widget to allow for a tool bar - QMainWindow *dock_main = new QMainWindow(dock); - dock_main->setWindowFlags(Qt::Widget); // Remove Qt::Window flag - - shared_ptr v = - make_shared(session, dock_main); - view_docks_[dock] = v; - session.register_view(v); + shared_ptr main_bar = session.main_bar(); - dock_main->setCentralWidget(v.get()); - dock->setWidget(dock_main); + QDockWidget* dock = new QDockWidget(title, main_window); + dock->setObjectName(title); + main_window->addDockWidget(Qt::TopDockWidgetArea, dock); - dock->setFeatures(QDockWidget::DockWidgetMovable | - QDockWidget::DockWidgetFloatable | QDockWidget::DockWidgetClosable); + // Insert a QMainWindow into the dock widget to allow for a tool bar + QMainWindow *dock_main = new QMainWindow(dock); + dock_main->setWindowFlags(Qt::Widget); // Remove Qt::Window flag - QAbstractButton *close_btn = - dock->findChildren - ("qt_dockwidget_closebutton").front(); + if (type == views::ViewTypeTrace) + // This view will be the main view if there's no main bar yet + v = make_shared(session, + (main_bar ? false : true), dock_main); - connect(close_btn, SIGNAL(clicked(bool)), - this, SLOT(on_view_close_clicked())); + if (!v) + return nullptr; - if (type == views::ViewTypeTrace) { - connect(&session, SIGNAL(trigger_event(util::Timestamp)), - qobject_cast(v.get()), - SLOT(trigger_event(util::Timestamp))); + view_docks_[dock] = v; + session.register_view(v); - v->enable_sticky_scrolling(true); - v->enable_coloured_bg(true); + dock_main->setCentralWidget(v.get()); + dock->setWidget(dock_main); - shared_ptr main_bar = session.main_bar(); - if (!main_bar) { - /* Initial view, create the main bar */ - main_bar = make_shared(session, this, v.get()); - dock_main->addToolBar(main_bar.get()); - session.set_main_bar(main_bar); + dock->setFeatures(QDockWidget::DockWidgetMovable | + QDockWidget::DockWidgetFloatable | QDockWidget::DockWidgetClosable); - connect(main_bar.get(), SIGNAL(new_view(Session*)), - this, SLOT(on_new_view(Session*))); + QAbstractButton *close_btn = + dock->findChildren + ("qt_dockwidget_closebutton").front(); - main_bar->action_view_show_cursors()->setChecked(v->cursors_shown()); + connect(close_btn, SIGNAL(clicked(bool)), + this, SLOT(on_view_close_clicked())); - /* For the main view we need to prevent the dock widget from - * closing itself when its close button is clicked. This is - * so we can confirm with the user first. Regular views don't - * need this */ - close_btn->disconnect(SIGNAL(clicked()), dock, SLOT(close())); - } else { - /* Additional view, create a standard bar */ - pv::views::trace::StandardBar *standard_bar = - new pv::views::trace::StandardBar(session, this, v.get()); - dock_main->addToolBar(standard_bar); + connect(&session, SIGNAL(trigger_event(util::Timestamp)), + qobject_cast(v.get()), + SLOT(trigger_event(util::Timestamp))); - standard_bar->action_view_show_cursors()->setChecked(v->cursors_shown()); - } + if (type == views::ViewTypeTrace) { + views::TraceView::View *tv = + qobject_cast(v.get()); + + tv->enable_sticky_scrolling(true); + tv->enable_coloured_bg(settings.value(GlobalSettings::Key_View_ColouredBG).toBool()); + + if (!main_bar) { + /* Initial view, create the main bar */ + main_bar = make_shared(session, this, tv); + dock_main->addToolBar(main_bar.get()); + session.set_main_bar(main_bar); + + connect(main_bar.get(), SIGNAL(new_view(Session*)), + this, SLOT(on_new_view(Session*))); + + main_bar->action_view_show_cursors()->setChecked(tv->cursors_shown()); + + /* For the main view we need to prevent the dock widget from + * closing itself when its close button is clicked. This is + * so we can confirm with the user first. Regular views don't + * need this */ + close_btn->disconnect(SIGNAL(clicked()), dock, SLOT(close())); + } else { + /* Additional view, create a standard bar */ + pv::views::trace::StandardBar *standard_bar = + new pv::views::trace::StandardBar(session, this, tv); + dock_main->addToolBar(standard_bar); + + standard_bar->action_view_show_cursors()->setChecked(tv->cursors_shown()); } - - return v; } - return nullptr; + return v; } void MainWindow::remove_view(shared_ptr view) @@ -246,7 +257,7 @@ void MainWindow::remove_view(shared_ptr view) // call deleteLater() on it, which causes a double free // since the shared_ptr in view_docks_ doesn't know // that Qt keeps a pointer to the view around - view->setParent(0); + view->setParent(nullptr); // Delete the view's dock widget and all widgets inside it entry.first->deleteLater(); @@ -661,7 +672,7 @@ void MainWindow::on_view_close_clicked() { // Find the dock widget that contains the close button that was clicked QObject *w = QObject::sender(); - QDockWidget *dock = 0; + QDockWidget *dock = nullptr; while (w) { dock = qobject_cast(w); @@ -727,11 +738,25 @@ void MainWindow::on_view_sticky_scrolling_shortcut() void MainWindow::on_view_coloured_bg_shortcut() { - shared_ptr viewbase = get_active_view(); - views::TraceView::View* view = - qobject_cast(viewbase.get()); - if (view) - view->toggle_coloured_bg(); + GlobalSettings settings; + + bool state = settings.value(GlobalSettings::Key_View_ColouredBG).toBool(); + settings.setValue(GlobalSettings::Key_View_ColouredBG, !state); +} + +void MainWindow::on_settingViewColouredBg_changed(const QVariant new_value) +{ + bool state = new_value.toBool(); + + for (auto entry : view_docks_) { + shared_ptr viewbase = entry.second; + + // Only trace views have this setting + views::TraceView::View* view = + qobject_cast(viewbase.get()); + if (view) + view->enable_coloured_bg(state); + } } void MainWindow::on_actionAbout_triggered()