mainWindow.ui 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>mainWindow</class>
  4. <widget class="QWidget" name="mainWindow">
  5. <property name="windowModality">
  6. <enum>Qt::NonModal</enum>
  7. </property>
  8. <property name="minimumSize">
  9. <size>
  10. <width>360</width>
  11. <height>0</height>
  12. </size>
  13. </property>
  14. <property name="windowTitle">
  15. <string>Zint Barcode Studio</string>
  16. </property>
  17. <property name="windowIcon">
  18. <iconset resource="resources.qrc">
  19. <normaloff>:/res/zint-qt.ico</normaloff>:/res/zint-qt.ico</iconset>
  20. </property>
  21. <property name="autoFillBackground">
  22. <bool>false</bool>
  23. </property>
  24. <property name="locale">
  25. <locale language="English" country="UnitedStates"/>
  26. </property>
  27. <layout class="QVBoxLayout" name="vLayoutMain">
  28. <item>
  29. <widget class="QGraphicsView" name="view">
  30. <property name="minimumSize">
  31. <size>
  32. <width>0</width>
  33. <height>35</height>
  34. </size>
  35. </property>
  36. <property name="contextMenuPolicy">
  37. <enum>Qt::CustomContextMenu</enum>
  38. </property>
  39. </widget>
  40. </item>
  41. <item>
  42. <widget class="QSplitter" name="errtxtBarContainer">
  43. <property name="visible">
  44. <bool>false</bool>
  45. </property>
  46. <property name="frameShape">
  47. <enum>QFrame::StyledPanel</enum>
  48. </property>
  49. <property name="frameShadow">
  50. <enum>QFrame::Plain</enum>
  51. </property>
  52. <property name="orientation">
  53. <enum>Qt::Horizontal</enum>
  54. </property>
  55. <widget class="QStatusBar" name="errtxtBar">
  56. <property name="contextMenuPolicy">
  57. <enum>Qt::CustomContextMenu</enum>
  58. </property>
  59. <property name="autoFillBackground">
  60. <bool>true</bool>
  61. </property>
  62. <property name="styleSheet">
  63. <string notr="true"/>
  64. </property>
  65. <property name="sizeGripEnabled">
  66. <bool>false</bool>
  67. </property>
  68. </widget>
  69. </widget>
  70. </item>
  71. <item>
  72. <layout class="QHBoxLayout" name="hLayoutMain">
  73. <property name="sizeConstraint">
  74. <enum>QLayout::SetMinimumSize</enum>
  75. </property>
  76. <item>
  77. <layout class="QVBoxLayout" name="vLayoutSymbology">
  78. <item>
  79. <layout class="QHBoxLayout" name="hLayoutSymbology">
  80. <item>
  81. <widget class="QLabel" name="lblSymbology">
  82. <property name="toolTip">
  83. <string>Type of barcode</string>
  84. </property>
  85. <property name="text">
  86. <string>Symbo&amp;logy:</string>
  87. </property>
  88. <property name="alignment">
  89. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  90. </property>
  91. <property name="buddy">
  92. <cstring>bstyle</cstring>
  93. </property>
  94. </widget>
  95. </item>
  96. <item>
  97. <widget class="QComboBox" name="bstyle">
  98. <property name="sizePolicy">
  99. <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
  100. <horstretch>0</horstretch>
  101. <verstretch>0</verstretch>
  102. </sizepolicy>
  103. </property>
  104. <property name="toolTip">
  105. <string>Type of barcode</string>
  106. </property>
  107. <property name="sizeAdjustPolicy">
  108. <enum>QComboBox::AdjustToContents</enum>
  109. </property>
  110. </widget>
  111. </item>
  112. <item>
  113. <widget class="QLineEdit" name="filter_bstyle">
  114. <property name="toolTip">
  115. <string>Filter symbologies</string>
  116. </property>
  117. <property name="text">
  118. <string/>
  119. </property>
  120. </widget>
  121. </item>
  122. </layout>
  123. </item>
  124. <item>
  125. <widget class="QTabWidget" name="tabMain">
  126. <property name="minimumSize">
  127. <size>
  128. <width>0</width>
  129. <height>346</height>
  130. </size>
  131. </property>
  132. <property name="maximumSize">
  133. <size>
  134. <width>16777215</width>
  135. <height>346</height>
  136. </size>
  137. </property>
  138. <property name="autoFillBackground">
  139. <bool>false</bool>
  140. </property>
  141. <property name="currentIndex">
  142. <number>0</number>
  143. </property>
  144. <widget class="QWidget" name="tabData">
  145. <attribute name="title">
  146. <string>&amp;Data</string>
  147. </attribute>
  148. <layout class="QVBoxLayout" name="vLayoutTabData">
  149. <item>
  150. <widget class="QGroupBox" name="grpData">
  151. <property name="sizePolicy">
  152. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  153. <horstretch>0</horstretch>
  154. <verstretch>0</verstretch>
  155. </sizepolicy>
  156. </property>
  157. <property name="toolTip">
  158. <string>Input data</string>
  159. </property>
  160. <property name="title">
  161. <string>Data to Enc&amp;ode</string>
  162. </property>
  163. <layout class="QVBoxLayout" name="vLayoutData">
  164. <item>
  165. <layout class="QHBoxLayout" name="hLayoutData">
  166. <item>
  167. <widget class="QLineEdit" name="txtData">
  168. <property name="toolTip">
  169. <string>Input data</string>
  170. </property>
  171. <property name="text">
  172. <string>Your Data Here!</string>
  173. </property>
  174. </widget>
  175. </item>
  176. <item>
  177. <widget class="QPushButton" name="btnMoreData">
  178. <property name="maximumSize">
  179. <size>
  180. <width>34</width>
  181. <height>16777215</height>
  182. </size>
  183. </property>
  184. <property name="toolTip">
  185. <string>Encode more data
  186. or import from file</string>
  187. </property>
  188. <property name="text">
  189. <string>&amp;...</string>
  190. </property>
  191. </widget>
  192. </item>
  193. <item>
  194. <widget class="QToolButton" name="btnClearData">
  195. <property name="maximumSize">
  196. <size>
  197. <width>22</width>
  198. <height>26</height>
  199. </size>
  200. </property>
  201. <property name="toolTip">
  202. <string>Clear data and ECI (segment 0)</string>
  203. </property>
  204. <property name="text">
  205. <string/>
  206. </property>
  207. </widget>
  208. </item>
  209. </layout>
  210. </item>
  211. <item>
  212. <layout class="QHBoxLayout" name="hLayoutECI">
  213. <item>
  214. <widget class="QLabel" name="lblECI">
  215. <property name="maximumSize">
  216. <size>
  217. <width>40</width>
  218. <height>16777215</height>
  219. </size>
  220. </property>
  221. <property name="toolTip">
  222. <string>Set the ECI (Extended Channel Interpretation) code
  223. (ignored if disabled)</string>
  224. </property>
  225. <property name="text">
  226. <string>EC&amp;I:</string>
  227. </property>
  228. <property name="alignment">
  229. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  230. </property>
  231. <property name="buddy">
  232. <cstring>cmbECI</cstring>
  233. </property>
  234. </widget>
  235. </item>
  236. <item>
  237. <widget class="QComboBox" name="cmbECI">
  238. <property name="minimumSize">
  239. <size>
  240. <width>64</width>
  241. <height>0</height>
  242. </size>
  243. </property>
  244. <property name="toolTip">
  245. <string>Set the ECI (Extended Channel Interpretation) code
  246. (ignored if disabled)</string>
  247. </property>
  248. <property name="maxVisibleItems">
  249. <number>34</number>
  250. </property>
  251. <item>
  252. <property name="text">
  253. <string>None</string>
  254. </property>
  255. </item>
  256. <item>
  257. <property name="text">
  258. <string>3: ISO 8859-1 Latin-1</string>
  259. </property>
  260. </item>
  261. <item>
  262. <property name="text">
  263. <string>4: ISO 8859-2 Latin-2</string>
  264. </property>
  265. </item>
  266. <item>
  267. <property name="text">
  268. <string>5: ISO 8859-3 Latin-3</string>
  269. </property>
  270. </item>
  271. <item>
  272. <property name="text">
  273. <string>6: ISO 8859-4 Latin-4</string>
  274. </property>
  275. </item>
  276. <item>
  277. <property name="text">
  278. <string>7: ISO 8859-5 Cyrillic</string>
  279. </property>
  280. </item>
  281. <item>
  282. <property name="text">
  283. <string>8: ISO 8859-6 Arabic</string>
  284. </property>
  285. </item>
  286. <item>
  287. <property name="text">
  288. <string>9: ISO 8859-7 Greek</string>
  289. </property>
  290. </item>
  291. <item>
  292. <property name="text">
  293. <string>10: ISO 8859-8 Hebrew</string>
  294. </property>
  295. </item>
  296. <item>
  297. <property name="text">
  298. <string>11: ISO 8859-9 Turkish</string>
  299. </property>
  300. </item>
  301. <item>
  302. <property name="text">
  303. <string>12: ISO 8859-10 Nordic</string>
  304. </property>
  305. </item>
  306. <item>
  307. <property name="text">
  308. <string>13: ISO 8859-11 Thai</string>
  309. </property>
  310. </item>
  311. <item>
  312. <property name="text">
  313. <string>15: ISO 8859-13 Baltic</string>
  314. </property>
  315. </item>
  316. <item>
  317. <property name="text">
  318. <string>16: ISO 8859-14 Celtic</string>
  319. </property>
  320. </item>
  321. <item>
  322. <property name="text">
  323. <string>17: ISO 8859-15 Latin-9</string>
  324. </property>
  325. </item>
  326. <item>
  327. <property name="text">
  328. <string>18: ISO 8859-16 Latin-10</string>
  329. </property>
  330. </item>
  331. <item>
  332. <property name="text">
  333. <string>20: Shift JIS </string>
  334. </property>
  335. </item>
  336. <item>
  337. <property name="text">
  338. <string>21: Windows 1250 Latin-2</string>
  339. </property>
  340. </item>
  341. <item>
  342. <property name="text">
  343. <string>22: Windows 1251 Cyrillic</string>
  344. </property>
  345. </item>
  346. <item>
  347. <property name="text">
  348. <string>23: Windows 1252 Latin-1</string>
  349. </property>
  350. </item>
  351. <item>
  352. <property name="text">
  353. <string>24: Windows 1256 Arabic</string>
  354. </property>
  355. </item>
  356. <item>
  357. <property name="text">
  358. <string>25: UTF-16BE</string>
  359. </property>
  360. </item>
  361. <item>
  362. <property name="text">
  363. <string>26: UTF-8</string>
  364. </property>
  365. </item>
  366. <item>
  367. <property name="text">
  368. <string>27: ASCII (ISO 646 IRV)</string>
  369. </property>
  370. </item>
  371. <item>
  372. <property name="text">
  373. <string>28: Big5 (Taiwan)</string>
  374. </property>
  375. </item>
  376. <item>
  377. <property name="text">
  378. <string>29: GB 2312 (PRC)</string>
  379. </property>
  380. </item>
  381. <item>
  382. <property name="text">
  383. <string>30: Korean EUC-KR</string>
  384. </property>
  385. </item>
  386. <item>
  387. <property name="text">
  388. <string>31: GBK</string>
  389. </property>
  390. </item>
  391. <item>
  392. <property name="text">
  393. <string>32: GB 18030</string>
  394. </property>
  395. </item>
  396. <item>
  397. <property name="text">
  398. <string>33: UTF-16LE</string>
  399. </property>
  400. </item>
  401. <item>
  402. <property name="text">
  403. <string>34: UTF-32BE</string>
  404. </property>
  405. </item>
  406. <item>
  407. <property name="text">
  408. <string>35: UTF-32LE</string>
  409. </property>
  410. </item>
  411. <item>
  412. <property name="text">
  413. <string>170: ISO 646 Invariant</string>
  414. </property>
  415. </item>
  416. <item>
  417. <property name="text">
  418. <string>899: 8-bit binary data</string>
  419. </property>
  420. </item>
  421. </widget>
  422. </item>
  423. <item>
  424. <spacer name="hSpacer_hLayoutECI">
  425. <property name="orientation">
  426. <enum>Qt::Horizontal</enum>
  427. </property>
  428. <property name="sizeHint" stdset="0">
  429. <size>
  430. <width>10</width>
  431. <height>20</height>
  432. </size>
  433. </property>
  434. </spacer>
  435. </item>
  436. <item>
  437. <widget class="QCheckBox" name="chkRInit">
  438. <property name="toolTip">
  439. <string>Create reader initialisation/programming symbol
  440. (ignored if disabled)</string>
  441. </property>
  442. <property name="text">
  443. <string>&amp;Reader Init</string>
  444. </property>
  445. <property name="checked">
  446. <bool>false</bool>
  447. </property>
  448. </widget>
  449. </item>
  450. <item>
  451. <widget class="QPushButton" name="btnSequence">
  452. <property name="maximumSize">
  453. <size>
  454. <width>60</width>
  455. <height>16777215</height>
  456. </size>
  457. </property>
  458. <property name="toolTip">
  459. <string>Encode a sequence</string>
  460. </property>
  461. <property name="text">
  462. <string>123&amp;4..</string>
  463. </property>
  464. </widget>
  465. </item>
  466. <item>
  467. <widget class="QToolButton" name="btnZap">
  468. <property name="maximumSize">
  469. <size>
  470. <width>22</width>
  471. <height>26</height>
  472. </size>
  473. </property>
  474. <property name="toolTip">
  475. <string>Clear all data and ECIs and reset all settings
  476. for this symbology to defaults</string>
  477. </property>
  478. <property name="text">
  479. <string/>
  480. </property>
  481. </widget>
  482. </item>
  483. </layout>
  484. </item>
  485. </layout>
  486. </widget>
  487. </item>
  488. <item>
  489. <widget class="QGroupBox" name="grpComposite">
  490. <property name="enabled">
  491. <bool>true</bool>
  492. </property>
  493. <property name="sizePolicy">
  494. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  495. <horstretch>0</horstretch>
  496. <verstretch>0</verstretch>
  497. </sizepolicy>
  498. </property>
  499. <property name="minimumSize">
  500. <size>
  501. <width>0</width>
  502. <height>0</height>
  503. </size>
  504. </property>
  505. <property name="maximumSize">
  506. <size>
  507. <width>16777215</width>
  508. <height>400</height>
  509. </size>
  510. </property>
  511. <property name="toolTip">
  512. <string>GS1 Composite symbol settings</string>
  513. </property>
  514. <property name="title">
  515. <string>GS1 Composite</string>
  516. </property>
  517. <layout class="QVBoxLayout" name="vLayoutComposite">
  518. <item>
  519. <layout class="QHBoxLayout" name="hLayoutComposite">
  520. <item>
  521. <widget class="QCheckBox" name="chkComposite">
  522. <property name="toolTip">
  523. <string>Create a composite symbol</string>
  524. </property>
  525. <property name="text">
  526. <string>Add &amp;2D Component</string>
  527. </property>
  528. </widget>
  529. </item>
  530. <item>
  531. <spacer name="hSpacer_hLayoutComposite">
  532. <property name="orientation">
  533. <enum>Qt::Horizontal</enum>
  534. </property>
  535. <property name="sizeHint" stdset="0">
  536. <size>
  537. <width>40</width>
  538. <height>20</height>
  539. </size>
  540. </property>
  541. </spacer>
  542. </item>
  543. <item>
  544. <widget class="QLabel" name="lblCompType">
  545. <property name="enabled">
  546. <bool>false</bool>
  547. </property>
  548. <property name="toolTip">
  549. <string>Type of 2D component</string>
  550. </property>
  551. <property name="text">
  552. <string>&amp;Type:</string>
  553. </property>
  554. <property name="buddy">
  555. <cstring>cmbCompType</cstring>
  556. </property>
  557. </widget>
  558. </item>
  559. <item>
  560. <widget class="QComboBox" name="cmbCompType">
  561. <property name="enabled">
  562. <bool>false</bool>
  563. </property>
  564. <property name="minimumSize">
  565. <size>
  566. <width>60</width>
  567. <height>0</height>
  568. </size>
  569. </property>
  570. <property name="toolTip">
  571. <string>Type of 2D component</string>
  572. </property>
  573. <item>
  574. <property name="text">
  575. <string>Automatic</string>
  576. </property>
  577. </item>
  578. <item>
  579. <property name="text">
  580. <string>CC-A</string>
  581. </property>
  582. </item>
  583. <item>
  584. <property name="text">
  585. <string>CC-B</string>
  586. </property>
  587. </item>
  588. <item>
  589. <property name="text">
  590. <string>CC-C</string>
  591. </property>
  592. </item>
  593. </widget>
  594. </item>
  595. </layout>
  596. </item>
  597. <item>
  598. <layout class="QVBoxLayout" name="vLayoutComponentData">
  599. <property name="sizeConstraint">
  600. <enum>QLayout::SetMinimumSize</enum>
  601. </property>
  602. <item>
  603. <layout class="QHBoxLayout" name="hLayoutComponentDataLabel">
  604. <item>
  605. <widget class="QLabel" name="lblComposite">
  606. <property name="enabled">
  607. <bool>false</bool>
  608. </property>
  609. <property name="toolTip">
  610. <string>Data to be encoded in 2D component
  611. Remember to place [square brackets] around AI identifiers</string>
  612. </property>
  613. <property name="text">
  614. <string>2D Co&amp;mponent Data</string>
  615. </property>
  616. <property name="buddy">
  617. <cstring>txtComposite</cstring>
  618. </property>
  619. </widget>
  620. </item>
  621. <item>
  622. <widget class="QToolButton" name="btnClearComposite">
  623. <property name="enabled">
  624. <bool>false</bool>
  625. </property>
  626. <property name="maximumSize">
  627. <size>
  628. <width>22</width>
  629. <height>26</height>
  630. </size>
  631. </property>
  632. <property name="toolTip">
  633. <string>Clear 2D Component data</string>
  634. </property>
  635. <property name="text">
  636. <string/>
  637. </property>
  638. </widget>
  639. </item>
  640. </layout>
  641. </item>
  642. <item>
  643. <widget class="QTextEdit" name="txtComposite">
  644. <property name="enabled">
  645. <bool>false</bool>
  646. </property>
  647. <property name="sizePolicy">
  648. <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
  649. <horstretch>0</horstretch>
  650. <verstretch>0</verstretch>
  651. </sizepolicy>
  652. </property>
  653. <property name="maximumSize">
  654. <size>
  655. <width>16777215</width>
  656. <height>60</height>
  657. </size>
  658. </property>
  659. <property name="toolTip">
  660. <string>Data to be encoded in 2D component
  661. Remember to place [square brackets] around AI identifiers</string>
  662. </property>
  663. </widget>
  664. </item>
  665. </layout>
  666. </item>
  667. </layout>
  668. </widget>
  669. </item>
  670. <item>
  671. <widget class="QGroupBox" name="grpSegs">
  672. <property name="enabled">
  673. <bool>true</bool>
  674. </property>
  675. <property name="sizePolicy">
  676. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  677. <horstretch>0</horstretch>
  678. <verstretch>0</verstretch>
  679. </sizepolicy>
  680. </property>
  681. <property name="minimumSize">
  682. <size>
  683. <width>0</width>
  684. <height>0</height>
  685. </size>
  686. </property>
  687. <property name="maximumSize">
  688. <size>
  689. <width>16777215</width>
  690. <height>400</height>
  691. </size>
  692. </property>
  693. <property name="toolTip">
  694. <string>Additional data segments with their own
  695. Extended Channel Interpretation (ECI)</string>
  696. </property>
  697. <property name="title">
  698. <string>Additional ECI/Data Segments</string>
  699. </property>
  700. <layout class="QVBoxLayout" name="vLayoutSegs">
  701. <item>
  702. <layout class="QHBoxLayout" name="hlLayoutSeg1">
  703. <item>
  704. <widget class="QLabel" name="lblSeg1">
  705. <property name="enabled">
  706. <bool>true</bool>
  707. </property>
  708. <property name="toolTip">
  709. <string>Segment 1</string>
  710. </property>
  711. <property name="text">
  712. <string>&amp;1:</string>
  713. </property>
  714. <property name="buddy">
  715. <cstring>txtDataSeg1</cstring>
  716. </property>
  717. </widget>
  718. </item>
  719. <item>
  720. <widget class="QComboBox" name="cmbECISeg1">
  721. <property name="minimumSize">
  722. <size>
  723. <width>64</width>
  724. <height>0</height>
  725. </size>
  726. </property>
  727. <property name="maximumSize">
  728. <size>
  729. <width>160</width>
  730. <height>16777215</height>
  731. </size>
  732. </property>
  733. <property name="toolTip">
  734. <string>ECI for segment 1</string>
  735. </property>
  736. <property name="maxVisibleItems">
  737. <number>34</number>
  738. </property>
  739. <item>
  740. <property name="text">
  741. <string>None</string>
  742. </property>
  743. </item>
  744. <item>
  745. <property name="text">
  746. <string>3: ISO 8859-1 Latin-1</string>
  747. </property>
  748. </item>
  749. <item>
  750. <property name="text">
  751. <string>4: ISO 8859-2 Latin-2</string>
  752. </property>
  753. </item>
  754. <item>
  755. <property name="text">
  756. <string>5: ISO 8859-3 Latin-3</string>
  757. </property>
  758. </item>
  759. <item>
  760. <property name="text">
  761. <string>6: ISO 8859-4 Latin-4</string>
  762. </property>
  763. </item>
  764. <item>
  765. <property name="text">
  766. <string>7: ISO 8859-5 Cyrillic</string>
  767. </property>
  768. </item>
  769. <item>
  770. <property name="text">
  771. <string>8: ISO 8859-6 Arabic</string>
  772. </property>
  773. </item>
  774. <item>
  775. <property name="text">
  776. <string>9: ISO 8859-7 Greek</string>
  777. </property>
  778. </item>
  779. <item>
  780. <property name="text">
  781. <string>10: ISO 8859-8 Hebrew</string>
  782. </property>
  783. </item>
  784. <item>
  785. <property name="text">
  786. <string>11: ISO 8859-9 Turkish</string>
  787. </property>
  788. </item>
  789. <item>
  790. <property name="text">
  791. <string>12: ISO 8859-10 Nordic</string>
  792. </property>
  793. </item>
  794. <item>
  795. <property name="text">
  796. <string>13: ISO 8859-11 Thai</string>
  797. </property>
  798. </item>
  799. <item>
  800. <property name="text">
  801. <string>15: ISO 8859-13 Baltic</string>
  802. </property>
  803. </item>
  804. <item>
  805. <property name="text">
  806. <string>16: ISO 8859-14 Celtic</string>
  807. </property>
  808. </item>
  809. <item>
  810. <property name="text">
  811. <string>17: ISO 8859-15 Latin-9</string>
  812. </property>
  813. </item>
  814. <item>
  815. <property name="text">
  816. <string>18: ISO 8859-16 Latin-10</string>
  817. </property>
  818. </item>
  819. <item>
  820. <property name="text">
  821. <string>20: Shift JIS </string>
  822. </property>
  823. </item>
  824. <item>
  825. <property name="text">
  826. <string>21: Windows 1250 Latin-2</string>
  827. </property>
  828. </item>
  829. <item>
  830. <property name="text">
  831. <string>22: Windows 1251 Cyrillic</string>
  832. </property>
  833. </item>
  834. <item>
  835. <property name="text">
  836. <string>23: Windows 1252 Latin-1</string>
  837. </property>
  838. </item>
  839. <item>
  840. <property name="text">
  841. <string>24: Windows 1256 Arabic</string>
  842. </property>
  843. </item>
  844. <item>
  845. <property name="text">
  846. <string>25: UTF-16BE</string>
  847. </property>
  848. </item>
  849. <item>
  850. <property name="text">
  851. <string>26: UTF-8</string>
  852. </property>
  853. </item>
  854. <item>
  855. <property name="text">
  856. <string>27: ASCII (ISO 646 IRV)</string>
  857. </property>
  858. </item>
  859. <item>
  860. <property name="text">
  861. <string>28: Big5 (Taiwan)</string>
  862. </property>
  863. </item>
  864. <item>
  865. <property name="text">
  866. <string>29: GB 2312 (PRC)</string>
  867. </property>
  868. </item>
  869. <item>
  870. <property name="text">
  871. <string>30: Korean EUC-KR</string>
  872. </property>
  873. </item>
  874. <item>
  875. <property name="text">
  876. <string>31: GBK</string>
  877. </property>
  878. </item>
  879. <item>
  880. <property name="text">
  881. <string>32: GB 18030</string>
  882. </property>
  883. </item>
  884. <item>
  885. <property name="text">
  886. <string>33: UTF-16LE</string>
  887. </property>
  888. </item>
  889. <item>
  890. <property name="text">
  891. <string>34: UTF-32BE</string>
  892. </property>
  893. </item>
  894. <item>
  895. <property name="text">
  896. <string>35: UTF-32LE</string>
  897. </property>
  898. </item>
  899. <item>
  900. <property name="text">
  901. <string>170: ISO 646 Invariant</string>
  902. </property>
  903. </item>
  904. <item>
  905. <property name="text">
  906. <string>899: 8-bit binary data</string>
  907. </property>
  908. </item>
  909. </widget>
  910. </item>
  911. <item>
  912. <widget class="QLineEdit" name="txtDataSeg1">
  913. <property name="minimumSize">
  914. <size>
  915. <width>150</width>
  916. <height>0</height>
  917. </size>
  918. </property>
  919. <property name="toolTip">
  920. <string>Data for segment 1</string>
  921. </property>
  922. <property name="text">
  923. <string/>
  924. </property>
  925. </widget>
  926. </item>
  927. <item>
  928. <widget class="QPushButton" name="btnMoreDataSeg1">
  929. <property name="maximumSize">
  930. <size>
  931. <width>34</width>
  932. <height>16777215</height>
  933. </size>
  934. </property>
  935. <property name="toolTip">
  936. <string>Encode more segment 1 data
  937. or import from file</string>
  938. </property>
  939. <property name="text">
  940. <string>...</string>
  941. </property>
  942. </widget>
  943. </item>
  944. <item>
  945. <widget class="QToolButton" name="btnClearDataSeg1">
  946. <property name="maximumSize">
  947. <size>
  948. <width>22</width>
  949. <height>26</height>
  950. </size>
  951. </property>
  952. <property name="toolTip">
  953. <string>Clear segment 1 data and ECI</string>
  954. </property>
  955. <property name="text">
  956. <string/>
  957. </property>
  958. </widget>
  959. </item>
  960. </layout>
  961. </item>
  962. <item>
  963. <layout class="QHBoxLayout" name="hLayoutSeg2">
  964. <item>
  965. <widget class="QLabel" name="lblSeg2">
  966. <property name="enabled">
  967. <bool>true</bool>
  968. </property>
  969. <property name="toolTip">
  970. <string>Segment 2</string>
  971. </property>
  972. <property name="text">
  973. <string>&amp;2:</string>
  974. </property>
  975. <property name="buddy">
  976. <cstring>txtDataSeg2</cstring>
  977. </property>
  978. </widget>
  979. </item>
  980. <item>
  981. <widget class="QComboBox" name="cmbECISeg2">
  982. <property name="minimumSize">
  983. <size>
  984. <width>64</width>
  985. <height>0</height>
  986. </size>
  987. </property>
  988. <property name="maximumSize">
  989. <size>
  990. <width>160</width>
  991. <height>16777215</height>
  992. </size>
  993. </property>
  994. <property name="toolTip">
  995. <string>ECI for segment 2</string>
  996. </property>
  997. <property name="maxVisibleItems">
  998. <number>34</number>
  999. </property>
  1000. <item>
  1001. <property name="text">
  1002. <string>None</string>
  1003. </property>
  1004. </item>
  1005. <item>
  1006. <property name="text">
  1007. <string>3: ISO 8859-1 Latin-1</string>
  1008. </property>
  1009. </item>
  1010. <item>
  1011. <property name="text">
  1012. <string>4: ISO 8859-2 Latin-2</string>
  1013. </property>
  1014. </item>
  1015. <item>
  1016. <property name="text">
  1017. <string>5: ISO 8859-3 Latin-3</string>
  1018. </property>
  1019. </item>
  1020. <item>
  1021. <property name="text">
  1022. <string>6: ISO 8859-4 Latin-4</string>
  1023. </property>
  1024. </item>
  1025. <item>
  1026. <property name="text">
  1027. <string>7: ISO 8859-5 Cyrillic</string>
  1028. </property>
  1029. </item>
  1030. <item>
  1031. <property name="text">
  1032. <string>8: ISO 8859-6 Arabic</string>
  1033. </property>
  1034. </item>
  1035. <item>
  1036. <property name="text">
  1037. <string>9: ISO 8859-7 Greek</string>
  1038. </property>
  1039. </item>
  1040. <item>
  1041. <property name="text">
  1042. <string>10: ISO 8859-8 Hebrew</string>
  1043. </property>
  1044. </item>
  1045. <item>
  1046. <property name="text">
  1047. <string>11: ISO 8859-9 Turkish</string>
  1048. </property>
  1049. </item>
  1050. <item>
  1051. <property name="text">
  1052. <string>12: ISO 8859-10 Nordic</string>
  1053. </property>
  1054. </item>
  1055. <item>
  1056. <property name="text">
  1057. <string>13: ISO 8859-11 Thai</string>
  1058. </property>
  1059. </item>
  1060. <item>
  1061. <property name="text">
  1062. <string>15: ISO 8859-13 Baltic</string>
  1063. </property>
  1064. </item>
  1065. <item>
  1066. <property name="text">
  1067. <string>16: ISO 8859-14 Celtic</string>
  1068. </property>
  1069. </item>
  1070. <item>
  1071. <property name="text">
  1072. <string>17: ISO 8859-15 Latin-9</string>
  1073. </property>
  1074. </item>
  1075. <item>
  1076. <property name="text">
  1077. <string>18: ISO 8859-16 Latin-10</string>
  1078. </property>
  1079. </item>
  1080. <item>
  1081. <property name="text">
  1082. <string>20: Shift JIS </string>
  1083. </property>
  1084. </item>
  1085. <item>
  1086. <property name="text">
  1087. <string>21: Windows 1250 Latin-2</string>
  1088. </property>
  1089. </item>
  1090. <item>
  1091. <property name="text">
  1092. <string>22: Windows 1251 Cyrillic</string>
  1093. </property>
  1094. </item>
  1095. <item>
  1096. <property name="text">
  1097. <string>23: Windows 1252 Latin-1</string>
  1098. </property>
  1099. </item>
  1100. <item>
  1101. <property name="text">
  1102. <string>24: Windows 1256 Arabic</string>
  1103. </property>
  1104. </item>
  1105. <item>
  1106. <property name="text">
  1107. <string>25: UTF-16BE</string>
  1108. </property>
  1109. </item>
  1110. <item>
  1111. <property name="text">
  1112. <string>26: UTF-8</string>
  1113. </property>
  1114. </item>
  1115. <item>
  1116. <property name="text">
  1117. <string>27: ASCII (ISO 646 IRV)</string>
  1118. </property>
  1119. </item>
  1120. <item>
  1121. <property name="text">
  1122. <string>28: Big5 (Taiwan)</string>
  1123. </property>
  1124. </item>
  1125. <item>
  1126. <property name="text">
  1127. <string>29: GB 2312 (PRC)</string>
  1128. </property>
  1129. </item>
  1130. <item>
  1131. <property name="text">
  1132. <string>30: Korean EUC-KR</string>
  1133. </property>
  1134. </item>
  1135. <item>
  1136. <property name="text">
  1137. <string>31: GBK</string>
  1138. </property>
  1139. </item>
  1140. <item>
  1141. <property name="text">
  1142. <string>32: GB 18030</string>
  1143. </property>
  1144. </item>
  1145. <item>
  1146. <property name="text">
  1147. <string>33: UTF-16LE</string>
  1148. </property>
  1149. </item>
  1150. <item>
  1151. <property name="text">
  1152. <string>34: UTF-32BE</string>
  1153. </property>
  1154. </item>
  1155. <item>
  1156. <property name="text">
  1157. <string>35: UTF-32LE</string>
  1158. </property>
  1159. </item>
  1160. <item>
  1161. <property name="text">
  1162. <string>170: ISO 646 Invariant</string>
  1163. </property>
  1164. </item>
  1165. <item>
  1166. <property name="text">
  1167. <string>899: 8-bit binary data</string>
  1168. </property>
  1169. </item>
  1170. </widget>
  1171. </item>
  1172. <item>
  1173. <widget class="QLineEdit" name="txtDataSeg2">
  1174. <property name="minimumSize">
  1175. <size>
  1176. <width>150</width>
  1177. <height>0</height>
  1178. </size>
  1179. </property>
  1180. <property name="toolTip">
  1181. <string>Data for segment 2</string>
  1182. </property>
  1183. <property name="text">
  1184. <string/>
  1185. </property>
  1186. </widget>
  1187. </item>
  1188. <item>
  1189. <widget class="QPushButton" name="btnMoreDataSeg2">
  1190. <property name="maximumSize">
  1191. <size>
  1192. <width>34</width>
  1193. <height>16777215</height>
  1194. </size>
  1195. </property>
  1196. <property name="toolTip">
  1197. <string>Encode more segment 2 data
  1198. or import from file</string>
  1199. </property>
  1200. <property name="text">
  1201. <string>...</string>
  1202. </property>
  1203. </widget>
  1204. </item>
  1205. <item>
  1206. <widget class="QToolButton" name="btnClearDataSeg2">
  1207. <property name="maximumSize">
  1208. <size>
  1209. <width>22</width>
  1210. <height>26</height>
  1211. </size>
  1212. </property>
  1213. <property name="toolTip">
  1214. <string>Clear segment 2 data and ECI</string>
  1215. </property>
  1216. <property name="text">
  1217. <string/>
  1218. </property>
  1219. </widget>
  1220. </item>
  1221. </layout>
  1222. </item>
  1223. <item>
  1224. <layout class="QHBoxLayout" name="hLayoutSeg3">
  1225. <item>
  1226. <widget class="QLabel" name="lblSeg3">
  1227. <property name="enabled">
  1228. <bool>true</bool>
  1229. </property>
  1230. <property name="toolTip">
  1231. <string>Segment 3</string>
  1232. </property>
  1233. <property name="text">
  1234. <string>&amp;3:</string>
  1235. </property>
  1236. <property name="buddy">
  1237. <cstring>txtDataSeg3</cstring>
  1238. </property>
  1239. </widget>
  1240. </item>
  1241. <item>
  1242. <widget class="QComboBox" name="cmbECISeg3">
  1243. <property name="minimumSize">
  1244. <size>
  1245. <width>64</width>
  1246. <height>0</height>
  1247. </size>
  1248. </property>
  1249. <property name="maximumSize">
  1250. <size>
  1251. <width>160</width>
  1252. <height>16777215</height>
  1253. </size>
  1254. </property>
  1255. <property name="toolTip">
  1256. <string>ECI for segment 3</string>
  1257. </property>
  1258. <property name="maxVisibleItems">
  1259. <number>34</number>
  1260. </property>
  1261. <item>
  1262. <property name="text">
  1263. <string>None</string>
  1264. </property>
  1265. </item>
  1266. <item>
  1267. <property name="text">
  1268. <string>3: ISO 8859-1 Latin-1</string>
  1269. </property>
  1270. </item>
  1271. <item>
  1272. <property name="text">
  1273. <string>4: ISO 8859-2 Latin-2</string>
  1274. </property>
  1275. </item>
  1276. <item>
  1277. <property name="text">
  1278. <string>5: ISO 8859-3 Latin-3</string>
  1279. </property>
  1280. </item>
  1281. <item>
  1282. <property name="text">
  1283. <string>6: ISO 8859-4 Latin-4</string>
  1284. </property>
  1285. </item>
  1286. <item>
  1287. <property name="text">
  1288. <string>7: ISO 8859-5 Cyrillic</string>
  1289. </property>
  1290. </item>
  1291. <item>
  1292. <property name="text">
  1293. <string>8: ISO 8859-6 Arabic</string>
  1294. </property>
  1295. </item>
  1296. <item>
  1297. <property name="text">
  1298. <string>9: ISO 8859-7 Greek</string>
  1299. </property>
  1300. </item>
  1301. <item>
  1302. <property name="text">
  1303. <string>10: ISO 8859-8 Hebrew</string>
  1304. </property>
  1305. </item>
  1306. <item>
  1307. <property name="text">
  1308. <string>11: ISO 8859-9 Turkish</string>
  1309. </property>
  1310. </item>
  1311. <item>
  1312. <property name="text">
  1313. <string>12: ISO 8859-10 Nordic</string>
  1314. </property>
  1315. </item>
  1316. <item>
  1317. <property name="text">
  1318. <string>13: ISO 8859-11 Thai</string>
  1319. </property>
  1320. </item>
  1321. <item>
  1322. <property name="text">
  1323. <string>15: ISO 8859-13 Baltic</string>
  1324. </property>
  1325. </item>
  1326. <item>
  1327. <property name="text">
  1328. <string>16: ISO 8859-14 Celtic</string>
  1329. </property>
  1330. </item>
  1331. <item>
  1332. <property name="text">
  1333. <string>17: ISO 8859-15 Latin-9</string>
  1334. </property>
  1335. </item>
  1336. <item>
  1337. <property name="text">
  1338. <string>18: ISO 8859-16 Latin-10</string>
  1339. </property>
  1340. </item>
  1341. <item>
  1342. <property name="text">
  1343. <string>20: Shift JIS </string>
  1344. </property>
  1345. </item>
  1346. <item>
  1347. <property name="text">
  1348. <string>21: Windows 1250 Latin-2</string>
  1349. </property>
  1350. </item>
  1351. <item>
  1352. <property name="text">
  1353. <string>22: Windows 1251 Cyrillic</string>
  1354. </property>
  1355. </item>
  1356. <item>
  1357. <property name="text">
  1358. <string>23: Windows 1252 Latin-1</string>
  1359. </property>
  1360. </item>
  1361. <item>
  1362. <property name="text">
  1363. <string>24: Windows 1256 Arabic</string>
  1364. </property>
  1365. </item>
  1366. <item>
  1367. <property name="text">
  1368. <string>25: UTF-16BE</string>
  1369. </property>
  1370. </item>
  1371. <item>
  1372. <property name="text">
  1373. <string>26: UTF-8</string>
  1374. </property>
  1375. </item>
  1376. <item>
  1377. <property name="text">
  1378. <string>27: ASCII (ISO 646 IRV)</string>
  1379. </property>
  1380. </item>
  1381. <item>
  1382. <property name="text">
  1383. <string>28: Big5 (Taiwan)</string>
  1384. </property>
  1385. </item>
  1386. <item>
  1387. <property name="text">
  1388. <string>29: GB 2312 (PRC)</string>
  1389. </property>
  1390. </item>
  1391. <item>
  1392. <property name="text">
  1393. <string>30: Korean EUC-KR</string>
  1394. </property>
  1395. </item>
  1396. <item>
  1397. <property name="text">
  1398. <string>31: GBK</string>
  1399. </property>
  1400. </item>
  1401. <item>
  1402. <property name="text">
  1403. <string>32: GB 18030</string>
  1404. </property>
  1405. </item>
  1406. <item>
  1407. <property name="text">
  1408. <string>33: UTF-16LE</string>
  1409. </property>
  1410. </item>
  1411. <item>
  1412. <property name="text">
  1413. <string>34: UTF-32BE</string>
  1414. </property>
  1415. </item>
  1416. <item>
  1417. <property name="text">
  1418. <string>35: UTF-32LE</string>
  1419. </property>
  1420. </item>
  1421. <item>
  1422. <property name="text">
  1423. <string>170: ISO 646 Invariant</string>
  1424. </property>
  1425. </item>
  1426. <item>
  1427. <property name="text">
  1428. <string>899: 8-bit binary data</string>
  1429. </property>
  1430. </item>
  1431. </widget>
  1432. </item>
  1433. <item>
  1434. <widget class="QLineEdit" name="txtDataSeg3">
  1435. <property name="minimumSize">
  1436. <size>
  1437. <width>150</width>
  1438. <height>0</height>
  1439. </size>
  1440. </property>
  1441. <property name="toolTip">
  1442. <string>Data for segment 3</string>
  1443. </property>
  1444. <property name="text">
  1445. <string/>
  1446. </property>
  1447. </widget>
  1448. </item>
  1449. <item>
  1450. <widget class="QPushButton" name="btnMoreDataSeg3">
  1451. <property name="maximumSize">
  1452. <size>
  1453. <width>34</width>
  1454. <height>16777215</height>
  1455. </size>
  1456. </property>
  1457. <property name="toolTip">
  1458. <string>Encode more segment 3 data
  1459. or import from file</string>
  1460. </property>
  1461. <property name="text">
  1462. <string>...</string>
  1463. </property>
  1464. </widget>
  1465. </item>
  1466. <item>
  1467. <widget class="QToolButton" name="btnClearDataSeg3">
  1468. <property name="maximumSize">
  1469. <size>
  1470. <width>22</width>
  1471. <height>26</height>
  1472. </size>
  1473. </property>
  1474. <property name="toolTip">
  1475. <string>Clear segment 3 data and ECI</string>
  1476. </property>
  1477. <property name="text">
  1478. <string/>
  1479. </property>
  1480. </widget>
  1481. </item>
  1482. </layout>
  1483. </item>
  1484. </layout>
  1485. </widget>
  1486. </item>
  1487. <item>
  1488. <widget class="QGroupBox" name="grpSpecific">
  1489. <property name="enabled">
  1490. <bool>true</bool>
  1491. </property>
  1492. <property name="sizePolicy">
  1493. <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
  1494. <horstretch>0</horstretch>
  1495. <verstretch>0</verstretch>
  1496. </sizepolicy>
  1497. </property>
  1498. <property name="minimumSize">
  1499. <size>
  1500. <width>0</width>
  1501. <height>0</height>
  1502. </size>
  1503. </property>
  1504. <property name="maximumSize">
  1505. <size>
  1506. <width>16777215</width>
  1507. <height>400</height>
  1508. </size>
  1509. </property>
  1510. <property name="toolTip">
  1511. <string>Additional Settings</string>
  1512. </property>
  1513. <property name="title">
  1514. <string>Options</string>
  1515. </property>
  1516. <layout class="QVBoxLayout" name="vLayoutSpecific">
  1517. </layout>
  1518. </widget>
  1519. </item>
  1520. <item>
  1521. <spacer name="vSpacerData">
  1522. <property name="orientation">
  1523. <enum>Qt::Vertical</enum>
  1524. </property>
  1525. <property name="sizeHint" stdset="0">
  1526. <size>
  1527. <width>40</width>
  1528. <height>10</height>
  1529. </size>
  1530. </property>
  1531. </spacer>
  1532. </item>
  1533. <item>
  1534. <layout class="QHBoxLayout" name="hLayoutChks">
  1535. <item>
  1536. <spacer name="hSpacer_hLayoutChks">
  1537. <property name="orientation">
  1538. <enum>Qt::Horizontal</enum>
  1539. </property>
  1540. <property name="sizeHint" stdset="0">
  1541. <size>
  1542. <width>10</width>
  1543. <height>20</height>
  1544. </size>
  1545. </property>
  1546. </spacer>
  1547. </item>
  1548. <item>
  1549. <widget class="QCheckBox" name="chkEscape">
  1550. <property name="toolTip">
  1551. <string>Process escape sequences in input data&lt;table cellspacing=&quot;3&quot;&gt;
  1552. &lt;tr&gt;&lt;td&gt;\0&amp;nbsp;&lt;/td&gt;&lt;td&gt;NUL character (0x00)&lt;/td&gt;&lt;/tr&gt;
  1553. &lt;tr&gt;&lt;td&gt;\E&amp;nbsp;&lt;/td&gt;&lt;td&gt;End of Transmission (0x04)&lt;/td&gt;&lt;/tr&gt;
  1554. &lt;tr&gt;&lt;td&gt;\a&amp;nbsp;&lt;/td&gt;&lt;td&gt;Bell (0x07)&lt;/td&gt;&lt;/tr&gt;
  1555. &lt;tr&gt;&lt;td&gt;\b&amp;nbsp;&lt;/td&gt;&lt;td&gt;Backspace (0x08)&lt;/td&gt;&lt;/tr&gt;
  1556. &lt;tr&gt;&lt;td&gt;\t&amp;nbsp;&lt;/td&gt;&lt;td&gt;Horizontal Tab (0x09)&lt;/td&gt;&lt;/tr&gt;
  1557. &lt;tr&gt;&lt;td&gt;\n&amp;nbsp;&lt;/td&gt;&lt;td&gt;Line Feed (0x0A)&lt;/td&gt;&lt;/tr&gt;
  1558. &lt;tr&gt;&lt;td&gt;\v&amp;nbsp;&lt;/td&gt;&lt;td&gt;Vertical Tab (0x0B)&lt;/td&gt;&lt;/tr&gt;
  1559. &lt;tr&gt;&lt;td&gt;\f&amp;nbsp;&lt;/td&gt;&lt;td&gt;Form Feed (0x0C)&lt;/td&gt;&lt;/tr&gt;
  1560. &lt;tr&gt;&lt;td&gt;\r&amp;nbsp;&lt;/td&gt;&lt;td&gt;Carriage Return (0x0D)&lt;/td&gt;&lt;/tr&gt;
  1561. &lt;tr&gt;&lt;td&gt;\e&amp;nbsp;&lt;/td&gt;&lt;td&gt;Escape (0x1B)&lt;/td&gt;&lt;/tr&gt;
  1562. &lt;tr&gt;&lt;td&gt;\G&amp;nbsp;&lt;/td&gt;&lt;td&gt;Group Separator (0x1D)&lt;/td&gt;&lt;/tr&gt;
  1563. &lt;tr&gt;&lt;td&gt;\R&amp;nbsp;&lt;/td&gt;&lt;td&gt;Record Separator (0x1E)&lt;/td&gt;&lt;/tr&gt;
  1564. &lt;tr&gt;&lt;td&gt;\\&amp;nbsp;&lt;/td&gt;&lt;td&gt;Backslash (0x5C)&lt;/td&gt;&lt;/tr&gt;
  1565. &lt;tr&gt;&lt;td&gt;\dNNN&amp;nbsp;&lt;/td&gt;&lt;td&gt;8-bit character (N decimal)&lt;/td&gt;&lt;/tr&gt;
  1566. &lt;tr&gt;&lt;td&gt;\oNNN&amp;nbsp;&lt;/td&gt;&lt;td&gt;8-bit character (N octal)&lt;/td&gt;&lt;/tr&gt;
  1567. &lt;tr&gt;&lt;td&gt;\xNN&amp;nbsp;&lt;/td&gt;&lt;td&gt;8-bit character (N hex)&lt;/td&gt;&lt;/tr&gt;
  1568. &lt;tr&gt;&lt;td&gt;\uNNNN&amp;nbsp;&lt;/td&gt;&lt;td&gt;16-bit Unicode BMP (N hex)&lt;/td&gt;&lt;/tr&gt;
  1569. &lt;tr&gt;&lt;td&gt;\UNNNNNN&amp;nbsp;&lt;/td&gt;&lt;td&gt;21-bit Unicode (N hex)&lt;/td&gt;&lt;/tr&gt;
  1570. &lt;/table&gt;</string>
  1571. </property>
  1572. <property name="text">
  1573. <string>Parse Es&amp;capes</string>
  1574. </property>
  1575. <property name="checked">
  1576. <bool>false</bool>
  1577. </property>
  1578. </widget>
  1579. </item>
  1580. <item>
  1581. <widget class="QCheckBox" name="chkData">
  1582. <property name="toolTip">
  1583. <string>Treat input as raw binary data
  1584. (ignored if disabled)</string>
  1585. </property>
  1586. <property name="text">
  1587. <string>Binar&amp;y Mode</string>
  1588. </property>
  1589. <property name="checked">
  1590. <bool>false</bool>
  1591. </property>
  1592. </widget>
  1593. </item>
  1594. <item>
  1595. <widget class="QCheckBox" name="chkGS1Parens">
  1596. <property name="toolTip">
  1597. <string>Process parentheses &quot;()&quot; instead of square brackets &quot;[]&quot;
  1598. as delimiters for GS1 Application Identifiers
  1599. (ignored if disabled)</string>
  1600. </property>
  1601. <property name="text">
  1602. <string>GS1 &amp;()</string>
  1603. </property>
  1604. <property name="checked">
  1605. <bool>false</bool>
  1606. </property>
  1607. </widget>
  1608. </item>
  1609. <item>
  1610. <widget class="QCheckBox" name="chkGS1NoCheck">
  1611. <property name="toolTip">
  1612. <string>Do not check GS1 data for validity (note that certain
  1613. checks necessary for encodation are still performed)
  1614. (ignored if disabled)</string>
  1615. </property>
  1616. <property name="text">
  1617. <string>GS1 &amp;No Check</string>
  1618. </property>
  1619. <property name="checked">
  1620. <bool>false</bool>
  1621. </property>
  1622. </widget>
  1623. </item>
  1624. </layout>
  1625. </item>
  1626. </layout>
  1627. </widget>
  1628. <widget class="QWidget" name="tabAppear">
  1629. <property name="maximumSize">
  1630. <size>
  1631. <width>678</width>
  1632. <height>16777215</height>
  1633. </size>
  1634. </property>
  1635. <attribute name="title">
  1636. <string>A&amp;ppearance</string>
  1637. </attribute>
  1638. <layout class="QVBoxLayout" name="vLayoutAppearance">
  1639. <item>
  1640. <layout class="QGridLayout" name="gridLayout">
  1641. <item row="0" column="0" colspan="3">
  1642. <layout class="QHBoxLayout" name="hLayoutAutoHeight">
  1643. <item>
  1644. <widget class="QCheckBox" name="chkAutoHeight">
  1645. <property name="toolTip">
  1646. <string>Use default height
  1647. (ignored if disabled)</string>
  1648. </property>
  1649. <property name="text">
  1650. <string>Auto&amp;matic Height</string>
  1651. </property>
  1652. <property name="checked">
  1653. <bool>true</bool>
  1654. </property>
  1655. </widget>
  1656. </item>
  1657. <item>
  1658. <widget class="QCheckBox" name="chkCompliantHeight">
  1659. <property name="toolTip">
  1660. <string>Warn if height specified not compliant with specification,
  1661. or use standard height (if any) for default
  1662. (ignored if disabled)</string>
  1663. </property>
  1664. <property name="text">
  1665. <string>&amp;Compliant Height</string>
  1666. </property>
  1667. <property name="checked">
  1668. <bool>false</bool>
  1669. </property>
  1670. </widget>
  1671. </item>
  1672. </layout>
  1673. </item>
  1674. <item row="1" column="0">
  1675. <widget class="QLabel" name="lblHeight">
  1676. <property name="enabled">
  1677. <bool>false</bool>
  1678. </property>
  1679. <property name="toolTip">
  1680. <string>Overall symbol height in X-dimensions
  1681. (ignored if disabled)</string>
  1682. </property>
  1683. <property name="text">
  1684. <string>&amp;Height:</string>
  1685. </property>
  1686. <property name="alignment">
  1687. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  1688. </property>
  1689. <property name="buddy">
  1690. <cstring>heightb</cstring>
  1691. </property>
  1692. </widget>
  1693. </item>
  1694. <item row="1" column="1" colspan="2">
  1695. <widget class="QDoubleSpinBox" name="heightb">
  1696. <property name="enabled">
  1697. <bool>false</bool>
  1698. </property>
  1699. <property name="toolTip">
  1700. <string>Overall symbol height in X-dimensions
  1701. (ignored if disabled)</string>
  1702. </property>
  1703. <property name="accelerated">
  1704. <bool>true</bool>
  1705. </property>
  1706. <property name="prefix">
  1707. <string/>
  1708. </property>
  1709. <property name="suffix">
  1710. <string> X</string>
  1711. </property>
  1712. <property name="decimals">
  1713. <number>3</number>
  1714. </property>
  1715. <property name="minimum">
  1716. <double>0.500000000000000</double>
  1717. </property>
  1718. <property name="maximum">
  1719. <double>2000.000000000000000</double>
  1720. </property>
  1721. <property name="singleStep">
  1722. <double>0.100000000000000</double>
  1723. </property>
  1724. <property name="value">
  1725. <double>50.000000000000000</double>
  1726. </property>
  1727. </widget>
  1728. </item>
  1729. <item row="2" column="0">
  1730. <widget class="QLabel" name="lblBorderType">
  1731. <property name="toolTip">
  1732. <string>Add border or box</string>
  1733. </property>
  1734. <property name="text">
  1735. <string>Border &amp;Type:</string>
  1736. </property>
  1737. <property name="alignment">
  1738. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  1739. </property>
  1740. <property name="buddy">
  1741. <cstring>btype</cstring>
  1742. </property>
  1743. </widget>
  1744. </item>
  1745. <item row="2" column="1" colspan="2">
  1746. <widget class="QComboBox" name="btype">
  1747. <property name="toolTip">
  1748. <string>Add border or box</string>
  1749. </property>
  1750. <property name="minimumContentsLength">
  1751. <number>24</number>
  1752. </property>
  1753. <item>
  1754. <property name="text">
  1755. <string>No border</string>
  1756. </property>
  1757. </item>
  1758. <item>
  1759. <property name="text">
  1760. <string>Bind</string>
  1761. </property>
  1762. </item>
  1763. <item>
  1764. <property name="text">
  1765. <string>Box</string>
  1766. </property>
  1767. </item>
  1768. <item>
  1769. <property name="text">
  1770. <string>Bind Top</string>
  1771. </property>
  1772. </item>
  1773. </widget>
  1774. </item>
  1775. <item row="3" column="0">
  1776. <widget class="QLabel" name="lblBorderWidth">
  1777. <property name="toolTip">
  1778. <string>Width of boundary bars or border in X-dimensions</string>
  1779. </property>
  1780. <property name="text">
  1781. <string>B&amp;order Width:</string>
  1782. </property>
  1783. <property name="alignment">
  1784. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  1785. </property>
  1786. <property name="buddy">
  1787. <cstring>bwidth</cstring>
  1788. </property>
  1789. </widget>
  1790. </item>
  1791. <item row="3" column="1" colspan="2">
  1792. <widget class="QSpinBox" name="bwidth">
  1793. <property name="toolTip">
  1794. <string>Width of boundary bars or border in X-dimensions</string>
  1795. </property>
  1796. <property name="suffix">
  1797. <string> X</string>
  1798. </property>
  1799. <property name="minimum">
  1800. <number>0</number>
  1801. </property>
  1802. <property name="maximum">
  1803. <number>16</number>
  1804. </property>
  1805. <property name="value">
  1806. <number>0</number>
  1807. </property>
  1808. </widget>
  1809. </item>
  1810. <item row="4" column="0">
  1811. <widget class="QLabel" name="lblWhitespace">
  1812. <property name="toolTip">
  1813. <string>Horizontal whitespace, Vertical whitespace, in X-dimensions</string>
  1814. </property>
  1815. <property name="text">
  1816. <string>&amp;Whitespace:</string>
  1817. </property>
  1818. <property name="alignment">
  1819. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  1820. </property>
  1821. <property name="buddy">
  1822. <cstring>spnWhitespace</cstring>
  1823. </property>
  1824. </widget>
  1825. </item>
  1826. <item row="4" column="1" colspan="2">
  1827. <layout class="QGridLayout" name="gridLayoutWhitespace">
  1828. <item row="0" column="0">
  1829. <widget class="QSpinBox" name="spnWhitespace">
  1830. <property name="toolTip">
  1831. <string>Width of horizontal whitespace on either side
  1832. of barcode in X-dimensions</string>
  1833. </property>
  1834. <property name="suffix">
  1835. <string> X</string>
  1836. </property>
  1837. <property name="maximum">
  1838. <number>100</number>
  1839. </property>
  1840. </widget>
  1841. </item>
  1842. <item row="0" column="1">
  1843. <widget class="QSpinBox" name="spnVWhitespace">
  1844. <property name="toolTip">
  1845. <string>Height of vertical whitespace above and below
  1846. the barcode in X-dimensions</string>
  1847. </property>
  1848. <property name="suffix">
  1849. <string> X</string>
  1850. </property>
  1851. <property name="maximum">
  1852. <number>100</number>
  1853. </property>
  1854. </widget>
  1855. </item>
  1856. </layout>
  1857. </item>
  1858. <item row="5" column="0" colspan="2">
  1859. <widget class="QCheckBox" name="chkHRTShow">
  1860. <property name="toolTip">
  1861. <string>Show Human Readable Text in image
  1862. (ignored if disabled)</string>
  1863. </property>
  1864. <property name="text">
  1865. <string>Show Te&amp;xt</string>
  1866. </property>
  1867. <property name="checked">
  1868. <bool>true</bool>
  1869. </property>
  1870. </widget>
  1871. </item>
  1872. <item row="6" column="0">
  1873. <widget class="QLabel" name="lblFontSetting">
  1874. <property name="toolTip">
  1875. <string>Set font characteristics
  1876. (ignored if disabled)</string>
  1877. </property>
  1878. <property name="text">
  1879. <string>Fo&amp;nt Setting:</string>
  1880. </property>
  1881. <property name="alignment">
  1882. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  1883. </property>
  1884. <property name="buddy">
  1885. <cstring>cmbFontSetting</cstring>
  1886. </property>
  1887. </widget>
  1888. </item>
  1889. <item row="6" column="1" colspan="2">
  1890. <widget class="QComboBox" name="cmbFontSetting">
  1891. <property name="toolTip">
  1892. <string>Set font characteristics
  1893. (ignored if disabled)</string>
  1894. </property>
  1895. <item>
  1896. <property name="text">
  1897. <string>Normal</string>
  1898. </property>
  1899. </item>
  1900. <item>
  1901. <property name="text">
  1902. <string>Bold</string>
  1903. </property>
  1904. </item>
  1905. <item>
  1906. <property name="text">
  1907. <string>Small</string>
  1908. </property>
  1909. </item>
  1910. <item>
  1911. <property name="text">
  1912. <string>Small Bold (vector only)</string>
  1913. </property>
  1914. </item>
  1915. </widget>
  1916. </item>
  1917. <item row="7" column="0">
  1918. <widget class="QLabel" name="lblTextGap">
  1919. <property name="toolTip">
  1920. <string>Gap between barcode and text in X-dimensions
  1921. (ignored if disabled)</string>
  1922. </property>
  1923. <property name="text">
  1924. <string>Text &amp;Gap:</string>
  1925. </property>
  1926. <property name="alignment">
  1927. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  1928. </property>
  1929. <property name="buddy">
  1930. <cstring>spnTextGap</cstring>
  1931. </property>
  1932. </widget>
  1933. </item>
  1934. <item row="7" column="1">
  1935. <widget class="QDoubleSpinBox" name="spnTextGap">
  1936. <property name="toolTip">
  1937. <string>Gap between barcode and text in X-dimensions
  1938. (ignored if disabled)</string>
  1939. </property>
  1940. <property name="prefix">
  1941. <string/>
  1942. </property>
  1943. <property name="suffix">
  1944. <string> X</string>
  1945. </property>
  1946. <property name="decimals">
  1947. <number>2</number>
  1948. </property>
  1949. <property name="minimum">
  1950. <double>-5.000000000000000</double>
  1951. </property>
  1952. <property name="maximum">
  1953. <double>10.000000000000000</double>
  1954. </property>
  1955. <property name="singleStep">
  1956. <double>0.100000000000000</double>
  1957. </property>
  1958. <property name="value">
  1959. <double>1.000000000000000</double>
  1960. </property>
  1961. </widget>
  1962. </item>
  1963. <item row="7" column="2">
  1964. <widget class="QToolButton" name="btnClearTextGap">
  1965. <property name="maximumSize">
  1966. <size>
  1967. <width>22</width>
  1968. <height>26</height>
  1969. </size>
  1970. </property>
  1971. <property name="toolTip">
  1972. <string>Set text gap to default 1X</string>
  1973. </property>
  1974. <property name="text">
  1975. <string/>
  1976. </property>
  1977. </widget>
  1978. </item>
  1979. <item row="8" column="0">
  1980. <widget class="QLabel" name="lblScale">
  1981. <property name="toolTip">
  1982. <string>Image scale when output to file
  1983. (adjusts the X-dimension)</string>
  1984. </property>
  1985. <property name="text">
  1986. <string>&amp;Printing Scale:</string>
  1987. </property>
  1988. <property name="alignment">
  1989. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  1990. </property>
  1991. <property name="buddy">
  1992. <cstring>spnScale</cstring>
  1993. </property>
  1994. </widget>
  1995. </item>
  1996. <item row="8" column="1">
  1997. <widget class="QDoubleSpinBox" name="spnScale">
  1998. <property name="toolTip">
  1999. <string>Image scale when output to file
  2000. (adjusts the X-dimension)</string>
  2001. </property>
  2002. <property name="suffix">
  2003. <string/>
  2004. </property>
  2005. <property name="decimals">
  2006. <number>2</number>
  2007. </property>
  2008. <property name="minimum">
  2009. <double>0.100000000000000</double>
  2010. </property>
  2011. <property name="maximum">
  2012. <double>200.000000000000000</double>
  2013. </property>
  2014. <property name="singleStep">
  2015. <double>0.500000000000000</double>
  2016. </property>
  2017. <property name="value">
  2018. <double>1.000000000000000</double>
  2019. </property>
  2020. </widget>
  2021. </item>
  2022. <item row="8" column="2">
  2023. <widget class="QToolButton" name="btnScale">
  2024. <property name="maximumSize">
  2025. <size>
  2026. <width>22</width>
  2027. <height>26</height>
  2028. </size>
  2029. </property>
  2030. <property name="toolTip">
  2031. <string>Set Printing Scale by X-dimension and resolution</string>
  2032. </property>
  2033. <property name="text">
  2034. <string/>
  2035. </property>
  2036. </widget>
  2037. </item>
  2038. <item row="9" column="0">
  2039. <widget class="QLabel" name="lblSize">
  2040. <property name="toolTip">
  2041. <string>Image size (width x height) of barcode
  2042. at given dot density</string>
  2043. </property>
  2044. <property name="text">
  2045. <string>Print Size:</string>
  2046. </property>
  2047. <property name="alignment">
  2048. <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
  2049. </property>
  2050. </widget>
  2051. </item>
  2052. <item row="9" column="1" colspan="5">
  2053. <widget class="QLabel" name="lblSizeMsg">
  2054. <property name="toolTip">
  2055. <string>Image size (width x height) of barcode
  2056. at given dot density</string>
  2057. </property>
  2058. <property name="text">
  2059. <string/>
  2060. </property>
  2061. </widget>
  2062. </item>
  2063. <item row="0" column="3">
  2064. <widget class="QLabel" name="label_fgcolor">
  2065. <property name="enabled">
  2066. <bool>true</bool>
  2067. </property>
  2068. <property name="toolTip">
  2069. <string>Change colour of ink</string>
  2070. </property>
  2071. <property name="text">
  2072. <string>&amp;Foreground:</string>
  2073. </property>
  2074. <property name="alignment">
  2075. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  2076. </property>
  2077. <property name="buddy">
  2078. <cstring>txt_fgcolor</cstring>
  2079. </property>
  2080. </widget>
  2081. </item>
  2082. <item row="0" column="4">
  2083. <widget class="QLineEdit" name="txt_fgcolor">
  2084. <property name="maximumSize">
  2085. <size>
  2086. <width>100</width>
  2087. <height>16777215</height>
  2088. </size>
  2089. </property>
  2090. <property name="toolTip">
  2091. <string>Change ink colour, format is
  2092. hexadecimal &quot;RRGGBB&quot; or &quot;RRGGBBAA&quot; (alpha)
  2093. or decimal &quot;C,M,Y,K&quot; percentages (0-100)</string>
  2094. </property>
  2095. <property name="maxLength">
  2096. <number>15</number>
  2097. </property>
  2098. </widget>
  2099. </item>
  2100. <item row="0" column="5">
  2101. <widget class="QToolButton" name="fgcolor">
  2102. <property name="maximumSize">
  2103. <size>
  2104. <width>22</width>
  2105. <height>26</height>
  2106. </size>
  2107. </property>
  2108. <property name="toolTip">
  2109. <string>Change ink colour using picker</string>
  2110. </property>
  2111. <property name="text">
  2112. <string/>
  2113. </property>
  2114. </widget>
  2115. </item>
  2116. <item row="1" column="3">
  2117. <widget class="QLabel" name="label_bgcolor">
  2118. <property name="enabled">
  2119. <bool>true</bool>
  2120. </property>
  2121. <property name="toolTip">
  2122. <string>Change colour of paper</string>
  2123. </property>
  2124. <property name="text">
  2125. <string>Bac&amp;kground:</string>
  2126. </property>
  2127. <property name="alignment">
  2128. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  2129. </property>
  2130. <property name="buddy">
  2131. <cstring>txt_bgcolor</cstring>
  2132. </property>
  2133. </widget>
  2134. </item>
  2135. <item row="1" column="4">
  2136. <widget class="QLineEdit" name="txt_bgcolor">
  2137. <property name="maximumSize">
  2138. <size>
  2139. <width>100</width>
  2140. <height>16777215</height>
  2141. </size>
  2142. </property>
  2143. <property name="toolTip">
  2144. <string>Change paper colour, format is
  2145. hexadecimal &quot;RRGGBB&quot; or &quot;RRGGBBAA&quot; (alpha)
  2146. or decimal &quot;C,M,Y,K&quot; percentages (0-100).
  2147. For no background, set alpha channel to zero,
  2148. e.g. &quot;FFFFFF00&quot;</string>
  2149. </property>
  2150. <property name="maxLength">
  2151. <number>15</number>
  2152. </property>
  2153. </widget>
  2154. </item>
  2155. <item row="1" column="5">
  2156. <widget class="QToolButton" name="bgcolor">
  2157. <property name="maximumSize">
  2158. <size>
  2159. <width>22</width>
  2160. <height>26</height>
  2161. </size>
  2162. </property>
  2163. <property name="toolTip">
  2164. <string>Change paper colour using picker</string>
  2165. </property>
  2166. <property name="text">
  2167. <string/>
  2168. </property>
  2169. </widget>
  2170. </item>
  2171. <item row="2" column="3">
  2172. <widget class="QLabel" name="label_colours">
  2173. <property name="enabled">
  2174. <bool>true</bool>
  2175. </property>
  2176. <property name="toolTip">
  2177. <string>Reset or reverse colours</string>
  2178. </property>
  2179. <property name="text">
  2180. <string>Colours:</string>
  2181. </property>
  2182. <property name="alignment">
  2183. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  2184. </property>
  2185. <property name="buddy">
  2186. <cstring>btnReset</cstring>
  2187. </property>
  2188. </widget>
  2189. </item>
  2190. <item row="2" column="4">
  2191. <widget class="QPushButton" name="btnReset">
  2192. <property name="maximumSize">
  2193. <size>
  2194. <width>100</width>
  2195. <height>16777215</height>
  2196. </size>
  2197. </property>
  2198. <property name="toolTip">
  2199. <string>Reset colours to black on white</string>
  2200. </property>
  2201. <property name="text">
  2202. <string>&amp;Reset</string>
  2203. </property>
  2204. </widget>
  2205. </item>
  2206. <item row="2" column="5">
  2207. <widget class="QToolButton" name="btnReverse">
  2208. <property name="maximumSize">
  2209. <size>
  2210. <width>22</width>
  2211. <height>26</height>
  2212. </size>
  2213. </property>
  2214. <property name="toolTip">
  2215. <string>Swap foreground and background colours
  2216. (reflectance reversal)</string>
  2217. </property>
  2218. <property name="text">
  2219. <string/>
  2220. </property>
  2221. </widget>
  2222. </item>
  2223. <item row="3" column="4" colspan="2">
  2224. <widget class="QCheckBox" name="chkCMYK">
  2225. <property name="toolTip">
  2226. <string>Use CMYK colour space in EPS/TIF output</string>
  2227. </property>
  2228. <property name="text">
  2229. <string>CMYK (EPS&amp;/TIF)</string>
  2230. </property>
  2231. <property name="checked">
  2232. <bool>false</bool>
  2233. </property>
  2234. </widget>
  2235. </item>
  2236. <item row="4" column="4" colspan="2">
  2237. <widget class="QCheckBox" name="chkQuietZones">
  2238. <property name="toolTip">
  2239. <string>Add compliant quiet zones (if any) to whitespace
  2240. (ignored if disabled)</string>
  2241. </property>
  2242. <property name="text">
  2243. <string>Quiet &amp;Zones</string>
  2244. </property>
  2245. <property name="checked">
  2246. <bool>false</bool>
  2247. </property>
  2248. </widget>
  2249. </item>
  2250. <item row="5" column="3">
  2251. <widget class="QLabel" name="lblRotate">
  2252. <property name="toolTip">
  2253. <string>Rotate symbol by degrees</string>
  2254. </property>
  2255. <property name="text">
  2256. <string>R&amp;otate:</string>
  2257. </property>
  2258. <property name="alignment">
  2259. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  2260. </property>
  2261. <property name="buddy">
  2262. <cstring>cmbRotate</cstring>
  2263. </property>
  2264. </widget>
  2265. </item>
  2266. <item row="5" column="4" colspan="2">
  2267. <widget class="QComboBox" name="cmbRotate">
  2268. <property name="toolTip">
  2269. <string>Rotate symbol by degrees</string>
  2270. </property>
  2271. <item>
  2272. <property name="text">
  2273. <string>0°</string>
  2274. </property>
  2275. </item>
  2276. <item>
  2277. <property name="text">
  2278. <string>90°</string>
  2279. </property>
  2280. </item>
  2281. <item>
  2282. <property name="text">
  2283. <string>180°</string>
  2284. </property>
  2285. </item>
  2286. <item>
  2287. <property name="text">
  2288. <string>270°</string>
  2289. </property>
  2290. </item>
  2291. </widget>
  2292. </item>
  2293. <item row="6" column="4" colspan="2">
  2294. <widget class="QCheckBox" name="chkEmbedVectorFont">
  2295. <property name="toolTip">
  2296. <string>Embed font in SVG output
  2297. (ignored if disabled)</string>
  2298. </property>
  2299. <property name="text">
  2300. <string>Embed Font &amp;(SVG)</string>
  2301. </property>
  2302. <property name="checked">
  2303. <bool>false</bool>
  2304. </property>
  2305. </widget>
  2306. </item>
  2307. <item row="7" column="4" colspan="2">
  2308. <widget class="QCheckBox" name="chkDotty">
  2309. <property name="toolTip">
  2310. <string>Use dots instead of squares for matrix symbols
  2311. (ignored if disabled)</string>
  2312. </property>
  2313. <property name="text">
  2314. <string>Dott&amp;y</string>
  2315. </property>
  2316. <property name="checked">
  2317. <bool>false</bool>
  2318. </property>
  2319. </widget>
  2320. </item>
  2321. <item row="8" column="3">
  2322. <widget class="QLabel" name="lblDotSize">
  2323. <property name="enabled">
  2324. <bool>false</bool>
  2325. </property>
  2326. <property name="toolTip">
  2327. <string>Size of dots
  2328. (ignored if disabled)</string>
  2329. </property>
  2330. <property name="text">
  2331. <string>Dot S&amp;ize:</string>
  2332. </property>
  2333. <property name="alignment">
  2334. <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
  2335. </property>
  2336. <property name="buddy">
  2337. <cstring>spnDotSize</cstring>
  2338. </property>
  2339. </widget>
  2340. </item>
  2341. <item row="8" column="4" colspan="2">
  2342. <widget class="QDoubleSpinBox" name="spnDotSize">
  2343. <property name="enabled">
  2344. <bool>false</bool>
  2345. </property>
  2346. <property name="toolTip">
  2347. <string>Size of dots
  2348. (ignored if disabled)</string>
  2349. </property>
  2350. <property name="suffix">
  2351. <string/>
  2352. </property>
  2353. <property name="decimals">
  2354. <number>2</number>
  2355. </property>
  2356. <property name="minimum">
  2357. <double>0.010000000000000</double>
  2358. </property>
  2359. <property name="maximum">
  2360. <double>20.000000000000000</double>
  2361. </property>
  2362. <property name="singleStep">
  2363. <double>0.100000000000000</double>
  2364. </property>
  2365. <property name="value">
  2366. <double>0.800000000000000</double>
  2367. </property>
  2368. </widget>
  2369. </item>
  2370. </layout>
  2371. </item>
  2372. <item>
  2373. <spacer name="vSpacerAppearance">
  2374. <property name="orientation">
  2375. <enum>Qt::Vertical</enum>
  2376. </property>
  2377. <property name="sizeHint" stdset="0">
  2378. <size>
  2379. <width>40</width>
  2380. <height>10</height>
  2381. </size>
  2382. </property>
  2383. </spacer>
  2384. </item>
  2385. </layout>
  2386. </widget>
  2387. </widget>
  2388. </item>
  2389. </layout>
  2390. </item>
  2391. </layout>
  2392. </item>
  2393. <item>
  2394. <layout class="QGridLayout" name="gridLayout_2">
  2395. <item row="0" column="0">
  2396. <widget class="QPushButton" name="btnMenu">
  2397. <property name="toolTip">
  2398. <string>Show menu</string>
  2399. </property>
  2400. <property name="text">
  2401. <string> Men&amp;u</string>
  2402. </property>
  2403. </widget>
  2404. </item>
  2405. <item row="0" column="1">
  2406. <widget class="QStatusBar" name="statusBar">
  2407. <property name="sizeHint" stdset="0">
  2408. <size>
  2409. <width>2</width>
  2410. <height>22</height>
  2411. </size>
  2412. </property>
  2413. <property name="sizeGripEnabled">
  2414. <bool>false</bool>
  2415. </property>
  2416. </widget>
  2417. </item>
  2418. <item row="0" column="2">
  2419. <widget class="QPushButton" name="btnCopyBMP">
  2420. <property name="toolTip">
  2421. <string>Copy to clipboard as BMP</string>
  2422. </property>
  2423. <property name="text">
  2424. <string> &amp;BMP</string>
  2425. </property>
  2426. </widget>
  2427. </item>
  2428. <item row="0" column="3">
  2429. <widget class="QPushButton" name="btnCopySVG">
  2430. <property name="toolTip">
  2431. <string>Copy to clipboard as SVG</string>
  2432. </property>
  2433. <property name="text">
  2434. <string> S&amp;VG</string>
  2435. </property>
  2436. </widget>
  2437. </item>
  2438. <item row="0" column="4">
  2439. <widget class="QPushButton" name="btnSave">
  2440. <property name="toolTip">
  2441. <string>Output image to file (BMP/EMF/EPS/GIF/PCX/PNG/SVG/TIF)</string>
  2442. </property>
  2443. <property name="text">
  2444. <string> &amp;Save...</string>
  2445. </property>
  2446. </widget>
  2447. </item>
  2448. <item row="0" column="5">
  2449. <widget class="QPushButton" name="btnExit">
  2450. <property name="toolTip">
  2451. <string>Exit Zint Barcode Studio</string>
  2452. </property>
  2453. <property name="text">
  2454. <string> &amp;Quit</string>
  2455. </property>
  2456. </widget>
  2457. </item>
  2458. </layout>
  2459. </item>
  2460. </layout>
  2461. </widget>
  2462. <resources>
  2463. <include location="resources.qrc"/>
  2464. </resources>
  2465. <connections/>
  2466. </ui>