aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/calendar
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-06-18 16:19:56 +0200
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-06-18 14:45:54 +0000
commitf8e706403bc0d0c2ba2007f9edd01b60d9ef8dc6 (patch)
tree2ebef840d2b424e4c0b08cd9beb58b6c25f278a0 /src/imports/calendar
parentc803830c02fb573582cd848185460ba65b4529e5 (diff)
Add plugins.qmltypes
Change-Id: Ic8f29953a7198664ec4be051abc2fc42b92a4435 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/imports/calendar')
-rw-r--r--src/imports/calendar/plugins.qmltypes147
1 files changed, 147 insertions, 0 deletions
diff --git a/src/imports/calendar/plugins.qmltypes b/src/imports/calendar/plugins.qmltypes
new file mode 100644
index 00000000..99e31fba
--- /dev/null
+++ b/src/imports/calendar/plugins.qmltypes
@@ -0,0 +1,147 @@
+import QtQuick.tooling 1.2
+
+// This file describes the plugin-supplied types contained in the library.
+// It is used for QML tooling purposes only.
+//
+// This file was auto-generated by:
+// 'qmlplugindump -nonrelocatable QtQuick.Calendar 2.0'
+
+Module {
+ dependencies: [
+ "QtQuick 2.6",
+ "QtQuick.Controls 2.0",
+ "QtQuick.Window 2.2"
+ ]
+ Component {
+ name: "QQuickCalendarModel"
+ prototype: "QAbstractListModel"
+ exports: ["QtQuick.Calendar/CalendarModel 2.0"]
+ exportMetaObjectRevisions: [0]
+ Property { name: "from"; type: "QDate" }
+ Property { name: "to"; type: "QDate" }
+ Property { name: "count"; type: "int"; isReadonly: true }
+ Method {
+ name: "monthAt"
+ type: "int"
+ Parameter { name: "index"; type: "int" }
+ }
+ Method {
+ name: "yearAt"
+ type: "int"
+ Parameter { name: "index"; type: "int" }
+ }
+ Method {
+ name: "indexOf"
+ type: "int"
+ Parameter { name: "date"; type: "QDate" }
+ }
+ Method {
+ name: "indexOf"
+ type: "int"
+ Parameter { name: "year"; type: "int" }
+ Parameter { name: "month"; type: "int" }
+ }
+ }
+ Component {
+ name: "QQuickCalendarView"
+ defaultProperty: "data"
+ prototype: "QQuickControl"
+ exports: ["QtQuick.Calendar/AbstractCalendarView 2.0"]
+ exportMetaObjectRevisions: [0]
+ Property { name: "month"; type: "int" }
+ Property { name: "year"; type: "int" }
+ Property { name: "locale"; type: "QLocale" }
+ Property { name: "source"; type: "QVariant" }
+ Property { name: "title"; type: "string" }
+ Signal {
+ name: "pressed"
+ Parameter { name: "date"; type: "QDate" }
+ }
+ Signal {
+ name: "released"
+ Parameter { name: "date"; type: "QDate" }
+ }
+ Signal {
+ name: "clicked"
+ Parameter { name: "date"; type: "QDate" }
+ }
+ Signal {
+ name: "pressAndHold"
+ Parameter { name: "date"; type: "QDate" }
+ }
+ }
+ Component {
+ name: "QQuickDayOfWeekModel"
+ prototype: "QAbstractListModel"
+ exports: ["QtQuick.Calendar/DayOfWeekModel 2.0"]
+ exportMetaObjectRevisions: [0]
+ Property { name: "locale"; type: "QLocale" }
+ Property { name: "count"; type: "int"; isReadonly: true }
+ Method {
+ name: "dayAt"
+ type: "int"
+ Parameter { name: "index"; type: "int" }
+ }
+ }
+ Component {
+ name: "QQuickDayOfWeekRow"
+ defaultProperty: "data"
+ prototype: "QQuickControl"
+ exports: ["QtQuick.Calendar/AbstractDayOfWeekRow 2.0"]
+ exportMetaObjectRevisions: [0]
+ Property { name: "locale"; type: "QLocale" }
+ Property { name: "source"; type: "QVariant" }
+ }
+ Component {
+ name: "QQuickMonthModel"
+ prototype: "QAbstractListModel"
+ exports: ["QtQuick.Calendar/MonthModel 2.0"]
+ exportMetaObjectRevisions: [0]
+ Property { name: "month"; type: "int" }
+ Property { name: "year"; type: "int" }
+ Property { name: "locale"; type: "QLocale" }
+ Property { name: "title"; type: "string" }
+ Property { name: "count"; type: "int"; isReadonly: true }
+ Method {
+ name: "dateAt"
+ type: "QDate"
+ Parameter { name: "index"; type: "int" }
+ }
+ Method {
+ name: "indexOf"
+ type: "int"
+ Parameter { name: "date"; type: "QDate" }
+ }
+ }
+ Component {
+ name: "QQuickWeekNumberColumn"
+ defaultProperty: "data"
+ prototype: "QQuickControl"
+ exports: ["QtQuick.Calendar/AbstractWeekNumberColumn 2.0"]
+ exportMetaObjectRevisions: [0]
+ Property { name: "month"; type: "int" }
+ Property { name: "year"; type: "int" }
+ Property { name: "locale"; type: "QLocale" }
+ Property { name: "source"; type: "QVariant" }
+ }
+ Component {
+ name: "QQuickWeekNumberModel"
+ prototype: "QAbstractListModel"
+ exports: ["QtQuick.Calendar/WeekNumberModel 2.0"]
+ exportMetaObjectRevisions: [0]
+ Property { name: "month"; type: "int" }
+ Property { name: "year"; type: "int" }
+ Property { name: "locale"; type: "QLocale" }
+ Property { name: "count"; type: "int"; isReadonly: true }
+ Method {
+ name: "weekNumberAt"
+ type: "int"
+ Parameter { name: "index"; type: "int" }
+ }
+ Method {
+ name: "indexOf"
+ type: "int"
+ Parameter { name: "weekNumber"; type: "int" }
+ }
+ }
+}