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
25 readonly property real searchesHeight: recentSearchesRepeater.count > 0 ? searchColumn.height + recentSearchesLabels.height + recentSearchesLabels.anchors.topMargin : 0
27 implicitHeight: searchesHeight + dashNavigation.implicitHeight + dashNavigation.anchors.topMargin + primaryFilter.height + primaryFilter.anchors.topMargin
30 property ListModel searchHistory
31 property var scope: null
32 property real windowHeight
35 readonly property bool hasContents: searchHistory.count > 0 || scope && scope.hasNavigation || scope && scope.primaryNavigationFilter
37 signal historyItemClicked(string text)
38 signal dashNavigationLeafClicked()
40 function resetNavigation() {
41 dashNavigation.resetNavigation();
49 ListItems.ThinDivider {
50 anchors.top: parent.top
54 id: recentSearchesLabels
55 text: i18n.tr("Recent Searches")
56 visible: recentSearchesRepeater.count > 0
61 topMargin: units.gu(3)
66 text: i18n.tr("Clear All")
68 visible: recentSearchesRepeater.count > 0
73 topMargin: units.gu(3)
78 onClicked: searchHistory.clear();
85 top: recentSearchesLabels.bottom
91 id: recentSearchesRepeater
92 objectName: "recentSearchesRepeater"
95 // FIXME Move to ListItem once 1556971 is fixed
96 delegate: ListItems.Empty {
100 leftMargin: units.gu(2)
101 rightMargin: units.gu(2)
108 verticalCenter: parent.verticalCenter
111 height: units.gu(1.5)
118 verticalCenter: parent.verticalCenter
119 left: searchIcon.right
120 leftMargin: units.gu(1)
127 divider.visible: index != repeater.count - 1 || (scope && scope.hasNavigation) || primaryFilter.active
129 onClicked: root.historyItemClicked(query)
138 top: recentSearchesRepeater.count > 0 ? searchColumn.bottom : parent.top
139 topMargin: implicitHeight && recentSearchesRepeater.count > 0 ? units.gu(2) : 0
143 availableHeight: windowHeight * 4 / 6 - searchesHeight
145 onLeafClicked: root.dashNavigationLeafClicked();
148 Filters.FilterWidgetFactory {
150 active: scope && !scope.hasNavigation
152 property var filter: active ? scope.primaryNavigationFilter : null
155 top: recentSearchesRepeater.count > 0 ? searchColumn.bottom : parent.top
156 topMargin: active && recentSearchesRepeater.count > 0 ? units.gu(2) : 0
161 widgetId: filter ? filter.filterId : ""
162 widgetType: filter ? filter.filterType : -1
166 // This is outside the item
173 fillMode: Image.Stretch
174 source: "graphics/navigation_shadow.png"