1
0
mirror of https://git.code.sf.net/p/zint/code synced 2025-12-20 19:37:06 +00:00

Add GS1PARENS_MODE (input_mode) to allow inputting GS1 AIs in parentheses

This commit is contained in:
gitlost
2021-05-15 12:23:46 +01:00
parent 6fb0d077bc
commit 79d3c1dc7a
38 changed files with 672 additions and 359 deletions

View File

@@ -96,6 +96,8 @@ public:
void setECI(int ECIIndex);
void setGS1Parens(bool gs1parens);
void setReaderInit(bool reader_init);
void setDebug(bool debug);
@@ -103,6 +105,7 @@ public:
bool hasHRT(int symbology = 0) const;
bool isExtendable(int symbology = 0) const;
bool supportsECI(int symbology = 0) const;
bool supportsGS1(int symbology = 0) const;
bool isFixedRatio(int symbology = 0) const;
bool isDotty(int symbology = 0) const;
bool supportsReaderInit(int symbology = 0) const;
@@ -155,6 +158,7 @@ private:
float m_dot_size;
int target_size_horiz;
int target_size_vert;
bool m_gs1parens;
bool m_gssep;
bool m_reader_init;
bool m_debug;