summaryrefslogtreecommitdiff
path: root/src/private/Control.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/private/Control.qml')
-rw-r--r--src/private/Control.qml20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/private/Control.qml b/src/private/Control.qml
index 6c963d22..d518adb2 100644
--- a/src/private/Control.qml
+++ b/src/private/Control.qml
@@ -43,30 +43,34 @@ import QtQuick.Controls.Styles 1.0
/*!
\qmltype Control
\internal
+ \qmlabstract
\inqmlmodule QtQuick.Controls.Private 1.0
*/
FocusScope {
id: root
+ /*! \qmlproperty Component Control::style
+
+ The style Component for this control.
+ \sa {Qt Quick Controls Styles QML Types}
+
+ */
property Component style
- /* \internal */
- property Style __style: styleLoader.item
+ /*! \internal */
+ property QtObject __style: styleLoader.item
- /* \internal */
+ /*! \internal */
property Item __panel: panelLoader.item
- /* \internal */
+ /*! \internal */
property var styleHints: []
- /* \internal */
implicitWidth: __panel ? __panel.implicitWidth: 0
-
- /* \internal */
implicitHeight: __panel ? __panel.implicitHeight: 0
-
activeFocusOnTab: false
+ /*! \internal */
property alias __controlState: styleLoader.controlState
Loader {