<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>BreakpointDialog</class> <widget class="QDialog" name="BreakpointDialog"> <property name="windowModality"> <enum>Qt::ApplicationModal</enum> </property> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>375</width> <height>250</height> </rect> </property> <property name="sizePolicy"> <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="minimumSize"> <size> <width>375</width> <height>250</height> </size> </property> <property name="maximumSize"> <size> <width>375</width> <height>250</height> </size> </property> <property name="baseSize"> <size> <width>375</width> <height>250</height> </size> </property> <property name="windowTitle"> <string>Create / Modify Breakpoint</string> </property> <widget class="QDialogButtonBox" name="buttonBox"> <property name="geometry"> <rect> <x>20</x> <y>210</y> <width>341</width> <height>32</height> </rect> </property> <property name="sizePolicy"> <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> </property> </widget> <widget class="QGroupBox" name="grpType"> <property name="enabled"> <bool>false</bool> </property> <property name="geometry"> <rect> <x>10</x> <y>0</y> <width>91</width> <height>81</height> </rect> </property> <property name="title"> <string>Type</string> </property> <layout class="QFormLayout" name="formLayout_2"> <item row="1" column="0"> <widget class="QRadioButton" name="rdoExecute"> <property name="text"> <string>Execute</string> </property> </widget> </item> <item row="0" column="0"> <widget class="QRadioButton" name="rdoMemory"> <property name="text"> <string>Memory</string> </property> <property name="checked"> <bool>true</bool> </property> </widget> </item> </layout> </widget> <widget class="QGroupBox" name="groupBox_2"> <property name="geometry"> <rect> <x>110</x> <y>10</y> <width>251</width> <height>41</height> </rect> </property> <property name="title"> <string/> </property> <layout class="QFormLayout" name="formLayout"> <item row="0" column="0"> <widget class="QLabel" name="label"> <property name="text"> <string>Address</string> </property> </widget> </item> <item row="0" column="1"> <widget class="QLineEdit" name="txtAddress"> <property name="enabled"> <bool>false</bool> </property> <property name="minimumSize"> <size> <width>0</width> <height>19</height> </size> </property> <property name="maximumSize"> <size> <width>16777215</width> <height>19</height> </size> </property> <property name="text"> <string>0</string> </property> </widget> </item> </layout> </widget> <widget class="QGroupBox" name="grpMemory"> <property name="enabled"> <bool>true</bool> </property> <property name="geometry"> <rect> <x>110</x> <y>50</y> <width>251</width> <height>91</height> </rect> </property> <property name="title"> <string>Memory</string> </property> <layout class="QVBoxLayout" name="verticalLayout_2"> <item> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QCheckBox" name="chkRead"> <property name="text"> <string>Read</string> </property> <property name="checked"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QCheckBox" name="chkWrite"> <property name="text"> <string>Write</string> </property> <property name="checked"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QCheckBox" name="chkChange"> <property name="text"> <string>Change</string> </property> </widget> </item> </layout> </item> <item> <layout class="QFormLayout" name="formLayout_4"> <item row="0" column="0"> <widget class="QLabel" name="label_2"> <property name="text"> <string>Size</string> </property> </widget> </item> <item row="0" column="1"> <widget class="QLineEdit" name="txtSize"> <property name="minimumSize"> <size> <width>0</width> <height>19</height> </size> </property> <property name="maximumSize"> <size> <width>16777215</width> <height>19</height> </size> </property> <property name="text"> <string>1</string> </property> </widget> </item> </layout> </item> </layout> </widget> <widget class="QGroupBox" name="grpExecute"> <property name="enabled"> <bool>false</bool> </property> <property name="geometry"> <rect> <x>110</x> <y>140</y> <width>251</width> <height>61</height> </rect> </property> <property name="title"> <string>Execute</string> </property> <layout class="QFormLayout" name="formLayout_3"> <item row="0" column="0"> <widget class="QLabel" name="label_3"> <property name="text"> <string>Condition</string> </property> </widget> </item> <item row="0" column="1"> <widget class="QLineEdit" name="txtCondition"/> </item> </layout> </widget> <widget class="QGroupBox" name="groupBox_5"> <property name="geometry"> <rect> <x>10</x> <y>90</y> <width>91</width> <height>71</height> </rect> </property> <property name="title"> <string/> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QCheckBox" name="chkLog"> <property name="enabled"> <bool>true</bool> </property> <property name="text"> <string>Log</string> </property> <property name="checked"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QCheckBox" name="chkEnable"> <property name="text"> <string>Enable</string> </property> <property name="checked"> <bool>true</bool> </property> </widget> </item> </layout> </widget> </widget> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>BreakpointDialog</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>BreakpointDialog</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>