diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-07-30 20:55:52 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-07-30 20:55:52 +0200 |
commit | 2da24be2e8f8ffa60e371557d75183b67fd2ea24 (patch) | |
tree | ec436bf94ad75fed1e0779d35a2bd7a64833babd /bytewindow.ui | |
parent | 98c665b409595238d73f550f95c7bf83ec6142da (diff) |
Added UI to insert/delete bytes into a packet.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'bytewindow.ui')
-rw-r--r-- | bytewindow.ui | 125 |
1 files changed, 125 insertions, 0 deletions
diff --git a/bytewindow.ui b/bytewindow.ui new file mode 100644 index 0000000..011207a --- /dev/null +++ b/bytewindow.ui @@ -0,0 +1,125 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>ByteWindow</class> + <widget class="QDialog" name="ByteWindow"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>300</width> + <height>200</height> + </rect> + </property> + <property name="minimumSize"> + <size> + <width>300</width> + <height>200</height> + </size> + </property> + <property name="maximumSize"> + <size> + <width>16777215</width> + <height>16777215</height> + </size> + </property> + <property name="windowTitle"> + <string>Bytes Modification</string> + </property> + <layout class="QGridLayout" name="gridLayout"> + <item row="2" column="1"> + <widget class="QSpinBox" name="spinBoxSize"> + <property name="minimum"> + <number>1</number> + </property> + <property name="maximum"> + <number>65535</number> + </property> + </widget> + </item> + <item row="2" column="0"> + <widget class="QLabel" name="labelSize"> + <property name="text"> + <string>Size:</string> + </property> + </widget> + </item> + <item row="3" column="1"> + <widget class="QDialogButtonBox" name="buttonOk"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="standardButtons"> + <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> + </property> + </widget> + </item> + <item row="1" column="1"> + <widget class="QSpinBox" name="spinBoxIndex"> + <property name="maximum"> + <number>65535</number> + </property> + </widget> + </item> + <item row="1" column="0"> + <widget class="QLabel" name="labelIndex"> + <property name="text"> + <string>Index:</string> + </property> + </widget> + </item> + <item row="0" column="1"> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <widget class="QRadioButton" name="radioButtonInsert"> + <property name="text"> + <string>Insert</string> + </property> + </widget> + </item> + <item> + <widget class="QRadioButton" name="radioButtonDelete"> + <property name="text"> + <string>Delete</string> + </property> + </widget> + </item> + </layout> + </item> + </layout> + </widget> + <resources/> + <connections> + <connection> + <sender>buttonOk</sender> + <signal>accepted()</signal> + <receiver>ByteWindow</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>buttonOk</sender> + <signal>rejected()</signal> + <receiver>ByteWindow</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> |