diff options
Diffstat (limited to 'ui/qt/strip_headers_dialog.ui')
-rw-r--r-- | ui/qt/strip_headers_dialog.ui | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/ui/qt/strip_headers_dialog.ui b/ui/qt/strip_headers_dialog.ui new file mode 100644 index 00000000..cc40162a --- /dev/null +++ b/ui/qt/strip_headers_dialog.ui @@ -0,0 +1,106 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>StripHeadersDialog</class> + <widget class="QDialog" name="StripHeadersDialog"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>393</width> + <height>158</height> + </rect> + </property> + <property name="windowTitle"> + <string>Dialog</string> + </property> + <widget class="QDialogButtonBox" name="buttonBox"> + <property name="geometry"> + <rect> + <x>30</x> + <y>100</y> + <width>341</width> + <height>32</height> + </rect> + </property> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="standardButtons"> + <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> + </property> + </widget> + <widget class="QWidget" name="layoutWidget"> + <property name="geometry"> + <rect> + <x>16</x> + <y>20</y> + <width>361</width> + <height>29</height> + </rect> + </property> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <widget class="QLabel" name="label"> + <property name="text"> + <string>Display filter:</string> + </property> + </widget> + </item> + <item> + <widget class="DisplayFilterEdit" name="displayFilterLineEdit"/> + </item> + </layout> + </widget> + <widget class="QComboBox" name="comboBox"> + <property name="geometry"> + <rect> + <x>10</x> + <y>60</y> + <width>120</width> + <height>30</height> + </rect> + </property> + </widget> + </widget> + <customwidgets> + <customwidget> + <class>DisplayFilterEdit</class> + <extends>QLineEdit</extends> + <header>widgets/display_filter_edit.h</header> + </customwidget> + </customwidgets> + <connections> + <connection> + <sender>buttonBox</sender> + <signal>accepted()</signal> + <receiver>StripHeadersDialog</receiver> + <slot>accept()</slot> + <hints> + <hint type="sourcelabel"> + <x>248</x> + <y>254</y> + </hint> + <hint type="destinationlabel"> + <x>157</x> + <y>274</y> + </hint> + </hints> + </connection> + <connection> + <sender>buttonBox</sender> + <signal>rejected()</signal> + <receiver>StripHeadersDialog</receiver> + <slot>reject()</slot> + <hints> + <hint type="sourcelabel"> + <x>316</x> + <y>260</y> + </hint> + <hint type="destinationlabel"> + <x>286</x> + <y>274</y> + </hint> + </hints> + </connection> + </connections> +</ui> |