Skip to content

Commit

Permalink
Updated qmltypes.
Browse files Browse the repository at this point in the history
  • Loading branch information
dinusv committed Apr 6, 2018
1 parent 6b099a2 commit 2637b8c
Show file tree
Hide file tree
Showing 10 changed files with 501 additions and 337 deletions.
2 changes: 1 addition & 1 deletion lib/lveditqmljs/plugintypes/plugintypesfacade.cpp
Expand Up @@ -708,7 +708,7 @@ void PluginTypesFacade::extractPluginInfo(
"//\n"
"// This file was auto-generated by:\n"
"// '%1 %2'\n"
"\n").arg("Live CV").arg("1.2"));
"\n").arg("Live CV").arg(QCoreApplication::applicationVersion()));
qml.writeStartObject("Module");

QStringList quotedDependencies;
Expand Down
42 changes: 41 additions & 1 deletion plugins/editor/qml/plugins.qmltypes
Expand Up @@ -4,8 +4,48 @@ import QtQuick.tooling 1.2
// It is used for QML tooling purposes only.
//
// This file was auto-generated by:
// 'Live CV 1.2'
// 'Live CV 1.5.0'

Module {
dependencies: ["QtQuick 2.3"]
Component {
name: "lv::AbstractCodeSerializer"
prototype: "QObject"
exports: [
"editor/AbstractCodeSerializer 1.0",
"editor/QmlObjectCodeSerializer 1.0"
]
exportMetaObjectRevisions: [0, 0]
}
Component {
name: "lv::CodeConverter"
prototype: "QObject"
exports: ["editor/CodeConverter 1.0"]
exportMetaObjectRevisions: [0]
Property { name: "serialize"; type: "AbstractCodeSerializer"; isPointer: true }
Property { name: "type"; type: "QString" }
Property { name: "typeObject"; type: "QString" }
}
Component {
name: "lv::LivePalette"
prototype: "lv::CodeConverter"
exports: ["editor/LivePalette 1.0"]
exportMetaObjectRevisions: [0]
Property { name: "item"; type: "QQuickItem"; isPointer: true }
Property { name: "value"; type: "QVariant" }
Signal {
name: "init"
Parameter { name: "value"; type: "QVariant" }
}
Signal {
name: "codeChanged"
Parameter { name: "value"; type: "QVariant" }
}
}
Component {
name: "lv::NativeValueCodeSerializer"
prototype: "lv::AbstractCodeSerializer"
exports: ["editor/NativeValueCodeSerializer 1.0"]
exportMetaObjectRevisions: [0]
}
}
320 changes: 0 additions & 320 deletions plugins/lcvcore/plugins.qmltypes

This file was deleted.

0 comments on commit 2637b8c

Please sign in to comment.