Skip to content
This repository was archived by the owner on Apr 28, 2022. It is now read-only.

Commit d5b60ad

Browse files
committed
Merge branch 'jb46477' into 'master'
[systemsettings] Update plugins.qmltypes. Contributes to JB#46477 See merge request mer-core/nemo-qml-plugin-systemsettings!109
2 parents 70a64d9 + 7b4961b commit d5b60ad

File tree

1 file changed

+3
-266
lines changed

1 file changed

+3
-266
lines changed

src/plugin/plugins.qmltypes

Lines changed: 3 additions & 266 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import QtQuick.tooling 1.2
77
// 'qmlplugindump -nonrelocatable org.nemomobile.systemsettings 1.0'
88

99
Module {
10-
dependencies: []
10+
dependencies: ["QtQuick 2.0"]
1111
Component {
1212
name: "AboutSettings"
1313
prototype: "QObject"
@@ -16,6 +16,7 @@ Module {
1616
Property { name: "wlanMacAddress"; type: "string"; isReadonly: true }
1717
Property { name: "imei"; type: "string"; isReadonly: true }
1818
Property { name: "serial"; type: "string"; isReadonly: true }
19+
Property { name: "baseOperatingSystemName"; type: "string"; isReadonly: true }
1920
Property { name: "operatingSystemName"; type: "string"; isReadonly: true }
2021
Property { name: "softwareVersion"; type: "string"; isReadonly: true }
2122
Property { name: "softwareVersionId"; type: "string"; isReadonly: true }
@@ -593,271 +594,6 @@ Module {
593594
}
594595
Signal { name: "messageToneVolumeChanged" }
595596
}
596-
Component {
597-
name: "QAbstractItemModel"
598-
prototype: "QObject"
599-
Enum {
600-
name: "LayoutChangeHint"
601-
values: {
602-
"NoLayoutChangeHint": 0,
603-
"VerticalSortHint": 1,
604-
"HorizontalSortHint": 2
605-
}
606-
}
607-
Signal {
608-
name: "dataChanged"
609-
Parameter { name: "topLeft"; type: "QModelIndex" }
610-
Parameter { name: "bottomRight"; type: "QModelIndex" }
611-
Parameter { name: "roles"; type: "QVector<int>" }
612-
}
613-
Signal {
614-
name: "dataChanged"
615-
Parameter { name: "topLeft"; type: "QModelIndex" }
616-
Parameter { name: "bottomRight"; type: "QModelIndex" }
617-
}
618-
Signal {
619-
name: "headerDataChanged"
620-
Parameter { name: "orientation"; type: "Qt::Orientation" }
621-
Parameter { name: "first"; type: "int" }
622-
Parameter { name: "last"; type: "int" }
623-
}
624-
Signal {
625-
name: "layoutChanged"
626-
Parameter { name: "parents"; type: "QList<QPersistentModelIndex>" }
627-
Parameter { name: "hint"; type: "QAbstractItemModel::LayoutChangeHint" }
628-
}
629-
Signal {
630-
name: "layoutChanged"
631-
Parameter { name: "parents"; type: "QList<QPersistentModelIndex>" }
632-
}
633-
Signal { name: "layoutChanged" }
634-
Signal {
635-
name: "layoutAboutToBeChanged"
636-
Parameter { name: "parents"; type: "QList<QPersistentModelIndex>" }
637-
Parameter { name: "hint"; type: "QAbstractItemModel::LayoutChangeHint" }
638-
}
639-
Signal {
640-
name: "layoutAboutToBeChanged"
641-
Parameter { name: "parents"; type: "QList<QPersistentModelIndex>" }
642-
}
643-
Signal { name: "layoutAboutToBeChanged" }
644-
Signal {
645-
name: "rowsAboutToBeInserted"
646-
Parameter { name: "parent"; type: "QModelIndex" }
647-
Parameter { name: "first"; type: "int" }
648-
Parameter { name: "last"; type: "int" }
649-
}
650-
Signal {
651-
name: "rowsInserted"
652-
Parameter { name: "parent"; type: "QModelIndex" }
653-
Parameter { name: "first"; type: "int" }
654-
Parameter { name: "last"; type: "int" }
655-
}
656-
Signal {
657-
name: "rowsAboutToBeRemoved"
658-
Parameter { name: "parent"; type: "QModelIndex" }
659-
Parameter { name: "first"; type: "int" }
660-
Parameter { name: "last"; type: "int" }
661-
}
662-
Signal {
663-
name: "rowsRemoved"
664-
Parameter { name: "parent"; type: "QModelIndex" }
665-
Parameter { name: "first"; type: "int" }
666-
Parameter { name: "last"; type: "int" }
667-
}
668-
Signal {
669-
name: "columnsAboutToBeInserted"
670-
Parameter { name: "parent"; type: "QModelIndex" }
671-
Parameter { name: "first"; type: "int" }
672-
Parameter { name: "last"; type: "int" }
673-
}
674-
Signal {
675-
name: "columnsInserted"
676-
Parameter { name: "parent"; type: "QModelIndex" }
677-
Parameter { name: "first"; type: "int" }
678-
Parameter { name: "last"; type: "int" }
679-
}
680-
Signal {
681-
name: "columnsAboutToBeRemoved"
682-
Parameter { name: "parent"; type: "QModelIndex" }
683-
Parameter { name: "first"; type: "int" }
684-
Parameter { name: "last"; type: "int" }
685-
}
686-
Signal {
687-
name: "columnsRemoved"
688-
Parameter { name: "parent"; type: "QModelIndex" }
689-
Parameter { name: "first"; type: "int" }
690-
Parameter { name: "last"; type: "int" }
691-
}
692-
Signal { name: "modelAboutToBeReset" }
693-
Signal { name: "modelReset" }
694-
Signal {
695-
name: "rowsAboutToBeMoved"
696-
Parameter { name: "sourceParent"; type: "QModelIndex" }
697-
Parameter { name: "sourceStart"; type: "int" }
698-
Parameter { name: "sourceEnd"; type: "int" }
699-
Parameter { name: "destinationParent"; type: "QModelIndex" }
700-
Parameter { name: "destinationRow"; type: "int" }
701-
}
702-
Signal {
703-
name: "rowsMoved"
704-
Parameter { name: "parent"; type: "QModelIndex" }
705-
Parameter { name: "start"; type: "int" }
706-
Parameter { name: "end"; type: "int" }
707-
Parameter { name: "destination"; type: "QModelIndex" }
708-
Parameter { name: "row"; type: "int" }
709-
}
710-
Signal {
711-
name: "columnsAboutToBeMoved"
712-
Parameter { name: "sourceParent"; type: "QModelIndex" }
713-
Parameter { name: "sourceStart"; type: "int" }
714-
Parameter { name: "sourceEnd"; type: "int" }
715-
Parameter { name: "destinationParent"; type: "QModelIndex" }
716-
Parameter { name: "destinationColumn"; type: "int" }
717-
}
718-
Signal {
719-
name: "columnsMoved"
720-
Parameter { name: "parent"; type: "QModelIndex" }
721-
Parameter { name: "start"; type: "int" }
722-
Parameter { name: "end"; type: "int" }
723-
Parameter { name: "destination"; type: "QModelIndex" }
724-
Parameter { name: "column"; type: "int" }
725-
}
726-
Method { name: "submit"; type: "bool" }
727-
Method { name: "revert" }
728-
Method {
729-
name: "hasIndex"
730-
type: "bool"
731-
Parameter { name: "row"; type: "int" }
732-
Parameter { name: "column"; type: "int" }
733-
Parameter { name: "parent"; type: "QModelIndex" }
734-
}
735-
Method {
736-
name: "hasIndex"
737-
type: "bool"
738-
Parameter { name: "row"; type: "int" }
739-
Parameter { name: "column"; type: "int" }
740-
}
741-
Method {
742-
name: "index"
743-
type: "QModelIndex"
744-
Parameter { name: "row"; type: "int" }
745-
Parameter { name: "column"; type: "int" }
746-
Parameter { name: "parent"; type: "QModelIndex" }
747-
}
748-
Method {
749-
name: "index"
750-
type: "QModelIndex"
751-
Parameter { name: "row"; type: "int" }
752-
Parameter { name: "column"; type: "int" }
753-
}
754-
Method {
755-
name: "parent"
756-
type: "QModelIndex"
757-
Parameter { name: "child"; type: "QModelIndex" }
758-
}
759-
Method {
760-
name: "sibling"
761-
type: "QModelIndex"
762-
Parameter { name: "row"; type: "int" }
763-
Parameter { name: "column"; type: "int" }
764-
Parameter { name: "idx"; type: "QModelIndex" }
765-
}
766-
Method {
767-
name: "rowCount"
768-
type: "int"
769-
Parameter { name: "parent"; type: "QModelIndex" }
770-
}
771-
Method { name: "rowCount"; type: "int" }
772-
Method {
773-
name: "columnCount"
774-
type: "int"
775-
Parameter { name: "parent"; type: "QModelIndex" }
776-
}
777-
Method { name: "columnCount"; type: "int" }
778-
Method {
779-
name: "hasChildren"
780-
type: "bool"
781-
Parameter { name: "parent"; type: "QModelIndex" }
782-
}
783-
Method { name: "hasChildren"; type: "bool" }
784-
Method {
785-
name: "data"
786-
type: "QVariant"
787-
Parameter { name: "index"; type: "QModelIndex" }
788-
Parameter { name: "role"; type: "int" }
789-
}
790-
Method {
791-
name: "data"
792-
type: "QVariant"
793-
Parameter { name: "index"; type: "QModelIndex" }
794-
}
795-
Method {
796-
name: "setData"
797-
type: "bool"
798-
Parameter { name: "index"; type: "QModelIndex" }
799-
Parameter { name: "value"; type: "QVariant" }
800-
Parameter { name: "role"; type: "int" }
801-
}
802-
Method {
803-
name: "setData"
804-
type: "bool"
805-
Parameter { name: "index"; type: "QModelIndex" }
806-
Parameter { name: "value"; type: "QVariant" }
807-
}
808-
Method {
809-
name: "headerData"
810-
type: "QVariant"
811-
Parameter { name: "section"; type: "int" }
812-
Parameter { name: "orientation"; type: "Qt::Orientation" }
813-
Parameter { name: "role"; type: "int" }
814-
}
815-
Method {
816-
name: "headerData"
817-
type: "QVariant"
818-
Parameter { name: "section"; type: "int" }
819-
Parameter { name: "orientation"; type: "Qt::Orientation" }
820-
}
821-
Method {
822-
name: "fetchMore"
823-
Parameter { name: "parent"; type: "QModelIndex" }
824-
}
825-
Method {
826-
name: "canFetchMore"
827-
type: "bool"
828-
Parameter { name: "parent"; type: "QModelIndex" }
829-
}
830-
Method {
831-
name: "flags"
832-
type: "Qt::ItemFlags"
833-
Parameter { name: "index"; type: "QModelIndex" }
834-
}
835-
Method {
836-
name: "match"
837-
type: "QModelIndexList"
838-
Parameter { name: "start"; type: "QModelIndex" }
839-
Parameter { name: "role"; type: "int" }
840-
Parameter { name: "value"; type: "QVariant" }
841-
Parameter { name: "hits"; type: "int" }
842-
Parameter { name: "flags"; type: "Qt::MatchFlags" }
843-
}
844-
Method {
845-
name: "match"
846-
type: "QModelIndexList"
847-
Parameter { name: "start"; type: "QModelIndex" }
848-
Parameter { name: "role"; type: "int" }
849-
Parameter { name: "value"; type: "QVariant" }
850-
Parameter { name: "hits"; type: "int" }
851-
}
852-
Method {
853-
name: "match"
854-
type: "QModelIndexList"
855-
Parameter { name: "start"; type: "QModelIndex" }
856-
Parameter { name: "role"; type: "int" }
857-
Parameter { name: "value"; type: "QVariant" }
858-
}
859-
}
860-
Component { name: "QAbstractListModel"; prototype: "QAbstractItemModel" }
861597
Component {
862598
name: "QUsbMode"
863599
prototype: "QObject"
@@ -973,6 +709,7 @@ Module {
973709
}
974710
Property { name: "bestState"; type: "int"; isReadonly: true }
975711
Property { name: "autoConnect"; type: "bool"; isReadonly: true }
712+
Property { name: "orderByConnected"; type: "bool" }
976713
Signal {
977714
name: "connectionStateChanged"
978715
Parameter { name: "path"; type: "string" }

0 commit comments

Comments
 (0)