CGH_Printer.ui 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>CGH_PrinterClass</class>
  4. <widget class="QMainWindow" name="CGH_PrinterClass">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>960</width>
  10. <height>540</height>
  11. </rect>
  12. </property>
  13. <property name="minimumSize">
  14. <size>
  15. <width>960</width>
  16. <height>540</height>
  17. </size>
  18. </property>
  19. <property name="maximumSize">
  20. <size>
  21. <width>960</width>
  22. <height>540</height>
  23. </size>
  24. </property>
  25. <property name="windowTitle">
  26. <string>CGH_Printer</string>
  27. </property>
  28. <property name="styleSheet">
  29. <string notr="true"/>
  30. </property>
  31. <widget class="QWidget" name="centralWidget">
  32. <layout class="QVBoxLayout" name="verticalLayout_3">
  33. <item>
  34. <layout class="QHBoxLayout" name="horizontalLayout">
  35. <property name="spacing">
  36. <number>0</number>
  37. </property>
  38. <item>
  39. <widget class="QLabel" name="labelDatetime">
  40. <property name="minimumSize">
  41. <size>
  42. <width>108</width>
  43. <height>72</height>
  44. </size>
  45. </property>
  46. <property name="maximumSize">
  47. <size>
  48. <width>108</width>
  49. <height>72</height>
  50. </size>
  51. </property>
  52. <property name="font">
  53. <font>
  54. <pointsize>9</pointsize>
  55. </font>
  56. </property>
  57. <property name="styleSheet">
  58. <string notr="true">QLabel
  59. {
  60. border:1px solid rgb(156,156,156);
  61. }</string>
  62. </property>
  63. <property name="frameShape">
  64. <enum>QFrame::Box</enum>
  65. </property>
  66. <property name="frameShadow">
  67. <enum>QFrame::Plain</enum>
  68. </property>
  69. <property name="text">
  70. <string>日期/时间</string>
  71. </property>
  72. <property name="alignment">
  73. <set>Qt::AlignCenter</set>
  74. </property>
  75. </widget>
  76. </item>
  77. <item>
  78. <widget class="QTextEdit" name="textEditWarning">
  79. <property name="minimumSize">
  80. <size>
  81. <width>0</width>
  82. <height>72</height>
  83. </size>
  84. </property>
  85. <property name="maximumSize">
  86. <size>
  87. <width>16777215</width>
  88. <height>72</height>
  89. </size>
  90. </property>
  91. <property name="styleSheet">
  92. <string notr="true">border:1px solid rgb(156,156,156);
  93. </string>
  94. </property>
  95. <property name="frameShape">
  96. <enum>QFrame::Box</enum>
  97. </property>
  98. <property name="frameShadow">
  99. <enum>QFrame::Plain</enum>
  100. </property>
  101. <property name="lineWidth">
  102. <number>1</number>
  103. </property>
  104. <property name="readOnly">
  105. <bool>true</bool>
  106. </property>
  107. </widget>
  108. </item>
  109. <item>
  110. <widget class="QGroupBox" name="groupBox_3">
  111. <property name="minimumSize">
  112. <size>
  113. <width>108</width>
  114. <height>72</height>
  115. </size>
  116. </property>
  117. <property name="maximumSize">
  118. <size>
  119. <width>108</width>
  120. <height>72</height>
  121. </size>
  122. </property>
  123. <property name="styleSheet">
  124. <string notr="true">QGroupBox
  125. {
  126. border-style:solid;
  127. border-color:rgb(156,156,156);
  128. border-width:1px;
  129. }</string>
  130. </property>
  131. <property name="title">
  132. <string/>
  133. </property>
  134. <property name="flat">
  135. <bool>false</bool>
  136. </property>
  137. <property name="checkable">
  138. <bool>false</bool>
  139. </property>
  140. <layout class="QHBoxLayout" name="horizontalLayout_15">
  141. <property name="spacing">
  142. <number>0</number>
  143. </property>
  144. <item>
  145. <widget class="QLabel" name="labelStateMarking">
  146. <property name="lineWidth">
  147. <number>0</number>
  148. </property>
  149. <property name="text">
  150. <string/>
  151. </property>
  152. <property name="pixmap">
  153. <pixmap resource="CGH_Printer.qrc">:/CGH_Printer/Configure/IMG/Parallelogram_Green.png</pixmap>
  154. </property>
  155. <property name="scaledContents">
  156. <bool>true</bool>
  157. </property>
  158. <property name="alignment">
  159. <set>Qt::AlignCenter</set>
  160. </property>
  161. </widget>
  162. </item>
  163. <item>
  164. <widget class="QLabel" name="labelWorkState">
  165. <property name="minimumSize">
  166. <size>
  167. <width>54</width>
  168. <height>0</height>
  169. </size>
  170. </property>
  171. <property name="maximumSize">
  172. <size>
  173. <width>16777215</width>
  174. <height>16777215</height>
  175. </size>
  176. </property>
  177. <property name="font">
  178. <font>
  179. <pointsize>9</pointsize>
  180. </font>
  181. </property>
  182. <property name="frameShape">
  183. <enum>QFrame::Box</enum>
  184. </property>
  185. <property name="frameShadow">
  186. <enum>QFrame::Raised</enum>
  187. </property>
  188. <property name="lineWidth">
  189. <number>0</number>
  190. </property>
  191. <property name="text">
  192. <string>状态</string>
  193. </property>
  194. <property name="alignment">
  195. <set>Qt::AlignCenter</set>
  196. </property>
  197. </widget>
  198. </item>
  199. </layout>
  200. </widget>
  201. </item>
  202. <item>
  203. <widget class="QLabel" name="labelLogo">
  204. <property name="minimumSize">
  205. <size>
  206. <width>108</width>
  207. <height>72</height>
  208. </size>
  209. </property>
  210. <property name="maximumSize">
  211. <size>
  212. <width>108</width>
  213. <height>72</height>
  214. </size>
  215. </property>
  216. <property name="font">
  217. <font>
  218. <pointsize>9</pointsize>
  219. </font>
  220. </property>
  221. <property name="styleSheet">
  222. <string notr="true">QLabel
  223. {
  224. border:1px solid rgb(156,156,156);
  225. }</string>
  226. </property>
  227. <property name="frameShape">
  228. <enum>QFrame::Box</enum>
  229. </property>
  230. <property name="frameShadow">
  231. <enum>QFrame::Plain</enum>
  232. </property>
  233. <property name="lineWidth">
  234. <number>1</number>
  235. </property>
  236. <property name="text">
  237. <string/>
  238. </property>
  239. <property name="pixmap">
  240. <pixmap resource="CGH_Printer.qrc">:/CGH_Printer/Configure/IMG/Logo.png</pixmap>
  241. </property>
  242. <property name="scaledContents">
  243. <bool>true</bool>
  244. </property>
  245. <property name="alignment">
  246. <set>Qt::AlignCenter</set>
  247. </property>
  248. </widget>
  249. </item>
  250. </layout>
  251. </item>
  252. <item>
  253. <widget class="CGH_TabWidget" name="tabWidget">
  254. <property name="sizePolicy">
  255. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  256. <horstretch>0</horstretch>
  257. <verstretch>0</verstretch>
  258. </sizepolicy>
  259. </property>
  260. <property name="minimumSize">
  261. <size>
  262. <width>0</width>
  263. <height>0</height>
  264. </size>
  265. </property>
  266. <property name="maximumSize">
  267. <size>
  268. <width>16777215</width>
  269. <height>16777215</height>
  270. </size>
  271. </property>
  272. <property name="font">
  273. <font>
  274. <pointsize>9</pointsize>
  275. </font>
  276. </property>
  277. <property name="styleSheet">
  278. <string notr="true">QTabBar::tab{width:72;height:108;}
  279. QTabBar::tab::selected{background-color:rgb(0,139,139);color:rgb(118, 0, 0);}
  280. QPushButton:hover{background-color:rgb(177, 177,177);}
  281. QTabBar{background-color:rgb(0,137,137);}
  282. QGroupBox{background-color:rgb(235, 235,235);border:1px solid rgb(179, 179, 179);}</string>
  283. </property>
  284. <property name="tabPosition">
  285. <enum>QTabWidget::West</enum>
  286. </property>
  287. <property name="tabShape">
  288. <enum>QTabWidget::Rounded</enum>
  289. </property>
  290. <property name="currentIndex">
  291. <number>0</number>
  292. </property>
  293. <property name="elideMode">
  294. <enum>Qt::ElideNone</enum>
  295. </property>
  296. <widget class="QWidget" name="tab">
  297. <attribute name="icon">
  298. <iconset resource="CGH_Printer.qrc">
  299. <normaloff>:/CGH_Printer/Configure/IMG/home.png</normaloff>:/CGH_Printer/Configure/IMG/home.png</iconset>
  300. </attribute>
  301. <attribute name="title">
  302. <string>主页</string>
  303. </attribute>
  304. <layout class="QGridLayout" name="gridLayout_5">
  305. <item row="0" column="1">
  306. <widget class="QGroupBox" name="groupBox">
  307. <property name="styleSheet">
  308. <string notr="true"/>
  309. </property>
  310. <property name="title">
  311. <string/>
  312. </property>
  313. <layout class="QVBoxLayout" name="verticalLayout_9">
  314. <item>
  315. <widget class="QLabel" name="label_31">
  316. <property name="font">
  317. <font>
  318. <pointsize>12</pointsize>
  319. <weight>75</weight>
  320. <bold>true</bold>
  321. </font>
  322. </property>
  323. <property name="text">
  324. <string>运行状态</string>
  325. </property>
  326. <property name="alignment">
  327. <set>Qt::AlignCenter</set>
  328. </property>
  329. </widget>
  330. </item>
  331. <item>
  332. <layout class="QHBoxLayout" name="horizontalLayout_2">
  333. <item>
  334. <widget class="QLabel" name="labelShutter">
  335. <property name="minimumSize">
  336. <size>
  337. <width>50</width>
  338. <height>50</height>
  339. </size>
  340. </property>
  341. <property name="maximumSize">
  342. <size>
  343. <width>50</width>
  344. <height>50</height>
  345. </size>
  346. </property>
  347. <property name="font">
  348. <font>
  349. <pointsize>9</pointsize>
  350. </font>
  351. </property>
  352. <property name="text">
  353. <string/>
  354. </property>
  355. <property name="pixmap">
  356. <pixmap resource="CGH_Printer.qrc">:/CGH_Printer/Configure/IMG/Redlight.png</pixmap>
  357. </property>
  358. <property name="scaledContents">
  359. <bool>true</bool>
  360. </property>
  361. <property name="alignment">
  362. <set>Qt::AlignCenter</set>
  363. </property>
  364. </widget>
  365. </item>
  366. <item>
  367. <widget class="QLabel" name="label">
  368. <property name="font">
  369. <font>
  370. <pointsize>9</pointsize>
  371. </font>
  372. </property>
  373. <property name="text">
  374. <string>电子快门</string>
  375. </property>
  376. <property name="alignment">
  377. <set>Qt::AlignCenter</set>
  378. </property>
  379. </widget>
  380. </item>
  381. </layout>
  382. </item>
  383. <item>
  384. <layout class="QHBoxLayout" name="horizontalLayout_3">
  385. <item>
  386. <widget class="QLabel" name="labelSLM">
  387. <property name="minimumSize">
  388. <size>
  389. <width>50</width>
  390. <height>50</height>
  391. </size>
  392. </property>
  393. <property name="maximumSize">
  394. <size>
  395. <width>50</width>
  396. <height>50</height>
  397. </size>
  398. </property>
  399. <property name="font">
  400. <font>
  401. <pointsize>9</pointsize>
  402. </font>
  403. </property>
  404. <property name="text">
  405. <string/>
  406. </property>
  407. <property name="pixmap">
  408. <pixmap resource="CGH_Printer.qrc">:/CGH_Printer/Configure/IMG/Redlight.png</pixmap>
  409. </property>
  410. <property name="scaledContents">
  411. <bool>true</bool>
  412. </property>
  413. <property name="alignment">
  414. <set>Qt::AlignCenter</set>
  415. </property>
  416. </widget>
  417. </item>
  418. <item>
  419. <widget class="QLabel" name="label_2">
  420. <property name="font">
  421. <font>
  422. <pointsize>9</pointsize>
  423. </font>
  424. </property>
  425. <property name="text">
  426. <string>空间光调制器</string>
  427. </property>
  428. <property name="alignment">
  429. <set>Qt::AlignCenter</set>
  430. </property>
  431. </widget>
  432. </item>
  433. </layout>
  434. </item>
  435. <item>
  436. <layout class="QHBoxLayout" name="horizontalLayout_4">
  437. <item>
  438. <widget class="QLabel" name="labelStages">
  439. <property name="minimumSize">
  440. <size>
  441. <width>50</width>
  442. <height>50</height>
  443. </size>
  444. </property>
  445. <property name="maximumSize">
  446. <size>
  447. <width>50</width>
  448. <height>50</height>
  449. </size>
  450. </property>
  451. <property name="font">
  452. <font>
  453. <pointsize>9</pointsize>
  454. </font>
  455. </property>
  456. <property name="text">
  457. <string/>
  458. </property>
  459. <property name="pixmap">
  460. <pixmap resource="CGH_Printer.qrc">:/CGH_Printer/Configure/IMG/Redlight.png</pixmap>
  461. </property>
  462. <property name="scaledContents">
  463. <bool>true</bool>
  464. </property>
  465. <property name="alignment">
  466. <set>Qt::AlignCenter</set>
  467. </property>
  468. </widget>
  469. </item>
  470. <item>
  471. <widget class="QLabel" name="label_3">
  472. <property name="font">
  473. <font>
  474. <pointsize>9</pointsize>
  475. </font>
  476. </property>
  477. <property name="text">
  478. <string>电控平移台</string>
  479. </property>
  480. <property name="alignment">
  481. <set>Qt::AlignCenter</set>
  482. </property>
  483. </widget>
  484. </item>
  485. </layout>
  486. </item>
  487. <item>
  488. <layout class="QHBoxLayout" name="horizontalLayout_5">
  489. <item>
  490. <widget class="QLabel" name="labelCCD">
  491. <property name="minimumSize">
  492. <size>
  493. <width>50</width>
  494. <height>50</height>
  495. </size>
  496. </property>
  497. <property name="maximumSize">
  498. <size>
  499. <width>50</width>
  500. <height>50</height>
  501. </size>
  502. </property>
  503. <property name="font">
  504. <font>
  505. <pointsize>9</pointsize>
  506. </font>
  507. </property>
  508. <property name="text">
  509. <string/>
  510. </property>
  511. <property name="pixmap">
  512. <pixmap resource="CGH_Printer.qrc">:/CGH_Printer/Configure/IMG/Redlight.png</pixmap>
  513. </property>
  514. <property name="scaledContents">
  515. <bool>true</bool>
  516. </property>
  517. <property name="alignment">
  518. <set>Qt::AlignCenter</set>
  519. </property>
  520. </widget>
  521. </item>
  522. <item>
  523. <widget class="QLabel" name="label_4">
  524. <property name="font">
  525. <font>
  526. <pointsize>9</pointsize>
  527. </font>
  528. </property>
  529. <property name="text">
  530. <string>CCD相机</string>
  531. </property>
  532. <property name="alignment">
  533. <set>Qt::AlignCenter</set>
  534. </property>
  535. </widget>
  536. </item>
  537. </layout>
  538. </item>
  539. </layout>
  540. </widget>
  541. </item>
  542. <item row="0" column="0">
  543. <widget class="QLabel" name="labelEquipment">
  544. <property name="minimumSize">
  545. <size>
  546. <width>612</width>
  547. <height>408</height>
  548. </size>
  549. </property>
  550. <property name="maximumSize">
  551. <size>
  552. <width>612</width>
  553. <height>408</height>
  554. </size>
  555. </property>
  556. <property name="font">
  557. <font>
  558. <pointsize>9</pointsize>
  559. </font>
  560. </property>
  561. <property name="text">
  562. <string/>
  563. </property>
  564. <property name="pixmap">
  565. <pixmap resource="CGH_Printer.qrc">:/CGH_Printer/Configure/IMG/Equipment.png</pixmap>
  566. </property>
  567. <property name="scaledContents">
  568. <bool>true</bool>
  569. </property>
  570. <property name="alignment">
  571. <set>Qt::AlignCenter</set>
  572. </property>
  573. </widget>
  574. </item>
  575. </layout>
  576. </widget>
  577. <widget class="QWidget" name="tab_2">
  578. <attribute name="icon">
  579. <iconset resource="CGH_Printer.qrc">
  580. <normaloff>:/CGH_Printer/Configure/IMG/hand.png</normaloff>:/CGH_Printer/Configure/IMG/hand.png</iconset>
  581. </attribute>
  582. <attribute name="title">
  583. <string>手动</string>
  584. </attribute>
  585. <layout class="QGridLayout" name="gridLayout_2">
  586. <item row="3" column="0" colspan="4">
  587. <widget class="QWidget" name="widget" native="true">
  588. <property name="minimumSize">
  589. <size>
  590. <width>0</width>
  591. <height>40</height>
  592. </size>
  593. </property>
  594. <property name="maximumSize">
  595. <size>
  596. <width>16777215</width>
  597. <height>40</height>
  598. </size>
  599. </property>
  600. <layout class="QHBoxLayout" name="horizontalLayout_6">
  601. <item>
  602. <spacer name="horizontalSpacer">
  603. <property name="orientation">
  604. <enum>Qt::Horizontal</enum>
  605. </property>
  606. <property name="sizeHint" stdset="0">
  607. <size>
  608. <width>40</width>
  609. <height>20</height>
  610. </size>
  611. </property>
  612. </spacer>
  613. </item>
  614. <item>
  615. <layout class="QHBoxLayout" name="horizontalLayout_9">
  616. <item>
  617. <widget class="QLabel" name="labelX">
  618. <property name="font">
  619. <font>
  620. <pointsize>9</pointsize>
  621. </font>
  622. </property>
  623. <property name="text">
  624. <string>x:</string>
  625. </property>
  626. <property name="alignment">
  627. <set>Qt::AlignCenter</set>
  628. </property>
  629. </widget>
  630. </item>
  631. <item>
  632. <widget class="QLabel" name="labelXPosition">
  633. <property name="text">
  634. <string>000.000</string>
  635. </property>
  636. <property name="alignment">
  637. <set>Qt::AlignCenter</set>
  638. </property>
  639. </widget>
  640. </item>
  641. <item>
  642. <widget class="QLabel" name="label_24">
  643. <property name="font">
  644. <font>
  645. <pointsize>9</pointsize>
  646. </font>
  647. </property>
  648. <property name="text">
  649. <string>mm</string>
  650. </property>
  651. <property name="alignment">
  652. <set>Qt::AlignCenter</set>
  653. </property>
  654. </widget>
  655. </item>
  656. </layout>
  657. </item>
  658. <item>
  659. <spacer name="horizontalSpacer_2">
  660. <property name="orientation">
  661. <enum>Qt::Horizontal</enum>
  662. </property>
  663. <property name="sizeType">
  664. <enum>QSizePolicy::Minimum</enum>
  665. </property>
  666. <property name="sizeHint" stdset="0">
  667. <size>
  668. <width>15</width>
  669. <height>20</height>
  670. </size>
  671. </property>
  672. </spacer>
  673. </item>
  674. <item>
  675. <layout class="QHBoxLayout" name="horizontalLayout_12">
  676. <item>
  677. <widget class="QLabel" name="labelY">
  678. <property name="font">
  679. <font>
  680. <pointsize>9</pointsize>
  681. </font>
  682. </property>
  683. <property name="text">
  684. <string>y:</string>
  685. </property>
  686. <property name="alignment">
  687. <set>Qt::AlignCenter</set>
  688. </property>
  689. </widget>
  690. </item>
  691. <item>
  692. <widget class="QLabel" name="labelYPosition">
  693. <property name="text">
  694. <string>000.000</string>
  695. </property>
  696. <property name="alignment">
  697. <set>Qt::AlignCenter</set>
  698. </property>
  699. </widget>
  700. </item>
  701. <item>
  702. <widget class="QLabel" name="label_25">
  703. <property name="font">
  704. <font>
  705. <pointsize>9</pointsize>
  706. </font>
  707. </property>
  708. <property name="text">
  709. <string>mm</string>
  710. </property>
  711. <property name="alignment">
  712. <set>Qt::AlignCenter</set>
  713. </property>
  714. </widget>
  715. </item>
  716. </layout>
  717. </item>
  718. </layout>
  719. </widget>
  720. </item>
  721. <item row="1" column="0" rowspan="2" colspan="3">
  722. <widget class="QGroupBox" name="groupBox_2">
  723. <property name="minimumSize">
  724. <size>
  725. <width>484</width>
  726. <height>0</height>
  727. </size>
  728. </property>
  729. <property name="maximumSize">
  730. <size>
  731. <width>484</width>
  732. <height>16777215</height>
  733. </size>
  734. </property>
  735. <property name="title">
  736. <string>全息图</string>
  737. </property>
  738. <layout class="QVBoxLayout" name="verticalLayout_2">
  739. <item>
  740. <layout class="QHBoxLayout" name="horizontalLayout_8">
  741. <property name="spacing">
  742. <number>7</number>
  743. </property>
  744. <item>
  745. <widget class="QLineEdit" name="lineEditCGHName">
  746. <property name="readOnly">
  747. <bool>true</bool>
  748. </property>
  749. </widget>
  750. </item>
  751. <item>
  752. <widget class="QPushButton" name="pushButtonLoad">
  753. <property name="maximumSize">
  754. <size>
  755. <width>93</width>
  756. <height>28</height>
  757. </size>
  758. </property>
  759. <property name="text">
  760. <string> 加载</string>
  761. </property>
  762. <property name="icon">
  763. <iconset resource="CGH_Printer.qrc">
  764. <normaloff>:/CGH_Printer/Configure/IMG/loadblue.png</normaloff>:/CGH_Printer/Configure/IMG/loadblue.png</iconset>
  765. </property>
  766. </widget>
  767. </item>
  768. </layout>
  769. </item>
  770. <item>
  771. <widget class="QLabel" name="labelCGHDisplay">
  772. <property name="minimumSize">
  773. <size>
  774. <width>0</width>
  775. <height>294</height>
  776. </size>
  777. </property>
  778. <property name="text">
  779. <string/>
  780. </property>
  781. <property name="scaledContents">
  782. <bool>true</bool>
  783. </property>
  784. <property name="alignment">
  785. <set>Qt::AlignCenter</set>
  786. </property>
  787. </widget>
  788. </item>
  789. </layout>
  790. </widget>
  791. </item>
  792. <item row="2" column="3">
  793. <widget class="QGroupBox" name="groupBox_8">
  794. <property name="title">
  795. <string>电子快门</string>
  796. </property>
  797. <layout class="QGridLayout" name="gridLayout_11">
  798. <item row="0" column="3">
  799. <widget class="QLabel" name="label_7">
  800. <property name="minimumSize">
  801. <size>
  802. <width>0</width>
  803. <height>0</height>
  804. </size>
  805. </property>
  806. <property name="maximumSize">
  807. <size>
  808. <width>16777215</width>
  809. <height>16777215</height>
  810. </size>
  811. </property>
  812. <property name="sizeIncrement">
  813. <size>
  814. <width>0</width>
  815. <height>-1</height>
  816. </size>
  817. </property>
  818. <property name="font">
  819. <font>
  820. <pointsize>9</pointsize>
  821. </font>
  822. </property>
  823. <property name="text">
  824. <string>ms</string>
  825. </property>
  826. <property name="alignment">
  827. <set>Qt::AlignCenter</set>
  828. </property>
  829. </widget>
  830. </item>
  831. <item row="0" column="4">
  832. <layout class="QVBoxLayout" name="verticalLayout_10">
  833. <item>
  834. <widget class="QPushButton" name="pushButtonShutterExpose">
  835. <property name="minimumSize">
  836. <size>
  837. <width>0</width>
  838. <height>0</height>
  839. </size>
  840. </property>
  841. <property name="maximumSize">
  842. <size>
  843. <width>16777215</width>
  844. <height>16777215</height>
  845. </size>
  846. </property>
  847. <property name="font">
  848. <font>
  849. <pointsize>9</pointsize>
  850. </font>
  851. </property>
  852. <property name="text">
  853. <string>曝光</string>
  854. </property>
  855. <property name="icon">
  856. <iconset resource="CGH_Printer.qrc">
  857. <normaloff>:/CGH_Printer/Configure/IMG/flashblue.png</normaloff>:/CGH_Printer/Configure/IMG/flashblue.png</iconset>
  858. </property>
  859. <property name="iconSize">
  860. <size>
  861. <width>20</width>
  862. <height>20</height>
  863. </size>
  864. </property>
  865. <property name="checkable">
  866. <bool>false</bool>
  867. </property>
  868. </widget>
  869. </item>
  870. <item>
  871. <widget class="QPushButton" name="pushButtonShutterStop">
  872. <property name="text">
  873. <string>停止</string>
  874. </property>
  875. <property name="icon">
  876. <iconset resource="CGH_Printer.qrc">
  877. <normaloff>:/CGH_Printer/Configure/IMG/stop1.png</normaloff>:/CGH_Printer/Configure/IMG/stop1.png</iconset>
  878. </property>
  879. <property name="iconSize">
  880. <size>
  881. <width>20</width>
  882. <height>20</height>
  883. </size>
  884. </property>
  885. <property name="checkable">
  886. <bool>false</bool>
  887. </property>
  888. </widget>
  889. </item>
  890. </layout>
  891. </item>
  892. <item row="0" column="0">
  893. <widget class="QLabel" name="label_5">
  894. <property name="minimumSize">
  895. <size>
  896. <width>0</width>
  897. <height>0</height>
  898. </size>
  899. </property>
  900. <property name="maximumSize">
  901. <size>
  902. <width>16777215</width>
  903. <height>16777215</height>
  904. </size>
  905. </property>
  906. <property name="font">
  907. <font>
  908. <pointsize>9</pointsize>
  909. </font>
  910. </property>
  911. <property name="text">
  912. <string>时间</string>
  913. </property>
  914. <property name="alignment">
  915. <set>Qt::AlignCenter</set>
  916. </property>
  917. </widget>
  918. </item>
  919. <item row="0" column="1">
  920. <widget class="QLineEdit" name="lineEditShutter">
  921. <property name="minimumSize">
  922. <size>
  923. <width>0</width>
  924. <height>0</height>
  925. </size>
  926. </property>
  927. <property name="maximumSize">
  928. <size>
  929. <width>16777215</width>
  930. <height>16777215</height>
  931. </size>
  932. </property>
  933. <property name="font">
  934. <font>
  935. <pointsize>9</pointsize>
  936. </font>
  937. </property>
  938. <property name="layoutDirection">
  939. <enum>Qt::LeftToRight</enum>
  940. </property>
  941. <property name="styleSheet">
  942. <string notr="true"/>
  943. </property>
  944. <property name="text">
  945. <string>0</string>
  946. </property>
  947. <property name="alignment">
  948. <set>Qt::AlignCenter</set>
  949. </property>
  950. </widget>
  951. </item>
  952. </layout>
  953. </widget>
  954. </item>
  955. <item row="1" column="3">
  956. <widget class="QGroupBox" name="groupBox_Move">
  957. <property name="font">
  958. <font>
  959. <pointsize>10</pointsize>
  960. <weight>50</weight>
  961. <bold>false</bold>
  962. </font>
  963. </property>
  964. <property name="title">
  965. <string>电控平移台</string>
  966. </property>
  967. <layout class="QGridLayout" name="gridLayout_17">
  968. <item row="0" column="0">
  969. <layout class="QGridLayout" name="gridLayout">
  970. <item row="0" column="0">
  971. <widget class="QLabel" name="label_8">
  972. <property name="font">
  973. <font>
  974. <pointsize>9</pointsize>
  975. </font>
  976. </property>
  977. <property name="text">
  978. <string>前</string>
  979. </property>
  980. <property name="alignment">
  981. <set>Qt::AlignCenter</set>
  982. </property>
  983. </widget>
  984. </item>
  985. <item row="1" column="3">
  986. <widget class="QPushButton" name="pushButtonDown">
  987. <property name="font">
  988. <font>
  989. <pointsize>9</pointsize>
  990. </font>
  991. </property>
  992. <property name="text">
  993. <string> 确认</string>
  994. </property>
  995. <property name="icon">
  996. <iconset resource="CGH_Printer.qrc">
  997. <normaloff>:/CGH_Printer/Configure/IMG/confirm.png</normaloff>:/CGH_Printer/Configure/IMG/confirm.png</iconset>
  998. </property>
  999. <property name="checkable">
  1000. <bool>false</bool>
  1001. </property>
  1002. </widget>
  1003. </item>
  1004. <item row="3" column="1">
  1005. <widget class="QLineEdit" name="lineEditMoveRight">
  1006. <property name="font">
  1007. <font>
  1008. <pointsize>9</pointsize>
  1009. </font>
  1010. </property>
  1011. <property name="text">
  1012. <string>000.000</string>
  1013. </property>
  1014. <property name="alignment">
  1015. <set>Qt::AlignCenter</set>
  1016. </property>
  1017. </widget>
  1018. </item>
  1019. <item row="1" column="0">
  1020. <widget class="QLabel" name="label_9">
  1021. <property name="font">
  1022. <font>
  1023. <pointsize>9</pointsize>
  1024. </font>
  1025. </property>
  1026. <property name="text">
  1027. <string>后</string>
  1028. </property>
  1029. <property name="alignment">
  1030. <set>Qt::AlignCenter</set>
  1031. </property>
  1032. </widget>
  1033. </item>
  1034. <item row="3" column="0">
  1035. <widget class="QLabel" name="label_11">
  1036. <property name="font">
  1037. <font>
  1038. <pointsize>9</pointsize>
  1039. </font>
  1040. </property>
  1041. <property name="text">
  1042. <string>右</string>
  1043. </property>
  1044. <property name="alignment">
  1045. <set>Qt::AlignCenter</set>
  1046. </property>
  1047. </widget>
  1048. </item>
  1049. <item row="0" column="3">
  1050. <widget class="QPushButton" name="pushButtonUp">
  1051. <property name="font">
  1052. <font>
  1053. <pointsize>9</pointsize>
  1054. </font>
  1055. </property>
  1056. <property name="text">
  1057. <string> 确认</string>
  1058. </property>
  1059. <property name="icon">
  1060. <iconset resource="CGH_Printer.qrc">
  1061. <normaloff>:/CGH_Printer/Configure/IMG/confirm.png</normaloff>:/CGH_Printer/Configure/IMG/confirm.png</iconset>
  1062. </property>
  1063. <property name="iconSize">
  1064. <size>
  1065. <width>16</width>
  1066. <height>16</height>
  1067. </size>
  1068. </property>
  1069. <property name="checkable">
  1070. <bool>false</bool>
  1071. </property>
  1072. </widget>
  1073. </item>
  1074. <item row="1" column="1">
  1075. <widget class="QLineEdit" name="lineEditMoveDown">
  1076. <property name="font">
  1077. <font>
  1078. <pointsize>9</pointsize>
  1079. </font>
  1080. </property>
  1081. <property name="text">
  1082. <string>000.000</string>
  1083. </property>
  1084. <property name="alignment">
  1085. <set>Qt::AlignCenter</set>
  1086. </property>
  1087. </widget>
  1088. </item>
  1089. <item row="2" column="0">
  1090. <widget class="QLabel" name="label_10">
  1091. <property name="font">
  1092. <font>
  1093. <pointsize>9</pointsize>
  1094. </font>
  1095. </property>
  1096. <property name="text">
  1097. <string>左</string>
  1098. </property>
  1099. <property name="alignment">
  1100. <set>Qt::AlignCenter</set>
  1101. </property>
  1102. </widget>
  1103. </item>
  1104. <item row="2" column="1">
  1105. <widget class="QLineEdit" name="lineEditMoveLeft">
  1106. <property name="font">
  1107. <font>
  1108. <pointsize>9</pointsize>
  1109. </font>
  1110. </property>
  1111. <property name="text">
  1112. <string>000.000</string>
  1113. </property>
  1114. <property name="alignment">
  1115. <set>Qt::AlignCenter</set>
  1116. </property>
  1117. </widget>
  1118. </item>
  1119. <item row="2" column="3">
  1120. <widget class="QPushButton" name="pushButtonLeft">
  1121. <property name="font">
  1122. <font>
  1123. <pointsize>9</pointsize>
  1124. </font>
  1125. </property>
  1126. <property name="text">
  1127. <string> 确认</string>
  1128. </property>
  1129. <property name="icon">
  1130. <iconset resource="CGH_Printer.qrc">
  1131. <normaloff>:/CGH_Printer/Configure/IMG/confirm.png</normaloff>:/CGH_Printer/Configure/IMG/confirm.png</iconset>
  1132. </property>
  1133. <property name="checkable">
  1134. <bool>false</bool>
  1135. </property>
  1136. </widget>
  1137. </item>
  1138. <item row="3" column="3">
  1139. <widget class="QPushButton" name="pushButtonRight">
  1140. <property name="font">
  1141. <font>
  1142. <pointsize>9</pointsize>
  1143. </font>
  1144. </property>
  1145. <property name="text">
  1146. <string> 确认</string>
  1147. </property>
  1148. <property name="icon">
  1149. <iconset resource="CGH_Printer.qrc">
  1150. <normaloff>:/CGH_Printer/Configure/IMG/confirm.png</normaloff>:/CGH_Printer/Configure/IMG/confirm.png</iconset>
  1151. </property>
  1152. <property name="checkable">
  1153. <bool>false</bool>
  1154. </property>
  1155. </widget>
  1156. </item>
  1157. <item row="0" column="1">
  1158. <widget class="QLineEdit" name="lineEditMoveUp">
  1159. <property name="font">
  1160. <font>
  1161. <pointsize>9</pointsize>
  1162. </font>
  1163. </property>
  1164. <property name="text">
  1165. <string>000.000</string>
  1166. </property>
  1167. <property name="alignment">
  1168. <set>Qt::AlignCenter</set>
  1169. </property>
  1170. </widget>
  1171. </item>
  1172. <item row="2" column="2">
  1173. <widget class="QLabel" name="label_14">
  1174. <property name="font">
  1175. <font>
  1176. <pointsize>9</pointsize>
  1177. </font>
  1178. </property>
  1179. <property name="text">
  1180. <string>mm</string>
  1181. </property>
  1182. <property name="alignment">
  1183. <set>Qt::AlignCenter</set>
  1184. </property>
  1185. </widget>
  1186. </item>
  1187. <item row="0" column="2">
  1188. <widget class="QLabel" name="label_12">
  1189. <property name="font">
  1190. <font>
  1191. <pointsize>9</pointsize>
  1192. </font>
  1193. </property>
  1194. <property name="text">
  1195. <string>mm</string>
  1196. </property>
  1197. <property name="alignment">
  1198. <set>Qt::AlignCenter</set>
  1199. </property>
  1200. </widget>
  1201. </item>
  1202. <item row="1" column="2">
  1203. <widget class="QLabel" name="label_13">
  1204. <property name="font">
  1205. <font>
  1206. <pointsize>9</pointsize>
  1207. </font>
  1208. </property>
  1209. <property name="text">
  1210. <string>mm</string>
  1211. </property>
  1212. <property name="alignment">
  1213. <set>Qt::AlignCenter</set>
  1214. </property>
  1215. </widget>
  1216. </item>
  1217. <item row="3" column="2">
  1218. <widget class="QLabel" name="label_15">
  1219. <property name="font">
  1220. <font>
  1221. <pointsize>9</pointsize>
  1222. </font>
  1223. </property>
  1224. <property name="text">
  1225. <string>mm</string>
  1226. </property>
  1227. <property name="alignment">
  1228. <set>Qt::AlignCenter</set>
  1229. </property>
  1230. </widget>
  1231. </item>
  1232. </layout>
  1233. </item>
  1234. <item row="1" column="0">
  1235. <layout class="QGridLayout" name="gridLayout_12">
  1236. <item row="0" column="0">
  1237. <widget class="QPushButton" name="pushButtonBlank">
  1238. <property name="text">
  1239. <string> 回零</string>
  1240. </property>
  1241. <property name="icon">
  1242. <iconset resource="CGH_Printer.qrc">
  1243. <normaloff>:/CGH_Printer/Configure/IMG/zeroblue.png</normaloff>:/CGH_Printer/Configure/IMG/zeroblue.png</iconset>
  1244. </property>
  1245. <property name="iconSize">
  1246. <size>
  1247. <width>16</width>
  1248. <height>16</height>
  1249. </size>
  1250. </property>
  1251. <property name="checkable">
  1252. <bool>false</bool>
  1253. </property>
  1254. </widget>
  1255. </item>
  1256. <item row="0" column="1">
  1257. <widget class="QPushButton" name="pushButtonTranstableStop">
  1258. <property name="text">
  1259. <string> 停止</string>
  1260. </property>
  1261. <property name="icon">
  1262. <iconset resource="CGH_Printer.qrc">
  1263. <normaloff>:/CGH_Printer/Configure/IMG/stop1.png</normaloff>:/CGH_Printer/Configure/IMG/stop1.png</iconset>
  1264. </property>
  1265. <property name="iconSize">
  1266. <size>
  1267. <width>20</width>
  1268. <height>20</height>
  1269. </size>
  1270. </property>
  1271. <property name="checkable">
  1272. <bool>false</bool>
  1273. </property>
  1274. </widget>
  1275. </item>
  1276. </layout>
  1277. </item>
  1278. </layout>
  1279. </widget>
  1280. </item>
  1281. </layout>
  1282. </widget>
  1283. <widget class="QWidget" name="tab_7">
  1284. <attribute name="icon">
  1285. <iconset resource="CGH_Printer.qrc">
  1286. <normaloff>:/CGH_Printer/Configure/IMG/hand.png</normaloff>:/CGH_Printer/Configure/IMG/hand.png</iconset>
  1287. </attribute>
  1288. <attribute name="title">
  1289. <string>手动(新)</string>
  1290. </attribute>
  1291. <layout class="QGridLayout" name="gridLayout_16">
  1292. <item row="0" column="0" rowspan="2">
  1293. <widget class="QGroupBox" name="groupBox_9">
  1294. <property name="sizePolicy">
  1295. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  1296. <horstretch>0</horstretch>
  1297. <verstretch>0</verstretch>
  1298. </sizepolicy>
  1299. </property>
  1300. <property name="minimumSize">
  1301. <size>
  1302. <width>460</width>
  1303. <height>0</height>
  1304. </size>
  1305. </property>
  1306. <property name="maximumSize">
  1307. <size>
  1308. <width>484</width>
  1309. <height>16777215</height>
  1310. </size>
  1311. </property>
  1312. <property name="title">
  1313. <string>全息图</string>
  1314. </property>
  1315. <layout class="QGridLayout" name="gridLayout_15">
  1316. <item row="0" column="0">
  1317. <layout class="QHBoxLayout" name="horizontalLayout_18">
  1318. <property name="spacing">
  1319. <number>7</number>
  1320. </property>
  1321. <item>
  1322. <widget class="QLineEdit" name="lineEditCGHName_2">
  1323. <property name="readOnly">
  1324. <bool>true</bool>
  1325. </property>
  1326. </widget>
  1327. </item>
  1328. <item>
  1329. <widget class="QPushButton" name="pushButtonLoad_2">
  1330. <property name="maximumSize">
  1331. <size>
  1332. <width>93</width>
  1333. <height>28</height>
  1334. </size>
  1335. </property>
  1336. <property name="text">
  1337. <string>加载</string>
  1338. </property>
  1339. <property name="icon">
  1340. <iconset resource="CGH_Printer.qrc">
  1341. <normaloff>:/CGH_Printer/Configure/IMG/loadblue.png</normaloff>:/CGH_Printer/Configure/IMG/loadblue.png</iconset>
  1342. </property>
  1343. </widget>
  1344. </item>
  1345. </layout>
  1346. </item>
  1347. <item row="1" column="0">
  1348. <widget class="QLabel" name="labelCGHDisplay_2">
  1349. <property name="enabled">
  1350. <bool>true</bool>
  1351. </property>
  1352. <property name="minimumSize">
  1353. <size>
  1354. <width>0</width>
  1355. <height>320</height>
  1356. </size>
  1357. </property>
  1358. <property name="cursor">
  1359. <cursorShape>UpArrowCursor</cursorShape>
  1360. </property>
  1361. <property name="text">
  1362. <string/>
  1363. </property>
  1364. <property name="textFormat">
  1365. <enum>Qt::MarkdownText</enum>
  1366. </property>
  1367. <property name="scaledContents">
  1368. <bool>true</bool>
  1369. </property>
  1370. <property name="alignment">
  1371. <set>Qt::AlignCenter</set>
  1372. </property>
  1373. </widget>
  1374. </item>
  1375. </layout>
  1376. </widget>
  1377. </item>
  1378. <item row="0" column="1">
  1379. <widget class="QGroupBox" name="groupBox_Move_2">
  1380. <property name="sizePolicy">
  1381. <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
  1382. <horstretch>0</horstretch>
  1383. <verstretch>0</verstretch>
  1384. </sizepolicy>
  1385. </property>
  1386. <property name="font">
  1387. <font>
  1388. <pointsize>10</pointsize>
  1389. <weight>50</weight>
  1390. <bold>false</bold>
  1391. </font>
  1392. </property>
  1393. <property name="title">
  1394. <string>电控平移台</string>
  1395. </property>
  1396. <layout class="QGridLayout" name="gridLayout_22">
  1397. <item row="0" column="0" rowspan="2" colspan="4">
  1398. <widget class="Line" name="line">
  1399. <property name="orientation">
  1400. <enum>Qt::Horizontal</enum>
  1401. </property>
  1402. </widget>
  1403. </item>
  1404. <item row="1" column="1">
  1405. <layout class="QGridLayout" name="gridLayout_20">
  1406. <item row="0" column="0">
  1407. <widget class="QLabel" name="labelX_2">
  1408. <property name="font">
  1409. <font>
  1410. <pointsize>9</pointsize>
  1411. </font>
  1412. </property>
  1413. <property name="text">
  1414. <string>x:</string>
  1415. </property>
  1416. <property name="alignment">
  1417. <set>Qt::AlignCenter</set>
  1418. </property>
  1419. </widget>
  1420. </item>
  1421. <item row="0" column="1">
  1422. <widget class="QLabel" name="labelXPosition_2">
  1423. <property name="text">
  1424. <string>000.000</string>
  1425. </property>
  1426. <property name="alignment">
  1427. <set>Qt::AlignCenter</set>
  1428. </property>
  1429. </widget>
  1430. </item>
  1431. <item row="0" column="2">
  1432. <widget class="QLabel" name="label_38">
  1433. <property name="font">
  1434. <font>
  1435. <pointsize>9</pointsize>
  1436. </font>
  1437. </property>
  1438. <property name="text">
  1439. <string>mm</string>
  1440. </property>
  1441. <property name="alignment">
  1442. <set>Qt::AlignCenter</set>
  1443. </property>
  1444. </widget>
  1445. </item>
  1446. </layout>
  1447. </item>
  1448. <item row="1" column="3" rowspan="4">
  1449. <widget class="Line" name="line_2">
  1450. <property name="orientation">
  1451. <enum>Qt::Vertical</enum>
  1452. </property>
  1453. </widget>
  1454. </item>
  1455. <item row="2" column="1">
  1456. <layout class="QGridLayout" name="gridLayout_18">
  1457. <item row="0" column="0">
  1458. <widget class="QLabel" name="label_30">
  1459. <property name="text">
  1460. <string>输入数值:</string>
  1461. </property>
  1462. </widget>
  1463. </item>
  1464. <item row="0" column="1">
  1465. <widget class="QLineEdit" name="lineEditMove_2">
  1466. <property name="text">
  1467. <string>000.000</string>
  1468. </property>
  1469. <property name="alignment">
  1470. <set>Qt::AlignCenter</set>
  1471. </property>
  1472. </widget>
  1473. </item>
  1474. </layout>
  1475. </item>
  1476. <item row="2" column="2">
  1477. <layout class="QGridLayout" name="gridLayout_13">
  1478. <item row="0" column="1">
  1479. <widget class="QPushButton" name="pushButtonUp_2">
  1480. <property name="focusPolicy">
  1481. <enum>Qt::StrongFocus</enum>
  1482. </property>
  1483. <property name="text">
  1484. <string/>
  1485. </property>
  1486. <property name="icon">
  1487. <iconset resource="CGH_Printer.qrc">
  1488. <normaloff>:/CGH_Printer/Configure/IMG/upblue.png</normaloff>:/CGH_Printer/Configure/IMG/upblue.png</iconset>
  1489. </property>
  1490. <property name="iconSize">
  1491. <size>
  1492. <width>25</width>
  1493. <height>25</height>
  1494. </size>
  1495. </property>
  1496. <property name="flat">
  1497. <bool>false</bool>
  1498. </property>
  1499. </widget>
  1500. </item>
  1501. <item row="1" column="0">
  1502. <widget class="QPushButton" name="pushButtonLeft_2">
  1503. <property name="focusPolicy">
  1504. <enum>Qt::StrongFocus</enum>
  1505. </property>
  1506. <property name="text">
  1507. <string/>
  1508. </property>
  1509. <property name="icon">
  1510. <iconset resource="CGH_Printer.qrc">
  1511. <normaloff>:/CGH_Printer/Configure/IMG/lblue.png</normaloff>:/CGH_Printer/Configure/IMG/lblue.png</iconset>
  1512. </property>
  1513. <property name="iconSize">
  1514. <size>
  1515. <width>25</width>
  1516. <height>25</height>
  1517. </size>
  1518. </property>
  1519. <property name="flat">
  1520. <bool>false</bool>
  1521. </property>
  1522. </widget>
  1523. </item>
  1524. <item row="1" column="1">
  1525. <widget class="QPushButton" name="pushButtonDown_2">
  1526. <property name="focusPolicy">
  1527. <enum>Qt::StrongFocus</enum>
  1528. </property>
  1529. <property name="text">
  1530. <string/>
  1531. </property>
  1532. <property name="icon">
  1533. <iconset resource="CGH_Printer.qrc">
  1534. <normaloff>:/CGH_Printer/Configure/IMG/dblue.png</normaloff>:/CGH_Printer/Configure/IMG/dblue.png</iconset>
  1535. </property>
  1536. <property name="iconSize">
  1537. <size>
  1538. <width>25</width>
  1539. <height>25</height>
  1540. </size>
  1541. </property>
  1542. <property name="flat">
  1543. <bool>false</bool>
  1544. </property>
  1545. </widget>
  1546. </item>
  1547. <item row="1" column="2">
  1548. <widget class="QPushButton" name="pushButtonRight_2">
  1549. <property name="focusPolicy">
  1550. <enum>Qt::StrongFocus</enum>
  1551. </property>
  1552. <property name="text">
  1553. <string/>
  1554. </property>
  1555. <property name="icon">
  1556. <iconset resource="CGH_Printer.qrc">
  1557. <normaloff>:/CGH_Printer/Configure/IMG/rblue.png</normaloff>:/CGH_Printer/Configure/IMG/rblue.png</iconset>
  1558. </property>
  1559. <property name="iconSize">
  1560. <size>
  1561. <width>25</width>
  1562. <height>25</height>
  1563. </size>
  1564. </property>
  1565. <property name="flat">
  1566. <bool>false</bool>
  1567. </property>
  1568. </widget>
  1569. </item>
  1570. </layout>
  1571. </item>
  1572. <item row="3" column="1">
  1573. <layout class="QGridLayout" name="gridLayout_19">
  1574. <item row="0" column="0">
  1575. <widget class="QPushButton" name="pushButtonBlank_2">
  1576. <property name="text">
  1577. <string>回零</string>
  1578. </property>
  1579. <property name="icon">
  1580. <iconset resource="CGH_Printer.qrc">
  1581. <normaloff>:/CGH_Printer/Configure/IMG/zeroblue.png</normaloff>:/CGH_Printer/Configure/IMG/zeroblue.png</iconset>
  1582. </property>
  1583. <property name="iconSize">
  1584. <size>
  1585. <width>16</width>
  1586. <height>20</height>
  1587. </size>
  1588. </property>
  1589. <property name="checkable">
  1590. <bool>false</bool>
  1591. </property>
  1592. </widget>
  1593. </item>
  1594. <item row="0" column="1">
  1595. <widget class="QPushButton" name="pushButtonTranstableStop_2">
  1596. <property name="text">
  1597. <string>停止</string>
  1598. </property>
  1599. <property name="icon">
  1600. <iconset resource="CGH_Printer.qrc">
  1601. <normaloff>:/CGH_Printer/Configure/IMG/stop1.png</normaloff>:/CGH_Printer/Configure/IMG/stop1.png</iconset>
  1602. </property>
  1603. <property name="iconSize">
  1604. <size>
  1605. <width>20</width>
  1606. <height>20</height>
  1607. </size>
  1608. </property>
  1609. <property name="checkable">
  1610. <bool>false</bool>
  1611. </property>
  1612. </widget>
  1613. </item>
  1614. </layout>
  1615. </item>
  1616. <item row="4" column="2">
  1617. <layout class="QGridLayout" name="gridLayout_21">
  1618. <item row="0" column="0">
  1619. <widget class="QLabel" name="labelY_2">
  1620. <property name="font">
  1621. <font>
  1622. <pointsize>9</pointsize>
  1623. </font>
  1624. </property>
  1625. <property name="text">
  1626. <string>y:</string>
  1627. </property>
  1628. <property name="alignment">
  1629. <set>Qt::AlignCenter</set>
  1630. </property>
  1631. </widget>
  1632. </item>
  1633. <item row="0" column="1">
  1634. <widget class="QLabel" name="labelYPosition_2">
  1635. <property name="text">
  1636. <string>000.000</string>
  1637. </property>
  1638. <property name="alignment">
  1639. <set>Qt::AlignCenter</set>
  1640. </property>
  1641. </widget>
  1642. </item>
  1643. <item row="0" column="2">
  1644. <widget class="QLabel" name="label_39">
  1645. <property name="font">
  1646. <font>
  1647. <pointsize>9</pointsize>
  1648. </font>
  1649. </property>
  1650. <property name="text">
  1651. <string>mm</string>
  1652. </property>
  1653. <property name="alignment">
  1654. <set>Qt::AlignCenter</set>
  1655. </property>
  1656. </widget>
  1657. </item>
  1658. </layout>
  1659. </item>
  1660. </layout>
  1661. </widget>
  1662. </item>
  1663. <item row="1" column="1">
  1664. <widget class="QGroupBox" name="groupBox_10">
  1665. <property name="sizePolicy">
  1666. <sizepolicy hsizetype="Expanding" vsizetype="Preferred">
  1667. <horstretch>0</horstretch>
  1668. <verstretch>0</verstretch>
  1669. </sizepolicy>
  1670. </property>
  1671. <property name="minimumSize">
  1672. <size>
  1673. <width>0</width>
  1674. <height>0</height>
  1675. </size>
  1676. </property>
  1677. <property name="title">
  1678. <string>电子快门</string>
  1679. </property>
  1680. <layout class="QGridLayout" name="gridLayout_14">
  1681. <item row="0" column="1">
  1682. <widget class="QLineEdit" name="lineEditShutter_2">
  1683. <property name="minimumSize">
  1684. <size>
  1685. <width>0</width>
  1686. <height>0</height>
  1687. </size>
  1688. </property>
  1689. <property name="maximumSize">
  1690. <size>
  1691. <width>16777215</width>
  1692. <height>16777215</height>
  1693. </size>
  1694. </property>
  1695. <property name="font">
  1696. <font>
  1697. <pointsize>9</pointsize>
  1698. </font>
  1699. </property>
  1700. <property name="layoutDirection">
  1701. <enum>Qt::LeftToRight</enum>
  1702. </property>
  1703. <property name="styleSheet">
  1704. <string notr="true"/>
  1705. </property>
  1706. <property name="text">
  1707. <string>0</string>
  1708. </property>
  1709. <property name="alignment">
  1710. <set>Qt::AlignCenter</set>
  1711. </property>
  1712. </widget>
  1713. </item>
  1714. <item row="0" column="3">
  1715. <layout class="QVBoxLayout" name="verticalLayout_11">
  1716. <item>
  1717. <widget class="QPushButton" name="pushButtonShutterExpose_2">
  1718. <property name="minimumSize">
  1719. <size>
  1720. <width>0</width>
  1721. <height>0</height>
  1722. </size>
  1723. </property>
  1724. <property name="maximumSize">
  1725. <size>
  1726. <width>16777215</width>
  1727. <height>16777215</height>
  1728. </size>
  1729. </property>
  1730. <property name="font">
  1731. <font>
  1732. <pointsize>9</pointsize>
  1733. </font>
  1734. </property>
  1735. <property name="text">
  1736. <string>曝光</string>
  1737. </property>
  1738. <property name="icon">
  1739. <iconset resource="CGH_Printer.qrc">
  1740. <normaloff>:/CGH_Printer/Configure/IMG/flashblue.png</normaloff>:/CGH_Printer/Configure/IMG/flashblue.png</iconset>
  1741. </property>
  1742. <property name="iconSize">
  1743. <size>
  1744. <width>20</width>
  1745. <height>20</height>
  1746. </size>
  1747. </property>
  1748. <property name="checkable">
  1749. <bool>false</bool>
  1750. </property>
  1751. </widget>
  1752. </item>
  1753. <item>
  1754. <widget class="QPushButton" name="pushButtonShutterStop_2">
  1755. <property name="text">
  1756. <string>停止</string>
  1757. </property>
  1758. <property name="icon">
  1759. <iconset resource="CGH_Printer.qrc">
  1760. <normaloff>:/CGH_Printer/Configure/IMG/stop1.png</normaloff>:/CGH_Printer/Configure/IMG/stop1.png</iconset>
  1761. </property>
  1762. <property name="iconSize">
  1763. <size>
  1764. <width>20</width>
  1765. <height>20</height>
  1766. </size>
  1767. </property>
  1768. <property name="checkable">
  1769. <bool>false</bool>
  1770. </property>
  1771. </widget>
  1772. </item>
  1773. </layout>
  1774. </item>
  1775. <item row="0" column="2">
  1776. <widget class="QLabel" name="label_37">
  1777. <property name="minimumSize">
  1778. <size>
  1779. <width>0</width>
  1780. <height>0</height>
  1781. </size>
  1782. </property>
  1783. <property name="maximumSize">
  1784. <size>
  1785. <width>16777215</width>
  1786. <height>16777215</height>
  1787. </size>
  1788. </property>
  1789. <property name="sizeIncrement">
  1790. <size>
  1791. <width>0</width>
  1792. <height>-1</height>
  1793. </size>
  1794. </property>
  1795. <property name="font">
  1796. <font>
  1797. <pointsize>9</pointsize>
  1798. </font>
  1799. </property>
  1800. <property name="text">
  1801. <string>ms</string>
  1802. </property>
  1803. <property name="alignment">
  1804. <set>Qt::AlignCenter</set>
  1805. </property>
  1806. </widget>
  1807. </item>
  1808. <item row="0" column="0">
  1809. <widget class="QLabel" name="label_36">
  1810. <property name="minimumSize">
  1811. <size>
  1812. <width>0</width>
  1813. <height>0</height>
  1814. </size>
  1815. </property>
  1816. <property name="maximumSize">
  1817. <size>
  1818. <width>16777215</width>
  1819. <height>16777215</height>
  1820. </size>
  1821. </property>
  1822. <property name="font">
  1823. <font>
  1824. <pointsize>9</pointsize>
  1825. </font>
  1826. </property>
  1827. <property name="text">
  1828. <string>时间</string>
  1829. </property>
  1830. <property name="alignment">
  1831. <set>Qt::AlignCenter</set>
  1832. </property>
  1833. </widget>
  1834. </item>
  1835. </layout>
  1836. </widget>
  1837. </item>
  1838. </layout>
  1839. </widget>
  1840. <widget class="QWidget" name="tab_3">
  1841. <attribute name="icon">
  1842. <iconset resource="CGH_Printer.qrc">
  1843. <normaloff>:/CGH_Printer/Configure/IMG/work.png</normaloff>:/CGH_Printer/Configure/IMG/work.png</iconset>
  1844. </attribute>
  1845. <attribute name="title">
  1846. <string>作业</string>
  1847. </attribute>
  1848. <layout class="QGridLayout" name="gridLayout_9">
  1849. <item row="0" column="0">
  1850. <widget class="QGroupBox" name="groupBox_12">
  1851. <property name="title">
  1852. <string/>
  1853. </property>
  1854. <layout class="QVBoxLayout" name="verticalLayout_5">
  1855. <item>
  1856. <widget class="QLabel" name="label_32">
  1857. <property name="font">
  1858. <font>
  1859. <pointsize>18</pointsize>
  1860. </font>
  1861. </property>
  1862. <property name="text">
  1863. <string>工程名</string>
  1864. </property>
  1865. <property name="alignment">
  1866. <set>Qt::AlignCenter</set>
  1867. </property>
  1868. </widget>
  1869. </item>
  1870. <item>
  1871. <widget class="QScrollArea" name="scrollAreaWork">
  1872. <property name="widgetResizable">
  1873. <bool>true</bool>
  1874. </property>
  1875. <property name="alignment">
  1876. <set>Qt::AlignCenter</set>
  1877. </property>
  1878. <widget class="QWidget" name="scrollAreaWidgetContents">
  1879. <property name="geometry">
  1880. <rect>
  1881. <x>0</x>
  1882. <y>0</y>
  1883. <width>724</width>
  1884. <height>357</height>
  1885. </rect>
  1886. </property>
  1887. <layout class="QVBoxLayout" name="verticalLayout">
  1888. <item>
  1889. <layout class="QVBoxLayout" name="verticalLayoutWork"/>
  1890. </item>
  1891. <item>
  1892. <spacer name="verticalSpacer">
  1893. <property name="orientation">
  1894. <enum>Qt::Vertical</enum>
  1895. </property>
  1896. <property name="sizeHint" stdset="0">
  1897. <size>
  1898. <width>20</width>
  1899. <height>40</height>
  1900. </size>
  1901. </property>
  1902. </spacer>
  1903. </item>
  1904. </layout>
  1905. </widget>
  1906. </widget>
  1907. </item>
  1908. </layout>
  1909. </widget>
  1910. </item>
  1911. <item row="0" column="1">
  1912. <widget class="QGroupBox" name="groupBox_5">
  1913. <property name="maximumSize">
  1914. <size>
  1915. <width>185</width>
  1916. <height>16777215</height>
  1917. </size>
  1918. </property>
  1919. <property name="styleSheet">
  1920. <string notr="true"/>
  1921. </property>
  1922. <property name="title">
  1923. <string/>
  1924. </property>
  1925. <property name="alignment">
  1926. <set>Qt::AlignCenter</set>
  1927. </property>
  1928. <layout class="QVBoxLayout" name="verticalLayout_4">
  1929. <item>
  1930. <widget class="QPushButton" name="pushButtonNew">
  1931. <property name="minimumSize">
  1932. <size>
  1933. <width>0</width>
  1934. <height>0</height>
  1935. </size>
  1936. </property>
  1937. <property name="maximumSize">
  1938. <size>
  1939. <width>16777215</width>
  1940. <height>16777215</height>
  1941. </size>
  1942. </property>
  1943. <property name="font">
  1944. <font>
  1945. <pointsize>12</pointsize>
  1946. </font>
  1947. </property>
  1948. <property name="text">
  1949. <string> 新建</string>
  1950. </property>
  1951. <property name="icon">
  1952. <iconset resource="CGH_Printer.qrc">
  1953. <normaloff>:/CGH_Printer/Configure/IMG/newblue.png</normaloff>:/CGH_Printer/Configure/IMG/newblue.png</iconset>
  1954. </property>
  1955. <property name="iconSize">
  1956. <size>
  1957. <width>20</width>
  1958. <height>20</height>
  1959. </size>
  1960. </property>
  1961. </widget>
  1962. </item>
  1963. <item>
  1964. <widget class="QPushButton" name="pushButtonModify">
  1965. <property name="minimumSize">
  1966. <size>
  1967. <width>0</width>
  1968. <height>0</height>
  1969. </size>
  1970. </property>
  1971. <property name="maximumSize">
  1972. <size>
  1973. <width>16777215</width>
  1974. <height>16777215</height>
  1975. </size>
  1976. </property>
  1977. <property name="font">
  1978. <font>
  1979. <pointsize>12</pointsize>
  1980. </font>
  1981. </property>
  1982. <property name="text">
  1983. <string> 修改</string>
  1984. </property>
  1985. <property name="icon">
  1986. <iconset resource="CGH_Printer.qrc">
  1987. <normaloff>:/CGH_Printer/Configure/IMG/changeblue.png</normaloff>:/CGH_Printer/Configure/IMG/changeblue.png</iconset>
  1988. </property>
  1989. </widget>
  1990. </item>
  1991. <item>
  1992. <widget class="QPushButton" name="pushButtonDelete">
  1993. <property name="minimumSize">
  1994. <size>
  1995. <width>0</width>
  1996. <height>0</height>
  1997. </size>
  1998. </property>
  1999. <property name="maximumSize">
  2000. <size>
  2001. <width>16777215</width>
  2002. <height>16777215</height>
  2003. </size>
  2004. </property>
  2005. <property name="font">
  2006. <font>
  2007. <pointsize>12</pointsize>
  2008. </font>
  2009. </property>
  2010. <property name="text">
  2011. <string> 删除</string>
  2012. </property>
  2013. <property name="icon">
  2014. <iconset resource="CGH_Printer.qrc">
  2015. <normaloff>:/CGH_Printer/Configure/IMG/deleteblue.png</normaloff>:/CGH_Printer/Configure/IMG/deleteblue.png</iconset>
  2016. </property>
  2017. <property name="iconSize">
  2018. <size>
  2019. <width>20</width>
  2020. <height>20</height>
  2021. </size>
  2022. </property>
  2023. </widget>
  2024. </item>
  2025. <item>
  2026. <widget class="QPushButton" name="pushButtonUnderfeed">
  2027. <property name="font">
  2028. <font>
  2029. <pointsize>12</pointsize>
  2030. </font>
  2031. </property>
  2032. <property name="text">
  2033. <string> 下料</string>
  2034. </property>
  2035. <property name="icon">
  2036. <iconset resource="CGH_Printer.qrc">
  2037. <normaloff>:/CGH_Printer/Configure/IMG/downblue.png</normaloff>:/CGH_Printer/Configure/IMG/downblue.png</iconset>
  2038. </property>
  2039. <property name="iconSize">
  2040. <size>
  2041. <width>20</width>
  2042. <height>20</height>
  2043. </size>
  2044. </property>
  2045. </widget>
  2046. </item>
  2047. <item>
  2048. <widget class="QPushButton" name="pushButtonFeed">
  2049. <property name="font">
  2050. <font>
  2051. <pointsize>12</pointsize>
  2052. </font>
  2053. </property>
  2054. <property name="text">
  2055. <string> 上料</string>
  2056. </property>
  2057. <property name="icon">
  2058. <iconset resource="CGH_Printer.qrc">
  2059. <normaloff>:/CGH_Printer/Configure/IMG/upbule.png</normaloff>:/CGH_Printer/Configure/IMG/upbule.png</iconset>
  2060. </property>
  2061. <property name="iconSize">
  2062. <size>
  2063. <width>20</width>
  2064. <height>20</height>
  2065. </size>
  2066. </property>
  2067. </widget>
  2068. </item>
  2069. <item>
  2070. <widget class="QPushButton" name="pushButtonPrint">
  2071. <property name="minimumSize">
  2072. <size>
  2073. <width>0</width>
  2074. <height>0</height>
  2075. </size>
  2076. </property>
  2077. <property name="maximumSize">
  2078. <size>
  2079. <width>16777215</width>
  2080. <height>16777215</height>
  2081. </size>
  2082. </property>
  2083. <property name="font">
  2084. <font>
  2085. <pointsize>12</pointsize>
  2086. </font>
  2087. </property>
  2088. <property name="text">
  2089. <string> 加载</string>
  2090. </property>
  2091. <property name="icon">
  2092. <iconset resource="CGH_Printer.qrc">
  2093. <normaloff>:/CGH_Printer/Configure/IMG/loadblue.png</normaloff>:/CGH_Printer/Configure/IMG/loadblue.png</iconset>
  2094. </property>
  2095. </widget>
  2096. </item>
  2097. </layout>
  2098. </widget>
  2099. </item>
  2100. </layout>
  2101. </widget>
  2102. <widget class="QWidget" name="tab_4">
  2103. <attribute name="icon">
  2104. <iconset resource="CGH_Printer.qrc">
  2105. <normaloff>:/CGH_Printer/Configure/IMG/print.png</normaloff>:/CGH_Printer/Configure/IMG/print.png</iconset>
  2106. </attribute>
  2107. <attribute name="title">
  2108. <string>打印</string>
  2109. </attribute>
  2110. <layout class="QGridLayout" name="gridLayout_6">
  2111. <item row="0" column="0" colspan="2">
  2112. <widget class="QGroupBox" name="groupBox_14">
  2113. <property name="title">
  2114. <string/>
  2115. </property>
  2116. <layout class="QGridLayout" name="gridLayout_8">
  2117. <item row="0" column="0">
  2118. <widget class="QLabel" name="label_33">
  2119. <property name="font">
  2120. <font>
  2121. <pointsize>9</pointsize>
  2122. </font>
  2123. </property>
  2124. <property name="text">
  2125. <string>当前作业:</string>
  2126. </property>
  2127. <property name="alignment">
  2128. <set>Qt::AlignCenter</set>
  2129. </property>
  2130. </widget>
  2131. </item>
  2132. <item row="0" column="1">
  2133. <widget class="QLineEdit" name="lineEditPrintName">
  2134. <property name="minimumSize">
  2135. <size>
  2136. <width>0</width>
  2137. <height>40</height>
  2138. </size>
  2139. </property>
  2140. <property name="font">
  2141. <font>
  2142. <pointsize>9</pointsize>
  2143. </font>
  2144. </property>
  2145. <property name="alignment">
  2146. <set>Qt::AlignCenter</set>
  2147. </property>
  2148. <property name="readOnly">
  2149. <bool>true</bool>
  2150. </property>
  2151. </widget>
  2152. </item>
  2153. <item row="1" column="0">
  2154. <widget class="QLabel" name="label_40">
  2155. <property name="font">
  2156. <font>
  2157. <pointsize>9</pointsize>
  2158. </font>
  2159. </property>
  2160. <property name="text">
  2161. <string>进度:</string>
  2162. </property>
  2163. <property name="alignment">
  2164. <set>Qt::AlignCenter</set>
  2165. </property>
  2166. </widget>
  2167. </item>
  2168. <item row="1" column="1">
  2169. <widget class="QProgressBar" name="progressBarPrint">
  2170. <property name="minimumSize">
  2171. <size>
  2172. <width>0</width>
  2173. <height>40</height>
  2174. </size>
  2175. </property>
  2176. <property name="font">
  2177. <font>
  2178. <pointsize>9</pointsize>
  2179. </font>
  2180. </property>
  2181. <property name="value">
  2182. <number>24</number>
  2183. </property>
  2184. <property name="alignment">
  2185. <set>Qt::AlignCenter</set>
  2186. </property>
  2187. <property name="textVisible">
  2188. <bool>true</bool>
  2189. </property>
  2190. <property name="orientation">
  2191. <enum>Qt::Horizontal</enum>
  2192. </property>
  2193. <property name="invertedAppearance">
  2194. <bool>false</bool>
  2195. </property>
  2196. <property name="textDirection">
  2197. <enum>QProgressBar::TopToBottom</enum>
  2198. </property>
  2199. </widget>
  2200. </item>
  2201. </layout>
  2202. </widget>
  2203. </item>
  2204. <item row="1" column="0" colspan="2">
  2205. <widget class="QGroupBox" name="groupBox_16">
  2206. <property name="minimumSize">
  2207. <size>
  2208. <width>0</width>
  2209. <height>170</height>
  2210. </size>
  2211. </property>
  2212. <property name="title">
  2213. <string/>
  2214. </property>
  2215. <layout class="QHBoxLayout" name="horizontalLayout_10">
  2216. <item>
  2217. <spacer name="horizontalSpacer_3">
  2218. <property name="orientation">
  2219. <enum>Qt::Horizontal</enum>
  2220. </property>
  2221. <property name="sizeHint" stdset="0">
  2222. <size>
  2223. <width>40</width>
  2224. <height>20</height>
  2225. </size>
  2226. </property>
  2227. </spacer>
  2228. </item>
  2229. <item>
  2230. <widget class="QLabel" name="labelPhy">
  2231. <property name="minimumSize">
  2232. <size>
  2233. <width>256</width>
  2234. <height>144</height>
  2235. </size>
  2236. </property>
  2237. <property name="maximumSize">
  2238. <size>
  2239. <width>256</width>
  2240. <height>144</height>
  2241. </size>
  2242. </property>
  2243. <property name="font">
  2244. <font>
  2245. <pointsize>9</pointsize>
  2246. </font>
  2247. </property>
  2248. <property name="text">
  2249. <string>实物图</string>
  2250. </property>
  2251. <property name="scaledContents">
  2252. <bool>true</bool>
  2253. </property>
  2254. <property name="alignment">
  2255. <set>Qt::AlignCenter</set>
  2256. </property>
  2257. </widget>
  2258. </item>
  2259. <item>
  2260. <spacer name="horizontalSpacer_4">
  2261. <property name="orientation">
  2262. <enum>Qt::Horizontal</enum>
  2263. </property>
  2264. <property name="sizeHint" stdset="0">
  2265. <size>
  2266. <width>40</width>
  2267. <height>20</height>
  2268. </size>
  2269. </property>
  2270. </spacer>
  2271. </item>
  2272. <item>
  2273. <widget class="QLabel" name="labelSLMCopy">
  2274. <property name="minimumSize">
  2275. <size>
  2276. <width>256</width>
  2277. <height>144</height>
  2278. </size>
  2279. </property>
  2280. <property name="maximumSize">
  2281. <size>
  2282. <width>256</width>
  2283. <height>144</height>
  2284. </size>
  2285. </property>
  2286. <property name="font">
  2287. <font>
  2288. <pointsize>9</pointsize>
  2289. </font>
  2290. </property>
  2291. <property name="text">
  2292. <string>空间光调制器</string>
  2293. </property>
  2294. <property name="scaledContents">
  2295. <bool>true</bool>
  2296. </property>
  2297. <property name="alignment">
  2298. <set>Qt::AlignCenter</set>
  2299. </property>
  2300. </widget>
  2301. </item>
  2302. <item>
  2303. <spacer name="horizontalSpacer_5">
  2304. <property name="orientation">
  2305. <enum>Qt::Horizontal</enum>
  2306. </property>
  2307. <property name="sizeHint" stdset="0">
  2308. <size>
  2309. <width>40</width>
  2310. <height>20</height>
  2311. </size>
  2312. </property>
  2313. </spacer>
  2314. </item>
  2315. </layout>
  2316. </widget>
  2317. </item>
  2318. <item row="2" column="0">
  2319. <widget class="QGroupBox" name="groupBox_13">
  2320. <property name="title">
  2321. <string/>
  2322. </property>
  2323. <layout class="QGridLayout" name="gridLayout_7">
  2324. <item row="0" column="0">
  2325. <widget class="QLabel" name="label_34">
  2326. <property name="font">
  2327. <font>
  2328. <pointsize>9</pointsize>
  2329. </font>
  2330. </property>
  2331. <property name="text">
  2332. <string>开始时间:</string>
  2333. </property>
  2334. <property name="alignment">
  2335. <set>Qt::AlignCenter</set>
  2336. </property>
  2337. </widget>
  2338. </item>
  2339. <item row="1" column="0">
  2340. <widget class="QLabel" name="label_35">
  2341. <property name="font">
  2342. <font>
  2343. <pointsize>9</pointsize>
  2344. </font>
  2345. </property>
  2346. <property name="text">
  2347. <string>已打印:</string>
  2348. </property>
  2349. <property name="alignment">
  2350. <set>Qt::AlignCenter</set>
  2351. </property>
  2352. </widget>
  2353. </item>
  2354. <item row="0" column="1">
  2355. <widget class="QLineEdit" name="lineEditStart">
  2356. <property name="maximumSize">
  2357. <size>
  2358. <width>16777215</width>
  2359. <height>16777215</height>
  2360. </size>
  2361. </property>
  2362. <property name="alignment">
  2363. <set>Qt::AlignCenter</set>
  2364. </property>
  2365. <property name="readOnly">
  2366. <bool>true</bool>
  2367. </property>
  2368. </widget>
  2369. </item>
  2370. <item row="1" column="1">
  2371. <widget class="QLineEdit" name="lineEditPrinted">
  2372. <property name="maximumSize">
  2373. <size>
  2374. <width>16777215</width>
  2375. <height>16777215</height>
  2376. </size>
  2377. </property>
  2378. <property name="alignment">
  2379. <set>Qt::AlignCenter</set>
  2380. </property>
  2381. <property name="readOnly">
  2382. <bool>true</bool>
  2383. </property>
  2384. </widget>
  2385. </item>
  2386. </layout>
  2387. </widget>
  2388. </item>
  2389. <item row="2" column="1">
  2390. <widget class="QGroupBox" name="groupBox_15">
  2391. <property name="title">
  2392. <string/>
  2393. </property>
  2394. <layout class="QHBoxLayout" name="horizontalLayout_13">
  2395. <item>
  2396. <widget class="QPushButton" name="pushButtonPrintOK">
  2397. <property name="minimumSize">
  2398. <size>
  2399. <width>160</width>
  2400. <height>90</height>
  2401. </size>
  2402. </property>
  2403. <property name="maximumSize">
  2404. <size>
  2405. <width>160</width>
  2406. <height>90</height>
  2407. </size>
  2408. </property>
  2409. <property name="sizeIncrement">
  2410. <size>
  2411. <width>160</width>
  2412. <height>90</height>
  2413. </size>
  2414. </property>
  2415. <property name="font">
  2416. <font>
  2417. <pointsize>15</pointsize>
  2418. </font>
  2419. </property>
  2420. <property name="text">
  2421. <string>开始</string>
  2422. </property>
  2423. <property name="icon">
  2424. <iconset resource="CGH_Printer.qrc">
  2425. <normaloff>:/CGH_Printer/Configure/IMG/start.png</normaloff>
  2426. <normalon>:/CGH_Printer/Configure/IMG/pause.png</normalon>
  2427. <selectedoff>:/CGH_Printer/Configure/IMG/pause.png</selectedoff>:/CGH_Printer/Configure/IMG/start.png</iconset>
  2428. </property>
  2429. <property name="iconSize">
  2430. <size>
  2431. <width>35</width>
  2432. <height>35</height>
  2433. </size>
  2434. </property>
  2435. <property name="checkable">
  2436. <bool>true</bool>
  2437. </property>
  2438. <property name="autoExclusive">
  2439. <bool>false</bool>
  2440. </property>
  2441. </widget>
  2442. </item>
  2443. <item>
  2444. <widget class="QPushButton" name="pushButtonPrintCancel">
  2445. <property name="minimumSize">
  2446. <size>
  2447. <width>160</width>
  2448. <height>90</height>
  2449. </size>
  2450. </property>
  2451. <property name="maximumSize">
  2452. <size>
  2453. <width>160</width>
  2454. <height>90</height>
  2455. </size>
  2456. </property>
  2457. <property name="font">
  2458. <font>
  2459. <pointsize>15</pointsize>
  2460. </font>
  2461. </property>
  2462. <property name="text">
  2463. <string>停止</string>
  2464. </property>
  2465. <property name="icon">
  2466. <iconset resource="CGH_Printer.qrc">
  2467. <normaloff>:/CGH_Printer/Configure/IMG/stop1.png</normaloff>
  2468. <normalon>:/CGH_Printer/Configure/IMG/stop.png</normalon>
  2469. <disabledon>:/CGH_Printer/Configure/IMG/stop1.png</disabledon>
  2470. <activeoff>:/CGH_Printer/Configure/IMG/stop.png</activeoff>
  2471. <activeon>:/CGH_Printer/Configure/IMG/stop1.png</activeon>:/CGH_Printer/Configure/IMG/stop1.png</iconset>
  2472. </property>
  2473. <property name="iconSize">
  2474. <size>
  2475. <width>30</width>
  2476. <height>30</height>
  2477. </size>
  2478. </property>
  2479. </widget>
  2480. </item>
  2481. </layout>
  2482. </widget>
  2483. </item>
  2484. </layout>
  2485. </widget>
  2486. <widget class="QWidget" name="tab_5">
  2487. <attribute name="icon">
  2488. <iconset resource="CGH_Printer.qrc">
  2489. <normaloff>:/CGH_Printer/Configure/IMG/light.png</normaloff>:/CGH_Printer/Configure/IMG/light.png</iconset>
  2490. </attribute>
  2491. <attribute name="title">
  2492. <string>光路</string>
  2493. </attribute>
  2494. <layout class="QHBoxLayout" name="horizontalLayout_11">
  2495. <item>
  2496. <widget class="QGroupBox" name="groupBox_11">
  2497. <property name="title">
  2498. <string/>
  2499. </property>
  2500. <layout class="QVBoxLayout" name="verticalLayout_6">
  2501. <item>
  2502. <widget class="QLabel" name="label_41">
  2503. <property name="text">
  2504. <string>设备:</string>
  2505. </property>
  2506. </widget>
  2507. </item>
  2508. <item>
  2509. <widget class="QComboBox" name="comboBoxDevice"/>
  2510. </item>
  2511. <item>
  2512. <widget class="QLabel" name="label_42">
  2513. <property name="text">
  2514. <string>格式:</string>
  2515. </property>
  2516. </widget>
  2517. </item>
  2518. <item>
  2519. <widget class="QComboBox" name="comboBoxFormat"/>
  2520. </item>
  2521. <item>
  2522. <widget class="QLabel" name="label_43">
  2523. <property name="text">
  2524. <string>帧速率:</string>
  2525. </property>
  2526. </widget>
  2527. </item>
  2528. <item>
  2529. <widget class="QComboBox" name="comboBoxFramerate"/>
  2530. </item>
  2531. <item>
  2532. <widget class="QPushButton" name="pushButtonPreview">
  2533. <property name="text">
  2534. <string> 预览</string>
  2535. </property>
  2536. <property name="icon">
  2537. <iconset resource="CGH_Printer.qrc">
  2538. <normaloff>:/CGH_Printer/Configure/IMG/previewblue.png</normaloff>:/CGH_Printer/Configure/IMG/previewblue.png</iconset>
  2539. </property>
  2540. <property name="iconSize">
  2541. <size>
  2542. <width>20</width>
  2543. <height>20</height>
  2544. </size>
  2545. </property>
  2546. </widget>
  2547. </item>
  2548. <item>
  2549. <widget class="QPushButton" name="pushButtonSnapshot">
  2550. <property name="text">
  2551. <string> 截图</string>
  2552. </property>
  2553. <property name="icon">
  2554. <iconset resource="CGH_Printer.qrc">
  2555. <normaloff>:/CGH_Printer/Configure/IMG/Screenshotsblue.png</normaloff>:/CGH_Printer/Configure/IMG/Screenshotsblue.png</iconset>
  2556. </property>
  2557. <property name="iconSize">
  2558. <size>
  2559. <width>20</width>
  2560. <height>20</height>
  2561. </size>
  2562. </property>
  2563. </widget>
  2564. </item>
  2565. <item>
  2566. <spacer name="verticalSpacer_2">
  2567. <property name="orientation">
  2568. <enum>Qt::Vertical</enum>
  2569. </property>
  2570. <property name="sizeHint" stdset="0">
  2571. <size>
  2572. <width>20</width>
  2573. <height>40</height>
  2574. </size>
  2575. </property>
  2576. </spacer>
  2577. </item>
  2578. </layout>
  2579. </widget>
  2580. </item>
  2581. <item>
  2582. <widget class="QWidget" name="widgetCCD" native="true">
  2583. <property name="sizePolicy">
  2584. <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
  2585. <horstretch>0</horstretch>
  2586. <verstretch>0</verstretch>
  2587. </sizepolicy>
  2588. </property>
  2589. <property name="minimumSize">
  2590. <size>
  2591. <width>670</width>
  2592. <height>409</height>
  2593. </size>
  2594. </property>
  2595. <property name="maximumSize">
  2596. <size>
  2597. <width>670</width>
  2598. <height>409</height>
  2599. </size>
  2600. </property>
  2601. </widget>
  2602. </item>
  2603. </layout>
  2604. </widget>
  2605. <widget class="QWidget" name="tab_6">
  2606. <attribute name="icon">
  2607. <iconset resource="CGH_Printer.qrc">
  2608. <normaloff>:/CGH_Printer/Configure/IMG/set.png</normaloff>:/CGH_Printer/Configure/IMG/set.png</iconset>
  2609. </attribute>
  2610. <attribute name="title">
  2611. <string>配置</string>
  2612. </attribute>
  2613. <layout class="QGridLayout" name="gridLayout_10">
  2614. <item row="0" column="1">
  2615. <widget class="QGroupBox" name="groupBox_4">
  2616. <property name="title">
  2617. <string>轴y</string>
  2618. </property>
  2619. <layout class="QGridLayout" name="gridLayout_4">
  2620. <item row="0" column="0">
  2621. <widget class="QLabel" name="label_6">
  2622. <property name="text">
  2623. <string>加速度</string>
  2624. </property>
  2625. <property name="alignment">
  2626. <set>Qt::AlignCenter</set>
  2627. </property>
  2628. </widget>
  2629. </item>
  2630. <item row="0" column="1">
  2631. <widget class="QLineEdit" name="lineEditAccY">
  2632. <property name="text">
  2633. <string>000.000</string>
  2634. </property>
  2635. <property name="alignment">
  2636. <set>Qt::AlignCenter</set>
  2637. </property>
  2638. </widget>
  2639. </item>
  2640. <item row="0" column="2">
  2641. <widget class="QLabel" name="label_26">
  2642. <property name="text">
  2643. <string>mm/s^2</string>
  2644. </property>
  2645. <property name="alignment">
  2646. <set>Qt::AlignCenter</set>
  2647. </property>
  2648. </widget>
  2649. </item>
  2650. <item row="1" column="0">
  2651. <widget class="QLabel" name="label_22">
  2652. <property name="text">
  2653. <string>减速度</string>
  2654. </property>
  2655. <property name="alignment">
  2656. <set>Qt::AlignCenter</set>
  2657. </property>
  2658. </widget>
  2659. </item>
  2660. <item row="1" column="1">
  2661. <widget class="QLineEdit" name="lineEditDecY">
  2662. <property name="text">
  2663. <string>000.000</string>
  2664. </property>
  2665. <property name="alignment">
  2666. <set>Qt::AlignCenter</set>
  2667. </property>
  2668. </widget>
  2669. </item>
  2670. <item row="1" column="2">
  2671. <widget class="QLabel" name="label_27">
  2672. <property name="text">
  2673. <string>mm/s^2</string>
  2674. </property>
  2675. <property name="alignment">
  2676. <set>Qt::AlignCenter</set>
  2677. </property>
  2678. </widget>
  2679. </item>
  2680. <item row="2" column="0">
  2681. <widget class="QLabel" name="label_23">
  2682. <property name="text">
  2683. <string>最大速度</string>
  2684. </property>
  2685. <property name="alignment">
  2686. <set>Qt::AlignCenter</set>
  2687. </property>
  2688. </widget>
  2689. </item>
  2690. <item row="2" column="1">
  2691. <widget class="QLineEdit" name="lineEditMaxvY">
  2692. <property name="text">
  2693. <string>000.000</string>
  2694. </property>
  2695. <property name="alignment">
  2696. <set>Qt::AlignCenter</set>
  2697. </property>
  2698. </widget>
  2699. </item>
  2700. <item row="2" column="2">
  2701. <widget class="QLabel" name="label_28">
  2702. <property name="text">
  2703. <string>mm/s</string>
  2704. </property>
  2705. <property name="alignment">
  2706. <set>Qt::AlignCenter</set>
  2707. </property>
  2708. </widget>
  2709. </item>
  2710. </layout>
  2711. </widget>
  2712. </item>
  2713. <item row="2" column="1">
  2714. <spacer name="verticalSpacer_3">
  2715. <property name="orientation">
  2716. <enum>Qt::Vertical</enum>
  2717. </property>
  2718. <property name="sizeHint" stdset="0">
  2719. <size>
  2720. <width>20</width>
  2721. <height>40</height>
  2722. </size>
  2723. </property>
  2724. </spacer>
  2725. </item>
  2726. <item row="0" column="0">
  2727. <widget class="QGroupBox" name="groupBox_7">
  2728. <property name="font">
  2729. <font>
  2730. <pointsize>10</pointsize>
  2731. <weight>50</weight>
  2732. <bold>false</bold>
  2733. </font>
  2734. </property>
  2735. <property name="title">
  2736. <string>轴x</string>
  2737. </property>
  2738. <layout class="QGridLayout" name="gridLayout_3">
  2739. <item row="2" column="0">
  2740. <widget class="QLabel" name="label_18">
  2741. <property name="font">
  2742. <font>
  2743. <pointsize>9</pointsize>
  2744. </font>
  2745. </property>
  2746. <property name="text">
  2747. <string>最大速度</string>
  2748. </property>
  2749. <property name="alignment">
  2750. <set>Qt::AlignCenter</set>
  2751. </property>
  2752. </widget>
  2753. </item>
  2754. <item row="0" column="1">
  2755. <widget class="QLineEdit" name="lineEditAccX">
  2756. <property name="font">
  2757. <font>
  2758. <pointsize>9</pointsize>
  2759. </font>
  2760. </property>
  2761. <property name="text">
  2762. <string>000.000</string>
  2763. </property>
  2764. <property name="alignment">
  2765. <set>Qt::AlignCenter</set>
  2766. </property>
  2767. </widget>
  2768. </item>
  2769. <item row="2" column="1">
  2770. <widget class="QLineEdit" name="lineEditMaxvX">
  2771. <property name="font">
  2772. <font>
  2773. <pointsize>9</pointsize>
  2774. </font>
  2775. </property>
  2776. <property name="text">
  2777. <string>000.000</string>
  2778. </property>
  2779. <property name="alignment">
  2780. <set>Qt::AlignCenter</set>
  2781. </property>
  2782. </widget>
  2783. </item>
  2784. <item row="1" column="0">
  2785. <widget class="QLabel" name="label_17">
  2786. <property name="font">
  2787. <font>
  2788. <pointsize>9</pointsize>
  2789. </font>
  2790. </property>
  2791. <property name="text">
  2792. <string>减速度</string>
  2793. </property>
  2794. <property name="alignment">
  2795. <set>Qt::AlignCenter</set>
  2796. </property>
  2797. </widget>
  2798. </item>
  2799. <item row="2" column="2">
  2800. <widget class="QLabel" name="label_21">
  2801. <property name="font">
  2802. <font>
  2803. <pointsize>9</pointsize>
  2804. </font>
  2805. </property>
  2806. <property name="text">
  2807. <string>mm/s</string>
  2808. </property>
  2809. <property name="alignment">
  2810. <set>Qt::AlignCenter</set>
  2811. </property>
  2812. </widget>
  2813. </item>
  2814. <item row="1" column="1">
  2815. <widget class="QLineEdit" name="lineEditDecX">
  2816. <property name="font">
  2817. <font>
  2818. <pointsize>9</pointsize>
  2819. </font>
  2820. </property>
  2821. <property name="text">
  2822. <string>000.000</string>
  2823. </property>
  2824. <property name="alignment">
  2825. <set>Qt::AlignCenter</set>
  2826. </property>
  2827. </widget>
  2828. </item>
  2829. <item row="0" column="0">
  2830. <widget class="QLabel" name="label_16">
  2831. <property name="font">
  2832. <font>
  2833. <pointsize>9</pointsize>
  2834. </font>
  2835. </property>
  2836. <property name="text">
  2837. <string>加速度</string>
  2838. </property>
  2839. <property name="alignment">
  2840. <set>Qt::AlignCenter</set>
  2841. </property>
  2842. </widget>
  2843. </item>
  2844. <item row="0" column="2">
  2845. <widget class="QLabel" name="label_19">
  2846. <property name="font">
  2847. <font>
  2848. <pointsize>9</pointsize>
  2849. </font>
  2850. </property>
  2851. <property name="text">
  2852. <string>mm/s^2</string>
  2853. </property>
  2854. <property name="alignment">
  2855. <set>Qt::AlignCenter</set>
  2856. </property>
  2857. </widget>
  2858. </item>
  2859. <item row="1" column="2">
  2860. <widget class="QLabel" name="label_20">
  2861. <property name="font">
  2862. <font>
  2863. <pointsize>9</pointsize>
  2864. </font>
  2865. </property>
  2866. <property name="text">
  2867. <string>mm/s^2</string>
  2868. </property>
  2869. <property name="alignment">
  2870. <set>Qt::AlignCenter</set>
  2871. </property>
  2872. </widget>
  2873. </item>
  2874. </layout>
  2875. </widget>
  2876. </item>
  2877. <item row="3" column="1">
  2878. <widget class="QGroupBox" name="groupBox_6">
  2879. <property name="title">
  2880. <string/>
  2881. </property>
  2882. <layout class="QHBoxLayout" name="horizontalLayout_16">
  2883. <item>
  2884. <widget class="QPushButton" name="pushButtonTempSaved">
  2885. <property name="text">
  2886. <string>临时保存</string>
  2887. </property>
  2888. <property name="icon">
  2889. <iconset resource="CGH_Printer.qrc">
  2890. <normaloff>:/CGH_Printer/Configure/IMG/shot.png</normaloff>:/CGH_Printer/Configure/IMG/shot.png</iconset>
  2891. </property>
  2892. <property name="iconSize">
  2893. <size>
  2894. <width>20</width>
  2895. <height>20</height>
  2896. </size>
  2897. </property>
  2898. </widget>
  2899. </item>
  2900. <item>
  2901. <widget class="QPushButton" name="pushButtonPermSaved">
  2902. <property name="text">
  2903. <string> 永久保存</string>
  2904. </property>
  2905. <property name="icon">
  2906. <iconset resource="CGH_Printer.qrc">
  2907. <normaloff>:/CGH_Printer/Configure/IMG/saveblue.png</normaloff>:/CGH_Printer/Configure/IMG/saveblue.png</iconset>
  2908. </property>
  2909. <property name="iconSize">
  2910. <size>
  2911. <width>15</width>
  2912. <height>20</height>
  2913. </size>
  2914. </property>
  2915. </widget>
  2916. </item>
  2917. </layout>
  2918. </widget>
  2919. </item>
  2920. <item row="3" column="0">
  2921. <spacer name="verticalSpacer_4">
  2922. <property name="orientation">
  2923. <enum>Qt::Vertical</enum>
  2924. </property>
  2925. <property name="sizeHint" stdset="0">
  2926. <size>
  2927. <width>20</width>
  2928. <height>40</height>
  2929. </size>
  2930. </property>
  2931. </spacer>
  2932. </item>
  2933. </layout>
  2934. </widget>
  2935. </widget>
  2936. </item>
  2937. </layout>
  2938. </widget>
  2939. </widget>
  2940. <layoutdefault spacing="6" margin="11"/>
  2941. <customwidgets>
  2942. <customwidget>
  2943. <class>CGH_TabWidget</class>
  2944. <extends>QTabWidget</extends>
  2945. <header location="global">CGH_TabWidget.h</header>
  2946. <container>1</container>
  2947. </customwidget>
  2948. </customwidgets>
  2949. <resources>
  2950. <include location="CGH_Printer.qrc"/>
  2951. <include location="CGH_Printer.qrc"/>
  2952. <include location="CGH_Printer.qrc"/>
  2953. <include location="CGH_Printer.qrc"/>
  2954. </resources>
  2955. <connections/>
  2956. </ui>