~mterry/unity8/split

« back to all changes in this revision

Viewing changes to Components/TileStyle.qml

  • Committer: Michael Terry
  • Date: 2013-10-15 17:48:24 UTC
  • mfrom: (138.2.326 trunk)
  • Revision ID: michael.terry@canonical.com-20131015174824-x1n7rx100b0ph8v4
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
import QtQuick 2.0
 
18
import Ubuntu.Components 0.1
 
19
 
 
20
Item {
 
21
    id: tile
 
22
 
 
23
    anchors.fill: parent
 
24
 
 
25
    UbuntuShape {
 
26
        id: icon
 
27
        anchors {
 
28
            top: parent.top
 
29
            horizontalCenter: parent.horizontalCenter
 
30
        }
 
31
        radius: "medium"
 
32
        width: styledItem.imageWidth
 
33
        height: styledItem.imageHeight
 
34
        image: Image {
 
35
            id: image
 
36
            objectName: "image"
 
37
            sourceSize { width: icon.width; height: icon.height }
 
38
            asynchronous: true
 
39
            cache: false
 
40
            source: styledItem.source
 
41
            fillMode: styledItem.fillMode
 
42
            horizontalAlignment: Image.AlignHCenter
 
43
            verticalAlignment: Image.AlignVCenter
 
44
        }
 
45
    }
 
46
 
 
47
    UbuntuShape {
 
48
        id: borderPressed
 
49
        objectName: "borderPressed"
 
50
 
 
51
        anchors.fill: icon
 
52
        radius: "medium"
 
53
        borderSource: "radius_pressed.sci"
 
54
        opacity: styledItem.pressed ? 1.0 : 0.0
 
55
        Behavior on opacity { NumberAnimation { duration: 200; easing.type: Easing.OutQuint } }
 
56
    }
 
57
 
 
58
    Label {
 
59
        id: label
 
60
        objectName: "label"
 
61
        anchors {
 
62
            baseline: icon.bottom
 
63
            baselineOffset: units.gu(2)
 
64
            left: parent.left
 
65
            right: parent.right
 
66
            leftMargin: units.gu(1)
 
67
            rightMargin: units.gu(1)
 
68
        }
 
69
 
 
70
        color: Theme.palette.selected.backgroundText
 
71
        opacity: 0.9
 
72
        style: Text.Raised
 
73
        styleColor: "black"
 
74
        fontSize: "small"
 
75
        elide: Text.ElideMiddle
 
76
        horizontalAlignment: styledItem.horizontalAlignment
 
77
        text: styledItem.text
 
78
        wrapMode: Text.Wrap
 
79
        maximumLineCount: styledItem.maximumLineCount
 
80
    }
 
81
}