mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-12-26 16:01:36 +08:00
Merge branch 'master' of https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System
This commit is contained in:
commit
3407945f19
@ -440,6 +440,7 @@ CDockManager::~CDockManager()
|
|||||||
void CDockManager::registerFloatingWidget(CFloatingDockContainer* FloatingWidget)
|
void CDockManager::registerFloatingWidget(CFloatingDockContainer* FloatingWidget)
|
||||||
{
|
{
|
||||||
d->FloatingWidgets.append(FloatingWidget);
|
d->FloatingWidgets.append(FloatingWidget);
|
||||||
|
emit floatingWidgetCreated(FloatingWidget);
|
||||||
ADS_PRINT("d->FloatingWidgets.count() " << d->FloatingWidgets.count());
|
ADS_PRINT("d->FloatingWidgets.count() " << d->FloatingWidgets.count());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -450,10 +450,17 @@ signals:
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* This signal is emitted if the dock manager finished opening a
|
* This signal is emitted if the dock manager finished opening a
|
||||||
* perspective
|
* perspective.
|
||||||
*/
|
*/
|
||||||
void perspectiveOpened(const QString& PerspectiveName);
|
void perspectiveOpened(const QString& PerspectiveName);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This signal is emitted, if a new floating widget has been created.
|
||||||
|
* An application can use this signal to e.g. subscribe to events of
|
||||||
|
* the newly created window.
|
||||||
|
*/
|
||||||
|
void floatingWidgetCreated(CFloatingDockContainer* FloatingWidget);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This signal is emitted, if a new DockArea has been created.
|
* This signal is emitted, if a new DockArea has been created.
|
||||||
* An application can use this signal to set custom icons or custom
|
* An application can use this signal to set custom icons or custom
|
||||||
|
Loading…
Reference in New Issue
Block a user