dialog.ui 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>Dialog</class>
  4. <widget class="QDialog" name="Dialog">
  5. <property name="enabled">
  6. <bool>true</bool>
  7. </property>
  8. <property name="geometry">
  9. <rect>
  10. <x>0</x>
  11. <y>0</y>
  12. <width>820</width>
  13. <height>420</height>
  14. </rect>
  15. </property>
  16. <property name="sizePolicy">
  17. <sizepolicy hsizetype="Minimum" vsizetype="Preferred">
  18. <horstretch>0</horstretch>
  19. <verstretch>0</verstretch>
  20. </sizepolicy>
  21. </property>
  22. <property name="minimumSize">
  23. <size>
  24. <width>820</width>
  25. <height>420</height>
  26. </size>
  27. </property>
  28. <property name="maximumSize">
  29. <size>
  30. <width>920</width>
  31. <height>420</height>
  32. </size>
  33. </property>
  34. <property name="palette">
  35. <palette>
  36. <active>
  37. <colorrole role="WindowText">
  38. <brush brushstyle="SolidPattern">
  39. <color alpha="255">
  40. <red>0</red>
  41. <green>0</green>
  42. <blue>0</blue>
  43. </color>
  44. </brush>
  45. </colorrole>
  46. <colorrole role="Button">
  47. <brush brushstyle="SolidPattern">
  48. <color alpha="255">
  49. <red>85</red>
  50. <green>170</green>
  51. <blue>255</blue>
  52. </color>
  53. </brush>
  54. </colorrole>
  55. <colorrole role="Light">
  56. <brush brushstyle="SolidPattern">
  57. <color alpha="255">
  58. <red>212</red>
  59. <green>234</green>
  60. <blue>255</blue>
  61. </color>
  62. </brush>
  63. </colorrole>
  64. <colorrole role="Midlight">
  65. <brush brushstyle="SolidPattern">
  66. <color alpha="255">
  67. <red>148</red>
  68. <green>202</green>
  69. <blue>255</blue>
  70. </color>
  71. </brush>
  72. </colorrole>
  73. <colorrole role="Dark">
  74. <brush brushstyle="SolidPattern">
  75. <color alpha="255">
  76. <red>42</red>
  77. <green>85</green>
  78. <blue>127</blue>
  79. </color>
  80. </brush>
  81. </colorrole>
  82. <colorrole role="Mid">
  83. <brush brushstyle="SolidPattern">
  84. <color alpha="255">
  85. <red>57</red>
  86. <green>113</green>
  87. <blue>170</blue>
  88. </color>
  89. </brush>
  90. </colorrole>
  91. <colorrole role="Text">
  92. <brush brushstyle="SolidPattern">
  93. <color alpha="255">
  94. <red>0</red>
  95. <green>0</green>
  96. <blue>0</blue>
  97. </color>
  98. </brush>
  99. </colorrole>
  100. <colorrole role="BrightText">
  101. <brush brushstyle="SolidPattern">
  102. <color alpha="255">
  103. <red>255</red>
  104. <green>255</green>
  105. <blue>255</blue>
  106. </color>
  107. </brush>
  108. </colorrole>
  109. <colorrole role="ButtonText">
  110. <brush brushstyle="SolidPattern">
  111. <color alpha="255">
  112. <red>0</red>
  113. <green>0</green>
  114. <blue>0</blue>
  115. </color>
  116. </brush>
  117. </colorrole>
  118. <colorrole role="Base">
  119. <brush brushstyle="SolidPattern">
  120. <color alpha="255">
  121. <red>255</red>
  122. <green>255</green>
  123. <blue>255</blue>
  124. </color>
  125. </brush>
  126. </colorrole>
  127. <colorrole role="Window">
  128. <brush brushstyle="SolidPattern">
  129. <color alpha="255">
  130. <red>212</red>
  131. <green>228</green>
  132. <blue>255</blue>
  133. </color>
  134. </brush>
  135. </colorrole>
  136. <colorrole role="Shadow">
  137. <brush brushstyle="SolidPattern">
  138. <color alpha="255">
  139. <red>0</red>
  140. <green>0</green>
  141. <blue>0</blue>
  142. </color>
  143. </brush>
  144. </colorrole>
  145. <colorrole role="Highlight">
  146. <brush brushstyle="SolidPattern">
  147. <color alpha="255">
  148. <red>0</red>
  149. <green>0</green>
  150. <blue>128</blue>
  151. </color>
  152. </brush>
  153. </colorrole>
  154. <colorrole role="HighlightedText">
  155. <brush brushstyle="SolidPattern">
  156. <color alpha="255">
  157. <red>255</red>
  158. <green>255</green>
  159. <blue>255</blue>
  160. </color>
  161. </brush>
  162. </colorrole>
  163. <colorrole role="Link">
  164. <brush brushstyle="SolidPattern">
  165. <color alpha="255">
  166. <red>0</red>
  167. <green>0</green>
  168. <blue>0</blue>
  169. </color>
  170. </brush>
  171. </colorrole>
  172. <colorrole role="LinkVisited">
  173. <brush brushstyle="SolidPattern">
  174. <color alpha="255">
  175. <red>0</red>
  176. <green>0</green>
  177. <blue>0</blue>
  178. </color>
  179. </brush>
  180. </colorrole>
  181. </active>
  182. <inactive>
  183. <colorrole role="WindowText">
  184. <brush brushstyle="SolidPattern">
  185. <color alpha="255">
  186. <red>0</red>
  187. <green>0</green>
  188. <blue>0</blue>
  189. </color>
  190. </brush>
  191. </colorrole>
  192. <colorrole role="Button">
  193. <brush brushstyle="SolidPattern">
  194. <color alpha="255">
  195. <red>85</red>
  196. <green>170</green>
  197. <blue>255</blue>
  198. </color>
  199. </brush>
  200. </colorrole>
  201. <colorrole role="Light">
  202. <brush brushstyle="SolidPattern">
  203. <color alpha="255">
  204. <red>212</red>
  205. <green>234</green>
  206. <blue>255</blue>
  207. </color>
  208. </brush>
  209. </colorrole>
  210. <colorrole role="Midlight">
  211. <brush brushstyle="SolidPattern">
  212. <color alpha="255">
  213. <red>123</red>
  214. <green>189</green>
  215. <blue>255</blue>
  216. </color>
  217. </brush>
  218. </colorrole>
  219. <colorrole role="Dark">
  220. <brush brushstyle="SolidPattern">
  221. <color alpha="255">
  222. <red>42</red>
  223. <green>85</green>
  224. <blue>127</blue>
  225. </color>
  226. </brush>
  227. </colorrole>
  228. <colorrole role="Mid">
  229. <brush brushstyle="SolidPattern">
  230. <color alpha="255">
  231. <red>57</red>
  232. <green>113</green>
  233. <blue>170</blue>
  234. </color>
  235. </brush>
  236. </colorrole>
  237. <colorrole role="Text">
  238. <brush brushstyle="SolidPattern">
  239. <color alpha="255">
  240. <red>0</red>
  241. <green>0</green>
  242. <blue>0</blue>
  243. </color>
  244. </brush>
  245. </colorrole>
  246. <colorrole role="BrightText">
  247. <brush brushstyle="SolidPattern">
  248. <color alpha="255">
  249. <red>255</red>
  250. <green>255</green>
  251. <blue>255</blue>
  252. </color>
  253. </brush>
  254. </colorrole>
  255. <colorrole role="ButtonText">
  256. <brush brushstyle="SolidPattern">
  257. <color alpha="255">
  258. <red>0</red>
  259. <green>0</green>
  260. <blue>0</blue>
  261. </color>
  262. </brush>
  263. </colorrole>
  264. <colorrole role="Base">
  265. <brush brushstyle="SolidPattern">
  266. <color alpha="255">
  267. <red>255</red>
  268. <green>255</green>
  269. <blue>255</blue>
  270. </color>
  271. </brush>
  272. </colorrole>
  273. <colorrole role="Window">
  274. <brush brushstyle="SolidPattern">
  275. <color alpha="255">
  276. <red>212</red>
  277. <green>228</green>
  278. <blue>255</blue>
  279. </color>
  280. </brush>
  281. </colorrole>
  282. <colorrole role="Shadow">
  283. <brush brushstyle="SolidPattern">
  284. <color alpha="255">
  285. <red>0</red>
  286. <green>0</green>
  287. <blue>0</blue>
  288. </color>
  289. </brush>
  290. </colorrole>
  291. <colorrole role="Highlight">
  292. <brush brushstyle="SolidPattern">
  293. <color alpha="255">
  294. <red>0</red>
  295. <green>0</green>
  296. <blue>128</blue>
  297. </color>
  298. </brush>
  299. </colorrole>
  300. <colorrole role="HighlightedText">
  301. <brush brushstyle="SolidPattern">
  302. <color alpha="255">
  303. <red>255</red>
  304. <green>255</green>
  305. <blue>255</blue>
  306. </color>
  307. </brush>
  308. </colorrole>
  309. <colorrole role="Link">
  310. <brush brushstyle="SolidPattern">
  311. <color alpha="255">
  312. <red>0</red>
  313. <green>0</green>
  314. <blue>255</blue>
  315. </color>
  316. </brush>
  317. </colorrole>
  318. <colorrole role="LinkVisited">
  319. <brush brushstyle="SolidPattern">
  320. <color alpha="255">
  321. <red>255</red>
  322. <green>0</green>
  323. <blue>255</blue>
  324. </color>
  325. </brush>
  326. </colorrole>
  327. </inactive>
  328. <disabled>
  329. <colorrole role="WindowText">
  330. <brush brushstyle="SolidPattern">
  331. <color alpha="255">
  332. <red>128</red>
  333. <green>128</green>
  334. <blue>128</blue>
  335. </color>
  336. </brush>
  337. </colorrole>
  338. <colorrole role="Button">
  339. <brush brushstyle="SolidPattern">
  340. <color alpha="255">
  341. <red>85</red>
  342. <green>170</green>
  343. <blue>255</blue>
  344. </color>
  345. </brush>
  346. </colorrole>
  347. <colorrole role="Light">
  348. <brush brushstyle="SolidPattern">
  349. <color alpha="255">
  350. <red>212</red>
  351. <green>234</green>
  352. <blue>255</blue>
  353. </color>
  354. </brush>
  355. </colorrole>
  356. <colorrole role="Midlight">
  357. <brush brushstyle="SolidPattern">
  358. <color alpha="255">
  359. <red>123</red>
  360. <green>189</green>
  361. <blue>255</blue>
  362. </color>
  363. </brush>
  364. </colorrole>
  365. <colorrole role="Dark">
  366. <brush brushstyle="SolidPattern">
  367. <color alpha="255">
  368. <red>42</red>
  369. <green>85</green>
  370. <blue>127</blue>
  371. </color>
  372. </brush>
  373. </colorrole>
  374. <colorrole role="Mid">
  375. <brush brushstyle="SolidPattern">
  376. <color alpha="255">
  377. <red>57</red>
  378. <green>113</green>
  379. <blue>170</blue>
  380. </color>
  381. </brush>
  382. </colorrole>
  383. <colorrole role="Text">
  384. <brush brushstyle="SolidPattern">
  385. <color alpha="255">
  386. <red>128</red>
  387. <green>128</green>
  388. <blue>128</blue>
  389. </color>
  390. </brush>
  391. </colorrole>
  392. <colorrole role="BrightText">
  393. <brush brushstyle="SolidPattern">
  394. <color alpha="255">
  395. <red>255</red>
  396. <green>255</green>
  397. <blue>255</blue>
  398. </color>
  399. </brush>
  400. </colorrole>
  401. <colorrole role="ButtonText">
  402. <brush brushstyle="SolidPattern">
  403. <color alpha="255">
  404. <red>128</red>
  405. <green>128</green>
  406. <blue>128</blue>
  407. </color>
  408. </brush>
  409. </colorrole>
  410. <colorrole role="Base">
  411. <brush brushstyle="SolidPattern">
  412. <color alpha="255">
  413. <red>255</red>
  414. <green>255</green>
  415. <blue>255</blue>
  416. </color>
  417. </brush>
  418. </colorrole>
  419. <colorrole role="Window">
  420. <brush brushstyle="SolidPattern">
  421. <color alpha="255">
  422. <red>212</red>
  423. <green>228</green>
  424. <blue>255</blue>
  425. </color>
  426. </brush>
  427. </colorrole>
  428. <colorrole role="Shadow">
  429. <brush brushstyle="SolidPattern">
  430. <color alpha="255">
  431. <red>0</red>
  432. <green>0</green>
  433. <blue>0</blue>
  434. </color>
  435. </brush>
  436. </colorrole>
  437. <colorrole role="Highlight">
  438. <brush brushstyle="SolidPattern">
  439. <color alpha="255">
  440. <red>0</red>
  441. <green>0</green>
  442. <blue>128</blue>
  443. </color>
  444. </brush>
  445. </colorrole>
  446. <colorrole role="HighlightedText">
  447. <brush brushstyle="SolidPattern">
  448. <color alpha="255">
  449. <red>255</red>
  450. <green>255</green>
  451. <blue>255</blue>
  452. </color>
  453. </brush>
  454. </colorrole>
  455. <colorrole role="Link">
  456. <brush brushstyle="SolidPattern">
  457. <color alpha="255">
  458. <red>0</red>
  459. <green>0</green>
  460. <blue>255</blue>
  461. </color>
  462. </brush>
  463. </colorrole>
  464. <colorrole role="LinkVisited">
  465. <brush brushstyle="SolidPattern">
  466. <color alpha="255">
  467. <red>255</red>
  468. <green>0</green>
  469. <blue>255</blue>
  470. </color>
  471. </brush>
  472. </colorrole>
  473. </disabled>
  474. </palette>
  475. </property>
  476. <property name="windowTitle">
  477. <string>Device Control</string>
  478. </property>
  479. <widget class="QFrame" name="frame4">
  480. <property name="geometry">
  481. <rect>
  482. <x>10</x>
  483. <y>61</y>
  484. <width>400</width>
  485. <height>70</height>
  486. </rect>
  487. </property>
  488. <property name="frameShape">
  489. <enum>QFrame::StyledPanel</enum>
  490. </property>
  491. <property name="frameShadow">
  492. <enum>QFrame::Plain</enum>
  493. </property>
  494. <widget class="QLabel" name="textLabel1">
  495. <property name="geometry">
  496. <rect>
  497. <x>10</x>
  498. <y>4</y>
  499. <width>201</width>
  500. <height>20</height>
  501. </rect>
  502. </property>
  503. <property name="text">
  504. <string>Net Trigger Alarm In</string>
  505. </property>
  506. <property name="wordWrap">
  507. <bool>false</bool>
  508. </property>
  509. </widget>
  510. <widget class="QLabel" name="textLabel3">
  511. <property name="geometry">
  512. <rect>
  513. <x>9</x>
  514. <y>31</y>
  515. <width>91</width>
  516. <height>31</height>
  517. </rect>
  518. </property>
  519. <property name="text">
  520. <string>Channel No.</string>
  521. </property>
  522. <property name="wordWrap">
  523. <bool>false</bool>
  524. </property>
  525. </widget>
  526. <widget class="QComboBox" name="ComboxChannelIn">
  527. <property name="geometry">
  528. <rect>
  529. <x>103</x>
  530. <y>33</y>
  531. <width>120</width>
  532. <height>22</height>
  533. </rect>
  534. </property>
  535. <property name="palette">
  536. <palette>
  537. <active>
  538. <colorrole role="WindowText">
  539. <brush brushstyle="SolidPattern">
  540. <color alpha="255">
  541. <red>0</red>
  542. <green>0</green>
  543. <blue>0</blue>
  544. </color>
  545. </brush>
  546. </colorrole>
  547. <colorrole role="Button">
  548. <brush brushstyle="SolidPattern">
  549. <color alpha="255">
  550. <red>85</red>
  551. <green>170</green>
  552. <blue>255</blue>
  553. </color>
  554. </brush>
  555. </colorrole>
  556. <colorrole role="Light">
  557. <brush brushstyle="SolidPattern">
  558. <color alpha="255">
  559. <red>212</red>
  560. <green>234</green>
  561. <blue>255</blue>
  562. </color>
  563. </brush>
  564. </colorrole>
  565. <colorrole role="Midlight">
  566. <brush brushstyle="SolidPattern">
  567. <color alpha="255">
  568. <red>148</red>
  569. <green>202</green>
  570. <blue>255</blue>
  571. </color>
  572. </brush>
  573. </colorrole>
  574. <colorrole role="Dark">
  575. <brush brushstyle="SolidPattern">
  576. <color alpha="255">
  577. <red>42</red>
  578. <green>85</green>
  579. <blue>127</blue>
  580. </color>
  581. </brush>
  582. </colorrole>
  583. <colorrole role="Mid">
  584. <brush brushstyle="SolidPattern">
  585. <color alpha="255">
  586. <red>57</red>
  587. <green>113</green>
  588. <blue>170</blue>
  589. </color>
  590. </brush>
  591. </colorrole>
  592. <colorrole role="Text">
  593. <brush brushstyle="SolidPattern">
  594. <color alpha="255">
  595. <red>0</red>
  596. <green>0</green>
  597. <blue>0</blue>
  598. </color>
  599. </brush>
  600. </colorrole>
  601. <colorrole role="BrightText">
  602. <brush brushstyle="SolidPattern">
  603. <color alpha="255">
  604. <red>255</red>
  605. <green>255</green>
  606. <blue>255</blue>
  607. </color>
  608. </brush>
  609. </colorrole>
  610. <colorrole role="ButtonText">
  611. <brush brushstyle="SolidPattern">
  612. <color alpha="255">
  613. <red>0</red>
  614. <green>0</green>
  615. <blue>0</blue>
  616. </color>
  617. </brush>
  618. </colorrole>
  619. <colorrole role="Base">
  620. <brush brushstyle="SolidPattern">
  621. <color alpha="255">
  622. <red>255</red>
  623. <green>255</green>
  624. <blue>255</blue>
  625. </color>
  626. </brush>
  627. </colorrole>
  628. <colorrole role="Window">
  629. <brush brushstyle="SolidPattern">
  630. <color alpha="255">
  631. <red>212</red>
  632. <green>228</green>
  633. <blue>255</blue>
  634. </color>
  635. </brush>
  636. </colorrole>
  637. <colorrole role="Shadow">
  638. <brush brushstyle="SolidPattern">
  639. <color alpha="255">
  640. <red>0</red>
  641. <green>0</green>
  642. <blue>0</blue>
  643. </color>
  644. </brush>
  645. </colorrole>
  646. <colorrole role="Highlight">
  647. <brush brushstyle="SolidPattern">
  648. <color alpha="255">
  649. <red>0</red>
  650. <green>0</green>
  651. <blue>128</blue>
  652. </color>
  653. </brush>
  654. </colorrole>
  655. <colorrole role="HighlightedText">
  656. <brush brushstyle="SolidPattern">
  657. <color alpha="255">
  658. <red>255</red>
  659. <green>255</green>
  660. <blue>255</blue>
  661. </color>
  662. </brush>
  663. </colorrole>
  664. <colorrole role="Link">
  665. <brush brushstyle="SolidPattern">
  666. <color alpha="255">
  667. <red>0</red>
  668. <green>0</green>
  669. <blue>0</blue>
  670. </color>
  671. </brush>
  672. </colorrole>
  673. <colorrole role="LinkVisited">
  674. <brush brushstyle="SolidPattern">
  675. <color alpha="255">
  676. <red>0</red>
  677. <green>0</green>
  678. <blue>0</blue>
  679. </color>
  680. </brush>
  681. </colorrole>
  682. </active>
  683. <inactive>
  684. <colorrole role="WindowText">
  685. <brush brushstyle="SolidPattern">
  686. <color alpha="255">
  687. <red>0</red>
  688. <green>0</green>
  689. <blue>0</blue>
  690. </color>
  691. </brush>
  692. </colorrole>
  693. <colorrole role="Button">
  694. <brush brushstyle="SolidPattern">
  695. <color alpha="255">
  696. <red>85</red>
  697. <green>170</green>
  698. <blue>255</blue>
  699. </color>
  700. </brush>
  701. </colorrole>
  702. <colorrole role="Light">
  703. <brush brushstyle="SolidPattern">
  704. <color alpha="255">
  705. <red>212</red>
  706. <green>234</green>
  707. <blue>255</blue>
  708. </color>
  709. </brush>
  710. </colorrole>
  711. <colorrole role="Midlight">
  712. <brush brushstyle="SolidPattern">
  713. <color alpha="255">
  714. <red>123</red>
  715. <green>189</green>
  716. <blue>255</blue>
  717. </color>
  718. </brush>
  719. </colorrole>
  720. <colorrole role="Dark">
  721. <brush brushstyle="SolidPattern">
  722. <color alpha="255">
  723. <red>42</red>
  724. <green>85</green>
  725. <blue>127</blue>
  726. </color>
  727. </brush>
  728. </colorrole>
  729. <colorrole role="Mid">
  730. <brush brushstyle="SolidPattern">
  731. <color alpha="255">
  732. <red>57</red>
  733. <green>113</green>
  734. <blue>170</blue>
  735. </color>
  736. </brush>
  737. </colorrole>
  738. <colorrole role="Text">
  739. <brush brushstyle="SolidPattern">
  740. <color alpha="255">
  741. <red>0</red>
  742. <green>0</green>
  743. <blue>0</blue>
  744. </color>
  745. </brush>
  746. </colorrole>
  747. <colorrole role="BrightText">
  748. <brush brushstyle="SolidPattern">
  749. <color alpha="255">
  750. <red>255</red>
  751. <green>255</green>
  752. <blue>255</blue>
  753. </color>
  754. </brush>
  755. </colorrole>
  756. <colorrole role="ButtonText">
  757. <brush brushstyle="SolidPattern">
  758. <color alpha="255">
  759. <red>0</red>
  760. <green>0</green>
  761. <blue>0</blue>
  762. </color>
  763. </brush>
  764. </colorrole>
  765. <colorrole role="Base">
  766. <brush brushstyle="SolidPattern">
  767. <color alpha="255">
  768. <red>255</red>
  769. <green>255</green>
  770. <blue>255</blue>
  771. </color>
  772. </brush>
  773. </colorrole>
  774. <colorrole role="Window">
  775. <brush brushstyle="SolidPattern">
  776. <color alpha="255">
  777. <red>212</red>
  778. <green>228</green>
  779. <blue>255</blue>
  780. </color>
  781. </brush>
  782. </colorrole>
  783. <colorrole role="Shadow">
  784. <brush brushstyle="SolidPattern">
  785. <color alpha="255">
  786. <red>0</red>
  787. <green>0</green>
  788. <blue>0</blue>
  789. </color>
  790. </brush>
  791. </colorrole>
  792. <colorrole role="Highlight">
  793. <brush brushstyle="SolidPattern">
  794. <color alpha="255">
  795. <red>0</red>
  796. <green>0</green>
  797. <blue>128</blue>
  798. </color>
  799. </brush>
  800. </colorrole>
  801. <colorrole role="HighlightedText">
  802. <brush brushstyle="SolidPattern">
  803. <color alpha="255">
  804. <red>255</red>
  805. <green>255</green>
  806. <blue>255</blue>
  807. </color>
  808. </brush>
  809. </colorrole>
  810. <colorrole role="Link">
  811. <brush brushstyle="SolidPattern">
  812. <color alpha="255">
  813. <red>0</red>
  814. <green>0</green>
  815. <blue>255</blue>
  816. </color>
  817. </brush>
  818. </colorrole>
  819. <colorrole role="LinkVisited">
  820. <brush brushstyle="SolidPattern">
  821. <color alpha="255">
  822. <red>255</red>
  823. <green>0</green>
  824. <blue>255</blue>
  825. </color>
  826. </brush>
  827. </colorrole>
  828. </inactive>
  829. <disabled>
  830. <colorrole role="WindowText">
  831. <brush brushstyle="SolidPattern">
  832. <color alpha="255">
  833. <red>128</red>
  834. <green>128</green>
  835. <blue>128</blue>
  836. </color>
  837. </brush>
  838. </colorrole>
  839. <colorrole role="Button">
  840. <brush brushstyle="SolidPattern">
  841. <color alpha="255">
  842. <red>85</red>
  843. <green>170</green>
  844. <blue>255</blue>
  845. </color>
  846. </brush>
  847. </colorrole>
  848. <colorrole role="Light">
  849. <brush brushstyle="SolidPattern">
  850. <color alpha="255">
  851. <red>212</red>
  852. <green>234</green>
  853. <blue>255</blue>
  854. </color>
  855. </brush>
  856. </colorrole>
  857. <colorrole role="Midlight">
  858. <brush brushstyle="SolidPattern">
  859. <color alpha="255">
  860. <red>123</red>
  861. <green>189</green>
  862. <blue>255</blue>
  863. </color>
  864. </brush>
  865. </colorrole>
  866. <colorrole role="Dark">
  867. <brush brushstyle="SolidPattern">
  868. <color alpha="255">
  869. <red>42</red>
  870. <green>85</green>
  871. <blue>127</blue>
  872. </color>
  873. </brush>
  874. </colorrole>
  875. <colorrole role="Mid">
  876. <brush brushstyle="SolidPattern">
  877. <color alpha="255">
  878. <red>57</red>
  879. <green>113</green>
  880. <blue>170</blue>
  881. </color>
  882. </brush>
  883. </colorrole>
  884. <colorrole role="Text">
  885. <brush brushstyle="SolidPattern">
  886. <color alpha="255">
  887. <red>128</red>
  888. <green>128</green>
  889. <blue>128</blue>
  890. </color>
  891. </brush>
  892. </colorrole>
  893. <colorrole role="BrightText">
  894. <brush brushstyle="SolidPattern">
  895. <color alpha="255">
  896. <red>255</red>
  897. <green>255</green>
  898. <blue>255</blue>
  899. </color>
  900. </brush>
  901. </colorrole>
  902. <colorrole role="ButtonText">
  903. <brush brushstyle="SolidPattern">
  904. <color alpha="255">
  905. <red>128</red>
  906. <green>128</green>
  907. <blue>128</blue>
  908. </color>
  909. </brush>
  910. </colorrole>
  911. <colorrole role="Base">
  912. <brush brushstyle="SolidPattern">
  913. <color alpha="255">
  914. <red>255</red>
  915. <green>255</green>
  916. <blue>255</blue>
  917. </color>
  918. </brush>
  919. </colorrole>
  920. <colorrole role="Window">
  921. <brush brushstyle="SolidPattern">
  922. <color alpha="255">
  923. <red>212</red>
  924. <green>228</green>
  925. <blue>255</blue>
  926. </color>
  927. </brush>
  928. </colorrole>
  929. <colorrole role="Shadow">
  930. <brush brushstyle="SolidPattern">
  931. <color alpha="255">
  932. <red>0</red>
  933. <green>0</green>
  934. <blue>0</blue>
  935. </color>
  936. </brush>
  937. </colorrole>
  938. <colorrole role="Highlight">
  939. <brush brushstyle="SolidPattern">
  940. <color alpha="255">
  941. <red>0</red>
  942. <green>0</green>
  943. <blue>128</blue>
  944. </color>
  945. </brush>
  946. </colorrole>
  947. <colorrole role="HighlightedText">
  948. <brush brushstyle="SolidPattern">
  949. <color alpha="255">
  950. <red>255</red>
  951. <green>255</green>
  952. <blue>255</blue>
  953. </color>
  954. </brush>
  955. </colorrole>
  956. <colorrole role="Link">
  957. <brush brushstyle="SolidPattern">
  958. <color alpha="255">
  959. <red>0</red>
  960. <green>0</green>
  961. <blue>255</blue>
  962. </color>
  963. </brush>
  964. </colorrole>
  965. <colorrole role="LinkVisited">
  966. <brush brushstyle="SolidPattern">
  967. <color alpha="255">
  968. <red>255</red>
  969. <green>0</green>
  970. <blue>255</blue>
  971. </color>
  972. </brush>
  973. </colorrole>
  974. </disabled>
  975. </palette>
  976. </property>
  977. </widget>
  978. <widget class="QPushButton" name="ButAlarmInStart">
  979. <property name="geometry">
  980. <rect>
  981. <x>231</x>
  982. <y>31</y>
  983. <width>80</width>
  984. <height>25</height>
  985. </rect>
  986. </property>
  987. <property name="text">
  988. <string>Start</string>
  989. </property>
  990. </widget>
  991. <widget class="QPushButton" name="ButAlarmInStop">
  992. <property name="geometry">
  993. <rect>
  994. <x>315</x>
  995. <y>31</y>
  996. <width>80</width>
  997. <height>25</height>
  998. </rect>
  999. </property>
  1000. <property name="text">
  1001. <string>Stop</string>
  1002. </property>
  1003. </widget>
  1004. </widget>
  1005. <widget class="QFrame" name="frame6">
  1006. <property name="geometry">
  1007. <rect>
  1008. <x>409</x>
  1009. <y>61</y>
  1010. <width>400</width>
  1011. <height>70</height>
  1012. </rect>
  1013. </property>
  1014. <property name="frameShape">
  1015. <enum>QFrame::StyledPanel</enum>
  1016. </property>
  1017. <property name="frameShadow">
  1018. <enum>QFrame::Plain</enum>
  1019. </property>
  1020. <widget class="QLabel" name="textLabel2">
  1021. <property name="geometry">
  1022. <rect>
  1023. <x>10</x>
  1024. <y>4</y>
  1025. <width>201</width>
  1026. <height>20</height>
  1027. </rect>
  1028. </property>
  1029. <property name="text">
  1030. <string>Net Trigger Alarm Out</string>
  1031. </property>
  1032. <property name="wordWrap">
  1033. <bool>false</bool>
  1034. </property>
  1035. </widget>
  1036. <widget class="QComboBox" name="ComboxChannelOut">
  1037. <property name="geometry">
  1038. <rect>
  1039. <x>98</x>
  1040. <y>33</y>
  1041. <width>120</width>
  1042. <height>22</height>
  1043. </rect>
  1044. </property>
  1045. <property name="palette">
  1046. <palette>
  1047. <active>
  1048. <colorrole role="WindowText">
  1049. <brush brushstyle="SolidPattern">
  1050. <color alpha="255">
  1051. <red>0</red>
  1052. <green>0</green>
  1053. <blue>0</blue>
  1054. </color>
  1055. </brush>
  1056. </colorrole>
  1057. <colorrole role="Button">
  1058. <brush brushstyle="SolidPattern">
  1059. <color alpha="255">
  1060. <red>85</red>
  1061. <green>170</green>
  1062. <blue>255</blue>
  1063. </color>
  1064. </brush>
  1065. </colorrole>
  1066. <colorrole role="Light">
  1067. <brush brushstyle="SolidPattern">
  1068. <color alpha="255">
  1069. <red>212</red>
  1070. <green>234</green>
  1071. <blue>255</blue>
  1072. </color>
  1073. </brush>
  1074. </colorrole>
  1075. <colorrole role="Midlight">
  1076. <brush brushstyle="SolidPattern">
  1077. <color alpha="255">
  1078. <red>148</red>
  1079. <green>202</green>
  1080. <blue>255</blue>
  1081. </color>
  1082. </brush>
  1083. </colorrole>
  1084. <colorrole role="Dark">
  1085. <brush brushstyle="SolidPattern">
  1086. <color alpha="255">
  1087. <red>42</red>
  1088. <green>85</green>
  1089. <blue>127</blue>
  1090. </color>
  1091. </brush>
  1092. </colorrole>
  1093. <colorrole role="Mid">
  1094. <brush brushstyle="SolidPattern">
  1095. <color alpha="255">
  1096. <red>57</red>
  1097. <green>113</green>
  1098. <blue>170</blue>
  1099. </color>
  1100. </brush>
  1101. </colorrole>
  1102. <colorrole role="Text">
  1103. <brush brushstyle="SolidPattern">
  1104. <color alpha="255">
  1105. <red>0</red>
  1106. <green>0</green>
  1107. <blue>0</blue>
  1108. </color>
  1109. </brush>
  1110. </colorrole>
  1111. <colorrole role="BrightText">
  1112. <brush brushstyle="SolidPattern">
  1113. <color alpha="255">
  1114. <red>255</red>
  1115. <green>255</green>
  1116. <blue>255</blue>
  1117. </color>
  1118. </brush>
  1119. </colorrole>
  1120. <colorrole role="ButtonText">
  1121. <brush brushstyle="SolidPattern">
  1122. <color alpha="255">
  1123. <red>0</red>
  1124. <green>0</green>
  1125. <blue>0</blue>
  1126. </color>
  1127. </brush>
  1128. </colorrole>
  1129. <colorrole role="Base">
  1130. <brush brushstyle="SolidPattern">
  1131. <color alpha="255">
  1132. <red>255</red>
  1133. <green>255</green>
  1134. <blue>255</blue>
  1135. </color>
  1136. </brush>
  1137. </colorrole>
  1138. <colorrole role="Window">
  1139. <brush brushstyle="SolidPattern">
  1140. <color alpha="255">
  1141. <red>212</red>
  1142. <green>228</green>
  1143. <blue>255</blue>
  1144. </color>
  1145. </brush>
  1146. </colorrole>
  1147. <colorrole role="Shadow">
  1148. <brush brushstyle="SolidPattern">
  1149. <color alpha="255">
  1150. <red>0</red>
  1151. <green>0</green>
  1152. <blue>0</blue>
  1153. </color>
  1154. </brush>
  1155. </colorrole>
  1156. <colorrole role="Highlight">
  1157. <brush brushstyle="SolidPattern">
  1158. <color alpha="255">
  1159. <red>0</red>
  1160. <green>0</green>
  1161. <blue>128</blue>
  1162. </color>
  1163. </brush>
  1164. </colorrole>
  1165. <colorrole role="HighlightedText">
  1166. <brush brushstyle="SolidPattern">
  1167. <color alpha="255">
  1168. <red>255</red>
  1169. <green>255</green>
  1170. <blue>255</blue>
  1171. </color>
  1172. </brush>
  1173. </colorrole>
  1174. <colorrole role="Link">
  1175. <brush brushstyle="SolidPattern">
  1176. <color alpha="255">
  1177. <red>0</red>
  1178. <green>0</green>
  1179. <blue>0</blue>
  1180. </color>
  1181. </brush>
  1182. </colorrole>
  1183. <colorrole role="LinkVisited">
  1184. <brush brushstyle="SolidPattern">
  1185. <color alpha="255">
  1186. <red>0</red>
  1187. <green>0</green>
  1188. <blue>0</blue>
  1189. </color>
  1190. </brush>
  1191. </colorrole>
  1192. </active>
  1193. <inactive>
  1194. <colorrole role="WindowText">
  1195. <brush brushstyle="SolidPattern">
  1196. <color alpha="255">
  1197. <red>0</red>
  1198. <green>0</green>
  1199. <blue>0</blue>
  1200. </color>
  1201. </brush>
  1202. </colorrole>
  1203. <colorrole role="Button">
  1204. <brush brushstyle="SolidPattern">
  1205. <color alpha="255">
  1206. <red>85</red>
  1207. <green>170</green>
  1208. <blue>255</blue>
  1209. </color>
  1210. </brush>
  1211. </colorrole>
  1212. <colorrole role="Light">
  1213. <brush brushstyle="SolidPattern">
  1214. <color alpha="255">
  1215. <red>212</red>
  1216. <green>234</green>
  1217. <blue>255</blue>
  1218. </color>
  1219. </brush>
  1220. </colorrole>
  1221. <colorrole role="Midlight">
  1222. <brush brushstyle="SolidPattern">
  1223. <color alpha="255">
  1224. <red>123</red>
  1225. <green>189</green>
  1226. <blue>255</blue>
  1227. </color>
  1228. </brush>
  1229. </colorrole>
  1230. <colorrole role="Dark">
  1231. <brush brushstyle="SolidPattern">
  1232. <color alpha="255">
  1233. <red>42</red>
  1234. <green>85</green>
  1235. <blue>127</blue>
  1236. </color>
  1237. </brush>
  1238. </colorrole>
  1239. <colorrole role="Mid">
  1240. <brush brushstyle="SolidPattern">
  1241. <color alpha="255">
  1242. <red>57</red>
  1243. <green>113</green>
  1244. <blue>170</blue>
  1245. </color>
  1246. </brush>
  1247. </colorrole>
  1248. <colorrole role="Text">
  1249. <brush brushstyle="SolidPattern">
  1250. <color alpha="255">
  1251. <red>0</red>
  1252. <green>0</green>
  1253. <blue>0</blue>
  1254. </color>
  1255. </brush>
  1256. </colorrole>
  1257. <colorrole role="BrightText">
  1258. <brush brushstyle="SolidPattern">
  1259. <color alpha="255">
  1260. <red>255</red>
  1261. <green>255</green>
  1262. <blue>255</blue>
  1263. </color>
  1264. </brush>
  1265. </colorrole>
  1266. <colorrole role="ButtonText">
  1267. <brush brushstyle="SolidPattern">
  1268. <color alpha="255">
  1269. <red>0</red>
  1270. <green>0</green>
  1271. <blue>0</blue>
  1272. </color>
  1273. </brush>
  1274. </colorrole>
  1275. <colorrole role="Base">
  1276. <brush brushstyle="SolidPattern">
  1277. <color alpha="255">
  1278. <red>255</red>
  1279. <green>255</green>
  1280. <blue>255</blue>
  1281. </color>
  1282. </brush>
  1283. </colorrole>
  1284. <colorrole role="Window">
  1285. <brush brushstyle="SolidPattern">
  1286. <color alpha="255">
  1287. <red>212</red>
  1288. <green>228</green>
  1289. <blue>255</blue>
  1290. </color>
  1291. </brush>
  1292. </colorrole>
  1293. <colorrole role="Shadow">
  1294. <brush brushstyle="SolidPattern">
  1295. <color alpha="255">
  1296. <red>0</red>
  1297. <green>0</green>
  1298. <blue>0</blue>
  1299. </color>
  1300. </brush>
  1301. </colorrole>
  1302. <colorrole role="Highlight">
  1303. <brush brushstyle="SolidPattern">
  1304. <color alpha="255">
  1305. <red>0</red>
  1306. <green>0</green>
  1307. <blue>128</blue>
  1308. </color>
  1309. </brush>
  1310. </colorrole>
  1311. <colorrole role="HighlightedText">
  1312. <brush brushstyle="SolidPattern">
  1313. <color alpha="255">
  1314. <red>255</red>
  1315. <green>255</green>
  1316. <blue>255</blue>
  1317. </color>
  1318. </brush>
  1319. </colorrole>
  1320. <colorrole role="Link">
  1321. <brush brushstyle="SolidPattern">
  1322. <color alpha="255">
  1323. <red>0</red>
  1324. <green>0</green>
  1325. <blue>255</blue>
  1326. </color>
  1327. </brush>
  1328. </colorrole>
  1329. <colorrole role="LinkVisited">
  1330. <brush brushstyle="SolidPattern">
  1331. <color alpha="255">
  1332. <red>255</red>
  1333. <green>0</green>
  1334. <blue>255</blue>
  1335. </color>
  1336. </brush>
  1337. </colorrole>
  1338. </inactive>
  1339. <disabled>
  1340. <colorrole role="WindowText">
  1341. <brush brushstyle="SolidPattern">
  1342. <color alpha="255">
  1343. <red>128</red>
  1344. <green>128</green>
  1345. <blue>128</blue>
  1346. </color>
  1347. </brush>
  1348. </colorrole>
  1349. <colorrole role="Button">
  1350. <brush brushstyle="SolidPattern">
  1351. <color alpha="255">
  1352. <red>85</red>
  1353. <green>170</green>
  1354. <blue>255</blue>
  1355. </color>
  1356. </brush>
  1357. </colorrole>
  1358. <colorrole role="Light">
  1359. <brush brushstyle="SolidPattern">
  1360. <color alpha="255">
  1361. <red>212</red>
  1362. <green>234</green>
  1363. <blue>255</blue>
  1364. </color>
  1365. </brush>
  1366. </colorrole>
  1367. <colorrole role="Midlight">
  1368. <brush brushstyle="SolidPattern">
  1369. <color alpha="255">
  1370. <red>123</red>
  1371. <green>189</green>
  1372. <blue>255</blue>
  1373. </color>
  1374. </brush>
  1375. </colorrole>
  1376. <colorrole role="Dark">
  1377. <brush brushstyle="SolidPattern">
  1378. <color alpha="255">
  1379. <red>42</red>
  1380. <green>85</green>
  1381. <blue>127</blue>
  1382. </color>
  1383. </brush>
  1384. </colorrole>
  1385. <colorrole role="Mid">
  1386. <brush brushstyle="SolidPattern">
  1387. <color alpha="255">
  1388. <red>57</red>
  1389. <green>113</green>
  1390. <blue>170</blue>
  1391. </color>
  1392. </brush>
  1393. </colorrole>
  1394. <colorrole role="Text">
  1395. <brush brushstyle="SolidPattern">
  1396. <color alpha="255">
  1397. <red>128</red>
  1398. <green>128</green>
  1399. <blue>128</blue>
  1400. </color>
  1401. </brush>
  1402. </colorrole>
  1403. <colorrole role="BrightText">
  1404. <brush brushstyle="SolidPattern">
  1405. <color alpha="255">
  1406. <red>255</red>
  1407. <green>255</green>
  1408. <blue>255</blue>
  1409. </color>
  1410. </brush>
  1411. </colorrole>
  1412. <colorrole role="ButtonText">
  1413. <brush brushstyle="SolidPattern">
  1414. <color alpha="255">
  1415. <red>128</red>
  1416. <green>128</green>
  1417. <blue>128</blue>
  1418. </color>
  1419. </brush>
  1420. </colorrole>
  1421. <colorrole role="Base">
  1422. <brush brushstyle="SolidPattern">
  1423. <color alpha="255">
  1424. <red>255</red>
  1425. <green>255</green>
  1426. <blue>255</blue>
  1427. </color>
  1428. </brush>
  1429. </colorrole>
  1430. <colorrole role="Window">
  1431. <brush brushstyle="SolidPattern">
  1432. <color alpha="255">
  1433. <red>212</red>
  1434. <green>228</green>
  1435. <blue>255</blue>
  1436. </color>
  1437. </brush>
  1438. </colorrole>
  1439. <colorrole role="Shadow">
  1440. <brush brushstyle="SolidPattern">
  1441. <color alpha="255">
  1442. <red>0</red>
  1443. <green>0</green>
  1444. <blue>0</blue>
  1445. </color>
  1446. </brush>
  1447. </colorrole>
  1448. <colorrole role="Highlight">
  1449. <brush brushstyle="SolidPattern">
  1450. <color alpha="255">
  1451. <red>0</red>
  1452. <green>0</green>
  1453. <blue>128</blue>
  1454. </color>
  1455. </brush>
  1456. </colorrole>
  1457. <colorrole role="HighlightedText">
  1458. <brush brushstyle="SolidPattern">
  1459. <color alpha="255">
  1460. <red>255</red>
  1461. <green>255</green>
  1462. <blue>255</blue>
  1463. </color>
  1464. </brush>
  1465. </colorrole>
  1466. <colorrole role="Link">
  1467. <brush brushstyle="SolidPattern">
  1468. <color alpha="255">
  1469. <red>0</red>
  1470. <green>0</green>
  1471. <blue>255</blue>
  1472. </color>
  1473. </brush>
  1474. </colorrole>
  1475. <colorrole role="LinkVisited">
  1476. <brush brushstyle="SolidPattern">
  1477. <color alpha="255">
  1478. <red>255</red>
  1479. <green>0</green>
  1480. <blue>255</blue>
  1481. </color>
  1482. </brush>
  1483. </colorrole>
  1484. </disabled>
  1485. </palette>
  1486. </property>
  1487. </widget>
  1488. <widget class="QPushButton" name="ButAlarmOutStart">
  1489. <property name="geometry">
  1490. <rect>
  1491. <x>224</x>
  1492. <y>32</y>
  1493. <width>80</width>
  1494. <height>25</height>
  1495. </rect>
  1496. </property>
  1497. <property name="text">
  1498. <string>Start</string>
  1499. </property>
  1500. </widget>
  1501. <widget class="QPushButton" name="ButAlarmOutStop">
  1502. <property name="geometry">
  1503. <rect>
  1504. <x>307</x>
  1505. <y>32</y>
  1506. <width>80</width>
  1507. <height>25</height>
  1508. </rect>
  1509. </property>
  1510. <property name="text">
  1511. <string>Stop</string>
  1512. </property>
  1513. </widget>
  1514. <widget class="QLabel" name="textLabel3_2">
  1515. <property name="geometry">
  1516. <rect>
  1517. <x>8</x>
  1518. <y>31</y>
  1519. <width>91</width>
  1520. <height>31</height>
  1521. </rect>
  1522. </property>
  1523. <property name="text">
  1524. <string>Channel No.</string>
  1525. </property>
  1526. <property name="wordWrap">
  1527. <bool>false</bool>
  1528. </property>
  1529. </widget>
  1530. </widget>
  1531. <widget class="QFrame" name="frame3">
  1532. <property name="geometry">
  1533. <rect>
  1534. <x>10</x>
  1535. <y>11</y>
  1536. <width>800</width>
  1537. <height>42</height>
  1538. </rect>
  1539. </property>
  1540. <property name="frameShape">
  1541. <enum>QFrame::StyledPanel</enum>
  1542. </property>
  1543. <property name="frameShadow">
  1544. <enum>QFrame::Plain</enum>
  1545. </property>
  1546. <widget class="QLabel" name="IP">
  1547. <property name="geometry">
  1548. <rect>
  1549. <x>5</x>
  1550. <y>10</y>
  1551. <width>18</width>
  1552. <height>22</height>
  1553. </rect>
  1554. </property>
  1555. <property name="text">
  1556. <string>IP</string>
  1557. </property>
  1558. <property name="wordWrap">
  1559. <bool>false</bool>
  1560. </property>
  1561. </widget>
  1562. <widget class="QLabel" name="Port">
  1563. <property name="geometry">
  1564. <rect>
  1565. <x>123</x>
  1566. <y>10</y>
  1567. <width>27</width>
  1568. <height>22</height>
  1569. </rect>
  1570. </property>
  1571. <property name="text">
  1572. <string>Port</string>
  1573. </property>
  1574. <property name="wordWrap">
  1575. <bool>false</bool>
  1576. </property>
  1577. </widget>
  1578. <widget class="QLabel" name="UserName">
  1579. <property name="geometry">
  1580. <rect>
  1581. <x>246</x>
  1582. <y>10</y>
  1583. <width>81</width>
  1584. <height>22</height>
  1585. </rect>
  1586. </property>
  1587. <property name="text">
  1588. <string>User Name</string>
  1589. </property>
  1590. <property name="wordWrap">
  1591. <bool>false</bool>
  1592. </property>
  1593. </widget>
  1594. <widget class="QLabel" name="PassWord">
  1595. <property name="geometry">
  1596. <rect>
  1597. <x>425</x>
  1598. <y>10</y>
  1599. <width>71</width>
  1600. <height>22</height>
  1601. </rect>
  1602. </property>
  1603. <property name="text">
  1604. <string>PassWord</string>
  1605. </property>
  1606. <property name="wordWrap">
  1607. <bool>false</bool>
  1608. </property>
  1609. </widget>
  1610. <widget class="QLineEdit" name="lineEdit1">
  1611. <property name="geometry">
  1612. <rect>
  1613. <x>29</x>
  1614. <y>10</y>
  1615. <width>80</width>
  1616. <height>22</height>
  1617. </rect>
  1618. </property>
  1619. <property name="text">
  1620. <string>10.7.4.23</string>
  1621. </property>
  1622. </widget>
  1623. <widget class="QLineEdit" name="lineEdit2">
  1624. <property name="geometry">
  1625. <rect>
  1626. <x>156</x>
  1627. <y>10</y>
  1628. <width>80</width>
  1629. <height>22</height>
  1630. </rect>
  1631. </property>
  1632. <property name="text">
  1633. <string>37777</string>
  1634. </property>
  1635. </widget>
  1636. <widget class="QLineEdit" name="lineEdit4">
  1637. <property name="geometry">
  1638. <rect>
  1639. <x>332</x>
  1640. <y>10</y>
  1641. <width>80</width>
  1642. <height>22</height>
  1643. </rect>
  1644. </property>
  1645. <property name="text">
  1646. <string>admin</string>
  1647. </property>
  1648. </widget>
  1649. <widget class="QPushButton" name="Logout">
  1650. <property name="geometry">
  1651. <rect>
  1652. <x>707</x>
  1653. <y>7</y>
  1654. <width>80</width>
  1655. <height>25</height>
  1656. </rect>
  1657. </property>
  1658. <property name="palette">
  1659. <palette>
  1660. <active>
  1661. <colorrole role="WindowText">
  1662. <brush brushstyle="SolidPattern">
  1663. <color alpha="255">
  1664. <red>0</red>
  1665. <green>0</green>
  1666. <blue>0</blue>
  1667. </color>
  1668. </brush>
  1669. </colorrole>
  1670. <colorrole role="Button">
  1671. <brush brushstyle="SolidPattern">
  1672. <color alpha="255">
  1673. <red>85</red>
  1674. <green>170</green>
  1675. <blue>255</blue>
  1676. </color>
  1677. </brush>
  1678. </colorrole>
  1679. <colorrole role="Light">
  1680. <brush brushstyle="SolidPattern">
  1681. <color alpha="255">
  1682. <red>212</red>
  1683. <green>234</green>
  1684. <blue>255</blue>
  1685. </color>
  1686. </brush>
  1687. </colorrole>
  1688. <colorrole role="Midlight">
  1689. <brush brushstyle="SolidPattern">
  1690. <color alpha="255">
  1691. <red>148</red>
  1692. <green>202</green>
  1693. <blue>255</blue>
  1694. </color>
  1695. </brush>
  1696. </colorrole>
  1697. <colorrole role="Dark">
  1698. <brush brushstyle="SolidPattern">
  1699. <color alpha="255">
  1700. <red>42</red>
  1701. <green>85</green>
  1702. <blue>127</blue>
  1703. </color>
  1704. </brush>
  1705. </colorrole>
  1706. <colorrole role="Mid">
  1707. <brush brushstyle="SolidPattern">
  1708. <color alpha="255">
  1709. <red>57</red>
  1710. <green>113</green>
  1711. <blue>170</blue>
  1712. </color>
  1713. </brush>
  1714. </colorrole>
  1715. <colorrole role="Text">
  1716. <brush brushstyle="SolidPattern">
  1717. <color alpha="255">
  1718. <red>0</red>
  1719. <green>0</green>
  1720. <blue>0</blue>
  1721. </color>
  1722. </brush>
  1723. </colorrole>
  1724. <colorrole role="BrightText">
  1725. <brush brushstyle="SolidPattern">
  1726. <color alpha="255">
  1727. <red>255</red>
  1728. <green>255</green>
  1729. <blue>255</blue>
  1730. </color>
  1731. </brush>
  1732. </colorrole>
  1733. <colorrole role="ButtonText">
  1734. <brush brushstyle="SolidPattern">
  1735. <color alpha="255">
  1736. <red>0</red>
  1737. <green>0</green>
  1738. <blue>0</blue>
  1739. </color>
  1740. </brush>
  1741. </colorrole>
  1742. <colorrole role="Base">
  1743. <brush brushstyle="SolidPattern">
  1744. <color alpha="255">
  1745. <red>255</red>
  1746. <green>255</green>
  1747. <blue>255</blue>
  1748. </color>
  1749. </brush>
  1750. </colorrole>
  1751. <colorrole role="Window">
  1752. <brush brushstyle="SolidPattern">
  1753. <color alpha="255">
  1754. <red>212</red>
  1755. <green>228</green>
  1756. <blue>255</blue>
  1757. </color>
  1758. </brush>
  1759. </colorrole>
  1760. <colorrole role="Shadow">
  1761. <brush brushstyle="SolidPattern">
  1762. <color alpha="255">
  1763. <red>0</red>
  1764. <green>0</green>
  1765. <blue>0</blue>
  1766. </color>
  1767. </brush>
  1768. </colorrole>
  1769. <colorrole role="Highlight">
  1770. <brush brushstyle="SolidPattern">
  1771. <color alpha="255">
  1772. <red>0</red>
  1773. <green>0</green>
  1774. <blue>128</blue>
  1775. </color>
  1776. </brush>
  1777. </colorrole>
  1778. <colorrole role="HighlightedText">
  1779. <brush brushstyle="SolidPattern">
  1780. <color alpha="255">
  1781. <red>255</red>
  1782. <green>255</green>
  1783. <blue>255</blue>
  1784. </color>
  1785. </brush>
  1786. </colorrole>
  1787. <colorrole role="Link">
  1788. <brush brushstyle="SolidPattern">
  1789. <color alpha="255">
  1790. <red>0</red>
  1791. <green>0</green>
  1792. <blue>0</blue>
  1793. </color>
  1794. </brush>
  1795. </colorrole>
  1796. <colorrole role="LinkVisited">
  1797. <brush brushstyle="SolidPattern">
  1798. <color alpha="255">
  1799. <red>0</red>
  1800. <green>0</green>
  1801. <blue>0</blue>
  1802. </color>
  1803. </brush>
  1804. </colorrole>
  1805. </active>
  1806. <inactive>
  1807. <colorrole role="WindowText">
  1808. <brush brushstyle="SolidPattern">
  1809. <color alpha="255">
  1810. <red>0</red>
  1811. <green>0</green>
  1812. <blue>0</blue>
  1813. </color>
  1814. </brush>
  1815. </colorrole>
  1816. <colorrole role="Button">
  1817. <brush brushstyle="SolidPattern">
  1818. <color alpha="255">
  1819. <red>85</red>
  1820. <green>170</green>
  1821. <blue>255</blue>
  1822. </color>
  1823. </brush>
  1824. </colorrole>
  1825. <colorrole role="Light">
  1826. <brush brushstyle="SolidPattern">
  1827. <color alpha="255">
  1828. <red>212</red>
  1829. <green>234</green>
  1830. <blue>255</blue>
  1831. </color>
  1832. </brush>
  1833. </colorrole>
  1834. <colorrole role="Midlight">
  1835. <brush brushstyle="SolidPattern">
  1836. <color alpha="255">
  1837. <red>123</red>
  1838. <green>189</green>
  1839. <blue>255</blue>
  1840. </color>
  1841. </brush>
  1842. </colorrole>
  1843. <colorrole role="Dark">
  1844. <brush brushstyle="SolidPattern">
  1845. <color alpha="255">
  1846. <red>42</red>
  1847. <green>85</green>
  1848. <blue>127</blue>
  1849. </color>
  1850. </brush>
  1851. </colorrole>
  1852. <colorrole role="Mid">
  1853. <brush brushstyle="SolidPattern">
  1854. <color alpha="255">
  1855. <red>57</red>
  1856. <green>113</green>
  1857. <blue>170</blue>
  1858. </color>
  1859. </brush>
  1860. </colorrole>
  1861. <colorrole role="Text">
  1862. <brush brushstyle="SolidPattern">
  1863. <color alpha="255">
  1864. <red>0</red>
  1865. <green>0</green>
  1866. <blue>0</blue>
  1867. </color>
  1868. </brush>
  1869. </colorrole>
  1870. <colorrole role="BrightText">
  1871. <brush brushstyle="SolidPattern">
  1872. <color alpha="255">
  1873. <red>255</red>
  1874. <green>255</green>
  1875. <blue>255</blue>
  1876. </color>
  1877. </brush>
  1878. </colorrole>
  1879. <colorrole role="ButtonText">
  1880. <brush brushstyle="SolidPattern">
  1881. <color alpha="255">
  1882. <red>0</red>
  1883. <green>0</green>
  1884. <blue>0</blue>
  1885. </color>
  1886. </brush>
  1887. </colorrole>
  1888. <colorrole role="Base">
  1889. <brush brushstyle="SolidPattern">
  1890. <color alpha="255">
  1891. <red>255</red>
  1892. <green>255</green>
  1893. <blue>255</blue>
  1894. </color>
  1895. </brush>
  1896. </colorrole>
  1897. <colorrole role="Window">
  1898. <brush brushstyle="SolidPattern">
  1899. <color alpha="255">
  1900. <red>212</red>
  1901. <green>228</green>
  1902. <blue>255</blue>
  1903. </color>
  1904. </brush>
  1905. </colorrole>
  1906. <colorrole role="Shadow">
  1907. <brush brushstyle="SolidPattern">
  1908. <color alpha="255">
  1909. <red>0</red>
  1910. <green>0</green>
  1911. <blue>0</blue>
  1912. </color>
  1913. </brush>
  1914. </colorrole>
  1915. <colorrole role="Highlight">
  1916. <brush brushstyle="SolidPattern">
  1917. <color alpha="255">
  1918. <red>0</red>
  1919. <green>0</green>
  1920. <blue>128</blue>
  1921. </color>
  1922. </brush>
  1923. </colorrole>
  1924. <colorrole role="HighlightedText">
  1925. <brush brushstyle="SolidPattern">
  1926. <color alpha="255">
  1927. <red>255</red>
  1928. <green>255</green>
  1929. <blue>255</blue>
  1930. </color>
  1931. </brush>
  1932. </colorrole>
  1933. <colorrole role="Link">
  1934. <brush brushstyle="SolidPattern">
  1935. <color alpha="255">
  1936. <red>0</red>
  1937. <green>0</green>
  1938. <blue>255</blue>
  1939. </color>
  1940. </brush>
  1941. </colorrole>
  1942. <colorrole role="LinkVisited">
  1943. <brush brushstyle="SolidPattern">
  1944. <color alpha="255">
  1945. <red>255</red>
  1946. <green>0</green>
  1947. <blue>255</blue>
  1948. </color>
  1949. </brush>
  1950. </colorrole>
  1951. </inactive>
  1952. <disabled>
  1953. <colorrole role="WindowText">
  1954. <brush brushstyle="SolidPattern">
  1955. <color alpha="255">
  1956. <red>128</red>
  1957. <green>128</green>
  1958. <blue>128</blue>
  1959. </color>
  1960. </brush>
  1961. </colorrole>
  1962. <colorrole role="Button">
  1963. <brush brushstyle="SolidPattern">
  1964. <color alpha="255">
  1965. <red>85</red>
  1966. <green>170</green>
  1967. <blue>255</blue>
  1968. </color>
  1969. </brush>
  1970. </colorrole>
  1971. <colorrole role="Light">
  1972. <brush brushstyle="SolidPattern">
  1973. <color alpha="255">
  1974. <red>212</red>
  1975. <green>234</green>
  1976. <blue>255</blue>
  1977. </color>
  1978. </brush>
  1979. </colorrole>
  1980. <colorrole role="Midlight">
  1981. <brush brushstyle="SolidPattern">
  1982. <color alpha="255">
  1983. <red>123</red>
  1984. <green>189</green>
  1985. <blue>255</blue>
  1986. </color>
  1987. </brush>
  1988. </colorrole>
  1989. <colorrole role="Dark">
  1990. <brush brushstyle="SolidPattern">
  1991. <color alpha="255">
  1992. <red>42</red>
  1993. <green>85</green>
  1994. <blue>127</blue>
  1995. </color>
  1996. </brush>
  1997. </colorrole>
  1998. <colorrole role="Mid">
  1999. <brush brushstyle="SolidPattern">
  2000. <color alpha="255">
  2001. <red>57</red>
  2002. <green>113</green>
  2003. <blue>170</blue>
  2004. </color>
  2005. </brush>
  2006. </colorrole>
  2007. <colorrole role="Text">
  2008. <brush brushstyle="SolidPattern">
  2009. <color alpha="255">
  2010. <red>128</red>
  2011. <green>128</green>
  2012. <blue>128</blue>
  2013. </color>
  2014. </brush>
  2015. </colorrole>
  2016. <colorrole role="BrightText">
  2017. <brush brushstyle="SolidPattern">
  2018. <color alpha="255">
  2019. <red>255</red>
  2020. <green>255</green>
  2021. <blue>255</blue>
  2022. </color>
  2023. </brush>
  2024. </colorrole>
  2025. <colorrole role="ButtonText">
  2026. <brush brushstyle="SolidPattern">
  2027. <color alpha="255">
  2028. <red>128</red>
  2029. <green>128</green>
  2030. <blue>128</blue>
  2031. </color>
  2032. </brush>
  2033. </colorrole>
  2034. <colorrole role="Base">
  2035. <brush brushstyle="SolidPattern">
  2036. <color alpha="255">
  2037. <red>255</red>
  2038. <green>255</green>
  2039. <blue>255</blue>
  2040. </color>
  2041. </brush>
  2042. </colorrole>
  2043. <colorrole role="Window">
  2044. <brush brushstyle="SolidPattern">
  2045. <color alpha="255">
  2046. <red>212</red>
  2047. <green>228</green>
  2048. <blue>255</blue>
  2049. </color>
  2050. </brush>
  2051. </colorrole>
  2052. <colorrole role="Shadow">
  2053. <brush brushstyle="SolidPattern">
  2054. <color alpha="255">
  2055. <red>0</red>
  2056. <green>0</green>
  2057. <blue>0</blue>
  2058. </color>
  2059. </brush>
  2060. </colorrole>
  2061. <colorrole role="Highlight">
  2062. <brush brushstyle="SolidPattern">
  2063. <color alpha="255">
  2064. <red>0</red>
  2065. <green>0</green>
  2066. <blue>128</blue>
  2067. </color>
  2068. </brush>
  2069. </colorrole>
  2070. <colorrole role="HighlightedText">
  2071. <brush brushstyle="SolidPattern">
  2072. <color alpha="255">
  2073. <red>255</red>
  2074. <green>255</green>
  2075. <blue>255</blue>
  2076. </color>
  2077. </brush>
  2078. </colorrole>
  2079. <colorrole role="Link">
  2080. <brush brushstyle="SolidPattern">
  2081. <color alpha="255">
  2082. <red>0</red>
  2083. <green>0</green>
  2084. <blue>255</blue>
  2085. </color>
  2086. </brush>
  2087. </colorrole>
  2088. <colorrole role="LinkVisited">
  2089. <brush brushstyle="SolidPattern">
  2090. <color alpha="255">
  2091. <red>255</red>
  2092. <green>0</green>
  2093. <blue>255</blue>
  2094. </color>
  2095. </brush>
  2096. </colorrole>
  2097. </disabled>
  2098. </palette>
  2099. </property>
  2100. <property name="text">
  2101. <string>Logout</string>
  2102. </property>
  2103. </widget>
  2104. <widget class="QPushButton" name="Login">
  2105. <property name="geometry">
  2106. <rect>
  2107. <x>621</x>
  2108. <y>7</y>
  2109. <width>80</width>
  2110. <height>25</height>
  2111. </rect>
  2112. </property>
  2113. <property name="palette">
  2114. <palette>
  2115. <active>
  2116. <colorrole role="WindowText">
  2117. <brush brushstyle="SolidPattern">
  2118. <color alpha="255">
  2119. <red>0</red>
  2120. <green>0</green>
  2121. <blue>0</blue>
  2122. </color>
  2123. </brush>
  2124. </colorrole>
  2125. <colorrole role="Button">
  2126. <brush brushstyle="SolidPattern">
  2127. <color alpha="255">
  2128. <red>85</red>
  2129. <green>170</green>
  2130. <blue>255</blue>
  2131. </color>
  2132. </brush>
  2133. </colorrole>
  2134. <colorrole role="Light">
  2135. <brush brushstyle="SolidPattern">
  2136. <color alpha="255">
  2137. <red>212</red>
  2138. <green>234</green>
  2139. <blue>255</blue>
  2140. </color>
  2141. </brush>
  2142. </colorrole>
  2143. <colorrole role="Midlight">
  2144. <brush brushstyle="SolidPattern">
  2145. <color alpha="255">
  2146. <red>148</red>
  2147. <green>202</green>
  2148. <blue>255</blue>
  2149. </color>
  2150. </brush>
  2151. </colorrole>
  2152. <colorrole role="Dark">
  2153. <brush brushstyle="SolidPattern">
  2154. <color alpha="255">
  2155. <red>42</red>
  2156. <green>85</green>
  2157. <blue>127</blue>
  2158. </color>
  2159. </brush>
  2160. </colorrole>
  2161. <colorrole role="Mid">
  2162. <brush brushstyle="SolidPattern">
  2163. <color alpha="255">
  2164. <red>57</red>
  2165. <green>113</green>
  2166. <blue>170</blue>
  2167. </color>
  2168. </brush>
  2169. </colorrole>
  2170. <colorrole role="Text">
  2171. <brush brushstyle="SolidPattern">
  2172. <color alpha="255">
  2173. <red>0</red>
  2174. <green>0</green>
  2175. <blue>0</blue>
  2176. </color>
  2177. </brush>
  2178. </colorrole>
  2179. <colorrole role="BrightText">
  2180. <brush brushstyle="SolidPattern">
  2181. <color alpha="255">
  2182. <red>255</red>
  2183. <green>255</green>
  2184. <blue>255</blue>
  2185. </color>
  2186. </brush>
  2187. </colorrole>
  2188. <colorrole role="ButtonText">
  2189. <brush brushstyle="SolidPattern">
  2190. <color alpha="255">
  2191. <red>0</red>
  2192. <green>0</green>
  2193. <blue>0</blue>
  2194. </color>
  2195. </brush>
  2196. </colorrole>
  2197. <colorrole role="Base">
  2198. <brush brushstyle="SolidPattern">
  2199. <color alpha="255">
  2200. <red>255</red>
  2201. <green>255</green>
  2202. <blue>255</blue>
  2203. </color>
  2204. </brush>
  2205. </colorrole>
  2206. <colorrole role="Window">
  2207. <brush brushstyle="SolidPattern">
  2208. <color alpha="255">
  2209. <red>212</red>
  2210. <green>228</green>
  2211. <blue>255</blue>
  2212. </color>
  2213. </brush>
  2214. </colorrole>
  2215. <colorrole role="Shadow">
  2216. <brush brushstyle="SolidPattern">
  2217. <color alpha="255">
  2218. <red>0</red>
  2219. <green>0</green>
  2220. <blue>0</blue>
  2221. </color>
  2222. </brush>
  2223. </colorrole>
  2224. <colorrole role="Highlight">
  2225. <brush brushstyle="SolidPattern">
  2226. <color alpha="255">
  2227. <red>0</red>
  2228. <green>0</green>
  2229. <blue>128</blue>
  2230. </color>
  2231. </brush>
  2232. </colorrole>
  2233. <colorrole role="HighlightedText">
  2234. <brush brushstyle="SolidPattern">
  2235. <color alpha="255">
  2236. <red>255</red>
  2237. <green>255</green>
  2238. <blue>255</blue>
  2239. </color>
  2240. </brush>
  2241. </colorrole>
  2242. <colorrole role="Link">
  2243. <brush brushstyle="SolidPattern">
  2244. <color alpha="255">
  2245. <red>0</red>
  2246. <green>0</green>
  2247. <blue>0</blue>
  2248. </color>
  2249. </brush>
  2250. </colorrole>
  2251. <colorrole role="LinkVisited">
  2252. <brush brushstyle="SolidPattern">
  2253. <color alpha="255">
  2254. <red>0</red>
  2255. <green>0</green>
  2256. <blue>0</blue>
  2257. </color>
  2258. </brush>
  2259. </colorrole>
  2260. </active>
  2261. <inactive>
  2262. <colorrole role="WindowText">
  2263. <brush brushstyle="SolidPattern">
  2264. <color alpha="255">
  2265. <red>0</red>
  2266. <green>0</green>
  2267. <blue>0</blue>
  2268. </color>
  2269. </brush>
  2270. </colorrole>
  2271. <colorrole role="Button">
  2272. <brush brushstyle="SolidPattern">
  2273. <color alpha="255">
  2274. <red>85</red>
  2275. <green>170</green>
  2276. <blue>255</blue>
  2277. </color>
  2278. </brush>
  2279. </colorrole>
  2280. <colorrole role="Light">
  2281. <brush brushstyle="SolidPattern">
  2282. <color alpha="255">
  2283. <red>212</red>
  2284. <green>234</green>
  2285. <blue>255</blue>
  2286. </color>
  2287. </brush>
  2288. </colorrole>
  2289. <colorrole role="Midlight">
  2290. <brush brushstyle="SolidPattern">
  2291. <color alpha="255">
  2292. <red>123</red>
  2293. <green>189</green>
  2294. <blue>255</blue>
  2295. </color>
  2296. </brush>
  2297. </colorrole>
  2298. <colorrole role="Dark">
  2299. <brush brushstyle="SolidPattern">
  2300. <color alpha="255">
  2301. <red>42</red>
  2302. <green>85</green>
  2303. <blue>127</blue>
  2304. </color>
  2305. </brush>
  2306. </colorrole>
  2307. <colorrole role="Mid">
  2308. <brush brushstyle="SolidPattern">
  2309. <color alpha="255">
  2310. <red>57</red>
  2311. <green>113</green>
  2312. <blue>170</blue>
  2313. </color>
  2314. </brush>
  2315. </colorrole>
  2316. <colorrole role="Text">
  2317. <brush brushstyle="SolidPattern">
  2318. <color alpha="255">
  2319. <red>0</red>
  2320. <green>0</green>
  2321. <blue>0</blue>
  2322. </color>
  2323. </brush>
  2324. </colorrole>
  2325. <colorrole role="BrightText">
  2326. <brush brushstyle="SolidPattern">
  2327. <color alpha="255">
  2328. <red>255</red>
  2329. <green>255</green>
  2330. <blue>255</blue>
  2331. </color>
  2332. </brush>
  2333. </colorrole>
  2334. <colorrole role="ButtonText">
  2335. <brush brushstyle="SolidPattern">
  2336. <color alpha="255">
  2337. <red>0</red>
  2338. <green>0</green>
  2339. <blue>0</blue>
  2340. </color>
  2341. </brush>
  2342. </colorrole>
  2343. <colorrole role="Base">
  2344. <brush brushstyle="SolidPattern">
  2345. <color alpha="255">
  2346. <red>255</red>
  2347. <green>255</green>
  2348. <blue>255</blue>
  2349. </color>
  2350. </brush>
  2351. </colorrole>
  2352. <colorrole role="Window">
  2353. <brush brushstyle="SolidPattern">
  2354. <color alpha="255">
  2355. <red>212</red>
  2356. <green>228</green>
  2357. <blue>255</blue>
  2358. </color>
  2359. </brush>
  2360. </colorrole>
  2361. <colorrole role="Shadow">
  2362. <brush brushstyle="SolidPattern">
  2363. <color alpha="255">
  2364. <red>0</red>
  2365. <green>0</green>
  2366. <blue>0</blue>
  2367. </color>
  2368. </brush>
  2369. </colorrole>
  2370. <colorrole role="Highlight">
  2371. <brush brushstyle="SolidPattern">
  2372. <color alpha="255">
  2373. <red>0</red>
  2374. <green>0</green>
  2375. <blue>128</blue>
  2376. </color>
  2377. </brush>
  2378. </colorrole>
  2379. <colorrole role="HighlightedText">
  2380. <brush brushstyle="SolidPattern">
  2381. <color alpha="255">
  2382. <red>255</red>
  2383. <green>255</green>
  2384. <blue>255</blue>
  2385. </color>
  2386. </brush>
  2387. </colorrole>
  2388. <colorrole role="Link">
  2389. <brush brushstyle="SolidPattern">
  2390. <color alpha="255">
  2391. <red>0</red>
  2392. <green>0</green>
  2393. <blue>255</blue>
  2394. </color>
  2395. </brush>
  2396. </colorrole>
  2397. <colorrole role="LinkVisited">
  2398. <brush brushstyle="SolidPattern">
  2399. <color alpha="255">
  2400. <red>255</red>
  2401. <green>0</green>
  2402. <blue>255</blue>
  2403. </color>
  2404. </brush>
  2405. </colorrole>
  2406. </inactive>
  2407. <disabled>
  2408. <colorrole role="WindowText">
  2409. <brush brushstyle="SolidPattern">
  2410. <color alpha="255">
  2411. <red>128</red>
  2412. <green>128</green>
  2413. <blue>128</blue>
  2414. </color>
  2415. </brush>
  2416. </colorrole>
  2417. <colorrole role="Button">
  2418. <brush brushstyle="SolidPattern">
  2419. <color alpha="255">
  2420. <red>85</red>
  2421. <green>170</green>
  2422. <blue>255</blue>
  2423. </color>
  2424. </brush>
  2425. </colorrole>
  2426. <colorrole role="Light">
  2427. <brush brushstyle="SolidPattern">
  2428. <color alpha="255">
  2429. <red>212</red>
  2430. <green>234</green>
  2431. <blue>255</blue>
  2432. </color>
  2433. </brush>
  2434. </colorrole>
  2435. <colorrole role="Midlight">
  2436. <brush brushstyle="SolidPattern">
  2437. <color alpha="255">
  2438. <red>123</red>
  2439. <green>189</green>
  2440. <blue>255</blue>
  2441. </color>
  2442. </brush>
  2443. </colorrole>
  2444. <colorrole role="Dark">
  2445. <brush brushstyle="SolidPattern">
  2446. <color alpha="255">
  2447. <red>42</red>
  2448. <green>85</green>
  2449. <blue>127</blue>
  2450. </color>
  2451. </brush>
  2452. </colorrole>
  2453. <colorrole role="Mid">
  2454. <brush brushstyle="SolidPattern">
  2455. <color alpha="255">
  2456. <red>57</red>
  2457. <green>113</green>
  2458. <blue>170</blue>
  2459. </color>
  2460. </brush>
  2461. </colorrole>
  2462. <colorrole role="Text">
  2463. <brush brushstyle="SolidPattern">
  2464. <color alpha="255">
  2465. <red>128</red>
  2466. <green>128</green>
  2467. <blue>128</blue>
  2468. </color>
  2469. </brush>
  2470. </colorrole>
  2471. <colorrole role="BrightText">
  2472. <brush brushstyle="SolidPattern">
  2473. <color alpha="255">
  2474. <red>255</red>
  2475. <green>255</green>
  2476. <blue>255</blue>
  2477. </color>
  2478. </brush>
  2479. </colorrole>
  2480. <colorrole role="ButtonText">
  2481. <brush brushstyle="SolidPattern">
  2482. <color alpha="255">
  2483. <red>128</red>
  2484. <green>128</green>
  2485. <blue>128</blue>
  2486. </color>
  2487. </brush>
  2488. </colorrole>
  2489. <colorrole role="Base">
  2490. <brush brushstyle="SolidPattern">
  2491. <color alpha="255">
  2492. <red>255</red>
  2493. <green>255</green>
  2494. <blue>255</blue>
  2495. </color>
  2496. </brush>
  2497. </colorrole>
  2498. <colorrole role="Window">
  2499. <brush brushstyle="SolidPattern">
  2500. <color alpha="255">
  2501. <red>212</red>
  2502. <green>228</green>
  2503. <blue>255</blue>
  2504. </color>
  2505. </brush>
  2506. </colorrole>
  2507. <colorrole role="Shadow">
  2508. <brush brushstyle="SolidPattern">
  2509. <color alpha="255">
  2510. <red>0</red>
  2511. <green>0</green>
  2512. <blue>0</blue>
  2513. </color>
  2514. </brush>
  2515. </colorrole>
  2516. <colorrole role="Highlight">
  2517. <brush brushstyle="SolidPattern">
  2518. <color alpha="255">
  2519. <red>0</red>
  2520. <green>0</green>
  2521. <blue>128</blue>
  2522. </color>
  2523. </brush>
  2524. </colorrole>
  2525. <colorrole role="HighlightedText">
  2526. <brush brushstyle="SolidPattern">
  2527. <color alpha="255">
  2528. <red>255</red>
  2529. <green>255</green>
  2530. <blue>255</blue>
  2531. </color>
  2532. </brush>
  2533. </colorrole>
  2534. <colorrole role="Link">
  2535. <brush brushstyle="SolidPattern">
  2536. <color alpha="255">
  2537. <red>0</red>
  2538. <green>0</green>
  2539. <blue>255</blue>
  2540. </color>
  2541. </brush>
  2542. </colorrole>
  2543. <colorrole role="LinkVisited">
  2544. <brush brushstyle="SolidPattern">
  2545. <color alpha="255">
  2546. <red>255</red>
  2547. <green>0</green>
  2548. <blue>255</blue>
  2549. </color>
  2550. </brush>
  2551. </colorrole>
  2552. </disabled>
  2553. </palette>
  2554. </property>
  2555. <property name="text">
  2556. <string>Login</string>
  2557. </property>
  2558. </widget>
  2559. <widget class="QLineEdit" name="lineEdit3">
  2560. <property name="geometry">
  2561. <rect>
  2562. <x>510</x>
  2563. <y>10</y>
  2564. <width>80</width>
  2565. <height>22</height>
  2566. </rect>
  2567. </property>
  2568. <property name="text">
  2569. <string>admin</string>
  2570. </property>
  2571. </widget>
  2572. </widget>
  2573. <widget class="QFrame" name="frame7">
  2574. <property name="geometry">
  2575. <rect>
  2576. <x>10</x>
  2577. <y>139</y>
  2578. <width>301</width>
  2579. <height>90</height>
  2580. </rect>
  2581. </property>
  2582. <property name="frameShape">
  2583. <enum>QFrame::StyledPanel</enum>
  2584. </property>
  2585. <property name="frameShadow">
  2586. <enum>QFrame::Plain</enum>
  2587. </property>
  2588. <widget class="QLabel" name="textLabel4">
  2589. <property name="geometry">
  2590. <rect>
  2591. <x>10</x>
  2592. <y>5</y>
  2593. <width>231</width>
  2594. <height>20</height>
  2595. </rect>
  2596. </property>
  2597. <property name="text">
  2598. <string>Calibrate DVR Time</string>
  2599. </property>
  2600. <property name="wordWrap">
  2601. <bool>false</bool>
  2602. </property>
  2603. </widget>
  2604. <widget class="QLabel" name="textLabel5">
  2605. <property name="geometry">
  2606. <rect>
  2607. <x>10</x>
  2608. <y>36</y>
  2609. <width>81</width>
  2610. <height>21</height>
  2611. </rect>
  2612. </property>
  2613. <property name="text">
  2614. <string>DateTime</string>
  2615. </property>
  2616. <property name="wordWrap">
  2617. <bool>false</bool>
  2618. </property>
  2619. </widget>
  2620. <widget class="QPushButton" name="ButGetTime">
  2621. <property name="geometry">
  2622. <rect>
  2623. <x>90</x>
  2624. <y>60</y>
  2625. <width>80</width>
  2626. <height>25</height>
  2627. </rect>
  2628. </property>
  2629. <property name="text">
  2630. <string>Get</string>
  2631. </property>
  2632. </widget>
  2633. <widget class="QPushButton" name="ButSetTime">
  2634. <property name="geometry">
  2635. <rect>
  2636. <x>210</x>
  2637. <y>60</y>
  2638. <width>80</width>
  2639. <height>25</height>
  2640. </rect>
  2641. </property>
  2642. <property name="text">
  2643. <string>Set</string>
  2644. </property>
  2645. </widget>
  2646. <widget class="QDateTimeEdit" name="DVRdateTime">
  2647. <property name="geometry">
  2648. <rect>
  2649. <x>91</x>
  2650. <y>35</y>
  2651. <width>201</width>
  2652. <height>22</height>
  2653. </rect>
  2654. </property>
  2655. </widget>
  2656. </widget>
  2657. <widget class="QFrame" name="frame8">
  2658. <property name="geometry">
  2659. <rect>
  2660. <x>318</x>
  2661. <y>139</y>
  2662. <width>491</width>
  2663. <height>90</height>
  2664. </rect>
  2665. </property>
  2666. <property name="frameShape">
  2667. <enum>QFrame::StyledPanel</enum>
  2668. </property>
  2669. <property name="frameShadow">
  2670. <enum>QFrame::Plain</enum>
  2671. </property>
  2672. <widget class="QLabel" name="textLabel6">
  2673. <property name="geometry">
  2674. <rect>
  2675. <x>18</x>
  2676. <y>5</y>
  2677. <width>121</width>
  2678. <height>20</height>
  2679. </rect>
  2680. </property>
  2681. <property name="midLineWidth">
  2682. <number>3</number>
  2683. </property>
  2684. <property name="text">
  2685. <string>Storage Manage</string>
  2686. </property>
  2687. <property name="wordWrap">
  2688. <bool>false</bool>
  2689. </property>
  2690. </widget>
  2691. <widget class="QLabel" name="textLabel7">
  2692. <property name="geometry">
  2693. <rect>
  2694. <x>21</x>
  2695. <y>27</y>
  2696. <width>62</width>
  2697. <height>31</height>
  2698. </rect>
  2699. </property>
  2700. <property name="text">
  2701. <string>Disk NO.</string>
  2702. </property>
  2703. <property name="wordWrap">
  2704. <bool>false</bool>
  2705. </property>
  2706. </widget>
  2707. <widget class="QComboBox" name="ComboxDiskNo">
  2708. <property name="geometry">
  2709. <rect>
  2710. <x>84</x>
  2711. <y>29</y>
  2712. <width>80</width>
  2713. <height>22</height>
  2714. </rect>
  2715. </property>
  2716. <property name="palette">
  2717. <palette>
  2718. <active>
  2719. <colorrole role="WindowText">
  2720. <brush brushstyle="SolidPattern">
  2721. <color alpha="255">
  2722. <red>0</red>
  2723. <green>0</green>
  2724. <blue>0</blue>
  2725. </color>
  2726. </brush>
  2727. </colorrole>
  2728. <colorrole role="Button">
  2729. <brush brushstyle="SolidPattern">
  2730. <color alpha="255">
  2731. <red>85</red>
  2732. <green>170</green>
  2733. <blue>255</blue>
  2734. </color>
  2735. </brush>
  2736. </colorrole>
  2737. <colorrole role="Light">
  2738. <brush brushstyle="SolidPattern">
  2739. <color alpha="255">
  2740. <red>212</red>
  2741. <green>234</green>
  2742. <blue>255</blue>
  2743. </color>
  2744. </brush>
  2745. </colorrole>
  2746. <colorrole role="Midlight">
  2747. <brush brushstyle="SolidPattern">
  2748. <color alpha="255">
  2749. <red>148</red>
  2750. <green>202</green>
  2751. <blue>255</blue>
  2752. </color>
  2753. </brush>
  2754. </colorrole>
  2755. <colorrole role="Dark">
  2756. <brush brushstyle="SolidPattern">
  2757. <color alpha="255">
  2758. <red>42</red>
  2759. <green>85</green>
  2760. <blue>127</blue>
  2761. </color>
  2762. </brush>
  2763. </colorrole>
  2764. <colorrole role="Mid">
  2765. <brush brushstyle="SolidPattern">
  2766. <color alpha="255">
  2767. <red>57</red>
  2768. <green>113</green>
  2769. <blue>170</blue>
  2770. </color>
  2771. </brush>
  2772. </colorrole>
  2773. <colorrole role="Text">
  2774. <brush brushstyle="SolidPattern">
  2775. <color alpha="255">
  2776. <red>0</red>
  2777. <green>0</green>
  2778. <blue>0</blue>
  2779. </color>
  2780. </brush>
  2781. </colorrole>
  2782. <colorrole role="BrightText">
  2783. <brush brushstyle="SolidPattern">
  2784. <color alpha="255">
  2785. <red>255</red>
  2786. <green>255</green>
  2787. <blue>255</blue>
  2788. </color>
  2789. </brush>
  2790. </colorrole>
  2791. <colorrole role="ButtonText">
  2792. <brush brushstyle="SolidPattern">
  2793. <color alpha="255">
  2794. <red>0</red>
  2795. <green>0</green>
  2796. <blue>0</blue>
  2797. </color>
  2798. </brush>
  2799. </colorrole>
  2800. <colorrole role="Base">
  2801. <brush brushstyle="SolidPattern">
  2802. <color alpha="255">
  2803. <red>255</red>
  2804. <green>255</green>
  2805. <blue>255</blue>
  2806. </color>
  2807. </brush>
  2808. </colorrole>
  2809. <colorrole role="Window">
  2810. <brush brushstyle="SolidPattern">
  2811. <color alpha="255">
  2812. <red>212</red>
  2813. <green>228</green>
  2814. <blue>255</blue>
  2815. </color>
  2816. </brush>
  2817. </colorrole>
  2818. <colorrole role="Shadow">
  2819. <brush brushstyle="SolidPattern">
  2820. <color alpha="255">
  2821. <red>0</red>
  2822. <green>0</green>
  2823. <blue>0</blue>
  2824. </color>
  2825. </brush>
  2826. </colorrole>
  2827. <colorrole role="Highlight">
  2828. <brush brushstyle="SolidPattern">
  2829. <color alpha="255">
  2830. <red>0</red>
  2831. <green>0</green>
  2832. <blue>128</blue>
  2833. </color>
  2834. </brush>
  2835. </colorrole>
  2836. <colorrole role="HighlightedText">
  2837. <brush brushstyle="SolidPattern">
  2838. <color alpha="255">
  2839. <red>255</red>
  2840. <green>255</green>
  2841. <blue>255</blue>
  2842. </color>
  2843. </brush>
  2844. </colorrole>
  2845. <colorrole role="Link">
  2846. <brush brushstyle="SolidPattern">
  2847. <color alpha="255">
  2848. <red>0</red>
  2849. <green>0</green>
  2850. <blue>0</blue>
  2851. </color>
  2852. </brush>
  2853. </colorrole>
  2854. <colorrole role="LinkVisited">
  2855. <brush brushstyle="SolidPattern">
  2856. <color alpha="255">
  2857. <red>0</red>
  2858. <green>0</green>
  2859. <blue>0</blue>
  2860. </color>
  2861. </brush>
  2862. </colorrole>
  2863. </active>
  2864. <inactive>
  2865. <colorrole role="WindowText">
  2866. <brush brushstyle="SolidPattern">
  2867. <color alpha="255">
  2868. <red>0</red>
  2869. <green>0</green>
  2870. <blue>0</blue>
  2871. </color>
  2872. </brush>
  2873. </colorrole>
  2874. <colorrole role="Button">
  2875. <brush brushstyle="SolidPattern">
  2876. <color alpha="255">
  2877. <red>85</red>
  2878. <green>170</green>
  2879. <blue>255</blue>
  2880. </color>
  2881. </brush>
  2882. </colorrole>
  2883. <colorrole role="Light">
  2884. <brush brushstyle="SolidPattern">
  2885. <color alpha="255">
  2886. <red>212</red>
  2887. <green>234</green>
  2888. <blue>255</blue>
  2889. </color>
  2890. </brush>
  2891. </colorrole>
  2892. <colorrole role="Midlight">
  2893. <brush brushstyle="SolidPattern">
  2894. <color alpha="255">
  2895. <red>123</red>
  2896. <green>189</green>
  2897. <blue>255</blue>
  2898. </color>
  2899. </brush>
  2900. </colorrole>
  2901. <colorrole role="Dark">
  2902. <brush brushstyle="SolidPattern">
  2903. <color alpha="255">
  2904. <red>42</red>
  2905. <green>85</green>
  2906. <blue>127</blue>
  2907. </color>
  2908. </brush>
  2909. </colorrole>
  2910. <colorrole role="Mid">
  2911. <brush brushstyle="SolidPattern">
  2912. <color alpha="255">
  2913. <red>57</red>
  2914. <green>113</green>
  2915. <blue>170</blue>
  2916. </color>
  2917. </brush>
  2918. </colorrole>
  2919. <colorrole role="Text">
  2920. <brush brushstyle="SolidPattern">
  2921. <color alpha="255">
  2922. <red>0</red>
  2923. <green>0</green>
  2924. <blue>0</blue>
  2925. </color>
  2926. </brush>
  2927. </colorrole>
  2928. <colorrole role="BrightText">
  2929. <brush brushstyle="SolidPattern">
  2930. <color alpha="255">
  2931. <red>255</red>
  2932. <green>255</green>
  2933. <blue>255</blue>
  2934. </color>
  2935. </brush>
  2936. </colorrole>
  2937. <colorrole role="ButtonText">
  2938. <brush brushstyle="SolidPattern">
  2939. <color alpha="255">
  2940. <red>0</red>
  2941. <green>0</green>
  2942. <blue>0</blue>
  2943. </color>
  2944. </brush>
  2945. </colorrole>
  2946. <colorrole role="Base">
  2947. <brush brushstyle="SolidPattern">
  2948. <color alpha="255">
  2949. <red>255</red>
  2950. <green>255</green>
  2951. <blue>255</blue>
  2952. </color>
  2953. </brush>
  2954. </colorrole>
  2955. <colorrole role="Window">
  2956. <brush brushstyle="SolidPattern">
  2957. <color alpha="255">
  2958. <red>212</red>
  2959. <green>228</green>
  2960. <blue>255</blue>
  2961. </color>
  2962. </brush>
  2963. </colorrole>
  2964. <colorrole role="Shadow">
  2965. <brush brushstyle="SolidPattern">
  2966. <color alpha="255">
  2967. <red>0</red>
  2968. <green>0</green>
  2969. <blue>0</blue>
  2970. </color>
  2971. </brush>
  2972. </colorrole>
  2973. <colorrole role="Highlight">
  2974. <brush brushstyle="SolidPattern">
  2975. <color alpha="255">
  2976. <red>0</red>
  2977. <green>0</green>
  2978. <blue>128</blue>
  2979. </color>
  2980. </brush>
  2981. </colorrole>
  2982. <colorrole role="HighlightedText">
  2983. <brush brushstyle="SolidPattern">
  2984. <color alpha="255">
  2985. <red>255</red>
  2986. <green>255</green>
  2987. <blue>255</blue>
  2988. </color>
  2989. </brush>
  2990. </colorrole>
  2991. <colorrole role="Link">
  2992. <brush brushstyle="SolidPattern">
  2993. <color alpha="255">
  2994. <red>0</red>
  2995. <green>0</green>
  2996. <blue>255</blue>
  2997. </color>
  2998. </brush>
  2999. </colorrole>
  3000. <colorrole role="LinkVisited">
  3001. <brush brushstyle="SolidPattern">
  3002. <color alpha="255">
  3003. <red>255</red>
  3004. <green>0</green>
  3005. <blue>255</blue>
  3006. </color>
  3007. </brush>
  3008. </colorrole>
  3009. </inactive>
  3010. <disabled>
  3011. <colorrole role="WindowText">
  3012. <brush brushstyle="SolidPattern">
  3013. <color alpha="255">
  3014. <red>128</red>
  3015. <green>128</green>
  3016. <blue>128</blue>
  3017. </color>
  3018. </brush>
  3019. </colorrole>
  3020. <colorrole role="Button">
  3021. <brush brushstyle="SolidPattern">
  3022. <color alpha="255">
  3023. <red>85</red>
  3024. <green>170</green>
  3025. <blue>255</blue>
  3026. </color>
  3027. </brush>
  3028. </colorrole>
  3029. <colorrole role="Light">
  3030. <brush brushstyle="SolidPattern">
  3031. <color alpha="255">
  3032. <red>212</red>
  3033. <green>234</green>
  3034. <blue>255</blue>
  3035. </color>
  3036. </brush>
  3037. </colorrole>
  3038. <colorrole role="Midlight">
  3039. <brush brushstyle="SolidPattern">
  3040. <color alpha="255">
  3041. <red>123</red>
  3042. <green>189</green>
  3043. <blue>255</blue>
  3044. </color>
  3045. </brush>
  3046. </colorrole>
  3047. <colorrole role="Dark">
  3048. <brush brushstyle="SolidPattern">
  3049. <color alpha="255">
  3050. <red>42</red>
  3051. <green>85</green>
  3052. <blue>127</blue>
  3053. </color>
  3054. </brush>
  3055. </colorrole>
  3056. <colorrole role="Mid">
  3057. <brush brushstyle="SolidPattern">
  3058. <color alpha="255">
  3059. <red>57</red>
  3060. <green>113</green>
  3061. <blue>170</blue>
  3062. </color>
  3063. </brush>
  3064. </colorrole>
  3065. <colorrole role="Text">
  3066. <brush brushstyle="SolidPattern">
  3067. <color alpha="255">
  3068. <red>128</red>
  3069. <green>128</green>
  3070. <blue>128</blue>
  3071. </color>
  3072. </brush>
  3073. </colorrole>
  3074. <colorrole role="BrightText">
  3075. <brush brushstyle="SolidPattern">
  3076. <color alpha="255">
  3077. <red>255</red>
  3078. <green>255</green>
  3079. <blue>255</blue>
  3080. </color>
  3081. </brush>
  3082. </colorrole>
  3083. <colorrole role="ButtonText">
  3084. <brush brushstyle="SolidPattern">
  3085. <color alpha="255">
  3086. <red>128</red>
  3087. <green>128</green>
  3088. <blue>128</blue>
  3089. </color>
  3090. </brush>
  3091. </colorrole>
  3092. <colorrole role="Base">
  3093. <brush brushstyle="SolidPattern">
  3094. <color alpha="255">
  3095. <red>255</red>
  3096. <green>255</green>
  3097. <blue>255</blue>
  3098. </color>
  3099. </brush>
  3100. </colorrole>
  3101. <colorrole role="Window">
  3102. <brush brushstyle="SolidPattern">
  3103. <color alpha="255">
  3104. <red>212</red>
  3105. <green>228</green>
  3106. <blue>255</blue>
  3107. </color>
  3108. </brush>
  3109. </colorrole>
  3110. <colorrole role="Shadow">
  3111. <brush brushstyle="SolidPattern">
  3112. <color alpha="255">
  3113. <red>0</red>
  3114. <green>0</green>
  3115. <blue>0</blue>
  3116. </color>
  3117. </brush>
  3118. </colorrole>
  3119. <colorrole role="Highlight">
  3120. <brush brushstyle="SolidPattern">
  3121. <color alpha="255">
  3122. <red>0</red>
  3123. <green>0</green>
  3124. <blue>128</blue>
  3125. </color>
  3126. </brush>
  3127. </colorrole>
  3128. <colorrole role="HighlightedText">
  3129. <brush brushstyle="SolidPattern">
  3130. <color alpha="255">
  3131. <red>255</red>
  3132. <green>255</green>
  3133. <blue>255</blue>
  3134. </color>
  3135. </brush>
  3136. </colorrole>
  3137. <colorrole role="Link">
  3138. <brush brushstyle="SolidPattern">
  3139. <color alpha="255">
  3140. <red>0</red>
  3141. <green>0</green>
  3142. <blue>255</blue>
  3143. </color>
  3144. </brush>
  3145. </colorrole>
  3146. <colorrole role="LinkVisited">
  3147. <brush brushstyle="SolidPattern">
  3148. <color alpha="255">
  3149. <red>255</red>
  3150. <green>0</green>
  3151. <blue>255</blue>
  3152. </color>
  3153. </brush>
  3154. </colorrole>
  3155. </disabled>
  3156. </palette>
  3157. </property>
  3158. </widget>
  3159. <widget class="QLabel" name="TextDiskInfo">
  3160. <property name="geometry">
  3161. <rect>
  3162. <x>20</x>
  3163. <y>60</y>
  3164. <width>370</width>
  3165. <height>22</height>
  3166. </rect>
  3167. </property>
  3168. <property name="text">
  3169. <string/>
  3170. </property>
  3171. <property name="wordWrap">
  3172. <bool>false</bool>
  3173. </property>
  3174. </widget>
  3175. <widget class="QLabel" name="textLabel8">
  3176. <property name="geometry">
  3177. <rect>
  3178. <x>170</x>
  3179. <y>27</y>
  3180. <width>61</width>
  3181. <height>31</height>
  3182. </rect>
  3183. </property>
  3184. <property name="text">
  3185. <string>Operate</string>
  3186. </property>
  3187. <property name="wordWrap">
  3188. <bool>false</bool>
  3189. </property>
  3190. </widget>
  3191. <widget class="QComboBox" name="ComboxOperateType">
  3192. <property name="geometry">
  3193. <rect>
  3194. <x>233</x>
  3195. <y>29</y>
  3196. <width>151</width>
  3197. <height>22</height>
  3198. </rect>
  3199. </property>
  3200. <property name="palette">
  3201. <palette>
  3202. <active>
  3203. <colorrole role="WindowText">
  3204. <brush brushstyle="SolidPattern">
  3205. <color alpha="255">
  3206. <red>0</red>
  3207. <green>0</green>
  3208. <blue>0</blue>
  3209. </color>
  3210. </brush>
  3211. </colorrole>
  3212. <colorrole role="Button">
  3213. <brush brushstyle="SolidPattern">
  3214. <color alpha="255">
  3215. <red>85</red>
  3216. <green>170</green>
  3217. <blue>255</blue>
  3218. </color>
  3219. </brush>
  3220. </colorrole>
  3221. <colorrole role="Light">
  3222. <brush brushstyle="SolidPattern">
  3223. <color alpha="255">
  3224. <red>212</red>
  3225. <green>234</green>
  3226. <blue>255</blue>
  3227. </color>
  3228. </brush>
  3229. </colorrole>
  3230. <colorrole role="Midlight">
  3231. <brush brushstyle="SolidPattern">
  3232. <color alpha="255">
  3233. <red>148</red>
  3234. <green>202</green>
  3235. <blue>255</blue>
  3236. </color>
  3237. </brush>
  3238. </colorrole>
  3239. <colorrole role="Dark">
  3240. <brush brushstyle="SolidPattern">
  3241. <color alpha="255">
  3242. <red>42</red>
  3243. <green>85</green>
  3244. <blue>127</blue>
  3245. </color>
  3246. </brush>
  3247. </colorrole>
  3248. <colorrole role="Mid">
  3249. <brush brushstyle="SolidPattern">
  3250. <color alpha="255">
  3251. <red>57</red>
  3252. <green>113</green>
  3253. <blue>170</blue>
  3254. </color>
  3255. </brush>
  3256. </colorrole>
  3257. <colorrole role="Text">
  3258. <brush brushstyle="SolidPattern">
  3259. <color alpha="255">
  3260. <red>0</red>
  3261. <green>0</green>
  3262. <blue>0</blue>
  3263. </color>
  3264. </brush>
  3265. </colorrole>
  3266. <colorrole role="BrightText">
  3267. <brush brushstyle="SolidPattern">
  3268. <color alpha="255">
  3269. <red>255</red>
  3270. <green>255</green>
  3271. <blue>255</blue>
  3272. </color>
  3273. </brush>
  3274. </colorrole>
  3275. <colorrole role="ButtonText">
  3276. <brush brushstyle="SolidPattern">
  3277. <color alpha="255">
  3278. <red>0</red>
  3279. <green>0</green>
  3280. <blue>0</blue>
  3281. </color>
  3282. </brush>
  3283. </colorrole>
  3284. <colorrole role="Base">
  3285. <brush brushstyle="SolidPattern">
  3286. <color alpha="255">
  3287. <red>255</red>
  3288. <green>255</green>
  3289. <blue>255</blue>
  3290. </color>
  3291. </brush>
  3292. </colorrole>
  3293. <colorrole role="Window">
  3294. <brush brushstyle="SolidPattern">
  3295. <color alpha="255">
  3296. <red>212</red>
  3297. <green>228</green>
  3298. <blue>255</blue>
  3299. </color>
  3300. </brush>
  3301. </colorrole>
  3302. <colorrole role="Shadow">
  3303. <brush brushstyle="SolidPattern">
  3304. <color alpha="255">
  3305. <red>0</red>
  3306. <green>0</green>
  3307. <blue>0</blue>
  3308. </color>
  3309. </brush>
  3310. </colorrole>
  3311. <colorrole role="Highlight">
  3312. <brush brushstyle="SolidPattern">
  3313. <color alpha="255">
  3314. <red>0</red>
  3315. <green>0</green>
  3316. <blue>128</blue>
  3317. </color>
  3318. </brush>
  3319. </colorrole>
  3320. <colorrole role="HighlightedText">
  3321. <brush brushstyle="SolidPattern">
  3322. <color alpha="255">
  3323. <red>255</red>
  3324. <green>255</green>
  3325. <blue>255</blue>
  3326. </color>
  3327. </brush>
  3328. </colorrole>
  3329. <colorrole role="Link">
  3330. <brush brushstyle="SolidPattern">
  3331. <color alpha="255">
  3332. <red>0</red>
  3333. <green>0</green>
  3334. <blue>0</blue>
  3335. </color>
  3336. </brush>
  3337. </colorrole>
  3338. <colorrole role="LinkVisited">
  3339. <brush brushstyle="SolidPattern">
  3340. <color alpha="255">
  3341. <red>0</red>
  3342. <green>0</green>
  3343. <blue>0</blue>
  3344. </color>
  3345. </brush>
  3346. </colorrole>
  3347. </active>
  3348. <inactive>
  3349. <colorrole role="WindowText">
  3350. <brush brushstyle="SolidPattern">
  3351. <color alpha="255">
  3352. <red>0</red>
  3353. <green>0</green>
  3354. <blue>0</blue>
  3355. </color>
  3356. </brush>
  3357. </colorrole>
  3358. <colorrole role="Button">
  3359. <brush brushstyle="SolidPattern">
  3360. <color alpha="255">
  3361. <red>85</red>
  3362. <green>170</green>
  3363. <blue>255</blue>
  3364. </color>
  3365. </brush>
  3366. </colorrole>
  3367. <colorrole role="Light">
  3368. <brush brushstyle="SolidPattern">
  3369. <color alpha="255">
  3370. <red>212</red>
  3371. <green>234</green>
  3372. <blue>255</blue>
  3373. </color>
  3374. </brush>
  3375. </colorrole>
  3376. <colorrole role="Midlight">
  3377. <brush brushstyle="SolidPattern">
  3378. <color alpha="255">
  3379. <red>123</red>
  3380. <green>189</green>
  3381. <blue>255</blue>
  3382. </color>
  3383. </brush>
  3384. </colorrole>
  3385. <colorrole role="Dark">
  3386. <brush brushstyle="SolidPattern">
  3387. <color alpha="255">
  3388. <red>42</red>
  3389. <green>85</green>
  3390. <blue>127</blue>
  3391. </color>
  3392. </brush>
  3393. </colorrole>
  3394. <colorrole role="Mid">
  3395. <brush brushstyle="SolidPattern">
  3396. <color alpha="255">
  3397. <red>57</red>
  3398. <green>113</green>
  3399. <blue>170</blue>
  3400. </color>
  3401. </brush>
  3402. </colorrole>
  3403. <colorrole role="Text">
  3404. <brush brushstyle="SolidPattern">
  3405. <color alpha="255">
  3406. <red>0</red>
  3407. <green>0</green>
  3408. <blue>0</blue>
  3409. </color>
  3410. </brush>
  3411. </colorrole>
  3412. <colorrole role="BrightText">
  3413. <brush brushstyle="SolidPattern">
  3414. <color alpha="255">
  3415. <red>255</red>
  3416. <green>255</green>
  3417. <blue>255</blue>
  3418. </color>
  3419. </brush>
  3420. </colorrole>
  3421. <colorrole role="ButtonText">
  3422. <brush brushstyle="SolidPattern">
  3423. <color alpha="255">
  3424. <red>0</red>
  3425. <green>0</green>
  3426. <blue>0</blue>
  3427. </color>
  3428. </brush>
  3429. </colorrole>
  3430. <colorrole role="Base">
  3431. <brush brushstyle="SolidPattern">
  3432. <color alpha="255">
  3433. <red>255</red>
  3434. <green>255</green>
  3435. <blue>255</blue>
  3436. </color>
  3437. </brush>
  3438. </colorrole>
  3439. <colorrole role="Window">
  3440. <brush brushstyle="SolidPattern">
  3441. <color alpha="255">
  3442. <red>212</red>
  3443. <green>228</green>
  3444. <blue>255</blue>
  3445. </color>
  3446. </brush>
  3447. </colorrole>
  3448. <colorrole role="Shadow">
  3449. <brush brushstyle="SolidPattern">
  3450. <color alpha="255">
  3451. <red>0</red>
  3452. <green>0</green>
  3453. <blue>0</blue>
  3454. </color>
  3455. </brush>
  3456. </colorrole>
  3457. <colorrole role="Highlight">
  3458. <brush brushstyle="SolidPattern">
  3459. <color alpha="255">
  3460. <red>0</red>
  3461. <green>0</green>
  3462. <blue>128</blue>
  3463. </color>
  3464. </brush>
  3465. </colorrole>
  3466. <colorrole role="HighlightedText">
  3467. <brush brushstyle="SolidPattern">
  3468. <color alpha="255">
  3469. <red>255</red>
  3470. <green>255</green>
  3471. <blue>255</blue>
  3472. </color>
  3473. </brush>
  3474. </colorrole>
  3475. <colorrole role="Link">
  3476. <brush brushstyle="SolidPattern">
  3477. <color alpha="255">
  3478. <red>0</red>
  3479. <green>0</green>
  3480. <blue>255</blue>
  3481. </color>
  3482. </brush>
  3483. </colorrole>
  3484. <colorrole role="LinkVisited">
  3485. <brush brushstyle="SolidPattern">
  3486. <color alpha="255">
  3487. <red>255</red>
  3488. <green>0</green>
  3489. <blue>255</blue>
  3490. </color>
  3491. </brush>
  3492. </colorrole>
  3493. </inactive>
  3494. <disabled>
  3495. <colorrole role="WindowText">
  3496. <brush brushstyle="SolidPattern">
  3497. <color alpha="255">
  3498. <red>128</red>
  3499. <green>128</green>
  3500. <blue>128</blue>
  3501. </color>
  3502. </brush>
  3503. </colorrole>
  3504. <colorrole role="Button">
  3505. <brush brushstyle="SolidPattern">
  3506. <color alpha="255">
  3507. <red>85</red>
  3508. <green>170</green>
  3509. <blue>255</blue>
  3510. </color>
  3511. </brush>
  3512. </colorrole>
  3513. <colorrole role="Light">
  3514. <brush brushstyle="SolidPattern">
  3515. <color alpha="255">
  3516. <red>212</red>
  3517. <green>234</green>
  3518. <blue>255</blue>
  3519. </color>
  3520. </brush>
  3521. </colorrole>
  3522. <colorrole role="Midlight">
  3523. <brush brushstyle="SolidPattern">
  3524. <color alpha="255">
  3525. <red>123</red>
  3526. <green>189</green>
  3527. <blue>255</blue>
  3528. </color>
  3529. </brush>
  3530. </colorrole>
  3531. <colorrole role="Dark">
  3532. <brush brushstyle="SolidPattern">
  3533. <color alpha="255">
  3534. <red>42</red>
  3535. <green>85</green>
  3536. <blue>127</blue>
  3537. </color>
  3538. </brush>
  3539. </colorrole>
  3540. <colorrole role="Mid">
  3541. <brush brushstyle="SolidPattern">
  3542. <color alpha="255">
  3543. <red>57</red>
  3544. <green>113</green>
  3545. <blue>170</blue>
  3546. </color>
  3547. </brush>
  3548. </colorrole>
  3549. <colorrole role="Text">
  3550. <brush brushstyle="SolidPattern">
  3551. <color alpha="255">
  3552. <red>128</red>
  3553. <green>128</green>
  3554. <blue>128</blue>
  3555. </color>
  3556. </brush>
  3557. </colorrole>
  3558. <colorrole role="BrightText">
  3559. <brush brushstyle="SolidPattern">
  3560. <color alpha="255">
  3561. <red>255</red>
  3562. <green>255</green>
  3563. <blue>255</blue>
  3564. </color>
  3565. </brush>
  3566. </colorrole>
  3567. <colorrole role="ButtonText">
  3568. <brush brushstyle="SolidPattern">
  3569. <color alpha="255">
  3570. <red>128</red>
  3571. <green>128</green>
  3572. <blue>128</blue>
  3573. </color>
  3574. </brush>
  3575. </colorrole>
  3576. <colorrole role="Base">
  3577. <brush brushstyle="SolidPattern">
  3578. <color alpha="255">
  3579. <red>255</red>
  3580. <green>255</green>
  3581. <blue>255</blue>
  3582. </color>
  3583. </brush>
  3584. </colorrole>
  3585. <colorrole role="Window">
  3586. <brush brushstyle="SolidPattern">
  3587. <color alpha="255">
  3588. <red>212</red>
  3589. <green>228</green>
  3590. <blue>255</blue>
  3591. </color>
  3592. </brush>
  3593. </colorrole>
  3594. <colorrole role="Shadow">
  3595. <brush brushstyle="SolidPattern">
  3596. <color alpha="255">
  3597. <red>0</red>
  3598. <green>0</green>
  3599. <blue>0</blue>
  3600. </color>
  3601. </brush>
  3602. </colorrole>
  3603. <colorrole role="Highlight">
  3604. <brush brushstyle="SolidPattern">
  3605. <color alpha="255">
  3606. <red>0</red>
  3607. <green>0</green>
  3608. <blue>128</blue>
  3609. </color>
  3610. </brush>
  3611. </colorrole>
  3612. <colorrole role="HighlightedText">
  3613. <brush brushstyle="SolidPattern">
  3614. <color alpha="255">
  3615. <red>255</red>
  3616. <green>255</green>
  3617. <blue>255</blue>
  3618. </color>
  3619. </brush>
  3620. </colorrole>
  3621. <colorrole role="Link">
  3622. <brush brushstyle="SolidPattern">
  3623. <color alpha="255">
  3624. <red>0</red>
  3625. <green>0</green>
  3626. <blue>255</blue>
  3627. </color>
  3628. </brush>
  3629. </colorrole>
  3630. <colorrole role="LinkVisited">
  3631. <brush brushstyle="SolidPattern">
  3632. <color alpha="255">
  3633. <red>255</red>
  3634. <green>0</green>
  3635. <blue>255</blue>
  3636. </color>
  3637. </brush>
  3638. </colorrole>
  3639. </disabled>
  3640. </palette>
  3641. </property>
  3642. <item>
  3643. <property name="text">
  3644. <string>clear data</string>
  3645. </property>
  3646. </item>
  3647. <item>
  3648. <property name="text">
  3649. <string>read &amp; write</string>
  3650. </property>
  3651. </item>
  3652. <item>
  3653. <property name="text">
  3654. <string>read Only</string>
  3655. </property>
  3656. </item>
  3657. <item>
  3658. <property name="text">
  3659. <string>Redundant</string>
  3660. </property>
  3661. </item>
  3662. <item>
  3663. <property name="text">
  3664. <string>Error Recovery</string>
  3665. </property>
  3666. </item>
  3667. </widget>
  3668. <widget class="QPushButton" name="ButDiskControl">
  3669. <property name="geometry">
  3670. <rect>
  3671. <x>400</x>
  3672. <y>25</y>
  3673. <width>80</width>
  3674. <height>30</height>
  3675. </rect>
  3676. </property>
  3677. <property name="text">
  3678. <string>Control</string>
  3679. </property>
  3680. </widget>
  3681. </widget>
  3682. <widget class="QFrame" name="frame10">
  3683. <property name="geometry">
  3684. <rect>
  3685. <x>10</x>
  3686. <y>237</y>
  3687. <width>800</width>
  3688. <height>40</height>
  3689. </rect>
  3690. </property>
  3691. <property name="frameShape">
  3692. <enum>QFrame::StyledPanel</enum>
  3693. </property>
  3694. <property name="frameShadow">
  3695. <enum>QFrame::Plain</enum>
  3696. </property>
  3697. <widget class="QPushButton" name="ButBoot">
  3698. <property name="geometry">
  3699. <rect>
  3700. <x>10</x>
  3701. <y>7</y>
  3702. <width>82</width>
  3703. <height>27</height>
  3704. </rect>
  3705. </property>
  3706. <property name="text">
  3707. <string>Reboot</string>
  3708. </property>
  3709. </widget>
  3710. <widget class="QPushButton" name="ButBoot_2">
  3711. <property name="geometry">
  3712. <rect>
  3713. <x>120</x>
  3714. <y>7</y>
  3715. <width>181</width>
  3716. <height>27</height>
  3717. </rect>
  3718. </property>
  3719. <property name="text">
  3720. <string>Get SDK Version</string>
  3721. </property>
  3722. </widget>
  3723. </widget>
  3724. <widget class="QFrame" name="frame9">
  3725. <property name="geometry">
  3726. <rect>
  3727. <x>10</x>
  3728. <y>286</y>
  3729. <width>800</width>
  3730. <height>120</height>
  3731. </rect>
  3732. </property>
  3733. <property name="frameShape">
  3734. <enum>QFrame::StyledPanel</enum>
  3735. </property>
  3736. <property name="frameShadow">
  3737. <enum>QFrame::Plain</enum>
  3738. </property>
  3739. <widget class="QFrame" name="frame13">
  3740. <property name="geometry">
  3741. <rect>
  3742. <x>10</x>
  3743. <y>10</y>
  3744. <width>364</width>
  3745. <height>65</height>
  3746. </rect>
  3747. </property>
  3748. <property name="frameShape">
  3749. <enum>QFrame::StyledPanel</enum>
  3750. </property>
  3751. <property name="frameShadow">
  3752. <enum>QFrame::Plain</enum>
  3753. </property>
  3754. <widget class="QPushButton" name="ButNUM0">
  3755. <property name="geometry">
  3756. <rect>
  3757. <x>2</x>
  3758. <y>3</y>
  3759. <width>41</width>
  3760. <height>60</height>
  3761. </rect>
  3762. </property>
  3763. <property name="text">
  3764. <string>0</string>
  3765. </property>
  3766. </widget>
  3767. <widget class="QPushButton" name="ButNUM1">
  3768. <property name="geometry">
  3769. <rect>
  3770. <x>43</x>
  3771. <y>3</y>
  3772. <width>40</width>
  3773. <height>31</height>
  3774. </rect>
  3775. </property>
  3776. <property name="text">
  3777. <string>1</string>
  3778. </property>
  3779. </widget>
  3780. <widget class="QPushButton" name="ButNUM2">
  3781. <property name="geometry">
  3782. <rect>
  3783. <x>82</x>
  3784. <y>3</y>
  3785. <width>40</width>
  3786. <height>31</height>
  3787. </rect>
  3788. </property>
  3789. <property name="text">
  3790. <string>2</string>
  3791. </property>
  3792. </widget>
  3793. <widget class="QPushButton" name="ButNUM3">
  3794. <property name="geometry">
  3795. <rect>
  3796. <x>122</x>
  3797. <y>3</y>
  3798. <width>40</width>
  3799. <height>31</height>
  3800. </rect>
  3801. </property>
  3802. <property name="text">
  3803. <string>3</string>
  3804. </property>
  3805. </widget>
  3806. <widget class="QPushButton" name="ButNUM4">
  3807. <property name="geometry">
  3808. <rect>
  3809. <x>162</x>
  3810. <y>3</y>
  3811. <width>40</width>
  3812. <height>31</height>
  3813. </rect>
  3814. </property>
  3815. <property name="text">
  3816. <string>4</string>
  3817. </property>
  3818. </widget>
  3819. <widget class="QPushButton" name="ButNUM5">
  3820. <property name="geometry">
  3821. <rect>
  3822. <x>202</x>
  3823. <y>3</y>
  3824. <width>40</width>
  3825. <height>31</height>
  3826. </rect>
  3827. </property>
  3828. <property name="text">
  3829. <string>5</string>
  3830. </property>
  3831. </widget>
  3832. <widget class="QPushButton" name="ButNUM6">
  3833. <property name="geometry">
  3834. <rect>
  3835. <x>242</x>
  3836. <y>3</y>
  3837. <width>40</width>
  3838. <height>31</height>
  3839. </rect>
  3840. </property>
  3841. <property name="text">
  3842. <string>6</string>
  3843. </property>
  3844. </widget>
  3845. <widget class="QPushButton" name="ButNUM7">
  3846. <property name="geometry">
  3847. <rect>
  3848. <x>282</x>
  3849. <y>3</y>
  3850. <width>40</width>
  3851. <height>31</height>
  3852. </rect>
  3853. </property>
  3854. <property name="text">
  3855. <string>7</string>
  3856. </property>
  3857. </widget>
  3858. <widget class="QPushButton" name="ButNUM8">
  3859. <property name="geometry">
  3860. <rect>
  3861. <x>322</x>
  3862. <y>3</y>
  3863. <width>40</width>
  3864. <height>31</height>
  3865. </rect>
  3866. </property>
  3867. <property name="text">
  3868. <string>8</string>
  3869. </property>
  3870. </widget>
  3871. <widget class="QPushButton" name="ButNUM9">
  3872. <property name="geometry">
  3873. <rect>
  3874. <x>42</x>
  3875. <y>33</y>
  3876. <width>40</width>
  3877. <height>30</height>
  3878. </rect>
  3879. </property>
  3880. <property name="text">
  3881. <string>9</string>
  3882. </property>
  3883. </widget>
  3884. <widget class="QPushButton" name="ButNUM10">
  3885. <property name="geometry">
  3886. <rect>
  3887. <x>82</x>
  3888. <y>33</y>
  3889. <width>40</width>
  3890. <height>30</height>
  3891. </rect>
  3892. </property>
  3893. <property name="text">
  3894. <string>10</string>
  3895. </property>
  3896. </widget>
  3897. <widget class="QPushButton" name="ButNUM11">
  3898. <property name="geometry">
  3899. <rect>
  3900. <x>122</x>
  3901. <y>33</y>
  3902. <width>40</width>
  3903. <height>30</height>
  3904. </rect>
  3905. </property>
  3906. <property name="text">
  3907. <string>11</string>
  3908. </property>
  3909. </widget>
  3910. <widget class="QPushButton" name="ButNUM12">
  3911. <property name="geometry">
  3912. <rect>
  3913. <x>162</x>
  3914. <y>33</y>
  3915. <width>40</width>
  3916. <height>30</height>
  3917. </rect>
  3918. </property>
  3919. <property name="text">
  3920. <string>12</string>
  3921. </property>
  3922. </widget>
  3923. <widget class="QPushButton" name="ButNUM13">
  3924. <property name="geometry">
  3925. <rect>
  3926. <x>202</x>
  3927. <y>33</y>
  3928. <width>40</width>
  3929. <height>30</height>
  3930. </rect>
  3931. </property>
  3932. <property name="text">
  3933. <string>13</string>
  3934. </property>
  3935. </widget>
  3936. <widget class="QPushButton" name="ButNUM14">
  3937. <property name="geometry">
  3938. <rect>
  3939. <x>242</x>
  3940. <y>33</y>
  3941. <width>40</width>
  3942. <height>30</height>
  3943. </rect>
  3944. </property>
  3945. <property name="text">
  3946. <string>14</string>
  3947. </property>
  3948. </widget>
  3949. <widget class="QPushButton" name="ButNUM15">
  3950. <property name="geometry">
  3951. <rect>
  3952. <x>282</x>
  3953. <y>33</y>
  3954. <width>40</width>
  3955. <height>30</height>
  3956. </rect>
  3957. </property>
  3958. <property name="text">
  3959. <string>15</string>
  3960. </property>
  3961. </widget>
  3962. <widget class="QPushButton" name="ButNUM16">
  3963. <property name="geometry">
  3964. <rect>
  3965. <x>322</x>
  3966. <y>33</y>
  3967. <width>40</width>
  3968. <height>30</height>
  3969. </rect>
  3970. </property>
  3971. <property name="text">
  3972. <string>16</string>
  3973. </property>
  3974. </widget>
  3975. </widget>
  3976. <widget class="QFrame" name="frame14">
  3977. <property name="geometry">
  3978. <rect>
  3979. <x>10</x>
  3980. <y>72</y>
  3981. <width>364</width>
  3982. <height>34</height>
  3983. </rect>
  3984. </property>
  3985. <property name="frameShape">
  3986. <enum>QFrame::StyledPanel</enum>
  3987. </property>
  3988. <property name="frameShadow">
  3989. <enum>QFrame::Plain</enum>
  3990. </property>
  3991. <widget class="QPushButton" name="ButJmpDown">
  3992. <property name="geometry">
  3993. <rect>
  3994. <x>323</x>
  3995. <y>2</y>
  3996. <width>40</width>
  3997. <height>30</height>
  3998. </rect>
  3999. </property>
  4000. <property name="text">
  4001. <string>Jmp</string>
  4002. </property>
  4003. </widget>
  4004. <widget class="QPushButton" name="ButJmpUp">
  4005. <property name="geometry">
  4006. <rect>
  4007. <x>283</x>
  4008. <y>2</y>
  4009. <width>40</width>
  4010. <height>30</height>
  4011. </rect>
  4012. </property>
  4013. <property name="text">
  4014. <string>Jmp</string>
  4015. </property>
  4016. </widget>
  4017. <widget class="QPushButton" name="ButStop">
  4018. <property name="geometry">
  4019. <rect>
  4020. <x>242</x>
  4021. <y>2</y>
  4022. <width>40</width>
  4023. <height>30</height>
  4024. </rect>
  4025. </property>
  4026. <property name="text">
  4027. <string>Stop</string>
  4028. </property>
  4029. </widget>
  4030. <widget class="QPushButton" name="ButNext">
  4031. <property name="geometry">
  4032. <rect>
  4033. <x>202</x>
  4034. <y>2</y>
  4035. <width>40</width>
  4036. <height>30</height>
  4037. </rect>
  4038. </property>
  4039. <property name="text">
  4040. <string>Next</string>
  4041. </property>
  4042. </widget>
  4043. <widget class="QPushButton" name="ButFast">
  4044. <property name="geometry">
  4045. <rect>
  4046. <x>162</x>
  4047. <y>2</y>
  4048. <width>40</width>
  4049. <height>30</height>
  4050. </rect>
  4051. </property>
  4052. <property name="text">
  4053. <string>Fast</string>
  4054. </property>
  4055. </widget>
  4056. <widget class="QPushButton" name="ButPlay">
  4057. <property name="geometry">
  4058. <rect>
  4059. <x>122</x>
  4060. <y>2</y>
  4061. <width>40</width>
  4062. <height>30</height>
  4063. </rect>
  4064. </property>
  4065. <property name="text">
  4066. <string>Play</string>
  4067. </property>
  4068. </widget>
  4069. <widget class="QPushButton" name="ButSlow">
  4070. <property name="geometry">
  4071. <rect>
  4072. <x>82</x>
  4073. <y>2</y>
  4074. <width>40</width>
  4075. <height>30</height>
  4076. </rect>
  4077. </property>
  4078. <property name="text">
  4079. <string>Slow</string>
  4080. </property>
  4081. </widget>
  4082. <widget class="QPushButton" name="ButPrew">
  4083. <property name="geometry">
  4084. <rect>
  4085. <x>41</x>
  4086. <y>2</y>
  4087. <width>42</width>
  4088. <height>30</height>
  4089. </rect>
  4090. </property>
  4091. <property name="text">
  4092. <string>Prew</string>
  4093. </property>
  4094. </widget>
  4095. <widget class="QPushButton" name="ButRec">
  4096. <property name="geometry">
  4097. <rect>
  4098. <x>2</x>
  4099. <y>2</y>
  4100. <width>40</width>
  4101. <height>30</height>
  4102. </rect>
  4103. </property>
  4104. <property name="text">
  4105. <string>Rec</string>
  4106. </property>
  4107. </widget>
  4108. </widget>
  4109. <widget class="QFrame" name="frame15">
  4110. <property name="geometry">
  4111. <rect>
  4112. <x>374</x>
  4113. <y>10</y>
  4114. <width>46</width>
  4115. <height>96</height>
  4116. </rect>
  4117. </property>
  4118. <property name="frameShape">
  4119. <enum>QFrame::StyledPanel</enum>
  4120. </property>
  4121. <property name="frameShadow">
  4122. <enum>QFrame::Plain</enum>
  4123. </property>
  4124. <widget class="QPushButton" name="ButEsc">
  4125. <property name="geometry">
  4126. <rect>
  4127. <x>3</x>
  4128. <y>3</y>
  4129. <width>40</width>
  4130. <height>31</height>
  4131. </rect>
  4132. </property>
  4133. <property name="text">
  4134. <string>Esc</string>
  4135. </property>
  4136. </widget>
  4137. <widget class="QPushButton" name="ButFn1">
  4138. <property name="geometry">
  4139. <rect>
  4140. <x>3</x>
  4141. <y>33</y>
  4142. <width>40</width>
  4143. <height>30</height>
  4144. </rect>
  4145. </property>
  4146. <property name="text">
  4147. <string>Fn1</string>
  4148. </property>
  4149. </widget>
  4150. <widget class="QPushButton" name="ButFn2">
  4151. <property name="geometry">
  4152. <rect>
  4153. <x>3</x>
  4154. <y>63</y>
  4155. <width>40</width>
  4156. <height>30</height>
  4157. </rect>
  4158. </property>
  4159. <property name="text">
  4160. <string>Fn2</string>
  4161. </property>
  4162. </widget>
  4163. </widget>
  4164. <widget class="QPushButton" name="ButSplit">
  4165. <property name="geometry">
  4166. <rect>
  4167. <x>657</x>
  4168. <y>17</y>
  4169. <width>40</width>
  4170. <height>30</height>
  4171. </rect>
  4172. </property>
  4173. <property name="text">
  4174. <string>Split</string>
  4175. </property>
  4176. </widget>
  4177. <widget class="QPushButton" name="ButOne">
  4178. <property name="geometry">
  4179. <rect>
  4180. <x>617</x>
  4181. <y>17</y>
  4182. <width>40</width>
  4183. <height>30</height>
  4184. </rect>
  4185. </property>
  4186. <property name="text">
  4187. <string>One</string>
  4188. </property>
  4189. </widget>
  4190. <widget class="QPushButton" name="ButInfo">
  4191. <property name="geometry">
  4192. <rect>
  4193. <x>577</x>
  4194. <y>73</y>
  4195. <width>40</width>
  4196. <height>30</height>
  4197. </rect>
  4198. </property>
  4199. <property name="text">
  4200. <string>Info</string>
  4201. </property>
  4202. </widget>
  4203. <widget class="QPushButton" name="ButPower">
  4204. <property name="geometry">
  4205. <rect>
  4206. <x>667</x>
  4207. <y>62</y>
  4208. <width>110</width>
  4209. <height>40</height>
  4210. </rect>
  4211. </property>
  4212. <property name="text">
  4213. <string>Power</string>
  4214. </property>
  4215. <property name="default">
  4216. <bool>true</bool>
  4217. </property>
  4218. <property name="flat">
  4219. <bool>false</bool>
  4220. </property>
  4221. </widget>
  4222. <widget class="QPushButton" name="ButAddr">
  4223. <property name="geometry">
  4224. <rect>
  4225. <x>617</x>
  4226. <y>73</y>
  4227. <width>40</width>
  4228. <height>30</height>
  4229. </rect>
  4230. </property>
  4231. <property name="text">
  4232. <string>Addr</string>
  4233. </property>
  4234. </widget>
  4235. <widget class="QPushButton" name="ButNine">
  4236. <property name="geometry">
  4237. <rect>
  4238. <x>577</x>
  4239. <y>17</y>
  4240. <width>40</width>
  4241. <height>31</height>
  4242. </rect>
  4243. </property>
  4244. <property name="text">
  4245. <string>Nine</string>
  4246. </property>
  4247. </widget>
  4248. <widget class="QFrame" name="frame16">
  4249. <property name="geometry">
  4250. <rect>
  4251. <x>420</x>
  4252. <y>10</y>
  4253. <width>151</width>
  4254. <height>101</height>
  4255. </rect>
  4256. </property>
  4257. <property name="frameShape">
  4258. <enum>QFrame::StyledPanel</enum>
  4259. </property>
  4260. <property name="frameShadow">
  4261. <enum>QFrame::Plain</enum>
  4262. </property>
  4263. <widget class="QPushButton" name="ButEnter">
  4264. <property name="geometry">
  4265. <rect>
  4266. <x>50</x>
  4267. <y>37</y>
  4268. <width>45</width>
  4269. <height>30</height>
  4270. </rect>
  4271. </property>
  4272. <property name="text">
  4273. <string>Enter</string>
  4274. </property>
  4275. </widget>
  4276. <widget class="QPushButton" name="ButUP">
  4277. <property name="geometry">
  4278. <rect>
  4279. <x>50</x>
  4280. <y>3</y>
  4281. <width>45</width>
  4282. <height>30</height>
  4283. </rect>
  4284. </property>
  4285. <property name="text">
  4286. <string>Up</string>
  4287. </property>
  4288. </widget>
  4289. <widget class="QPushButton" name="ButRight">
  4290. <property name="geometry">
  4291. <rect>
  4292. <x>100</x>
  4293. <y>37</y>
  4294. <width>45</width>
  4295. <height>30</height>
  4296. </rect>
  4297. </property>
  4298. <property name="text">
  4299. <string>Right</string>
  4300. </property>
  4301. </widget>
  4302. <widget class="QPushButton" name="ButLeft">
  4303. <property name="geometry">
  4304. <rect>
  4305. <x>3</x>
  4306. <y>37</y>
  4307. <width>41</width>
  4308. <height>31</height>
  4309. </rect>
  4310. </property>
  4311. <property name="text">
  4312. <string>Left</string>
  4313. </property>
  4314. </widget>
  4315. <widget class="QPushButton" name="ButDown">
  4316. <property name="geometry">
  4317. <rect>
  4318. <x>50</x>
  4319. <y>70</y>
  4320. <width>45</width>
  4321. <height>30</height>
  4322. </rect>
  4323. </property>
  4324. <property name="text">
  4325. <string>Down</string>
  4326. </property>
  4327. </widget>
  4328. </widget>
  4329. </widget>
  4330. </widget>
  4331. <layoutdefault spacing="6" margin="11"/>
  4332. <pixmapfunction>qPixmapFromMimeSource</pixmapfunction>
  4333. <resources/>
  4334. <connections/>
  4335. </ui>