2 * Copyright (C) 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
21 //! \brief This component loads the widgets based on widgetType.
25 //! Identifier of the widget.
26 property string widgetId: ""
28 //! Type of the widget to display.
29 property int widgetType
31 //! Widget data, forwarded to the widget as is.
32 property var widgetData: null
34 // Emitted iff filter type is FilterOptionSelector
35 signal singleSelectionFilterSelected()
37 implicitHeight: title.height + title.anchors.topMargin + loader.height
41 text: widgetData && !(loader.item && loader.item.showsTitleOnItsOwn) ? widgetData.title : ""
42 height: text != "" ? implicitHeight : 0
49 topMargin: height > 0 ? units.gu(1) : 0
50 leftMargin: units.gu(2)
51 rightMargin: anchors.leftMargin
55 property alias active: loader.active
69 readonly property url widgetSource: {
71 case Filters.OptionSelectorFilter: return "FilterOptionSelector.qml";
72 case Filters.RangeInputFilter: return "FilterRangeInput.qml";
73 case Filters.ValueSliderFilter: return "FilterValueSlider.qml";
74 case Filters.ExpandableFilterWidget: return "FilterExpandableWidget.qml";
80 item.widgetId = Qt.binding(function() { return root.widgetId } )
81 item.widgetData = Qt.binding(function() { return root.widgetData } )
85 target: widgetType == Filters.OptionSelectorFilter ? loader.item : null
86 onFilterSelected: root.singleSelectionFilterSelected()