2 * Copyright (C) 2014,2015 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/>.
18 import Ubuntu.Components 1.3
19 import Ubuntu.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)
44 leftMargin: listItem.leftMargin
47 Component.onCompleted: {
48 checked = listItem.checked;
52 listItem.checked = checked
53 listItem.triggered(listItem.checked)
58 onCheckedChanged: checkBox.checked = listItem.checked
62 target: listItem.__mouseArea
64 listItem.checked = !listItem.checked
65 listItem.triggered(listItem.checked)
75 verticalCenter: parent.verticalCenter
76 leftMargin: units.gu(2)
77 rightMargin: listItem.rightMargin
80 linkColor: theme.palette.normal.foregroundText
81 onLinkActivated: listItem.linkActivated(link)