X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;ds=sidebyside;f=pv%2Fmainwindow.cpp;h=8aaa1635c737d376321b8ebcb9202572182cde98;hb=f30eb549fe91dde6a56f69c24f2f8169039c12a2;hp=e1073144f7f97ca931b4733b27eead0dad3afaa0;hpb=66e4eae9ce743016c3f6d4974bceb9b7fc0ae7d7;p=pulseview.git diff --git a/pv/mainwindow.cpp b/pv/mainwindow.cpp index e107314..8aaa163 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); } }