1<?xml version="1.0" encoding="UTF-8"?> 2<ui version="4.0"> 3 <class>SearchBar</class> 4 <widget class="QWidget" name="SearchBar"> 5 <property name="geometry"> 6 <rect> 7 <x>0</x> 8 <y>0</y> 9 <width>399</width> 10 <height>40</height> 11 </rect> 12 </property> 13 <property name="windowTitle"> 14 <string>Search Bar</string> 15 </property> 16 <layout class="QHBoxLayout" name="horizontalLayout"> 17 <item> 18 <widget class="QToolButton" name="closeButton"> 19 <property name="text"> 20 <string>X</string> 21 </property> 22 <property name="icon"> 23 <iconset theme="dialog-close"> 24 <normaloff/> 25 </iconset> 26 </property> 27 </widget> 28 </item> 29 <item> 30 <widget class="QLabel" name="findLabel"> 31 <property name="text"> 32 <string>Find:</string> 33 </property> 34 </widget> 35 </item> 36 <item> 37 <widget class="QLineEdit" name="searchTextEdit"/> 38 </item> 39 <item> 40 <widget class="QToolButton" name="findPreviousButton"> 41 <property name="text"> 42 <string><</string> 43 </property> 44 <property name="icon"> 45 <iconset theme="go-previous"> 46 <normaloff/> 47 </iconset> 48 </property> 49 </widget> 50 </item> 51 <item> 52 <widget class="QToolButton" name="findNextButton"> 53 <property name="text"> 54 <string>></string> 55 </property> 56 <property name="icon"> 57 <iconset theme="go-next"> 58 <normaloff/> 59 </iconset> 60 </property> 61 </widget> 62 </item> 63 <item> 64 <widget class="QToolButton" name="optionsButton"> 65 <property name="text"> 66 <string>…</string> 67 </property> 68 <property name="icon"> 69 <iconset> 70 <normaloff/> 71 </iconset> 72 </property> 73 <property name="popupMode"> 74 <enum>QToolButton::InstantPopup</enum> 75 </property> 76 <property name="arrowType"> 77 <enum>Qt::DownArrow</enum> 78 </property> 79 </widget> 80 </item> 81 </layout> 82 </widget> 83 <resources/> 84 <connections/> 85</ui> 86