summaryrefslogtreecommitdiffstats
path: root/tools/uilib/container.qdoc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/uilib/container.qdoc')
-rw-r--r--tools/uilib/container.qdoc27
1 files changed, 27 insertions, 0 deletions
diff --git a/tools/uilib/container.qdoc b/tools/uilib/container.qdoc
index d9310515d3..f8e0670811 100644
--- a/tools/uilib/container.qdoc
+++ b/tools/uilib/container.qdoc
@@ -170,3 +170,30 @@
\sa addWidget(), insertWidget()
*/
+
+/*!
+ \fn bool QDesignerContainerExtension::canAddWidget() const
+
+ Returns whether a widget can be added. This determines whether
+ the context menu options to add or insert pages are enabled.
+
+ This should return false for containers that have a single, fixed
+ page, for example QScrollArea or QDockWidget.
+
+ \since 5.0
+ \sa addWidget(), canRemove()
+*/
+
+/*!
+ \fn bool QDesignerContainerExtension::canRemove(int index) const
+
+ Returns whether the widget at the given \a index can be removed.
+ This determines whether the context menu option to remove the current
+ page is enabled.
+
+ This should return false for containers that have a single, fixed
+ page, for example QScrollArea or QDockWidget.
+
+ \since 5.0
+ \sa remove(), canAddWidget()
+*/