blob: e0e8fb86fee188bc5c35376f49b1e460b9779a4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
import QtQuick 1.1
import com.nokia.meego 1.1
import com.nokia.extras 1.1
import com.javispedro.tapasboard 1.0
Page {
id: mainPage
anchors.leftMargin: UiConstants.DefaultMargin
anchors.rightMargin: UiConstants.DefaultMargin
ListView {
id: favoritesView
anchors.fill: parent
model: FavoritesModel {
}
delegate: ListDelegate {
id: favoriteItem
Image {
id: topicItemImage
source: "image://theme/icon-m-common-drilldown-arrow" + (theme.inverted ? "-inverse" : "")
anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter
}
onClicked: {
var board = boardManager.getBoard(model.boardUrl,
model.loginUsername,
model.loginPassword);
pageStack.push(Qt.resolvedUrl("BoardPage.qml"), {
board: board,
forumId: board.rootForumId
});
}
}
}
}
|