2 * Copyright (C) 2014 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 0.1
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
43 objectName: "titleLabel"
48 height: visible ? implicitHeight : 0
50 color: root.scopeStyle ? root.scopeStyle.foreground : Theme.palette.normal.baseText
53 text: widgetData["title"] || ""
57 objectName: "gridLayout"
59 columnSpacing: units.gu(2)
62 model: widgetData["values"]
66 readonly property int rowIndex: index
67 model: widgetData["values"][index]
69 objectName: "label"+rowIndex+index
71 text: perRowRepeater.model[index]
72 visible: root.expanded || rowIndex < maximumCollapsedRowCount
73 color: root.scopeStyle ? root.scopeStyle.foreground : Theme.palette.normal.baseText