2 * Copyright (C) 2014-2016 Canonical Ltd.
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.
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.
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/>.
18import Lomiri.Components 1.3
19import Lomiri.Components.ListItems 1.3 as ListItem
24 property alias text: label.text
25 property bool checked: false
26 property real leftMargin
27 property real rightMargin
29 readonly property real labelOffset: label.x
31 signal linkActivated(string link)
33 implicitHeight: Math.max(label.height, checkBox.height)
34 highlightWhenPressed: false
46 leftMargin: listItem.leftMargin
49 Component.onCompleted: {
50 checked = listItem.checked;
54 listItem.checked = checked
55 listItem.triggered(listItem.checked)
60 onCheckedChanged: checkBox.checked = listItem.checked
64 target: listItem.__mouseArea
66 listItem.checked = !listItem.checked
67 listItem.triggered(listItem.checked)
77 verticalCenter: parent.verticalCenter
78 leftMargin: units.gu(2)
79 rightMargin: listItem.rightMargin
82 linkColor: LomiriColors.orange
84 font.weight: Font.Light
87 onLinkActivated: listItem.linkActivated(link)
90 Keys.onSpacePressed: checkBox.trigger()