diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2012-08-09 19:06:46 +0200 |
---|---|---|
committer | Javier S. Pedro <maemo@javispedro.com> | 2012-08-09 19:06:46 +0200 |
commit | 118cb64416eb3bbbfee47bd3c618fc8825d85f54 (patch) | |
tree | 8a2d0e51cba858eda83c82dfd591c10b92300487 /sowatchui/qml | |
parent | bc5b70046e84c6e5a33a19bd2e64e626fdf0579e (diff) | |
download | sowatch-118cb64416eb3bbbfee47bd3c618fc8825d85f54.tar.gz sowatch-118cb64416eb3bbbfee47bd3c618fc8825d85f54.zip |
add some UI stubs
Diffstat (limited to 'sowatchui/qml')
-rw-r--r-- | sowatchui/qml/WatchPage.qml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/sowatchui/qml/WatchPage.qml b/sowatchui/qml/WatchPage.qml index 83932eb..6ddb7e8 100644 --- a/sowatchui/qml/WatchPage.qml +++ b/sowatchui/qml/WatchPage.qml @@ -71,11 +71,51 @@ Page { visible: configQmlLoader.status === Loader.Ready } + ListView { + id: watchletsListView + interactive: false + width: parent.width + height: UiConstants.ListItemHeightDefault * count + model: ListModel { + ListElement { + title: "Test" + } + } + delegate: ListDelegate { + + } + } + + Button { + anchors.horizontalCenter: parent.horizontalCenter + text: qsTr("Add watchlet") + } + GroupHeader { width: parent.width text: "Notification sources" visible: configQmlLoader.status === Loader.Ready } + + ListView { + id: providersListView + interactive: false + width: parent.width + height: UiConstants.ListItemHeightDefault * count + model: ListModel { + ListElement { + title: "Test" + } + } + delegate: ListDelegate { + + } + } + + Button { + anchors.horizontalCenter: parent.horizontalCenter + text: qsTr("Add notification source") + } } } ScrollDecorator { |