1<?xml version="1.0" encoding="UTF-8"?> 2<ui version="4.0"> 3 <class>OptionsDialog</class> 4 <widget class="QDialog" name="OptionsDialog"> 5 <property name="geometry"> 6 <rect> 7 <x>0</x> 8 <y>0</y> 9 <width>420</width> 10 <height>320</height> 11 </rect> 12 </property> 13 <property name="sizePolicy"> 14 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> 15 <horstretch>0</horstretch> 16 <verstretch>0</verstretch> 17 </sizepolicy> 18 </property> 19 <property name="windowTitle"> 20 <string>Options</string> 21 </property> 22 <widget class="QDialogButtonBox" name="buttonBox"> 23 <property name="geometry"> 24 <rect> 25 <x>50</x> 26 <y>280</y> 27 <width>341</width> 28 <height>32</height> 29 </rect> 30 </property> 31 <property name="orientation"> 32 <enum>Qt::Horizontal</enum> 33 </property> 34 <property name="standardButtons"> 35 <set>QDialogButtonBox::Apply|QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> 36 </property> 37 </widget> 38 <widget class="QTabWidget" name="tabWidget"> 39 <property name="enabled"> 40 <bool>true</bool> 41 </property> 42 <property name="geometry"> 43 <rect> 44 <x>10</x> 45 <y>10</y> 46 <width>401</width> 47 <height>261</height> 48 </rect> 49 </property> 50 <property name="currentIndex"> 51 <number>0</number> 52 </property> 53 <widget class="QWidget" name="general_tab"> 54 <attribute name="title"> 55 <string>General</string> 56 </attribute> 57 <widget class="QGroupBox" name="searchBox"> 58 <property name="geometry"> 59 <rect> 60 <x>0</x> 61 <y>78</y> 62 <width>389</width> 63 <height>151</height> 64 </rect> 65 </property> 66 <property name="title"> 67 <string>Search options</string> 68 </property> 69 <widget class="QWidget" name="layoutWidget"> 70 <property name="geometry"> 71 <rect> 72 <x>10</x> 73 <y>30</y> 74 <width>371</width> 75 <height>111</height> 76 </rect> 77 </property> 78 <layout class="QGridLayout" name="gridLayout"> 79 <item row="0" column="0"> 80 <widget class="QLabel" name="label_3"> 81 <property name="text"> 82 <string>Main search type: </string> 83 </property> 84 </widget> 85 </item> 86 <item row="0" column="1"> 87 <widget class="QComboBox" name="mainSearchBox"/> 88 </item> 89 <item row="1" column="0"> 90 <widget class="QLabel" name="label_4"> 91 <property name="text"> 92 <string>QuickFind search type: </string> 93 </property> 94 </widget> 95 </item> 96 <item row="1" column="1"> 97 <widget class="QComboBox" name="quickFindSearchBox"/> 98 </item> 99 <item row="4" column="1"> 100 <widget class="QCheckBox" name="incrementalCheckBox"> 101 <property name="layoutDirection"> 102 <enum>Qt::LeftToRight</enum> 103 </property> 104 <property name="text"> 105 <string>Incremental QuickFind</string> 106 </property> 107 </widget> 108 </item> 109 </layout> 110 </widget> 111 </widget> 112 <widget class="QGroupBox" name="fontBox"> 113 <property name="geometry"> 114 <rect> 115 <x>0</x> 116 <y>0</y> 117 <width>389</width> 118 <height>71</height> 119 </rect> 120 </property> 121 <property name="title"> 122 <string>Font</string> 123 </property> 124 <widget class="QWidget" name="horizontalLayoutWidget"> 125 <property name="geometry"> 126 <rect> 127 <x>10</x> 128 <y>30</y> 129 <width>371</width> 130 <height>31</height> 131 </rect> 132 </property> 133 <layout class="QHBoxLayout" name="horizontalLayout"> 134 <item> 135 <widget class="QLabel" name="label"> 136 <property name="text"> 137 <string>Family: </string> 138 </property> 139 </widget> 140 </item> 141 <item> 142 <widget class="QComboBox" name="fontFamilyBox"/> 143 </item> 144 <item> 145 <widget class="QLabel" name="label_2"> 146 <property name="text"> 147 <string>Size: </string> 148 </property> 149 </widget> 150 </item> 151 <item> 152 <widget class="QComboBox" name="fontSizeBox"/> 153 </item> 154 </layout> 155 </widget> 156 </widget> 157 </widget> 158 <widget class="QWidget" name="advanced_tab"> 159 <property name="enabled"> 160 <bool>true</bool> 161 </property> 162 <attribute name="title"> 163 <string>Advanced</string> 164 </attribute> 165 <widget class="QGroupBox" name="pollBox"> 166 <property name="geometry"> 167 <rect> 168 <x>0</x> 169 <y>0</y> 170 <width>389</width> 171 <height>121</height> 172 </rect> 173 </property> 174 <property name="title"> 175 <string>File polling</string> 176 </property> 177 <widget class="QWidget" name="verticalLayoutWidget"> 178 <property name="geometry"> 179 <rect> 180 <x>10</x> 181 <y>20</y> 182 <width>371</width> 183 <height>91</height> 184 </rect> 185 </property> 186 <layout class="QVBoxLayout" name="verticalLayout"> 187 <item> 188 <widget class="QCheckBox" name="pollingCheckBox"> 189 <property name="text"> 190 <string>Enable Polling</string> 191 </property> 192 </widget> 193 </item> 194 <item> 195 <layout class="QHBoxLayout" name="horizontalLayout_2"> 196 <item> 197 <widget class="QLabel" name="label_5"> 198 <property name="text"> 199 <string>Time Interval (ms):</string> 200 </property> 201 </widget> 202 </item> 203 <item> 204 <widget class="QLineEdit" name="pollIntervalLineEdit"> 205 <property name="maximumSize"> 206 <size> 207 <width>100</width> 208 <height>16777215</height> 209 </size> 210 </property> 211 <property name="inputMethodHints"> 212 <set>Qt::ImhDigitsOnly</set> 213 </property> 214 </widget> 215 </item> 216 </layout> 217 </item> 218 <item alignment="Qt::AlignTop"> 219 <widget class="QLabel" name="label_7"> 220 <property name="text"> 221 <string>Files will be polled at the interval specified here. A value of 0 disables polling altogether.</string> 222 </property> 223 <property name="textFormat"> 224 <enum>Qt::AutoText</enum> 225 </property> 226 <property name="wordWrap"> 227 <bool>true</bool> 228 </property> 229 </widget> 230 </item> 231 </layout> 232 </widget> 233 </widget> 234 </widget> 235 </widget> 236 </widget> 237 <resources/> 238 <connections/> 239 <designerdata> 240 <property name="gridDeltaX"> 241 <number>10</number> 242 </property> 243 <property name="gridDeltaY"> 244 <number>10</number> 245 </property> 246 <property name="gridSnapX"> 247 <bool>true</bool> 248 </property> 249 <property name="gridSnapY"> 250 <bool>true</bool> 251 </property> 252 <property name="gridVisible"> 253 <bool>true</bool> 254 </property> 255 </designerdata> 256</ui> 257