2 * Copyright (C) 2013-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 ListItems
20 import "Filters" as Filters
21 import "../Components"
26 readonly property real searchesHeight: recentSearchesRepeater.count > 0 ? searchColumn.height + recentSearchesLabels.height + recentSearchesLabels.anchors.topMargin : 0
28 implicitHeight: searchesHeight + dashNavigation.implicitHeight + dashNavigation.anchors.topMargin + primaryFilterContainer.height + primaryFilterContainer.anchors.topMargin
31 property ListModel searchHistory
32 property var scope: null
33 property real windowHeight
36 readonly property bool hasContents: searchHistory.count > 0 || scope && scope.hasNavigation || scope && scope.primaryNavigationFilter
38 signal historyItemClicked(string text)
39 signal dashNavigationLeafClicked()
40 signal extraPanelOptionSelected()
42 function resetNavigation() {
43 dashNavigation.resetNavigation();
49 leftMargin: -units.gu(1)
50 rightMargin: -units.gu(1)
51 bottomMargin: -units.gu(1)
53 source: "graphics/rectangular_dropshadow.sci"
61 ListItems.ThinDivider {
62 anchors.top: parent.top
66 id: recentSearchesLabels
67 text: i18n.tr("Recent Searches")
68 visible: recentSearchesRepeater.count > 0
73 topMargin: units.gu(3)
78 text: i18n.tr("Clear All")
80 visible: recentSearchesRepeater.count > 0
85 topMargin: units.gu(3)
90 onClicked: searchHistory.clear();
97 top: recentSearchesLabels.bottom
103 id: recentSearchesRepeater
104 objectName: "recentSearchesRepeater"
107 // FIXME Move to ListItem once 1556971 is fixed
108 delegate: ListItems.Empty {
112 leftMargin: units.gu(2)
113 rightMargin: units.gu(2)
120 verticalCenter: parent.verticalCenter
123 height: units.gu(1.5)
130 verticalCenter: parent.verticalCenter
131 left: searchIcon.right
132 leftMargin: units.gu(1)
137 elide: Text.ElideRight
140 divider.visible: index != recentSearchesRepeater.count - 1 || (scope && scope.hasNavigation) || primaryFilter.active
142 onClicked: root.historyItemClicked(query)
151 top: recentSearchesRepeater.count > 0 ? searchColumn.bottom : parent.top
152 topMargin: implicitHeight && recentSearchesRepeater.count > 0 ? units.gu(2) : 0
156 availableHeight: windowHeight * 4 / 6 - searchesHeight
158 onLeafClicked: root.dashNavigationLeafClicked();
162 id: primaryFilterContainer
163 objectName: "primaryFilterContainer"
166 if (!primaryFilter.active) {
168 } else if (contentHeight > dashNavigation.availableHeight) {
169 return dashNavigation.availableHeight;
171 return contentHeight;
176 contentHeight: primaryFilter.implicitHeight
179 top: recentSearchesRepeater.count > 0 ? searchColumn.bottom : parent.top
180 topMargin: primaryFilter.active && recentSearchesRepeater.count > 0 ? units.gu(2) : 0
185 Filters.FilterWidgetFactory {
187 objectName: "primaryFilter"
189 active: scope && !scope.hasNavigation
192 property var filter: active ? scope.primaryNavigationFilter : null
194 widgetId: filter ? filter.filterId : ""
195 widgetType: filter ? filter.filterType : -1
198 onSingleSelectionFilterSelected: extraPanelOptionSelected()