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 QtQuick.Layouts 1.1
19 import Ubuntu.Components 1.3
20 import "../../Components"
22 /*! \brief Preview widget for table.
24 This widget shows two columns contained in widgetData["values"]
25 as arrays of label,value along with a title that comes from widgetData["title"].
27 In case the widget is collapsed it only shows 3 lines of values.
32 implicitHeight: column.implicitHeight
34 readonly property int maximumCollapsedRowCount: 3
44 objectName: "titleLabel"
49 height: visible ? implicitHeight : 0
51 color: root.scopeStyle ? root.scopeStyle.foreground : theme.palette.normal.baseText
54 text: widgetData["title"] || ""
55 elide: Text.ElideRight
59 objectName: "gridLayout"
61 columnSpacing: units.gu(2)
64 model: widgetData["values"]
68 readonly property int rowIndex: index
69 model: widgetData["values"][index]
71 objectName: "label"+rowIndex+index
73 text: perRowRepeater.model[index]
74 visible: root.expanded || rowIndex < maximumCollapsedRowCount
75 color: root.scopeStyle ? root.scopeStyle.foreground : theme.palette.normal.baseText
78 Layout.alignment: Qt.AlignTop
79 Layout.maximumWidth: column.width - x