all repos — mgba @ 63d475c350c413cac1b7098242f4761522cd3857

mGBA Game Boy Advance Emulator

src/platform/qt/MemorySearch.ui (view raw)

  1<?xml version="1.0" encoding="UTF-8"?>
  2<ui version="4.0">
  3 <class>MemorySearch</class>
  4 <widget class="QWidget" name="MemorySearch">
  5  <property name="geometry">
  6   <rect>
  7    <x>0</x>
  8    <y>0</y>
  9    <width>631</width>
 10    <height>378</height>
 11   </rect>
 12  </property>
 13  <property name="minimumSize">
 14   <size>
 15    <width>540</width>
 16    <height>241</height>
 17   </size>
 18  </property>
 19  <property name="windowTitle">
 20   <string>Memory Search</string>
 21  </property>
 22  <layout class="QGridLayout" name="gridLayout">
 23   <item row="0" column="1">
 24    <widget class="QTableWidget" name="results">
 25     <property name="sizePolicy">
 26      <sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
 27       <horstretch>1</horstretch>
 28       <verstretch>0</verstretch>
 29      </sizepolicy>
 30     </property>
 31     <property name="editTriggers">
 32      <set>QAbstractItemView::NoEditTriggers</set>
 33     </property>
 34     <property name="selectionBehavior">
 35      <enum>QAbstractItemView::SelectRows</enum>
 36     </property>
 37     <property name="showGrid">
 38      <bool>false</bool>
 39     </property>
 40     <attribute name="verticalHeaderVisible">
 41      <bool>false</bool>
 42     </attribute>
 43     <column>
 44      <property name="text">
 45       <string>Address</string>
 46      </property>
 47     </column>
 48     <column>
 49      <property name="text">
 50       <string>Current Value</string>
 51      </property>
 52     </column>
 53     <column>
 54      <property name="text">
 55       <string>Type</string>
 56      </property>
 57     </column>
 58    </widget>
 59   </item>
 60   <item row="0" column="0">
 61    <layout class="QFormLayout" name="formLayout">
 62     <item row="0" column="0">
 63      <widget class="QLabel" name="label">
 64       <property name="text">
 65        <string>Value</string>
 66       </property>
 67      </widget>
 68     </item>
 69     <item row="0" column="1">
 70      <widget class="QLineEdit" name="value"/>
 71     </item>
 72     <item row="1" column="0">
 73      <widget class="QLabel" name="label_2">
 74       <property name="text">
 75        <string>Type</string>
 76       </property>
 77      </widget>
 78     </item>
 79     <item row="1" column="1">
 80      <widget class="QRadioButton" name="typeNum">
 81       <property name="text">
 82        <string>Numeric</string>
 83       </property>
 84       <property name="checked">
 85        <bool>true</bool>
 86       </property>
 87       <attribute name="buttonGroup">
 88        <string notr="true">type</string>
 89       </attribute>
 90      </widget>
 91     </item>
 92     <item row="2" column="1">
 93      <widget class="QRadioButton" name="typeStr">
 94       <property name="text">
 95        <string>Text</string>
 96       </property>
 97       <attribute name="buttonGroup">
 98        <string notr="true">type</string>
 99       </attribute>
100      </widget>
101     </item>
102     <item row="3" column="0">
103      <widget class="QLabel" name="label_3">
104       <property name="text">
105        <string>Width</string>
106       </property>
107      </widget>
108     </item>
109     <item row="3" column="1">
110      <widget class="QRadioButton" name="bits8">
111       <property name="text">
112        <string>1 Byte (8-bit)</string>
113       </property>
114       <attribute name="buttonGroup">
115        <string notr="true">width</string>
116       </attribute>
117      </widget>
118     </item>
119     <item row="4" column="1">
120      <widget class="QRadioButton" name="bits16">
121       <property name="text">
122        <string>2 Bytes (16-bit)</string>
123       </property>
124       <attribute name="buttonGroup">
125        <string notr="true">width</string>
126       </attribute>
127      </widget>
128     </item>
129     <item row="5" column="1">
130      <widget class="QRadioButton" name="bits32">
131       <property name="text">
132        <string>4 Bytes (32-bit)</string>
133       </property>
134       <property name="checked">
135        <bool>true</bool>
136       </property>
137       <attribute name="buttonGroup">
138        <string notr="true">width</string>
139       </attribute>
140      </widget>
141     </item>
142     <item row="6" column="0">
143      <widget class="QLabel" name="label_4">
144       <property name="text">
145        <string>Number type</string>
146       </property>
147      </widget>
148     </item>
149     <item row="6" column="1">
150      <widget class="QRadioButton" name="numHex">
151       <property name="text">
152        <string>Hexadecimal</string>
153       </property>
154       <property name="checked">
155        <bool>true</bool>
156       </property>
157      </widget>
158     </item>
159     <item row="7" column="1">
160      <widget class="QRadioButton" name="numDec">
161       <property name="text">
162        <string>Decimal</string>
163       </property>
164      </widget>
165     </item>
166     <item row="8" column="1">
167      <widget class="QRadioButton" name="numGuess">
168       <property name="text">
169        <string>Guess</string>
170       </property>
171      </widget>
172     </item>
173    </layout>
174   </item>
175   <item row="2" column="0" colspan="2">
176    <widget class="QDialogButtonBox" name="buttonBox">
177     <property name="standardButtons">
178      <set>QDialogButtonBox::Close</set>
179     </property>
180    </widget>
181   </item>
182   <item row="1" column="0" colspan="2">
183    <layout class="QHBoxLayout" name="horizontalLayout_2">
184     <item>
185      <widget class="QPushButton" name="search">
186       <property name="text">
187        <string>Search</string>
188       </property>
189      </widget>
190     </item>
191     <item>
192      <widget class="QPushButton" name="searchWithin">
193       <property name="text">
194        <string>Search Within</string>
195       </property>
196      </widget>
197     </item>
198     <item>
199      <widget class="QPushButton" name="viewMem">
200       <property name="text">
201        <string>Open in Memory Viewer</string>
202       </property>
203      </widget>
204     </item>
205     <item>
206      <widget class="QPushButton" name="refresh">
207       <property name="text">
208        <string>Refresh</string>
209       </property>
210      </widget>
211     </item>
212    </layout>
213   </item>
214  </layout>
215 </widget>
216 <resources/>
217 <connections>
218  <connection>
219   <sender>buttonBox</sender>
220   <signal>rejected()</signal>
221   <receiver>MemorySearch</receiver>
222   <slot>close()</slot>
223   <hints>
224    <hint type="sourcelabel">
225     <x>315</x>
226     <y>357</y>
227    </hint>
228    <hint type="destinationlabel">
229     <x>315</x>
230     <y>188</y>
231    </hint>
232   </hints>
233  </connection>
234 </connections>
235 <buttongroups>
236  <buttongroup name="width"/>
237  <buttongroup name="type"/>
238 </buttongroups>
239</ui>