initial
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
module Qt.WebSockets
|
||||
plugin declarative_qmlwebsockets ../../QtWebSockets/
|
||||
classname QtWebSocketsDeclarativeModule
|
||||
typeinfo plugins.qmltypes
|
||||
Binary file not shown.
@@ -0,0 +1,33 @@
|
||||
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 qmltyperegistrar.
|
||||
|
||||
Module {
|
||||
dependencies: []
|
||||
Component {
|
||||
file: "qquickboundaryrule_p.h"
|
||||
name: "QQuickBoundaryRule"
|
||||
exports: ["Qt.labs.animation/BoundaryRule 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Enum {
|
||||
name: "OvershootFilter"
|
||||
values: ["None", "Peak"]
|
||||
}
|
||||
Property { name: "enabled"; type: "bool" }
|
||||
Property { name: "minimum"; type: "double" }
|
||||
Property { name: "minimumOvershoot"; type: "double" }
|
||||
Property { name: "maximum"; type: "double" }
|
||||
Property { name: "maximumOvershoot"; type: "double" }
|
||||
Property { name: "overshootScale"; type: "double" }
|
||||
Property { name: "currentOvershoot"; type: "double"; isReadonly: true }
|
||||
Property { name: "peakOvershoot"; type: "double"; isReadonly: true }
|
||||
Property { name: "overshootFilter"; type: "OvershootFilter" }
|
||||
Property { name: "easing"; type: "QEasingCurve" }
|
||||
Property { name: "returnDuration"; type: "int" }
|
||||
Method { name: "componentFinalized" }
|
||||
Method { name: "returnToBounds"; type: "bool" }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
module Qt.labs.animation
|
||||
plugin labsanimationplugin
|
||||
classname QtLabsAnimationPlugin
|
||||
@@ -0,0 +1,71 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Labs Calendar module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/contact-us.
|
||||
**
|
||||
** GNU Lesser General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU Lesser
|
||||
** General Public License version 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later as published by the Free
|
||||
** Software Foundation and appearing in the file LICENSE.GPL included in
|
||||
** the packaging of this file. Please review the following information to
|
||||
** ensure the GNU General Public License version 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import Qt.labs.calendar 1.0
|
||||
|
||||
AbstractDayOfWeekRow {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(background ? background.implicitWidth : 0,
|
||||
contentItem.implicitWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(background ? background.implicitHeight : 0,
|
||||
contentItem.implicitHeight + topPadding + bottomPadding)
|
||||
|
||||
spacing: 6
|
||||
topPadding: 6
|
||||
bottomPadding: 6
|
||||
font.bold: true
|
||||
|
||||
//! [delegate]
|
||||
delegate: Text {
|
||||
text: model.shortName
|
||||
font: control.font
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
}
|
||||
//! [delegate]
|
||||
|
||||
//! [contentItem]
|
||||
contentItem: Row {
|
||||
spacing: control.spacing
|
||||
Repeater {
|
||||
model: control.source
|
||||
delegate: control.delegate
|
||||
}
|
||||
}
|
||||
//! [contentItem]
|
||||
}
|
||||
@@ -0,0 +1,73 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Labs Calendar module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/contact-us.
|
||||
**
|
||||
** GNU Lesser General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU Lesser
|
||||
** General Public License version 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later as published by the Free
|
||||
** Software Foundation and appearing in the file LICENSE.GPL included in
|
||||
** the packaging of this file. Please review the following information to
|
||||
** ensure the GNU General Public License version 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import Qt.labs.calendar 1.0
|
||||
|
||||
AbstractMonthGrid {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(background ? background.implicitWidth : 0,
|
||||
contentItem.implicitWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(background ? background.implicitHeight : 0,
|
||||
contentItem.implicitHeight + topPadding + bottomPadding)
|
||||
|
||||
spacing: 6
|
||||
|
||||
//! [delegate]
|
||||
delegate: Text {
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
opacity: model.month === control.month ? 1 : 0
|
||||
text: model.day
|
||||
font: control.font
|
||||
}
|
||||
//! [delegate]
|
||||
|
||||
//! [contentItem]
|
||||
contentItem: Grid {
|
||||
rows: 6
|
||||
columns: 7
|
||||
rowSpacing: control.spacing
|
||||
columnSpacing: control.spacing
|
||||
|
||||
Repeater {
|
||||
model: control.source
|
||||
delegate: control.delegate
|
||||
}
|
||||
}
|
||||
//! [contentItem]
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2017 The Qt Company Ltd.
|
||||
** Contact: http://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the Qt Labs Calendar module of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:LGPL3$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at http://www.qt.io/contact-us.
|
||||
**
|
||||
** GNU Lesser General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU Lesser
|
||||
** General Public License version 3 as published by the Free Software
|
||||
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
|
||||
** packaging of this file. Please review the following information to
|
||||
** ensure the GNU Lesser General Public License version 3 requirements
|
||||
** will be met: https://www.gnu.org/licenses/lgpl.html.
|
||||
**
|
||||
** GNU General Public License Usage
|
||||
** Alternatively, this file may be used under the terms of the GNU
|
||||
** General Public License version 2.0 or later as published by the Free
|
||||
** Software Foundation and appearing in the file LICENSE.GPL included in
|
||||
** the packaging of this file. Please review the following information to
|
||||
** ensure the GNU General Public License version 2.0 requirements will be
|
||||
** met: http://www.gnu.org/licenses/gpl-2.0.html.
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
import QtQuick 2.12
|
||||
import Qt.labs.calendar 1.0
|
||||
|
||||
AbstractWeekNumberColumn {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(background ? background.implicitWidth : 0,
|
||||
contentItem.implicitWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(background ? background.implicitHeight : 0,
|
||||
contentItem.implicitHeight + topPadding + bottomPadding)
|
||||
|
||||
spacing: 6
|
||||
leftPadding: 6
|
||||
rightPadding: 6
|
||||
font.bold: true
|
||||
|
||||
//! [delegate]
|
||||
delegate: Text {
|
||||
text: model.weekNumber
|
||||
font: control.font
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
}
|
||||
//! [delegate]
|
||||
|
||||
//! [contentItem]
|
||||
contentItem: Column {
|
||||
spacing: control.spacing
|
||||
Repeater {
|
||||
model: control.source
|
||||
delegate: control.delegate
|
||||
}
|
||||
}
|
||||
//! [contentItem]
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,435 @@
|
||||
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 Qt.labs.calendar 1.0'
|
||||
|
||||
Module {
|
||||
dependencies: ["QtQuick 2.12"]
|
||||
Component {
|
||||
name: "QAbstractItemModel"
|
||||
prototype: "QObject"
|
||||
Enum {
|
||||
name: "LayoutChangeHint"
|
||||
values: {
|
||||
"NoLayoutChangeHint": 0,
|
||||
"VerticalSortHint": 1,
|
||||
"HorizontalSortHint": 2
|
||||
}
|
||||
}
|
||||
Enum {
|
||||
name: "CheckIndexOption"
|
||||
values: {
|
||||
"NoOption": 0,
|
||||
"IndexIsValid": 1,
|
||||
"DoNotUseParent": 2,
|
||||
"ParentIsInvalid": 4
|
||||
}
|
||||
}
|
||||
Signal {
|
||||
name: "dataChanged"
|
||||
Parameter { name: "topLeft"; type: "QModelIndex" }
|
||||
Parameter { name: "bottomRight"; type: "QModelIndex" }
|
||||
Parameter { name: "roles"; type: "QVector<int>" }
|
||||
}
|
||||
Signal {
|
||||
name: "dataChanged"
|
||||
Parameter { name: "topLeft"; type: "QModelIndex" }
|
||||
Parameter { name: "bottomRight"; type: "QModelIndex" }
|
||||
}
|
||||
Signal {
|
||||
name: "headerDataChanged"
|
||||
Parameter { name: "orientation"; type: "Qt::Orientation" }
|
||||
Parameter { name: "first"; type: "int" }
|
||||
Parameter { name: "last"; type: "int" }
|
||||
}
|
||||
Signal {
|
||||
name: "layoutChanged"
|
||||
Parameter { name: "parents"; type: "QList<QPersistentModelIndex>" }
|
||||
Parameter { name: "hint"; type: "QAbstractItemModel::LayoutChangeHint" }
|
||||
}
|
||||
Signal {
|
||||
name: "layoutChanged"
|
||||
Parameter { name: "parents"; type: "QList<QPersistentModelIndex>" }
|
||||
}
|
||||
Signal { name: "layoutChanged" }
|
||||
Signal {
|
||||
name: "layoutAboutToBeChanged"
|
||||
Parameter { name: "parents"; type: "QList<QPersistentModelIndex>" }
|
||||
Parameter { name: "hint"; type: "QAbstractItemModel::LayoutChangeHint" }
|
||||
}
|
||||
Signal {
|
||||
name: "layoutAboutToBeChanged"
|
||||
Parameter { name: "parents"; type: "QList<QPersistentModelIndex>" }
|
||||
}
|
||||
Signal { name: "layoutAboutToBeChanged" }
|
||||
Signal {
|
||||
name: "rowsAboutToBeInserted"
|
||||
Parameter { name: "parent"; type: "QModelIndex" }
|
||||
Parameter { name: "first"; type: "int" }
|
||||
Parameter { name: "last"; type: "int" }
|
||||
}
|
||||
Signal {
|
||||
name: "rowsInserted"
|
||||
Parameter { name: "parent"; type: "QModelIndex" }
|
||||
Parameter { name: "first"; type: "int" }
|
||||
Parameter { name: "last"; type: "int" }
|
||||
}
|
||||
Signal {
|
||||
name: "rowsAboutToBeRemoved"
|
||||
Parameter { name: "parent"; type: "QModelIndex" }
|
||||
Parameter { name: "first"; type: "int" }
|
||||
Parameter { name: "last"; type: "int" }
|
||||
}
|
||||
Signal {
|
||||
name: "rowsRemoved"
|
||||
Parameter { name: "parent"; type: "QModelIndex" }
|
||||
Parameter { name: "first"; type: "int" }
|
||||
Parameter { name: "last"; type: "int" }
|
||||
}
|
||||
Signal {
|
||||
name: "columnsAboutToBeInserted"
|
||||
Parameter { name: "parent"; type: "QModelIndex" }
|
||||
Parameter { name: "first"; type: "int" }
|
||||
Parameter { name: "last"; type: "int" }
|
||||
}
|
||||
Signal {
|
||||
name: "columnsInserted"
|
||||
Parameter { name: "parent"; type: "QModelIndex" }
|
||||
Parameter { name: "first"; type: "int" }
|
||||
Parameter { name: "last"; type: "int" }
|
||||
}
|
||||
Signal {
|
||||
name: "columnsAboutToBeRemoved"
|
||||
Parameter { name: "parent"; type: "QModelIndex" }
|
||||
Parameter { name: "first"; type: "int" }
|
||||
Parameter { name: "last"; type: "int" }
|
||||
}
|
||||
Signal {
|
||||
name: "columnsRemoved"
|
||||
Parameter { name: "parent"; type: "QModelIndex" }
|
||||
Parameter { name: "first"; type: "int" }
|
||||
Parameter { name: "last"; type: "int" }
|
||||
}
|
||||
Signal { name: "modelAboutToBeReset" }
|
||||
Signal { name: "modelReset" }
|
||||
Signal {
|
||||
name: "rowsAboutToBeMoved"
|
||||
Parameter { name: "sourceParent"; type: "QModelIndex" }
|
||||
Parameter { name: "sourceStart"; type: "int" }
|
||||
Parameter { name: "sourceEnd"; type: "int" }
|
||||
Parameter { name: "destinationParent"; type: "QModelIndex" }
|
||||
Parameter { name: "destinationRow"; type: "int" }
|
||||
}
|
||||
Signal {
|
||||
name: "rowsMoved"
|
||||
Parameter { name: "parent"; type: "QModelIndex" }
|
||||
Parameter { name: "start"; type: "int" }
|
||||
Parameter { name: "end"; type: "int" }
|
||||
Parameter { name: "destination"; type: "QModelIndex" }
|
||||
Parameter { name: "row"; type: "int" }
|
||||
}
|
||||
Signal {
|
||||
name: "columnsAboutToBeMoved"
|
||||
Parameter { name: "sourceParent"; type: "QModelIndex" }
|
||||
Parameter { name: "sourceStart"; type: "int" }
|
||||
Parameter { name: "sourceEnd"; type: "int" }
|
||||
Parameter { name: "destinationParent"; type: "QModelIndex" }
|
||||
Parameter { name: "destinationColumn"; type: "int" }
|
||||
}
|
||||
Signal {
|
||||
name: "columnsMoved"
|
||||
Parameter { name: "parent"; type: "QModelIndex" }
|
||||
Parameter { name: "start"; type: "int" }
|
||||
Parameter { name: "end"; type: "int" }
|
||||
Parameter { name: "destination"; type: "QModelIndex" }
|
||||
Parameter { name: "column"; type: "int" }
|
||||
}
|
||||
Method { name: "submit"; type: "bool" }
|
||||
Method { name: "revert" }
|
||||
Method {
|
||||
name: "hasIndex"
|
||||
type: "bool"
|
||||
Parameter { name: "row"; type: "int" }
|
||||
Parameter { name: "column"; type: "int" }
|
||||
Parameter { name: "parent"; type: "QModelIndex" }
|
||||
}
|
||||
Method {
|
||||
name: "hasIndex"
|
||||
type: "bool"
|
||||
Parameter { name: "row"; type: "int" }
|
||||
Parameter { name: "column"; type: "int" }
|
||||
}
|
||||
Method {
|
||||
name: "index"
|
||||
type: "QModelIndex"
|
||||
Parameter { name: "row"; type: "int" }
|
||||
Parameter { name: "column"; type: "int" }
|
||||
Parameter { name: "parent"; type: "QModelIndex" }
|
||||
}
|
||||
Method {
|
||||
name: "index"
|
||||
type: "QModelIndex"
|
||||
Parameter { name: "row"; type: "int" }
|
||||
Parameter { name: "column"; type: "int" }
|
||||
}
|
||||
Method {
|
||||
name: "parent"
|
||||
type: "QModelIndex"
|
||||
Parameter { name: "child"; type: "QModelIndex" }
|
||||
}
|
||||
Method {
|
||||
name: "sibling"
|
||||
type: "QModelIndex"
|
||||
Parameter { name: "row"; type: "int" }
|
||||
Parameter { name: "column"; type: "int" }
|
||||
Parameter { name: "idx"; type: "QModelIndex" }
|
||||
}
|
||||
Method {
|
||||
name: "rowCount"
|
||||
type: "int"
|
||||
Parameter { name: "parent"; type: "QModelIndex" }
|
||||
}
|
||||
Method { name: "rowCount"; type: "int" }
|
||||
Method {
|
||||
name: "columnCount"
|
||||
type: "int"
|
||||
Parameter { name: "parent"; type: "QModelIndex" }
|
||||
}
|
||||
Method { name: "columnCount"; type: "int" }
|
||||
Method {
|
||||
name: "hasChildren"
|
||||
type: "bool"
|
||||
Parameter { name: "parent"; type: "QModelIndex" }
|
||||
}
|
||||
Method { name: "hasChildren"; type: "bool" }
|
||||
Method {
|
||||
name: "data"
|
||||
type: "QVariant"
|
||||
Parameter { name: "index"; type: "QModelIndex" }
|
||||
Parameter { name: "role"; type: "int" }
|
||||
}
|
||||
Method {
|
||||
name: "data"
|
||||
type: "QVariant"
|
||||
Parameter { name: "index"; type: "QModelIndex" }
|
||||
}
|
||||
Method {
|
||||
name: "setData"
|
||||
type: "bool"
|
||||
Parameter { name: "index"; type: "QModelIndex" }
|
||||
Parameter { name: "value"; type: "QVariant" }
|
||||
Parameter { name: "role"; type: "int" }
|
||||
}
|
||||
Method {
|
||||
name: "setData"
|
||||
type: "bool"
|
||||
Parameter { name: "index"; type: "QModelIndex" }
|
||||
Parameter { name: "value"; type: "QVariant" }
|
||||
}
|
||||
Method {
|
||||
name: "headerData"
|
||||
type: "QVariant"
|
||||
Parameter { name: "section"; type: "int" }
|
||||
Parameter { name: "orientation"; type: "Qt::Orientation" }
|
||||
Parameter { name: "role"; type: "int" }
|
||||
}
|
||||
Method {
|
||||
name: "headerData"
|
||||
type: "QVariant"
|
||||
Parameter { name: "section"; type: "int" }
|
||||
Parameter { name: "orientation"; type: "Qt::Orientation" }
|
||||
}
|
||||
Method {
|
||||
name: "fetchMore"
|
||||
Parameter { name: "parent"; type: "QModelIndex" }
|
||||
}
|
||||
Method {
|
||||
name: "canFetchMore"
|
||||
type: "bool"
|
||||
Parameter { name: "parent"; type: "QModelIndex" }
|
||||
}
|
||||
Method {
|
||||
name: "flags"
|
||||
type: "Qt::ItemFlags"
|
||||
Parameter { name: "index"; type: "QModelIndex" }
|
||||
}
|
||||
Method {
|
||||
name: "match"
|
||||
type: "QModelIndexList"
|
||||
Parameter { name: "start"; type: "QModelIndex" }
|
||||
Parameter { name: "role"; type: "int" }
|
||||
Parameter { name: "value"; type: "QVariant" }
|
||||
Parameter { name: "hits"; type: "int" }
|
||||
Parameter { name: "flags"; type: "Qt::MatchFlags" }
|
||||
}
|
||||
Method {
|
||||
name: "match"
|
||||
type: "QModelIndexList"
|
||||
Parameter { name: "start"; type: "QModelIndex" }
|
||||
Parameter { name: "role"; type: "int" }
|
||||
Parameter { name: "value"; type: "QVariant" }
|
||||
Parameter { name: "hits"; type: "int" }
|
||||
}
|
||||
Method {
|
||||
name: "match"
|
||||
type: "QModelIndexList"
|
||||
Parameter { name: "start"; type: "QModelIndex" }
|
||||
Parameter { name: "role"; type: "int" }
|
||||
Parameter { name: "value"; type: "QVariant" }
|
||||
}
|
||||
}
|
||||
Component { name: "QAbstractListModel"; prototype: "QAbstractItemModel" }
|
||||
Component {
|
||||
name: "QQuickCalendar"
|
||||
prototype: "QObject"
|
||||
exports: ["Qt.labs.calendar/Calendar 1.0"]
|
||||
isCreatable: false
|
||||
isSingleton: true
|
||||
exportMetaObjectRevisions: [0]
|
||||
Enum {
|
||||
name: "Month"
|
||||
values: {
|
||||
"January": 0,
|
||||
"February": 1,
|
||||
"March": 2,
|
||||
"April": 3,
|
||||
"May": 4,
|
||||
"June": 5,
|
||||
"July": 6,
|
||||
"August": 7,
|
||||
"September": 8,
|
||||
"October": 9,
|
||||
"November": 10,
|
||||
"December": 11
|
||||
}
|
||||
}
|
||||
}
|
||||
Component {
|
||||
name: "QQuickCalendarModel"
|
||||
prototype: "QAbstractListModel"
|
||||
exports: ["Qt.labs.calendar/CalendarModel 1.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: "QQuickControl"
|
||||
defaultProperty: "data"
|
||||
prototype: "QQuickItem"
|
||||
Property { name: "font"; type: "QFont" }
|
||||
Property { name: "availableWidth"; type: "double"; isReadonly: true }
|
||||
Property { name: "availableHeight"; type: "double"; isReadonly: true }
|
||||
Property { name: "padding"; type: "double" }
|
||||
Property { name: "topPadding"; type: "double" }
|
||||
Property { name: "leftPadding"; type: "double" }
|
||||
Property { name: "rightPadding"; type: "double" }
|
||||
Property { name: "bottomPadding"; type: "double" }
|
||||
Property { name: "spacing"; type: "double" }
|
||||
Property { name: "locale"; type: "QLocale" }
|
||||
Property { name: "mirrored"; type: "bool"; isReadonly: true }
|
||||
Property { name: "focusPolicy"; type: "Qt::FocusPolicy" }
|
||||
Property { name: "focusReason"; type: "Qt::FocusReason" }
|
||||
Property { name: "visualFocus"; type: "bool"; isReadonly: true }
|
||||
Property { name: "hovered"; type: "bool"; isReadonly: true }
|
||||
Property { name: "hoverEnabled"; type: "bool" }
|
||||
Property { name: "wheelEnabled"; type: "bool" }
|
||||
Property { name: "background"; type: "QQuickItem"; isPointer: true }
|
||||
Property { name: "contentItem"; type: "QQuickItem"; isPointer: true }
|
||||
Property { name: "baselineOffset"; type: "double" }
|
||||
Property { name: "palette"; revision: 3; type: "QPalette" }
|
||||
Property { name: "horizontalPadding"; revision: 5; type: "double" }
|
||||
Property { name: "verticalPadding"; revision: 5; type: "double" }
|
||||
Property { name: "implicitContentWidth"; revision: 5; type: "double"; isReadonly: true }
|
||||
Property { name: "implicitContentHeight"; revision: 5; type: "double"; isReadonly: true }
|
||||
Property { name: "implicitBackgroundWidth"; revision: 5; type: "double"; isReadonly: true }
|
||||
Property { name: "implicitBackgroundHeight"; revision: 5; type: "double"; isReadonly: true }
|
||||
Property { name: "topInset"; revision: 5; type: "double" }
|
||||
Property { name: "leftInset"; revision: 5; type: "double" }
|
||||
Property { name: "rightInset"; revision: 5; type: "double" }
|
||||
Property { name: "bottomInset"; revision: 5; type: "double" }
|
||||
Signal { name: "paletteChanged"; revision: 3 }
|
||||
Signal { name: "horizontalPaddingChanged"; revision: 5 }
|
||||
Signal { name: "verticalPaddingChanged"; revision: 5 }
|
||||
Signal { name: "implicitContentWidthChanged"; revision: 5 }
|
||||
Signal { name: "implicitContentHeightChanged"; revision: 5 }
|
||||
Signal { name: "implicitBackgroundWidthChanged"; revision: 5 }
|
||||
Signal { name: "implicitBackgroundHeightChanged"; revision: 5 }
|
||||
Signal { name: "topInsetChanged"; revision: 5 }
|
||||
Signal { name: "leftInsetChanged"; revision: 5 }
|
||||
Signal { name: "rightInsetChanged"; revision: 5 }
|
||||
Signal { name: "bottomInsetChanged"; revision: 5 }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickDayOfWeekRow"
|
||||
defaultProperty: "data"
|
||||
prototype: "QQuickControl"
|
||||
exports: ["Qt.labs.calendar/AbstractDayOfWeekRow 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "source"; type: "QVariant" }
|
||||
Property { name: "delegate"; type: "QQmlComponent"; isPointer: true }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickMonthGrid"
|
||||
defaultProperty: "data"
|
||||
prototype: "QQuickControl"
|
||||
exports: ["Qt.labs.calendar/AbstractMonthGrid 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "month"; type: "int" }
|
||||
Property { name: "year"; type: "int" }
|
||||
Property { name: "source"; type: "QVariant" }
|
||||
Property { name: "title"; type: "string" }
|
||||
Property { name: "delegate"; type: "QQmlComponent"; isPointer: true }
|
||||
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: "QQuickWeekNumberColumn"
|
||||
defaultProperty: "data"
|
||||
prototype: "QQuickControl"
|
||||
exports: ["Qt.labs.calendar/AbstractWeekNumberColumn 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "month"; type: "int" }
|
||||
Property { name: "year"; type: "int" }
|
||||
Property { name: "source"; type: "QVariant" }
|
||||
Property { name: "delegate"; type: "QQmlComponent"; isPointer: true }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
module Qt.labs.calendar
|
||||
plugin qtlabscalendarplugin
|
||||
classname QtLabsCalendarPlugin
|
||||
DayOfWeekRow 1.0 DayOfWeekRow.qml
|
||||
MonthGrid 1.0 MonthGrid.qml
|
||||
WeekNumberColumn 1.0 WeekNumberColumn.qml
|
||||
Binary file not shown.
@@ -0,0 +1,85 @@
|
||||
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 qmltyperegistrar.
|
||||
|
||||
Module {
|
||||
dependencies: ["QtQuick 2.0"]
|
||||
Component {
|
||||
file: "qquickfolderlistmodel.h"
|
||||
name: "QQuickFolderListModel"
|
||||
exports: [
|
||||
"Qt.labs.folderlistmodel/FolderListModel 2.0",
|
||||
"Qt.labs.folderlistmodel/FolderListModel 2.1",
|
||||
"Qt.labs.folderlistmodel/FolderListModel 2.11",
|
||||
"Qt.labs.folderlistmodel/FolderListModel 2.12",
|
||||
"Qt.labs.folderlistmodel/FolderListModel 2.2"
|
||||
]
|
||||
exportMetaObjectRevisions: [0, 1, 11, 12, 2]
|
||||
Enum {
|
||||
name: "SortField"
|
||||
values: ["Unsorted", "Name", "Time", "Size", "Type"]
|
||||
}
|
||||
Enum {
|
||||
name: "Status"
|
||||
values: ["Null", "Ready", "Loading"]
|
||||
}
|
||||
Property { name: "folder"; type: "QUrl" }
|
||||
Property { name: "rootFolder"; type: "QUrl" }
|
||||
Property { name: "parentFolder"; type: "QUrl"; isReadonly: true }
|
||||
Property { name: "nameFilters"; type: "QStringList" }
|
||||
Property { name: "sortField"; type: "SortField" }
|
||||
Property { name: "sortReversed"; type: "bool" }
|
||||
Property { name: "showFiles"; revision: 1; type: "bool" }
|
||||
Property { name: "showDirs"; type: "bool" }
|
||||
Property { name: "showDirsFirst"; type: "bool" }
|
||||
Property { name: "showDotAndDotDot"; type: "bool" }
|
||||
Property { name: "showHidden"; revision: 1; type: "bool" }
|
||||
Property { name: "showOnlyReadable"; type: "bool" }
|
||||
Property { name: "caseSensitive"; revision: 2; type: "bool" }
|
||||
Property { name: "count"; type: "int"; isReadonly: true }
|
||||
Property { name: "status"; revision: 11; type: "Status"; isReadonly: true }
|
||||
Property { name: "sortCaseSensitive"; revision: 12; type: "bool" }
|
||||
Signal { name: "rowCountChanged" }
|
||||
Signal { name: "countChanged"; revision: 1 }
|
||||
Signal { name: "statusChanged"; revision: 11 }
|
||||
Method {
|
||||
name: "_q_directoryChanged"
|
||||
Parameter { name: "directory"; type: "string" }
|
||||
Parameter { name: "list"; type: "QList<FileProperty>" }
|
||||
}
|
||||
Method {
|
||||
name: "_q_directoryUpdated"
|
||||
Parameter { name: "directory"; type: "string" }
|
||||
Parameter { name: "list"; type: "QList<FileProperty>" }
|
||||
Parameter { name: "fromIndex"; type: "int" }
|
||||
Parameter { name: "toIndex"; type: "int" }
|
||||
}
|
||||
Method {
|
||||
name: "_q_sortFinished"
|
||||
Parameter { name: "list"; type: "QList<FileProperty>" }
|
||||
}
|
||||
Method {
|
||||
name: "_q_statusChanged"
|
||||
Parameter { name: "s"; type: "QQuickFolderListModel::Status" }
|
||||
}
|
||||
Method {
|
||||
name: "isFolder"
|
||||
type: "bool"
|
||||
Parameter { name: "index"; type: "int" }
|
||||
}
|
||||
Method {
|
||||
name: "get"
|
||||
type: "QVariant"
|
||||
Parameter { name: "idx"; type: "int" }
|
||||
Parameter { name: "property"; type: "string" }
|
||||
}
|
||||
Method {
|
||||
name: "indexOf"
|
||||
type: "int"
|
||||
Parameter { name: "file"; type: "QUrl" }
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
module Qt.labs.folderlistmodel
|
||||
plugin qmlfolderlistmodelplugin
|
||||
classname QmlFolderListModelPlugin
|
||||
typeinfo plugins.qmltypes
|
||||
Binary file not shown.
@@ -0,0 +1,101 @@
|
||||
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 Qt.labs.lottieqt 1.0'
|
||||
|
||||
Module {
|
||||
dependencies: ["QtQuick 2.0"]
|
||||
Component {
|
||||
name: "BMLiteral"
|
||||
prototype: "QObject"
|
||||
exports: ["Qt.labs.lottieqt/BMPropertyType 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Enum {
|
||||
name: "PropertyType"
|
||||
values: {
|
||||
"RectPosition": 0,
|
||||
"RectSize": 1,
|
||||
"RectRoundness": 2
|
||||
}
|
||||
}
|
||||
}
|
||||
Component {
|
||||
name: "LottieAnimation"
|
||||
defaultProperty: "data"
|
||||
prototype: "QQuickPaintedItem"
|
||||
exports: ["Qt.labs.lottieqt/LottieAnimation 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Enum {
|
||||
name: "Status"
|
||||
values: {
|
||||
"Null": 0,
|
||||
"Loading": 1,
|
||||
"Ready": 2,
|
||||
"Error": 3
|
||||
}
|
||||
}
|
||||
Enum {
|
||||
name: "Quality"
|
||||
values: {
|
||||
"LowQuality": 0,
|
||||
"MediumQuality": 1,
|
||||
"HighQuality": 2
|
||||
}
|
||||
}
|
||||
Enum {
|
||||
name: "Direction"
|
||||
values: {
|
||||
"Forward": 1,
|
||||
"Reverse": -1
|
||||
}
|
||||
}
|
||||
Enum {
|
||||
name: "LoopCount"
|
||||
values: {
|
||||
"Infinite": -1
|
||||
}
|
||||
}
|
||||
Property { name: "source"; type: "QUrl" }
|
||||
Property { name: "frameRate"; type: "int" }
|
||||
Property { name: "startFrame"; type: "int"; isReadonly: true }
|
||||
Property { name: "endFrame"; type: "int"; isReadonly: true }
|
||||
Property { name: "status"; type: "Status" }
|
||||
Property { name: "quality"; type: "Quality" }
|
||||
Property { name: "autoPlay"; type: "bool" }
|
||||
Property { name: "loops"; type: "int" }
|
||||
Property { name: "direction"; type: "Direction" }
|
||||
Signal { name: "finished" }
|
||||
Method { name: "start" }
|
||||
Method { name: "play" }
|
||||
Method { name: "pause" }
|
||||
Method { name: "togglePause" }
|
||||
Method { name: "stop" }
|
||||
Method {
|
||||
name: "gotoAndPlay"
|
||||
Parameter { name: "frame"; type: "int" }
|
||||
}
|
||||
Method {
|
||||
name: "gotoAndPlay"
|
||||
type: "bool"
|
||||
Parameter { name: "frameMarker"; type: "string" }
|
||||
}
|
||||
Method {
|
||||
name: "gotoAndStop"
|
||||
Parameter { name: "frame"; type: "int" }
|
||||
}
|
||||
Method {
|
||||
name: "gotoAndStop"
|
||||
type: "bool"
|
||||
Parameter { name: "frameMarker"; type: "string" }
|
||||
}
|
||||
Method {
|
||||
name: "getDuration"
|
||||
type: "double"
|
||||
Parameter { name: "inFrames"; type: "bool" }
|
||||
}
|
||||
Method { name: "getDuration"; type: "double" }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
module Qt.labs.lottieqt
|
||||
plugin lottieqtplugin
|
||||
classname BodymovinPlugin
|
||||
Binary file not shown.
@@ -0,0 +1,492 @@
|
||||
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 Qt.labs.platform 1.1'
|
||||
|
||||
Module {
|
||||
dependencies: ["QtQuick 2.0"]
|
||||
Component {
|
||||
name: "QPlatformDialogHelper"
|
||||
prototype: "QObject"
|
||||
exports: ["Qt.labs.platform/StandardButton 1.0"]
|
||||
isCreatable: false
|
||||
exportMetaObjectRevisions: [0]
|
||||
Enum {
|
||||
name: "StandardButtons"
|
||||
values: {
|
||||
"NoButton": 0,
|
||||
"Ok": 1024,
|
||||
"Save": 2048,
|
||||
"SaveAll": 4096,
|
||||
"Open": 8192,
|
||||
"Yes": 16384,
|
||||
"YesToAll": 32768,
|
||||
"No": 65536,
|
||||
"NoToAll": 131072,
|
||||
"Abort": 262144,
|
||||
"Retry": 524288,
|
||||
"Ignore": 1048576,
|
||||
"Close": 2097152,
|
||||
"Cancel": 4194304,
|
||||
"Discard": 8388608,
|
||||
"Help": 16777216,
|
||||
"Apply": 33554432,
|
||||
"Reset": 67108864,
|
||||
"RestoreDefaults": 134217728,
|
||||
"FirstButton": 1024,
|
||||
"LastButton": 134217728,
|
||||
"LowestBit": 10,
|
||||
"HighestBit": 27
|
||||
}
|
||||
}
|
||||
Enum {
|
||||
name: "ButtonRole"
|
||||
values: {
|
||||
"InvalidRole": -1,
|
||||
"AcceptRole": 0,
|
||||
"RejectRole": 1,
|
||||
"DestructiveRole": 2,
|
||||
"ActionRole": 3,
|
||||
"HelpRole": 4,
|
||||
"YesRole": 5,
|
||||
"NoRole": 6,
|
||||
"ResetRole": 7,
|
||||
"ApplyRole": 8,
|
||||
"NRoles": 9,
|
||||
"RoleMask": 268435455,
|
||||
"AlternateRole": 268435456,
|
||||
"Stretch": 536870912,
|
||||
"Reverse": 1073741824,
|
||||
"EOL": -1
|
||||
}
|
||||
}
|
||||
Enum {
|
||||
name: "ButtonLayout"
|
||||
values: {
|
||||
"UnknownLayout": -1,
|
||||
"WinLayout": 0,
|
||||
"MacLayout": 1,
|
||||
"KdeLayout": 2,
|
||||
"GnomeLayout": 3,
|
||||
"MacModelessLayout": 4,
|
||||
"AndroidLayout": 5
|
||||
}
|
||||
}
|
||||
Signal { name: "accept" }
|
||||
Signal { name: "reject" }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickPlatformColorDialog"
|
||||
defaultProperty: "data"
|
||||
prototype: "QQuickPlatformDialog"
|
||||
exports: ["Qt.labs.platform/ColorDialog 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "color"; type: "QColor" }
|
||||
Property { name: "currentColor"; type: "QColor" }
|
||||
Property { name: "options"; type: "QColorDialogOptions::ColorDialogOptions" }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickPlatformDialog"
|
||||
defaultProperty: "data"
|
||||
prototype: "QObject"
|
||||
exports: ["Qt.labs.platform/Dialog 1.0"]
|
||||
isCreatable: false
|
||||
exportMetaObjectRevisions: [0]
|
||||
Enum {
|
||||
name: "StandardCode"
|
||||
values: {
|
||||
"Rejected": 0,
|
||||
"Accepted": 1
|
||||
}
|
||||
}
|
||||
Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
|
||||
Property { name: "parentWindow"; type: "QWindow"; isPointer: true }
|
||||
Property { name: "title"; type: "string" }
|
||||
Property { name: "flags"; type: "Qt::WindowFlags" }
|
||||
Property { name: "modality"; type: "Qt::WindowModality" }
|
||||
Property { name: "visible"; type: "bool" }
|
||||
Property { name: "result"; type: "int" }
|
||||
Signal { name: "accepted" }
|
||||
Signal { name: "rejected" }
|
||||
Method { name: "open" }
|
||||
Method { name: "close" }
|
||||
Method { name: "accept" }
|
||||
Method { name: "reject" }
|
||||
Method {
|
||||
name: "done"
|
||||
Parameter { name: "result"; type: "int" }
|
||||
}
|
||||
}
|
||||
Component {
|
||||
name: "QQuickPlatformFileDialog"
|
||||
defaultProperty: "data"
|
||||
prototype: "QQuickPlatformDialog"
|
||||
exports: ["Qt.labs.platform/FileDialog 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Enum {
|
||||
name: "FileMode"
|
||||
values: {
|
||||
"OpenFile": 0,
|
||||
"OpenFiles": 1,
|
||||
"SaveFile": 2
|
||||
}
|
||||
}
|
||||
Property { name: "fileMode"; type: "FileMode" }
|
||||
Property { name: "file"; type: "QUrl" }
|
||||
Property { name: "files"; type: "QList<QUrl>" }
|
||||
Property { name: "currentFile"; type: "QUrl" }
|
||||
Property { name: "currentFiles"; type: "QList<QUrl>" }
|
||||
Property { name: "folder"; type: "QUrl" }
|
||||
Property { name: "options"; type: "QFileDialogOptions::FileDialogOptions" }
|
||||
Property { name: "nameFilters"; type: "QStringList" }
|
||||
Property {
|
||||
name: "selectedNameFilter"
|
||||
type: "QQuickPlatformFileNameFilter"
|
||||
isReadonly: true
|
||||
isPointer: true
|
||||
}
|
||||
Property { name: "defaultSuffix"; type: "string" }
|
||||
Property { name: "acceptLabel"; type: "string" }
|
||||
Property { name: "rejectLabel"; type: "string" }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickPlatformFileNameFilter"
|
||||
prototype: "QObject"
|
||||
Property { name: "index"; type: "int" }
|
||||
Property { name: "name"; type: "string"; isReadonly: true }
|
||||
Property { name: "extensions"; type: "QStringList"; isReadonly: true }
|
||||
Signal {
|
||||
name: "indexChanged"
|
||||
Parameter { name: "index"; type: "int" }
|
||||
}
|
||||
Signal {
|
||||
name: "nameChanged"
|
||||
Parameter { name: "name"; type: "string" }
|
||||
}
|
||||
Signal {
|
||||
name: "extensionsChanged"
|
||||
Parameter { name: "extensions"; type: "QStringList" }
|
||||
}
|
||||
}
|
||||
Component {
|
||||
name: "QQuickPlatformFolderDialog"
|
||||
defaultProperty: "data"
|
||||
prototype: "QQuickPlatformDialog"
|
||||
exports: ["Qt.labs.platform/FolderDialog 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "folder"; type: "QUrl" }
|
||||
Property { name: "currentFolder"; type: "QUrl" }
|
||||
Property { name: "options"; type: "QFileDialogOptions::FileDialogOptions" }
|
||||
Property { name: "acceptLabel"; type: "string" }
|
||||
Property { name: "rejectLabel"; type: "string" }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickPlatformFontDialog"
|
||||
defaultProperty: "data"
|
||||
prototype: "QQuickPlatformDialog"
|
||||
exports: ["Qt.labs.platform/FontDialog 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "font"; type: "QFont" }
|
||||
Property { name: "currentFont"; type: "QFont" }
|
||||
Property { name: "options"; type: "QFontDialogOptions::FontDialogOptions" }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickPlatformIcon"
|
||||
Property { name: "source"; type: "QUrl" }
|
||||
Property { name: "name"; type: "string" }
|
||||
Property { name: "mask"; type: "bool" }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickPlatformMenu"
|
||||
defaultProperty: "data"
|
||||
prototype: "QObject"
|
||||
exports: ["Qt.labs.platform/Menu 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
|
||||
Property { name: "items"; type: "QQuickPlatformMenuItem"; isList: true; isReadonly: true }
|
||||
Property { name: "menuBar"; type: "QQuickPlatformMenuBar"; isReadonly: true; isPointer: true }
|
||||
Property { name: "parentMenu"; type: "QQuickPlatformMenu"; isReadonly: true; isPointer: true }
|
||||
Property {
|
||||
name: "systemTrayIcon"
|
||||
type: "QQuickPlatformSystemTrayIcon"
|
||||
isReadonly: true
|
||||
isPointer: true
|
||||
}
|
||||
Property { name: "menuItem"; type: "QQuickPlatformMenuItem"; isReadonly: true; isPointer: true }
|
||||
Property { name: "enabled"; type: "bool" }
|
||||
Property { name: "visible"; type: "bool" }
|
||||
Property { name: "minimumWidth"; type: "int" }
|
||||
Property { name: "type"; type: "QPlatformMenu::MenuType" }
|
||||
Property { name: "title"; type: "string" }
|
||||
Property { name: "iconSource"; type: "QUrl" }
|
||||
Property { name: "iconName"; type: "string" }
|
||||
Property { name: "font"; type: "QFont" }
|
||||
Property { name: "icon"; revision: 1; type: "QQuickPlatformIcon" }
|
||||
Signal { name: "aboutToShow" }
|
||||
Signal { name: "aboutToHide" }
|
||||
Signal { name: "iconChanged"; revision: 1 }
|
||||
Method {
|
||||
name: "open"
|
||||
Parameter { name: "args"; type: "QQmlV4Function"; isPointer: true }
|
||||
}
|
||||
Method { name: "close" }
|
||||
Method {
|
||||
name: "addItem"
|
||||
Parameter { name: "item"; type: "QQuickPlatformMenuItem"; isPointer: true }
|
||||
}
|
||||
Method {
|
||||
name: "insertItem"
|
||||
Parameter { name: "index"; type: "int" }
|
||||
Parameter { name: "item"; type: "QQuickPlatformMenuItem"; isPointer: true }
|
||||
}
|
||||
Method {
|
||||
name: "removeItem"
|
||||
Parameter { name: "item"; type: "QQuickPlatformMenuItem"; isPointer: true }
|
||||
}
|
||||
Method {
|
||||
name: "addMenu"
|
||||
Parameter { name: "menu"; type: "QQuickPlatformMenu"; isPointer: true }
|
||||
}
|
||||
Method {
|
||||
name: "insertMenu"
|
||||
Parameter { name: "index"; type: "int" }
|
||||
Parameter { name: "menu"; type: "QQuickPlatformMenu"; isPointer: true }
|
||||
}
|
||||
Method {
|
||||
name: "removeMenu"
|
||||
Parameter { name: "menu"; type: "QQuickPlatformMenu"; isPointer: true }
|
||||
}
|
||||
Method { name: "clear" }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickPlatformMenuBar"
|
||||
defaultProperty: "data"
|
||||
prototype: "QObject"
|
||||
exports: ["Qt.labs.platform/MenuBar 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
|
||||
Property { name: "menus"; type: "QQuickPlatformMenu"; isList: true; isReadonly: true }
|
||||
Property { name: "window"; type: "QWindow"; isPointer: true }
|
||||
Method {
|
||||
name: "addMenu"
|
||||
Parameter { name: "menu"; type: "QQuickPlatformMenu"; isPointer: true }
|
||||
}
|
||||
Method {
|
||||
name: "insertMenu"
|
||||
Parameter { name: "index"; type: "int" }
|
||||
Parameter { name: "menu"; type: "QQuickPlatformMenu"; isPointer: true }
|
||||
}
|
||||
Method {
|
||||
name: "removeMenu"
|
||||
Parameter { name: "menu"; type: "QQuickPlatformMenu"; isPointer: true }
|
||||
}
|
||||
Method { name: "clear" }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickPlatformMenuItem"
|
||||
prototype: "QObject"
|
||||
exports: [
|
||||
"Qt.labs.platform/MenuItem 1.0",
|
||||
"Qt.labs.platform/MenuItem 1.1"
|
||||
]
|
||||
exportMetaObjectRevisions: [0, 1]
|
||||
Property { name: "menu"; type: "QQuickPlatformMenu"; isReadonly: true; isPointer: true }
|
||||
Property { name: "subMenu"; type: "QQuickPlatformMenu"; isReadonly: true; isPointer: true }
|
||||
Property { name: "group"; type: "QQuickPlatformMenuItemGroup"; isPointer: true }
|
||||
Property { name: "enabled"; type: "bool" }
|
||||
Property { name: "visible"; type: "bool" }
|
||||
Property { name: "separator"; type: "bool" }
|
||||
Property { name: "checkable"; type: "bool" }
|
||||
Property { name: "checked"; type: "bool" }
|
||||
Property { name: "role"; type: "QPlatformMenuItem::MenuRole" }
|
||||
Property { name: "text"; type: "string" }
|
||||
Property { name: "iconSource"; type: "QUrl" }
|
||||
Property { name: "iconName"; type: "string" }
|
||||
Property { name: "shortcut"; type: "QVariant" }
|
||||
Property { name: "font"; type: "QFont" }
|
||||
Property { name: "icon"; revision: 1; type: "QQuickPlatformIcon" }
|
||||
Signal { name: "triggered" }
|
||||
Signal { name: "hovered" }
|
||||
Signal { name: "iconChanged"; revision: 1 }
|
||||
Method { name: "toggle" }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickPlatformMenuItemGroup"
|
||||
prototype: "QObject"
|
||||
exports: ["Qt.labs.platform/MenuItemGroup 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "enabled"; type: "bool" }
|
||||
Property { name: "visible"; type: "bool" }
|
||||
Property { name: "exclusive"; type: "bool" }
|
||||
Property { name: "checkedItem"; type: "QQuickPlatformMenuItem"; isPointer: true }
|
||||
Property { name: "items"; type: "QQuickPlatformMenuItem"; isList: true; isReadonly: true }
|
||||
Signal {
|
||||
name: "triggered"
|
||||
Parameter { name: "item"; type: "QQuickPlatformMenuItem"; isPointer: true }
|
||||
}
|
||||
Signal {
|
||||
name: "hovered"
|
||||
Parameter { name: "item"; type: "QQuickPlatformMenuItem"; isPointer: true }
|
||||
}
|
||||
Method {
|
||||
name: "addItem"
|
||||
Parameter { name: "item"; type: "QQuickPlatformMenuItem"; isPointer: true }
|
||||
}
|
||||
Method {
|
||||
name: "removeItem"
|
||||
Parameter { name: "item"; type: "QQuickPlatformMenuItem"; isPointer: true }
|
||||
}
|
||||
Method { name: "clear" }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickPlatformMenuSeparator"
|
||||
prototype: "QQuickPlatformMenuItem"
|
||||
exports: ["Qt.labs.platform/MenuSeparator 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
}
|
||||
Component {
|
||||
name: "QQuickPlatformMessageDialog"
|
||||
defaultProperty: "data"
|
||||
prototype: "QQuickPlatformDialog"
|
||||
exports: ["Qt.labs.platform/MessageDialog 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "text"; type: "string" }
|
||||
Property { name: "informativeText"; type: "string" }
|
||||
Property { name: "detailedText"; type: "string" }
|
||||
Property { name: "buttons"; type: "QPlatformDialogHelper::StandardButtons" }
|
||||
Signal {
|
||||
name: "clicked"
|
||||
Parameter { name: "button"; type: "QPlatformDialogHelper::StandardButton" }
|
||||
}
|
||||
Signal { name: "okClicked" }
|
||||
Signal { name: "saveClicked" }
|
||||
Signal { name: "saveAllClicked" }
|
||||
Signal { name: "openClicked" }
|
||||
Signal { name: "yesClicked" }
|
||||
Signal { name: "yesToAllClicked" }
|
||||
Signal { name: "noClicked" }
|
||||
Signal { name: "noToAllClicked" }
|
||||
Signal { name: "abortClicked" }
|
||||
Signal { name: "retryClicked" }
|
||||
Signal { name: "ignoreClicked" }
|
||||
Signal { name: "closeClicked" }
|
||||
Signal { name: "cancelClicked" }
|
||||
Signal { name: "discardClicked" }
|
||||
Signal { name: "helpClicked" }
|
||||
Signal { name: "applyClicked" }
|
||||
Signal { name: "resetClicked" }
|
||||
Signal { name: "restoreDefaultsClicked" }
|
||||
}
|
||||
Component {
|
||||
name: "QQuickPlatformStandardPaths"
|
||||
prototype: "QObject"
|
||||
exports: ["Qt.labs.platform/StandardPaths 1.0"]
|
||||
isCreatable: false
|
||||
isSingleton: true
|
||||
exportMetaObjectRevisions: [0]
|
||||
Method {
|
||||
name: "displayName"
|
||||
type: "string"
|
||||
Parameter { name: "type"; type: "QStandardPaths::StandardLocation" }
|
||||
}
|
||||
Method {
|
||||
name: "findExecutable"
|
||||
type: "QUrl"
|
||||
Parameter { name: "executableName"; type: "string" }
|
||||
Parameter { name: "paths"; type: "QStringList" }
|
||||
}
|
||||
Method {
|
||||
name: "findExecutable"
|
||||
type: "QUrl"
|
||||
Parameter { name: "executableName"; type: "string" }
|
||||
}
|
||||
Method {
|
||||
name: "locate"
|
||||
type: "QUrl"
|
||||
Parameter { name: "type"; type: "QStandardPaths::StandardLocation" }
|
||||
Parameter { name: "fileName"; type: "string" }
|
||||
Parameter { name: "options"; type: "QStandardPaths::LocateOptions" }
|
||||
}
|
||||
Method {
|
||||
name: "locate"
|
||||
type: "QUrl"
|
||||
Parameter { name: "type"; type: "QStandardPaths::StandardLocation" }
|
||||
Parameter { name: "fileName"; type: "string" }
|
||||
}
|
||||
Method {
|
||||
name: "locateAll"
|
||||
type: "QList<QUrl>"
|
||||
Parameter { name: "type"; type: "QStandardPaths::StandardLocation" }
|
||||
Parameter { name: "fileName"; type: "string" }
|
||||
Parameter { name: "options"; type: "QStandardPaths::LocateOptions" }
|
||||
}
|
||||
Method {
|
||||
name: "locateAll"
|
||||
type: "QList<QUrl>"
|
||||
Parameter { name: "type"; type: "QStandardPaths::StandardLocation" }
|
||||
Parameter { name: "fileName"; type: "string" }
|
||||
}
|
||||
Method {
|
||||
name: "setTestModeEnabled"
|
||||
Parameter { name: "testMode"; type: "bool" }
|
||||
}
|
||||
Method {
|
||||
name: "standardLocations"
|
||||
type: "QList<QUrl>"
|
||||
Parameter { name: "type"; type: "QStandardPaths::StandardLocation" }
|
||||
}
|
||||
Method {
|
||||
name: "writableLocation"
|
||||
type: "QUrl"
|
||||
Parameter { name: "type"; type: "QStandardPaths::StandardLocation" }
|
||||
}
|
||||
}
|
||||
Component {
|
||||
name: "QQuickPlatformSystemTrayIcon"
|
||||
prototype: "QObject"
|
||||
exports: [
|
||||
"Qt.labs.platform/SystemTrayIcon 1.0",
|
||||
"Qt.labs.platform/SystemTrayIcon 1.1"
|
||||
]
|
||||
exportMetaObjectRevisions: [0, 1]
|
||||
Property { name: "available"; type: "bool"; isReadonly: true }
|
||||
Property { name: "supportsMessages"; type: "bool"; isReadonly: true }
|
||||
Property { name: "visible"; type: "bool" }
|
||||
Property { name: "iconSource"; type: "QUrl" }
|
||||
Property { name: "iconName"; type: "string" }
|
||||
Property { name: "tooltip"; type: "string" }
|
||||
Property { name: "menu"; type: "QQuickPlatformMenu"; isPointer: true }
|
||||
Property { name: "geometry"; revision: 1; type: "QRect"; isReadonly: true }
|
||||
Property { name: "icon"; revision: 1; type: "QQuickPlatformIcon" }
|
||||
Signal {
|
||||
name: "activated"
|
||||
Parameter { name: "reason"; type: "QPlatformSystemTrayIcon::ActivationReason" }
|
||||
}
|
||||
Signal { name: "messageClicked" }
|
||||
Signal { name: "geometryChanged"; revision: 1 }
|
||||
Signal { name: "iconChanged"; revision: 1 }
|
||||
Method { name: "show" }
|
||||
Method { name: "hide" }
|
||||
Method {
|
||||
name: "showMessage"
|
||||
Parameter { name: "title"; type: "string" }
|
||||
Parameter { name: "message"; type: "string" }
|
||||
Parameter { name: "iconType"; type: "QPlatformSystemTrayIcon::MessageIcon" }
|
||||
Parameter { name: "msecs"; type: "int" }
|
||||
}
|
||||
Method {
|
||||
name: "showMessage"
|
||||
Parameter { name: "title"; type: "string" }
|
||||
Parameter { name: "message"; type: "string" }
|
||||
Parameter { name: "iconType"; type: "QPlatformSystemTrayIcon::MessageIcon" }
|
||||
}
|
||||
Method {
|
||||
name: "showMessage"
|
||||
Parameter { name: "title"; type: "string" }
|
||||
Parameter { name: "message"; type: "string" }
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
module Qt.labs.platform
|
||||
plugin qtlabsplatformplugin
|
||||
classname QtLabsPlatformPlugin
|
||||
Binary file not shown.
@@ -0,0 +1,132 @@
|
||||
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 qmltyperegistrar.
|
||||
|
||||
Module {
|
||||
dependencies: []
|
||||
Component {
|
||||
file: "qqmldelegatecomponent_p.h"
|
||||
name: "QQmlDelegateChoice"
|
||||
defaultProperty: "delegate"
|
||||
exports: ["Qt.labs.qmlmodels/DelegateChoice 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "roleValue"; type: "QVariant" }
|
||||
Property { name: "row"; type: "int" }
|
||||
Property { name: "index"; type: "int" }
|
||||
Property { name: "column"; type: "int" }
|
||||
Property { name: "delegate"; type: "QQmlComponent"; isPointer: true }
|
||||
Signal { name: "changed" }
|
||||
}
|
||||
Component {
|
||||
file: "qqmldelegatecomponent_p.h"
|
||||
name: "QQmlDelegateChooser"
|
||||
defaultProperty: "choices"
|
||||
prototype: "QQmlAbstractDelegateComponent"
|
||||
exports: ["Qt.labs.qmlmodels/DelegateChooser 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "role"; type: "string" }
|
||||
Property { name: "choices"; type: "QQmlDelegateChoice"; isList: true; isReadonly: true }
|
||||
}
|
||||
Component {
|
||||
file: "qqmltablemodel_p.h"
|
||||
name: "QQmlTableModel"
|
||||
defaultProperty: "columns"
|
||||
exports: ["Qt.labs.qmlmodels/TableModel 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "columnCount"; type: "int"; isReadonly: true }
|
||||
Property { name: "rowCount"; type: "int"; isReadonly: true }
|
||||
Property { name: "rows"; type: "QVariant" }
|
||||
Property { name: "columns"; type: "QQmlTableModelColumn"; isList: true; isReadonly: true }
|
||||
Method {
|
||||
name: "appendRow"
|
||||
Parameter { name: "row"; type: "QVariant" }
|
||||
}
|
||||
Method { name: "clear" }
|
||||
Method {
|
||||
name: "getRow"
|
||||
type: "QVariant"
|
||||
Parameter { name: "rowIndex"; type: "int" }
|
||||
}
|
||||
Method {
|
||||
name: "insertRow"
|
||||
Parameter { name: "rowIndex"; type: "int" }
|
||||
Parameter { name: "row"; type: "QVariant" }
|
||||
}
|
||||
Method {
|
||||
name: "moveRow"
|
||||
Parameter { name: "fromRowIndex"; type: "int" }
|
||||
Parameter { name: "toRowIndex"; type: "int" }
|
||||
Parameter { name: "rows"; type: "int" }
|
||||
}
|
||||
Method {
|
||||
name: "moveRow"
|
||||
Parameter { name: "fromRowIndex"; type: "int" }
|
||||
Parameter { name: "toRowIndex"; type: "int" }
|
||||
}
|
||||
Method {
|
||||
name: "removeRow"
|
||||
Parameter { name: "rowIndex"; type: "int" }
|
||||
Parameter { name: "rows"; type: "int" }
|
||||
}
|
||||
Method {
|
||||
name: "removeRow"
|
||||
Parameter { name: "rowIndex"; type: "int" }
|
||||
}
|
||||
Method {
|
||||
name: "setRow"
|
||||
Parameter { name: "rowIndex"; type: "int" }
|
||||
Parameter { name: "row"; type: "QVariant" }
|
||||
}
|
||||
Method {
|
||||
name: "data"
|
||||
type: "QVariant"
|
||||
Parameter { name: "index"; type: "QModelIndex" }
|
||||
Parameter { name: "role"; type: "string" }
|
||||
}
|
||||
Method {
|
||||
name: "setData"
|
||||
type: "bool"
|
||||
Parameter { name: "index"; type: "QModelIndex" }
|
||||
Parameter { name: "role"; type: "string" }
|
||||
Parameter { name: "value"; type: "QVariant" }
|
||||
}
|
||||
}
|
||||
Component {
|
||||
file: "qqmltablemodelcolumn_p.h"
|
||||
name: "QQmlTableModelColumn"
|
||||
exports: ["Qt.labs.qmlmodels/TableModelColumn 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "display"; type: "QJSValue" }
|
||||
Property { name: "setDisplay"; type: "QJSValue" }
|
||||
Property { name: "decoration"; type: "QJSValue" }
|
||||
Property { name: "setDecoration"; type: "QJSValue" }
|
||||
Property { name: "edit"; type: "QJSValue" }
|
||||
Property { name: "setEdit"; type: "QJSValue" }
|
||||
Property { name: "toolTip"; type: "QJSValue" }
|
||||
Property { name: "setToolTip"; type: "QJSValue" }
|
||||
Property { name: "statusTip"; type: "QJSValue" }
|
||||
Property { name: "setStatusTip"; type: "QJSValue" }
|
||||
Property { name: "whatsThis"; type: "QJSValue" }
|
||||
Property { name: "setWhatsThis"; type: "QJSValue" }
|
||||
Property { name: "font"; type: "QJSValue" }
|
||||
Property { name: "setFont"; type: "QJSValue" }
|
||||
Property { name: "textAlignment"; type: "QJSValue" }
|
||||
Property { name: "setTextAlignment"; type: "QJSValue" }
|
||||
Property { name: "background"; type: "QJSValue" }
|
||||
Property { name: "setBackground"; type: "QJSValue" }
|
||||
Property { name: "foreground"; type: "QJSValue" }
|
||||
Property { name: "setForeground"; type: "QJSValue" }
|
||||
Property { name: "checkState"; type: "QJSValue" }
|
||||
Property { name: "setCheckState"; type: "QJSValue" }
|
||||
Property { name: "accessibleText"; type: "QJSValue" }
|
||||
Property { name: "setAccessibleText"; type: "QJSValue" }
|
||||
Property { name: "accessibleDescription"; type: "QJSValue" }
|
||||
Property { name: "setAccessibleDescription"; type: "QJSValue" }
|
||||
Property { name: "sizeHint"; type: "QJSValue" }
|
||||
Property { name: "setSizeHint"; type: "QJSValue" }
|
||||
Signal { name: "indexChanged" }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
module Qt.labs.qmlmodels
|
||||
plugin labsmodelsplugin
|
||||
classname QtQmlLabsModelsPlugin
|
||||
Binary file not shown.
@@ -0,0 +1,36 @@
|
||||
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 qmltyperegistrar.
|
||||
|
||||
Module {
|
||||
dependencies: []
|
||||
Component {
|
||||
file: "qqmlsettings_p.h"
|
||||
name: "QQmlSettings"
|
||||
exports: ["Qt.labs.settings/Settings 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "category"; type: "string" }
|
||||
Property { name: "fileName"; type: "string" }
|
||||
Method { name: "_q_propertyChanged" }
|
||||
Method {
|
||||
name: "value"
|
||||
type: "QVariant"
|
||||
Parameter { name: "key"; type: "string" }
|
||||
Parameter { name: "defaultValue"; type: "QVariant" }
|
||||
}
|
||||
Method {
|
||||
name: "value"
|
||||
type: "QVariant"
|
||||
Parameter { name: "key"; type: "string" }
|
||||
}
|
||||
Method {
|
||||
name: "setValue"
|
||||
Parameter { name: "key"; type: "string" }
|
||||
Parameter { name: "value"; type: "QVariant" }
|
||||
}
|
||||
Method { name: "sync" }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
module Qt.labs.settings
|
||||
plugin qmlsettingsplugin
|
||||
classname QmlSettingsPlugin
|
||||
typeinfo plugins.qmltypes
|
||||
Binary file not shown.
@@ -0,0 +1,10 @@
|
||||
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 qmltyperegistrar.
|
||||
|
||||
Module {
|
||||
dependencies: ["QtQuick 2.0"]
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
module Qt.labs.sharedimage
|
||||
plugin sharedimageplugin
|
||||
classname QtQuickSharedImagePlugin
|
||||
Binary file not shown.
@@ -0,0 +1,38 @@
|
||||
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 qmltyperegistrar.
|
||||
|
||||
Module {
|
||||
dependencies: ["QtQuick 2.0"]
|
||||
Component {
|
||||
file: "qwavefrontmesh.h"
|
||||
name: "QWavefrontMesh"
|
||||
prototype: "QQuickShaderEffectMesh"
|
||||
exports: ["Qt.labs.wavefrontmesh/WavefrontMesh 1.0"]
|
||||
exportMetaObjectRevisions: [0]
|
||||
Enum {
|
||||
name: "Error"
|
||||
values: [
|
||||
"NoError",
|
||||
"InvalidSourceError",
|
||||
"UnsupportedFaceShapeError",
|
||||
"UnsupportedIndexSizeError",
|
||||
"FileNotFoundError",
|
||||
"NoAttributesError",
|
||||
"MissingPositionAttributeError",
|
||||
"MissingTextureCoordinateAttributeError",
|
||||
"MissingPositionAndTextureCoordinateAttributesError",
|
||||
"TooManyAttributesError",
|
||||
"InvalidPlaneDefinitionError"
|
||||
]
|
||||
}
|
||||
Property { name: "source"; type: "QUrl" }
|
||||
Property { name: "lastError"; type: "Error"; isReadonly: true }
|
||||
Property { name: "projectionPlaneV"; type: "QVector3D" }
|
||||
Property { name: "projectionPlaneW"; type: "QVector3D" }
|
||||
Method { name: "readData" }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
module Qt.labs.wavefrontmesh
|
||||
plugin qmlwavefrontmeshplugin
|
||||
classname QmlWavefrontMeshPlugin
|
||||
typeinfo plugins.qmltypes
|
||||
@@ -0,0 +1,22 @@
|
||||
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 qmltyperegistrar.
|
||||
|
||||
Module {
|
||||
dependencies: ["QtQuick 2.0"]
|
||||
Component {
|
||||
file: "private/quicktest_p.h"
|
||||
name: "QTestRootObject"
|
||||
exports: ["Qt.test.qtestroot/QTestRootObject 1.0"]
|
||||
isCreatable: false
|
||||
isSingleton: true
|
||||
exportMetaObjectRevisions: [0]
|
||||
Property { name: "windowShown"; type: "bool"; isReadonly: true }
|
||||
Property { name: "hasTestCase"; type: "bool" }
|
||||
Property { name: "defined"; type: "QObject"; isReadonly: true; isPointer: true }
|
||||
Method { name: "quit" }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
module Qt.test.qtestroot
|
||||
typeinfo plugins.qmltypes
|
||||
Reference in New Issue
Block a user