Settings dialog infrastructure
[quicknewsreader] / qml / QuickNewsReader / content / modelitf / SourceModel.qml
1 import QtQuick 1.0
2
3 QtObject {
4     id: sourceModel
5     property string name: "Source"
6
7     property bool loading
8     property bool hasSettings: false
9     property string settingsComponent
10
11     property variant listViews;
12     property variant listModels;
13
14     property variant currentPath: [];
15 }
16