SymbolManager.ui 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635
  1. <ui version="4.0" >
  2. <class>SymbolManager</class>
  3. <widget class="QDialog" name="SymbolManager" >
  4. <property name="geometry" >
  5. <rect>
  6. <x>0</x>
  7. <y>0</y>
  8. <width>760</width>
  9. <height>577</height>
  10. </rect>
  11. </property>
  12. <property name="windowTitle" >
  13. <string>Symbol Manager</string>
  14. </property>
  15. <property name="sizeGripEnabled" >
  16. <bool>false</bool>
  17. </property>
  18. <property name="modal" >
  19. <bool>true</bool>
  20. </property>
  21. <layout class="QVBoxLayout" >
  22. <item>
  23. <widget class="QTabWidget" name="tabWidget" >
  24. <property name="currentIndex" >
  25. <number>0</number>
  26. </property>
  27. <widget class="QWidget" name="tabSymFiles" >
  28. <attribute name="title" >
  29. <string>Symbol files</string>
  30. </attribute>
  31. <layout class="QGridLayout" >
  32. <item row="0" column="0" colspan="2" >
  33. <widget class="QLabel" name="label" >
  34. <property name="text" >
  35. <string>Loaded symbol files:</string>
  36. </property>
  37. </widget>
  38. </item>
  39. <item row="1" column="0" >
  40. <widget class="QTreeWidget" name="treeFiles" >
  41. <property name="selectionMode" >
  42. <enum>QAbstractItemView::ExtendedSelection</enum>
  43. </property>
  44. <property name="rootIsDecorated" >
  45. <bool>false</bool>
  46. </property>
  47. <property name="itemsExpandable" >
  48. <bool>false</bool>
  49. </property>
  50. <property name="sortingEnabled" >
  51. <bool>true</bool>
  52. </property>
  53. <column>
  54. <property name="text" >
  55. <string>File</string>
  56. </property>
  57. </column>
  58. <column>
  59. <property name="text" >
  60. <string>Last refresh</string>
  61. </property>
  62. </column>
  63. </widget>
  64. </item>
  65. <item row="1" column="1" >
  66. <layout class="QVBoxLayout" >
  67. <item>
  68. <widget class="QPushButton" name="btnAddFile" >
  69. <property name="text" >
  70. <string>Add</string>
  71. </property>
  72. </widget>
  73. </item>
  74. <item>
  75. <widget class="QPushButton" name="btnRemoveFile" >
  76. <property name="text" >
  77. <string>Remove</string>
  78. </property>
  79. </widget>
  80. </item>
  81. <item>
  82. <spacer>
  83. <property name="orientation" >
  84. <enum>Qt::Vertical</enum>
  85. </property>
  86. <property name="sizeHint" >
  87. <size>
  88. <width>20</width>
  89. <height>40</height>
  90. </size>
  91. </property>
  92. </spacer>
  93. </item>
  94. </layout>
  95. </item>
  96. </layout>
  97. </widget>
  98. <widget class="QWidget" name="tabAddrLabels" >
  99. <attribute name="title" >
  100. <string>Address labels</string>
  101. </attribute>
  102. <layout class="QGridLayout" >
  103. <item row="0" column="0" >
  104. <widget class="QLabel" name="label_2" >
  105. <property name="text" >
  106. <string>Address labels:</string>
  107. </property>
  108. </widget>
  109. </item>
  110. <item row="1" column="1" >
  111. <layout class="QVBoxLayout" >
  112. <item>
  113. <widget class="QPushButton" name="btnAddSymbol" >
  114. <property name="text" >
  115. <string>Add</string>
  116. </property>
  117. </widget>
  118. </item>
  119. <item>
  120. <widget class="QPushButton" name="btnRemoveSymbol" >
  121. <property name="text" >
  122. <string>Remove</string>
  123. </property>
  124. </widget>
  125. </item>
  126. <item>
  127. <spacer>
  128. <property name="orientation" >
  129. <enum>Qt::Vertical</enum>
  130. </property>
  131. <property name="sizeHint" >
  132. <size>
  133. <width>20</width>
  134. <height>40</height>
  135. </size>
  136. </property>
  137. </spacer>
  138. </item>
  139. </layout>
  140. </item>
  141. <item row="1" column="0" >
  142. <widget class="QTreeWidget" name="treeLabels" >
  143. <property name="selectionMode" >
  144. <enum>QAbstractItemView::ExtendedSelection</enum>
  145. </property>
  146. <property name="rootIsDecorated" >
  147. <bool>false</bool>
  148. </property>
  149. <property name="uniformRowHeights" >
  150. <bool>true</bool>
  151. </property>
  152. <property name="itemsExpandable" >
  153. <bool>false</bool>
  154. </property>
  155. <property name="sortingEnabled" >
  156. <bool>true</bool>
  157. </property>
  158. <property name="allColumnsShowFocus" >
  159. <bool>true</bool>
  160. </property>
  161. <column>
  162. <property name="text" >
  163. <string>Symbol</string>
  164. </property>
  165. </column>
  166. <column>
  167. <property name="text" >
  168. <string>Type</string>
  169. </property>
  170. </column>
  171. <column>
  172. <property name="text" >
  173. <string>Value</string>
  174. </property>
  175. </column>
  176. <column>
  177. <property name="text" >
  178. <string>Slots</string>
  179. </property>
  180. </column>
  181. <column>
  182. <property name="text" >
  183. <string>Segments</string>
  184. </property>
  185. </column>
  186. <column>
  187. <property name="text" >
  188. <string>Registers</string>
  189. </property>
  190. </column>
  191. <column>
  192. <property name="text" >
  193. <string>Source</string>
  194. </property>
  195. </column>
  196. </widget>
  197. </item>
  198. <item row="2" column="0" >
  199. <widget class="QTabWidget" name="tabWidgetSymbols" >
  200. <property name="sizePolicy" >
  201. <sizepolicy vsizetype="Preferred" hsizetype="Expanding" >
  202. <horstretch>0</horstretch>
  203. <verstretch>0</verstretch>
  204. </sizepolicy>
  205. </property>
  206. <property name="currentIndex" >
  207. <number>0</number>
  208. </property>
  209. <widget class="QWidget" name="tabLocations" >
  210. <attribute name="title" >
  211. <string>Locations</string>
  212. </attribute>
  213. <layout class="QHBoxLayout" >
  214. <item>
  215. <widget class="QGroupBox" name="groupSlots" >
  216. <property name="sizePolicy" >
  217. <sizepolicy vsizetype="Fixed" hsizetype="Fixed" >
  218. <horstretch>0</horstretch>
  219. <verstretch>0</verstretch>
  220. </sizepolicy>
  221. </property>
  222. <property name="title" >
  223. <string>Active slots</string>
  224. </property>
  225. <layout class="QHBoxLayout" >
  226. <item>
  227. <layout class="QVBoxLayout" >
  228. <item>
  229. <widget class="QCheckBox" name="chk00" >
  230. <property name="text" >
  231. <string>0-0</string>
  232. </property>
  233. </widget>
  234. </item>
  235. <item>
  236. <widget class="QCheckBox" name="chk01" >
  237. <property name="text" >
  238. <string>0-1</string>
  239. </property>
  240. </widget>
  241. </item>
  242. <item>
  243. <widget class="QCheckBox" name="chk02" >
  244. <property name="text" >
  245. <string>0-2</string>
  246. </property>
  247. </widget>
  248. </item>
  249. <item>
  250. <widget class="QCheckBox" name="chk03" >
  251. <property name="text" >
  252. <string>0-3</string>
  253. </property>
  254. </widget>
  255. </item>
  256. </layout>
  257. </item>
  258. <item>
  259. <layout class="QVBoxLayout" >
  260. <item>
  261. <widget class="QCheckBox" name="chk10" >
  262. <property name="text" >
  263. <string>1-0</string>
  264. </property>
  265. </widget>
  266. </item>
  267. <item>
  268. <widget class="QCheckBox" name="chk11" >
  269. <property name="text" >
  270. <string>1-1</string>
  271. </property>
  272. </widget>
  273. </item>
  274. <item>
  275. <widget class="QCheckBox" name="chk12" >
  276. <property name="text" >
  277. <string>1-2</string>
  278. </property>
  279. </widget>
  280. </item>
  281. <item>
  282. <widget class="QCheckBox" name="chk13" >
  283. <property name="text" >
  284. <string>1-3</string>
  285. </property>
  286. </widget>
  287. </item>
  288. </layout>
  289. </item>
  290. <item>
  291. <layout class="QVBoxLayout" >
  292. <item>
  293. <widget class="QCheckBox" name="chk20" >
  294. <property name="text" >
  295. <string>2-0</string>
  296. </property>
  297. </widget>
  298. </item>
  299. <item>
  300. <widget class="QCheckBox" name="chk21" >
  301. <property name="text" >
  302. <string>2-1</string>
  303. </property>
  304. </widget>
  305. </item>
  306. <item>
  307. <widget class="QCheckBox" name="chk22" >
  308. <property name="text" >
  309. <string>2-2</string>
  310. </property>
  311. </widget>
  312. </item>
  313. <item>
  314. <widget class="QCheckBox" name="chk23" >
  315. <property name="text" >
  316. <string>2-3</string>
  317. </property>
  318. </widget>
  319. </item>
  320. </layout>
  321. </item>
  322. <item>
  323. <layout class="QVBoxLayout" >
  324. <item>
  325. <widget class="QCheckBox" name="chk30" >
  326. <property name="text" >
  327. <string>3-0</string>
  328. </property>
  329. </widget>
  330. </item>
  331. <item>
  332. <widget class="QCheckBox" name="chk31" >
  333. <property name="text" >
  334. <string>3-1</string>
  335. </property>
  336. </widget>
  337. </item>
  338. <item>
  339. <widget class="QCheckBox" name="chk32" >
  340. <property name="text" >
  341. <string>3-2</string>
  342. </property>
  343. </widget>
  344. </item>
  345. <item>
  346. <widget class="QCheckBox" name="chk33" >
  347. <property name="text" >
  348. <string>3-3</string>
  349. </property>
  350. </widget>
  351. </item>
  352. </layout>
  353. </item>
  354. </layout>
  355. </widget>
  356. </item>
  357. <item>
  358. <widget class="QGroupBox" name="groupSegments" >
  359. <property name="sizePolicy" >
  360. <sizepolicy vsizetype="Preferred" hsizetype="Preferred" >
  361. <horstretch>0</horstretch>
  362. <verstretch>0</verstretch>
  363. </sizepolicy>
  364. </property>
  365. <property name="title" >
  366. <string>Active segments</string>
  367. </property>
  368. <layout class="QVBoxLayout" >
  369. <item>
  370. <widget class="QLineEdit" name="txtSegments" >
  371. <property name="sizePolicy" >
  372. <sizepolicy vsizetype="Minimum" hsizetype="Preferred" >
  373. <horstretch>0</horstretch>
  374. <verstretch>0</verstretch>
  375. </sizepolicy>
  376. </property>
  377. </widget>
  378. </item>
  379. </layout>
  380. </widget>
  381. </item>
  382. </layout>
  383. </widget>
  384. <widget class="QWidget" name="tabUsage" >
  385. <attribute name="title" >
  386. <string>Usage</string>
  387. </attribute>
  388. <layout class="QHBoxLayout" >
  389. <item>
  390. <widget class="QGroupBox" name="groupType" >
  391. <property name="title" >
  392. <string>Symbol type</string>
  393. </property>
  394. <layout class="QVBoxLayout" >
  395. <item>
  396. <widget class="QRadioButton" name="radJump" >
  397. <property name="text" >
  398. <string>Jump label</string>
  399. </property>
  400. </widget>
  401. </item>
  402. <item>
  403. <widget class="QRadioButton" name="radVar" >
  404. <property name="text" >
  405. <string>Variable label</string>
  406. </property>
  407. </widget>
  408. </item>
  409. <item>
  410. <widget class="QRadioButton" name="radValue" >
  411. <property name="text" >
  412. <string>Value</string>
  413. </property>
  414. </widget>
  415. </item>
  416. </layout>
  417. </widget>
  418. </item>
  419. <item>
  420. <widget class="QGroupBox" name="groupRegs8" >
  421. <property name="title" >
  422. <string>8 bit registers</string>
  423. </property>
  424. <layout class="QHBoxLayout" >
  425. <item>
  426. <layout class="QGridLayout" >
  427. <property name="horizontalSpacing" >
  428. <number>16</number>
  429. </property>
  430. <item row="0" column="0" >
  431. <widget class="QCheckBox" name="chkRegA" >
  432. <property name="text" >
  433. <string>A</string>
  434. </property>
  435. </widget>
  436. </item>
  437. <item row="0" column="1" >
  438. <widget class="QCheckBox" name="chkRegI" >
  439. <property name="text" >
  440. <string>I</string>
  441. </property>
  442. </widget>
  443. </item>
  444. <item row="0" column="2" colspan="2" >
  445. <widget class="QCheckBox" name="chkRegOffset" >
  446. <property name="text" >
  447. <string>Offset value</string>
  448. </property>
  449. </widget>
  450. </item>
  451. <item row="1" column="0" >
  452. <widget class="QCheckBox" name="chkRegB" >
  453. <property name="text" >
  454. <string>B</string>
  455. </property>
  456. </widget>
  457. </item>
  458. <item row="1" column="1" >
  459. <widget class="QCheckBox" name="chkRegC" >
  460. <property name="text" >
  461. <string>C</string>
  462. </property>
  463. </widget>
  464. </item>
  465. <item row="2" column="0" >
  466. <widget class="QCheckBox" name="chkRegD" >
  467. <property name="text" >
  468. <string>D</string>
  469. </property>
  470. </widget>
  471. </item>
  472. <item row="2" column="1" >
  473. <widget class="QCheckBox" name="chkRegE" >
  474. <property name="text" >
  475. <string>E</string>
  476. </property>
  477. </widget>
  478. </item>
  479. <item row="2" column="2" >
  480. <widget class="QCheckBox" name="chkRegIXH" >
  481. <property name="text" >
  482. <string>IXH</string>
  483. </property>
  484. </widget>
  485. </item>
  486. <item row="2" column="3" >
  487. <widget class="QCheckBox" name="chkRegIXL" >
  488. <property name="text" >
  489. <string>IXL</string>
  490. </property>
  491. </widget>
  492. </item>
  493. <item row="3" column="0" >
  494. <widget class="QCheckBox" name="chkRegH" >
  495. <property name="text" >
  496. <string>H</string>
  497. </property>
  498. </widget>
  499. </item>
  500. <item row="3" column="1" >
  501. <widget class="QCheckBox" name="chkRegL" >
  502. <property name="text" >
  503. <string>L</string>
  504. </property>
  505. </widget>
  506. </item>
  507. <item row="3" column="2" >
  508. <widget class="QCheckBox" name="chkRegIYH" >
  509. <property name="text" >
  510. <string>IYH</string>
  511. </property>
  512. </widget>
  513. </item>
  514. <item row="3" column="3" >
  515. <widget class="QCheckBox" name="chkRegIYL" >
  516. <property name="text" >
  517. <string>IYL</string>
  518. </property>
  519. </widget>
  520. </item>
  521. </layout>
  522. </item>
  523. </layout>
  524. </widget>
  525. </item>
  526. <item>
  527. <widget class="QGroupBox" name="groupRegs16" >
  528. <property name="title" >
  529. <string>16 bit registers</string>
  530. </property>
  531. <layout class="QHBoxLayout" >
  532. <item>
  533. <layout class="QGridLayout" >
  534. <item row="0" column="0" >
  535. <widget class="QCheckBox" name="chkRegBC" >
  536. <property name="text" >
  537. <string>BC</string>
  538. </property>
  539. </widget>
  540. </item>
  541. <item row="1" column="0" >
  542. <widget class="QCheckBox" name="chkRegDE" >
  543. <property name="text" >
  544. <string>DE</string>
  545. </property>
  546. </widget>
  547. </item>
  548. <item row="2" column="0" >
  549. <widget class="QCheckBox" name="chkRegHL" >
  550. <property name="text" >
  551. <string>HL</string>
  552. </property>
  553. </widget>
  554. </item>
  555. <item row="3" column="0" >
  556. <widget class="QCheckBox" name="chkRegIX" >
  557. <property name="text" >
  558. <string>IX</string>
  559. </property>
  560. </widget>
  561. </item>
  562. <item row="3" column="1" >
  563. <widget class="QCheckBox" name="chkRegIY" >
  564. <property name="text" >
  565. <string>IY</string>
  566. </property>
  567. </widget>
  568. </item>
  569. </layout>
  570. </item>
  571. </layout>
  572. </widget>
  573. </item>
  574. </layout>
  575. </widget>
  576. </widget>
  577. </item>
  578. </layout>
  579. </widget>
  580. </widget>
  581. </item>
  582. <item>
  583. <layout class="QHBoxLayout" >
  584. <item>
  585. <spacer>
  586. <property name="orientation" >
  587. <enum>Qt::Horizontal</enum>
  588. </property>
  589. <property name="sizeHint" >
  590. <size>
  591. <width>40</width>
  592. <height>20</height>
  593. </size>
  594. </property>
  595. </spacer>
  596. </item>
  597. <item>
  598. <widget class="QPushButton" name="btnReloadFiles" >
  599. <property name="text" >
  600. <string>Reload all</string>
  601. </property>
  602. </widget>
  603. </item>
  604. <item>
  605. <widget class="QPushButton" name="btnClose" >
  606. <property name="text" >
  607. <string>Close</string>
  608. </property>
  609. </widget>
  610. </item>
  611. </layout>
  612. </item>
  613. </layout>
  614. </widget>
  615. <resources/>
  616. <connections>
  617. <connection>
  618. <sender>btnClose</sender>
  619. <signal>clicked()</signal>
  620. <receiver>SymbolManager</receiver>
  621. <slot>close()</slot>
  622. <hints>
  623. <hint type="sourcelabel" >
  624. <x>571</x>
  625. <y>420</y>
  626. </hint>
  627. <hint type="destinationlabel" >
  628. <x>233</x>
  629. <y>29</y>
  630. </hint>
  631. </hints>
  632. </connection>
  633. </connections>
  634. </ui>