X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fmainwindow.cpp;h=8aaa1635c737d376321b8ebcb9202572182cde98;hb=f30eb549fe91dde6a56f69c24f2f8169039c12a2;hp=d65537483c8f1a19bd91e6ccd93dee7014b80bfc;hpb=f420385094dc7392e6bcec494d800f1d4b34f082;p=pulseview.git diff --git a/pv/mainwindow.cpp b/pv/mainwindow.cpp index d655374..8aaa163 100644 --- a/pv/mainwindow.cpp +++ b/pv/mainwindow.cpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #include @@ -230,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; @@ -267,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)); @@ -656,7 +667,7 @@ void MainWindow::on_view_close_clicked() remove_session(session); break; } else - session->deregister_view(view); + remove_view(view); } }