Skip to content

Commit 72ee4a5

Browse files
author
Uwe Kindler
committed
Improved documentation, made a lot of member functions protected to make it clearer which functions the user is allowed to use, the CDockWidget constructor now sets the objectName() to the given title, so there is no need to call setObjectName() explicitely if the title is static and unique
1 parent 0b963d1 commit 72ee4a5

8 files changed

+157
-106
lines changed

demo/MainWindow.cpp

+1-3
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ static ads::CDockWidget* createLongTextLabelDockWidget(QMenu* ViewMenu)
8383

8484
ads::CDockWidget* DockWidget = new ads::CDockWidget(QString("Label %1").arg(LabelCount++));
8585
DockWidget->setWidget(l);
86-
DockWidget->setObjectName(DockWidget->windowTitle());
8786
ViewMenu->addAction(DockWidget->toggleViewAction());
8887
return DockWidget;
8988
}
@@ -96,7 +95,6 @@ static ads::CDockWidget* createCalendarDockWidget(QMenu* ViewMenu)
9695
QCalendarWidget* w = new QCalendarWidget();
9796
ads::CDockWidget* DockWidget = new ads::CDockWidget(QString("Calendar %1").arg(CalendarCount++));
9897
DockWidget->setWidget(w);
99-
DockWidget->setObjectName(DockWidget->windowTitle());
10098
DockWidget->setToggleViewActionMode(ads::CDockWidget::ActionModeShow);
10199
ViewMenu->addAction(DockWidget->toggleViewAction());
102100
return DockWidget;
@@ -114,7 +112,6 @@ static ads::CDockWidget* createFileSystemTreeDockWidget(QMenu* ViewMenu)
114112
w->setModel(m);
115113
ads::CDockWidget* DockWidget = new ads::CDockWidget(QString("Filesystem %1").arg(FileSystemCount++));
116114
DockWidget->setWidget(w);
117-
DockWidget->setObjectName(DockWidget->windowTitle());
118115
ViewMenu->addAction(DockWidget->toggleViewAction());
119116
return DockWidget;
120117
}
@@ -178,6 +175,7 @@ void MainWindowPrivate::createContent()
178175
DockManager->addDockWidget(ads::LeftDockWidgetArea, DockWidget);
179176
DockManager->addDockWidget(ads::LeftDockWidgetArea, createLongTextLabelDockWidget(ViewMenu));
180177
DockManager->addDockWidget(ads::BottomDockWidgetArea, createFileSystemTreeDockWidget(ViewMenu));
178+
181179
auto FileSystemWidget = createFileSystemTreeDockWidget(ViewMenu);
182180
FileSystemWidget->setFeature(ads::CDockWidget::DockWidgetMovable, false);
183181
auto TopDockArea = DockManager->addDockWidget(ads::TopDockWidgetArea, FileSystemWidget);

src/DockAreaWidget.h

+38-32
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ namespace ads
4141
struct DockAreaWidgetPrivate;
4242
class CDockManager;
4343
class CDockContainerWidget;
44+
struct DockContainerWidgetPrivate;
4445
class CDockWidget;
4546

4647

@@ -55,12 +56,48 @@ class ADS_EXPORT CDockAreaWidget : public QFrame
5556
private:
5657
DockAreaWidgetPrivate* d; ///< private data (pimpl)
5758
friend struct DockAreaWidgetPrivate;
59+
friend class CDockContainerWidget;
60+
friend class DockContainerWidgetPrivate;
61+
friend class CDockWidgetTab;
5862

5963
private slots:
6064
void onDockWidgetTitleClicked();
6165
void onTabsMenuActionTriggered(QAction* Action);
6266
void onCloseButtonClicked();
6367

68+
protected:
69+
/**
70+
* Inserts a dock widget into dock area.
71+
* All dockwidgets in the dock area tabified in a stacked layout with tabs.
72+
* The index indicates the index of the new dockwidget in the tabbar and
73+
* in the stacked layout. If the Activate parameter is true, the new
74+
* DockWidget will be the active one in the stacked layout
75+
*/
76+
void insertDockWidget(int index, CDockWidget* DockWidget, bool Activate = true);
77+
78+
/**
79+
* Add a new dock widget to dock area.
80+
* All dockwidgets in the dock area tabified in a stacked layout with tabs
81+
*/
82+
void addDockWidget(CDockWidget* DockWidget);
83+
84+
/**
85+
* Removes the given dock widget from the dock area
86+
*/
87+
void removeDockWidget(CDockWidget* DockWidget);
88+
89+
/**
90+
* Returns the index of contents of the title widget that is located at
91+
* mouse position pos
92+
*/
93+
int indexOfContentByTitlePos(const QPoint& pos, QWidget* exclude = nullptr) const;
94+
95+
/**
96+
* Reorder the index position of DockWidget at fromIndx to toIndex.
97+
*/
98+
void reorderDockWidget(int fromIndex, int toIndex);
99+
100+
64101
public:
65102
/**
66103
* Default Constructor
@@ -83,26 +120,6 @@ private slots:
83120
*/
84121
CDockContainerWidget* dockContainer() const;
85122

86-
/**
87-
* Inserts a dock widget into dock area.
88-
* All dockwidgets in the dock area tabified in a stacked layout with tabs.
89-
* The index indicates the index of the new dockwidget in the tabbar and
90-
* in the stacked layout. If the Activate parameter is true, the new
91-
* DockWidget will be the active one in the stacked layout
92-
*/
93-
void insertDockWidget(int index, CDockWidget* DockWidget, bool Activate = true);
94-
95-
/**
96-
* Add a new dock widget to dock area.
97-
* All dockwidgets in the dock area tabified in a stacked layout with tabs
98-
*/
99-
void addDockWidget(CDockWidget* DockWidget);
100-
101-
/**
102-
* Removes the given dock widget from the dock area
103-
*/
104-
void removeDockWidget(CDockWidget* DockWidget);
105-
106123
/**
107124
* Returns the rectangle of the title area
108125
*/
@@ -118,12 +135,6 @@ private slots:
118135
*/
119136
int tabIndex(CDockWidget* DockWidget);
120137

121-
/**
122-
* Returns the index of contents of the title widget that is located at
123-
* mouse position pos
124-
*/
125-
int indexOfContentByTitlePos(const QPoint& pos, QWidget* exclude = nullptr) const;
126-
127138
/**
128139
* Returns a list of all dock widgets in this dock area.
129140
* This list contains open and closed dock widgets.
@@ -145,11 +156,6 @@ private slots:
145156
*/
146157
CDockWidget* dockWidget(int Index) const;
147158

148-
/**
149-
* Reorder the index position of DockWidget at fromIndx to toIndex.
150-
*/
151-
void reorderDockWidget(int fromIndex, int toIndex);
152-
153159
/**
154160
* Returns the index of the current active dock widget
155161
*/
@@ -161,7 +167,7 @@ private slots:
161167
CDockWidget* currentDockWidget() const;
162168

163169
/**
164-
* Shows the tab with tghe given dock widget
170+
* Shows the tab with the given dock widget
165171
*/
166172
void setCurrentDockWidget(CDockWidget* DockWidget);
167173

src/DockContainerWidget.h

+35-28
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ struct DockContainerWidgetPrivate;
4444
class CDockAreaWidget;
4545
class CDockWidget;
4646
class CDockManager;
47+
struct DockManagerPrivate;
4748
class CFloatingDockContainer;
49+
struct FloatingDockContainerPrivate;
4850

4951
/**
5052
* Container that manages a number of dock areas with single dock widgets
@@ -56,6 +58,11 @@ class ADS_EXPORT CDockContainerWidget : public QFrame
5658
private:
5759
DockContainerWidgetPrivate* d; ///< private data (pimpl)
5860
friend struct DockContainerWidgetPrivate;
61+
friend class CDockManager;
62+
friend struct DockManagerPrivate;
63+
friend class CDockAreaWidget;
64+
friend class CFloatingDockContainer;
65+
friend struct FloatingDockContainerPrivate;
5966

6067
protected:
6168
/**
@@ -68,6 +75,34 @@ class ADS_EXPORT CDockContainerWidget : public QFrame
6875
*/
6976
QSplitter* rootSplitter() const;
7077

78+
/**
79+
* Drop floating widget into the container
80+
*/
81+
void dropFloatingWidget(CFloatingDockContainer* FloatingWidget, const QPoint& TargetPos);
82+
83+
/**
84+
* Adds the given dock area to this container widget
85+
*/
86+
void addDockArea(CDockAreaWidget* DockAreaWidget, DockWidgetArea area = CenterDockWidgetArea);
87+
88+
/**
89+
* Removes the given dock area from this container
90+
*/
91+
void removeDockArea(CDockAreaWidget* area);
92+
93+
/**
94+
* Saves the state into the given stream
95+
*/
96+
void saveState(QXmlStreamWriter& Stream) const;
97+
98+
/**
99+
* Restores the state from given stream.
100+
* If Testing is true, the function only parses the data from the given
101+
* stream but does not restore anything. You can use this check for
102+
* faulty files before you start restoring the state
103+
*/
104+
bool restoreState(QXmlStreamReader& Stream, bool Testing);
105+
71106
public:
72107
/**
73108
* Default Constructor
@@ -79,11 +114,6 @@ class ADS_EXPORT CDockContainerWidget : public QFrame
79114
*/
80115
virtual ~CDockContainerWidget();
81116

82-
/**
83-
* Drop floating widget into the container
84-
*/
85-
void dropFloatingWidget(CFloatingDockContainer* FloatingWidget, const QPoint& TargetPos);
86-
87117
/**
88118
* Adds dockwidget into the given area.
89119
* If DockAreaWidget is not null, then the area parameter indicates the area
@@ -94,16 +124,6 @@ class ADS_EXPORT CDockContainerWidget : public QFrame
94124
CDockAreaWidget* addDockWidget(DockWidgetArea area, CDockWidget* Dockwidget,
95125
CDockAreaWidget* DockAreaWidget = nullptr);
96126

97-
/**
98-
* Adds the given dock area to this container widget
99-
*/
100-
void addDockArea(CDockAreaWidget* DockAreaWidget, DockWidgetArea area = CenterDockWidgetArea);
101-
102-
/**
103-
* Removes the given dock area from this container
104-
*/
105-
void removeDockArea(CDockAreaWidget* area);
106-
107127
/**
108128
* Returns the current zOrderIndex
109129
*/
@@ -148,19 +168,6 @@ class ADS_EXPORT CDockContainerWidget : public QFrame
148168
*/
149169
bool isFloating() const;
150170

151-
/**
152-
* Saves the state into the given stream
153-
*/
154-
void saveState(QXmlStreamWriter& Stream) const;
155-
156-
/**
157-
* Restores the state from given stream.
158-
* If Testing is true, the function only parses the data from the given
159-
* stream but does not restore anything. You can use this check for
160-
* faulty files before you start restoring the state
161-
*/
162-
bool restoreState(QXmlStreamReader& Stream, bool Testing);
163-
164171
/**
165172
* Dumps the layout for debugging purposes
166173
*/

src/DockManager.h

+32-16
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,13 @@ namespace ads
4040
{
4141
struct DockManagerPrivate;
4242
class CFloatingDockContainer;
43+
struct FloatingDockContainerPrivate;
4344
class CDockContainerWidget;
4445
class CDockOverlay;
46+
class CDockAreaTabBar;
47+
class CDockWidgetTab;
48+
struct DockWidgetTabPrivate;
49+
struct DockAreaWidgetPrivate;
4550

4651
/**
4752
* The central dock manager that maintains the complete docking system
@@ -52,23 +57,15 @@ class ADS_EXPORT CDockManager : public CDockContainerWidget
5257
private:
5358
DockManagerPrivate* d; ///< private data (pimpl)
5459
friend struct DockManagerPrivate;
60+
friend class CFloatingDockContainer;
61+
friend struct FloatingDockContainerPrivate;
62+
friend class CDockContainerWidget;
63+
friend class CDockAreaTabBar;
64+
friend class CDockWidgetTab;
65+
friend struct DockAreaWidgetPrivate;
66+
friend struct DockWidgetTabPrivate;
5567

5668
protected:
57-
58-
59-
public:
60-
/**
61-
* Default Constructor.
62-
* If the given parent is a QMainWindow, the dock manager sets itself as the
63-
* central widget
64-
*/
65-
CDockManager(QWidget* parent = 0);
66-
67-
/**
68-
* Virtual Destructor
69-
*/
70-
virtual ~CDockManager();
71-
7269
/**
7370
* Registers the given floating widget in the internal list of
7471
* floating widgets
@@ -102,11 +99,30 @@ class ADS_EXPORT CDockManager : public CDockContainerWidget
10299
*/
103100
CDockOverlay* dockAreaOverlay() const;
104101

102+
public:
103+
/**
104+
* Default Constructor.
105+
* If the given parent is a QMainWindow, the dock manager sets itself as the
106+
* central widget
107+
*/
108+
CDockManager(QWidget* parent = 0);
109+
110+
/**
111+
* Virtual Destructor
112+
*/
113+
virtual ~CDockManager();
114+
105115
/**
106116
* Adds dockwidget into the given area.
107117
* If DockAreaWidget is not null, then the area parameter indicates the area
108118
* into the DockAreaWidget. If DockAreaWidget is null, the Dockwidget will
109-
* be dropped into the container.
119+
* be dropped into the container. If you would like to add a dock widget
120+
* tabified, then you need to add it to an existing dock area object
121+
* into the CenterDockWidgetArea. The following code shows this:
122+
* \code
123+
* DockManager->addDockWidget(ads::CenterDockWidgetArea, NewDockWidget,
124+
* ExisitingDockArea);
125+
* \endcode
110126
* \return Returns the dock area widget that contains the new DockWidget
111127
*/
112128
CDockAreaWidget* addDockWidget(DockWidgetArea area, CDockWidget* Dockwidget,

src/DockWidget.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,7 @@ CDockWidget::CDockWidget(const QString &title, QWidget *parent) :
211211
d->Layout->setSpacing(0);
212212
setLayout(d->Layout);
213213
setWindowTitle(title);
214+
setObjectName(title);
214215

215216
d->TitleWidget = new CDockWidgetTab(this);
216217
d->ToggleViewAction = new QAction(title);

src/DockWidget.h

+17-6
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,16 @@ class ADS_EXPORT CDockWidget : public QFrame
132132
};
133133

134134
/**
135-
* Default Constructor
135+
* This constructor creates a dock widget with the given title.
136+
* The title is the text that is shown in the window title when the dock
137+
* widget is floating and it is the title that is shown in the titlebar
138+
* or the tab of this dock widget if it is tabified.
139+
* The object name of the dock widget is also set to the title. The
140+
* object name is required by the dock manager to properly save and restore
141+
* the state of the dock widget. That means, the title needs to be unique.
142+
* If your title is not unique or if you would like to change the title
143+
* during runtime, you need to set a unique object name explicitely
144+
* by calling setObjectName() after construction.
136145
*/
137146
CDockWidget(const QString &title, QWidget* parent = 0);
138147

@@ -216,11 +225,6 @@ class ADS_EXPORT CDockWidget : public QFrame
216225
*/
217226
void setToggleViewActionMode(eToggleViewActionMode Mode);
218227

219-
/**
220-
* Emits titleChanged signal if title change event occurs
221-
*/
222-
virtual bool event(QEvent *e) override;
223-
224228
/**
225229
* Sets the dock widget icon that is shown in tabs and in toggle view
226230
* actions
@@ -232,6 +236,13 @@ class ADS_EXPORT CDockWidget : public QFrame
232236
*/
233237
QIcon icon() const;
234238

239+
240+
public: // reimplements QFrame -----------------------------------------------
241+
/**
242+
* Emits titleChanged signal if title change event occurs
243+
*/
244+
virtual bool event(QEvent *e) override;
245+
235246
public slots:
236247
/**
237248
* This property controls whether the dock widget is open or closed.

src/DockWidgetTab.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ void DockWidgetTabPrivate::createLayout()
138138
l->addWidget(IconLabel, Qt::AlignVCenter);
139139

140140
TitleLabel = new QLabel();
141+
TitleLabel->setObjectName("dockWidgetTabLabel");
141142
l->addWidget(TitleLabel, 1);
142143

143144
IconLabel->setVisible(false);

0 commit comments

Comments
 (0)