Newer
Older
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>BreakpointDialog</class>
<widget class="QDialog" name="BreakpointDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>

hjk
committed
<height>302</height>
</rect>
</property>
<property name="windowTitle">
<string>Edit Breakpoint Properties</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QFormLayout" name="formLayout">
<item row="0" column="0">
<widget class="QLabel" name="labelType">
<property name="text">
<string>Breakpoint type:</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QComboBox" name="comboBoxType"/>
</item>
<item row="1" column="0">
<widget class="QLabel" name="labelFileName">
<property name="text">
<string>File name:</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QLineEdit" name="lineEditFileName"/>
</item>
<item row="2" column="0">
<widget class="QLabel" name="labelLineNumber">
<property name="text">
<string>Line number:</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QLineEdit" name="lineEditLineNumber"/>
</item>

hjk
committed
<item row="3" column="1">
<widget class="QCheckBox" name="checkBoxUseFullPath">
<property name="text">
<string/>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="labelUseFullPath">
<property name="text">
<string>Use full path:</string>
</property>
</widget>
</item>

hjk
committed
<widget class="QLabel" name="labelAddress">

hjk
committed
<string>Address:</string>
</property>
</widget>
</item>
<item row="4" column="1">

hjk
committed
<widget class="QLineEdit" name="lineEditAddress"/>
</item>
<item row="5" column="0">

hjk
committed
<widget class="QLabel" name="labelFunction">

hjk
committed
<string>Function:</string>
</property>
</widget>
</item>
<item row="5" column="1">

hjk
committed
<widget class="QLineEdit" name="lineEditFunction"/>
</item>
<item row="6" column="0">

hjk
committed
<widget class="QLabel" name="labelCondition">

hjk
committed
<string>Condition:</string>
</property>
</widget>
</item>
<item row="6" column="1">

hjk
committed
<widget class="QLineEdit" name="lineEditCondition"/>
</item>
<item row="7" column="0">

hjk
committed
<widget class="QLabel" name="labelIgnoreCount">

hjk
committed
<string>Ignore count:</string>
</property>
</widget>
</item>
<item row="7" column="1">

hjk
committed
<widget class="QLineEdit" name="lineEditIgnoreCount"/>

hjk
committed
<item row="8" column="0">
<widget class="QLabel" name="labelThreadSpec">

hjk
committed
<string>Thread specification:</string>
</property>
</widget>
</item>

hjk
committed
<item row="8" column="1">
<widget class="QLineEdit" name="lineEditThreadSpec"/>
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
</item>
</layout>
</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>
<item>
<widget class="QDialogButtonBox" name="buttonBox">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
</item>
</layout>
</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>