summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/contacts/t8/SearchBar.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/tutorials/contacts/t8/SearchBar.qml')
-rw-r--r--examples/declarative/tutorials/contacts/t8/SearchBar.qml16
1 files changed, 16 insertions, 0 deletions
diff --git a/examples/declarative/tutorials/contacts/t8/SearchBar.qml b/examples/declarative/tutorials/contacts/t8/SearchBar.qml
new file mode 100644
index 0000000..f8e1a6a
--- /dev/null
+++ b/examples/declarative/tutorials/contacts/t8/SearchBar.qml
@@ -0,0 +1,16 @@
+<Item height="30" width="{parent.width}">
+ <properties>
+ <Property name="text" value="{searchEdit.text}"/>
+ </properties>
+ <Rect color="white" anchors.fill="{parent}">
+ <Image id="searchIcon" src="../shared/pics/search.png"
+ anchors.left="{parent.left}" anchors.leftMargin="5"
+ anchors.verticalCenter="{parent.verticalCenter}"/>
+ <TextEdit id="searchEdit" focus="{Page.listShown == 1}"
+ anchors.left="{searchIcon.right}" anchors.right="{parent.right}"
+ anchors.leftMargin="5" anchors.rightMargin="5"
+ anchors.verticalCenter="{parent.verticalCenter}"
+ readOnly="false" wrap="false"/>
+ </Rect>
+</Item>
+