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/>.
18import Lomiri.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: theme.name == "Lomiri.Components.Themes.SuruDark" ? "#111"
48 height: root.height * 2 / 3
50 anchors.centerIn: root
52 visible: !label.visible
58 hoverEnabled: root.hoverEnabled
65 transformOrigin: Item.Top
66 scale: mouseArea.pressed ? 0.98 : 1.0
69 duration: LomiriAnimation.SnapDuration
70 easing.type: Easing.Linear