| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>mainWindow</class>
- <widget class="QWidget" name="mainWindow">
- <property name="windowModality">
- <enum>Qt::NonModal</enum>
- </property>
- <property name="minimumSize">
- <size>
- <width>360</width>
- <height>0</height>
- </size>
- </property>
- <property name="windowTitle">
- <string>Zint Barcode Studio</string>
- </property>
- <property name="windowIcon">
- <iconset resource="resources.qrc">
- <normaloff>:/res/zint-qt.ico</normaloff>:/res/zint-qt.ico</iconset>
- </property>
- <property name="autoFillBackground">
- <bool>false</bool>
- </property>
- <property name="locale">
- <locale language="English" country="UnitedStates"/>
- </property>
- <layout class="QVBoxLayout" name="vLayoutMain">
- <item>
- <widget class="QGraphicsView" name="view">
- <property name="minimumSize">
- <size>
- <width>0</width>
- <height>35</height>
- </size>
- </property>
- <property name="contextMenuPolicy">
- <enum>Qt::CustomContextMenu</enum>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QSplitter" name="errtxtBarContainer">
- <property name="visible">
- <bool>false</bool>
- </property>
- <property name="frameShape">
- <enum>QFrame::StyledPanel</enum>
- </property>
- <property name="frameShadow">
- <enum>QFrame::Plain</enum>
- </property>
- <property name="orientation">
- <enum>Qt::Horizontal</enum>
- </property>
- <widget class="QStatusBar" name="errtxtBar">
- <property name="contextMenuPolicy">
- <enum>Qt::CustomContextMenu</enum>
- </property>
- <property name="autoFillBackground">
- <bool>true</bool>
- </property>
- <property name="styleSheet">
- <string notr="true"/>
- </property>
- <property name="sizeGripEnabled">
- <bool>false</bool>
- </property>
- </widget>
- </widget>
- </item>
- <item>
- <layout class="QHBoxLayout" name="hLayoutMain">
- <property name="sizeConstraint">
- <enum>QLayout::SetMinimumSize</enum>
- </property>
- <item>
- <layout class="QVBoxLayout" name="vLayoutSymbology">
- <item>
- <layout class="QHBoxLayout" name="hLayoutSymbology">
- <item>
- <widget class="QLabel" name="lblSymbology">
- <property name="toolTip">
- <string>Type of barcode</string>
- </property>
- <property name="text">
- <string>Symbo&logy:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
- </property>
- <property name="buddy">
- <cstring>bstyle</cstring>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QComboBox" name="bstyle">
- <property name="sizePolicy">
- <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="toolTip">
- <string>Type of barcode</string>
- </property>
- <property name="sizeAdjustPolicy">
- <enum>QComboBox::AdjustToContents</enum>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QLineEdit" name="filter_bstyle">
- <property name="toolTip">
- <string>Filter symbologies</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- <item>
- <widget class="QTabWidget" name="tabMain">
- <property name="minimumSize">
- <size>
- <width>0</width>
- <height>346</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>16777215</width>
- <height>346</height>
- </size>
- </property>
- <property name="autoFillBackground">
- <bool>false</bool>
- </property>
- <property name="currentIndex">
- <number>0</number>
- </property>
- <widget class="QWidget" name="tabData">
- <attribute name="title">
- <string>&Data</string>
- </attribute>
- <layout class="QVBoxLayout" name="vLayoutTabData">
- <item>
- <widget class="QGroupBox" name="grpData">
- <property name="sizePolicy">
- <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="toolTip">
- <string>Input data</string>
- </property>
- <property name="title">
- <string>Data to Enc&ode</string>
- </property>
- <layout class="QVBoxLayout" name="vLayoutData">
- <item>
- <layout class="QHBoxLayout" name="hLayoutData">
- <item>
- <widget class="QLineEdit" name="txtData">
- <property name="toolTip">
- <string>Input data</string>
- </property>
- <property name="text">
- <string>Your Data Here!</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QPushButton" name="btnMoreData">
- <property name="maximumSize">
- <size>
- <width>34</width>
- <height>16777215</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Encode more data
- or import from file</string>
- </property>
- <property name="text">
- <string>&...</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QToolButton" name="btnClearData">
- <property name="maximumSize">
- <size>
- <width>22</width>
- <height>26</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Clear data and ECI (segment 0)</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- <item>
- <layout class="QHBoxLayout" name="hLayoutECI">
- <item>
- <widget class="QLabel" name="lblECI">
- <property name="maximumSize">
- <size>
- <width>40</width>
- <height>16777215</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Set the ECI (Extended Channel Interpretation) code
- (ignored if disabled)</string>
- </property>
- <property name="text">
- <string>EC&I:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
- </property>
- <property name="buddy">
- <cstring>cmbECI</cstring>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QComboBox" name="cmbECI">
- <property name="minimumSize">
- <size>
- <width>64</width>
- <height>0</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Set the ECI (Extended Channel Interpretation) code
- (ignored if disabled)</string>
- </property>
- <property name="maxVisibleItems">
- <number>34</number>
- </property>
- <item>
- <property name="text">
- <string>None</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>3: ISO 8859-1 Latin-1</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>4: ISO 8859-2 Latin-2</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>5: ISO 8859-3 Latin-3</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>6: ISO 8859-4 Latin-4</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>7: ISO 8859-5 Cyrillic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>8: ISO 8859-6 Arabic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>9: ISO 8859-7 Greek</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>10: ISO 8859-8 Hebrew</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>11: ISO 8859-9 Turkish</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>12: ISO 8859-10 Nordic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>13: ISO 8859-11 Thai</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>15: ISO 8859-13 Baltic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>16: ISO 8859-14 Celtic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>17: ISO 8859-15 Latin-9</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>18: ISO 8859-16 Latin-10</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>20: Shift JIS </string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>21: Windows 1250 Latin-2</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>22: Windows 1251 Cyrillic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>23: Windows 1252 Latin-1</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>24: Windows 1256 Arabic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>25: UTF-16BE</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>26: UTF-8</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>27: ASCII (ISO 646 IRV)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>28: Big5 (Taiwan)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>29: GB 2312 (PRC)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>30: Korean EUC-KR</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>31: GBK</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>32: GB 18030</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>33: UTF-16LE</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>34: UTF-32BE</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>35: UTF-32LE</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>170: ISO 646 Invariant</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>899: 8-bit binary data</string>
- </property>
- </item>
- </widget>
- </item>
- <item>
- <spacer name="hSpacer_hLayoutECI">
- <property name="orientation">
- <enum>Qt::Horizontal</enum>
- </property>
- <property name="sizeHint" stdset="0">
- <size>
- <width>10</width>
- <height>20</height>
- </size>
- </property>
- </spacer>
- </item>
- <item>
- <widget class="QCheckBox" name="chkRInit">
- <property name="toolTip">
- <string>Create reader initialisation/programming symbol
- (ignored if disabled)</string>
- </property>
- <property name="text">
- <string>&Reader Init</string>
- </property>
- <property name="checked">
- <bool>false</bool>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QPushButton" name="btnSequence">
- <property name="maximumSize">
- <size>
- <width>60</width>
- <height>16777215</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Encode a sequence</string>
- </property>
- <property name="text">
- <string>123&4..</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QToolButton" name="btnZap">
- <property name="maximumSize">
- <size>
- <width>22</width>
- <height>26</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Clear all data and ECIs and reset all settings
- for this symbology to defaults</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- </layout>
- </widget>
- </item>
- <item>
- <widget class="QGroupBox" name="grpComposite">
- <property name="enabled">
- <bool>true</bool>
- </property>
- <property name="sizePolicy">
- <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="minimumSize">
- <size>
- <width>0</width>
- <height>0</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>16777215</width>
- <height>400</height>
- </size>
- </property>
- <property name="toolTip">
- <string>GS1 Composite symbol settings</string>
- </property>
- <property name="title">
- <string>GS1 Composite</string>
- </property>
- <layout class="QVBoxLayout" name="vLayoutComposite">
- <item>
- <layout class="QHBoxLayout" name="hLayoutComposite">
- <item>
- <widget class="QCheckBox" name="chkComposite">
- <property name="toolTip">
- <string>Create a composite symbol</string>
- </property>
- <property name="text">
- <string>Add &2D Component</string>
- </property>
- </widget>
- </item>
- <item>
- <spacer name="hSpacer_hLayoutComposite">
- <property name="orientation">
- <enum>Qt::Horizontal</enum>
- </property>
- <property name="sizeHint" stdset="0">
- <size>
- <width>40</width>
- <height>20</height>
- </size>
- </property>
- </spacer>
- </item>
- <item>
- <widget class="QLabel" name="lblCompType">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="toolTip">
- <string>Type of 2D component</string>
- </property>
- <property name="text">
- <string>&Type:</string>
- </property>
- <property name="buddy">
- <cstring>cmbCompType</cstring>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QComboBox" name="cmbCompType">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="minimumSize">
- <size>
- <width>60</width>
- <height>0</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Type of 2D component</string>
- </property>
- <item>
- <property name="text">
- <string>Automatic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>CC-A</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>CC-B</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>CC-C</string>
- </property>
- </item>
- </widget>
- </item>
- </layout>
- </item>
- <item>
- <layout class="QVBoxLayout" name="vLayoutComponentData">
- <property name="sizeConstraint">
- <enum>QLayout::SetMinimumSize</enum>
- </property>
- <item>
- <layout class="QHBoxLayout" name="hLayoutComponentDataLabel">
- <item>
- <widget class="QLabel" name="lblComposite">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="toolTip">
- <string>Data to be encoded in 2D component
- Remember to place [square brackets] around AI identifiers</string>
- </property>
- <property name="text">
- <string>2D Co&mponent Data</string>
- </property>
- <property name="buddy">
- <cstring>txtComposite</cstring>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QToolButton" name="btnClearComposite">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="maximumSize">
- <size>
- <width>22</width>
- <height>26</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Clear 2D Component data</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- <item>
- <widget class="QTextEdit" name="txtComposite">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="sizePolicy">
- <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="maximumSize">
- <size>
- <width>16777215</width>
- <height>60</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Data to be encoded in 2D component
- Remember to place [square brackets] around AI identifiers</string>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- </layout>
- </widget>
- </item>
- <item>
- <widget class="QGroupBox" name="grpSegs">
- <property name="enabled">
- <bool>true</bool>
- </property>
- <property name="sizePolicy">
- <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="minimumSize">
- <size>
- <width>0</width>
- <height>0</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>16777215</width>
- <height>400</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Additional data segments with their own
- Extended Channel Interpretation (ECI)</string>
- </property>
- <property name="title">
- <string>Additional ECI/Data Segments</string>
- </property>
- <layout class="QVBoxLayout" name="vLayoutSegs">
- <item>
- <layout class="QHBoxLayout" name="hlLayoutSeg1">
- <item>
- <widget class="QLabel" name="lblSeg1">
- <property name="enabled">
- <bool>true</bool>
- </property>
- <property name="toolTip">
- <string>Segment 1</string>
- </property>
- <property name="text">
- <string>&1:</string>
- </property>
- <property name="buddy">
- <cstring>txtDataSeg1</cstring>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QComboBox" name="cmbECISeg1">
- <property name="minimumSize">
- <size>
- <width>64</width>
- <height>0</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>160</width>
- <height>16777215</height>
- </size>
- </property>
- <property name="toolTip">
- <string>ECI for segment 1</string>
- </property>
- <property name="maxVisibleItems">
- <number>34</number>
- </property>
- <item>
- <property name="text">
- <string>None</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>3: ISO 8859-1 Latin-1</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>4: ISO 8859-2 Latin-2</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>5: ISO 8859-3 Latin-3</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>6: ISO 8859-4 Latin-4</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>7: ISO 8859-5 Cyrillic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>8: ISO 8859-6 Arabic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>9: ISO 8859-7 Greek</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>10: ISO 8859-8 Hebrew</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>11: ISO 8859-9 Turkish</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>12: ISO 8859-10 Nordic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>13: ISO 8859-11 Thai</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>15: ISO 8859-13 Baltic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>16: ISO 8859-14 Celtic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>17: ISO 8859-15 Latin-9</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>18: ISO 8859-16 Latin-10</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>20: Shift JIS </string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>21: Windows 1250 Latin-2</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>22: Windows 1251 Cyrillic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>23: Windows 1252 Latin-1</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>24: Windows 1256 Arabic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>25: UTF-16BE</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>26: UTF-8</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>27: ASCII (ISO 646 IRV)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>28: Big5 (Taiwan)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>29: GB 2312 (PRC)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>30: Korean EUC-KR</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>31: GBK</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>32: GB 18030</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>33: UTF-16LE</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>34: UTF-32BE</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>35: UTF-32LE</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>170: ISO 646 Invariant</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>899: 8-bit binary data</string>
- </property>
- </item>
- </widget>
- </item>
- <item>
- <widget class="QLineEdit" name="txtDataSeg1">
- <property name="minimumSize">
- <size>
- <width>150</width>
- <height>0</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Data for segment 1</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QPushButton" name="btnMoreDataSeg1">
- <property name="maximumSize">
- <size>
- <width>34</width>
- <height>16777215</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Encode more segment 1 data
- or import from file</string>
- </property>
- <property name="text">
- <string>...</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QToolButton" name="btnClearDataSeg1">
- <property name="maximumSize">
- <size>
- <width>22</width>
- <height>26</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Clear segment 1 data and ECI</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- <item>
- <layout class="QHBoxLayout" name="hLayoutSeg2">
- <item>
- <widget class="QLabel" name="lblSeg2">
- <property name="enabled">
- <bool>true</bool>
- </property>
- <property name="toolTip">
- <string>Segment 2</string>
- </property>
- <property name="text">
- <string>&2:</string>
- </property>
- <property name="buddy">
- <cstring>txtDataSeg2</cstring>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QComboBox" name="cmbECISeg2">
- <property name="minimumSize">
- <size>
- <width>64</width>
- <height>0</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>160</width>
- <height>16777215</height>
- </size>
- </property>
- <property name="toolTip">
- <string>ECI for segment 2</string>
- </property>
- <property name="maxVisibleItems">
- <number>34</number>
- </property>
- <item>
- <property name="text">
- <string>None</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>3: ISO 8859-1 Latin-1</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>4: ISO 8859-2 Latin-2</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>5: ISO 8859-3 Latin-3</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>6: ISO 8859-4 Latin-4</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>7: ISO 8859-5 Cyrillic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>8: ISO 8859-6 Arabic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>9: ISO 8859-7 Greek</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>10: ISO 8859-8 Hebrew</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>11: ISO 8859-9 Turkish</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>12: ISO 8859-10 Nordic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>13: ISO 8859-11 Thai</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>15: ISO 8859-13 Baltic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>16: ISO 8859-14 Celtic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>17: ISO 8859-15 Latin-9</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>18: ISO 8859-16 Latin-10</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>20: Shift JIS </string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>21: Windows 1250 Latin-2</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>22: Windows 1251 Cyrillic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>23: Windows 1252 Latin-1</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>24: Windows 1256 Arabic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>25: UTF-16BE</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>26: UTF-8</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>27: ASCII (ISO 646 IRV)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>28: Big5 (Taiwan)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>29: GB 2312 (PRC)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>30: Korean EUC-KR</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>31: GBK</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>32: GB 18030</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>33: UTF-16LE</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>34: UTF-32BE</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>35: UTF-32LE</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>170: ISO 646 Invariant</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>899: 8-bit binary data</string>
- </property>
- </item>
- </widget>
- </item>
- <item>
- <widget class="QLineEdit" name="txtDataSeg2">
- <property name="minimumSize">
- <size>
- <width>150</width>
- <height>0</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Data for segment 2</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QPushButton" name="btnMoreDataSeg2">
- <property name="maximumSize">
- <size>
- <width>34</width>
- <height>16777215</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Encode more segment 2 data
- or import from file</string>
- </property>
- <property name="text">
- <string>...</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QToolButton" name="btnClearDataSeg2">
- <property name="maximumSize">
- <size>
- <width>22</width>
- <height>26</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Clear segment 2 data and ECI</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- <item>
- <layout class="QHBoxLayout" name="hLayoutSeg3">
- <item>
- <widget class="QLabel" name="lblSeg3">
- <property name="enabled">
- <bool>true</bool>
- </property>
- <property name="toolTip">
- <string>Segment 3</string>
- </property>
- <property name="text">
- <string>&3:</string>
- </property>
- <property name="buddy">
- <cstring>txtDataSeg3</cstring>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QComboBox" name="cmbECISeg3">
- <property name="minimumSize">
- <size>
- <width>64</width>
- <height>0</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>160</width>
- <height>16777215</height>
- </size>
- </property>
- <property name="toolTip">
- <string>ECI for segment 3</string>
- </property>
- <property name="maxVisibleItems">
- <number>34</number>
- </property>
- <item>
- <property name="text">
- <string>None</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>3: ISO 8859-1 Latin-1</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>4: ISO 8859-2 Latin-2</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>5: ISO 8859-3 Latin-3</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>6: ISO 8859-4 Latin-4</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>7: ISO 8859-5 Cyrillic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>8: ISO 8859-6 Arabic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>9: ISO 8859-7 Greek</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>10: ISO 8859-8 Hebrew</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>11: ISO 8859-9 Turkish</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>12: ISO 8859-10 Nordic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>13: ISO 8859-11 Thai</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>15: ISO 8859-13 Baltic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>16: ISO 8859-14 Celtic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>17: ISO 8859-15 Latin-9</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>18: ISO 8859-16 Latin-10</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>20: Shift JIS </string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>21: Windows 1250 Latin-2</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>22: Windows 1251 Cyrillic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>23: Windows 1252 Latin-1</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>24: Windows 1256 Arabic</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>25: UTF-16BE</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>26: UTF-8</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>27: ASCII (ISO 646 IRV)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>28: Big5 (Taiwan)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>29: GB 2312 (PRC)</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>30: Korean EUC-KR</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>31: GBK</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>32: GB 18030</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>33: UTF-16LE</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>34: UTF-32BE</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>35: UTF-32LE</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>170: ISO 646 Invariant</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>899: 8-bit binary data</string>
- </property>
- </item>
- </widget>
- </item>
- <item>
- <widget class="QLineEdit" name="txtDataSeg3">
- <property name="minimumSize">
- <size>
- <width>150</width>
- <height>0</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Data for segment 3</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QPushButton" name="btnMoreDataSeg3">
- <property name="maximumSize">
- <size>
- <width>34</width>
- <height>16777215</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Encode more segment 3 data
- or import from file</string>
- </property>
- <property name="text">
- <string>...</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QToolButton" name="btnClearDataSeg3">
- <property name="maximumSize">
- <size>
- <width>22</width>
- <height>26</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Clear segment 3 data and ECI</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- </layout>
- </widget>
- </item>
- <item>
- <widget class="QGroupBox" name="grpSpecific">
- <property name="enabled">
- <bool>true</bool>
- </property>
- <property name="sizePolicy">
- <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="minimumSize">
- <size>
- <width>0</width>
- <height>0</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>16777215</width>
- <height>400</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Additional Settings</string>
- </property>
- <property name="title">
- <string>Options</string>
- </property>
- <layout class="QVBoxLayout" name="vLayoutSpecific">
- </layout>
- </widget>
- </item>
- <item>
- <spacer name="vSpacerData">
- <property name="orientation">
- <enum>Qt::Vertical</enum>
- </property>
- <property name="sizeHint" stdset="0">
- <size>
- <width>40</width>
- <height>10</height>
- </size>
- </property>
- </spacer>
- </item>
- <item>
- <layout class="QHBoxLayout" name="hLayoutChks">
- <item>
- <spacer name="hSpacer_hLayoutChks">
- <property name="orientation">
- <enum>Qt::Horizontal</enum>
- </property>
- <property name="sizeHint" stdset="0">
- <size>
- <width>10</width>
- <height>20</height>
- </size>
- </property>
- </spacer>
- </item>
- <item>
- <widget class="QCheckBox" name="chkEscape">
- <property name="toolTip">
- <string>Process escape sequences in input data<table cellspacing="3">
- <tr><td>\0&nbsp;</td><td>NUL character (0x00)</td></tr>
- <tr><td>\E&nbsp;</td><td>End of Transmission (0x04)</td></tr>
- <tr><td>\a&nbsp;</td><td>Bell (0x07)</td></tr>
- <tr><td>\b&nbsp;</td><td>Backspace (0x08)</td></tr>
- <tr><td>\t&nbsp;</td><td>Horizontal Tab (0x09)</td></tr>
- <tr><td>\n&nbsp;</td><td>Line Feed (0x0A)</td></tr>
- <tr><td>\v&nbsp;</td><td>Vertical Tab (0x0B)</td></tr>
- <tr><td>\f&nbsp;</td><td>Form Feed (0x0C)</td></tr>
- <tr><td>\r&nbsp;</td><td>Carriage Return (0x0D)</td></tr>
- <tr><td>\e&nbsp;</td><td>Escape (0x1B)</td></tr>
- <tr><td>\G&nbsp;</td><td>Group Separator (0x1D)</td></tr>
- <tr><td>\R&nbsp;</td><td>Record Separator (0x1E)</td></tr>
- <tr><td>\\&nbsp;</td><td>Backslash (0x5C)</td></tr>
- <tr><td>\dNNN&nbsp;</td><td>8-bit character (N decimal)</td></tr>
- <tr><td>\oNNN&nbsp;</td><td>8-bit character (N octal)</td></tr>
- <tr><td>\xNN&nbsp;</td><td>8-bit character (N hex)</td></tr>
- <tr><td>\uNNNN&nbsp;</td><td>16-bit Unicode BMP (N hex)</td></tr>
- <tr><td>\UNNNNNN&nbsp;</td><td>21-bit Unicode (N hex)</td></tr>
- </table></string>
- </property>
- <property name="text">
- <string>Parse Es&capes</string>
- </property>
- <property name="checked">
- <bool>false</bool>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QCheckBox" name="chkData">
- <property name="toolTip">
- <string>Treat input as raw binary data
- (ignored if disabled)</string>
- </property>
- <property name="text">
- <string>Binar&y Mode</string>
- </property>
- <property name="checked">
- <bool>false</bool>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QCheckBox" name="chkGS1Parens">
- <property name="toolTip">
- <string>Process parentheses "()" instead of square brackets "[]"
- as delimiters for GS1 Application Identifiers
- (ignored if disabled)</string>
- </property>
- <property name="text">
- <string>GS1 &()</string>
- </property>
- <property name="checked">
- <bool>false</bool>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QCheckBox" name="chkGS1NoCheck">
- <property name="toolTip">
- <string>Do not check GS1 data for validity (note that certain
- checks necessary for encodation are still performed)
- (ignored if disabled)</string>
- </property>
- <property name="text">
- <string>GS1 &No Check</string>
- </property>
- <property name="checked">
- <bool>false</bool>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- </layout>
- </widget>
- <widget class="QWidget" name="tabAppear">
- <property name="maximumSize">
- <size>
- <width>678</width>
- <height>16777215</height>
- </size>
- </property>
- <attribute name="title">
- <string>A&ppearance</string>
- </attribute>
- <layout class="QVBoxLayout" name="vLayoutAppearance">
- <item>
- <layout class="QGridLayout" name="gridLayout">
- <item row="0" column="0" colspan="3">
- <layout class="QHBoxLayout" name="hLayoutAutoHeight">
- <item>
- <widget class="QCheckBox" name="chkAutoHeight">
- <property name="toolTip">
- <string>Use default height
- (ignored if disabled)</string>
- </property>
- <property name="text">
- <string>Auto&matic Height</string>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QCheckBox" name="chkCompliantHeight">
- <property name="toolTip">
- <string>Warn if height specified not compliant with specification,
- or use standard height (if any) for default
- (ignored if disabled)</string>
- </property>
- <property name="text">
- <string>&Compliant Height</string>
- </property>
- <property name="checked">
- <bool>false</bool>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- <item row="1" column="0">
- <widget class="QLabel" name="lblHeight">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="toolTip">
- <string>Overall symbol height in X-dimensions
- (ignored if disabled)</string>
- </property>
- <property name="text">
- <string>&Height:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
- </property>
- <property name="buddy">
- <cstring>heightb</cstring>
- </property>
- </widget>
- </item>
- <item row="1" column="1" colspan="2">
- <widget class="QDoubleSpinBox" name="heightb">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="toolTip">
- <string>Overall symbol height in X-dimensions
- (ignored if disabled)</string>
- </property>
- <property name="accelerated">
- <bool>true</bool>
- </property>
- <property name="prefix">
- <string/>
- </property>
- <property name="suffix">
- <string> X</string>
- </property>
- <property name="decimals">
- <number>3</number>
- </property>
- <property name="minimum">
- <double>0.500000000000000</double>
- </property>
- <property name="maximum">
- <double>2000.000000000000000</double>
- </property>
- <property name="singleStep">
- <double>0.100000000000000</double>
- </property>
- <property name="value">
- <double>50.000000000000000</double>
- </property>
- </widget>
- </item>
- <item row="2" column="0">
- <widget class="QLabel" name="lblBorderType">
- <property name="toolTip">
- <string>Add border or box</string>
- </property>
- <property name="text">
- <string>Border &Type:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
- </property>
- <property name="buddy">
- <cstring>btype</cstring>
- </property>
- </widget>
- </item>
- <item row="2" column="1" colspan="2">
- <widget class="QComboBox" name="btype">
- <property name="toolTip">
- <string>Add border or box</string>
- </property>
- <property name="minimumContentsLength">
- <number>24</number>
- </property>
- <item>
- <property name="text">
- <string>No border</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Bind</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Box</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Bind Top</string>
- </property>
- </item>
- </widget>
- </item>
- <item row="3" column="0">
- <widget class="QLabel" name="lblBorderWidth">
- <property name="toolTip">
- <string>Width of boundary bars or border in X-dimensions</string>
- </property>
- <property name="text">
- <string>B&order Width:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
- </property>
- <property name="buddy">
- <cstring>bwidth</cstring>
- </property>
- </widget>
- </item>
- <item row="3" column="1" colspan="2">
- <widget class="QSpinBox" name="bwidth">
- <property name="toolTip">
- <string>Width of boundary bars or border in X-dimensions</string>
- </property>
- <property name="suffix">
- <string> X</string>
- </property>
- <property name="minimum">
- <number>0</number>
- </property>
- <property name="maximum">
- <number>16</number>
- </property>
- <property name="value">
- <number>0</number>
- </property>
- </widget>
- </item>
- <item row="4" column="0">
- <widget class="QLabel" name="lblWhitespace">
- <property name="toolTip">
- <string>Horizontal whitespace, Vertical whitespace, in X-dimensions</string>
- </property>
- <property name="text">
- <string>&Whitespace:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
- </property>
- <property name="buddy">
- <cstring>spnWhitespace</cstring>
- </property>
- </widget>
- </item>
- <item row="4" column="1" colspan="2">
- <layout class="QGridLayout" name="gridLayoutWhitespace">
- <item row="0" column="0">
- <widget class="QSpinBox" name="spnWhitespace">
- <property name="toolTip">
- <string>Width of horizontal whitespace on either side
- of barcode in X-dimensions</string>
- </property>
- <property name="suffix">
- <string> X</string>
- </property>
- <property name="maximum">
- <number>100</number>
- </property>
- </widget>
- </item>
- <item row="0" column="1">
- <widget class="QSpinBox" name="spnVWhitespace">
- <property name="toolTip">
- <string>Height of vertical whitespace above and below
- the barcode in X-dimensions</string>
- </property>
- <property name="suffix">
- <string> X</string>
- </property>
- <property name="maximum">
- <number>100</number>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- <item row="5" column="0" colspan="2">
- <widget class="QCheckBox" name="chkHRTShow">
- <property name="toolTip">
- <string>Show Human Readable Text in image
- (ignored if disabled)</string>
- </property>
- <property name="text">
- <string>Show Te&xt</string>
- </property>
- <property name="checked">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- <item row="6" column="0">
- <widget class="QLabel" name="lblFontSetting">
- <property name="toolTip">
- <string>Set font characteristics
- (ignored if disabled)</string>
- </property>
- <property name="text">
- <string>Fo&nt Setting:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
- </property>
- <property name="buddy">
- <cstring>cmbFontSetting</cstring>
- </property>
- </widget>
- </item>
- <item row="6" column="1" colspan="2">
- <widget class="QComboBox" name="cmbFontSetting">
- <property name="toolTip">
- <string>Set font characteristics
- (ignored if disabled)</string>
- </property>
- <item>
- <property name="text">
- <string>Normal</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Bold</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Small</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>Small Bold (vector only)</string>
- </property>
- </item>
- </widget>
- </item>
- <item row="7" column="0">
- <widget class="QLabel" name="lblTextGap">
- <property name="toolTip">
- <string>Gap between barcode and text in X-dimensions
- (ignored if disabled)</string>
- </property>
- <property name="text">
- <string>Text &Gap:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
- </property>
- <property name="buddy">
- <cstring>spnTextGap</cstring>
- </property>
- </widget>
- </item>
- <item row="7" column="1">
- <widget class="QDoubleSpinBox" name="spnTextGap">
- <property name="toolTip">
- <string>Gap between barcode and text in X-dimensions
- (ignored if disabled)</string>
- </property>
- <property name="prefix">
- <string/>
- </property>
- <property name="suffix">
- <string> X</string>
- </property>
- <property name="decimals">
- <number>2</number>
- </property>
- <property name="minimum">
- <double>-5.000000000000000</double>
- </property>
- <property name="maximum">
- <double>10.000000000000000</double>
- </property>
- <property name="singleStep">
- <double>0.100000000000000</double>
- </property>
- <property name="value">
- <double>1.000000000000000</double>
- </property>
- </widget>
- </item>
- <item row="7" column="2">
- <widget class="QToolButton" name="btnClearTextGap">
- <property name="maximumSize">
- <size>
- <width>22</width>
- <height>26</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Set text gap to default 1X</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item row="8" column="0">
- <widget class="QLabel" name="lblScale">
- <property name="toolTip">
- <string>Image scale when output to file
- (adjusts the X-dimension)</string>
- </property>
- <property name="text">
- <string>&Printing Scale:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
- </property>
- <property name="buddy">
- <cstring>spnScale</cstring>
- </property>
- </widget>
- </item>
- <item row="8" column="1">
- <widget class="QDoubleSpinBox" name="spnScale">
- <property name="toolTip">
- <string>Image scale when output to file
- (adjusts the X-dimension)</string>
- </property>
- <property name="suffix">
- <string/>
- </property>
- <property name="decimals">
- <number>2</number>
- </property>
- <property name="minimum">
- <double>0.100000000000000</double>
- </property>
- <property name="maximum">
- <double>200.000000000000000</double>
- </property>
- <property name="singleStep">
- <double>0.500000000000000</double>
- </property>
- <property name="value">
- <double>1.000000000000000</double>
- </property>
- </widget>
- </item>
- <item row="8" column="2">
- <widget class="QToolButton" name="btnScale">
- <property name="maximumSize">
- <size>
- <width>22</width>
- <height>26</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Set Printing Scale by X-dimension and resolution</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item row="9" column="0">
- <widget class="QLabel" name="lblSize">
- <property name="toolTip">
- <string>Image size (width x height) of barcode
- at given dot density</string>
- </property>
- <property name="text">
- <string>Print Size:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
- </property>
- </widget>
- </item>
- <item row="9" column="1" colspan="5">
- <widget class="QLabel" name="lblSizeMsg">
- <property name="toolTip">
- <string>Image size (width x height) of barcode
- at given dot density</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item row="0" column="3">
- <widget class="QLabel" name="label_fgcolor">
- <property name="enabled">
- <bool>true</bool>
- </property>
- <property name="toolTip">
- <string>Change colour of ink</string>
- </property>
- <property name="text">
- <string>&Foreground:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
- </property>
- <property name="buddy">
- <cstring>txt_fgcolor</cstring>
- </property>
- </widget>
- </item>
- <item row="0" column="4">
- <widget class="QLineEdit" name="txt_fgcolor">
- <property name="maximumSize">
- <size>
- <width>100</width>
- <height>16777215</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Change ink colour, format is
- hexadecimal "RRGGBB" or "RRGGBBAA" (alpha)
- or decimal "C,M,Y,K" percentages (0-100)</string>
- </property>
- <property name="maxLength">
- <number>15</number>
- </property>
- </widget>
- </item>
- <item row="0" column="5">
- <widget class="QToolButton" name="fgcolor">
- <property name="maximumSize">
- <size>
- <width>22</width>
- <height>26</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Change ink colour using picker</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item row="1" column="3">
- <widget class="QLabel" name="label_bgcolor">
- <property name="enabled">
- <bool>true</bool>
- </property>
- <property name="toolTip">
- <string>Change colour of paper</string>
- </property>
- <property name="text">
- <string>Bac&kground:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
- </property>
- <property name="buddy">
- <cstring>txt_bgcolor</cstring>
- </property>
- </widget>
- </item>
- <item row="1" column="4">
- <widget class="QLineEdit" name="txt_bgcolor">
- <property name="maximumSize">
- <size>
- <width>100</width>
- <height>16777215</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Change paper colour, format is
- hexadecimal "RRGGBB" or "RRGGBBAA" (alpha)
- or decimal "C,M,Y,K" percentages (0-100).
- For no background, set alpha channel to zero,
- e.g. "FFFFFF00"</string>
- </property>
- <property name="maxLength">
- <number>15</number>
- </property>
- </widget>
- </item>
- <item row="1" column="5">
- <widget class="QToolButton" name="bgcolor">
- <property name="maximumSize">
- <size>
- <width>22</width>
- <height>26</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Change paper colour using picker</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item row="2" column="3">
- <widget class="QLabel" name="label_colours">
- <property name="enabled">
- <bool>true</bool>
- </property>
- <property name="toolTip">
- <string>Reset or reverse colours</string>
- </property>
- <property name="text">
- <string>Colours:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
- </property>
- <property name="buddy">
- <cstring>btnReset</cstring>
- </property>
- </widget>
- </item>
- <item row="2" column="4">
- <widget class="QPushButton" name="btnReset">
- <property name="maximumSize">
- <size>
- <width>100</width>
- <height>16777215</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Reset colours to black on white</string>
- </property>
- <property name="text">
- <string>&Reset</string>
- </property>
- </widget>
- </item>
- <item row="2" column="5">
- <widget class="QToolButton" name="btnReverse">
- <property name="maximumSize">
- <size>
- <width>22</width>
- <height>26</height>
- </size>
- </property>
- <property name="toolTip">
- <string>Swap foreground and background colours
- (reflectance reversal)</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item row="3" column="4" colspan="2">
- <widget class="QCheckBox" name="chkCMYK">
- <property name="toolTip">
- <string>Use CMYK colour space in EPS/TIF output</string>
- </property>
- <property name="text">
- <string>CMYK (EPS&/TIF)</string>
- </property>
- <property name="checked">
- <bool>false</bool>
- </property>
- </widget>
- </item>
- <item row="4" column="4" colspan="2">
- <widget class="QCheckBox" name="chkQuietZones">
- <property name="toolTip">
- <string>Add compliant quiet zones (if any) to whitespace
- (ignored if disabled)</string>
- </property>
- <property name="text">
- <string>Quiet &Zones</string>
- </property>
- <property name="checked">
- <bool>false</bool>
- </property>
- </widget>
- </item>
- <item row="5" column="3">
- <widget class="QLabel" name="lblRotate">
- <property name="toolTip">
- <string>Rotate symbol by degrees</string>
- </property>
- <property name="text">
- <string>R&otate:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
- </property>
- <property name="buddy">
- <cstring>cmbRotate</cstring>
- </property>
- </widget>
- </item>
- <item row="5" column="4" colspan="2">
- <widget class="QComboBox" name="cmbRotate">
- <property name="toolTip">
- <string>Rotate symbol by degrees</string>
- </property>
- <item>
- <property name="text">
- <string>0°</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>90°</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>180°</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>270°</string>
- </property>
- </item>
- </widget>
- </item>
- <item row="6" column="4" colspan="2">
- <widget class="QCheckBox" name="chkEmbedVectorFont">
- <property name="toolTip">
- <string>Embed font in SVG output
- (ignored if disabled)</string>
- </property>
- <property name="text">
- <string>Embed Font &(SVG)</string>
- </property>
- <property name="checked">
- <bool>false</bool>
- </property>
- </widget>
- </item>
- <item row="7" column="4" colspan="2">
- <widget class="QCheckBox" name="chkDotty">
- <property name="toolTip">
- <string>Use dots instead of squares for matrix symbols
- (ignored if disabled)</string>
- </property>
- <property name="text">
- <string>Dott&y</string>
- </property>
- <property name="checked">
- <bool>false</bool>
- </property>
- </widget>
- </item>
- <item row="8" column="3">
- <widget class="QLabel" name="lblDotSize">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="toolTip">
- <string>Size of dots
- (ignored if disabled)</string>
- </property>
- <property name="text">
- <string>Dot S&ize:</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
- </property>
- <property name="buddy">
- <cstring>spnDotSize</cstring>
- </property>
- </widget>
- </item>
- <item row="8" column="4" colspan="2">
- <widget class="QDoubleSpinBox" name="spnDotSize">
- <property name="enabled">
- <bool>false</bool>
- </property>
- <property name="toolTip">
- <string>Size of dots
- (ignored if disabled)</string>
- </property>
- <property name="suffix">
- <string/>
- </property>
- <property name="decimals">
- <number>2</number>
- </property>
- <property name="minimum">
- <double>0.010000000000000</double>
- </property>
- <property name="maximum">
- <double>20.000000000000000</double>
- </property>
- <property name="singleStep">
- <double>0.100000000000000</double>
- </property>
- <property name="value">
- <double>0.800000000000000</double>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- <item>
- <spacer name="vSpacerAppearance">
- <property name="orientation">
- <enum>Qt::Vertical</enum>
- </property>
- <property name="sizeHint" stdset="0">
- <size>
- <width>40</width>
- <height>10</height>
- </size>
- </property>
- </spacer>
- </item>
- </layout>
- </widget>
- </widget>
- </item>
- </layout>
- </item>
- </layout>
- </item>
- <item>
- <layout class="QGridLayout" name="gridLayout_2">
- <item row="0" column="0">
- <widget class="QPushButton" name="btnMenu">
- <property name="toolTip">
- <string>Show menu</string>
- </property>
- <property name="text">
- <string> Men&u</string>
- </property>
- </widget>
- </item>
- <item row="0" column="1">
- <widget class="QStatusBar" name="statusBar">
- <property name="sizeHint" stdset="0">
- <size>
- <width>2</width>
- <height>22</height>
- </size>
- </property>
- <property name="sizeGripEnabled">
- <bool>false</bool>
- </property>
- </widget>
- </item>
- <item row="0" column="2">
- <widget class="QPushButton" name="btnCopyBMP">
- <property name="toolTip">
- <string>Copy to clipboard as BMP</string>
- </property>
- <property name="text">
- <string> &BMP</string>
- </property>
- </widget>
- </item>
- <item row="0" column="3">
- <widget class="QPushButton" name="btnCopySVG">
- <property name="toolTip">
- <string>Copy to clipboard as SVG</string>
- </property>
- <property name="text">
- <string> S&VG</string>
- </property>
- </widget>
- </item>
- <item row="0" column="4">
- <widget class="QPushButton" name="btnSave">
- <property name="toolTip">
- <string>Output image to file (BMP/EMF/EPS/GIF/PCX/PNG/SVG/TIF)</string>
- </property>
- <property name="text">
- <string> &Save...</string>
- </property>
- </widget>
- </item>
- <item row="0" column="5">
- <widget class="QPushButton" name="btnExit">
- <property name="toolTip">
- <string>Exit Zint Barcode Studio</string>
- </property>
- <property name="text">
- <string> &Quit</string>
- </property>
- </widget>
- </item>
- </layout>
- </item>
- </layout>
- </widget>
- <resources>
- <include location="resources.qrc"/>
- </resources>
- <connections/>
- </ui>
|