From 85e592830cb0be6831c9be3abaff46d15fc4954b Mon Sep 17 00:00:00 2001 From: Harbinder Saggu Date: Wed, 20 Sep 2023 07:47:18 -0700 Subject: [PATCH] Add ability to set user defined toggle view action --- src/DockWidget.cpp | 14 ++++++++++++++ src/DockWidget.h | 6 ++++++ 2 files changed, 20 insertions(+) diff --git a/src/DockWidget.cpp b/src/DockWidget.cpp index 86c96d9..d799faf 100644 --- a/src/DockWidget.cpp +++ b/src/DockWidget.cpp @@ -364,6 +364,20 @@ CDockWidget::~CDockWidget() delete d; } +//============================================================================ +void CDockWidget::setToggleViewAction(QAction* action) +{ + if (!action) + { + return; + } + + d->ToggleViewAction->setParent(nullptr); + delete d->ToggleViewAction; + d->ToggleViewAction = action; + d->ToggleViewAction->setParent(this); + connect(d->ToggleViewAction, &QAction::triggered, this, &CDockWidget::toggleView); +} //============================================================================ void CDockWidget::setToggleViewActionChecked(bool Checked) diff --git a/src/DockWidget.h b/src/DockWidget.h index b27130e..b563c63 100644 --- a/src/DockWidget.h +++ b/src/DockWidget.h @@ -409,6 +409,12 @@ public: */ QAction* toggleViewAction() const; + /** + * Use provided action to be the default toggle view action for this dock widget. + * This dock widget now owns the action. + */ + void setToggleViewAction(QAction* action); + /** * Configures the behavior of the toggle view action. * \see eToggleViewActionMode for a detailed description