summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.qmake.conf2
-rw-r--r--src/controls/Private/BasicTableView.qml2
-rw-r--r--src/controls/Private/ScrollViewHelper.qml7
-rw-r--r--src/controls/Private/TableViewItemDelegateLoader.qml2
-rw-r--r--src/controls/Private/qquickstyleitem.cpp11
-rw-r--r--src/controls/Private/qquicktreemodeladaptor.cpp4
-rw-r--r--src/controls/plugins.qmltypes1427
-rw-r--r--src/dialogs/DefaultFileDialog.qml3
-rw-r--r--src/dialogs/Private/plugins.qmltypes267
-rw-r--r--src/dialogs/plugins.qmltypes2328
-rw-r--r--src/dialogs/qquickabstractfiledialog.cpp2
-rw-r--r--src/extras/Styles/Flat/plugins.qmltypes0
-rw-r--r--src/extras/plugins.qmltypes40
-rw-r--r--src/widgets/plugins.qmltypes9
-rw-r--r--src/widgets/widgetsplugin.cpp9
-rw-r--r--tests/auto/controls/data/tst_scrollview.qml10
-rw-r--r--tests/auto/dialogs/tst_dialogs.cpp4
-rw-r--r--tests/auto/qquicktreemodeladaptor/tst_qquicktreemodeladaptor.cpp2
18 files changed, 1174 insertions, 2955 deletions
diff --git a/.qmake.conf b/.qmake.conf
index b47ca20b..1bc14c0d 100644
--- a/.qmake.conf
+++ b/.qmake.conf
@@ -2,4 +2,4 @@ load(qt_build_config)
CONFIG += warning_clean
android|ios|qnx|isEmpty(QT.widgets.name): CONFIG += no_desktop
-MODULE_VERSION = 5.12.3
+MODULE_VERSION = 5.13.0
diff --git a/src/controls/Private/BasicTableView.qml b/src/controls/Private/BasicTableView.qml
index 37ecabbf..bc044eeb 100644
--- a/src/controls/Private/BasicTableView.qml
+++ b/src/controls/Private/BasicTableView.qml
@@ -341,7 +341,6 @@ ScrollView {
var col = getColumn(i)
var header = __listView.headerItem.headerRepeater.itemAt(i)
if (col) {
- col.__index = i
col.resizeToContents()
if (col.width < header.implicitWidth)
col.width = header.implicitWidth
@@ -613,7 +612,6 @@ ScrollView {
onItemAdded: {
var columnItem = columnModel.get(index).columnItem
- item.__index = index
item.__rowItem = rowitem
item.__column = columnItem
}
diff --git a/src/controls/Private/ScrollViewHelper.qml b/src/controls/Private/ScrollViewHelper.qml
index 53050108..4f1d59f0 100644
--- a/src/controls/Private/ScrollViewHelper.qml
+++ b/src/controls/Private/ScrollViewHelper.qml
@@ -78,6 +78,8 @@ Item {
scrollHelper.availableWidth = viewport.width
scrollHelper.availableHeight = viewport.height
blockUpdates = false;
+ hscrollbar.valueChanged();
+ vscrollbar.valueChanged();
}
}
@@ -133,8 +135,11 @@ Item {
anchors.leftMargin: leftMargin
anchors.bottomMargin: bottomMargin
onScrollAmountChanged: {
+ var scrollableAmount = scrollable ? scrollAmount : 0
if (flickableItem && (flickableItem.atXBeginning || flickableItem.atXEnd)) {
- value = flickableItem.contentX - flickableItem.originX
+ value = Math.min(scrollableAmount, flickableItem.contentX - flickableItem.originX);
+ } else if (value > scrollableAmount) {
+ value = scrollableAmount;
}
}
onValueChanged: {
diff --git a/src/controls/Private/TableViewItemDelegateLoader.qml b/src/controls/Private/TableViewItemDelegateLoader.qml
index 462a2bb4..c5c6584a 100644
--- a/src/controls/Private/TableViewItemDelegateLoader.qml
+++ b/src/controls/Private/TableViewItemDelegateLoader.qml
@@ -71,7 +71,7 @@ Loader {
: __column && __column.delegate ? __column.delegate : __itemDelegate
// All these properties are internal
- property int __index
+ property int __index: index
property Item __rowItem: null
property var __model: __rowItem ? __rowItem.itemModel : undefined
property var __modelData: __rowItem ? __rowItem.itemModelData : undefined
diff --git a/src/controls/Private/qquickstyleitem.cpp b/src/controls/Private/qquickstyleitem.cpp
index 1e53fa69..f9596d35 100644
--- a/src/controls/Private/qquickstyleitem.cpp
+++ b/src/controls/Private/qquickstyleitem.cpp
@@ -919,7 +919,7 @@ QSize QQuickStyleItem1::sizeFromContents(int width, int height)
}
if (btn->toolButtonStyle != Qt::ToolButtonIconOnly) {
QSize textSize = btn->fontMetrics.size(Qt::TextShowMnemonic, btn->text);
- textSize.setWidth(textSize.width() + btn->fontMetrics.width(QLatin1Char(' '))*2);
+ textSize.setWidth(textSize.width() + btn->fontMetrics.horizontalAdvance(QLatin1Char(' '))*2);
if (btn->toolButtonStyle == Qt::ToolButtonTextUnderIcon) {
h += 4 + textSize.height();
if (textSize.width() > w)
@@ -939,7 +939,7 @@ QSize QQuickStyleItem1::sizeFromContents(int width, int height)
case Button: {
QStyleOptionButton *btn = qstyleoption_cast<QStyleOptionButton*>(m_styleoption);
- int contentWidth = btn->fontMetrics.width(btn->text);
+ int contentWidth = btn->fontMetrics.horizontalAdvance(btn->text);
int contentHeight = btn->fontMetrics.height();
if (!btn->icon.isNull()) {
//+4 matches a hardcoded value in QStyle and acts as a margin between the icon and the text.
@@ -958,7 +958,7 @@ QSize QQuickStyleItem1::sizeFromContents(int width, int height)
break;
case ComboBox: {
QStyleOptionComboBox *btn = qstyleoption_cast<QStyleOptionComboBox*>(m_styleoption);
- int newWidth = qMax(width, btn->fontMetrics.width(btn->currentText));
+ int newWidth = qMax(width, btn->fontMetrics.horizontalAdvance(btn->currentText));
int newHeight = qMax(height, btn->fontMetrics.height());
size = qApp->style()->sizeFromContents(QStyle::CT_ComboBox, m_styleoption, QSize(newWidth, newHeight)); }
break;
@@ -1007,7 +1007,8 @@ QSize QQuickStyleItem1::sizeFromContents(int width, int height)
case GroupBox: {
QStyleOptionGroupBox *box = qstyleoption_cast<QStyleOptionGroupBox*>(m_styleoption);
QFontMetrics metrics(box->fontMetrics);
- int baseWidth = metrics.width(box->text) + metrics.width(QLatin1Char(' '));
+ int baseWidth = metrics.horizontalAdvance(box->text)
+ + metrics.horizontalAdvance(QLatin1Char(' '));
int baseHeight = metrics.height() + m_contentHeight;
if (box->subControls & QStyle::SC_GroupBoxCheckBox) {
baseWidth += qApp->style()->pixelMetric(QStyle::PM_IndicatorWidth);
@@ -1466,7 +1467,7 @@ void QQuickStyleItem1::paint(QPainter *painter)
QPixmap pixmap;
// Only draw through style once
const QString pmKey = QLatin1Literal("itemrow") % QString::number(m_styleoption->state,16) % activeControl();
- if (!QPixmapCache::find(pmKey, pixmap) || pixmap.width() < width() || height() != pixmap.height()) {
+ if (!QPixmapCache::find(pmKey, &pixmap) || pixmap.width() < width() || height() != pixmap.height()) {
int newSize = width();
pixmap = QPixmap(newSize, height());
pixmap.fill(Qt::transparent);
diff --git a/src/controls/Private/qquicktreemodeladaptor.cpp b/src/controls/Private/qquicktreemodeladaptor.cpp
index 287b388f..c2c36494 100644
--- a/src/controls/Private/qquicktreemodeladaptor.cpp
+++ b/src/controls/Private/qquicktreemodeladaptor.cpp
@@ -741,13 +741,13 @@ void QQuickTreeModelAdaptor1::modelRowsAboutToBeMoved(const QModelIndex & source
int bufferCopyOffset;
if (destIndex > endIndex) {
for (int i = endIndex + 1; i < destIndex; i++) {
- m_items.swap(i, i - totalMovedCount); // Fast move from 1st to 2nd position
+ m_items.swapItemsAt(i, i - totalMovedCount); // Fast move from 1st to 2nd position
}
bufferCopyOffset = destIndex - totalMovedCount;
} else {
// NOTE: we will not enter this loop if startIndex == destIndex
for (int i = startIndex - 1; i >= destIndex; i--) {
- m_items.swap(i, i + totalMovedCount); // Fast move from 1st to 2nd position
+ m_items.swapItemsAt(i, i + totalMovedCount); // Fast move from 1st to 2nd position
}
bufferCopyOffset = destIndex;
}
diff --git a/src/controls/plugins.qmltypes b/src/controls/plugins.qmltypes
index 58b9c6cd..db5788a5 100644
--- a/src/controls/plugins.qmltypes
+++ b/src/controls/plugins.qmltypes
@@ -8,7 +8,7 @@ import QtQuick.tooling 1.2
Module {
dependencies: [
- "QtGraphicalEffects 1.0",
+ "QtGraphicalEffects 1.12",
"QtQml.Models 2.2",
"QtQuick 2.9",
"QtQuick.Controls.Styles 1.4",
@@ -86,7 +86,7 @@ Module {
}
Method {
name: "dateAt"
- type: "QDate"
+ type: "QDateTime"
Parameter { name: "index"; type: "int" }
}
Method {
@@ -416,9 +416,9 @@ Module {
prototype: "QObject"
exports: ["QtQuick.Controls.Private/RangedDate 1.0"]
exportMetaObjectRevisions: [0]
- Property { name: "date"; type: "QDate" }
- Property { name: "minimumDate"; type: "QDate" }
- Property { name: "maximumDate"; type: "QDate" }
+ Property { name: "date"; type: "QDateTime" }
+ Property { name: "minimumDate"; type: "QDateTime" }
+ Property { name: "maximumDate"; type: "QDateTime" }
}
Component {
name: "QQuickScenePosListener1"
@@ -686,6 +686,21 @@ Module {
Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
}
Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/ApplicationWindowStyle 1.3"
+ exports: ["QtQuick.Controls.Styles/ApplicationWindowStyle 1.3"]
+ exportMetaObjectRevisions: [3]
+ isComposite: true
+ Property {
+ name: "control"
+ type: "ApplicationWindow_QMLTYPE_11"
+ isReadonly: true
+ isPointer: true
+ }
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ }
+ Component {
prototype: "QQuickFocusScope"
name: "QtQuick.Controls/BusyIndicator 1.1"
exports: ["QtQuick.Controls/BusyIndicator 1.1"]
@@ -700,6 +715,19 @@ Module {
Property { name: "__styleData"; type: "QObject"; isPointer: true }
}
Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/BusyIndicatorStyle 1.1"
+ exports: ["QtQuick.Controls.Styles/BusyIndicatorStyle 1.1"]
+ exportMetaObjectRevisions: [1]
+ isComposite: true
+ defaultProperty: "data"
+ Property { name: "control"; type: "BusyIndicator_QMLTYPE_18"; isReadonly: true; isPointer: true }
+ Property { name: "indicator"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ }
+ Component {
prototype: "QQuickFocusScope"
name: "QtQuick.Controls/Button 1.0"
exports: ["QtQuick.Controls/Button 1.0"]
@@ -734,10 +762,24 @@ Module {
Property { name: "__styleData"; type: "QObject"; isPointer: true }
}
Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/ButtonStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/ButtonStyle 1.0"]
+ exportMetaObjectRevisions: [0]
+ isComposite: true
+ defaultProperty: "data"
+ Property { name: "control"; type: "Button_QMLTYPE_52"; isReadonly: true; isPointer: true }
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "label"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ }
+ Component {
prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/Calendar 1.2"
- exports: ["QtQuick.Controls/Calendar 1.2"]
- exportMetaObjectRevisions: [2]
+ name: "QtQuick.Controls/Calendar 1.6"
+ exports: ["QtQuick.Controls/Calendar 1.6"]
+ exportMetaObjectRevisions: [6]
isComposite: true
defaultProperty: "data"
Property { name: "visibleMonth"; type: "int" }
@@ -748,9 +790,9 @@ Module {
Property { name: "dayOfWeekFormat"; type: "int" }
Property { name: "locale"; type: "QVariant" }
Property { name: "__model"; type: "QQuickCalendarModel1"; isPointer: true }
- Property { name: "selectedDate"; type: "QDate" }
- Property { name: "minimumDate"; type: "QDate" }
- Property { name: "maximumDate"; type: "QDate" }
+ Property { name: "selectedDate"; type: "QDateTime" }
+ Property { name: "minimumDate"; type: "QDateTime" }
+ Property { name: "maximumDate"; type: "QDateTime" }
Property { name: "__locale"; type: "QVariant" }
Signal {
name: "hovered"
@@ -796,9 +838,9 @@ Module {
}
Component {
prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/Calendar 1.6"
- exports: ["QtQuick.Controls/Calendar 1.6"]
- exportMetaObjectRevisions: [6]
+ name: "QtQuick.Controls/Calendar 1.2"
+ exports: ["QtQuick.Controls/Calendar 1.2"]
+ exportMetaObjectRevisions: [2]
isComposite: true
defaultProperty: "data"
Property { name: "visibleMonth"; type: "int" }
@@ -809,9 +851,9 @@ Module {
Property { name: "dayOfWeekFormat"; type: "int" }
Property { name: "locale"; type: "QVariant" }
Property { name: "__model"; type: "QQuickCalendarModel1"; isPointer: true }
- Property { name: "selectedDate"; type: "QDate" }
- Property { name: "minimumDate"; type: "QDate" }
- Property { name: "maximumDate"; type: "QDate" }
+ Property { name: "selectedDate"; type: "QDateTime" }
+ Property { name: "minimumDate"; type: "QDateTime" }
+ Property { name: "maximumDate"; type: "QDateTime" }
Property { name: "__locale"; type: "QVariant" }
Signal {
name: "hovered"
@@ -856,6 +898,38 @@ Module {
Property { name: "__styleData"; type: "QObject"; isPointer: true }
}
Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/CalendarStyle 1.1"
+ exports: ["QtQuick.Controls.Styles/CalendarStyle 1.1"]
+ exportMetaObjectRevisions: [1]
+ isComposite: true
+ defaultProperty: "data"
+ Property { name: "control"; type: "Calendar_QMLTYPE_56"; isReadonly: true; isPointer: true }
+ Property { name: "gridColor"; type: "QColor" }
+ Property { name: "gridVisible"; type: "bool" }
+ Property { name: "__gridLineWidth"; type: "double" }
+ Property { name: "__horizontalSeparatorColor"; type: "QColor" }
+ Property { name: "__verticalSeparatorColor"; type: "QColor" }
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "navigationBar"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "dayDelegate"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "dayOfWeekDelegate"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "weekNumberDelegate"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Method {
+ name: "__cellRectAt"
+ type: "QVariant"
+ Parameter { name: "index"; type: "QVariant" }
+ }
+ Method {
+ name: "__isValidDate"
+ type: "QVariant"
+ Parameter { name: "date"; type: "QVariant" }
+ }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ }
+ Component {
prototype: "QQuickFocusScope"
name: "QtQuick.Controls/CheckBox 1.0"
exports: ["QtQuick.Controls/CheckBox 1.0"]
@@ -883,113 +957,54 @@ Module {
Property { name: "__styleData"; type: "QObject"; isPointer: true }
}
Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras.Private/CircularButton 1.0"
- exports: ["QtQuick.Extras.Private/CircularButton 1.0"]
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/CheckBoxStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/CheckBoxStyle 1.0"]
exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
- Property { name: "isDefault"; type: "bool" }
- Property { name: "menu"; type: "Menu_QMLTYPE_48"; isPointer: true }
- Property { name: "checkable"; type: "bool" }
- Property { name: "checked"; type: "bool" }
- Property { name: "exclusiveGroup"; type: "QQuickExclusiveGroup1"; isPointer: true }
- Property { name: "action"; type: "QQuickAction1"; isPointer: true }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "text"; type: "string" }
- Property { name: "tooltip"; type: "string" }
- Property { name: "iconSource"; type: "QUrl" }
- Property { name: "iconName"; type: "string" }
- Property { name: "__position"; type: "string" }
- Property { name: "__iconOverriden"; type: "bool"; isReadonly: true }
- Property { name: "__action"; type: "QQuickAction1"; isPointer: true }
- Property { name: "__iconAction"; type: "QQuickAction1"; isReadonly: true; isPointer: true }
- Property { name: "__behavior"; type: "QVariant" }
- Property { name: "__effectivePressed"; type: "bool" }
- Property { name: "pressed"; type: "bool"; isReadonly: true }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Signal { name: "clicked" }
- Method { name: "accessiblePressAction"; type: "QVariant" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
+ Property { name: "control"; type: "CheckBox_QMLTYPE_75"; isReadonly: true; isPointer: true }
+ Property { name: "label"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "spacing"; type: "int" }
+ Property { name: "indicator"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
}
Component {
prototype: "QObject"
- name: "QtQuick.Extras.Private/CircularButtonStyleHelper 1.0"
- exports: ["QtQuick.Extras.Private/CircularButtonStyleHelper 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- Property { name: "control"; type: "QQuickItem"; isPointer: true }
- Property { name: "buttonColorUpTop"; type: "QColor" }
- Property { name: "buttonColorUpBottom"; type: "QColor" }
- Property { name: "buttonColorDownTop"; type: "QColor" }
- Property { name: "buttonColorDownBottom"; type: "QColor" }
- Property { name: "outerArcColorTop"; type: "QColor" }
- Property { name: "outerArcColorBottom"; type: "QColor" }
- Property { name: "innerArcColorTop"; type: "QColor" }
- Property { name: "innerArcColorBottom"; type: "QColor" }
- Property { name: "innerArcColorBottomStop"; type: "double" }
- Property { name: "shineColor"; type: "QColor" }
- Property { name: "smallestAxis"; type: "double" }
- Property { name: "outerArcLineWidth"; type: "double" }
- Property { name: "innerArcLineWidth"; type: "double" }
- Property { name: "shineArcLineWidth"; type: "double" }
- Property { name: "implicitWidth"; type: "double" }
- Property { name: "implicitHeight"; type: "double" }
- Property { name: "textColorUp"; type: "QColor" }
- Property { name: "textColorDown"; type: "QColor" }
- Property { name: "textRaisedColorUp"; type: "QColor" }
- Property { name: "textRaisedColorDown"; type: "QColor" }
- Property { name: "radius"; type: "double" }
- Property { name: "halfRadius"; type: "double" }
- Property { name: "outerArcRadius"; type: "double" }
- Property { name: "innerArcRadius"; type: "double" }
- Property { name: "shineArcRadius"; type: "double" }
- Property { name: "zeroAngle"; type: "double" }
- Property { name: "buttonColorTop"; type: "QColor" }
- Property { name: "buttonColorBottom"; type: "QColor" }
- Method {
- name: "toPixels"
- type: "QVariant"
- Parameter { name: "percentageOfSmallestAxis"; type: "QVariant" }
- }
- Method {
- name: "paintBackground"
- type: "QVariant"
- Parameter { name: "ctx"; type: "QVariant" }
- }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/CircularGauge 1.0"
- exports: ["QtQuick.Extras/CircularGauge 1.0"]
+ name: "QtQuick.Controls.Styles/CircularButtonStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/CircularButtonStyle 1.0"]
exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
- Property { name: "tickmarksVisible"; type: "bool" }
- Property { name: "minimumValue"; type: "double" }
- Property { name: "maximumValue"; type: "double" }
- Property { name: "value"; type: "double" }
- Property { name: "stepSize"; type: "double" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
+ Property {
+ name: "__buttonHelper"
+ type: "CircularButtonStyleHelper_QMLTYPE_79"
+ isReadonly: true
+ isPointer: true
+ }
+ Property { name: "control"; type: "Button_QMLTYPE_52"; isReadonly: true; isPointer: true }
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "label"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
}
Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras.Private/CircularTickmarkLabel 1.0"
- exports: ["QtQuick.Extras.Private/CircularTickmarkLabel 1.0"]
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/CircularGaugeStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/CircularGaugeStyle 1.0"]
exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
+ Property { name: "control"; type: "CircularGauge_QMLTYPE_82"; isReadonly: true; isPointer: true }
+ Property { name: "outerRadius"; type: "double"; isReadonly: true }
Property { name: "minimumValueAngle"; type: "double" }
Property { name: "maximumValueAngle"; type: "double" }
Property { name: "angleRange"; type: "double"; isReadonly: true }
+ Property { name: "needleRotation"; type: "double" }
Property { name: "tickmarkStepSize"; type: "double" }
Property { name: "tickmarkInset"; type: "double" }
Property { name: "tickmarkCount"; type: "int"; isReadonly: true }
@@ -998,21 +1013,38 @@ Module {
Property { name: "labelInset"; type: "double" }
Property { name: "labelStepSize"; type: "double" }
Property { name: "labelCount"; type: "int"; isReadonly: true }
- Property { name: "__tickmarkCount"; type: "double"; isReadonly: true }
- Property { name: "tickmarksVisible"; type: "bool" }
- Property { name: "minimumValue"; type: "double" }
- Property { name: "maximumValue"; type: "double" }
- Property { name: "stepSize"; type: "double" }
+ Property { name: "__protectedScope"; type: "QObject"; isPointer: true }
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "tickmark"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "minorTickmark"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "tickmarkLabel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "needle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "foreground"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
Method {
name: "valueToAngle"
type: "QVariant"
Parameter { name: "value"; type: "QVariant" }
}
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ }
+ Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/CircularTickmarkLabelStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/CircularTickmarkLabelStyle 1.0"]
+ exportMetaObjectRevisions: [0]
+ isComposite: true
+ defaultProperty: "data"
+ Property { name: "outerRadius"; type: "double"; isReadonly: true }
+ Property { name: "__protectedScope"; type: "QObject"; isPointer: true }
+ Property { name: "tickmark"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "minorTickmark"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "tickmarkLabel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "control"; type: "QQuickItem"; isReadonly: true; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
}
Component {
prototype: "QQuickFocusScope"
@@ -1063,111 +1095,130 @@ Module {
Property { name: "__styleData"; type: "QObject"; isPointer: true }
}
Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/DelayButton 1.0"
- exports: ["QtQuick.Extras/DelayButton 1.0"]
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/ComboBoxStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/ComboBoxStyle 1.0"]
exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
- Property { name: "delay"; type: "int" }
- Property { name: "__progress"; type: "double" }
- Property { name: "progress"; type: "double"; isReadonly: true }
- Signal { name: "activated" }
- Property { name: "isDefault"; type: "bool" }
- Property { name: "menu"; type: "Menu_QMLTYPE_48"; isPointer: true }
- Property { name: "checkable"; type: "bool" }
- Property { name: "checked"; type: "bool" }
- Property { name: "exclusiveGroup"; type: "QQuickExclusiveGroup1"; isPointer: true }
- Property { name: "action"; type: "QQuickAction1"; isPointer: true }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "text"; type: "string" }
- Property { name: "tooltip"; type: "string" }
- Property { name: "iconSource"; type: "QUrl" }
- Property { name: "iconName"; type: "string" }
- Property { name: "__position"; type: "string" }
- Property { name: "__iconOverriden"; type: "bool"; isReadonly: true }
- Property { name: "__action"; type: "QQuickAction1"; isPointer: true }
- Property { name: "__iconAction"; type: "QQuickAction1"; isReadonly: true; isPointer: true }
- Property { name: "__behavior"; type: "QVariant" }
- Property { name: "__effectivePressed"; type: "bool" }
- Property { name: "pressed"; type: "bool"; isReadonly: true }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Signal { name: "clicked" }
- Method { name: "accessiblePressAction"; type: "QVariant" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
+ Property { name: "renderType"; type: "int" }
+ Property { name: "font"; type: "QFont" }
+ Property { name: "textColor"; type: "QColor" }
+ Property { name: "selectionColor"; type: "QColor" }
+ Property { name: "selectedTextColor"; type: "QColor" }
+ Property { name: "control"; type: "ComboBox_QMLTYPE_103"; isReadonly: true; isPointer: true }
+ Property { name: "dropDownButtonWidth"; type: "int" }
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__editor"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "label"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__dropDownStyle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__popupStyle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__cursorHandle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__selectionHandle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__cursorDelegate"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "drowDownButtonWidth"; type: "int" }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
}
Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/Dial 1.0"
- exports: ["QtQuick.Extras/Dial 1.0"]
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/CommonStyleHelper 1.0"
+ exports: ["QtQuick.Controls.Styles/CommonStyleHelper 1.0"]
+ exportMetaObjectRevisions: [0]
+ isComposite: true
+ Property { name: "control"; type: "QQuickItem"; isPointer: true }
+ Property { name: "buttonColorUpTop"; type: "QColor" }
+ Property { name: "buttonColorUpBottom"; type: "QColor" }
+ Property { name: "buttonColorDownTop"; type: "QColor" }
+ Property { name: "buttonColorDownBottom"; type: "QColor" }
+ Property { name: "textColorUp"; type: "QColor" }
+ Property { name: "textColorDown"; type: "QColor" }
+ Property { name: "textRaisedColorUp"; type: "QColor" }
+ Property { name: "textRaisedColorDown"; type: "QColor" }
+ Property { name: "offColor"; type: "QColor" }
+ Property { name: "offColorShine"; type: "QColor" }
+ Property { name: "onColor"; type: "QColor" }
+ Property { name: "onColorShine"; type: "QColor" }
+ Property { name: "inactiveColor"; type: "QColor" }
+ Property { name: "inactiveColorShine"; type: "QColor" }
+ }
+ Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/DelayButtonStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/DelayButtonStyle 1.0"]
exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
- Property { name: "__wrap"; type: "bool" }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "tickmarksVisible"; type: "bool" }
- Property { name: "value"; type: "double" }
- Property { name: "minimumValue"; type: "double" }
- Property { name: "maximumValue"; type: "double" }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Property { name: "stepSize"; type: "double" }
- Property { name: "pressed"; type: "bool"; isReadonly: true }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
+ Property { name: "control"; type: "DelayButton_QMLTYPE_141"; isReadonly: true; isPointer: true }
+ Property { name: "progressBarGradient"; type: "QQuickGradient"; isPointer: true }
+ Property { name: "progressBarDropShadowColor"; type: "QColor" }
+ Property { name: "foreground"; type: "QQmlComponent"; isPointer: true }
+ Property {
+ name: "__buttonHelper"
+ type: "CircularButtonStyleHelper_QMLTYPE_79"
+ isReadonly: true
+ isPointer: true
+ }
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "label"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
}
Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/Dial 1.1"
- exports: ["QtQuick.Extras/Dial 1.1"]
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/DialStyle 1.1"
+ exports: ["QtQuick.Controls.Styles/DialStyle 1.1"]
exportMetaObjectRevisions: [1]
isComposite: true
defaultProperty: "data"
- Property { name: "__wrap"; type: "bool" }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "tickmarksVisible"; type: "bool" }
- Property { name: "value"; type: "double" }
- Property { name: "minimumValue"; type: "double" }
- Property { name: "maximumValue"; type: "double" }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Property { name: "stepSize"; type: "double" }
- Property { name: "pressed"; type: "bool"; isReadonly: true }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
+ Property { name: "control"; type: "Dial_QMLTYPE_144"; isReadonly: true; isPointer: true }
+ Property { name: "outerRadius"; type: "double"; isReadonly: true }
+ Property { name: "handleInset"; type: "double" }
+ Property { name: "tickmarkStepSize"; type: "double" }
+ Property { name: "tickmarkInset"; type: "double" }
+ Property { name: "tickmarkCount"; type: "int"; isReadonly: true }
+ Property { name: "minorTickmarkCount"; type: "int" }
+ Property { name: "minorTickmarkInset"; type: "double" }
+ Property { name: "labelInset"; type: "double" }
+ Property { name: "labelStepSize"; type: "double" }
+ Property { name: "labelCount"; type: "int"; isReadonly: true }
+ Property { name: "__tickmarkRadius"; type: "double"; isReadonly: true }
+ Property { name: "__handleRadius"; type: "double"; isReadonly: true }
+ Property { name: "__dragToSet"; type: "bool" }
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "handle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "tickmark"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "minorTickmark"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "tickmarkLabel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Method {
+ name: "valueToAngle"
+ type: "QVariant"
+ Parameter { name: "value"; type: "QVariant" }
+ }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
}
Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/Gauge 1.0"
- exports: ["QtQuick.Extras/Gauge 1.0"]
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/GaugeStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/GaugeStyle 1.0"]
exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
- Property { name: "orientation"; type: "int" }
- Property { name: "tickmarkAlignment"; type: "int" }
- Property { name: "__tickmarkAlignment"; type: "int" }
- Property { name: "__tickmarksInside"; type: "bool" }
- Property { name: "tickmarkStepSize"; type: "double" }
- Property { name: "minorTickmarkCount"; type: "int" }
- Property { name: "formatValue"; type: "QVariant" }
- Property { name: "minimumValue"; type: "double" }
- Property { name: "value"; type: "double" }
- Property { name: "maximumValue"; type: "double" }
- Property { name: "font"; type: "QFont" }
- Property { name: "__hiddenText"; type: "QQuickText"; isReadonly: true; isPointer: true }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
+ Property { name: "control"; type: "Gauge_QMLTYPE_152"; isReadonly: true; isPointer: true }
+ Property { name: "valuePosition"; type: "double"; isReadonly: true }
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "tickmark"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "minorTickmark"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "tickmarkLabel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "valueBar"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "foreground"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
}
Component {
prototype: "QQuickFocusScope"
@@ -1183,10 +1234,47 @@ Module {
Property { name: "checked"; type: "bool" }
Property { name: "__content"; type: "QObject"; isList: true; isReadonly: true }
Property { name: "contentItem"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Property { name: "__checkbox"; type: "CheckBox_QMLTYPE_74"; isReadonly: true; isPointer: true }
+ Property { name: "__checkbox"; type: "CheckBox_QMLTYPE_75"; isReadonly: true; isPointer: true }
Property { name: "__style"; type: "QObject"; isReadonly: true; isPointer: true }
}
Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/HandleStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/HandleStyle 1.0"]
+ exportMetaObjectRevisions: [0]
+ isComposite: true
+ defaultProperty: "data"
+ Property { name: "handle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "handleColorTop"; type: "QColor" }
+ Property { name: "handleColorBottom"; type: "QColor" }
+ Property { name: "handleColorBottomStop"; type: "double" }
+ Property { name: "control"; type: "QQuickItem"; isReadonly: true; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ }
+ Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/HandleStyleHelper 1.0"
+ exports: ["QtQuick.Controls.Styles/HandleStyleHelper 1.0"]
+ exportMetaObjectRevisions: [0]
+ isComposite: true
+ Property { name: "handleColorTop"; type: "QColor" }
+ Property { name: "handleColorBottom"; type: "QColor" }
+ Property { name: "handleColorBottomStop"; type: "double" }
+ Property { name: "handleRingColorTop"; type: "QColor" }
+ Property { name: "handleRingColorBottom"; type: "QColor" }
+ Method {
+ name: "paintHandle"
+ type: "QVariant"
+ Parameter { name: "ctx"; type: "QVariant" }
+ Parameter { name: "handleX"; type: "QVariant" }
+ Parameter { name: "handleY"; type: "QVariant" }
+ Parameter { name: "handleWidth"; type: "QVariant" }
+ Parameter { name: "handleHeight"; type: "QVariant" }
+ }
+ }
+ Component {
prototype: "QQuickText"
name: "QtQuick.Controls/Label 1.0"
exports: ["QtQuick.Controls/Label 1.0"]
@@ -1305,60 +1393,113 @@ Module {
Signal { name: "contentItemChanged" }
}
Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/PieMenu 1.0"
- exports: ["QtQuick.Extras/PieMenu 1.0"]
- exportMetaObjectRevisions: [0]
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/MenuBarStyle 1.2"
+ exports: ["QtQuick.Controls.Styles/MenuBarStyle 1.2"]
+ exportMetaObjectRevisions: [2]
isComposite: true
- defaultProperty: "menuItems"
- Property { name: "selectionAngle"; type: "double"; isReadonly: true }
- Property { name: "triggerMode"; type: "int" }
- Property { name: "title"; type: "string" }
- Property { name: "boundingItem"; type: "QQuickItem"; isPointer: true }
- Property { name: "__protectedScope"; type: "QObject"; isPointer: true }
- Property { name: "activationMode"; type: "int" }
- Property { name: "menuItems"; type: "QQuickMenuItem1"; isList: true; isReadonly: true }
- Property { name: "currentIndex"; type: "int"; isReadonly: true }
- Property { name: "currentItem"; type: "QQuickMenuItem1"; isReadonly: true; isPointer: true }
- Property { name: "__mouseThief"; type: "QQuickMouseThief"; isReadonly: true; isPointer: true }
+ defaultProperty: "data"
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "itemDelegate"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "menuStyle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "font"; type: "QFont" }
+ Property { name: "__isNative"; type: "bool" }
Method {
- name: "popup"
+ name: "formatMnemonic"
type: "QVariant"
- Parameter { name: "x"; type: "QVariant" }
- Parameter { name: "y"; type: "QVariant" }
+ Parameter { name: "text"; type: "QVariant" }
+ Parameter { name: "underline"; type: "QVariant" }
+ }
+ Property { name: "control"; type: "QQuickItem"; isReadonly: true; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ }
+ Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/MenuStyle 1.2"
+ exports: ["QtQuick.Controls.Styles/MenuStyle 1.2"]
+ exportMetaObjectRevisions: [2]
+ isComposite: true
+ defaultProperty: "data"
+ Property { name: "submenuOverlap"; type: "int" }
+ Property { name: "submenuPopupDelay"; type: "int" }
+ Property { name: "frame"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "separator"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "scrollIndicator"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "font"; type: "QFont" }
+ Property { name: "__menuItemType"; type: "string" }
+ Property { name: "__backgroundColor"; type: "QColor" }
+ Property { name: "__borderColor"; type: "QColor" }
+ Property { name: "__maxPopupHeight"; type: "int" }
+ Property { name: "__selectedBackgroundColor"; type: "QColor" }
+ Property { name: "__labelColor"; type: "QColor" }
+ Property { name: "__selectedLabelColor"; type: "QColor" }
+ Property { name: "__disabledLabelColor"; type: "QColor" }
+ Property { name: "__mirrored"; type: "bool"; isReadonly: true }
+ Property { name: "__leftLabelMargin"; type: "int" }
+ Property { name: "__rightLabelMargin"; type: "int" }
+ Property { name: "__minRightLabelSpacing"; type: "int" }
+ Property { name: "__scrollerStyle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "menuItemPanel"; type: "QQmlComponent"; isPointer: true }
+ Property {
+ name: "itemDelegate"
+ type: "MenuItemSubControls_QMLTYPE_108"
+ isReadonly: true
+ isPointer: true
}
Method {
- name: "addItem"
+ name: "formatMnemonic"
type: "QVariant"
Parameter { name: "text"; type: "QVariant" }
+ Parameter { name: "underline"; type: "QVariant" }
+ }
+ Property { name: "control"; type: "QQuickItem"; isReadonly: true; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ }
+ Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/PieMenuStyle 1.3"
+ exports: ["QtQuick.Controls.Styles/PieMenuStyle 1.3"]
+ exportMetaObjectRevisions: [3]
+ isComposite: true
+ defaultProperty: "data"
+ Property { name: "control"; type: "PieMenu_QMLTYPE_171"; isReadonly: true; isPointer: true }
+ Property { name: "backgroundColor"; type: "QColor" }
+ Property { name: "selectionColor"; type: "QColor" }
+ Property { name: "shadowColor"; type: "QColor" }
+ Property { name: "shadowRadius"; type: "double" }
+ Property { name: "shadowSpread"; type: "double" }
+ Property { name: "radius"; type: "double"; isReadonly: true }
+ Property { name: "cancelRadius"; type: "double" }
+ Property { name: "startAngle"; type: "double" }
+ Property { name: "endAngle"; type: "double" }
+ Property { name: "__iconOffset"; type: "double"; isReadonly: true }
+ Property { name: "__selectableRadius"; type: "double"; isReadonly: true }
+ Property { name: "__implicitWidth"; type: "int" }
+ Property { name: "__implicitHeight"; type: "int" }
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "cancel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "title"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "menuItem"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Method {
+ name: "sectionStartAngle"
+ type: "QVariant"
+ Parameter { name: "itemIndex"; type: "QVariant" }
}
Method {
- name: "insertItem"
+ name: "sectionCenterAngle"
type: "QVariant"
- Parameter { name: "before"; type: "QVariant" }
- Parameter { name: "text"; type: "QVariant" }
+ Parameter { name: "itemIndex"; type: "QVariant" }
}
Method {
- name: "removeItem"
+ name: "sectionEndAngle"
type: "QVariant"
- Parameter { name: "item"; type: "QVariant" }
+ Parameter { name: "itemIndex"; type: "QVariant" }
}
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickLoader"
- name: "QtQuick.Extras.Private/PieMenuIcon 1.0"
- exports: ["QtQuick.Extras.Private/PieMenuIcon 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "control"; type: "PieMenu_QMLTYPE_168"; isPointer: true }
- Property { name: "styleData"; type: "QObject"; isPointer: true }
- Property { name: "iconSource"; type: "string"; isReadonly: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
}
Component {
prototype: "QQuickFocusScope"
@@ -1386,6 +1527,21 @@ Module {
Property { name: "__styleData"; type: "QObject"; isPointer: true }
}
Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/ProgressBarStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/ProgressBarStyle 1.0"]
+ exportMetaObjectRevisions: [0]
+ isComposite: true
+ defaultProperty: "data"
+ Property { name: "control"; type: "ProgressBar_QMLTYPE_184"; isReadonly: true; isPointer: true }
+ Property { name: "currentProgress"; type: "double"; isReadonly: true }
+ Property { name: "progress"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ }
+ Component {
prototype: "QQuickFocusScope"
name: "QtQuick.Controls/RadioButton 1.0"
exports: ["QtQuick.Controls/RadioButton 1.0"]
@@ -1408,6 +1564,27 @@ Module {
Property { name: "__styleData"; type: "QObject"; isPointer: true }
}
Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/RadioButtonStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/RadioButtonStyle 1.0"]
+ exportMetaObjectRevisions: [0]
+ isComposite: true
+ defaultProperty: "data"
+ Property {
+ name: "control"
+ type: "AbstractCheckable_QMLTYPE_73"
+ isReadonly: true
+ isPointer: true
+ }
+ Property { name: "label"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "spacing"; type: "int" }
+ Property { name: "indicator"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ }
+ Component {
prototype: "QQuickFocusScope"
name: "QtQuick.Controls/ScrollView 1.0"
exports: ["QtQuick.Controls/ScrollView 1.0"]
@@ -1427,7 +1604,7 @@ Module {
Property { name: "flickableItem"; type: "QQuickFlickable"; isReadonly: true; isPointer: true }
Property {
name: "__scroller"
- type: "ScrollViewHelper_QMLTYPE_27"
+ type: "ScrollViewHelper_QMLTYPE_28"
isReadonly: true
isPointer: true
}
@@ -1435,22 +1612,49 @@ Module {
Property { name: "__wheelAreaScrollSpeed"; type: "double" }
Property {
name: "__horizontalScrollBar"
- type: "ScrollBar_QMLTYPE_23"
+ type: "ScrollBar_QMLTYPE_24"
isReadonly: true
isPointer: true
}
Property {
name: "__verticalScrollBar"
- type: "ScrollBar_QMLTYPE_23"
+ type: "ScrollBar_QMLTYPE_24"
isReadonly: true
isPointer: true
}
}
Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/ScrollViewStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/ScrollViewStyle 1.0"]
+ exportMetaObjectRevisions: [0]
+ isComposite: true
+ defaultProperty: "data"
+ Property { name: "control"; type: "ScrollView_QMLTYPE_32"; isReadonly: true; isPointer: true }
+ Property { name: "corner"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "scrollToClickedPosition"; type: "bool" }
+ Property { name: "transientScrollBars"; type: "bool" }
+ Property { name: "frame"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "minimumHandleLength"; type: "int" }
+ Property { name: "handleOverlap"; type: "int" }
+ Property { name: "scrollBarBackground"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "handle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "incrementControl"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "decrementControl"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__scrollbar"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__externalScrollBars"; type: "bool" }
+ Property { name: "__scrollBarSpacing"; type: "int" }
+ Property { name: "__scrollBarFadeDelay"; type: "int" }
+ Property { name: "__scrollBarFadeDuration"; type: "int" }
+ Property { name: "__stickyScrollbars"; type: "bool" }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ }
+ Component {
prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/Slider 1.6"
- exports: ["QtQuick.Controls/Slider 1.6"]
- exportMetaObjectRevisions: [6]
+ name: "QtQuick.Controls/Slider 1.0"
+ exports: ["QtQuick.Controls/Slider 1.0"]
+ exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
Property { name: "orientation"; type: "int" }
@@ -1476,9 +1680,9 @@ Module {
}
Component {
prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/Slider 1.0"
- exports: ["QtQuick.Controls/Slider 1.0"]
- exportMetaObjectRevisions: [0]
+ name: "QtQuick.Controls/Slider 1.6"
+ exports: ["QtQuick.Controls/Slider 1.6"]
+ exportMetaObjectRevisions: [6]
isComposite: true
defaultProperty: "data"
Property { name: "orientation"; type: "int" }
@@ -1503,6 +1707,21 @@ Module {
Property { name: "__styleData"; type: "QObject"; isPointer: true }
}
Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/SliderStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/SliderStyle 1.0"]
+ exportMetaObjectRevisions: [0]
+ isComposite: true
+ defaultProperty: "data"
+ Property { name: "control"; type: "Slider_QMLTYPE_194"; isReadonly: true; isPointer: true }
+ Property { name: "handle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "groove"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "tickmarks"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ }
+ Component {
prototype: "QQuickFocusScope"
name: "QtQuick.Controls/SpinBox 1.0"
exports: ["QtQuick.Controls/SpinBox 1.0"]
@@ -1536,6 +1755,30 @@ Module {
Property { name: "__styleData"; type: "QObject"; isPointer: true }
}
Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/SpinBoxStyle 1.1"
+ exports: ["QtQuick.Controls.Styles/SpinBoxStyle 1.1"]
+ exportMetaObjectRevisions: [1]
+ isComposite: true
+ defaultProperty: "data"
+ Property { name: "control"; type: "SpinBox_QMLTYPE_214"; isReadonly: true; isPointer: true }
+ Property { name: "horizontalAlignment"; type: "int" }
+ Property { name: "textColor"; type: "QColor" }
+ Property { name: "selectionColor"; type: "QColor" }
+ Property { name: "selectedTextColor"; type: "QColor" }
+ Property { name: "renderType"; type: "int" }
+ Property { name: "font"; type: "QFont" }
+ Property { name: "incrementControl"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "decrementControl"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__cursorHandle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__selectionHandle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__cursorDelegate"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ }
+ Component {
prototype: "QQuickItem"
name: "QtQuick.Controls/SplitView 1.0"
exports: ["QtQuick.Controls/SplitView 1.0"]
@@ -1568,7 +1811,7 @@ Module {
defaultProperty: "data"
Property { name: "initialItem"; type: "QVariant" }
Property { name: "busy"; type: "bool"; isReadonly: true }
- Property { name: "delegate"; type: "StackViewDelegate_QMLTYPE_225"; isPointer: true }
+ Property { name: "delegate"; type: "StackViewDelegate_QMLTYPE_228"; isPointer: true }
Property { name: "__currentItem"; type: "QQuickItem"; isPointer: true }
Property { name: "__depth"; type: "int" }
Property { name: "__currentTransition"; type: "QVariant" }
@@ -1687,36 +1930,36 @@ Module {
Property { name: "contentItem"; type: "QQuickItem"; isReadonly: true; isPointer: true }
}
Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/StatusIndicator 1.1"
- exports: ["QtQuick.Extras/StatusIndicator 1.1"]
- exportMetaObjectRevisions: [1]
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/StatusBarStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/StatusBarStyle 1.0"]
+ exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
- Property { name: "active"; type: "bool" }
- Property { name: "color"; type: "QColor" }
- Property { name: "on"; type: "bool" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "control"; type: "QQuickItem"; isReadonly: true; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
}
Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/StatusIndicator 1.0"
- exports: ["QtQuick.Extras/StatusIndicator 1.0"]
- exportMetaObjectRevisions: [0]
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/StatusIndicatorStyle 1.1"
+ exports: ["QtQuick.Controls.Styles/StatusIndicatorStyle 1.1"]
+ exportMetaObjectRevisions: [1]
isComposite: true
defaultProperty: "data"
- Property { name: "active"; type: "bool" }
+ Property {
+ name: "control"
+ type: "StatusIndicator_QMLTYPE_237"
+ isReadonly: true
+ isPointer: true
+ }
Property { name: "color"; type: "QColor" }
- Property { name: "on"; type: "bool" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
+ Property { name: "indicator"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
}
Component {
prototype: "QQuickFocusScope"
@@ -1737,6 +1980,20 @@ Module {
Property { name: "__styleData"; type: "QObject"; isPointer: true }
}
Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/SwitchStyle 1.1"
+ exports: ["QtQuick.Controls.Styles/SwitchStyle 1.1"]
+ exportMetaObjectRevisions: [1]
+ isComposite: true
+ defaultProperty: "data"
+ Property { name: "handle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "groove"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "control"; type: "QQuickItem"; isReadonly: true; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ }
+ Component {
prototype: "QQuickLoader"
name: "QtQuick.Controls/Tab 1.0"
exports: ["QtQuick.Controls/Tab 1.0"]
@@ -1806,6 +2063,26 @@ Module {
Method { name: "__setOpacities"; type: "QVariant" }
}
Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/TabViewStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/TabViewStyle 1.0"]
+ exportMetaObjectRevisions: [0]
+ isComposite: true
+ defaultProperty: "data"
+ Property { name: "control"; type: "TabView_QMLTYPE_253"; isReadonly: true; isPointer: true }
+ Property { name: "tabsMovable"; type: "bool" }
+ Property { name: "tabsAlignment"; type: "int" }
+ Property { name: "tabOverlap"; type: "int" }
+ Property { name: "frameOverlap"; type: "int" }
+ Property { name: "frame"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "tab"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "leftCorner"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "rightCorner"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "tabBar"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ }
+ Component {
prototype: "QQuickFocusScope"
name: "QtQuick.Controls/TableView 1.0"
exports: ["QtQuick.Controls/TableView 1.0"]
@@ -1817,7 +2094,7 @@ Module {
Property { name: "currentRow"; type: "int" }
Property {
name: "selection"
- type: "TableViewSelection_QMLTYPE_257"
+ type: "TableViewSelection_QMLTYPE_259"
isReadonly: true
isPointer: true
}
@@ -1914,7 +2191,7 @@ Module {
Property { name: "flickableItem"; type: "QQuickFlickable"; isReadonly: true; isPointer: true }
Property {
name: "__scroller"
- type: "ScrollViewHelper_QMLTYPE_27"
+ type: "ScrollViewHelper_QMLTYPE_28"
isReadonly: true
isPointer: true
}
@@ -1922,13 +2199,13 @@ Module {
Property { name: "__wheelAreaScrollSpeed"; type: "double" }
Property {
name: "__horizontalScrollBar"
- type: "ScrollBar_QMLTYPE_23"
+ type: "ScrollBar_QMLTYPE_24"
isReadonly: true
isPointer: true
}
Property {
name: "__verticalScrollBar"
- type: "ScrollBar_QMLTYPE_23"
+ type: "ScrollBar_QMLTYPE_24"
isReadonly: true
isPointer: true
}
@@ -1953,12 +2230,49 @@ Module {
Method { name: "resizeToContents"; type: "QVariant" }
}
Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/TextArea 1.0"
- exports: ["QtQuick.Controls/TextArea 1.0"]
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/TableViewStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/TableViewStyle 1.0"]
exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
+ Property { name: "control"; type: "TableView_QMLTYPE_285"; isReadonly: true; isPointer: true }
+ Property { name: "textColor"; type: "QColor" }
+ Property { name: "backgroundColor"; type: "QColor" }
+ Property { name: "alternateBackgroundColor"; type: "QColor" }
+ Property { name: "highlightedTextColor"; type: "QColor" }
+ Property { name: "activateItemOnSingleClick"; type: "bool" }
+ Property { name: "headerDelegate"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "rowDelegate"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "itemDelegate"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__branchDelegate"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__indentation"; type: "int" }
+ Property { name: "corner"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "scrollToClickedPosition"; type: "bool" }
+ Property { name: "transientScrollBars"; type: "bool" }
+ Property { name: "frame"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "minimumHandleLength"; type: "int" }
+ Property { name: "handleOverlap"; type: "int" }
+ Property { name: "scrollBarBackground"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "handle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "incrementControl"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "decrementControl"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__scrollbar"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__externalScrollBars"; type: "bool" }
+ Property { name: "__scrollBarSpacing"; type: "int" }
+ Property { name: "__scrollBarFadeDelay"; type: "int" }
+ Property { name: "__scrollBarFadeDuration"; type: "int" }
+ Property { name: "__stickyScrollbars"; type: "bool" }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ }
+ Component {
+ prototype: "QQuickFocusScope"
+ name: "QtQuick.Controls/TextArea 1.3"
+ exports: ["QtQuick.Controls/TextArea 1.3"]
+ exportMetaObjectRevisions: [3]
+ isComposite: true
+ defaultProperty: "data"
Property { name: "inputMethodComposing"; type: "bool"; isReadonly: true }
Property { name: "tabChangesFocus"; type: "bool" }
Property { name: "selectByMouse"; type: "bool" }
@@ -2081,7 +2395,7 @@ Module {
Property { name: "flickableItem"; type: "QQuickFlickable"; isReadonly: true; isPointer: true }
Property {
name: "__scroller"
- type: "ScrollViewHelper_QMLTYPE_27"
+ type: "ScrollViewHelper_QMLTYPE_28"
isReadonly: true
isPointer: true
}
@@ -2089,22 +2403,22 @@ Module {
Property { name: "__wheelAreaScrollSpeed"; type: "double" }
Property {
name: "__horizontalScrollBar"
- type: "ScrollBar_QMLTYPE_23"
+ type: "ScrollBar_QMLTYPE_24"
isReadonly: true
isPointer: true
}
Property {
name: "__verticalScrollBar"
- type: "ScrollBar_QMLTYPE_23"
+ type: "ScrollBar_QMLTYPE_24"
isReadonly: true
isPointer: true
}
}
Component {
prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/TextArea 1.3"
- exports: ["QtQuick.Controls/TextArea 1.3"]
- exportMetaObjectRevisions: [3]
+ name: "QtQuick.Controls/TextArea 1.0"
+ exports: ["QtQuick.Controls/TextArea 1.0"]
+ exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
Property { name: "inputMethodComposing"; type: "bool"; isReadonly: true }
@@ -2229,7 +2543,7 @@ Module {
Property { name: "flickableItem"; type: "QQuickFlickable"; isReadonly: true; isPointer: true }
Property {
name: "__scroller"
- type: "ScrollViewHelper_QMLTYPE_27"
+ type: "ScrollViewHelper_QMLTYPE_28"
isReadonly: true
isPointer: true
}
@@ -2237,13 +2551,13 @@ Module {
Property { name: "__wheelAreaScrollSpeed"; type: "double" }
Property {
name: "__horizontalScrollBar"
- type: "ScrollBar_QMLTYPE_23"
+ type: "ScrollBar_QMLTYPE_24"
isReadonly: true
isPointer: true
}
Property {
name: "__verticalScrollBar"
- type: "ScrollBar_QMLTYPE_23"
+ type: "ScrollBar_QMLTYPE_24"
isReadonly: true
isPointer: true
}
@@ -2377,7 +2691,7 @@ Module {
Property { name: "flickableItem"; type: "QQuickFlickable"; isReadonly: true; isPointer: true }
Property {
name: "__scroller"
- type: "ScrollViewHelper_QMLTYPE_27"
+ type: "ScrollViewHelper_QMLTYPE_28"
isReadonly: true
isPointer: true
}
@@ -2385,18 +2699,56 @@ Module {
Property { name: "__wheelAreaScrollSpeed"; type: "double" }
Property {
name: "__horizontalScrollBar"
- type: "ScrollBar_QMLTYPE_23"
+ type: "ScrollBar_QMLTYPE_24"
isReadonly: true
isPointer: true
}
Property {
name: "__verticalScrollBar"
- type: "ScrollBar_QMLTYPE_23"
+ type: "ScrollBar_QMLTYPE_24"
isReadonly: true
isPointer: true
}
}
Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/TextAreaStyle 1.1"
+ exports: ["QtQuick.Controls.Styles/TextAreaStyle 1.1"]
+ exportMetaObjectRevisions: [1]
+ isComposite: true
+ defaultProperty: "data"
+ Property { name: "control"; type: "TextArea_QMLTYPE_291"; isReadonly: true; isPointer: true }
+ Property { name: "font"; type: "QFont" }
+ Property { name: "textColor"; type: "QColor" }
+ Property { name: "selectionColor"; type: "QColor" }
+ Property { name: "selectedTextColor"; type: "QColor" }
+ Property { name: "backgroundColor"; type: "QColor" }
+ Property { name: "renderType"; type: "int" }
+ Property { name: "textMargin"; type: "double" }
+ Property { name: "__cursorHandle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__selectionHandle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__cursorDelegate"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__editMenu"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "corner"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "scrollToClickedPosition"; type: "bool" }
+ Property { name: "transientScrollBars"; type: "bool" }
+ Property { name: "frame"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "minimumHandleLength"; type: "int" }
+ Property { name: "handleOverlap"; type: "int" }
+ Property { name: "scrollBarBackground"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "handle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "incrementControl"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "decrementControl"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__scrollbar"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__externalScrollBars"; type: "bool" }
+ Property { name: "__scrollBarSpacing"; type: "int" }
+ Property { name: "__scrollBarFadeDelay"; type: "int" }
+ Property { name: "__scrollBarFadeDuration"; type: "int" }
+ Property { name: "__stickyScrollbars"; type: "bool" }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ }
+ Component {
prototype: "QQuickFocusScope"
name: "QtQuick.Controls/TextField 1.0"
exports: ["QtQuick.Controls/TextField 1.0"]
@@ -2482,48 +2834,53 @@ Module {
Property { name: "__styleData"; type: "QObject"; isPointer: true }
}
Component {
- prototype: "QQuickText"
- name: "QtQuick.Extras.Private/TextSingleton 1.0"
- exports: ["QtQuick.Extras.Private/TextSingleton 1.0"]
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/TextFieldStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/TextFieldStyle 1.0"]
exportMetaObjectRevisions: [0]
isComposite: true
- isCreatable: false
- isSingleton: true
defaultProperty: "data"
+ Property { name: "control"; type: "TextField_QMLTYPE_296"; isReadonly: true; isPointer: true }
+ Property { name: "font"; type: "QFont" }
+ Property { name: "textColor"; type: "QColor" }
+ Property { name: "selectionColor"; type: "QColor" }
+ Property { name: "selectedTextColor"; type: "QColor" }
+ Property { name: "passwordCharacter"; type: "string" }
+ Property { name: "renderType"; type: "int" }
+ Property { name: "placeholderTextColor"; type: "QColor" }
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__cursorHandle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__selectionHandle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__cursorDelegate"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__editMenu"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
}
Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/ToggleButton 1.0"
- exports: ["QtQuick.Extras/ToggleButton 1.0"]
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/ToggleButtonStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/ToggleButtonStyle 1.0"]
exportMetaObjectRevisions: [0]
isComposite: true
defaultProperty: "data"
- Property { name: "isDefault"; type: "bool" }
- Property { name: "menu"; type: "Menu_QMLTYPE_48"; isPointer: true }
- Property { name: "checkable"; type: "bool" }
- Property { name: "checked"; type: "bool" }
- Property { name: "exclusiveGroup"; type: "QQuickExclusiveGroup1"; isPointer: true }
- Property { name: "action"; type: "QQuickAction1"; isPointer: true }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "text"; type: "string" }
- Property { name: "tooltip"; type: "string" }
- Property { name: "iconSource"; type: "QUrl" }
- Property { name: "iconName"; type: "string" }
- Property { name: "__position"; type: "string" }
- Property { name: "__iconOverriden"; type: "bool"; isReadonly: true }
- Property { name: "__action"; type: "QQuickAction1"; isPointer: true }
- Property { name: "__iconAction"; type: "QQuickAction1"; isReadonly: true; isPointer: true }
- Property { name: "__behavior"; type: "QVariant" }
- Property { name: "__effectivePressed"; type: "bool" }
- Property { name: "pressed"; type: "bool"; isReadonly: true }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Signal { name: "clicked" }
- Method { name: "accessiblePressAction"; type: "QVariant" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
+ Property { name: "control"; type: "Button_QMLTYPE_52"; isReadonly: true; isPointer: true }
+ Property { name: "inactiveGradient"; type: "QQuickGradient"; isPointer: true }
+ Property { name: "checkedGradient"; type: "QQuickGradient"; isPointer: true }
+ Property { name: "uncheckedGradient"; type: "QQuickGradient"; isPointer: true }
+ Property { name: "checkedDropShadowColor"; type: "QColor" }
+ Property { name: "uncheckedDropShadowColor"; type: "QColor" }
+ Property {
+ name: "__buttonHelper"
+ type: "CircularButtonStyleHelper_QMLTYPE_79"
+ isReadonly: true
+ isPointer: true
+ }
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "label"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
}
Component {
prototype: "QQuickFocusScope"
@@ -2540,6 +2897,20 @@ Module {
Property { name: "contentItem"; type: "QQuickItem"; isReadonly: true; isPointer: true }
}
Component {
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/ToolBarStyle 1.0"
+ exports: ["QtQuick.Controls.Styles/ToolBarStyle 1.0"]
+ exportMetaObjectRevisions: [0]
+ isComposite: true
+ defaultProperty: "data"
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "menuButton"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "control"; type: "QQuickItem"; isReadonly: true; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ }
+ Component {
prototype: "QQuickFocusScope"
name: "QtQuick.Controls/ToolButton 1.0"
exports: ["QtQuick.Controls/ToolButton 1.0"]
@@ -2575,9 +2946,9 @@ Module {
}
Component {
prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/TreeView 1.4"
- exports: ["QtQuick.Controls/TreeView 1.4"]
- exportMetaObjectRevisions: [4]
+ name: "QtQuick.Controls/TreeView 1.5"
+ exports: ["QtQuick.Controls/TreeView 1.5"]
+ exportMetaObjectRevisions: [5]
isComposite: true
defaultProperty: "__columns"
Property { name: "model"; type: "QVariant" }
@@ -2694,7 +3065,7 @@ Module {
Property { name: "flickableItem"; type: "QQuickFlickable"; isReadonly: true; isPointer: true }
Property {
name: "__scroller"
- type: "ScrollViewHelper_QMLTYPE_27"
+ type: "ScrollViewHelper_QMLTYPE_28"
isReadonly: true
isPointer: true
}
@@ -2702,22 +3073,22 @@ Module {
Property { name: "__wheelAreaScrollSpeed"; type: "double" }
Property {
name: "__horizontalScrollBar"
- type: "ScrollBar_QMLTYPE_23"
+ type: "ScrollBar_QMLTYPE_24"
isReadonly: true
isPointer: true
}
Property {
name: "__verticalScrollBar"
- type: "ScrollBar_QMLTYPE_23"
+ type: "ScrollBar_QMLTYPE_24"
isReadonly: true
isPointer: true
}
}
Component {
prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/TreeView 1.5"
- exports: ["QtQuick.Controls/TreeView 1.5"]
- exportMetaObjectRevisions: [5]
+ name: "QtQuick.Controls/TreeView 1.4"
+ exports: ["QtQuick.Controls/TreeView 1.4"]
+ exportMetaObjectRevisions: [4]
isComposite: true
defaultProperty: "__columns"
Property { name: "model"; type: "QVariant" }
@@ -2834,7 +3205,7 @@ Module {
Property { name: "flickableItem"; type: "QQuickFlickable"; isReadonly: true; isPointer: true }
Property {
name: "__scroller"
- type: "ScrollViewHelper_QMLTYPE_27"
+ type: "ScrollViewHelper_QMLTYPE_28"
isReadonly: true
isPointer: true
}
@@ -2842,346 +3213,78 @@ Module {
Property { name: "__wheelAreaScrollSpeed"; type: "double" }
Property {
name: "__horizontalScrollBar"
- type: "ScrollBar_QMLTYPE_23"
+ type: "ScrollBar_QMLTYPE_24"
isReadonly: true
isPointer: true
}
Property {
name: "__verticalScrollBar"
- type: "ScrollBar_QMLTYPE_23"
+ type: "ScrollBar_QMLTYPE_24"
isReadonly: true
isPointer: true
}
}
Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/Tumbler 1.2"
- exports: ["QtQuick.Extras/Tumbler 1.2"]
- exportMetaObjectRevisions: [2]
+ prototype: "QObject"
+ name: "QtQuick.Controls.Styles/TreeViewStyle 1.4"
+ exports: ["QtQuick.Controls.Styles/TreeViewStyle 1.4"]
+ exportMetaObjectRevisions: [4]
isComposite: true
defaultProperty: "data"
- Property { name: "__highlightMoveDuration"; type: "int" }
- Property { name: "columnCount"; type: "int"; isReadonly: true }
- Property { name: "__columnRow"; type: "QQuickRow"; isReadonly: true; isPointer: true }
- Property { name: "__movementDelayTimer"; type: "QQmlTimer"; isReadonly: true; isPointer: true }
- Method {
- name: "__isValidColumnIndex"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- }
- Method {
- name: "__isValidColumnAndItemIndex"
- type: "QVariant"
- Parameter { name: "columnIndex"; type: "QVariant" }
- Parameter { name: "itemIndex"; type: "QVariant" }
- }
- Method {
- name: "currentIndexAt"
- type: "QVariant"
- Parameter { name: "columnIndex"; type: "QVariant" }
- }
- Method {
- name: "setCurrentIndexAt"
- type: "QVariant"
- Parameter { name: "columnIndex"; type: "QVariant" }
- Parameter { name: "itemIndex"; type: "QVariant" }
- Parameter { name: "interval"; type: "QVariant" }
- }
- Method {
- name: "getColumn"
- type: "QVariant"
- Parameter { name: "columnIndex"; type: "QVariant" }
- }
- Method {
- name: "addColumn"
- type: "QVariant"
- Parameter { name: "column"; type: "QVariant" }
- }
- Method {
- name: "insertColumn"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- Parameter { name: "column"; type: "QVariant" }
- }
- Method {
- name: "__viewAt"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
+ Property { name: "control"; type: "TreeView_QMLTYPE_315"; isReadonly: true; isPointer: true }
+ Property { name: "indentation"; type: "int" }
+ Property { name: "branchDelegate"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "textColor"; type: "QColor" }
+ Property { name: "backgroundColor"; type: "QColor" }
+ Property { name: "alternateBackgroundColor"; type: "QColor" }
+ Property { name: "highlightedTextColor"; type: "QColor" }
+ Property { name: "activateItemOnSingleClick"; type: "bool" }
+ Property { name: "headerDelegate"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "rowDelegate"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "itemDelegate"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__branchDelegate"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__indentation"; type: "int" }
+ Property { name: "corner"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "scrollToClickedPosition"; type: "bool" }
+ Property { name: "transientScrollBars"; type: "bool" }
+ Property { name: "frame"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "minimumHandleLength"; type: "int" }
+ Property { name: "handleOverlap"; type: "int" }
+ Property { name: "scrollBarBackground"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "handle"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "incrementControl"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "decrementControl"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__scrollbar"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "__externalScrollBars"; type: "bool" }
+ Property { name: "__scrollBarSpacing"; type: "int" }
+ Property { name: "__scrollBarFadeDelay"; type: "int" }
+ Property { name: "__scrollBarFadeDuration"; type: "int" }
+ Property { name: "__stickyScrollbars"; type: "bool" }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
}
Component {
prototype: "QObject"
- name: "QtQuick.Extras/TumblerColumn 1.2"
- exports: ["QtQuick.Extras/TumblerColumn 1.2"]
+ name: "QtQuick.Controls.Styles/TumblerStyle 1.2"
+ exports: ["QtQuick.Controls.Styles/TumblerStyle 1.2"]
exportMetaObjectRevisions: [2]
isComposite: true
- Property { name: "__tumbler"; type: "QQuickItem"; isPointer: true }
- Property { name: "__index"; type: "int" }
- Property { name: "__currentIndex"; type: "int" }
- Property { name: "model"; type: "QVariant" }
- Property { name: "role"; type: "string" }
+ defaultProperty: "data"
+ Property { name: "control"; type: "Tumbler_QMLTYPE_318"; isReadonly: true; isPointer: true }
+ Property { name: "spacing"; type: "double" }
+ Property { name: "visibleItemCount"; type: "int" }
+ Property { name: "__padding"; type: "double"; isReadonly: true }
+ Property { name: "__delegateHeight"; type: "double" }
+ Property { name: "__separatorWidth"; type: "double" }
+ Property { name: "background"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "foreground"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "separator"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "columnForeground"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "frame"; type: "QQmlComponent"; isPointer: true }
Property { name: "delegate"; type: "QQmlComponent"; isPointer: true }
Property { name: "highlight"; type: "QQmlComponent"; isPointer: true }
- Property { name: "columnForeground"; type: "QQmlComponent"; isPointer: true }
- Property { name: "visible"; type: "bool" }
- Property { name: "activeFocus"; type: "bool"; isReadonly: true }
- Property { name: "width"; type: "double" }
- Property { name: "currentIndex"; type: "int"; isReadonly: true }
- }
-
- //
- // Manually added to work around QtC limitations:
- //
- Component {
- name: "QQuickWindow"
- defaultProperty: "data"
- prototype: "QWindow"
- exports: [
- "QtQuick.Window/Window 2.0",
- "QtQuick.Window/Window 2.1",
- "QtQuick.Window/Window 2.2"
- ]
- exportMetaObjectRevisions: [0, 1, 2]
- Enum {
- name: "SceneGraphError"
- values: {
- "ContextNotAvailable": 1
- }
- }
+ Property { name: "panel"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "padding"; type: "QQuickPadding1"; isReadonly: true; isPointer: true }
Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
- Property { name: "color"; type: "QColor" }
- Property { name: "contentItem"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Property {
- name: "activeFocusItem"
- revision: 1
- type: "QQuickItem"
- isReadonly: true
- isPointer: true
- }
- Signal { name: "frameSwapped" }
- Signal {
- name: "openglContextCreated"
- revision: 2
- Parameter { name: "context"; type: "QOpenGLContext"; isPointer: true }
- }
- Signal { name: "sceneGraphInitialized" }
- Signal { name: "sceneGraphInvalidated" }
- Signal { name: "beforeSynchronizing" }
- Signal { name: "afterSynchronizing"; revision: 2 }
- Signal { name: "beforeRendering" }
- Signal { name: "afterRendering" }
- Signal { name: "afterAnimating"; revision: 2 }
- Signal { name: "sceneGraphAboutToStop"; revision: 2 }
- Signal {
- name: "closing"
- revision: 1
- Parameter { name: "close"; type: "QQuickCloseEvent"; isPointer: true }
- }
- Signal {
- name: "colorChanged"
- Parameter { type: "QColor" }
- }
- Signal { name: "activeFocusItemChanged"; revision: 1 }
- Signal {
- name: "sceneGraphError"
- revision: 2
- Parameter { name: "error"; type: "QQuickWindow::SceneGraphError" }
- Parameter { name: "message"; type: "string" }
- }
- Method { name: "update" }
- Method { name: "releaseResources" }
- }
- Component {
- name: "QQuickWindowAttached"
- prototype: "QObject"
- Property { name: "visibility"; type: "QWindow::Visibility"; isReadonly: true }
- Property { name: "active"; type: "bool"; isReadonly: true }
- Property { name: "activeFocusItem"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Property { name: "contentItem"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Property { name: "width"; type: "int"; isReadonly: true }
- Property { name: "height"; type: "int"; isReadonly: true }
- }
- Component {
- name: "QQuickWindowQmlImpl"
- defaultProperty: "data"
- prototype: "QQuickWindow"
- exports: ["QtQuick.Window/Window 2.1", "QtQuick.Window/Window 2.2"]
- exportMetaObjectRevisions: [0, 1]
- attachedType: "QQuickWindowAttached"
- Property { name: "visible"; type: "bool" }
- Property { name: "visibility"; type: "Visibility" }
- Signal {
- name: "visibleChanged"
- Parameter { name: "arg"; type: "bool" }
- }
- Signal {
- name: "visibilityChanged"
- Parameter { name: "visibility"; type: "QWindow::Visibility" }
- }
- }
- Component {
- name: "QWindow"
- prototype: "QObject"
- Enum {
- name: "Visibility"
- values: {
- "Hidden": 0,
- "AutomaticVisibility": 1,
- "Windowed": 2,
- "Minimized": 3,
- "Maximized": 4,
- "FullScreen": 5
- }
- }
- Property { name: "title"; type: "string" }
- Property { name: "modality"; type: "Qt::WindowModality" }
- Property { name: "flags"; type: "Qt::WindowFlags" }
- Property { name: "x"; type: "int" }
- Property { name: "y"; type: "int" }
- Property { name: "width"; type: "int" }
- Property { name: "height"; type: "int" }
- Property { name: "minimumWidth"; type: "int" }
- Property { name: "minimumHeight"; type: "int" }
- Property { name: "maximumWidth"; type: "int" }
- Property { name: "maximumHeight"; type: "int" }
- Property { name: "visible"; type: "bool" }
- Property { name: "active"; revision: 1; type: "bool"; isReadonly: true }
- Property { name: "visibility"; revision: 1; type: "Visibility" }
- Property { name: "contentOrientation"; type: "Qt::ScreenOrientation" }
- Property { name: "opacity"; revision: 1; type: "double" }
- Signal {
- name: "screenChanged"
- Parameter { name: "screen"; type: "QScreen"; isPointer: true }
- }
- Signal {
- name: "modalityChanged"
- Parameter { name: "modality"; type: "Qt::WindowModality" }
- }
- Signal {
- name: "windowStateChanged"
- Parameter { name: "windowState"; type: "Qt::WindowState" }
- }
- Signal {
- name: "windowTitleChanged"
- revision: 2
- Parameter { name: "title"; type: "string" }
- }
- Signal {
- name: "xChanged"
- Parameter { name: "arg"; type: "int" }
- }
- Signal {
- name: "yChanged"
- Parameter { name: "arg"; type: "int" }
- }
- Signal {
- name: "widthChanged"
- Parameter { name: "arg"; type: "int" }
- }
- Signal {
- name: "heightChanged"
- Parameter { name: "arg"; type: "int" }
- }
- Signal {
- name: "minimumWidthChanged"
- Parameter { name: "arg"; type: "int" }
- }
- Signal {
- name: "minimumHeightChanged"
- Parameter { name: "arg"; type: "int" }
- }
- Signal {
- name: "maximumWidthChanged"
- Parameter { name: "arg"; type: "int" }
- }
- Signal {
- name: "maximumHeightChanged"
- Parameter { name: "arg"; type: "int" }
- }
- Signal {
- name: "visibleChanged"
- Parameter { name: "arg"; type: "bool" }
- }
- Signal {
- name: "visibilityChanged"
- revision: 1
- Parameter { name: "visibility"; type: "QWindow::Visibility" }
- }
- Signal { name: "activeChanged"; revision: 1 }
- Signal {
- name: "contentOrientationChanged"
- Parameter { name: "orientation"; type: "Qt::ScreenOrientation" }
- }
- Signal {
- name: "focusObjectChanged"
- Parameter { name: "object"; type: "QObject"; isPointer: true }
- }
- Signal {
- name: "opacityChanged"
- revision: 1
- Parameter { name: "opacity"; type: "double" }
- }
- Method { name: "requestActivate"; revision: 1 }
- Method {
- name: "setVisible"
- Parameter { name: "visible"; type: "bool" }
- }
- Method { name: "show" }
- Method { name: "hide" }
- Method { name: "showMinimized" }
- Method { name: "showMaximized" }
- Method { name: "showFullScreen" }
- Method { name: "showNormal" }
- Method { name: "close"; type: "bool" }
- Method { name: "raise" }
- Method { name: "lower" }
- Method {
- name: "setTitle"
- Parameter { type: "string" }
- }
- Method {
- name: "setX"
- Parameter { name: "arg"; type: "int" }
- }
- Method {
- name: "setY"
- Parameter { name: "arg"; type: "int" }
- }
- Method {
- name: "setWidth"
- Parameter { name: "arg"; type: "int" }
- }
- Method {
- name: "setHeight"
- Parameter { name: "arg"; type: "int" }
- }
- Method {
- name: "setMinimumWidth"
- Parameter { name: "w"; type: "int" }
- }
- Method {
- name: "setMinimumHeight"
- Parameter { name: "h"; type: "int" }
- }
- Method {
- name: "setMaximumWidth"
- Parameter { name: "w"; type: "int" }
- }
- Method {
- name: "setMaximumHeight"
- Parameter { name: "h"; type: "int" }
- }
- Method {
- name: "alert"
- revision: 1
- Parameter { name: "msec"; type: "int" }
- }
- Method { name: "requestUpdate"; revision: 3 }
}
-
}
diff --git a/src/dialogs/DefaultFileDialog.qml b/src/dialogs/DefaultFileDialog.qml
index 8911976c..da273fc9 100644
--- a/src/dialogs/DefaultFileDialog.qml
+++ b/src/dialogs/DefaultFileDialog.qml
@@ -51,8 +51,7 @@ import "qml"
AbstractFileDialog {
id: root
- Component {
- id: modelComponent
+ property Component modelComponent: Component {
FolderListModel {
showFiles: !root.selectFolder
nameFilters: root.selectedNameFilterExtensions
diff --git a/src/dialogs/Private/plugins.qmltypes b/src/dialogs/Private/plugins.qmltypes
index 6052caeb..3f9c8054 100644
--- a/src/dialogs/Private/plugins.qmltypes
+++ b/src/dialogs/Private/plugins.qmltypes
@@ -7,272 +7,7 @@ import QtQuick.tooling 1.2
// 'qmlplugindump -nonrelocatable QtQuick.Dialogs.Private 1.1'
Module {
- dependencies: []
- Component {
- name: "QAbstractItemModel"
- prototype: "QObject"
- Enum {
- name: "LayoutChangeHint"
- values: {
- "NoLayoutChangeHint": 0,
- "VerticalSortHint": 1,
- "HorizontalSortHint": 2
- }
- }
- 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" }
+ dependencies: ["QtQuick 2.0"]
Component {
name: "QQuickFontListModel"
prototype: "QAbstractListModel"
diff --git a/src/dialogs/plugins.qmltypes b/src/dialogs/plugins.qmltypes
index 82c910ed..2a827fe0 100644
--- a/src/dialogs/plugins.qmltypes
+++ b/src/dialogs/plugins.qmltypes
@@ -4,25 +4,21 @@ import QtQuick.tooling 1.2
// It is used for QML tooling purposes only.
//
// This file was auto-generated by:
-// 'qmlplugindump -nonrelocatable QtQuick.Dialogs 1.2'
+// 'qmlplugindump -nonrelocatable QtQuick.Dialogs 1.3'
Module {
dependencies: [
"Qt.labs.folderlistmodel 2.1",
"Qt.labs.settings 1.0",
- "QtGraphicalEffects 1.0",
- "QtGraphicalEffects.private 1.0",
+ "QtGraphicalEffects 1.12",
"QtQml.Models 2.2",
- "QtQuick 2.6",
- "QtQuick.Controls 1.4",
+ "QtQuick 2.9",
+ "QtQuick.Controls 1.5",
"QtQuick.Controls.Styles 1.4",
"QtQuick.Extras 1.4",
- "QtQuick.Extras.Private.CppUtils 1.1",
"QtQuick.Layouts 1.1",
- "QtQuick.PrivateWidgets 1.1",
"QtQuick.Window 2.2"
]
-
Component {
name: "QQuickAbstractColorDialog"
prototype: "QQuickAbstractDialog"
@@ -158,6 +154,9 @@ Module {
Property { name: "fileUrl"; type: "QUrl"; isReadonly: true }
Property { name: "fileUrls"; type: "QList<QUrl>"; isReadonly: true }
Property { name: "sidebarVisible"; type: "bool" }
+ Property { name: "defaultSuffix"; type: "string" }
+ Property { name: "shortcuts"; type: "QJSValue"; isReadonly: true }
+ Property { name: "__shortcuts"; type: "QJSValue"; isReadonly: true }
Signal { name: "filterSelected" }
Signal { name: "fileModeChanged" }
Signal { name: "selectionAccepted" }
@@ -201,6 +200,10 @@ Module {
name: "setSidebarVisible"
Parameter { name: "s"; type: "bool" }
}
+ Method {
+ name: "setDefaultSuffix"
+ Parameter { name: "suffix"; type: "string" }
+ }
}
Component {
name: "QQuickAbstractFontDialog"
@@ -252,8 +255,6 @@ Module {
Component {
name: "QQuickAbstractMessageDialog"
prototype: "QQuickAbstractDialog"
- exports: ["QtQuick.PrivateWidgets/QtMessageDialog 1.1"]
- exportMetaObjectRevisions: [0]
Enum {
name: "Icon"
values: {
@@ -315,7 +316,6 @@ Module {
Parameter { name: "button"; type: "QQuickAbstractDialog::StandardButton" }
}
}
-
Component {
name: "QQuickColorDialog"
defaultProperty: "contentItem"
@@ -367,8 +367,6 @@ Module {
exports: ["QtQuick.Dialogs/AbstractFileDialog 1.0"]
exportMetaObjectRevisions: [0]
Property { name: "contentItem"; type: "QQuickItem"; isPointer: true }
- Property { name: "shortcuts"; type: "QJSValue"; isReadonly: true }
- Property { name: "__shortcuts"; type: "QJSValue"; isReadonly: true }
Method { name: "clearSelection" }
Method {
name: "addSelection"
@@ -405,298 +403,7 @@ Module {
exportMetaObjectRevisions: [0]
}
Component {
- prototype: "QQuickWindowQmlImpl"
- name: "QtQuick.Controls/ApplicationWindow 1.0"
- exports: ["QtQuick.Controls/ApplicationWindow 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "menuBar"; type: "MenuBar_QMLTYPE_4"; isPointer: true }
- Property { name: "toolBar"; type: "QQuickItem"; isPointer: true }
- Property { name: "statusBar"; type: "QQuickItem"; isPointer: true }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__topBottomMargins"; type: "double" }
- Property { name: "__qwindowsize_max"; type: "double"; isReadonly: true }
- Property { name: "__width"; type: "double" }
- Property { name: "__height"; type: "double" }
- Property {
- name: "contentItem"
- type: "ContentItem_QMLTYPE_12"
- isReadonly: true
- isPointer: true
- }
- Property { name: "__style"; type: "QObject"; isReadonly: true; isPointer: true }
- Property { name: "__panel"; type: "QObject"; isReadonly: true; isPointer: true }
- Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/BusyIndicator 1.1"
- exports: ["QtQuick.Controls/BusyIndicator 1.1"]
- exportMetaObjectRevisions: [1]
- isComposite: true
- defaultProperty: "data"
- Property { name: "running"; type: "bool" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/Button 1.0"
- exports: ["QtQuick.Controls/Button 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "isDefault"; type: "bool" }
- Property { name: "menu"; type: "Menu_QMLTYPE_52"; isPointer: true }
- Property { name: "checkable"; type: "bool" }
- Property { name: "checked"; type: "bool" }
- Property { name: "exclusiveGroup"; type: "QQuickExclusiveGroup"; isPointer: true }
- Property { name: "action"; type: "QQuickAction"; isPointer: true }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "text"; type: "string" }
- Property { name: "tooltip"; type: "string" }
- Property { name: "iconSource"; type: "QUrl" }
- Property { name: "iconName"; type: "string" }
- Property { name: "__position"; type: "string" }
- Property { name: "__iconOverriden"; type: "bool"; isReadonly: true }
- Property { name: "__action"; type: "QQuickAction"; isPointer: true }
- Property { name: "__iconAction"; type: "QQuickAction"; isReadonly: true; isPointer: true }
- Property { name: "__behavior"; type: "QVariant" }
- Property { name: "__effectivePressed"; type: "bool" }
- Property { name: "pressed"; type: "bool"; isReadonly: true }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Signal { name: "clicked" }
- Method { name: "accessiblePressAction"; type: "QVariant" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/Calendar 1.2"
- exports: ["QtQuick.Controls/Calendar 1.2"]
- exportMetaObjectRevisions: [2]
- isComposite: true
- defaultProperty: "data"
- Property { name: "visibleMonth"; type: "int" }
- Property { name: "visibleYear"; type: "int" }
- Property { name: "frameVisible"; type: "bool" }
- Property { name: "weekNumbersVisible"; type: "bool" }
- Property { name: "navigationBarVisible"; type: "bool" }
- Property { name: "dayOfWeekFormat"; type: "int" }
- Property { name: "__locale"; type: "QVariant" }
- Property { name: "__model"; type: "QQuickCalendarModel"; isPointer: true }
- Property { name: "selectedDate"; type: "QDate" }
- Property { name: "minimumDate"; type: "QDate" }
- Property { name: "maximumDate"; type: "QDate" }
- Signal {
- name: "hovered"
- Parameter { name: "date"; type: "QDateTime" }
- }
- Signal {
- name: "pressed"
- Parameter { name: "date"; type: "QDateTime" }
- }
- Signal {
- name: "released"
- Parameter { name: "date"; type: "QDateTime" }
- }
- Signal {
- name: "clicked"
- Parameter { name: "date"; type: "QDateTime" }
- }
- Signal {
- name: "doubleClicked"
- Parameter { name: "date"; type: "QDateTime" }
- }
- Signal {
- name: "pressAndHold"
- Parameter { name: "date"; type: "QDateTime" }
- }
- Method { name: "showPreviousMonth"; type: "QVariant" }
- Method { name: "showNextMonth"; type: "QVariant" }
- Method { name: "showPreviousYear"; type: "QVariant" }
- Method { name: "showNextYear"; type: "QVariant" }
- Method { name: "__selectPreviousMonth"; type: "QVariant" }
- Method { name: "__selectNextMonth"; type: "QVariant" }
- Method { name: "__selectPreviousWeek"; type: "QVariant" }
- Method { name: "__selectNextWeek"; type: "QVariant" }
- Method { name: "__selectFirstDayOfMonth"; type: "QVariant" }
- Method { name: "__selectLastDayOfMonth"; type: "QVariant" }
- Method { name: "__selectPreviousDay"; type: "QVariant" }
- Method { name: "__selectNextDay"; type: "QVariant" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/CheckBox 1.0"
- exports: ["QtQuick.Controls/CheckBox 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "checkedState"; type: "int" }
- Property { name: "partiallyCheckedEnabled"; type: "bool" }
- Property { name: "__ignoreChecked"; type: "bool" }
- Property { name: "__ignoreCheckedState"; type: "bool" }
- Method { name: "__cycleCheckBoxStates"; type: "QVariant" }
- Property { name: "checked"; type: "bool" }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "exclusiveGroup"; type: "QQuickExclusiveGroup"; isPointer: true }
- Property { name: "text"; type: "string" }
- Property { name: "__cycleStatesHandler"; type: "QVariant" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Signal { name: "clicked" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras.Private/CircularButton 1.0"
- exports: ["QtQuick.Extras.Private/CircularButton 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "isDefault"; type: "bool" }
- Property { name: "menu"; type: "Menu_QMLTYPE_52"; isPointer: true }
- Property { name: "checkable"; type: "bool" }
- Property { name: "checked"; type: "bool" }
- Property { name: "exclusiveGroup"; type: "QQuickExclusiveGroup"; isPointer: true }
- Property { name: "action"; type: "QQuickAction"; isPointer: true }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "text"; type: "string" }
- Property { name: "tooltip"; type: "string" }
- Property { name: "iconSource"; type: "QUrl" }
- Property { name: "iconName"; type: "string" }
- Property { name: "__position"; type: "string" }
- Property { name: "__iconOverriden"; type: "bool"; isReadonly: true }
- Property { name: "__action"; type: "QQuickAction"; isPointer: true }
- Property { name: "__iconAction"; type: "QQuickAction"; isReadonly: true; isPointer: true }
- Property { name: "__behavior"; type: "QVariant" }
- Property { name: "__effectivePressed"; type: "bool" }
- Property { name: "pressed"; type: "bool"; isReadonly: true }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Signal { name: "clicked" }
- Method { name: "accessiblePressAction"; type: "QVariant" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
prototype: "QObject"
- name: "QtQuick.Extras.Private/CircularButtonStyleHelper 1.0"
- exports: ["QtQuick.Extras.Private/CircularButtonStyleHelper 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- Property { name: "control"; type: "QQuickItem"; isPointer: true }
- Property { name: "buttonColorUpTop"; type: "QColor" }
- Property { name: "buttonColorUpBottom"; type: "QColor" }
- Property { name: "buttonColorDownTop"; type: "QColor" }
- Property { name: "buttonColorDownBottom"; type: "QColor" }
- Property { name: "outerArcColorTop"; type: "QColor" }
- Property { name: "outerArcColorBottom"; type: "QColor" }
- Property { name: "innerArcColorTop"; type: "QColor" }
- Property { name: "innerArcColorBottom"; type: "QColor" }
- Property { name: "innerArcColorBottomStop"; type: "double" }
- Property { name: "shineColor"; type: "QColor" }
- Property { name: "smallestAxis"; type: "double" }
- Property { name: "outerArcLineWidth"; type: "double" }
- Property { name: "innerArcLineWidth"; type: "double" }
- Property { name: "shineArcLineWidth"; type: "double" }
- Property { name: "implicitWidth"; type: "double" }
- Property { name: "implicitHeight"; type: "double" }
- Property { name: "textColorUp"; type: "QColor" }
- Property { name: "textColorDown"; type: "QColor" }
- Property { name: "textRaisedColorUp"; type: "QColor" }
- Property { name: "textRaisedColorDown"; type: "QColor" }
- Property { name: "radius"; type: "double" }
- Property { name: "halfRadius"; type: "double" }
- Property { name: "outerArcRadius"; type: "double" }
- Property { name: "innerArcRadius"; type: "double" }
- Property { name: "shineArcRadius"; type: "double" }
- Property { name: "zeroAngle"; type: "double" }
- Property { name: "buttonColorTop"; type: "QColor" }
- Property { name: "buttonColorBottom"; type: "QColor" }
- Method {
- name: "toPixels"
- type: "QVariant"
- Parameter { name: "percentageOfSmallestAxis"; type: "QVariant" }
- }
- Method {
- name: "paintBackground"
- type: "QVariant"
- Parameter { name: "ctx"; type: "QVariant" }
- }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/CircularGauge 1.0"
- exports: ["QtQuick.Extras/CircularGauge 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "tickmarksVisible"; type: "bool" }
- Property { name: "minimumValue"; type: "double" }
- Property { name: "maximumValue"; type: "double" }
- Property { name: "value"; type: "double" }
- Property { name: "stepSize"; type: "double" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras.Private/CircularTickmarkLabel 1.0"
- exports: ["QtQuick.Extras.Private/CircularTickmarkLabel 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "minimumValueAngle"; type: "double" }
- Property { name: "maximumValueAngle"; type: "double" }
- Property { name: "angleRange"; type: "double"; isReadonly: true }
- Property { name: "tickmarkStepSize"; type: "double" }
- Property { name: "tickmarkInset"; type: "double" }
- Property { name: "tickmarkCount"; type: "int"; isReadonly: true }
- Property { name: "minorTickmarkCount"; type: "int" }
- Property { name: "minorTickmarkInset"; type: "double" }
- Property { name: "labelInset"; type: "double" }
- Property { name: "labelStepSize"; type: "double" }
- Property { name: "labelCount"; type: "int"; isReadonly: true }
- Property { name: "__tickmarkCount"; type: "double"; isReadonly: true }
- Property { name: "tickmarksVisible"; type: "bool" }
- Property { name: "minimumValue"; type: "double" }
- Property { name: "maximumValue"; type: "double" }
- Property { name: "stepSize"; type: "double" }
- Method {
- name: "valueToAngle"
- type: "QVariant"
- Parameter { name: "value"; type: "QVariant" }
- }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickAbstractColorDialog"
name: "QtQuick.Dialogs/ColorDialog 1.0"
exports: ["QtQuick.Dialogs/ColorDialog 1.0"]
exportMetaObjectRevisions: [0]
@@ -705,145 +412,82 @@ Module {
Property { name: "__valueSet"; type: "bool" }
Method { name: "__setControlsFromColor"; type: "QVariant" }
Property { name: "contentItem"; type: "QQuickItem"; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/ComboBox 1.0"
- exports: ["QtQuick.Controls/ComboBox 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "textRole"; type: "string" }
- Property { name: "editable"; type: "bool" }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "pressed"; type: "bool"; isReadonly: true }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Property { name: "menu"; type: "QQmlComponent"; isPointer: true }
- Property { name: "selectByMouse"; type: "bool" }
- Property { name: "inputMethodComposing"; type: "bool"; isReadonly: true }
- Property { name: "__popup"; type: "QVariant" }
- Property { name: "model"; type: "QVariant" }
- Property { name: "currentIndex"; type: "int" }
- Property { name: "currentText"; type: "string"; isReadonly: true }
- Property { name: "editText"; type: "string" }
- Property { name: "inputMethodHints"; type: "int" }
- Property { name: "count"; type: "int"; isReadonly: true }
- Property { name: "validator"; type: "QValidator"; isPointer: true }
- Property { name: "acceptableInput"; type: "bool"; isReadonly: true }
+ Property { name: "showAlphaChannel"; type: "bool" }
+ Property { name: "color"; type: "QColor" }
+ Property { name: "currentColor"; type: "QColor" }
+ Property { name: "currentHue"; type: "double"; isReadonly: true }
+ Property { name: "currentSaturation"; type: "double"; isReadonly: true }
+ Property { name: "currentLightness"; type: "double"; isReadonly: true }
+ Property { name: "currentAlpha"; type: "double"; isReadonly: true }
+ Signal { name: "selectionAccepted" }
+ Method {
+ name: "setVisible"
+ Parameter { name: "v"; type: "bool" }
+ }
+ Method {
+ name: "setModality"
+ Parameter { name: "m"; type: "Qt::WindowModality" }
+ }
+ Method {
+ name: "setTitle"
+ Parameter { name: "t"; type: "string" }
+ }
+ Method {
+ name: "setColor"
+ Parameter { name: "arg"; type: "QColor" }
+ }
+ Method {
+ name: "setCurrentColor"
+ Parameter { name: "currentColor"; type: "QColor" }
+ }
+ Method {
+ name: "setShowAlphaChannel"
+ Parameter { name: "arg"; type: "bool" }
+ }
+ Property { name: "visible"; type: "bool" }
+ Property { name: "modality"; type: "Qt::WindowModality" }
+ Property { name: "title"; type: "string" }
+ Property { name: "isWindow"; type: "bool"; isReadonly: true }
+ Property { name: "x"; type: "int" }
+ Property { name: "y"; type: "int" }
+ Property { name: "width"; type: "int" }
+ Property { name: "height"; type: "int" }
+ Property { name: "__maximumDimension"; type: "int"; isReadonly: true }
+ Signal { name: "visibilityChanged" }
+ Signal { name: "geometryChanged" }
Signal { name: "accepted" }
- Signal {
- name: "activated"
- Parameter { name: "index"; type: "int" }
+ Signal { name: "rejected" }
+ Method { name: "open" }
+ Method { name: "close" }
+ Method {
+ name: "setX"
+ Parameter { name: "arg"; type: "int" }
}
Method {
- name: "textAt"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
+ name: "setY"
+ Parameter { name: "arg"; type: "int" }
}
Method {
- name: "find"
- type: "QVariant"
- Parameter { name: "text"; type: "QVariant" }
- }
- Method { name: "selectAll"; type: "QVariant" }
- Method { name: "__selectPrevItem"; type: "QVariant" }
- Method { name: "__selectNextItem"; type: "QVariant" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/DelayButton 1.0"
- exports: ["QtQuick.Extras/DelayButton 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "delay"; type: "int" }
- Property { name: "__progress"; type: "double" }
- Property { name: "progress"; type: "double"; isReadonly: true }
- Signal { name: "activated" }
- Property { name: "isDefault"; type: "bool" }
- Property { name: "menu"; type: "Menu_QMLTYPE_52"; isPointer: true }
- Property { name: "checkable"; type: "bool" }
- Property { name: "checked"; type: "bool" }
- Property { name: "exclusiveGroup"; type: "QQuickExclusiveGroup"; isPointer: true }
- Property { name: "action"; type: "QQuickAction"; isPointer: true }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "text"; type: "string" }
- Property { name: "tooltip"; type: "string" }
- Property { name: "iconSource"; type: "QUrl" }
- Property { name: "iconName"; type: "string" }
- Property { name: "__position"; type: "string" }
- Property { name: "__iconOverriden"; type: "bool"; isReadonly: true }
- Property { name: "__action"; type: "QQuickAction"; isPointer: true }
- Property { name: "__iconAction"; type: "QQuickAction"; isReadonly: true; isPointer: true }
- Property { name: "__behavior"; type: "QVariant" }
- Property { name: "__effectivePressed"; type: "bool" }
- Property { name: "pressed"; type: "bool"; isReadonly: true }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Signal { name: "clicked" }
- Method { name: "accessiblePressAction"; type: "QVariant" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/Dial 1.1"
- exports: ["QtQuick.Extras/Dial 1.1"]
- exportMetaObjectRevisions: [1]
- isComposite: true
- defaultProperty: "data"
- Property { name: "__wrap"; type: "bool" }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "tickmarksVisible"; type: "bool" }
- Property { name: "value"; type: "double" }
- Property { name: "minimumValue"; type: "double" }
- Property { name: "maximumValue"; type: "double" }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Property { name: "stepSize"; type: "double" }
- Property { name: "pressed"; type: "bool"; isReadonly: true }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/Dial 1.0"
- exports: ["QtQuick.Extras/Dial 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "__wrap"; type: "bool" }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "tickmarksVisible"; type: "bool" }
- Property { name: "value"; type: "double" }
- Property { name: "minimumValue"; type: "double" }
- Property { name: "maximumValue"; type: "double" }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Property { name: "stepSize"; type: "double" }
- Property { name: "pressed"; type: "bool"; isReadonly: true }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
+ name: "setWidth"
+ Parameter { name: "arg"; type: "int" }
+ }
+ Method {
+ name: "setHeight"
+ Parameter { name: "arg"; type: "int" }
+ }
}
Component {
- prototype: "QQuickAbstractDialog"
- name: "QtQuick.Dialogs/Dialog 1.2"
- exports: ["QtQuick.Dialogs/Dialog 1.2"]
- exportMetaObjectRevisions: [2]
+ prototype: "QObject"
+ name: "QtQuick.Dialogs/Dialog 1.3"
+ exports: ["QtQuick.Dialogs/Dialog 1.3"]
+ exportMetaObjectRevisions: [3]
isComposite: true
defaultProperty: "data"
Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ Signal {
+ name: "actionChosen"
+ Parameter { name: "action"; type: "QVariant" }
+ }
Method { name: "setupButtons"; type: "QVariant" }
Property { name: "title"; type: "string" }
Property { name: "standardButtons"; type: "QQuickAbstractDialog::StandardButtons" }
@@ -874,1696 +518,402 @@ Module {
}
Method { name: "__standardButtonsLeftModel"; type: "QJSValue" }
Method { name: "__standardButtonsRightModel"; type: "QJSValue" }
- }
- Component {
- prototype: "QQuickAbstractFileDialog"
- name: "QtQuick.Dialogs/FileDialog 1.0"
- exports: ["QtQuick.Dialogs/FileDialog 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "contentItem"
- Property { name: "settings"; type: "QQmlSettings"; isPointer: true }
- Property { name: "showFocusHighlight"; type: "bool" }
- Property { name: "palette"; type: "QQuickSystemPalette"; isPointer: true }
- Property { name: "favoriteFolders"; type: "QVariant" }
- Property { name: "dirUpAction"; type: "QQuickAction"; isPointer: true }
- Method {
- name: "dirDown"
- type: "QVariant"
- Parameter { name: "path"; type: "QVariant" }
- }
- Method { name: "dirUp"; type: "QVariant" }
- Method { name: "acceptSelection"; type: "QVariant" }
- Property { name: "contentItem"; type: "QQuickItem"; isPointer: true }
- Property { name: "shortcuts"; type: "QJSValue"; isReadonly: true }
- Property { name: "__shortcuts"; type: "QJSValue"; isReadonly: true }
- Method { name: "clearSelection" }
- Method {
- name: "addSelection"
- type: "bool"
- Parameter { name: "path"; type: "QUrl" }
- }
- }
- Component {
- prototype: "QQuickAbstractFontDialog"
- name: "QtQuick.Dialogs/FontDialog 1.1"
- exports: ["QtQuick.Dialogs/FontDialog 1.1"]
- exportMetaObjectRevisions: [1]
- isComposite: true
- defaultProperty: "contentItem"
- Property { name: "font"; type: "QFont" }
- Property { name: "currentFont"; type: "QFont" }
- Property { name: "contentItem"; type: "QQuickItem"; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/Gauge 1.0"
- exports: ["QtQuick.Extras/Gauge 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "orientation"; type: "int" }
- Property { name: "tickmarkAlignment"; type: "int" }
- Property { name: "__tickmarkAlignment"; type: "int" }
- Property { name: "__tickmarksInside"; type: "bool" }
- Property { name: "tickmarkStepSize"; type: "double" }
- Property { name: "minorTickmarkCount"; type: "int" }
- Property { name: "formatValue"; type: "QVariant" }
- Property { name: "minimumValue"; type: "double" }
- Property { name: "value"; type: "double" }
- Property { name: "maximumValue"; type: "double" }
- Property { name: "font"; type: "QFont" }
- Property { name: "__hiddenText"; type: "QQuickText"; isReadonly: true; isPointer: true }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/GroupBox 1.0"
- exports: ["QtQuick.Controls/GroupBox 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "__content"
- Property { name: "title"; type: "string" }
- Property { name: "flat"; type: "bool" }
- Property { name: "checkable"; type: "bool" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "checked"; type: "bool" }
- Property { name: "__content"; type: "QObject"; isList: true; isReadonly: true }
- Property { name: "contentItem"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Property { name: "__checkbox"; type: "CheckBox_QMLTYPE_76"; isReadonly: true; isPointer: true }
- Property { name: "__style"; type: "QObject"; isReadonly: true; isPointer: true }
- }
- Component {
- prototype: "QQuickText"
- name: "QtQuick.Controls/Label 1.0"
- exports: ["QtQuick.Controls/Label 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- }
- Component {
- prototype: "QQuickMenu"
- name: "QtQuick.Controls/Menu 1.0"
- exports: ["QtQuick.Controls/Menu 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "items"
- Property { name: "__selfComponent"; type: "QQmlComponent"; isPointer: true }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__usingDefaultStyle"; type: "bool" }
- Property { name: "__parentContentItem"; type: "QVariant" }
- Property { name: "__currentIndex"; type: "int" }
- Method {
- name: "addMenu"
- type: "QVariant"
- Parameter { name: "title"; type: "QVariant" }
- }
+ Property { name: "visible"; type: "bool" }
+ Property { name: "modality"; type: "Qt::WindowModality" }
+ Property { name: "isWindow"; type: "bool"; isReadonly: true }
+ Property { name: "x"; type: "int" }
+ Property { name: "y"; type: "int" }
+ Property { name: "width"; type: "int" }
+ Property { name: "height"; type: "int" }
+ Property { name: "__maximumDimension"; type: "int"; isReadonly: true }
+ Signal { name: "visibilityChanged" }
+ Signal { name: "geometryChanged" }
+ Signal { name: "accepted" }
+ Signal { name: "rejected" }
+ Method { name: "open" }
+ Method { name: "close" }
Method {
- name: "insertMenu"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- Parameter { name: "title"; type: "QVariant" }
- }
- }
- Component {
- prototype: "QQuickMenuBar"
- name: "QtQuick.Controls/MenuBar 1.0"
- exports: ["QtQuick.Controls/MenuBar 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "menus"
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__menuBarComponent"; type: "QQmlComponent"; isPointer: true }
- }
- Component {
- prototype: "QQuickAbstractMessageDialog"
- name: "QtQuick.Dialogs/MessageDialog 1.1"
- exports: ["QtQuick.Dialogs/MessageDialog 1.1"]
- exportMetaObjectRevisions: [1]
- isComposite: true
- defaultProperty: "contentItem"
- Method { name: "calculateImplicitWidth"; type: "QVariant" }
- Property { name: "contentItem"; type: "QQuickItem"; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/PieMenu 1.0"
- exports: ["QtQuick.Extras/PieMenu 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "menuItems"
- Property { name: "selectionAngle"; type: "double"; isReadonly: true }
- Property { name: "triggerMode"; type: "int" }
- Property { name: "title"; type: "string" }
- Property { name: "boundingItem"; type: "QQuickItem"; isPointer: true }
- Property { name: "__protectedScope"; type: "QObject"; isPointer: true }
- Property { name: "activationMode"; type: "int" }
- Property { name: "menuItems"; type: "QQuickMenuItem"; isList: true; isReadonly: true }
- Property { name: "currentIndex"; type: "int"; isReadonly: true }
- Property { name: "currentItem"; type: "QQuickMenuItem"; isReadonly: true; isPointer: true }
- Property { name: "__mouseThief"; type: "QQuickMouseThief"; isReadonly: true; isPointer: true }
- Method {
- name: "popup"
- type: "QVariant"
- Parameter { name: "x"; type: "QVariant" }
- Parameter { name: "y"; type: "QVariant" }
+ name: "setX"
+ Parameter { name: "arg"; type: "int" }
}
Method {
- name: "addItem"
- type: "QVariant"
- Parameter { name: "text"; type: "QVariant" }
+ name: "setY"
+ Parameter { name: "arg"; type: "int" }
}
Method {
- name: "insertItem"
- type: "QVariant"
- Parameter { name: "before"; type: "QVariant" }
- Parameter { name: "text"; type: "QVariant" }
+ name: "setWidth"
+ Parameter { name: "arg"; type: "int" }
}
Method {
- name: "removeItem"
- type: "QVariant"
- Parameter { name: "item"; type: "QVariant" }
- }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickLoader"
- name: "QtQuick.Extras.Private/PieMenuIcon 1.0"
- exports: ["QtQuick.Extras.Private/PieMenuIcon 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "control"; type: "PieMenu_QMLTYPE_250"; isPointer: true }
- Property { name: "styleData"; type: "QObject"; isPointer: true }
- Property { name: "iconSource"; type: "string"; isReadonly: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/ProgressBar 1.0"
- exports: ["QtQuick.Controls/ProgressBar 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "value"; type: "double" }
- Property { name: "minimumValue"; type: "double" }
- Property { name: "maximumValue"; type: "double" }
- Property { name: "indeterminate"; type: "bool" }
- Property { name: "orientation"; type: "int" }
- Property { name: "__initialized"; type: "bool" }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Method {
- name: "setValue"
- type: "QVariant"
- Parameter { name: "v"; type: "QVariant" }
+ name: "setHeight"
+ Parameter { name: "arg"; type: "int" }
}
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
}
Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/RadioButton 1.0"
- exports: ["QtQuick.Controls/RadioButton 1.0"]
- exportMetaObjectRevisions: [0]
+ prototype: "QObject"
+ name: "QtQuick.Dialogs/Dialog 1.2"
+ exports: ["QtQuick.Dialogs/Dialog 1.2"]
+ exportMetaObjectRevisions: [2]
isComposite: true
defaultProperty: "data"
- Property { name: "checked"; type: "bool" }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "exclusiveGroup"; type: "QQuickExclusiveGroup"; isPointer: true }
- Property { name: "text"; type: "string" }
- Property { name: "__cycleStatesHandler"; type: "QVariant" }
- Property { name: "pressed"; type: "bool" }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Signal { name: "clicked" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/ScrollView 1.0"
- exports: ["QtQuick.Controls/ScrollView 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "contentItem"
- Property { name: "frameVisible"; type: "bool" }
- Property { name: "highlightOnFocus"; type: "bool" }
- Property { name: "contentItem"; type: "QQuickItem"; isPointer: true }
- Property { name: "__scroller"; type: "QQuickItem"; isPointer: true }
- Property { name: "__scrollBarTopMargin"; type: "int" }
- Property { name: "__viewTopMargin"; type: "int" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "Style_QMLTYPE_3"; isPointer: true }
- Property { name: "horizontalScrollBarPolicy"; type: "int" }
- Property { name: "verticalScrollBarPolicy"; type: "int" }
- Property { name: "viewport"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Property { name: "flickableItem"; type: "QQuickFlickable"; isReadonly: true; isPointer: true }
- Property { name: "__wheelAreaScrollSpeed"; type: "double" }
- Property {
- name: "__horizontalScrollBar"
- type: "ScrollBar_QMLTYPE_27"
- isReadonly: true
- isPointer: true
+ Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ Signal {
+ name: "actionChosen"
+ Parameter { name: "action"; type: "QVariant" }
}
+ Method { name: "setupButtons"; type: "QVariant" }
+ Property { name: "title"; type: "string" }
+ Property { name: "standardButtons"; type: "QQuickAbstractDialog::StandardButtons" }
Property {
- name: "__verticalScrollBar"
- type: "ScrollBar_QMLTYPE_27"
+ name: "clickedButton"
+ type: "QQuickAbstractDialog::StandardButton"
isReadonly: true
- isPointer: true
- }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/Slider 1.0"
- exports: ["QtQuick.Controls/Slider 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "orientation"; type: "int" }
- Property { name: "updateValueWhileDragging"; type: "bool" }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "tickmarksEnabled"; type: "bool" }
- Property { name: "__horizontal"; type: "bool" }
- Property { name: "__handlePos"; type: "double" }
- Property { name: "minimumValue"; type: "double" }
- Property { name: "maximumValue"; type: "double" }
- Property { name: "pressed"; type: "bool"; isReadonly: true }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Property { name: "stepSize"; type: "double" }
- Property { name: "value"; type: "double" }
- Method { name: "accessibleIncreaseAction"; type: "QVariant" }
- Method { name: "accessibleDecreaseAction"; type: "QVariant" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/SpinBox 1.0"
- exports: ["QtQuick.Controls/SpinBox 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "horizontalAlignment"; type: "int" }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Property { name: "selectByMouse"; type: "bool" }
- Property { name: "inputMethodComposing"; type: "bool"; isReadonly: true }
- Property { name: "menu"; type: "QQmlComponent"; isPointer: true }
- Property { name: "value"; type: "double" }
- Property { name: "minimumValue"; type: "double" }
- Property { name: "maximumValue"; type: "double" }
- Property { name: "stepSize"; type: "double" }
- Property { name: "suffix"; type: "string" }
- Property { name: "prefix"; type: "string" }
- Property { name: "decimals"; type: "int" }
- Property { name: "font"; type: "QFont" }
- Property { name: "cursorPosition"; type: "int" }
- Property { name: "__text"; type: "string" }
- Property { name: "__baselineOffset"; type: "double" }
- Signal { name: "editingFinished" }
- Method { name: "__increment"; type: "QVariant" }
- Method { name: "__decrement"; type: "QVariant" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickItem"
- name: "QtQuick.Controls/SplitView 1.0"
- exports: ["QtQuick.Controls/SplitView 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "__contents"
- Property { name: "orientation"; type: "int" }
- Property { name: "handleDelegate"; type: "QQmlComponent"; isPointer: true }
- Property { name: "resizing"; type: "bool" }
- Property { name: "__contents"; type: "QObject"; isList: true; isReadonly: true }
- Property { name: "__items"; type: "QQuickItem"; isList: true; isReadonly: true }
- Property { name: "__handles"; type: "QQuickItem"; isList: true; isReadonly: true }
- Method {
- name: "addItem"
- type: "QVariant"
- Parameter { name: "item"; type: "QVariant" }
- }
- Method {
- name: "removeItem"
- type: "QVariant"
- Parameter { name: "item"; type: "QVariant" }
- }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/StackView 1.0"
- exports: ["QtQuick.Controls/StackView 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "initialItem"; type: "QVariant" }
- Property { name: "busy"; type: "bool"; isReadonly: true }
- Property { name: "delegate"; type: "StackViewDelegate_QMLTYPE_293"; isPointer: true }
- Property { name: "__currentItem"; type: "QQuickItem"; isPointer: true }
- Property { name: "__depth"; type: "int" }
- Property { name: "__currentTransition"; type: "QVariant" }
- Property { name: "__guard"; type: "bool" }
- Property { name: "invalidItemReplacement"; type: "QQmlComponent"; isPointer: true }
- Property { name: "depth"; type: "int"; isReadonly: true }
- Property { name: "currentItem"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Method {
- name: "push"
- type: "QVariant"
- Parameter { name: "item"; type: "QVariant" }
- }
- Method {
- name: "pop"
- type: "QVariant"
- Parameter { name: "item"; type: "QVariant" }
- }
- Method { name: "clear"; type: "QVariant" }
- Method {
- name: "find"
- type: "QVariant"
- Parameter { name: "func"; type: "QVariant" }
- Parameter { name: "onlySearchLoadedItems"; type: "QVariant" }
}
+ Property { name: "contentItem"; type: "QQuickItem"; isPointer: true }
+ Signal { name: "buttonClicked" }
+ Signal { name: "discard" }
+ Signal { name: "help" }
+ Signal { name: "yes" }
+ Signal { name: "no" }
+ Signal { name: "apply" }
+ Signal { name: "reset" }
Method {
- name: "get"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- Parameter { name: "dontLoad"; type: "QVariant" }
- }
- Method { name: "completeTransition"; type: "QVariant" }
- Method {
- name: "replace"
- type: "QVariant"
- Parameter { name: "item"; type: "QVariant" }
- Parameter { name: "properties"; type: "QVariant" }
- Parameter { name: "immediate"; type: "QVariant" }
+ name: "setTitle"
+ Parameter { name: "arg"; type: "string" }
}
Method {
- name: "__recursionGuard"
- type: "QVariant"
- Parameter { name: "use"; type: "QVariant" }
+ name: "setStandardButtons"
+ Parameter { name: "buttons"; type: "StandardButtons" }
}
Method {
- name: "__loadElement"
- type: "QVariant"
- Parameter { name: "element"; type: "QVariant" }
+ name: "click"
+ Parameter { name: "button"; type: "QQuickAbstractDialog::StandardButton" }
}
+ Method { name: "__standardButtonsLeftModel"; type: "QJSValue" }
+ Method { name: "__standardButtonsRightModel"; type: "QJSValue" }
+ Property { name: "visible"; type: "bool" }
+ Property { name: "modality"; type: "Qt::WindowModality" }
+ Property { name: "isWindow"; type: "bool"; isReadonly: true }
+ Property { name: "x"; type: "int" }
+ Property { name: "y"; type: "int" }
+ Property { name: "width"; type: "int" }
+ Property { name: "height"; type: "int" }
+ Property { name: "__maximumDimension"; type: "int"; isReadonly: true }
+ Signal { name: "visibilityChanged" }
+ Signal { name: "geometryChanged" }
+ Signal { name: "accepted" }
+ Signal { name: "rejected" }
+ Method { name: "open" }
+ Method { name: "close" }
Method {
- name: "__resolveComponent"
- type: "QVariant"
- Parameter { name: "unknownObjectType"; type: "QVariant" }
- Parameter { name: "element"; type: "QVariant" }
+ name: "setX"
+ Parameter { name: "arg"; type: "int" }
}
Method {
- name: "__cleanup"
- type: "QVariant"
- Parameter { name: "element"; type: "QVariant" }
+ name: "setY"
+ Parameter { name: "arg"; type: "int" }
}
Method {
- name: "__setStatus"
- type: "QVariant"
- Parameter { name: "item"; type: "QVariant" }
- Parameter { name: "status"; type: "QVariant" }
+ name: "setWidth"
+ Parameter { name: "arg"; type: "int" }
}
Method {
- name: "__performTransition"
- type: "QVariant"
- Parameter { name: "transition"; type: "QVariant" }
+ name: "setHeight"
+ Parameter { name: "arg"; type: "int" }
}
- Method { name: "animationFinished"; type: "QVariant" }
}
Component {
prototype: "QObject"
- name: "QtQuick.Controls/StackViewDelegate 1.0"
- exports: ["QtQuick.Controls/StackViewDelegate 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- Property { name: "pushTransition"; type: "QQmlComponent"; isPointer: true }
- Property { name: "popTransition"; type: "QQmlComponent"; isPointer: true }
- Property { name: "replaceTransition"; type: "QQmlComponent"; isPointer: true }
- Method {
- name: "getTransition"
- type: "QVariant"
- Parameter { name: "properties"; type: "QVariant" }
- }
- Method {
- name: "transitionFinished"
- type: "QVariant"
- Parameter { name: "properties"; type: "QVariant" }
- }
- }
- Component {
- prototype: "QQuickParallelAnimation"
- name: "QtQuick.Controls/StackViewTransition 1.0"
- exports: ["QtQuick.Controls/StackViewTransition 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "animations"
- Property { name: "name"; type: "string" }
- Property { name: "enterItem"; type: "QQuickItem"; isPointer: true }
- Property { name: "exitItem"; type: "QQuickItem"; isPointer: true }
- Property { name: "immediate"; type: "bool" }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/StatusBar 1.0"
- exports: ["QtQuick.Controls/StatusBar 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "__content"
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isReadonly: true; isPointer: true }
- Property { name: "__content"; type: "QObject"; isList: true; isReadonly: true }
- Property { name: "contentItem"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/StatusIndicator 1.0"
- exports: ["QtQuick.Extras/StatusIndicator 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "active"; type: "bool" }
- Property { name: "color"; type: "QColor" }
- Property { name: "on"; type: "bool" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/StatusIndicator 1.1"
- exports: ["QtQuick.Extras/StatusIndicator 1.1"]
- exportMetaObjectRevisions: [1]
- isComposite: true
- defaultProperty: "data"
- Property { name: "active"; type: "bool" }
- Property { name: "color"; type: "QColor" }
- Property { name: "on"; type: "bool" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/Switch 1.1"
- exports: ["QtQuick.Controls/Switch 1.1"]
- exportMetaObjectRevisions: [1]
- isComposite: true
- defaultProperty: "data"
- Property { name: "checked"; type: "bool" }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "exclusiveGroup"; type: "QQuickExclusiveGroup"; isPointer: true }
- Property { name: "pressed"; type: "bool"; isReadonly: true }
- Signal { name: "clicked" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickLoader"
- name: "QtQuick.Controls/Tab 1.0"
- exports: ["QtQuick.Controls/Tab 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "component"
- Property { name: "title"; type: "string" }
- Property { name: "__inserted"; type: "bool" }
- Property { name: "component"; type: "QQmlComponent"; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/TabView 1.0"
- exports: ["QtQuick.Controls/TabView 1.0"]
+ name: "QtQuick.Dialogs/FileDialog 1.0"
+ exports: ["QtQuick.Dialogs/FileDialog 1.0"]
exportMetaObjectRevisions: [0]
isComposite: true
- defaultProperty: "data"
- Property { name: "currentIndex"; type: "int" }
- Property { name: "count"; type: "int"; isReadonly: true }
- Property { name: "frameVisible"; type: "bool" }
- Property { name: "tabsVisible"; type: "bool" }
- Property { name: "tabPosition"; type: "int" }
- Property { name: "__tabs"; type: "QQmlListModel"; isPointer: true }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__styleItem"; type: "QVariant" }
- Property { name: "contentItem"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
+ defaultProperty: "contentItem"
+ Property { name: "modelComponent"; type: "QQmlComponent"; isPointer: true }
+ Property { name: "settings"; type: "QQmlSettings"; isPointer: true }
+ Property { name: "showFocusHighlight"; type: "bool" }
+ Property { name: "palette"; type: "QQuickSystemPalette"; isPointer: true }
+ Property { name: "favoriteFolders"; type: "QVariant" }
+ Property { name: "dirUpAction"; type: "QQuickAction1"; isPointer: true }
Method {
- name: "addTab"
+ name: "dirDown"
type: "QVariant"
- Parameter { name: "title"; type: "QVariant" }
- Parameter { name: "component"; type: "QVariant" }
+ Parameter { name: "path"; type: "QVariant" }
}
+ Method { name: "dirUp"; type: "QVariant" }
+ Method { name: "acceptSelection"; type: "QVariant" }
+ Property { name: "contentItem"; type: "QQuickItem"; isPointer: true }
+ Method { name: "clearSelection" }
Method {
- name: "insertTab"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- Parameter { name: "title"; type: "QVariant" }
- Parameter { name: "component"; type: "QVariant" }
+ name: "addSelection"
+ type: "bool"
+ Parameter { name: "path"; type: "QUrl" }
}
+ Property { name: "selectExisting"; type: "bool" }
+ Property { name: "selectMultiple"; type: "bool" }
+ Property { name: "selectFolder"; type: "bool" }
+ Property { name: "folder"; type: "QUrl" }
+ Property { name: "nameFilters"; type: "QStringList" }
+ Property { name: "selectedNameFilter"; type: "string" }
+ Property { name: "selectedNameFilterExtensions"; type: "QStringList"; isReadonly: true }
+ Property { name: "selectedNameFilterIndex"; type: "int" }
+ Property { name: "fileUrl"; type: "QUrl"; isReadonly: true }
+ Property { name: "fileUrls"; type: "QList<QUrl>"; isReadonly: true }
+ Property { name: "sidebarVisible"; type: "bool" }
+ Property { name: "defaultSuffix"; type: "string" }
+ Property { name: "shortcuts"; type: "QJSValue"; isReadonly: true }
+ Property { name: "__shortcuts"; type: "QJSValue"; isReadonly: true }
+ Signal { name: "filterSelected" }
+ Signal { name: "fileModeChanged" }
+ Signal { name: "selectionAccepted" }
Method {
- name: "removeTab"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
+ name: "setVisible"
+ Parameter { name: "v"; type: "bool" }
}
Method {
- name: "moveTab"
- type: "QVariant"
- Parameter { name: "from"; type: "QVariant" }
- Parameter { name: "to"; type: "QVariant" }
+ name: "setTitle"
+ Parameter { name: "t"; type: "string" }
}
Method {
- name: "getTab"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
+ name: "setSelectExisting"
+ Parameter { name: "s"; type: "bool" }
}
Method {
- name: "__willRemoveIndex"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
+ name: "setSelectMultiple"
+ Parameter { name: "s"; type: "bool" }
}
Method {
- name: "__didInsertIndex"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- }
- Method { name: "__setOpacities"; type: "QVariant" }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/TableView 1.0"
- exports: ["QtQuick.Controls/TableView 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "__columns"
- Property { name: "model"; type: "QVariant" }
- Property { name: "rowCount"; type: "int"; isReadonly: true }
- Property { name: "currentRow"; type: "int" }
- Property {
- name: "selection"
- type: "TableViewSelection_QMLTYPE_175"
- isReadonly: true
- isPointer: true
- }
- Signal {
- name: "activated"
- Parameter { name: "row"; type: "int" }
- }
- Signal {
- name: "clicked"
- Parameter { name: "row"; type: "int" }
- }
- Signal {
- name: "doubleClicked"
- Parameter { name: "row"; type: "int" }
- }
- Signal {
- name: "pressAndHold"
- Parameter { name: "row"; type: "int" }
+ name: "setSelectFolder"
+ Parameter { name: "s"; type: "bool" }
}
Method {
- name: "positionViewAtRow"
- type: "QVariant"
- Parameter { name: "row"; type: "QVariant" }
- Parameter { name: "mode"; type: "QVariant" }
+ name: "setFolder"
+ Parameter { name: "f"; type: "QUrl" }
}
Method {
- name: "rowAt"
- type: "QVariant"
- Parameter { name: "x"; type: "QVariant" }
- Parameter { name: "y"; type: "QVariant" }
- }
- Property { name: "alternatingRowColors"; type: "bool" }
- Property { name: "headerVisible"; type: "bool" }
- Property { name: "itemDelegate"; type: "QQmlComponent"; isPointer: true }
- Property { name: "rowDelegate"; type: "QQmlComponent"; isPointer: true }
- Property { name: "headerDelegate"; type: "QQmlComponent"; isPointer: true }
- Property { name: "sortIndicatorColumn"; type: "int" }
- Property { name: "sortIndicatorVisible"; type: "bool" }
- Property { name: "sortIndicatorOrder"; type: "int" }
- Property { name: "selectionMode"; type: "int" }
- Property { name: "__viewTypeName"; type: "string" }
- Property { name: "__isTreeView"; type: "bool"; isReadonly: true }
- Property { name: "__itemDelegateLoader"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__model"; type: "QVariant" }
- Property { name: "__activateItemOnSingleClick"; type: "bool" }
- Property { name: "__mouseArea"; type: "QQuickItem"; isPointer: true }
- Property { name: "backgroundVisible"; type: "bool" }
- Property { name: "contentHeader"; type: "QQmlComponent"; isPointer: true }
- Property { name: "contentFooter"; type: "QQmlComponent"; isPointer: true }
- Property { name: "columnCount"; type: "int"; isReadonly: true }
- Property { name: "section"; type: "QQuickViewSection"; isReadonly: true; isPointer: true }
- Property { name: "__columns"; type: "QObject"; isList: true; isReadonly: true }
- Property { name: "__currentRowItem"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Property { name: "__currentRow"; type: "int" }
- Property { name: "__listView"; type: "QQuickListView"; isReadonly: true; isPointer: true }
- Method {
- name: "addColumn"
- type: "QVariant"
- Parameter { name: "column"; type: "QVariant" }
+ name: "setNameFilters"
+ Parameter { name: "f"; type: "QStringList" }
}
Method {
- name: "insertColumn"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- Parameter { name: "column"; type: "QVariant" }
+ name: "selectNameFilter"
+ Parameter { name: "f"; type: "string" }
}
Method {
- name: "removeColumn"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
+ name: "setSelectedNameFilterIndex"
+ Parameter { name: "idx"; type: "int" }
}
Method {
- name: "moveColumn"
- type: "QVariant"
- Parameter { name: "from"; type: "QVariant" }
- Parameter { name: "to"; type: "QVariant" }
+ name: "setSidebarVisible"
+ Parameter { name: "s"; type: "bool" }
}
Method {
- name: "getColumn"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- }
- Method { name: "resizeColumnsToContents"; type: "QVariant" }
- Property { name: "frameVisible"; type: "bool" }
- Property { name: "highlightOnFocus"; type: "bool" }
- Property { name: "contentItem"; type: "QQuickItem"; isPointer: true }
- Property { name: "__scroller"; type: "QQuickItem"; isPointer: true }
- Property { name: "__scrollBarTopMargin"; type: "int" }
- Property { name: "__viewTopMargin"; type: "int" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "Style_QMLTYPE_3"; isPointer: true }
- Property { name: "horizontalScrollBarPolicy"; type: "int" }
- Property { name: "verticalScrollBarPolicy"; type: "int" }
- Property { name: "viewport"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Property { name: "flickableItem"; type: "QQuickFlickable"; isReadonly: true; isPointer: true }
- Property { name: "__wheelAreaScrollSpeed"; type: "double" }
- Property {
- name: "__horizontalScrollBar"
- type: "ScrollBar_QMLTYPE_27"
- isReadonly: true
- isPointer: true
- }
- Property {
- name: "__verticalScrollBar"
- type: "ScrollBar_QMLTYPE_27"
- isReadonly: true
- isPointer: true
+ name: "setDefaultSuffix"
+ Parameter { name: "suffix"; type: "string" }
}
- }
- Component {
- prototype: "QObject"
- name: "QtQuick.Controls/TableViewColumn 1.0"
- exports: ["QtQuick.Controls/TableViewColumn 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- Property { name: "__view"; type: "QQuickItem"; isPointer: true }
- Property { name: "__index"; type: "int" }
+ Property { name: "visible"; type: "bool" }
+ Property { name: "modality"; type: "Qt::WindowModality" }
Property { name: "title"; type: "string" }
- Property { name: "role"; type: "string" }
+ Property { name: "isWindow"; type: "bool"; isReadonly: true }
+ Property { name: "x"; type: "int" }
+ Property { name: "y"; type: "int" }
Property { name: "width"; type: "int" }
- Property { name: "visible"; type: "bool" }
- Property { name: "resizable"; type: "bool" }
- Property { name: "movable"; type: "bool" }
- Property { name: "elideMode"; type: "int" }
- Property { name: "horizontalAlignment"; type: "int" }
- Property { name: "delegate"; type: "QQmlComponent"; isPointer: true }
- Method { name: "resizeToContents"; type: "QVariant" }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/TextArea 1.3"
- exports: ["QtQuick.Controls/TextArea 1.3"]
- exportMetaObjectRevisions: [3]
- isComposite: true
- defaultProperty: "data"
- Property { name: "inputMethodComposing"; type: "bool"; isReadonly: true }
- Property { name: "tabChangesFocus"; type: "bool" }
- Property { name: "selectByMouse"; type: "bool" }
- Property { name: "menu"; type: "QQmlComponent"; isPointer: true }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "baseUrl"; type: "QUrl" }
- Property { name: "canPaste"; type: "bool"; isReadonly: true }
- Property { name: "canRedo"; type: "bool"; isReadonly: true }
- Property { name: "canUndo"; type: "bool"; isReadonly: true }
- Property { name: "textColor"; type: "QColor" }
- Property { name: "cursorPosition"; type: "int" }
- Property { name: "cursorRectangle"; type: "QRectF"; isReadonly: true }
- Property { name: "font"; type: "QFont" }
- Property { name: "horizontalAlignment"; type: "int" }
- Property { name: "effectiveHorizontalAlignment"; type: "int"; isReadonly: true }
- Property { name: "verticalAlignment"; type: "int" }
- Property { name: "inputMethodHints"; type: "int" }
- Property { name: "length"; type: "int"; isReadonly: true }
- Property { name: "lineCount"; type: "int"; isReadonly: true }
- Property { name: "readOnly"; type: "bool" }
- Property { name: "selectedText"; type: "string"; isReadonly: true }
- Property { name: "selectionEnd"; type: "int"; isReadonly: true }
- Property { name: "selectionStart"; type: "int"; isReadonly: true }
- Property { name: "text"; type: "string" }
- Property { name: "textFormat"; type: "int" }
- Property { name: "wrapMode"; type: "int" }
- Property { name: "selectByKeyboard"; type: "bool" }
- Property { name: "hoveredLink"; type: "string"; isReadonly: true }
- Property { name: "backgroundVisible"; type: "bool" }
- Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
- Property { name: "textMargin"; type: "double" }
- Property { name: "contentWidth"; type: "double"; isReadonly: true }
- Property { name: "contentHeight"; type: "double"; isReadonly: true }
- Property { name: "textDocument"; type: "QQuickTextDocument"; isReadonly: true; isPointer: true }
- Signal {
- name: "linkActivated"
- Parameter { name: "link"; type: "string" }
- }
- Signal {
- name: "linkHovered"
- Parameter { name: "link"; type: "string" }
- }
- Signal { name: "editingFinished" }
- Method {
- name: "append"
- type: "QVariant"
- Parameter { name: "string"; type: "QVariant" }
- }
- Method { name: "copy"; type: "QVariant" }
- Method { name: "cut"; type: "QVariant" }
- Method { name: "deselect"; type: "QVariant" }
- Method {
- name: "getFormattedText"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
- }
- Method {
- name: "getText"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
- }
- Method {
- name: "insert"
- type: "QVariant"
- Parameter { name: "position"; type: "QVariant" }
- Parameter { name: "text"; type: "QVariant" }
- }
- Method {
- name: "isRightToLeft"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
- }
- Method {
- name: "moveCursorSelection"
- type: "QVariant"
- Parameter { name: "position"; type: "QVariant" }
- Parameter { name: "mode"; type: "QVariant" }
- }
- Method { name: "paste"; type: "QVariant" }
+ Property { name: "height"; type: "int" }
+ Property { name: "__maximumDimension"; type: "int"; isReadonly: true }
+ Signal { name: "visibilityChanged" }
+ Signal { name: "geometryChanged" }
+ Signal { name: "accepted" }
+ Signal { name: "rejected" }
+ Method { name: "open" }
+ Method { name: "close" }
Method {
- name: "positionAt"
- type: "QVariant"
- Parameter { name: "x"; type: "QVariant" }
- Parameter { name: "y"; type: "QVariant" }
+ name: "setX"
+ Parameter { name: "arg"; type: "int" }
}
Method {
- name: "positionToRectangle"
- type: "QVariant"
- Parameter { name: "position"; type: "QVariant" }
+ name: "setY"
+ Parameter { name: "arg"; type: "int" }
}
- Method { name: "redo"; type: "QVariant" }
Method {
- name: "remove"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
+ name: "setWidth"
+ Parameter { name: "arg"; type: "int" }
}
Method {
- name: "select"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
- }
- Method { name: "selectAll"; type: "QVariant" }
- Method { name: "selectWord"; type: "QVariant" }
- Method { name: "undo"; type: "QVariant" }
- Property { name: "frameVisible"; type: "bool" }
- Property { name: "highlightOnFocus"; type: "bool" }
- Property { name: "contentItem"; type: "QQuickItem"; isPointer: true }
- Property { name: "__scroller"; type: "QQuickItem"; isPointer: true }
- Property { name: "__scrollBarTopMargin"; type: "int" }
- Property { name: "__viewTopMargin"; type: "int" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "Style_QMLTYPE_3"; isPointer: true }
- Property { name: "horizontalScrollBarPolicy"; type: "int" }
- Property { name: "verticalScrollBarPolicy"; type: "int" }
- Property { name: "viewport"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Property { name: "flickableItem"; type: "QQuickFlickable"; isReadonly: true; isPointer: true }
- Property { name: "__wheelAreaScrollSpeed"; type: "double" }
- Property {
- name: "__horizontalScrollBar"
- type: "ScrollBar_QMLTYPE_27"
- isReadonly: true
- isPointer: true
- }
- Property {
- name: "__verticalScrollBar"
- type: "ScrollBar_QMLTYPE_27"
- isReadonly: true
- isPointer: true
+ name: "setHeight"
+ Parameter { name: "arg"; type: "int" }
}
}
Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/TextArea 1.0"
- exports: ["QtQuick.Controls/TextArea 1.0"]
- exportMetaObjectRevisions: [0]
+ prototype: "QObject"
+ name: "QtQuick.Dialogs/FontDialog 1.1"
+ exports: ["QtQuick.Dialogs/FontDialog 1.1"]
+ exportMetaObjectRevisions: [1]
isComposite: true
- defaultProperty: "data"
- Property { name: "inputMethodComposing"; type: "bool"; isReadonly: true }
- Property { name: "tabChangesFocus"; type: "bool" }
- Property { name: "selectByMouse"; type: "bool" }
- Property { name: "menu"; type: "QQmlComponent"; isPointer: true }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "baseUrl"; type: "QUrl" }
- Property { name: "canPaste"; type: "bool"; isReadonly: true }
- Property { name: "canRedo"; type: "bool"; isReadonly: true }
- Property { name: "canUndo"; type: "bool"; isReadonly: true }
- Property { name: "textColor"; type: "QColor" }
- Property { name: "cursorPosition"; type: "int" }
- Property { name: "cursorRectangle"; type: "QRectF"; isReadonly: true }
+ defaultProperty: "contentItem"
Property { name: "font"; type: "QFont" }
- Property { name: "horizontalAlignment"; type: "int" }
- Property { name: "effectiveHorizontalAlignment"; type: "int"; isReadonly: true }
- Property { name: "verticalAlignment"; type: "int" }
- Property { name: "inputMethodHints"; type: "int" }
- Property { name: "length"; type: "int"; isReadonly: true }
- Property { name: "lineCount"; type: "int"; isReadonly: true }
- Property { name: "readOnly"; type: "bool" }
- Property { name: "selectedText"; type: "string"; isReadonly: true }
- Property { name: "selectionEnd"; type: "int"; isReadonly: true }
- Property { name: "selectionStart"; type: "int"; isReadonly: true }
- Property { name: "text"; type: "string" }
- Property { name: "textFormat"; type: "int" }
- Property { name: "wrapMode"; type: "int" }
- Property { name: "selectByKeyboard"; type: "bool" }
- Property { name: "hoveredLink"; type: "string"; isReadonly: true }
- Property { name: "backgroundVisible"; type: "bool" }
- Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
- Property { name: "textMargin"; type: "double" }
- Property { name: "contentWidth"; type: "double"; isReadonly: true }
- Property { name: "contentHeight"; type: "double"; isReadonly: true }
- Property { name: "textDocument"; type: "QQuickTextDocument"; isReadonly: true; isPointer: true }
- Signal {
- name: "linkActivated"
- Parameter { name: "link"; type: "string" }
- }
- Signal {
- name: "linkHovered"
- Parameter { name: "link"; type: "string" }
- }
- Signal { name: "editingFinished" }
- Method {
- name: "append"
- type: "QVariant"
- Parameter { name: "string"; type: "QVariant" }
- }
- Method { name: "copy"; type: "QVariant" }
- Method { name: "cut"; type: "QVariant" }
- Method { name: "deselect"; type: "QVariant" }
- Method {
- name: "getFormattedText"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
- }
- Method {
- name: "getText"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
- }
- Method {
- name: "insert"
- type: "QVariant"
- Parameter { name: "position"; type: "QVariant" }
- Parameter { name: "text"; type: "QVariant" }
- }
- Method {
- name: "isRightToLeft"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
- }
- Method {
- name: "moveCursorSelection"
- type: "QVariant"
- Parameter { name: "position"; type: "QVariant" }
- Parameter { name: "mode"; type: "QVariant" }
- }
- Method { name: "paste"; type: "QVariant" }
- Method {
- name: "positionAt"
- type: "QVariant"
- Parameter { name: "x"; type: "QVariant" }
- Parameter { name: "y"; type: "QVariant" }
- }
- Method {
- name: "positionToRectangle"
- type: "QVariant"
- Parameter { name: "position"; type: "QVariant" }
- }
- Method { name: "redo"; type: "QVariant" }
- Method {
- name: "remove"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
- }
- Method {
- name: "select"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
- }
- Method { name: "selectAll"; type: "QVariant" }
- Method { name: "selectWord"; type: "QVariant" }
- Method { name: "undo"; type: "QVariant" }
- Property { name: "frameVisible"; type: "bool" }
- Property { name: "highlightOnFocus"; type: "bool" }
+ Property { name: "currentFont"; type: "QFont" }
Property { name: "contentItem"; type: "QQuickItem"; isPointer: true }
- Property { name: "__scroller"; type: "QQuickItem"; isPointer: true }
- Property { name: "__scrollBarTopMargin"; type: "int" }
- Property { name: "__viewTopMargin"; type: "int" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "Style_QMLTYPE_3"; isPointer: true }
- Property { name: "horizontalScrollBarPolicy"; type: "int" }
- Property { name: "verticalScrollBarPolicy"; type: "int" }
- Property { name: "viewport"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Property { name: "flickableItem"; type: "QQuickFlickable"; isReadonly: true; isPointer: true }
- Property { name: "__wheelAreaScrollSpeed"; type: "double" }
- Property {
- name: "__horizontalScrollBar"
- type: "ScrollBar_QMLTYPE_27"
- isReadonly: true
- isPointer: true
- }
- Property {
- name: "__verticalScrollBar"
- type: "ScrollBar_QMLTYPE_27"
- isReadonly: true
- isPointer: true
- }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/TextArea 1.5"
- exports: ["QtQuick.Controls/TextArea 1.5"]
- exportMetaObjectRevisions: [5]
- isComposite: true
- defaultProperty: "data"
- Property { name: "inputMethodComposing"; type: "bool"; isReadonly: true }
- Property { name: "tabChangesFocus"; type: "bool" }
- Property { name: "selectByMouse"; type: "bool" }
- Property { name: "menu"; type: "QQmlComponent"; isPointer: true }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "baseUrl"; type: "QUrl" }
- Property { name: "canPaste"; type: "bool"; isReadonly: true }
- Property { name: "canRedo"; type: "bool"; isReadonly: true }
- Property { name: "canUndo"; type: "bool"; isReadonly: true }
- Property { name: "textColor"; type: "QColor" }
- Property { name: "cursorPosition"; type: "int" }
- Property { name: "cursorRectangle"; type: "QRectF"; isReadonly: true }
- Property { name: "font"; type: "QFont" }
- Property { name: "horizontalAlignment"; type: "int" }
- Property { name: "effectiveHorizontalAlignment"; type: "int"; isReadonly: true }
- Property { name: "verticalAlignment"; type: "int" }
- Property { name: "inputMethodHints"; type: "int" }
- Property { name: "length"; type: "int"; isReadonly: true }
- Property { name: "lineCount"; type: "int"; isReadonly: true }
- Property { name: "readOnly"; type: "bool" }
- Property { name: "selectedText"; type: "string"; isReadonly: true }
- Property { name: "selectionEnd"; type: "int"; isReadonly: true }
- Property { name: "selectionStart"; type: "int"; isReadonly: true }
- Property { name: "text"; type: "string" }
- Property { name: "textFormat"; type: "int" }
- Property { name: "wrapMode"; type: "int" }
- Property { name: "selectByKeyboard"; type: "bool" }
- Property { name: "hoveredLink"; type: "string"; isReadonly: true }
- Property { name: "backgroundVisible"; type: "bool" }
- Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
- Property { name: "textMargin"; type: "double" }
- Property { name: "contentWidth"; type: "double"; isReadonly: true }
- Property { name: "contentHeight"; type: "double"; isReadonly: true }
- Property { name: "textDocument"; type: "QQuickTextDocument"; isReadonly: true; isPointer: true }
- Signal {
- name: "linkActivated"
- Parameter { name: "link"; type: "string" }
- }
- Signal {
- name: "linkHovered"
- Parameter { name: "link"; type: "string" }
- }
- Signal { name: "editingFinished" }
- Method {
- name: "append"
- type: "QVariant"
- Parameter { name: "string"; type: "QVariant" }
- }
- Method { name: "copy"; type: "QVariant" }
- Method { name: "cut"; type: "QVariant" }
- Method { name: "deselect"; type: "QVariant" }
+ Property { name: "scalableFonts"; type: "bool" }
+ Property { name: "nonScalableFonts"; type: "bool" }
+ Property { name: "monospacedFonts"; type: "bool" }
+ Property { name: "proportionalFonts"; type: "bool" }
+ Signal { name: "selectionAccepted" }
Method {
- name: "getFormattedText"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
+ name: "setVisible"
+ Parameter { name: "v"; type: "bool" }
}
Method {
- name: "getText"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
+ name: "setModality"
+ Parameter { name: "m"; type: "Qt::WindowModality" }
}
Method {
- name: "insert"
- type: "QVariant"
- Parameter { name: "position"; type: "QVariant" }
- Parameter { name: "text"; type: "QVariant" }
+ name: "setTitle"
+ Parameter { name: "t"; type: "string" }
}
Method {
- name: "isRightToLeft"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
+ name: "setFont"
+ Parameter { name: "arg"; type: "QFont" }
}
Method {
- name: "moveCursorSelection"
- type: "QVariant"
- Parameter { name: "position"; type: "QVariant" }
- Parameter { name: "mode"; type: "QVariant" }
+ name: "setCurrentFont"
+ Parameter { name: "arg"; type: "QFont" }
}
- Method { name: "paste"; type: "QVariant" }
Method {
- name: "positionAt"
- type: "QVariant"
- Parameter { name: "x"; type: "QVariant" }
- Parameter { name: "y"; type: "QVariant" }
+ name: "setScalableFonts"
+ Parameter { name: "arg"; type: "bool" }
}
Method {
- name: "positionToRectangle"
- type: "QVariant"
- Parameter { name: "position"; type: "QVariant" }
+ name: "setNonScalableFonts"
+ Parameter { name: "arg"; type: "bool" }
}
- Method { name: "redo"; type: "QVariant" }
Method {
- name: "remove"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
+ name: "setMonospacedFonts"
+ Parameter { name: "arg"; type: "bool" }
}
Method {
- name: "select"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
- }
- Method { name: "selectAll"; type: "QVariant" }
- Method { name: "selectWord"; type: "QVariant" }
- Method { name: "undo"; type: "QVariant" }
- Property { name: "frameVisible"; type: "bool" }
- Property { name: "highlightOnFocus"; type: "bool" }
- Property { name: "contentItem"; type: "QQuickItem"; isPointer: true }
- Property { name: "__scroller"; type: "QQuickItem"; isPointer: true }
- Property { name: "__scrollBarTopMargin"; type: "int" }
- Property { name: "__viewTopMargin"; type: "int" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "Style_QMLTYPE_3"; isPointer: true }
- Property { name: "horizontalScrollBarPolicy"; type: "int" }
- Property { name: "verticalScrollBarPolicy"; type: "int" }
- Property { name: "viewport"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Property { name: "flickableItem"; type: "QQuickFlickable"; isReadonly: true; isPointer: true }
- Property { name: "__wheelAreaScrollSpeed"; type: "double" }
- Property {
- name: "__horizontalScrollBar"
- type: "ScrollBar_QMLTYPE_27"
- isReadonly: true
- isPointer: true
- }
- Property {
- name: "__verticalScrollBar"
- type: "ScrollBar_QMLTYPE_27"
- isReadonly: true
- isPointer: true
+ name: "setProportionalFonts"
+ Parameter { name: "arg"; type: "bool" }
}
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/TextField 1.0"
- exports: ["QtQuick.Controls/TextField 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "inputMethodComposing"; type: "bool"; isReadonly: true }
- Property { name: "selectByMouse"; type: "bool" }
- Property { name: "menu"; type: "QQmlComponent"; isPointer: true }
- Property { name: "acceptableInput"; type: "bool"; isReadonly: true }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "canPaste"; type: "bool"; isReadonly: true }
- Property { name: "canRedo"; type: "bool"; isReadonly: true }
- Property { name: "canUndo"; type: "bool"; isReadonly: true }
- Property { name: "textColor"; type: "QColor" }
- Property { name: "cursorPosition"; type: "int" }
- Property { name: "cursorRectangle"; type: "QRectF"; isReadonly: true }
- Property { name: "displayText"; type: "string"; isReadonly: true }
- Property { name: "echoMode"; type: "int" }
- Property { name: "font"; type: "QFont" }
- Property { name: "horizontalAlignment"; type: "int" }
- Property { name: "effectiveHorizontalAlignment"; type: "int"; isReadonly: true }
- Property { name: "verticalAlignment"; type: "int" }
- Property { name: "inputMask"; type: "string" }
- Property { name: "inputMethodHints"; type: "int" }
- Property { name: "length"; type: "int"; isReadonly: true }
- Property { name: "maximumLength"; type: "int" }
- Property { name: "placeholderText"; type: "string" }
- Property { name: "readOnly"; type: "bool" }
- Property { name: "selectedText"; type: "string"; isReadonly: true }
- Property { name: "selectionEnd"; type: "int"; isReadonly: true }
- Property { name: "selectionStart"; type: "int"; isReadonly: true }
- Property { name: "text"; type: "string" }
- Property { name: "validator"; type: "QValidator"; isPointer: true }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Property { name: "__contentHeight"; type: "double"; isReadonly: true }
- Property { name: "__contentWidth"; type: "double"; isReadonly: true }
- Property { name: "__baselineOffset"; type: "double" }
+ Property { name: "visible"; type: "bool" }
+ Property { name: "modality"; type: "Qt::WindowModality" }
+ Property { name: "title"; type: "string" }
+ Property { name: "isWindow"; type: "bool"; isReadonly: true }
+ Property { name: "x"; type: "int" }
+ Property { name: "y"; type: "int" }
+ Property { name: "width"; type: "int" }
+ Property { name: "height"; type: "int" }
+ Property { name: "__maximumDimension"; type: "int"; isReadonly: true }
+ Signal { name: "visibilityChanged" }
+ Signal { name: "geometryChanged" }
Signal { name: "accepted" }
- Signal { name: "editingFinished" }
- Method { name: "copy"; type: "QVariant" }
- Method { name: "cut"; type: "QVariant" }
- Method { name: "deselect"; type: "QVariant" }
+ Signal { name: "rejected" }
+ Method { name: "open" }
+ Method { name: "close" }
Method {
- name: "getText"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
+ name: "setX"
+ Parameter { name: "arg"; type: "int" }
}
Method {
- name: "insert"
- type: "QVariant"
- Parameter { name: "position"; type: "QVariant" }
- Parameter { name: "text"; type: "QVariant" }
+ name: "setY"
+ Parameter { name: "arg"; type: "int" }
}
Method {
- name: "isRightToLeft"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
+ name: "setWidth"
+ Parameter { name: "arg"; type: "int" }
}
- Method { name: "paste"; type: "QVariant" }
- Method { name: "redo"; type: "QVariant" }
Method {
- name: "remove"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
+ name: "setHeight"
+ Parameter { name: "arg"; type: "int" }
}
- Method {
- name: "select"
- type: "QVariant"
- Parameter { name: "start"; type: "QVariant" }
- Parameter { name: "end"; type: "QVariant" }
- }
- Method { name: "selectAll"; type: "QVariant" }
- Method { name: "selectWord"; type: "QVariant" }
- Method { name: "undo"; type: "QVariant" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickText"
- name: "QtQuick.Extras.Private/TextSingleton 1.0"
- exports: ["QtQuick.Extras.Private/TextSingleton 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- isCreatable: false
- isSingleton: true
- defaultProperty: "data"
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/ToggleButton 1.0"
- exports: ["QtQuick.Extras/ToggleButton 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "isDefault"; type: "bool" }
- Property { name: "menu"; type: "Menu_QMLTYPE_52"; isPointer: true }
- Property { name: "checkable"; type: "bool" }
- Property { name: "checked"; type: "bool" }
- Property { name: "exclusiveGroup"; type: "QQuickExclusiveGroup"; isPointer: true }
- Property { name: "action"; type: "QQuickAction"; isPointer: true }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "text"; type: "string" }
- Property { name: "tooltip"; type: "string" }
- Property { name: "iconSource"; type: "QUrl" }
- Property { name: "iconName"; type: "string" }
- Property { name: "__position"; type: "string" }
- Property { name: "__iconOverriden"; type: "bool"; isReadonly: true }
- Property { name: "__action"; type: "QQuickAction"; isPointer: true }
- Property { name: "__iconAction"; type: "QQuickAction"; isReadonly: true; isPointer: true }
- Property { name: "__behavior"; type: "QVariant" }
- Property { name: "__effectivePressed"; type: "bool" }
- Property { name: "pressed"; type: "bool"; isReadonly: true }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Signal { name: "clicked" }
- Method { name: "accessiblePressAction"; type: "QVariant" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
}
Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/ToolBar 1.0"
- exports: ["QtQuick.Controls/ToolBar 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "__content"
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "__menu"; type: "QVariant" }
- Property { name: "__style"; type: "QObject"; isReadonly: true; isPointer: true }
- Property { name: "__content"; type: "QObject"; isList: true; isReadonly: true }
- Property { name: "contentItem"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/ToolButton 1.0"
- exports: ["QtQuick.Controls/ToolButton 1.0"]
- exportMetaObjectRevisions: [0]
- isComposite: true
- defaultProperty: "data"
- Property { name: "isDefault"; type: "bool" }
- Property { name: "menu"; type: "Menu_QMLTYPE_52"; isPointer: true }
- Property { name: "checkable"; type: "bool" }
- Property { name: "checked"; type: "bool" }
- Property { name: "exclusiveGroup"; type: "QQuickExclusiveGroup"; isPointer: true }
- Property { name: "action"; type: "QQuickAction"; isPointer: true }
- Property { name: "activeFocusOnPress"; type: "bool" }
- Property { name: "text"; type: "string" }
- Property { name: "tooltip"; type: "string" }
- Property { name: "iconSource"; type: "QUrl" }
- Property { name: "iconName"; type: "string" }
- Property { name: "__position"; type: "string" }
- Property { name: "__iconOverriden"; type: "bool"; isReadonly: true }
- Property { name: "__action"; type: "QQuickAction"; isPointer: true }
- Property { name: "__iconAction"; type: "QQuickAction"; isReadonly: true; isPointer: true }
- Property { name: "__behavior"; type: "QVariant" }
- Property { name: "__effectivePressed"; type: "bool" }
- Property { name: "pressed"; type: "bool"; isReadonly: true }
- Property { name: "hovered"; type: "bool"; isReadonly: true }
- Signal { name: "clicked" }
- Method { name: "accessiblePressAction"; type: "QVariant" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/TreeView 1.5"
- exports: ["QtQuick.Controls/TreeView 1.5"]
- exportMetaObjectRevisions: [5]
+ prototype: "QObject"
+ name: "QtQuick.Dialogs/MessageDialog 1.1"
+ exports: ["QtQuick.Dialogs/MessageDialog 1.1"]
+ exportMetaObjectRevisions: [1]
isComposite: true
- defaultProperty: "__columns"
- Property { name: "model"; type: "QVariant" }
- Property { name: "currentIndex"; type: "QVariant"; isReadonly: true }
- Property { name: "selection"; type: "QItemSelectionModel"; isPointer: true }
- Property { name: "rootIndex"; type: "QModelIndex" }
- Signal {
- name: "activated"
- Parameter { name: "index"; type: "QVariant" }
- }
- Signal {
- name: "clicked"
- Parameter { name: "index"; type: "QVariant" }
- }
- Signal {
- name: "doubleClicked"
- Parameter { name: "index"; type: "QVariant" }
- }
- Signal {
- name: "pressAndHold"
- Parameter { name: "index"; type: "QVariant" }
- }
- Signal {
- name: "expanded"
- Parameter { name: "index"; type: "QVariant" }
- }
- Signal {
- name: "collapsed"
- Parameter { name: "index"; type: "QVariant" }
- }
- Method {
- name: "isExpanded"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- }
- Method {
- name: "collapse"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- }
- Method {
- name: "expand"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- }
- Method {
- name: "indexAt"
- type: "QVariant"
- Parameter { name: "x"; type: "QVariant" }
- Parameter { name: "y"; type: "QVariant" }
- }
- Property { name: "alternatingRowColors"; type: "bool" }
- Property { name: "headerVisible"; type: "bool" }
- Property { name: "itemDelegate"; type: "QQmlComponent"; isPointer: true }
- Property { name: "rowDelegate"; type: "QQmlComponent"; isPointer: true }
- Property { name: "headerDelegate"; type: "QQmlComponent"; isPointer: true }
- Property { name: "sortIndicatorColumn"; type: "int" }
- Property { name: "sortIndicatorVisible"; type: "bool" }
- Property { name: "sortIndicatorOrder"; type: "int" }
- Property { name: "selectionMode"; type: "int" }
- Property { name: "__viewTypeName"; type: "string" }
- Property { name: "__isTreeView"; type: "bool"; isReadonly: true }
- Property { name: "__itemDelegateLoader"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__model"; type: "QVariant" }
- Property { name: "__activateItemOnSingleClick"; type: "bool" }
- Property { name: "__mouseArea"; type: "QQuickItem"; isPointer: true }
- Property { name: "backgroundVisible"; type: "bool" }
- Property { name: "contentHeader"; type: "QQmlComponent"; isPointer: true }
- Property { name: "contentFooter"; type: "QQmlComponent"; isPointer: true }
- Property { name: "columnCount"; type: "int"; isReadonly: true }
- Property { name: "section"; type: "QQuickViewSection"; isReadonly: true; isPointer: true }
- Property { name: "__columns"; type: "QObject"; isList: true; isReadonly: true }
- Property { name: "__currentRowItem"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Property { name: "__currentRow"; type: "int" }
- Property { name: "__listView"; type: "QQuickListView"; isReadonly: true; isPointer: true }
- Method {
- name: "addColumn"
- type: "QVariant"
- Parameter { name: "column"; type: "QVariant" }
- }
- Method {
- name: "insertColumn"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- Parameter { name: "column"; type: "QVariant" }
- }
- Method {
- name: "removeColumn"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- }
- Method {
- name: "moveColumn"
- type: "QVariant"
- Parameter { name: "from"; type: "QVariant" }
- Parameter { name: "to"; type: "QVariant" }
- }
- Method {
- name: "getColumn"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- }
- Method { name: "resizeColumnsToContents"; type: "QVariant" }
- Property { name: "frameVisible"; type: "bool" }
- Property { name: "highlightOnFocus"; type: "bool" }
+ defaultProperty: "contentItem"
+ Method { name: "calculateImplicitWidth"; type: "QVariant" }
Property { name: "contentItem"; type: "QQuickItem"; isPointer: true }
- Property { name: "__scroller"; type: "QQuickItem"; isPointer: true }
- Property { name: "__scrollBarTopMargin"; type: "int" }
- Property { name: "__viewTopMargin"; type: "int" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "Style_QMLTYPE_3"; isPointer: true }
- Property { name: "horizontalScrollBarPolicy"; type: "int" }
- Property { name: "verticalScrollBarPolicy"; type: "int" }
- Property { name: "viewport"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Property { name: "flickableItem"; type: "QQuickFlickable"; isReadonly: true; isPointer: true }
- Property { name: "__wheelAreaScrollSpeed"; type: "double" }
- Property {
- name: "__horizontalScrollBar"
- type: "ScrollBar_QMLTYPE_27"
- isReadonly: true
- isPointer: true
- }
+ Property { name: "text"; type: "string" }
+ Property { name: "informativeText"; type: "string" }
+ Property { name: "detailedText"; type: "string" }
+ Property { name: "icon"; type: "Icon" }
+ Property { name: "standardIconSource"; type: "QUrl"; isReadonly: true }
+ Property { name: "standardButtons"; type: "QQuickAbstractDialog::StandardButtons" }
Property {
- name: "__verticalScrollBar"
- type: "ScrollBar_QMLTYPE_27"
+ name: "clickedButton"
+ type: "QQuickAbstractDialog::StandardButton"
isReadonly: true
- isPointer: true
- }
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Controls/TreeView 1.4"
- exports: ["QtQuick.Controls/TreeView 1.4"]
- exportMetaObjectRevisions: [4]
- isComposite: true
- defaultProperty: "__columns"
- Property { name: "model"; type: "QVariant" }
- Property { name: "currentIndex"; type: "QVariant"; isReadonly: true }
- Property { name: "selection"; type: "QItemSelectionModel"; isPointer: true }
- Property { name: "rootIndex"; type: "QModelIndex" }
- Signal {
- name: "activated"
- Parameter { name: "index"; type: "QVariant" }
- }
- Signal {
- name: "clicked"
- Parameter { name: "index"; type: "QVariant" }
- }
- Signal {
- name: "doubleClicked"
- Parameter { name: "index"; type: "QVariant" }
- }
- Signal {
- name: "pressAndHold"
- Parameter { name: "index"; type: "QVariant" }
- }
- Signal {
- name: "expanded"
- Parameter { name: "index"; type: "QVariant" }
- }
- Signal {
- name: "collapsed"
- Parameter { name: "index"; type: "QVariant" }
- }
- Method {
- name: "isExpanded"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- }
- Method {
- name: "collapse"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- }
- Method {
- name: "expand"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- }
- Method {
- name: "indexAt"
- type: "QVariant"
- Parameter { name: "x"; type: "QVariant" }
- Parameter { name: "y"; type: "QVariant" }
- }
- Property { name: "alternatingRowColors"; type: "bool" }
- Property { name: "headerVisible"; type: "bool" }
- Property { name: "itemDelegate"; type: "QQmlComponent"; isPointer: true }
- Property { name: "rowDelegate"; type: "QQmlComponent"; isPointer: true }
- Property { name: "headerDelegate"; type: "QQmlComponent"; isPointer: true }
- Property { name: "sortIndicatorColumn"; type: "int" }
- Property { name: "sortIndicatorVisible"; type: "bool" }
- Property { name: "sortIndicatorOrder"; type: "int" }
- Property { name: "selectionMode"; type: "int" }
- Property { name: "__viewTypeName"; type: "string" }
- Property { name: "__isTreeView"; type: "bool"; isReadonly: true }
- Property { name: "__itemDelegateLoader"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__model"; type: "QVariant" }
- Property { name: "__activateItemOnSingleClick"; type: "bool" }
- Property { name: "__mouseArea"; type: "QQuickItem"; isPointer: true }
- Property { name: "backgroundVisible"; type: "bool" }
- Property { name: "contentHeader"; type: "QQmlComponent"; isPointer: true }
- Property { name: "contentFooter"; type: "QQmlComponent"; isPointer: true }
- Property { name: "columnCount"; type: "int"; isReadonly: true }
- Property { name: "section"; type: "QQuickViewSection"; isReadonly: true; isPointer: true }
- Property { name: "__columns"; type: "QObject"; isList: true; isReadonly: true }
- Property { name: "__currentRowItem"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Property { name: "__currentRow"; type: "int" }
- Property { name: "__listView"; type: "QQuickListView"; isReadonly: true; isPointer: true }
- Method {
- name: "addColumn"
- type: "QVariant"
- Parameter { name: "column"; type: "QVariant" }
}
+ Signal { name: "buttonClicked" }
+ Signal { name: "discard" }
+ Signal { name: "help" }
+ Signal { name: "yes" }
+ Signal { name: "no" }
+ Signal { name: "apply" }
+ Signal { name: "reset" }
Method {
- name: "insertColumn"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- Parameter { name: "column"; type: "QVariant" }
+ name: "setVisible"
+ Parameter { name: "v"; type: "bool" }
}
Method {
- name: "removeColumn"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
+ name: "setTitle"
+ Parameter { name: "arg"; type: "string" }
}
Method {
- name: "moveColumn"
- type: "QVariant"
- Parameter { name: "from"; type: "QVariant" }
- Parameter { name: "to"; type: "QVariant" }
+ name: "setText"
+ Parameter { name: "arg"; type: "string" }
}
Method {
- name: "getColumn"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- }
- Method { name: "resizeColumnsToContents"; type: "QVariant" }
- Property { name: "frameVisible"; type: "bool" }
- Property { name: "highlightOnFocus"; type: "bool" }
- Property { name: "contentItem"; type: "QQuickItem"; isPointer: true }
- Property { name: "__scroller"; type: "QQuickItem"; isPointer: true }
- Property { name: "__scrollBarTopMargin"; type: "int" }
- Property { name: "__viewTopMargin"; type: "int" }
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "Style_QMLTYPE_3"; isPointer: true }
- Property { name: "horizontalScrollBarPolicy"; type: "int" }
- Property { name: "verticalScrollBarPolicy"; type: "int" }
- Property { name: "viewport"; type: "QQuickItem"; isReadonly: true; isPointer: true }
- Property { name: "flickableItem"; type: "QQuickFlickable"; isReadonly: true; isPointer: true }
- Property { name: "__wheelAreaScrollSpeed"; type: "double" }
- Property {
- name: "__horizontalScrollBar"
- type: "ScrollBar_QMLTYPE_27"
- isReadonly: true
- isPointer: true
- }
- Property {
- name: "__verticalScrollBar"
- type: "ScrollBar_QMLTYPE_27"
- isReadonly: true
- isPointer: true
+ name: "setInformativeText"
+ Parameter { name: "arg"; type: "string" }
}
- }
- Component {
- prototype: "QQuickFocusScope"
- name: "QtQuick.Extras/Tumbler 1.2"
- exports: ["QtQuick.Extras/Tumbler 1.2"]
- exportMetaObjectRevisions: [2]
- isComposite: true
- defaultProperty: "data"
- Property { name: "__highlightMoveDuration"; type: "int" }
- Property { name: "columnCount"; type: "int"; isReadonly: true }
- Property { name: "__columnRow"; type: "QQuickRow"; isReadonly: true; isPointer: true }
- Property { name: "__movementDelayTimer"; type: "QQmlTimer"; isReadonly: true; isPointer: true }
Method {
- name: "__isValidColumnIndex"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
+ name: "setDetailedText"
+ Parameter { name: "arg"; type: "string" }
}
Method {
- name: "__isValidColumnAndItemIndex"
- type: "QVariant"
- Parameter { name: "columnIndex"; type: "QVariant" }
- Parameter { name: "itemIndex"; type: "QVariant" }
+ name: "setIcon"
+ Parameter { name: "icon"; type: "Icon" }
}
Method {
- name: "currentIndexAt"
- type: "QVariant"
- Parameter { name: "columnIndex"; type: "QVariant" }
+ name: "setStandardButtons"
+ Parameter { name: "buttons"; type: "StandardButtons" }
}
Method {
- name: "setCurrentIndexAt"
- type: "QVariant"
- Parameter { name: "columnIndex"; type: "QVariant" }
- Parameter { name: "itemIndex"; type: "QVariant" }
+ name: "click"
+ Parameter { name: "button"; type: "QQuickAbstractDialog::StandardButton" }
}
+ Property { name: "visible"; type: "bool" }
+ Property { name: "modality"; type: "Qt::WindowModality" }
+ Property { name: "title"; type: "string" }
+ Property { name: "isWindow"; type: "bool"; isReadonly: true }
+ Property { name: "x"; type: "int" }
+ Property { name: "y"; type: "int" }
+ Property { name: "width"; type: "int" }
+ Property { name: "height"; type: "int" }
+ Property { name: "__maximumDimension"; type: "int"; isReadonly: true }
+ Signal { name: "visibilityChanged" }
+ Signal { name: "geometryChanged" }
+ Signal { name: "accepted" }
+ Signal { name: "rejected" }
+ Method { name: "open" }
+ Method { name: "close" }
Method {
- name: "getColumn"
- type: "QVariant"
- Parameter { name: "columnIndex"; type: "QVariant" }
+ name: "setX"
+ Parameter { name: "arg"; type: "int" }
}
Method {
- name: "addColumn"
- type: "QVariant"
- Parameter { name: "column"; type: "QVariant" }
+ name: "setY"
+ Parameter { name: "arg"; type: "int" }
}
Method {
- name: "insertColumn"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
- Parameter { name: "column"; type: "QVariant" }
+ name: "setWidth"
+ Parameter { name: "arg"; type: "int" }
}
Method {
- name: "__viewAt"
- type: "QVariant"
- Parameter { name: "index"; type: "QVariant" }
+ name: "setHeight"
+ Parameter { name: "arg"; type: "int" }
}
- Property { name: "style"; type: "QQmlComponent"; isPointer: true }
- Property { name: "__style"; type: "QObject"; isPointer: true }
- Property { name: "__panel"; type: "QQuickItem"; isPointer: true }
- Property { name: "styleHints"; type: "QVariant" }
- Property { name: "__styleData"; type: "QObject"; isPointer: true }
- }
- Component {
- prototype: "QObject"
- name: "QtQuick.Extras/TumblerColumn 1.2"
- exports: ["QtQuick.Extras/TumblerColumn 1.2"]
- exportMetaObjectRevisions: [2]
- isComposite: true
- Property { name: "__tumbler"; type: "QQuickItem"; isPointer: true }
- Property { name: "__index"; type: "int" }
- Property { name: "__currentIndex"; type: "int" }
- Property { name: "model"; type: "QVariant" }
- Property { name: "role"; type: "string" }
- Property { name: "delegate"; type: "QQmlComponent"; isPointer: true }
- Property { name: "highlight"; type: "QQmlComponent"; isPointer: true }
- Property { name: "columnForeground"; type: "QQmlComponent"; isPointer: true }
- Property { name: "visible"; type: "bool" }
- Property { name: "activeFocus"; type: "bool"; isReadonly: true }
- Property { name: "width"; type: "double" }
- Property { name: "currentIndex"; type: "int"; isReadonly: true }
}
}
diff --git a/src/dialogs/qquickabstractfiledialog.cpp b/src/dialogs/qquickabstractfiledialog.cpp
index 7c4aa394..c608453f 100644
--- a/src/dialogs/qquickabstractfiledialog.cpp
+++ b/src/dialogs/qquickabstractfiledialog.cpp
@@ -118,8 +118,10 @@ QUrl QQuickAbstractFileDialog::folder() const
static QUrl fixupFolder(const QUrl &f)
{
QString lf = f.toLocalFile();
+#ifndef Q_OS_WIN // Don't mangle Windows network paths
while (lf.startsWith("//"))
lf.remove(0, 1);
+#endif
if (lf.isEmpty())
lf = QDir::currentPath();
return QUrl::fromLocalFile(lf);
diff --git a/src/extras/Styles/Flat/plugins.qmltypes b/src/extras/Styles/Flat/plugins.qmltypes
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/src/extras/Styles/Flat/plugins.qmltypes
diff --git a/src/extras/plugins.qmltypes b/src/extras/plugins.qmltypes
index b8ee60e6..6749e548 100644
--- a/src/extras/plugins.qmltypes
+++ b/src/extras/plugins.qmltypes
@@ -8,10 +8,13 @@ import QtQuick.tooling 1.2
Module {
dependencies: [
- "QtGraphicalEffects 1.0",
- "QtGraphicalEffects.private 1.0",
- "QtQuick 2.0",
- "QtQuick.Window 2.1"
+ "QtGraphicalEffects 1.12",
+ "QtQml.Models 2.2",
+ "QtQuick 2.9",
+ "QtQuick.Controls 1.5",
+ "QtQuick.Controls.Styles 1.4",
+ "QtQuick.Layouts 1.1",
+ "QtQuick.Window 2.2"
]
Component {
name: "QQuickActivationMode"
@@ -210,8 +213,8 @@ Module {
Property { name: "menu"; type: "Menu_QMLTYPE_28"; isPointer: true }
Property { name: "checkable"; type: "bool" }
Property { name: "checked"; type: "bool" }
- Property { name: "exclusiveGroup"; type: "QQuickExclusiveGroup"; isPointer: true }
- Property { name: "action"; type: "QQuickAction"; isPointer: true }
+ Property { name: "exclusiveGroup"; type: "QQuickExclusiveGroup1"; isPointer: true }
+ Property { name: "action"; type: "QQuickAction1"; isPointer: true }
Property { name: "activeFocusOnPress"; type: "bool" }
Property { name: "text"; type: "string" }
Property { name: "tooltip"; type: "string" }
@@ -219,8 +222,8 @@ Module {
Property { name: "iconName"; type: "string" }
Property { name: "__position"; type: "string" }
Property { name: "__iconOverriden"; type: "bool"; isReadonly: true }
- Property { name: "__action"; type: "QQuickAction"; isPointer: true }
- Property { name: "__iconAction"; type: "QQuickAction"; isReadonly: true; isPointer: true }
+ Property { name: "__action"; type: "QQuickAction1"; isPointer: true }
+ Property { name: "__iconAction"; type: "QQuickAction1"; isReadonly: true; isPointer: true }
Property { name: "__behavior"; type: "QVariant" }
Property { name: "__effectivePressed"; type: "bool" }
Property { name: "pressed"; type: "bool"; isReadonly: true }
@@ -346,8 +349,8 @@ Module {
Property { name: "menu"; type: "Menu_QMLTYPE_28"; isPointer: true }
Property { name: "checkable"; type: "bool" }
Property { name: "checked"; type: "bool" }
- Property { name: "exclusiveGroup"; type: "QQuickExclusiveGroup"; isPointer: true }
- Property { name: "action"; type: "QQuickAction"; isPointer: true }
+ Property { name: "exclusiveGroup"; type: "QQuickExclusiveGroup1"; isPointer: true }
+ Property { name: "action"; type: "QQuickAction1"; isPointer: true }
Property { name: "activeFocusOnPress"; type: "bool" }
Property { name: "text"; type: "string" }
Property { name: "tooltip"; type: "string" }
@@ -355,8 +358,8 @@ Module {
Property { name: "iconName"; type: "string" }
Property { name: "__position"; type: "string" }
Property { name: "__iconOverriden"; type: "bool"; isReadonly: true }
- Property { name: "__action"; type: "QQuickAction"; isPointer: true }
- Property { name: "__iconAction"; type: "QQuickAction"; isReadonly: true; isPointer: true }
+ Property { name: "__action"; type: "QQuickAction1"; isPointer: true }
+ Property { name: "__iconAction"; type: "QQuickAction1"; isReadonly: true; isPointer: true }
Property { name: "__behavior"; type: "QVariant" }
Property { name: "__effectivePressed"; type: "bool" }
Property { name: "pressed"; type: "bool"; isReadonly: true }
@@ -451,9 +454,9 @@ Module {
Property { name: "boundingItem"; type: "QQuickItem"; isPointer: true }
Property { name: "__protectedScope"; type: "QObject"; isPointer: true }
Property { name: "activationMode"; type: "int" }
- Property { name: "menuItems"; type: "QQuickMenuItem"; isList: true; isReadonly: true }
+ Property { name: "menuItems"; type: "QQuickMenuItem1"; isList: true; isReadonly: true }
Property { name: "currentIndex"; type: "int"; isReadonly: true }
- Property { name: "currentItem"; type: "QQuickMenuItem"; isReadonly: true; isPointer: true }
+ Property { name: "currentItem"; type: "QQuickMenuItem1"; isReadonly: true; isPointer: true }
Property { name: "__mouseThief"; type: "QQuickMouseThief"; isReadonly: true; isPointer: true }
Method {
name: "popup"
@@ -547,8 +550,8 @@ Module {
Property { name: "menu"; type: "Menu_QMLTYPE_28"; isPointer: true }
Property { name: "checkable"; type: "bool" }
Property { name: "checked"; type: "bool" }
- Property { name: "exclusiveGroup"; type: "QQuickExclusiveGroup"; isPointer: true }
- Property { name: "action"; type: "QQuickAction"; isPointer: true }
+ Property { name: "exclusiveGroup"; type: "QQuickExclusiveGroup1"; isPointer: true }
+ Property { name: "action"; type: "QQuickAction1"; isPointer: true }
Property { name: "activeFocusOnPress"; type: "bool" }
Property { name: "text"; type: "string" }
Property { name: "tooltip"; type: "string" }
@@ -556,8 +559,8 @@ Module {
Property { name: "iconName"; type: "string" }
Property { name: "__position"; type: "string" }
Property { name: "__iconOverriden"; type: "bool"; isReadonly: true }
- Property { name: "__action"; type: "QQuickAction"; isPointer: true }
- Property { name: "__iconAction"; type: "QQuickAction"; isReadonly: true; isPointer: true }
+ Property { name: "__action"; type: "QQuickAction1"; isPointer: true }
+ Property { name: "__iconAction"; type: "QQuickAction1"; isReadonly: true; isPointer: true }
Property { name: "__behavior"; type: "QVariant" }
Property { name: "__effectivePressed"; type: "bool" }
Property { name: "pressed"; type: "bool"; isReadonly: true }
@@ -602,6 +605,7 @@ Module {
type: "QVariant"
Parameter { name: "columnIndex"; type: "QVariant" }
Parameter { name: "itemIndex"; type: "QVariant" }
+ Parameter { name: "interval"; type: "QVariant" }
}
Method {
name: "getColumn"
diff --git a/src/widgets/plugins.qmltypes b/src/widgets/plugins.qmltypes
index a4494280..5e70b3ba 100644
--- a/src/widgets/plugins.qmltypes
+++ b/src/widgets/plugins.qmltypes
@@ -7,7 +7,7 @@ import QtQuick.tooling 1.2
// 'qmlplugindump -nonrelocatable QtQuick.PrivateWidgets 1.1'
Module {
- dependencies: []
+ dependencies: ["QtQuick 2.0"]
Component {
name: "QQuickAbstractColorDialog"
prototype: "QQuickAbstractDialog"
@@ -143,6 +143,9 @@ Module {
Property { name: "fileUrl"; type: "QUrl"; isReadonly: true }
Property { name: "fileUrls"; type: "QList<QUrl>"; isReadonly: true }
Property { name: "sidebarVisible"; type: "bool" }
+ Property { name: "defaultSuffix"; type: "string" }
+ Property { name: "shortcuts"; type: "QJSValue"; isReadonly: true }
+ Property { name: "__shortcuts"; type: "QJSValue"; isReadonly: true }
Signal { name: "filterSelected" }
Signal { name: "fileModeChanged" }
Signal { name: "selectionAccepted" }
@@ -186,6 +189,10 @@ Module {
name: "setSidebarVisible"
Parameter { name: "s"; type: "bool" }
}
+ Method {
+ name: "setDefaultSuffix"
+ Parameter { name: "suffix"; type: "string" }
+ }
}
Component {
name: "QQuickAbstractFontDialog"
diff --git a/src/widgets/widgetsplugin.cpp b/src/widgets/widgetsplugin.cpp
index 3289e6fd..6617319b 100644
--- a/src/widgets/widgetsplugin.cpp
+++ b/src/widgets/widgetsplugin.cpp
@@ -39,10 +39,19 @@
#include <QtQml/qqmlextensionplugin.h>
#include <QtQml/qqml.h>
+#include <QtWidgets/qtwidgetsglobal.h>
+#if QT_CONFIG(messagebox)
#include "qquickqmessagebox_p.h"
+#endif // QT_CONFIG(messagebox)
+#if QT_CONFIG(filedialog)
#include "qquickqfiledialog_p.h"
+#endif // QT_CONFIG(filedialog)
+#if QT_CONFIG(colordialog)
#include "qquickqcolordialog_p.h"
+#endif // QT_CONFIG(colordialog)
+#if QT_CONFIG(fontdialog)
#include "qquickqfontdialog_p.h"
+#endif // QT_CONFIG(fontdialog)
QT_BEGIN_NAMESPACE
diff --git a/tests/auto/controls/data/tst_scrollview.qml b/tests/auto/controls/data/tst_scrollview.qml
index d3bfac4b..a3c8eab3 100644
--- a/tests/auto/controls/data/tst_scrollview.qml
+++ b/tests/auto/controls/data/tst_scrollview.qml
@@ -179,6 +179,8 @@ TestCase {
}
function test_dragFetchAppend() { // QTBUG-50795
+ skip("This is flaky: QTBUG-55727. Can't use BLACKLIST because of QTBUG-74117.")
+
var scrollView = dragFetchAppendComponent.createObject(container)
verify(scrollView !== null, "view created is null")
waitForRendering(scrollView)
@@ -197,8 +199,12 @@ TestCase {
mouseRelease(scrollView, scrollView.width - 2, 8 + 16)
waitForRendering(scrollView)
- verify(Math.round(scrollView.flickableItem.contentHeight) > 60 * 20)
- verify(Math.round(scrollView.flickableItem.contentY) < -(60 * 20))
+ tryVerify(
+ function() { return Math.round(scrollView.flickableItem.contentHeight) > 60 * 20 },
+ 50, "contentHeight did not adjust to new data.")
+ tryVerify(
+ function() { return Math.round(scrollView.flickableItem.contentY) < -(60 * 20) },
+ 50, "contentY did not adjust to new data.")
scrollView.destroy()
}
diff --git a/tests/auto/dialogs/tst_dialogs.cpp b/tests/auto/dialogs/tst_dialogs.cpp
index a764ebec..2ee81c9b 100644
--- a/tests/auto/dialogs/tst_dialogs.cpp
+++ b/tests/auto/dialogs/tst_dialogs.cpp
@@ -160,7 +160,7 @@ void tst_dialogs::dialogButtonHandler()
root->setProperty("mustBlock", mustBlock);
QQuickWindow *window = root->findChild<QQuickWindow*>();
- QTest::qWaitForWindowExposed(window);
+ QVERIFY(QTest::qWaitForWindowExposed(window));
/* Hack to find the created buttons: since they are created by a
* QQuickRepeater, they don't appear on the hierarchy tree; therefore, we
@@ -243,7 +243,7 @@ void tst_dialogs::dialogKeyHandler()
root->setProperty("mustBlock", mustBlock);
QQuickWindow *window = root->findChild<QQuickWindow*>();
- QTest::qWaitForWindowExposed(window);
+ QVERIFY(QTest::qWaitForWindowExposed(window));
QTest::keyClick(window, Qt::Key(key));
QTRY_VERIFY(root->property("handlerWasCalled").toBool());
diff --git a/tests/auto/qquicktreemodeladaptor/tst_qquicktreemodeladaptor.cpp b/tests/auto/qquicktreemodeladaptor/tst_qquicktreemodeladaptor.cpp
index 96659a2c..0fec548d 100644
--- a/tests/auto/qquicktreemodeladaptor/tst_qquicktreemodeladaptor.cpp
+++ b/tests/auto/qquicktreemodeladaptor/tst_qquicktreemodeladaptor.cpp
@@ -1384,7 +1384,7 @@ void tst_QQuickTreeModelAdaptor::hasChildrenEmit()
QModelIndex root = model.index(0,0);
QVERIFY(root.isValid());
- QModelIndex child = root.child(0,0);
+ QModelIndex child = model.index(0, 0, root);
QVERIFY(child.isValid());
// Root not expanded , child not expanded, insert in child, expect no datachanged