diff options
Diffstat (limited to 'example/searchdialog.ui')
-rw-r--r-- | example/searchdialog.ui | 200 |
1 files changed, 200 insertions, 0 deletions
diff --git a/example/searchdialog.ui b/example/searchdialog.ui new file mode 100644 index 0000000..d98560f --- /dev/null +++ b/example/searchdialog.ui @@ -0,0 +1,200 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>SearchDialog</class> + <widget class="QDialog" name="SearchDialog"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>436</width> + <height>223</height> + </rect> + </property> + <property name="windowTitle"> + <string>QHexEdit - Find/Replace</string> + </property> + <layout class="QHBoxLayout" name="horizontalLayout_3"> + <item> + <layout class="QVBoxLayout" name="verticalLayout_2"> + <item> + <widget class="QGroupBox" name="gbFind"> + <property name="title"> + <string>Find</string> + </property> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <widget class="QComboBox" name="cbFindFormat"> + <item> + <property name="text"> + <string>Hex</string> + </property> + </item> + <item> + <property name="text"> + <string>UTF-8</string> + </property> + </item> + </widget> + </item> + <item> + <widget class="QComboBox" name="cbFind"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="editable"> + <bool>true</bool> + </property> + </widget> + </item> + </layout> + </widget> + </item> + <item> + <widget class="QGroupBox" name="gbReplace"> + <property name="title"> + <string>Replace</string> + </property> + <layout class="QHBoxLayout" name="horizontalLayout_2"> + <item> + <widget class="QComboBox" name="cbReplaceFormat"> + <item> + <property name="text"> + <string>Hex</string> + </property> + </item> + <item> + <property name="text"> + <string>UTF-8</string> + </property> + </item> + </widget> + </item> + <item> + <widget class="QComboBox" name="cbReplace"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="editable"> + <bool>true</bool> + </property> + </widget> + </item> + </layout> + </widget> + </item> + <item> + <widget class="QGroupBox" name="gbOptions"> + <property name="title"> + <string>Options</string> + </property> + <layout class="QVBoxLayout" name="verticalLayout_3"> + <item> + <widget class="QCheckBox" name="cbBackwards"> + <property name="text"> + <string>&Backwards</string> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="cbPrompt"> + <property name="text"> + <string>&Prompt on replace</string> + </property> + </widget> + </item> + </layout> + </widget> + </item> + </layout> + </item> + <item> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QPushButton" name="pbFind"> + <property name="text"> + <string>&Find</string> + </property> + <property name="shortcut"> + <string>F3</string> + </property> + <property name="default"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="pbReplace"> + <property name="text"> + <string>&Replace</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="pbReplaceAll"> + <property name="text"> + <string>Replace &All</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="pbCancel"> + <property name="text"> + <string>&Close</string> + </property> + </widget> + </item> + <item> + <spacer name="verticalSpacer"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>20</width> + <height>40</height> + </size> + </property> + </spacer> + </item> + </layout> + </item> + </layout> + </widget> + <tabstops> + <tabstop>cbFind</tabstop> + <tabstop>cbReplace</tabstop> + <tabstop>cbFindFormat</tabstop> + <tabstop>cbReplaceFormat</tabstop> + <tabstop>cbBackwards</tabstop> + <tabstop>cbPrompt</tabstop> + <tabstop>pbFind</tabstop> + <tabstop>pbReplace</tabstop> + <tabstop>pbReplaceAll</tabstop> + <tabstop>pbCancel</tabstop> + </tabstops> + <resources/> + <connections> + <connection> + <sender>pbCancel</sender> + <signal>clicked()</signal> + <receiver>SearchDialog</receiver> + <slot>hide()</slot> + <hints> + <hint type="sourcelabel"> + <x>360</x> + <y>134</y> + </hint> + <hint type="destinationlabel"> + <x>364</x> + <y>162</y> + </hint> + </hints> + </connection> + </connections> +</ui> |