1
0
mirror of https://git.code.sf.net/p/zint/code synced 2026-01-28 14:25:59 +00:00

Allow removal of text

This commit is contained in:
hooper114
2009-11-03 10:53:18 +00:00
parent 57c9ff012c
commit d5e61c1c44
2 changed files with 38 additions and 3 deletions

View File

@@ -50,6 +50,8 @@ public:
void setWidth(int width);
int width();
void setOption3(int option);
QColor fgColor();
void setFgColor(const QColor & fgColor);
@@ -87,6 +89,8 @@ public:
bool hasErrors();
bool save_to_file(QString filename);
void setHideText(bool hide);
private:
void encode();
@@ -110,6 +114,8 @@ private:
int m_whitespace;
zint_symbol * m_zintSymbol;
float m_scale;
int m_option_3;
bool m_hidetext;
};
}
#endif