Unity 8
 All Classes Functions Properties
SearchIndicator.qml
1 /*
2  * Copyright (C) 2013 Canonical, Ltd.
3  *
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.
7  *
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.
12  *
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/>.
15  */
16 
17 import QtQuick 2.0
18 import Ubuntu.Components 0.1
19 import "../Components"
20 
21 Item {
22  id: search
23 
24  width: container.width + units.gu(2)
25  height: units.gu(3)
26 
27  property string headerText: i18n.tr("Search")
28 
29  signal clicked
30 
31  // eater
32  MouseArea {
33  anchors.fill: parent
34  onClicked: search.clicked()
35  }
36 
37  Row {
38  id: container
39  objectName: "container"
40 
41  height: parent.height
42  width: childrenRect.width
43  anchors {
44  left: parent.left
45  leftMargin: units.gu(1)
46  }
47  spacing: units.gu(1)
48 
49  Behavior on opacity { StandardAnimation { duration: 300 } }
50 
51  Image {
52  id: icon
53  source: "graphics/search.png"
54  anchors.verticalCenter: parent.verticalCenter
55  }
56 
57  Label {
58  text: search.headerText
59  color: Qt.rgba(0.8, 0.8, 0.8, 1.0)
60  fontSize: "small"
61  font.capitalization: Font.AllUppercase
62  anchors.verticalCenter: parent.verticalCenter
63  }
64  }
65 
66  states: [
67  State {
68  name: "visible"
69  PropertyChanges {
70  target: container
71  opacity: 1
72  }
73  },
74  State {
75  name: "hidden"
76  PropertyChanges {
77  target: container
78  opacity: 0
79  }
80  }
81  ]
82 }