mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-04-01 02:42:39 +08:00
Add ability to set user defined toggle view action
This commit is contained in:
parent
2f1ef61f82
commit
85e592830c
@ -364,6 +364,20 @@ CDockWidget::~CDockWidget()
|
|||||||
delete d;
|
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)
|
void CDockWidget::setToggleViewActionChecked(bool Checked)
|
||||||
|
@ -409,6 +409,12 @@ public:
|
|||||||
*/
|
*/
|
||||||
QAction* toggleViewAction() const;
|
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.
|
* Configures the behavior of the toggle view action.
|
||||||
* \see eToggleViewActionMode for a detailed description
|
* \see eToggleViewActionMode for a detailed description
|
||||||
|
Loading…
Reference in New Issue
Block a user