mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-01-13 00:30:25 +08:00
Merge branch 'master' of https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System
This commit is contained in:
commit
bd41ec1627
@ -265,7 +265,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
void closeOtherAreas(CDockAreaWidget* KeepOpenArea);
|
void closeOtherAreas(CDockAreaWidget* KeepOpenArea);
|
||||||
|
|
||||||
signals:
|
Q_SIGNALS:
|
||||||
/**
|
/**
|
||||||
* This signal is emitted if one or multiple dock areas has been added to
|
* This signal is emitted if one or multiple dock areas has been added to
|
||||||
* the internal list of dock areas.
|
* the internal list of dock areas.
|
||||||
|
@ -506,7 +506,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
void setSplitterSizes(CDockAreaWidget *ContainedArea, const QList<int>& sizes);
|
void setSplitterSizes(CDockAreaWidget *ContainedArea, const QList<int>& sizes);
|
||||||
|
|
||||||
public slots:
|
public Q_SLOTS:
|
||||||
/**
|
/**
|
||||||
* Opens the perspective with the given name.
|
* Opens the perspective with the given name.
|
||||||
*/
|
*/
|
||||||
@ -519,7 +519,7 @@ public slots:
|
|||||||
*/
|
*/
|
||||||
void setDockWidgetFocused(CDockWidget* DockWidget);
|
void setDockWidgetFocused(CDockWidget* DockWidget);
|
||||||
|
|
||||||
signals:
|
Q_SIGNALS:
|
||||||
/**
|
/**
|
||||||
* This signal is emitted if the list of perspectives changed
|
* This signal is emitted if the list of perspectives changed
|
||||||
*/
|
*/
|
||||||
|
@ -58,7 +58,7 @@ private:
|
|||||||
DockWidgetPrivate* d; ///< private data (pimpl)
|
DockWidgetPrivate* d; ///< private data (pimpl)
|
||||||
friend struct DockWidgetPrivate;
|
friend struct DockWidgetPrivate;
|
||||||
|
|
||||||
private slots:
|
private Q_SLOTS:
|
||||||
/**
|
/**
|
||||||
* Adjusts the toolbar icon sizes according to the floating state
|
* Adjusts the toolbar icon sizes according to the floating state
|
||||||
*/
|
*/
|
||||||
@ -484,7 +484,7 @@ public: // reimplements QFrame -----------------------------------------------
|
|||||||
*/
|
*/
|
||||||
virtual bool event(QEvent *e) override;
|
virtual bool event(QEvent *e) override;
|
||||||
|
|
||||||
public slots:
|
public Q_SLOTS:
|
||||||
/**
|
/**
|
||||||
* This property controls whether the dock widget is open or closed.
|
* This property controls whether the dock widget is open or closed.
|
||||||
* The toogleViewAction triggers this slot
|
* The toogleViewAction triggers this slot
|
||||||
@ -545,7 +545,7 @@ public slots:
|
|||||||
void showNormal();
|
void showNormal();
|
||||||
|
|
||||||
|
|
||||||
signals:
|
Q_SIGNALS:
|
||||||
/**
|
/**
|
||||||
* This signal is emitted if the dock widget is opened or closed
|
* This signal is emitted if the dock widget is opened or closed
|
||||||
*/
|
*/
|
||||||
|
@ -118,7 +118,7 @@ private:
|
|||||||
friend class CDockAreaWidget;
|
friend class CDockAreaWidget;
|
||||||
friend class CFloatingWidgetTitleBar;
|
friend class CFloatingWidgetTitleBar;
|
||||||
|
|
||||||
private slots:
|
private Q_SLOTS:
|
||||||
void onDockAreasAddedOrRemoved();
|
void onDockAreasAddedOrRemoved();
|
||||||
void onDockAreaCurrentChanged(int Index);
|
void onDockAreaCurrentChanged(int Index);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user