zint-barcode-generator/backend_qt/qzint.h

130 lines
3.3 KiB
C
Raw Normal View History

2008-07-18 10:48:31 -04:00
/***************************************************************************
* Copyright (C) 2008 by BogDan Vatra *
* bogdan@licentia.eu *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
***************************************************************************/
#ifndef BARCODERENDER_H
#define BARCODERENDER_H
#include <QColor>
#include <QPainter>
2008-07-18 10:48:31 -04:00
#include "zint.h"
namespace Zint
{
class QZint
2008-07-18 10:48:31 -04:00
{
2008-10-09 05:55:18 -04:00
private:
2008-07-18 10:48:31 -04:00
public:
enum BorderType{NO_BORDER=0, BIND=2, BOX=4};
2008-10-09 05:55:18 -04:00
enum AspectRatioMode{IgnoreAspectRatio=0, KeepAspectRatio=1, CenterBarCode=2};
2008-07-18 10:48:31 -04:00
public:
QZint();
~QZint();
2008-07-18 10:48:31 -04:00
2017-09-10 11:03:09 -04:00
int symbol() const;
2008-07-18 10:48:31 -04:00
void setSymbol(int symbol);
2017-09-10 11:03:09 -04:00
QString text() const;
2008-07-18 10:48:31 -04:00
void setText(const QString & text);
2017-09-10 11:03:09 -04:00
QString primaryMessage() const;
2008-07-18 10:48:31 -04:00
void setPrimaryMessage(const QString & primaryMessage);
2008-07-18 10:48:31 -04:00
void setHeight(int height);
int height();
2008-07-18 10:48:31 -04:00
void setWidth(int width);
int width();
2017-10-23 15:37:52 -04:00
2009-11-03 05:53:18 -05:00
void setOption3(int option);
2017-09-10 11:03:09 -04:00
QColor fgColor() const;
2008-07-18 10:48:31 -04:00
void setFgColor(const QColor & fgColor);
2017-09-10 11:03:09 -04:00
QColor bgColor() const;
2008-07-18 10:48:31 -04:00
void setBgColor(const QColor & bgColor);
2017-09-10 11:03:09 -04:00
BorderType borderType() const;
void setBorderType(BorderType border);
2017-09-10 11:03:09 -04:00
int borderWidth() const;
void setBorderWidth(int boderWidth);
2017-09-10 11:03:09 -04:00
int pdf417CodeWords() const;
void setPdf417CodeWords(int pdf417CodeWords);
2017-09-10 11:03:09 -04:00
int securityLevel() const;
void setSecurityLevel(int securityLevel);
2017-09-10 11:03:09 -04:00
float scale() const;
2009-05-19 10:04:49 -04:00
void setScale(float scale);
2017-10-23 15:37:52 -04:00
void setDotSize(float dot_size);
2009-05-19 10:04:49 -04:00
2017-09-10 11:03:09 -04:00
int mode() const;
void setMode(int securityLevel);
2009-04-26 18:04:51 -04:00
void setInputMode(int input_mode);
void setWhitespace(int whitespace);
2017-09-10 11:03:09 -04:00
QString error_message() const;
2009-05-19 10:04:49 -04:00
2008-10-09 05:55:18 -04:00
void render(QPainter & painter, const QRectF & paintRect, AspectRatioMode mode=IgnoreAspectRatio);
2008-07-18 10:48:31 -04:00
2017-09-10 11:03:09 -04:00
const QString & lastError() const;
2008-07-18 10:48:31 -04:00
bool hasErrors();
2009-05-19 10:04:49 -04:00
bool save_to_file(QString filename);
2017-10-23 15:37:52 -04:00
2009-11-03 05:53:18 -05:00
void setHideText(bool hide);
2017-10-23 15:37:52 -04:00
2016-12-14 18:33:17 -05:00
void setTargetSize(int width, int height);
2009-07-07 15:10:22 -04:00
2008-07-18 10:48:31 -04:00
private:
void encode();
2017-09-10 11:03:09 -04:00
int module_set(int y_coord, int x_coord) const;
2008-07-18 10:48:31 -04:00
private:
int m_symbol;
QString m_text;
QString m_primaryMessage;
int m_height;
BorderType m_border;
int m_borderWidth;
2008-07-18 10:48:31 -04:00
int m_width;
int m_securityLevel;
int m_pdf417CodeWords;
2009-04-26 18:04:51 -04:00
int m_input_mode;
2008-07-18 10:48:31 -04:00
QColor m_fgColor;
QColor m_bgColor;
QString m_lastError;
int m_error;
int m_whitespace;
2008-07-18 10:48:31 -04:00
zint_symbol * m_zintSymbol;
2009-05-19 10:04:49 -04:00
float m_scale;
2009-11-03 05:53:18 -05:00
int m_option_3;
bool m_hidetext;
2017-09-10 11:03:09 -04:00
float m_dot_size;
int target_size_horiz;
int target_size_vert;
2008-07-18 10:48:31 -04:00
};
}
#endif
2017-10-23 15:37:52 -04:00