Ubuntu Pastebin

Paste from imadper at Wed, 11 Feb 2015 03:51:45 +0000

Download as text
 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import QtQuick 2.0
import QtQuick.XmlListModel 2.0
import Ubuntu.Components 1.1
import Ubuntu.Components.ListItems 1.0
import "../components/JSONListModel"

Item {
    anchors.fill: parent
    id: mainScreen

    ListModel {
        id: sampleListModel

        ListElement {
            imagePath: "http://pic3.zhimg.com/f638c124aba6d6b1403060168396ac12.jpg"
            title: "First picture"
        }
        ListElement {
            imagePath: "http://pic3.zhimg.com/f638c124aba6d6b1403060168396ac12.jpg"
            title: "First picture"
        }
        ListElement {
            imagePath: "http://pic3.zhimg.com/f638c124aba6d6b1403060168396ac12.jpg"
            title: "First picture"
        }
    }
    JSONListModel{
        id:jsonModel
        source: "http://news-at.zhihu.com/api/4/news/latest"
        query: "$.stroies[*]"
    }


    Component {
        id: listDelegate
        BorderImage {
            source: "http://pic2.zhimg.com/d4691da85d8f7c4a845bcac5ec49f479.jpg"
            border { top:4; left:4; right:100; bottom: 4 }
            anchors.right: parent.right
            // width: mainScreen.width
            width: ListView.view.width

            property int fontSize: 25

            Rectangle {
                id: imageId
                x: 6; y: 4; width: parent.height - 10; height:width; color: "white"; smooth: true
                anchors.verticalCenter: parent.verticalCenter

                BorderImage {
                    source: model.images[0]; x: 0; y: 0
                    height:parent.height
                    width:parent.width
                    anchors.verticalCenter: parent.verticalCenter
                }

            }

            Text {
                x: imageId.width + 20
                y: 15
                width: ListView.view.width*2/3
                text: model.title; color: "white"
                font { pixelSize: fontSize; bold: true }
                elide: Text.ElideRight; style: Text.Raised; styleColor: "black"
            }
        }
    }

    UbuntuListView {
        id: listView
        width: mainScreen.width
        height: mainScreen.height

        model: jsonModel.model

        delegate: listDelegate
//delegate: sampleListModel
    }
    Scrollbar {
        flickableItem: listView
    }
}
Download as text