~nick-dedekind/unity8/indicators.hint-interval

« back to all changes in this revision

Viewing changes to qml/Components/SeeMore.qml

  • Committer: Nick Dedekind
  • Date: 2014-03-07 15:54:57 UTC
  • mfrom: (638.1.118 unity8)
  • Revision ID: nicholas.dedekind@gmail.com-20140307155457-f0s1zu5ll2czt3rq
merged with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2014 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
/*! Widget that can be used in combination with a text area to allow easy 'expand/collapse' functionality. */
 
21
 
 
22
Item {
 
23
    //! Boolean set to true when it suggests expanded functionality
 
24
    property bool more: false
 
25
 
 
26
    implicitHeight: seeMoreLabel.height + units.gu(2)
 
27
 
 
28
    Row {
 
29
        anchors.centerIn: parent
 
30
        spacing: units.gu(2)
 
31
 
 
32
        Label {
 
33
            id: seeMoreLabel
 
34
            objectName: "seeMoreLabel"
 
35
            text: i18n.tr("See more")
 
36
            opacity: !more ? 0.8 : 0.4
 
37
            color: Theme.palette.selected.backgroundText
 
38
            font.weight: Font.Bold
 
39
 
 
40
            MouseArea {
 
41
                anchors.fill: parent
 
42
                onClicked: more = true
 
43
            }
 
44
        }
 
45
 
 
46
        Image {
 
47
            anchors {
 
48
                top: parent.top
 
49
                bottom: parent.bottom
 
50
            }
 
51
            width: units.dp(2)
 
52
            source: "ListItems/graphics/ListItemDividerVertical.png"
 
53
        }
 
54
 
 
55
        Label {
 
56
            objectName: "seeLessLabel"
 
57
            text: i18n.tr("See less")
 
58
            opacity: more ? 0.8 : 0.4
 
59
            color: Theme.palette.selected.backgroundText
 
60
            font.weight: Font.Bold
 
61
 
 
62
            MouseArea {
 
63
                anchors.fill: parent
 
64
                onClicked: more = false
 
65
            }
 
66
        }
 
67
    }
 
68
}