2 * Copyright 2016 Canonical Ltd.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation; version 3.
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 Lesser General Public License for more details.
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 import Ubuntu.Components 1.3
25 // to be read from outside
26 readonly property alias containsMouse: mouseArea.containsMouse
28 // to be set from outside
29 property bool outline: true
30 property alias text: label.text
31 property alias iconName: icon.name
32 property bool hoverEnabled: false
39 font.weight: Font.Light
40 anchors.centerIn: root
41 color: outline ? theme.palette.normal.backgroundSecondaryText : "white"
47 height: root.height * 2 / 3
49 anchors.centerIn: root
51 visible: !label.visible
57 hoverEnabled: root.hoverEnabled
64 transformOrigin: Item.Top
65 scale: mouseArea.pressed ? 0.98 : 1.0
68 duration: UbuntuAnimation.SnapDuration
69 easing.type: Easing.Linear