summaryrefslogtreecommitdiffstats
path: root/src/widgets/widgets/qdockwidget.cpp
diff options
context:
space:
mode:
authorAxel Spoerl <axel.spoerl@qt.io>2023-12-04 10:32:25 +0100
committerAxel Spoerl <axel.spoerl@qt.io>2023-12-14 18:05:22 +0000
commit92b5992a29e6a5463200157ab9934fae9a3ec8cb (patch)
treeef9c4d3d822f8dab252701278da8d4873e1f5d43 /src/widgets/widgets/qdockwidget.cpp
parentc697e19c167d1a7b80068ba8e348e33060d7c1d1 (diff)
QDockWidget: Clarify documentation of floating property
QDockWidget::isFloating() returns true for single, floating dock widgets. It returns false, if the dock widget is part of a floating tab (i.e. it is a QDockWidgetGroupWindow child). => Clarify documentation. Pick-to: 6.7 6.6 6.5 Change-Id: I3c5a4a86b89dcb001e7561de7dcc604bae0d9cee Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'src/widgets/widgets/qdockwidget.cpp')
-rw-r--r--src/widgets/widgets/qdockwidget.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/widgets/widgets/qdockwidget.cpp b/src/widgets/widgets/qdockwidget.cpp
index a9b65a2e1c..2699d43d7e 100644
--- a/src/widgets/widgets/qdockwidget.cpp
+++ b/src/widgets/widgets/qdockwidget.cpp
@@ -1434,9 +1434,12 @@ QDockWidget::DockWidgetFeatures QDockWidget::features() const
\property QDockWidget::floating
\brief whether the dock widget is floating
- A floating dock widget is presented to the user as an independent
- window "on top" of its parent QMainWindow, instead of being
- docked in the QMainWindow.
+ A floating dock widget is presented to the user as a single, independent
+ window "on top" of its parent QMainWindow, instead of being docked
+ either in the QMainWindow, or in a group of tabbed dock widgets.
+
+ Floating dock widgets can be individually positioned and resized, both
+ programmatically or by mouse interaction.
By default, this property is \c true.