Skip to content

Commit

Permalink
Update qmltypes
Browse files Browse the repository at this point in the history
  • Loading branch information
plfiorini committed Oct 29, 2017
1 parent 4f691d3 commit d222bd1
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 22 deletions.
45 changes: 23 additions & 22 deletions src/imports/controls/plugins.qmltypes
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Module {
"Fluid.Core 1.0",
"Fluid.Effects 1.0",
"Fluid.Layouts 1.0",
"Qt.labs.calendar 1.0",
"QtGraphicalEffects 1.0",
"QtQml 2.2",
"QtQuick 2.9",
Expand Down Expand Up @@ -101,27 +102,27 @@ Module {
}
Component {
prototype: "QQuickRectangle"
name: "QtQuick.Controls.Universal.impl/CheckIndicator 2.0"
exports: ["QtQuick.Controls.Universal.impl/CheckIndicator 2.0"]
name: "QtQuick.Controls.impl/CheckIndicator 2.0"
exports: ["QtQuick.Controls.impl/CheckIndicator 2.0"]
exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
Property { name: "control"; type: "QQuickItem"; isPointer: true }
Property { name: "partiallyChecked"; type: "bool"; isReadonly: true }
}
Component {
prototype: "QQuickRectangle"
name: "QtQuick.Controls.Material.impl/CheckIndicator 2.0"
exports: ["QtQuick.Controls.Material.impl/CheckIndicator 2.0"]
name: "QtQuick.Controls.Universal.impl/CheckIndicator 2.0"
exports: ["QtQuick.Controls.Universal.impl/CheckIndicator 2.0"]
exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
Property { name: "control"; type: "QQuickItem"; isPointer: true }
Property { name: "partiallyChecked"; type: "bool"; isReadonly: true }
}
Component {
prototype: "QQuickRectangle"
name: "QtQuick.Controls.impl/CheckIndicator 2.0"
exports: ["QtQuick.Controls.impl/CheckIndicator 2.0"]
name: "QtQuick.Controls.Material.impl/CheckIndicator 2.0"
exports: ["QtQuick.Controls.Material.impl/CheckIndicator 2.0"]
exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
Expand Down Expand Up @@ -328,30 +329,30 @@ Module {
}
Component {
prototype: "QQuickRectangle"
name: "QtQuick.Controls.impl/RadioIndicator 2.0"
exports: ["QtQuick.Controls.impl/RadioIndicator 2.0"]
name: "QtQuick.Controls.Universal.impl/RadioIndicator 2.0"
exports: ["QtQuick.Controls.Universal.impl/RadioIndicator 2.0"]
exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
Property { name: "control"; type: "QQuickItem"; isPointer: true }
Property { name: "control"; type: "QVariant" }
}
Component {
prototype: "QQuickRectangle"
name: "QtQuick.Controls.Material.impl/RadioIndicator 2.0"
exports: ["QtQuick.Controls.Material.impl/RadioIndicator 2.0"]
name: "QtQuick.Controls.impl/RadioIndicator 2.0"
exports: ["QtQuick.Controls.impl/RadioIndicator 2.0"]
exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
Property { name: "control"; type: "QQuickItem"; isPointer: true }
}
Component {
prototype: "QQuickRectangle"
name: "QtQuick.Controls.Universal.impl/RadioIndicator 2.0"
exports: ["QtQuick.Controls.Universal.impl/RadioIndicator 2.0"]
name: "QtQuick.Controls.Material.impl/RadioIndicator 2.0"
exports: ["QtQuick.Controls.Material.impl/RadioIndicator 2.0"]
exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
Property { name: "control"; type: "QVariant" }
Property { name: "control"; type: "QQuickItem"; isPointer: true }
}
Component {
prototype: "QQuickRangeSlider"
Expand Down Expand Up @@ -479,31 +480,31 @@ Module {
}
Component {
prototype: "QQuickItem"
name: "QtQuick.Controls.impl/SwitchIndicator 2.0"
exports: ["QtQuick.Controls.impl/SwitchIndicator 2.0"]
name: "QtQuick.Controls.Universal.impl/SwitchIndicator 2.0"
exports: ["QtQuick.Controls.Universal.impl/SwitchIndicator 2.0"]
exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
Property { name: "control"; type: "QQuickItem"; isPointer: true }
}
Component {
prototype: "QQuickItem"
name: "QtQuick.Controls.Material.impl/SwitchIndicator 2.0"
exports: ["QtQuick.Controls.Material.impl/SwitchIndicator 2.0"]
name: "QtQuick.Controls.impl/SwitchIndicator 2.0"
exports: ["QtQuick.Controls.impl/SwitchIndicator 2.0"]
exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
Property { name: "control"; type: "QQuickItem"; isPointer: true }
Property { name: "handle"; type: "QQuickRectangle"; isReadonly: true; isPointer: true }
}
Component {
prototype: "QQuickItem"
name: "QtQuick.Controls.Universal.impl/SwitchIndicator 2.0"
exports: ["QtQuick.Controls.Universal.impl/SwitchIndicator 2.0"]
name: "QtQuick.Controls.Material.impl/SwitchIndicator 2.0"
exports: ["QtQuick.Controls.Material.impl/SwitchIndicator 2.0"]
exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
Property { name: "control"; type: "QQuickItem"; isPointer: true }
Property { name: "handle"; type: "QQuickRectangle"; isReadonly: true; isPointer: true }
}
Component {
prototype: "QQuickTabBar"
Expand Down
16 changes: 16 additions & 0 deletions src/imports/core/plugins.qmltypes
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,22 @@ Module {
Parameter { name: "dirName"; type: "string" }
}
}
Component {
name: "WindowDecoration"
prototype: "QObject"
exports: ["Fluid.Core/WindowDecoration 1.0"]
exportMetaObjectRevisions: [0]
Enum {
name: "Theme"
values: {
"Light": 0,
"Dark": 1
}
}
Property { name: "window"; type: "QWindow"; isPointer: true }
Property { name: "theme"; type: "Theme" }
Property { name: "color"; type: "QColor" }
}
Component {
prototype: "QObject"
name: "Utils 1.0"
Expand Down

0 comments on commit d222bd1

Please sign in to comment.