~macslow/unity8/fix-1475678

« back to all changes in this revision

Viewing changes to Panel/IndicatorItem.qml

  • Committer: Michał Sawicz
  • Date: 2013-06-05 22:03:08 UTC
  • Revision ID: michal.sawicz@canonical.com-20130605220308-yny8fv3futtr04fg
Inital unity8 commit.

Previous history can be found at https://code.launchpad.net/~unity-team/unity/phablet

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: indicatorItem
 
22
 
 
23
    property alias iconSource: itemImage.source
 
24
    property alias label: itemLabel.text
 
25
    property bool highlighted: false
 
26
    property bool dimmed: false
 
27
 
 
28
    // only visible when non-empty
 
29
    visible: label != "" || iconSource != ""
 
30
    width: itemRow.width + units.gu(1)
 
31
 
 
32
    Rectangle {
 
33
        color: "#dd4814"
 
34
        height: units.dp(2)
 
35
        width: parent.width
 
36
        anchors.top: parent.bottom
 
37
        visible: highlighted
 
38
    }
 
39
 
 
40
    Row {
 
41
        id: itemRow
 
42
        objectName: "itemRow"
 
43
        anchors {
 
44
            top: parent.top
 
45
            bottom: parent.bottom
 
46
            horizontalCenter: parent.horizontalCenter
 
47
        }
 
48
        spacing: units.gu(0.5)
 
49
        opacity: dimmed ? 0.4 : 1
 
50
 
 
51
        Image {
 
52
            id: itemImage
 
53
            objectName: "itemImage"
 
54
            visible: source != ""
 
55
            height: units.gu(2.5)
 
56
            width: units.gu(2.5)
 
57
            anchors.verticalCenter: parent.verticalCenter
 
58
        }
 
59
 
 
60
        Label {
 
61
            id: itemLabel
 
62
            objectName: "itemLabel"
 
63
            color: "#f3f3e7"
 
64
            opacity: 0.8
 
65
            font.family: "Ubuntu"
 
66
            fontSize: "medium"
 
67
            anchors.verticalCenter: parent.verticalCenter
 
68
        }
 
69
    }
 
70
}