aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/nativestyle/qmldir
diff options
context:
space:
mode:
authorRichard Moe Gustavsen <richardg@live.no>2020-01-20 15:43:39 +0100
committerRichard Moe Gustavsen <richard.gustavsen@qt.io>2020-05-25 11:25:38 +0000
commitbf42c8689b312383f4cf18ab6a11f90fb0a956bb (patch)
tree99548fe28f145485ef2652d3d40a0bfa0cc67200 /src/imports/nativestyle/qmldir
parent1f4f547a070356dda459a45b9f1c17fd4995d793 (diff)
Native style: copy QStyle from widgets, and implement ground work for creating native styles
This is the initial patch for adding native style support to controls2. The gist of the patch is that it copies QStyle from widgets (including the mac plugin style), remove all notions of widgets, tweak it as needed, and make it compile inside the qtquickcontrols2 repository as a separate QML plugin (QtQuick.NativeStyle). The "new" QStyle is then used to draw primitives onto nine-patch-images that can be rendered by the scene graph. Each such primitive/image will be wrapped by a QQuickStyleItem (which is a subclass of QQuickItem). E.g a button background will be implemented by QQuickStyleItemButton.cpp. This item can then be placed anywhere in the QML code to draw a native-looking button background. Controls2 has its own styling API, where a style consist of a set of QML files that extend template controls written in C++. To enable native styling, we simply follow the exact same approach; We create a style folder per platform alongside the other styles in controls2. Each style will contain a set of qml files for the controls (Button.qml, Slider.qml, etc), and inside each control, the style items will be used to draw the default delegates. Since it's likely that each such qml file will be implemented equal in all the desktop styles (but not always), the native style plugin contains a set of default controls (e.g DefaultButton.qml) that a platform style can choose to inherit from and extend as needed. Included is also an example called "DesktopGallery" that can be used to test and view the controls. Change-Id: I8b45aa7d493930f552d3ad2e3e3e7184129a9d6c Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'src/imports/nativestyle/qmldir')
-rw-r--r--src/imports/nativestyle/qmldir12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/imports/nativestyle/qmldir b/src/imports/nativestyle/qmldir
new file mode 100644
index 00000000..435e5e8d
--- /dev/null
+++ b/src/imports/nativestyle/qmldir
@@ -0,0 +1,12 @@
+module QtQuick.NativeStyle
+plugin qtquickcontrols2nativestyleplugin
+classname QtQuickControls2NativeStylePlugin
+depends QtQuick.Controls 2.5
+
+DefaultButton 6.0 controls/DefaultButton.qml
+DefaultCheckBox 6.0 controls/DefaultCheckBox.qml
+DefaultRadioButton 6.0 controls/DefaultRadioButton.qml
+DefaultSlider 6.0 controls/DefaultSlider.qml
+DefaultGroupBox 6.0 controls/DefaultGroupBox.qml
+DefaultSpinBox 6.0 controls/DefaultSpinBox.qml
+DefaultTextField 6.0 controls/DefaultTextField.qml