From f30eb549fe91dde6a56f69c24f2f8169039c12a2 Mon Sep 17 00:00:00 2001 From: Soeren Apel Date: Tue, 17 Jan 2017 22:05:41 +0100 Subject: [PATCH] MainWindow: Improve view removal --- pv/mainwindow.cpp | 50 +++++++++++++++++++++++++++++------------------ pv/mainwindow.hpp | 2 ++ 2 files changed, 33 insertions(+), 19 deletions(-) diff --git a/pv/mainwindow.cpp b/pv/mainwindow.cpp index e1073144..8aaa1635 100644 --- a/pv/mainwindow.cpp +++ b/pv/mainwindow.cpp @@ -229,6 +229,34 @@ shared_ptr MainWindow::add_view(const QString &title, return nullptr; } +void MainWindow::remove_view(shared_ptr view) +{ + for (shared_ptr session : sessions_) { + if (!session->has_view(view)) + continue; + + // Find the dock the view is contained in and remove it + for (auto entry : view_docks_) + if (entry.second == view) { + // Remove the view from the session + session->deregister_view(view); + + // Remove the view from its parent; otherwise, Qt will + // 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); + + // Delete the view's dock widget and all widgets inside it + entry.first->deleteLater(); + + // Remove the dock widget from the list and stop iterating + view_docks_.erase(entry.first); + break; + } + } +} + shared_ptr MainWindow::add_session() { static int last_session_id = 1; @@ -266,24 +294,8 @@ void MainWindow::remove_session(shared_ptr session) { int h = new_session_button_->height(); - for (shared_ptr view : session->views()) { - // Find the dock the view is contained in and remove it - for (auto entry : view_docks_) - if (entry.second == view) { - // Remove the view from the session - session->deregister_view(view); - - // Remove the view from its parent; otherwise, Qt will - // 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 - entry.second->setParent(0); - - // Remove this entry from the container and stop iterating. - view_docks_.erase(entry.first); - break; - } - } + for (shared_ptr view : session->views()) + remove_view(view); QMainWindow *window = session_windows_.at(session); session_selector_.removeTab(session_selector_.indexOf(window)); @@ -655,7 +667,7 @@ void MainWindow::on_view_close_clicked() remove_session(session); break; } else - session->deregister_view(view); + remove_view(view); } } diff --git a/pv/mainwindow.hpp b/pv/mainwindow.hpp index f11ed5db..93945d18 100644 --- a/pv/mainwindow.hpp +++ b/pv/mainwindow.hpp @@ -79,6 +79,8 @@ public: std::shared_ptr add_view(const QString &title, views::ViewType type, Session &session); + void remove_view(std::shared_ptr view); + std::shared_ptr add_session(); void remove_session(std::shared_ptr session); -- 2.30.2