-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e86c5cf
Showing
941 changed files
with
103,721 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
361 changes: 361 additions & 0 deletions
361
Bin64/CloudDisk/Qt/labs/folderlistmodel/plugins.qmltypes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,361 @@ | ||
import QtQuick.tooling 1.2 | ||
|
||
// This file describes the plugin-supplied types contained in the library. | ||
// It is used for QML tooling purposes only. | ||
// | ||
// This file was auto-generated by qmltyperegistrar. | ||
|
||
Module { | ||
dependencies: ["QtQuick 2.0"] | ||
Component { | ||
name: "QAbstractItemModel" | ||
prototype: "QObject" | ||
Enum { | ||
name: "LayoutChangeHint" | ||
values: [ | ||
"NoLayoutChangeHint", | ||
"VerticalSortHint", | ||
"HorizontalSortHint" | ||
] | ||
} | ||
Enum { | ||
name: "CheckIndexOption" | ||
values: [ | ||
"NoOption", | ||
"IndexIsValid", | ||
"DoNotUseParent", | ||
"ParentIsInvalid" | ||
] | ||
} | ||
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: "resetInternalData" } | ||
Method { | ||
name: "hasIndex" | ||
type: "bool" | ||
Parameter { name: "row"; type: "int" } | ||
Parameter { name: "column"; type: "int" } | ||
Parameter { name: "parent"; type: "QModelIndex" } | ||
} | ||
Method { | ||
name: "hasIndex" | ||
type: "bool" | ||
Parameter { name: "row"; type: "int" } | ||
Parameter { name: "column"; type: "int" } | ||
} | ||
Method { | ||
name: "index" | ||
type: "QModelIndex" | ||
Parameter { name: "row"; type: "int" } | ||
Parameter { name: "column"; type: "int" } | ||
Parameter { name: "parent"; type: "QModelIndex" } | ||
} | ||
Method { | ||
name: "index" | ||
type: "QModelIndex" | ||
Parameter { name: "row"; type: "int" } | ||
Parameter { name: "column"; type: "int" } | ||
} | ||
Method { | ||
name: "parent" | ||
type: "QModelIndex" | ||
Parameter { name: "child"; type: "QModelIndex" } | ||
} | ||
Method { | ||
name: "sibling" | ||
type: "QModelIndex" | ||
Parameter { name: "row"; type: "int" } | ||
Parameter { name: "column"; type: "int" } | ||
Parameter { name: "idx"; type: "QModelIndex" } | ||
} | ||
Method { | ||
name: "rowCount" | ||
type: "int" | ||
Parameter { name: "parent"; type: "QModelIndex" } | ||
} | ||
Method { name: "rowCount"; type: "int" } | ||
Method { | ||
name: "columnCount" | ||
type: "int" | ||
Parameter { name: "parent"; type: "QModelIndex" } | ||
} | ||
Method { name: "columnCount"; type: "int" } | ||
Method { | ||
name: "hasChildren" | ||
type: "bool" | ||
Parameter { name: "parent"; type: "QModelIndex" } | ||
} | ||
Method { name: "hasChildren"; type: "bool" } | ||
Method { | ||
name: "data" | ||
type: "QVariant" | ||
Parameter { name: "index"; type: "QModelIndex" } | ||
Parameter { name: "role"; type: "int" } | ||
} | ||
Method { | ||
name: "data" | ||
type: "QVariant" | ||
Parameter { name: "index"; type: "QModelIndex" } | ||
} | ||
Method { | ||
name: "setData" | ||
type: "bool" | ||
Parameter { name: "index"; type: "QModelIndex" } | ||
Parameter { name: "value"; type: "QVariant" } | ||
Parameter { name: "role"; type: "int" } | ||
} | ||
Method { | ||
name: "setData" | ||
type: "bool" | ||
Parameter { name: "index"; type: "QModelIndex" } | ||
Parameter { name: "value"; type: "QVariant" } | ||
} | ||
Method { | ||
name: "headerData" | ||
type: "QVariant" | ||
Parameter { name: "section"; type: "int" } | ||
Parameter { name: "orientation"; type: "Qt::Orientation" } | ||
Parameter { name: "role"; type: "int" } | ||
} | ||
Method { | ||
name: "headerData" | ||
type: "QVariant" | ||
Parameter { name: "section"; type: "int" } | ||
Parameter { name: "orientation"; type: "Qt::Orientation" } | ||
} | ||
Method { | ||
name: "fetchMore" | ||
Parameter { name: "parent"; type: "QModelIndex" } | ||
} | ||
Method { | ||
name: "canFetchMore" | ||
type: "bool" | ||
Parameter { name: "parent"; type: "QModelIndex" } | ||
} | ||
Method { | ||
name: "flags" | ||
type: "Qt::ItemFlags" | ||
Parameter { name: "index"; type: "QModelIndex" } | ||
} | ||
Method { | ||
name: "match" | ||
type: "QModelIndexList" | ||
Parameter { name: "start"; type: "QModelIndex" } | ||
Parameter { name: "role"; type: "int" } | ||
Parameter { name: "value"; type: "QVariant" } | ||
Parameter { name: "hits"; type: "int" } | ||
Parameter { name: "flags"; type: "Qt::MatchFlags" } | ||
} | ||
Method { | ||
name: "match" | ||
type: "QModelIndexList" | ||
Parameter { name: "start"; type: "QModelIndex" } | ||
Parameter { name: "role"; type: "int" } | ||
Parameter { name: "value"; type: "QVariant" } | ||
Parameter { name: "hits"; type: "int" } | ||
} | ||
Method { | ||
name: "match" | ||
type: "QModelIndexList" | ||
Parameter { name: "start"; type: "QModelIndex" } | ||
Parameter { name: "role"; type: "int" } | ||
Parameter { name: "value"; type: "QVariant" } | ||
} | ||
} | ||
Component { name: "QAbstractListModel"; prototype: "QAbstractItemModel" } | ||
Component { | ||
file: "qquickfolderlistmodel.h" | ||
name: "QQuickFolderListModel" | ||
prototype: "QAbstractListModel" | ||
exports: [ | ||
"Qt.labs.folderlistmodel/FolderListModel 2.0", | ||
"Qt.labs.folderlistmodel/FolderListModel 2.1", | ||
"Qt.labs.folderlistmodel/FolderListModel 2.11", | ||
"Qt.labs.folderlistmodel/FolderListModel 2.12", | ||
"Qt.labs.folderlistmodel/FolderListModel 2.2" | ||
] | ||
exportMetaObjectRevisions: [0, 1, 11, 12, 2] | ||
Enum { | ||
name: "SortField" | ||
values: ["Unsorted", "Name", "Time", "Size", "Type"] | ||
} | ||
Enum { | ||
name: "Status" | ||
values: ["Null", "Ready", "Loading"] | ||
} | ||
Property { name: "folder"; type: "QUrl" } | ||
Property { name: "rootFolder"; type: "QUrl" } | ||
Property { name: "parentFolder"; type: "QUrl"; isReadonly: true } | ||
Property { name: "nameFilters"; type: "QStringList" } | ||
Property { name: "sortField"; type: "SortField" } | ||
Property { name: "sortReversed"; type: "bool" } | ||
Property { name: "showFiles"; revision: 1; type: "bool" } | ||
Property { name: "showDirs"; type: "bool" } | ||
Property { name: "showDirsFirst"; type: "bool" } | ||
Property { name: "showDotAndDotDot"; type: "bool" } | ||
Property { name: "showHidden"; revision: 1; type: "bool" } | ||
Property { name: "showOnlyReadable"; type: "bool" } | ||
Property { name: "caseSensitive"; revision: 2; type: "bool" } | ||
Property { name: "count"; type: "int"; isReadonly: true } | ||
Property { name: "status"; revision: 11; type: "Status"; isReadonly: true } | ||
Property { name: "sortCaseSensitive"; revision: 12; type: "bool" } | ||
Signal { name: "rowCountChanged" } | ||
Signal { name: "countChanged"; revision: 1 } | ||
Signal { name: "statusChanged"; revision: 11 } | ||
Method { | ||
name: "_q_directoryChanged" | ||
Parameter { name: "directory"; type: "string" } | ||
Parameter { name: "list"; type: "QList<FileProperty>" } | ||
} | ||
Method { | ||
name: "_q_directoryUpdated" | ||
Parameter { name: "directory"; type: "string" } | ||
Parameter { name: "list"; type: "QList<FileProperty>" } | ||
Parameter { name: "fromIndex"; type: "int" } | ||
Parameter { name: "toIndex"; type: "int" } | ||
} | ||
Method { | ||
name: "_q_sortFinished" | ||
Parameter { name: "list"; type: "QList<FileProperty>" } | ||
} | ||
Method { | ||
name: "_q_statusChanged" | ||
Parameter { name: "s"; type: "QQuickFolderListModel::Status" } | ||
} | ||
Method { | ||
name: "isFolder" | ||
type: "bool" | ||
Parameter { name: "index"; type: "int" } | ||
} | ||
Method { | ||
name: "get" | ||
type: "QVariant" | ||
Parameter { name: "idx"; type: "int" } | ||
Parameter { name: "property"; type: "string" } | ||
} | ||
Method { | ||
name: "indexOf" | ||
type: "int" | ||
Parameter { name: "file"; type: "QUrl" } | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
module Qt.labs.folderlistmodel | ||
plugin qmlfolderlistmodelplugin | ||
classname QmlFolderListModelPlugin | ||
typeinfo plugins.qmltypes |
Binary file not shown.
Oops, something went wrong.