summaryrefslogtreecommitdiffstats
path: root/src/imports/shaders/plugins.qmltypes
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@digia.com>2012-09-18 16:04:55 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-29 11:18:33 +0100
commit37072a303aa9c03321db1e802624501024830eb0 (patch)
tree214ac8863b89ac26bf83be91ed7322735ec2ebc1 /src/imports/shaders/plugins.qmltypes
parent3a0cec6525be6bf843c597c19693785e2c893ee9 (diff)
QtQuick1: Add generated .qmltypes
Change-Id: I4970676013d374db528c693375dd9ba2a3108908 Reviewed-by: Fawzi Mohamed <fawzi.mohamed@digia.com>
Diffstat (limited to 'src/imports/shaders/plugins.qmltypes')
-rw-r--r--src/imports/shaders/plugins.qmltypes56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/imports/shaders/plugins.qmltypes b/src/imports/shaders/plugins.qmltypes
new file mode 100644
index 00000000..ceb7170f
--- /dev/null
+++ b/src/imports/shaders/plugins.qmltypes
@@ -0,0 +1,56 @@
+import QtQuick.tooling 1.1
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+//
+// This file was auto-generated with the command 'qml1plugindump Qt.labs.shaders 1.0'.
+
+Module {
+ Component {
+ name: "ShaderEffectItem"
+ defaultProperty: "data"
+ prototype: "QDeclarativeItem"
+ exports: ["ShaderEffectItem 1.0"]
+ Property { name: "fragmentShader"; type: "string" }
+ Property { name: "vertexShader"; type: "string" }
+ Property { name: "blending"; type: "bool" }
+ Property { name: "meshResolution"; type: "QSize" }
+ Signal { name: "activeChanged" }
+ }
+ Component {
+ name: "ShaderEffectSource"
+ defaultProperty: "data"
+ prototype: "QDeclarativeItem"
+ exports: ["ShaderEffectSource 1.0"]
+ Enum {
+ name: "WrapMode"
+ values: {
+ "ClampToEdge": 0,
+ "RepeatHorizontally": 1,
+ "RepeatVertically": 2,
+ "Repeat": 3
+ }
+ }
+ Enum {
+ name: "Format"
+ values: {
+ "Alpha": 6406,
+ "RGB": 6407,
+ "RGBA": 6408
+ }
+ }
+ Property { name: "sourceItem"; type: "QDeclarativeItem"; isPointer: true }
+ Property { name: "sourceRect"; type: "QRectF" }
+ Property { name: "textureSize"; type: "QSize" }
+ Property { name: "live"; type: "bool" }
+ Property { name: "hideSource"; type: "bool" }
+ Property { name: "wrapMode"; type: "WrapMode" }
+ Signal { name: "formatChanged" }
+ Signal { name: "activeChanged" }
+ Signal { name: "repaintRequired" }
+ Method { name: "markSceneGraphDirty" }
+ Method { name: "markSourceSizeDirty" }
+ Method { name: "markSourceItemDirty" }
+ Method { name: "grab" }
+ }
+}