ui.ui 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>MainWindow</class>
  4. <widget class="QMainWindow" name="MainWindow">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>483</width>
  10. <height>688</height>
  11. </rect>
  12. </property>
  13. <property name="sizePolicy">
  14. <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
  15. <horstretch>0</horstretch>
  16. <verstretch>0</verstretch>
  17. </sizepolicy>
  18. </property>
  19. <property name="windowTitle">
  20. <string>Cube Control</string>
  21. </property>
  22. <widget class="QWidget" name="centralwidget">
  23. <layout class="QGridLayout" name="gridLayout_3">
  24. <item row="1" column="0">
  25. <layout class="QGridLayout" name="gridLayout_2">
  26. <property name="spacing">
  27. <number>20</number>
  28. </property>
  29. <item row="2" column="1">
  30. <widget class="QSpinBox" name="spinBox_2">
  31. <property name="sizePolicy">
  32. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  33. <horstretch>0</horstretch>
  34. <verstretch>0</verstretch>
  35. </sizepolicy>
  36. </property>
  37. <property name="maximumSize">
  38. <size>
  39. <width>16777215</width>
  40. <height>75</height>
  41. </size>
  42. </property>
  43. <property name="alignment">
  44. <set>Qt::AlignCenter</set>
  45. </property>
  46. <property name="prefix">
  47. <string>Start: </string>
  48. </property>
  49. <property name="maximum">
  50. <number>65535</number>
  51. </property>
  52. </widget>
  53. </item>
  54. <item row="0" column="3">
  55. <widget class="QPushButton" name="pushButton_4">
  56. <property name="sizePolicy">
  57. <sizepolicy hsizetype="Minimum" vsizetype="Expanding">
  58. <horstretch>0</horstretch>
  59. <verstretch>0</verstretch>
  60. </sizepolicy>
  61. </property>
  62. <property name="maximumSize">
  63. <size>
  64. <width>204</width>
  65. <height>16777215</height>
  66. </size>
  67. </property>
  68. <property name="text">
  69. <string>Stop</string>
  70. </property>
  71. </widget>
  72. </item>
  73. <item row="0" column="1">
  74. <widget class="QPushButton" name="pushButton_2">
  75. <property name="sizePolicy">
  76. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  77. <horstretch>0</horstretch>
  78. <verstretch>0</verstretch>
  79. </sizepolicy>
  80. </property>
  81. <property name="text">
  82. <string>Play</string>
  83. </property>
  84. </widget>
  85. </item>
  86. <item row="3" column="0">
  87. <widget class="QPushButton" name="pushButton_7">
  88. <property name="sizePolicy">
  89. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  90. <horstretch>0</horstretch>
  91. <verstretch>0</verstretch>
  92. </sizepolicy>
  93. </property>
  94. <property name="text">
  95. <string>Goto Frame</string>
  96. </property>
  97. </widget>
  98. </item>
  99. <item row="3" column="3">
  100. <widget class="QPushButton" name="pushButton">
  101. <property name="sizePolicy">
  102. <sizepolicy hsizetype="Minimum" vsizetype="Expanding">
  103. <horstretch>0</horstretch>
  104. <verstretch>0</verstretch>
  105. </sizepolicy>
  106. </property>
  107. <property name="text">
  108. <string>Connect</string>
  109. </property>
  110. </widget>
  111. </item>
  112. <item row="0" column="2">
  113. <widget class="QPushButton" name="pushButton_3">
  114. <property name="sizePolicy">
  115. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  116. <horstretch>0</horstretch>
  117. <verstretch>0</verstretch>
  118. </sizepolicy>
  119. </property>
  120. <property name="maximumSize">
  121. <size>
  122. <width>203</width>
  123. <height>16777215</height>
  124. </size>
  125. </property>
  126. <property name="text">
  127. <string>Pause</string>
  128. </property>
  129. </widget>
  130. </item>
  131. <item row="1" column="0">
  132. <widget class="QLabel" name="label_7">
  133. <property name="layoutDirection">
  134. <enum>Qt::LeftToRight</enum>
  135. </property>
  136. <property name="text">
  137. <string>Value: 0</string>
  138. </property>
  139. <property name="alignment">
  140. <set>Qt::AlignCenter</set>
  141. </property>
  142. </widget>
  143. </item>
  144. <item row="1" column="3">
  145. <widget class="QPushButton" name="pushButton_6">
  146. <property name="sizePolicy">
  147. <sizepolicy hsizetype="Minimum" vsizetype="Expanding">
  148. <horstretch>0</horstretch>
  149. <verstretch>0</verstretch>
  150. </sizepolicy>
  151. </property>
  152. <property name="text">
  153. <string>Clear Frame</string>
  154. </property>
  155. </widget>
  156. </item>
  157. <item row="3" column="1">
  158. <widget class="QSpinBox" name="spinBox">
  159. <property name="sizePolicy">
  160. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  161. <horstretch>0</horstretch>
  162. <verstretch>0</verstretch>
  163. </sizepolicy>
  164. </property>
  165. <property name="maximumSize">
  166. <size>
  167. <width>16777215</width>
  168. <height>75</height>
  169. </size>
  170. </property>
  171. <property name="alignment">
  172. <set>Qt::AlignCenter</set>
  173. </property>
  174. <property name="prefix">
  175. <string>Frame: </string>
  176. </property>
  177. <property name="maximum">
  178. <number>65535</number>
  179. </property>
  180. </widget>
  181. </item>
  182. <item row="0" column="0">
  183. <widget class="QPushButton" name="pushButton_5">
  184. <property name="sizePolicy">
  185. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  186. <horstretch>0</horstretch>
  187. <verstretch>0</verstretch>
  188. </sizepolicy>
  189. </property>
  190. <property name="maximumSize">
  191. <size>
  192. <width>204</width>
  193. <height>16777215</height>
  194. </size>
  195. </property>
  196. <property name="text">
  197. <string>Save Frame</string>
  198. </property>
  199. </widget>
  200. </item>
  201. <item row="1" column="1" colspan="2">
  202. <widget class="QSlider" name="horizontalSlider">
  203. <property name="sizePolicy">
  204. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  205. <horstretch>0</horstretch>
  206. <verstretch>0</verstretch>
  207. </sizepolicy>
  208. </property>
  209. <property name="maximumSize">
  210. <size>
  211. <width>16777215</width>
  212. <height>42</height>
  213. </size>
  214. </property>
  215. <property name="maximum">
  216. <number>15</number>
  217. </property>
  218. <property name="pageStep">
  219. <number>5</number>
  220. </property>
  221. <property name="orientation">
  222. <enum>Qt::Horizontal</enum>
  223. </property>
  224. </widget>
  225. </item>
  226. <item row="3" column="2">
  227. <widget class="QLineEdit" name="lineEdit">
  228. <property name="sizePolicy">
  229. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  230. <horstretch>0</horstretch>
  231. <verstretch>0</verstretch>
  232. </sizepolicy>
  233. </property>
  234. <property name="maximumSize">
  235. <size>
  236. <width>16777215</width>
  237. <height>68</height>
  238. </size>
  239. </property>
  240. <property name="text">
  241. <string>COM6</string>
  242. </property>
  243. <property name="alignment">
  244. <set>Qt::AlignCenter</set>
  245. </property>
  246. </widget>
  247. </item>
  248. <item row="2" column="3">
  249. <widget class="QPushButton" name="pushButton_8">
  250. <property name="sizePolicy">
  251. <sizepolicy hsizetype="Minimum" vsizetype="Expanding">
  252. <horstretch>0</horstretch>
  253. <verstretch>0</verstretch>
  254. </sizepolicy>
  255. </property>
  256. <property name="text">
  257. <string>Save Animation</string>
  258. </property>
  259. </widget>
  260. </item>
  261. <item row="2" column="0">
  262. <widget class="QComboBox" name="comboBox">
  263. <property name="sizePolicy">
  264. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  265. <horstretch>0</horstretch>
  266. <verstretch>0</verstretch>
  267. </sizepolicy>
  268. </property>
  269. <property name="maximumSize">
  270. <size>
  271. <width>16777215</width>
  272. <height>75</height>
  273. </size>
  274. </property>
  275. <property name="currentText">
  276. <string/>
  277. </property>
  278. <property name="currentIndex">
  279. <number>-1</number>
  280. </property>
  281. <property name="maxCount">
  282. <number>64</number>
  283. </property>
  284. </widget>
  285. </item>
  286. <item row="2" column="2">
  287. <widget class="QSpinBox" name="spinBox_3">
  288. <property name="sizePolicy">
  289. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  290. <horstretch>0</horstretch>
  291. <verstretch>0</verstretch>
  292. </sizepolicy>
  293. </property>
  294. <property name="maximumSize">
  295. <size>
  296. <width>16777215</width>
  297. <height>75</height>
  298. </size>
  299. </property>
  300. <property name="alignment">
  301. <set>Qt::AlignCenter</set>
  302. </property>
  303. <property name="prefix">
  304. <string>Length: </string>
  305. </property>
  306. <property name="maximum">
  307. <number>65535</number>
  308. </property>
  309. </widget>
  310. </item>
  311. </layout>
  312. </item>
  313. <item row="0" column="0">
  314. <widget class="QGroupBox" name="groupBox">
  315. <property name="title">
  316. <string>LED-Cube</string>
  317. </property>
  318. <layout class="QGridLayout" name="gridLayout_4">
  319. <item row="0" column="0">
  320. <widget class="QWidget" name="widget" native="true">
  321. <property name="minimumSize">
  322. <size>
  323. <width>391</width>
  324. <height>351</height>
  325. </size>
  326. </property>
  327. <property name="maximumSize">
  328. <size>
  329. <width>391</width>
  330. <height>351</height>
  331. </size>
  332. </property>
  333. <widget class="QRadioButton" name="radioButton_9">
  334. <property name="enabled">
  335. <bool>true</bool>
  336. </property>
  337. <property name="geometry">
  338. <rect>
  339. <x>210</x>
  340. <y>230</y>
  341. <width>16</width>
  342. <height>20</height>
  343. </rect>
  344. </property>
  345. <property name="autoFillBackground">
  346. <bool>false</bool>
  347. </property>
  348. <property name="text">
  349. <string>20</string>
  350. </property>
  351. <property name="checked">
  352. <bool>false</bool>
  353. </property>
  354. </widget>
  355. <widget class="Line" name="line">
  356. <property name="geometry">
  357. <rect>
  358. <x>20</x>
  359. <y>334</y>
  360. <width>291</width>
  361. <height>16</height>
  362. </rect>
  363. </property>
  364. <property name="orientation">
  365. <enum>Qt::Horizontal</enum>
  366. </property>
  367. </widget>
  368. <widget class="QRadioButton" name="radioButton_28">
  369. <property name="enabled">
  370. <bool>true</bool>
  371. </property>
  372. <property name="geometry">
  373. <rect>
  374. <x>30</x>
  375. <y>220</y>
  376. <width>16</width>
  377. <height>20</height>
  378. </rect>
  379. </property>
  380. <property name="autoFillBackground">
  381. <bool>false</bool>
  382. </property>
  383. <property name="text">
  384. <string>29</string>
  385. </property>
  386. <property name="checked">
  387. <bool>false</bool>
  388. </property>
  389. </widget>
  390. <widget class="QRadioButton" name="radioButton_34">
  391. <property name="enabled">
  392. <bool>true</bool>
  393. </property>
  394. <property name="geometry">
  395. <rect>
  396. <x>250</x>
  397. <y>110</y>
  398. <width>16</width>
  399. <height>20</height>
  400. </rect>
  401. </property>
  402. <property name="autoFillBackground">
  403. <bool>false</bool>
  404. </property>
  405. <property name="text">
  406. <string>38</string>
  407. </property>
  408. <property name="checked">
  409. <bool>false</bool>
  410. </property>
  411. </widget>
  412. <widget class="QRadioButton" name="radioButton_2">
  413. <property name="enabled">
  414. <bool>true</bool>
  415. </property>
  416. <property name="geometry">
  417. <rect>
  418. <x>110</x>
  419. <y>30</y>
  420. <width>16</width>
  421. <height>20</height>
  422. </rect>
  423. </property>
  424. <property name="autoFillBackground">
  425. <bool>false</bool>
  426. </property>
  427. <property name="text">
  428. <string>56</string>
  429. </property>
  430. <property name="checked">
  431. <bool>false</bool>
  432. </property>
  433. </widget>
  434. <widget class="QRadioButton" name="radioButton_52">
  435. <property name="enabled">
  436. <bool>true</bool>
  437. </property>
  438. <property name="geometry">
  439. <rect>
  440. <x>70</x>
  441. <y>100</y>
  442. <width>16</width>
  443. <height>20</height>
  444. </rect>
  445. </property>
  446. <property name="autoFillBackground">
  447. <bool>false</bool>
  448. </property>
  449. <property name="text">
  450. <string>47</string>
  451. </property>
  452. <property name="checked">
  453. <bool>false</bool>
  454. </property>
  455. </widget>
  456. <widget class="QRadioButton" name="radioButton_57">
  457. <property name="enabled">
  458. <bool>true</bool>
  459. </property>
  460. <property name="geometry">
  461. <rect>
  462. <x>170</x>
  463. <y>0</y>
  464. <width>16</width>
  465. <height>20</height>
  466. </rect>
  467. </property>
  468. <property name="autoFillBackground">
  469. <bool>false</bool>
  470. </property>
  471. <property name="text">
  472. <string>59</string>
  473. </property>
  474. <property name="checked">
  475. <bool>false</bool>
  476. </property>
  477. </widget>
  478. <widget class="Line" name="line_5">
  479. <property name="geometry">
  480. <rect>
  481. <x>308</x>
  482. <y>40</y>
  483. <width>20</width>
  484. <height>301</height>
  485. </rect>
  486. </property>
  487. <property name="orientation">
  488. <enum>Qt::Vertical</enum>
  489. </property>
  490. </widget>
  491. <widget class="QRadioButton" name="radioButton_27">
  492. <property name="enabled">
  493. <bool>true</bool>
  494. </property>
  495. <property name="geometry">
  496. <rect>
  497. <x>330</x>
  498. <y>20</y>
  499. <width>16</width>
  500. <height>20</height>
  501. </rect>
  502. </property>
  503. <property name="autoFillBackground">
  504. <bool>false</bool>
  505. </property>
  506. <property name="text">
  507. <string>49</string>
  508. </property>
  509. <property name="checked">
  510. <bool>false</bool>
  511. </property>
  512. </widget>
  513. <widget class="QRadioButton" name="radioButton_47">
  514. <property name="enabled">
  515. <bool>true</bool>
  516. </property>
  517. <property name="geometry">
  518. <rect>
  519. <x>350</x>
  520. <y>110</y>
  521. <width>16</width>
  522. <height>20</height>
  523. </rect>
  524. </property>
  525. <property name="autoFillBackground">
  526. <bool>false</bool>
  527. </property>
  528. <property name="text">
  529. <string>34</string>
  530. </property>
  531. <property name="checked">
  532. <bool>false</bool>
  533. </property>
  534. </widget>
  535. <widget class="QRadioButton" name="radioButton_12">
  536. <property name="enabled">
  537. <bool>true</bool>
  538. </property>
  539. <property name="geometry">
  540. <rect>
  541. <x>310</x>
  542. <y>230</y>
  543. <width>16</width>
  544. <height>20</height>
  545. </rect>
  546. </property>
  547. <property name="autoFillBackground">
  548. <bool>false</bool>
  549. </property>
  550. <property name="text">
  551. <string>16</string>
  552. </property>
  553. <property name="checked">
  554. <bool>false</bool>
  555. </property>
  556. </widget>
  557. <widget class="QRadioButton" name="radioButton_62">
  558. <property name="enabled">
  559. <bool>true</bool>
  560. </property>
  561. <property name="geometry">
  562. <rect>
  563. <x>270</x>
  564. <y>300</y>
  565. <width>16</width>
  566. <height>20</height>
  567. </rect>
  568. </property>
  569. <property name="autoFillBackground">
  570. <bool>false</bool>
  571. </property>
  572. <property name="text">
  573. <string>7</string>
  574. </property>
  575. <property name="checked">
  576. <bool>false</bool>
  577. </property>
  578. </widget>
  579. <widget class="QRadioButton" name="radioButton_64">
  580. <property name="enabled">
  581. <bool>true</bool>
  582. </property>
  583. <property name="geometry">
  584. <rect>
  585. <x>70</x>
  586. <y>300</y>
  587. <width>16</width>
  588. <height>20</height>
  589. </rect>
  590. </property>
  591. <property name="autoFillBackground">
  592. <bool>false</bool>
  593. </property>
  594. <property name="text">
  595. <string>15</string>
  596. </property>
  597. <property name="checked">
  598. <bool>false</bool>
  599. </property>
  600. </widget>
  601. <widget class="QRadioButton" name="radioButton_60">
  602. <property name="enabled">
  603. <bool>true</bool>
  604. </property>
  605. <property name="geometry">
  606. <rect>
  607. <x>70</x>
  608. <y>200</y>
  609. <width>16</width>
  610. <height>20</height>
  611. </rect>
  612. </property>
  613. <property name="autoFillBackground">
  614. <bool>false</bool>
  615. </property>
  616. <property name="text">
  617. <string>31</string>
  618. </property>
  619. <property name="checked">
  620. <bool>false</bool>
  621. </property>
  622. </widget>
  623. <widget class="QRadioButton" name="radioButton_54">
  624. <property name="enabled">
  625. <bool>true</bool>
  626. </property>
  627. <property name="geometry">
  628. <rect>
  629. <x>170</x>
  630. <y>100</y>
  631. <width>16</width>
  632. <height>20</height>
  633. </rect>
  634. </property>
  635. <property name="autoFillBackground">
  636. <bool>false</bool>
  637. </property>
  638. <property name="text">
  639. <string>43</string>
  640. </property>
  641. <property name="checked">
  642. <bool>false</bool>
  643. </property>
  644. </widget>
  645. <widget class="QRadioButton" name="radioButton_38">
  646. <property name="enabled">
  647. <bool>true</bool>
  648. </property>
  649. <property name="geometry">
  650. <rect>
  651. <x>150</x>
  652. <y>110</y>
  653. <width>16</width>
  654. <height>20</height>
  655. </rect>
  656. </property>
  657. <property name="autoFillBackground">
  658. <bool>false</bool>
  659. </property>
  660. <property name="text">
  661. <string>42</string>
  662. </property>
  663. <property name="checked">
  664. <bool>false</bool>
  665. </property>
  666. </widget>
  667. <widget class="QRadioButton" name="radioButton_58">
  668. <property name="enabled">
  669. <bool>true</bool>
  670. </property>
  671. <property name="geometry">
  672. <rect>
  673. <x>170</x>
  674. <y>300</y>
  675. <width>16</width>
  676. <height>20</height>
  677. </rect>
  678. </property>
  679. <property name="autoFillBackground">
  680. <bool>false</bool>
  681. </property>
  682. <property name="text">
  683. <string>11</string>
  684. </property>
  685. <property name="checked">
  686. <bool>false</bool>
  687. </property>
  688. </widget>
  689. <widget class="Line" name="line_9">
  690. <property name="geometry">
  691. <rect>
  692. <x>349</x>
  693. <y>24</y>
  694. <width>20</width>
  695. <height>301</height>
  696. </rect>
  697. </property>
  698. <property name="orientation">
  699. <enum>Qt::Vertical</enum>
  700. </property>
  701. </widget>
  702. <widget class="QRadioButton" name="radioButton_35">
  703. <property name="enabled">
  704. <bool>true</bool>
  705. </property>
  706. <property name="geometry">
  707. <rect>
  708. <x>350</x>
  709. <y>310</y>
  710. <width>16</width>
  711. <height>20</height>
  712. </rect>
  713. </property>
  714. <property name="autoFillBackground">
  715. <bool>false</bool>
  716. </property>
  717. <property name="text">
  718. <string>2</string>
  719. </property>
  720. <property name="checked">
  721. <bool>false</bool>
  722. </property>
  723. </widget>
  724. <widget class="QRadioButton" name="radioButton_4">
  725. <property name="enabled">
  726. <bool>true</bool>
  727. </property>
  728. <property name="geometry">
  729. <rect>
  730. <x>310</x>
  731. <y>30</y>
  732. <width>16</width>
  733. <height>20</height>
  734. </rect>
  735. </property>
  736. <property name="autoFillBackground">
  737. <bool>false</bool>
  738. </property>
  739. <property name="text">
  740. <string>48</string>
  741. </property>
  742. <property name="checked">
  743. <bool>false</bool>
  744. </property>
  745. </widget>
  746. <widget class="QRadioButton" name="radioButton_6">
  747. <property name="enabled">
  748. <bool>true</bool>
  749. </property>
  750. <property name="geometry">
  751. <rect>
  752. <x>10</x>
  753. <y>130</y>
  754. <width>16</width>
  755. <height>20</height>
  756. </rect>
  757. </property>
  758. <property name="autoFillBackground">
  759. <bool>false</bool>
  760. </property>
  761. <property name="text">
  762. <string>44</string>
  763. </property>
  764. <property name="checked">
  765. <bool>false</bool>
  766. </property>
  767. </widget>
  768. <widget class="QRadioButton" name="radioButton_63">
  769. <property name="enabled">
  770. <bool>true</bool>
  771. </property>
  772. <property name="geometry">
  773. <rect>
  774. <x>370</x>
  775. <y>100</y>
  776. <width>16</width>
  777. <height>20</height>
  778. </rect>
  779. </property>
  780. <property name="autoFillBackground">
  781. <bool>false</bool>
  782. </property>
  783. <property name="text">
  784. <string>35</string>
  785. </property>
  786. <property name="checked">
  787. <bool>false</bool>
  788. </property>
  789. </widget>
  790. <widget class="QRadioButton" name="radioButton_56">
  791. <property name="enabled">
  792. <bool>true</bool>
  793. </property>
  794. <property name="geometry">
  795. <rect>
  796. <x>170</x>
  797. <y>200</y>
  798. <width>16</width>
  799. <height>20</height>
  800. </rect>
  801. </property>
  802. <property name="autoFillBackground">
  803. <bool>false</bool>
  804. </property>
  805. <property name="text">
  806. <string>27</string>
  807. </property>
  808. <property name="checked">
  809. <bool>false</bool>
  810. </property>
  811. </widget>
  812. <widget class="QRadioButton" name="radioButton_59">
  813. <property name="enabled">
  814. <bool>true</bool>
  815. </property>
  816. <property name="geometry">
  817. <rect>
  818. <x>370</x>
  819. <y>0</y>
  820. <width>16</width>
  821. <height>20</height>
  822. </rect>
  823. </property>
  824. <property name="autoFillBackground">
  825. <bool>false</bool>
  826. </property>
  827. <property name="text">
  828. <string>51</string>
  829. </property>
  830. <property name="checked">
  831. <bool>false</bool>
  832. </property>
  833. </widget>
  834. <widget class="QRadioButton" name="radioButton_20">
  835. <property name="enabled">
  836. <bool>true</bool>
  837. </property>
  838. <property name="geometry">
  839. <rect>
  840. <x>30</x>
  841. <y>120</y>
  842. <width>16</width>
  843. <height>20</height>
  844. </rect>
  845. </property>
  846. <property name="autoFillBackground">
  847. <bool>false</bool>
  848. </property>
  849. <property name="text">
  850. <string>45</string>
  851. </property>
  852. <property name="checked">
  853. <bool>false</bool>
  854. </property>
  855. </widget>
  856. <widget class="QRadioButton" name="radioButton_36">
  857. <property name="enabled">
  858. <bool>true</bool>
  859. </property>
  860. <property name="geometry">
  861. <rect>
  862. <x>50</x>
  863. <y>110</y>
  864. <width>16</width>
  865. <height>20</height>
  866. </rect>
  867. </property>
  868. <property name="autoFillBackground">
  869. <bool>false</bool>
  870. </property>
  871. <property name="text">
  872. <string>46</string>
  873. </property>
  874. <property name="checked">
  875. <bool>false</bool>
  876. </property>
  877. </widget>
  878. <widget class="QRadioButton" name="radioButton_39">
  879. <property name="enabled">
  880. <bool>true</bool>
  881. </property>
  882. <property name="geometry">
  883. <rect>
  884. <x>50</x>
  885. <y>10</y>
  886. <width>16</width>
  887. <height>20</height>
  888. </rect>
  889. </property>
  890. <property name="autoFillBackground">
  891. <bool>false</bool>
  892. </property>
  893. <property name="text">
  894. <string>62</string>
  895. </property>
  896. <property name="checked">
  897. <bool>false</bool>
  898. </property>
  899. </widget>
  900. <widget class="QRadioButton" name="radioButton_42">
  901. <property name="enabled">
  902. <bool>true</bool>
  903. </property>
  904. <property name="geometry">
  905. <rect>
  906. <x>150</x>
  907. <y>310</y>
  908. <width>16</width>
  909. <height>20</height>
  910. </rect>
  911. </property>
  912. <property name="autoFillBackground">
  913. <bool>false</bool>
  914. </property>
  915. <property name="text">
  916. <string>10</string>
  917. </property>
  918. <property name="checked">
  919. <bool>false</bool>
  920. </property>
  921. </widget>
  922. <widget class="Line" name="line_8">
  923. <property name="geometry">
  924. <rect>
  925. <x>328</x>
  926. <y>33</y>
  927. <width>20</width>
  928. <height>301</height>
  929. </rect>
  930. </property>
  931. <property name="orientation">
  932. <enum>Qt::Vertical</enum>
  933. </property>
  934. </widget>
  935. <widget class="QRadioButton" name="radioButton_49">
  936. <property name="enabled">
  937. <bool>true</bool>
  938. </property>
  939. <property name="geometry">
  940. <rect>
  941. <x>270</x>
  942. <y>200</y>
  943. <width>16</width>
  944. <height>20</height>
  945. </rect>
  946. </property>
  947. <property name="autoFillBackground">
  948. <bool>false</bool>
  949. </property>
  950. <property name="text">
  951. <string>23</string>
  952. </property>
  953. <property name="checked">
  954. <bool>false</bool>
  955. </property>
  956. </widget>
  957. <widget class="QRadioButton" name="radioButton_24">
  958. <property name="enabled">
  959. <bool>true</bool>
  960. </property>
  961. <property name="geometry">
  962. <rect>
  963. <x>130</x>
  964. <y>220</y>
  965. <width>16</width>
  966. <height>20</height>
  967. </rect>
  968. </property>
  969. <property name="autoFillBackground">
  970. <bool>false</bool>
  971. </property>
  972. <property name="text">
  973. <string>25</string>
  974. </property>
  975. <property name="checked">
  976. <bool>false</bool>
  977. </property>
  978. </widget>
  979. <widget class="QRadioButton" name="radioButton_61">
  980. <property name="enabled">
  981. <bool>true</bool>
  982. </property>
  983. <property name="geometry">
  984. <rect>
  985. <x>370</x>
  986. <y>200</y>
  987. <width>16</width>
  988. <height>20</height>
  989. </rect>
  990. </property>
  991. <property name="autoFillBackground">
  992. <bool>false</bool>
  993. </property>
  994. <property name="text">
  995. <string>19</string>
  996. </property>
  997. <property name="checked">
  998. <bool>false</bool>
  999. </property>
  1000. </widget>
  1001. <widget class="QRadioButton" name="radioButton_55">
  1002. <property name="enabled">
  1003. <bool>true</bool>
  1004. </property>
  1005. <property name="geometry">
  1006. <rect>
  1007. <x>70</x>
  1008. <y>0</y>
  1009. <width>16</width>
  1010. <height>20</height>
  1011. </rect>
  1012. </property>
  1013. <property name="autoFillBackground">
  1014. <bool>false</bool>
  1015. </property>
  1016. <property name="text">
  1017. <string>63</string>
  1018. </property>
  1019. <property name="checked">
  1020. <bool>false</bool>
  1021. </property>
  1022. </widget>
  1023. <widget class="QRadioButton" name="radioButton_50">
  1024. <property name="enabled">
  1025. <bool>true</bool>
  1026. </property>
  1027. <property name="geometry">
  1028. <rect>
  1029. <x>270</x>
  1030. <y>100</y>
  1031. <width>16</width>
  1032. <height>20</height>
  1033. </rect>
  1034. </property>
  1035. <property name="autoFillBackground">
  1036. <bool>false</bool>
  1037. </property>
  1038. <property name="text">
  1039. <string>39</string>
  1040. </property>
  1041. <property name="checked">
  1042. <bool>false</bool>
  1043. </property>
  1044. </widget>
  1045. <widget class="Line" name="line_4">
  1046. <property name="geometry">
  1047. <rect>
  1048. <x>8</x>
  1049. <y>40</y>
  1050. <width>20</width>
  1051. <height>301</height>
  1052. </rect>
  1053. </property>
  1054. <property name="orientation">
  1055. <enum>Qt::Vertical</enum>
  1056. </property>
  1057. </widget>
  1058. <widget class="QRadioButton" name="radioButton_23">
  1059. <property name="enabled">
  1060. <bool>true</bool>
  1061. </property>
  1062. <property name="geometry">
  1063. <rect>
  1064. <x>30</x>
  1065. <y>20</y>
  1066. <width>16</width>
  1067. <height>20</height>
  1068. </rect>
  1069. </property>
  1070. <property name="autoFillBackground">
  1071. <bool>false</bool>
  1072. </property>
  1073. <property name="text">
  1074. <string>61</string>
  1075. </property>
  1076. <property name="checked">
  1077. <bool>false</bool>
  1078. </property>
  1079. </widget>
  1080. <widget class="QRadioButton" name="radioButton_8">
  1081. <property name="enabled">
  1082. <bool>true</bool>
  1083. </property>
  1084. <property name="geometry">
  1085. <rect>
  1086. <x>310</x>
  1087. <y>130</y>
  1088. <width>16</width>
  1089. <height>20</height>
  1090. </rect>
  1091. </property>
  1092. <property name="autoFillBackground">
  1093. <bool>false</bool>
  1094. </property>
  1095. <property name="text">
  1096. <string>32</string>
  1097. </property>
  1098. <property name="checked">
  1099. <bool>false</bool>
  1100. </property>
  1101. </widget>
  1102. <widget class="QRadioButton" name="radioButton_22">
  1103. <property name="enabled">
  1104. <bool>true</bool>
  1105. </property>
  1106. <property name="geometry">
  1107. <rect>
  1108. <x>130</x>
  1109. <y>120</y>
  1110. <width>16</width>
  1111. <height>20</height>
  1112. </rect>
  1113. </property>
  1114. <property name="autoFillBackground">
  1115. <bool>false</bool>
  1116. </property>
  1117. <property name="text">
  1118. <string>41</string>
  1119. </property>
  1120. <property name="checked">
  1121. <bool>false</bool>
  1122. </property>
  1123. </widget>
  1124. <widget class="QRadioButton" name="radioButton_25">
  1125. <property name="enabled">
  1126. <bool>true</bool>
  1127. </property>
  1128. <property name="geometry">
  1129. <rect>
  1130. <x>130</x>
  1131. <y>20</y>
  1132. <width>16</width>
  1133. <height>20</height>
  1134. </rect>
  1135. </property>
  1136. <property name="autoFillBackground">
  1137. <bool>false</bool>
  1138. </property>
  1139. <property name="text">
  1140. <string>57</string>
  1141. </property>
  1142. <property name="checked">
  1143. <bool>false</bool>
  1144. </property>
  1145. </widget>
  1146. <widget class="QRadioButton" name="radioButton_16">
  1147. <property name="enabled">
  1148. <bool>true</bool>
  1149. </property>
  1150. <property name="geometry">
  1151. <rect>
  1152. <x>310</x>
  1153. <y>330</y>
  1154. <width>16</width>
  1155. <height>20</height>
  1156. </rect>
  1157. </property>
  1158. <property name="autoFillBackground">
  1159. <bool>false</bool>
  1160. </property>
  1161. <property name="text">
  1162. <string>0</string>
  1163. </property>
  1164. <property name="checked">
  1165. <bool>false</bool>
  1166. </property>
  1167. </widget>
  1168. <widget class="QRadioButton" name="radioButton_37">
  1169. <property name="enabled">
  1170. <bool>true</bool>
  1171. </property>
  1172. <property name="geometry">
  1173. <rect>
  1174. <x>250</x>
  1175. <y>10</y>
  1176. <width>16</width>
  1177. <height>20</height>
  1178. </rect>
  1179. </property>
  1180. <property name="autoFillBackground">
  1181. <bool>false</bool>
  1182. </property>
  1183. <property name="text">
  1184. <string>54</string>
  1185. </property>
  1186. <property name="checked">
  1187. <bool>false</bool>
  1188. </property>
  1189. </widget>
  1190. <widget class="QRadioButton" name="radioButton_13">
  1191. <property name="enabled">
  1192. <bool>true</bool>
  1193. </property>
  1194. <property name="geometry">
  1195. <rect>
  1196. <x>210</x>
  1197. <y>330</y>
  1198. <width>16</width>
  1199. <height>20</height>
  1200. </rect>
  1201. </property>
  1202. <property name="autoFillBackground">
  1203. <bool>false</bool>
  1204. </property>
  1205. <property name="text">
  1206. <string>4</string>
  1207. </property>
  1208. <property name="checked">
  1209. <bool>false</bool>
  1210. </property>
  1211. </widget>
  1212. <widget class="QRadioButton" name="radioButton_11">
  1213. <property name="enabled">
  1214. <bool>true</bool>
  1215. </property>
  1216. <property name="geometry">
  1217. <rect>
  1218. <x>110</x>
  1219. <y>230</y>
  1220. <width>16</width>
  1221. <height>20</height>
  1222. </rect>
  1223. </property>
  1224. <property name="autoFillBackground">
  1225. <bool>false</bool>
  1226. </property>
  1227. <property name="text">
  1228. <string>24</string>
  1229. </property>
  1230. <property name="checked">
  1231. <bool>false</bool>
  1232. </property>
  1233. </widget>
  1234. <widget class="QRadioButton" name="radioButton_31">
  1235. <property name="enabled">
  1236. <bool>true</bool>
  1237. </property>
  1238. <property name="geometry">
  1239. <rect>
  1240. <x>330</x>
  1241. <y>120</y>
  1242. <width>16</width>
  1243. <height>20</height>
  1244. </rect>
  1245. </property>
  1246. <property name="autoFillBackground">
  1247. <bool>false</bool>
  1248. </property>
  1249. <property name="text">
  1250. <string>33</string>
  1251. </property>
  1252. <property name="checked">
  1253. <bool>false</bool>
  1254. </property>
  1255. </widget>
  1256. <widget class="QRadioButton" name="radioButton_21">
  1257. <property name="enabled">
  1258. <bool>true</bool>
  1259. </property>
  1260. <property name="geometry">
  1261. <rect>
  1262. <x>230</x>
  1263. <y>20</y>
  1264. <width>16</width>
  1265. <height>20</height>
  1266. </rect>
  1267. </property>
  1268. <property name="autoFillBackground">
  1269. <bool>false</bool>
  1270. </property>
  1271. <property name="text">
  1272. <string>53</string>
  1273. </property>
  1274. <property name="checked">
  1275. <bool>false</bool>
  1276. </property>
  1277. </widget>
  1278. <widget class="QRadioButton" name="radioButton_14">
  1279. <property name="enabled">
  1280. <bool>true</bool>
  1281. </property>
  1282. <property name="geometry">
  1283. <rect>
  1284. <x>10</x>
  1285. <y>330</y>
  1286. <width>16</width>
  1287. <height>20</height>
  1288. </rect>
  1289. </property>
  1290. <property name="autoFillBackground">
  1291. <bool>false</bool>
  1292. </property>
  1293. <property name="text">
  1294. <string>12</string>
  1295. </property>
  1296. <property name="checked">
  1297. <bool>false</bool>
  1298. </property>
  1299. </widget>
  1300. <widget class="QRadioButton" name="radioButton_32">
  1301. <property name="enabled">
  1302. <bool>true</bool>
  1303. </property>
  1304. <property name="geometry">
  1305. <rect>
  1306. <x>30</x>
  1307. <y>320</y>
  1308. <width>16</width>
  1309. <height>20</height>
  1310. </rect>
  1311. </property>
  1312. <property name="autoFillBackground">
  1313. <bool>false</bool>
  1314. </property>
  1315. <property name="text">
  1316. <string>13</string>
  1317. </property>
  1318. <property name="checked">
  1319. <bool>false</bool>
  1320. </property>
  1321. </widget>
  1322. <widget class="QRadioButton" name="radioButton_33">
  1323. <property name="enabled">
  1324. <bool>true</bool>
  1325. </property>
  1326. <property name="geometry">
  1327. <rect>
  1328. <x>250</x>
  1329. <y>210</y>
  1330. <width>16</width>
  1331. <height>20</height>
  1332. </rect>
  1333. </property>
  1334. <property name="autoFillBackground">
  1335. <bool>false</bool>
  1336. </property>
  1337. <property name="text">
  1338. <string>22</string>
  1339. </property>
  1340. <property name="checked">
  1341. <bool>false</bool>
  1342. </property>
  1343. </widget>
  1344. <widget class="QRadioButton" name="radioButton_1">
  1345. <property name="enabled">
  1346. <bool>true</bool>
  1347. </property>
  1348. <property name="geometry">
  1349. <rect>
  1350. <x>10</x>
  1351. <y>30</y>
  1352. <width>16</width>
  1353. <height>20</height>
  1354. </rect>
  1355. </property>
  1356. <property name="autoFillBackground">
  1357. <bool>false</bool>
  1358. </property>
  1359. <property name="text">
  1360. <string>60</string>
  1361. </property>
  1362. <property name="checked">
  1363. <bool>false</bool>
  1364. </property>
  1365. </widget>
  1366. <widget class="QRadioButton" name="radioButton_43">
  1367. <property name="enabled">
  1368. <bool>true</bool>
  1369. </property>
  1370. <property name="geometry">
  1371. <rect>
  1372. <x>350</x>
  1373. <y>10</y>
  1374. <width>16</width>
  1375. <height>20</height>
  1376. </rect>
  1377. </property>
  1378. <property name="autoFillBackground">
  1379. <bool>false</bool>
  1380. </property>
  1381. <property name="text">
  1382. <string>50</string>
  1383. </property>
  1384. <property name="checked">
  1385. <bool>false</bool>
  1386. </property>
  1387. </widget>
  1388. <widget class="QRadioButton" name="radioButton_45">
  1389. <property name="enabled">
  1390. <bool>true</bool>
  1391. </property>
  1392. <property name="geometry">
  1393. <rect>
  1394. <x>350</x>
  1395. <y>210</y>
  1396. <width>16</width>
  1397. <height>20</height>
  1398. </rect>
  1399. </property>
  1400. <property name="autoFillBackground">
  1401. <bool>false</bool>
  1402. </property>
  1403. <property name="text">
  1404. <string>18</string>
  1405. </property>
  1406. <property name="checked">
  1407. <bool>false</bool>
  1408. </property>
  1409. </widget>
  1410. <widget class="QRadioButton" name="radioButton_40">
  1411. <property name="enabled">
  1412. <bool>true</bool>
  1413. </property>
  1414. <property name="geometry">
  1415. <rect>
  1416. <x>150</x>
  1417. <y>210</y>
  1418. <width>16</width>
  1419. <height>20</height>
  1420. </rect>
  1421. </property>
  1422. <property name="autoFillBackground">
  1423. <bool>false</bool>
  1424. </property>
  1425. <property name="text">
  1426. <string>26</string>
  1427. </property>
  1428. <property name="checked">
  1429. <bool>false</bool>
  1430. </property>
  1431. </widget>
  1432. <widget class="QRadioButton" name="radioButton_10">
  1433. <property name="enabled">
  1434. <bool>true</bool>
  1435. </property>
  1436. <property name="geometry">
  1437. <rect>
  1438. <x>10</x>
  1439. <y>230</y>
  1440. <width>16</width>
  1441. <height>20</height>
  1442. </rect>
  1443. </property>
  1444. <property name="autoFillBackground">
  1445. <bool>false</bool>
  1446. </property>
  1447. <property name="text">
  1448. <string>28</string>
  1449. </property>
  1450. <property name="checked">
  1451. <bool>false</bool>
  1452. </property>
  1453. </widget>
  1454. <widget class="Line" name="line_2">
  1455. <property name="geometry">
  1456. <rect>
  1457. <x>82</x>
  1458. <y>4</y>
  1459. <width>291</width>
  1460. <height>16</height>
  1461. </rect>
  1462. </property>
  1463. <property name="orientation">
  1464. <enum>Qt::Horizontal</enum>
  1465. </property>
  1466. </widget>
  1467. <widget class="QRadioButton" name="radioButton_7">
  1468. <property name="enabled">
  1469. <bool>true</bool>
  1470. </property>
  1471. <property name="geometry">
  1472. <rect>
  1473. <x>110</x>
  1474. <y>130</y>
  1475. <width>16</width>
  1476. <height>20</height>
  1477. </rect>
  1478. </property>
  1479. <property name="autoFillBackground">
  1480. <bool>false</bool>
  1481. </property>
  1482. <property name="text">
  1483. <string>40</string>
  1484. </property>
  1485. <property name="checked">
  1486. <bool>false</bool>
  1487. </property>
  1488. </widget>
  1489. <widget class="QRadioButton" name="radioButton_19">
  1490. <property name="enabled">
  1491. <bool>true</bool>
  1492. </property>
  1493. <property name="geometry">
  1494. <rect>
  1495. <x>330</x>
  1496. <y>320</y>
  1497. <width>16</width>
  1498. <height>20</height>
  1499. </rect>
  1500. </property>
  1501. <property name="autoFillBackground">
  1502. <bool>false</bool>
  1503. </property>
  1504. <property name="text">
  1505. <string>1</string>
  1506. </property>
  1507. <property name="checked">
  1508. <bool>false</bool>
  1509. </property>
  1510. </widget>
  1511. <widget class="QRadioButton" name="radioButton_44">
  1512. <property name="enabled">
  1513. <bool>true</bool>
  1514. </property>
  1515. <property name="geometry">
  1516. <rect>
  1517. <x>50</x>
  1518. <y>210</y>
  1519. <width>16</width>
  1520. <height>20</height>
  1521. </rect>
  1522. </property>
  1523. <property name="autoFillBackground">
  1524. <bool>false</bool>
  1525. </property>
  1526. <property name="text">
  1527. <string>30</string>
  1528. </property>
  1529. <property name="checked">
  1530. <bool>false</bool>
  1531. </property>
  1532. </widget>
  1533. <widget class="QRadioButton" name="radioButton_17">
  1534. <property name="enabled">
  1535. <bool>true</bool>
  1536. </property>
  1537. <property name="geometry">
  1538. <rect>
  1539. <x>230</x>
  1540. <y>220</y>
  1541. <width>16</width>
  1542. <height>20</height>
  1543. </rect>
  1544. </property>
  1545. <property name="autoFillBackground">
  1546. <bool>false</bool>
  1547. </property>
  1548. <property name="text">
  1549. <string>21</string>
  1550. </property>
  1551. <property name="checked">
  1552. <bool>false</bool>
  1553. </property>
  1554. </widget>
  1555. <widget class="QRadioButton" name="radioButton_46">
  1556. <property name="enabled">
  1557. <bool>true</bool>
  1558. </property>
  1559. <property name="geometry">
  1560. <rect>
  1561. <x>250</x>
  1562. <y>310</y>
  1563. <width>16</width>
  1564. <height>20</height>
  1565. </rect>
  1566. </property>
  1567. <property name="autoFillBackground">
  1568. <bool>false</bool>
  1569. </property>
  1570. <property name="text">
  1571. <string>6</string>
  1572. </property>
  1573. <property name="checked">
  1574. <bool>false</bool>
  1575. </property>
  1576. </widget>
  1577. <widget class="QRadioButton" name="radioButton_26">
  1578. <property name="enabled">
  1579. <bool>true</bool>
  1580. </property>
  1581. <property name="geometry">
  1582. <rect>
  1583. <x>130</x>
  1584. <y>320</y>
  1585. <width>16</width>
  1586. <height>20</height>
  1587. </rect>
  1588. </property>
  1589. <property name="autoFillBackground">
  1590. <bool>false</bool>
  1591. </property>
  1592. <property name="text">
  1593. <string>9</string>
  1594. </property>
  1595. <property name="checked">
  1596. <bool>false</bool>
  1597. </property>
  1598. </widget>
  1599. <widget class="QRadioButton" name="radioButton_5">
  1600. <property name="enabled">
  1601. <bool>true</bool>
  1602. </property>
  1603. <property name="geometry">
  1604. <rect>
  1605. <x>210</x>
  1606. <y>130</y>
  1607. <width>16</width>
  1608. <height>20</height>
  1609. </rect>
  1610. </property>
  1611. <property name="autoFillBackground">
  1612. <bool>false</bool>
  1613. </property>
  1614. <property name="text">
  1615. <string>36</string>
  1616. </property>
  1617. <property name="checked">
  1618. <bool>false</bool>
  1619. </property>
  1620. </widget>
  1621. <widget class="Line" name="line_6">
  1622. <property name="geometry">
  1623. <rect>
  1624. <x>63</x>
  1625. <y>13</y>
  1626. <width>291</width>
  1627. <height>16</height>
  1628. </rect>
  1629. </property>
  1630. <property name="orientation">
  1631. <enum>Qt::Horizontal</enum>
  1632. </property>
  1633. </widget>
  1634. <widget class="Line" name="line_10">
  1635. <property name="geometry">
  1636. <rect>
  1637. <x>368</x>
  1638. <y>11</y>
  1639. <width>20</width>
  1640. <height>301</height>
  1641. </rect>
  1642. </property>
  1643. <property name="orientation">
  1644. <enum>Qt::Vertical</enum>
  1645. </property>
  1646. </widget>
  1647. <widget class="QRadioButton" name="radioButton_53">
  1648. <property name="enabled">
  1649. <bool>true</bool>
  1650. </property>
  1651. <property name="geometry">
  1652. <rect>
  1653. <x>270</x>
  1654. <y>0</y>
  1655. <width>16</width>
  1656. <height>20</height>
  1657. </rect>
  1658. </property>
  1659. <property name="autoFillBackground">
  1660. <bool>false</bool>
  1661. </property>
  1662. <property name="text">
  1663. <string>55</string>
  1664. </property>
  1665. <property name="checked">
  1666. <bool>false</bool>
  1667. </property>
  1668. </widget>
  1669. <widget class="QRadioButton" name="radioButton_18">
  1670. <property name="enabled">
  1671. <bool>true</bool>
  1672. </property>
  1673. <property name="geometry">
  1674. <rect>
  1675. <x>230</x>
  1676. <y>120</y>
  1677. <width>16</width>
  1678. <height>20</height>
  1679. </rect>
  1680. </property>
  1681. <property name="autoFillBackground">
  1682. <bool>false</bool>
  1683. </property>
  1684. <property name="text">
  1685. <string>37</string>
  1686. </property>
  1687. <property name="checked">
  1688. <bool>false</bool>
  1689. </property>
  1690. </widget>
  1691. <widget class="QRadioButton" name="radioButton_3">
  1692. <property name="enabled">
  1693. <bool>true</bool>
  1694. </property>
  1695. <property name="geometry">
  1696. <rect>
  1697. <x>210</x>
  1698. <y>30</y>
  1699. <width>16</width>
  1700. <height>20</height>
  1701. </rect>
  1702. </property>
  1703. <property name="autoFillBackground">
  1704. <bool>false</bool>
  1705. </property>
  1706. <property name="text">
  1707. <string>52</string>
  1708. </property>
  1709. <property name="checked">
  1710. <bool>false</bool>
  1711. </property>
  1712. </widget>
  1713. <widget class="QRadioButton" name="radioButton_51">
  1714. <property name="enabled">
  1715. <bool>true</bool>
  1716. </property>
  1717. <property name="geometry">
  1718. <rect>
  1719. <x>370</x>
  1720. <y>300</y>
  1721. <width>16</width>
  1722. <height>20</height>
  1723. </rect>
  1724. </property>
  1725. <property name="autoFillBackground">
  1726. <bool>false</bool>
  1727. </property>
  1728. <property name="text">
  1729. <string>3</string>
  1730. </property>
  1731. <property name="checked">
  1732. <bool>false</bool>
  1733. </property>
  1734. </widget>
  1735. <widget class="QRadioButton" name="radioButton_15">
  1736. <property name="enabled">
  1737. <bool>true</bool>
  1738. </property>
  1739. <property name="geometry">
  1740. <rect>
  1741. <x>110</x>
  1742. <y>330</y>
  1743. <width>16</width>
  1744. <height>20</height>
  1745. </rect>
  1746. </property>
  1747. <property name="autoFillBackground">
  1748. <bool>false</bool>
  1749. </property>
  1750. <property name="text">
  1751. <string>8</string>
  1752. </property>
  1753. <property name="checked">
  1754. <bool>false</bool>
  1755. </property>
  1756. </widget>
  1757. <widget class="QRadioButton" name="radioButton_48">
  1758. <property name="enabled">
  1759. <bool>true</bool>
  1760. </property>
  1761. <property name="geometry">
  1762. <rect>
  1763. <x>50</x>
  1764. <y>310</y>
  1765. <width>16</width>
  1766. <height>20</height>
  1767. </rect>
  1768. </property>
  1769. <property name="autoFillBackground">
  1770. <bool>false</bool>
  1771. </property>
  1772. <property name="text">
  1773. <string>14</string>
  1774. </property>
  1775. <property name="checked">
  1776. <bool>true</bool>
  1777. </property>
  1778. </widget>
  1779. <widget class="QRadioButton" name="radioButton_41">
  1780. <property name="enabled">
  1781. <bool>true</bool>
  1782. </property>
  1783. <property name="geometry">
  1784. <rect>
  1785. <x>150</x>
  1786. <y>10</y>
  1787. <width>16</width>
  1788. <height>20</height>
  1789. </rect>
  1790. </property>
  1791. <property name="autoFillBackground">
  1792. <bool>false</bool>
  1793. </property>
  1794. <property name="text">
  1795. <string>58</string>
  1796. </property>
  1797. <property name="checked">
  1798. <bool>false</bool>
  1799. </property>
  1800. </widget>
  1801. <widget class="QRadioButton" name="radioButton_29">
  1802. <property name="enabled">
  1803. <bool>true</bool>
  1804. </property>
  1805. <property name="geometry">
  1806. <rect>
  1807. <x>330</x>
  1808. <y>220</y>
  1809. <width>16</width>
  1810. <height>20</height>
  1811. </rect>
  1812. </property>
  1813. <property name="autoFillBackground">
  1814. <bool>false</bool>
  1815. </property>
  1816. <property name="text">
  1817. <string>17</string>
  1818. </property>
  1819. <property name="checked">
  1820. <bool>false</bool>
  1821. </property>
  1822. </widget>
  1823. <widget class="QRadioButton" name="radioButton_30">
  1824. <property name="enabled">
  1825. <bool>true</bool>
  1826. </property>
  1827. <property name="geometry">
  1828. <rect>
  1829. <x>230</x>
  1830. <y>320</y>
  1831. <width>16</width>
  1832. <height>20</height>
  1833. </rect>
  1834. </property>
  1835. <property name="autoFillBackground">
  1836. <bool>false</bool>
  1837. </property>
  1838. <property name="text">
  1839. <string>5</string>
  1840. </property>
  1841. <property name="checked">
  1842. <bool>false</bool>
  1843. </property>
  1844. </widget>
  1845. <widget class="Line" name="line_7">
  1846. <property name="geometry">
  1847. <rect>
  1848. <x>42</x>
  1849. <y>23</y>
  1850. <width>291</width>
  1851. <height>16</height>
  1852. </rect>
  1853. </property>
  1854. <property name="orientation">
  1855. <enum>Qt::Horizontal</enum>
  1856. </property>
  1857. </widget>
  1858. <widget class="Line" name="line_3">
  1859. <property name="geometry">
  1860. <rect>
  1861. <x>22</x>
  1862. <y>33</y>
  1863. <width>291</width>
  1864. <height>16</height>
  1865. </rect>
  1866. </property>
  1867. <property name="orientation">
  1868. <enum>Qt::Horizontal</enum>
  1869. </property>
  1870. </widget>
  1871. <zorder>line_7</zorder>
  1872. <zorder>line_9</zorder>
  1873. <zorder>line_10</zorder>
  1874. <zorder>line_8</zorder>
  1875. <zorder>line_5</zorder>
  1876. <zorder>line_2</zorder>
  1877. <zorder>line</zorder>
  1878. <zorder>line_3</zorder>
  1879. <zorder>line_4</zorder>
  1880. <zorder>line_6</zorder>
  1881. <zorder>radioButton_9</zorder>
  1882. <zorder>radioButton_28</zorder>
  1883. <zorder>radioButton_34</zorder>
  1884. <zorder>radioButton_2</zorder>
  1885. <zorder>radioButton_52</zorder>
  1886. <zorder>radioButton_57</zorder>
  1887. <zorder>radioButton_27</zorder>
  1888. <zorder>radioButton_47</zorder>
  1889. <zorder>radioButton_12</zorder>
  1890. <zorder>radioButton_62</zorder>
  1891. <zorder>radioButton_64</zorder>
  1892. <zorder>radioButton_60</zorder>
  1893. <zorder>radioButton_54</zorder>
  1894. <zorder>radioButton_38</zorder>
  1895. <zorder>radioButton_58</zorder>
  1896. <zorder>radioButton_35</zorder>
  1897. <zorder>radioButton_4</zorder>
  1898. <zorder>radioButton_6</zorder>
  1899. <zorder>radioButton_63</zorder>
  1900. <zorder>radioButton_56</zorder>
  1901. <zorder>radioButton_59</zorder>
  1902. <zorder>radioButton_20</zorder>
  1903. <zorder>radioButton_36</zorder>
  1904. <zorder>radioButton_39</zorder>
  1905. <zorder>radioButton_42</zorder>
  1906. <zorder>radioButton_49</zorder>
  1907. <zorder>radioButton_24</zorder>
  1908. <zorder>radioButton_61</zorder>
  1909. <zorder>radioButton_55</zorder>
  1910. <zorder>radioButton_50</zorder>
  1911. <zorder>radioButton_23</zorder>
  1912. <zorder>radioButton_8</zorder>
  1913. <zorder>radioButton_22</zorder>
  1914. <zorder>radioButton_25</zorder>
  1915. <zorder>radioButton_16</zorder>
  1916. <zorder>radioButton_37</zorder>
  1917. <zorder>radioButton_13</zorder>
  1918. <zorder>radioButton_11</zorder>
  1919. <zorder>radioButton_31</zorder>
  1920. <zorder>radioButton_21</zorder>
  1921. <zorder>radioButton_14</zorder>
  1922. <zorder>radioButton_32</zorder>
  1923. <zorder>radioButton_33</zorder>
  1924. <zorder>radioButton_1</zorder>
  1925. <zorder>radioButton_43</zorder>
  1926. <zorder>radioButton_45</zorder>
  1927. <zorder>radioButton_40</zorder>
  1928. <zorder>radioButton_10</zorder>
  1929. <zorder>radioButton_7</zorder>
  1930. <zorder>radioButton_19</zorder>
  1931. <zorder>radioButton_44</zorder>
  1932. <zorder>radioButton_17</zorder>
  1933. <zorder>radioButton_46</zorder>
  1934. <zorder>radioButton_26</zorder>
  1935. <zorder>radioButton_5</zorder>
  1936. <zorder>radioButton_53</zorder>
  1937. <zorder>radioButton_18</zorder>
  1938. <zorder>radioButton_3</zorder>
  1939. <zorder>radioButton_51</zorder>
  1940. <zorder>radioButton_15</zorder>
  1941. <zorder>radioButton_48</zorder>
  1942. <zorder>radioButton_41</zorder>
  1943. <zorder>radioButton_29</zorder>
  1944. <zorder>radioButton_30</zorder>
  1945. </widget>
  1946. </item>
  1947. </layout>
  1948. </widget>
  1949. </item>
  1950. <item row="2" column="0">
  1951. <widget class="QGroupBox" name="groupBox_2">
  1952. <property name="sizePolicy">
  1953. <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
  1954. <horstretch>0</horstretch>
  1955. <verstretch>0</verstretch>
  1956. </sizepolicy>
  1957. </property>
  1958. <property name="minimumSize">
  1959. <size>
  1960. <width>0</width>
  1961. <height>50</height>
  1962. </size>
  1963. </property>
  1964. <property name="title">
  1965. <string>Info</string>
  1966. </property>
  1967. <widget class="QLabel" name="label">
  1968. <property name="geometry">
  1969. <rect>
  1970. <x>10</x>
  1971. <y>20</y>
  1972. <width>91</width>
  1973. <height>16</height>
  1974. </rect>
  1975. </property>
  1976. <property name="text">
  1977. <string>Current Frame: </string>
  1978. </property>
  1979. </widget>
  1980. <widget class="QLabel" name="label_2">
  1981. <property name="geometry">
  1982. <rect>
  1983. <x>110</x>
  1984. <y>20</y>
  1985. <width>55</width>
  1986. <height>16</height>
  1987. </rect>
  1988. </property>
  1989. <property name="text">
  1990. <string>0</string>
  1991. </property>
  1992. </widget>
  1993. <widget class="QLabel" name="label_5">
  1994. <property name="geometry">
  1995. <rect>
  1996. <x>190</x>
  1997. <y>20</y>
  1998. <width>51</width>
  1999. <height>16</height>
  2000. </rect>
  2001. </property>
  2002. <property name="text">
  2003. <string>Status:</string>
  2004. </property>
  2005. </widget>
  2006. <widget class="QLabel" name="label_6">
  2007. <property name="geometry">
  2008. <rect>
  2009. <x>260</x>
  2010. <y>20</y>
  2011. <width>201</width>
  2012. <height>16</height>
  2013. </rect>
  2014. </property>
  2015. <property name="text">
  2016. <string>disconnected</string>
  2017. </property>
  2018. </widget>
  2019. </widget>
  2020. </item>
  2021. </layout>
  2022. </widget>
  2023. <widget class="QMenuBar" name="menubar">
  2024. <property name="geometry">
  2025. <rect>
  2026. <x>0</x>
  2027. <y>0</y>
  2028. <width>483</width>
  2029. <height>21</height>
  2030. </rect>
  2031. </property>
  2032. </widget>
  2033. <widget class="QStatusBar" name="statusbar"/>
  2034. </widget>
  2035. <resources/>
  2036. <connections/>
  2037. </ui>