zint-barcode-generator/backend_qt4/qzint.cpp

499 lines
13 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/>. *
***************************************************************************/
#include "qzint.h"
2009-04-28 11:34:02 -04:00
#include <stdio.h>
2008-07-18 10:48:31 -04:00
namespace Zint
{
2008-10-09 05:56:54 -04:00
static const qreal maxi_diagonal=11;
static const qreal maxi_width=1.73205807568877*maxi_diagonal/2;
QZint::QZint()
2008-07-18 10:48:31 -04:00
{
m_symbol=BARCODE_CODE128;
m_height=50;
m_border=NO_BORDER;
2008-10-09 05:56:54 -04:00
m_boderWidth=1;
2008-07-18 10:48:31 -04:00
m_securityLevel=-1;
m_pdf417CodeWords=928;
m_fgColor=Qt::black;
m_bgColor=Qt::white;
m_zintSymbol=0;
m_error=0;
2009-04-26 18:04:51 -04:00
m_input_mode = UNICODE_MODE;
2008-07-18 10:48:31 -04:00
}
QZint::~QZint()
2008-07-18 10:48:31 -04:00
{
if (m_zintSymbol)
ZBarcode_Delete(m_zintSymbol);
}
void QZint::encode()
2008-07-18 10:48:31 -04:00
{
if (m_zintSymbol)
ZBarcode_Delete(m_zintSymbol);
m_lastError.clear();
m_zintSymbol = ZBarcode_Create();
m_zintSymbol->output_options=m_border;
2008-07-18 10:48:31 -04:00
m_zintSymbol->symbology=m_symbol;
m_zintSymbol->height=m_height;
m_zintSymbol->output_options=0;
m_zintSymbol->whitespace_width=0;
m_zintSymbol->border_width=m_boderWidth;
2008-07-18 10:48:31 -04:00
m_zintSymbol->option_1=m_securityLevel;
2009-04-26 18:04:51 -04:00
m_zintSymbol->input_mode = m_input_mode;
m_zintSymbol->option_2=m_width;
2008-07-18 10:48:31 -04:00
m_zintSymbol->option_3=m_pdf417CodeWords;
QByteArray bstr=m_text.toAscii();
QByteArray pstr=m_primaryMessage.left(99).toAscii();
strcpy(m_zintSymbol->primary,pstr.data());
int error = ZBarcode_Encode(m_zintSymbol, (unsigned char*)bstr.data());
if (error > WARN_INVALID_OPTION)
m_lastError=m_zintSymbol->errtxt;
if (m_zintSymbol->symbology == BARCODE_MAXICODE)
m_zintSymbol->height = 33;
2008-07-18 10:48:31 -04:00
}
int QZint::symbol()
{
return m_symbol;
}
void QZint::setSymbol(int symbol)
2008-07-18 10:48:31 -04:00
{
m_symbol=symbol;
}
2009-04-26 18:04:51 -04:00
void QZint::setInputMode(int input_mode)
{
m_input_mode = input_mode;
}
QString QZint::text()
{
return m_text;
}
void QZint::setText(const QString & text)
2008-07-18 10:48:31 -04:00
{
m_text=text;
}
QString QZint::primaryMessage()
{
return m_primaryMessage;
}
void QZint::setPrimaryMessage(const QString & primaryMessage)
2008-07-18 10:48:31 -04:00
{
m_primaryMessage=primaryMessage;
}
int QZint::height()
{
encode();
2008-11-18 12:10:54 -05:00
return (m_zintSymbol->height+(m_border!=NO_BORDER)?m_boderWidth*2:0)*(m_zintSymbol->symbology == BARCODE_MAXICODE?(maxi_width+1):1);
}
void QZint::setHeight(int height)
2008-07-18 10:48:31 -04:00
{
m_height=height;
}
void QZint::setWidth(int width)
{
m_width=width;
}
int QZint::width()
2008-07-18 10:48:31 -04:00
{
encode();
2008-10-09 05:56:54 -04:00
return (m_zintSymbol->width+(m_border==BOX)?m_boderWidth*2:0)*(m_zintSymbol->symbology == BARCODE_MAXICODE?(maxi_width+1):1);
}
QColor QZint::fgColor()
{
return m_fgColor;
}
void QZint::setFgColor(const QColor & fgColor)
{
m_fgColor=fgColor;
}
QColor QZint::bgColor()
{
return m_bgColor;
}
void QZint::setBgColor(const QColor & bgColor)
{
m_bgColor=bgColor;
2008-07-18 10:48:31 -04:00
}
QZint::BorderType QZint::borderType()
{
return m_border;
}
void QZint::setBorderType(BorderType border)
2008-07-18 10:48:31 -04:00
{
m_border=border;
}
int QZint::borderWidth()
{
return m_boderWidth;
}
void QZint::setBorderWidth(int boderWidth)
2008-07-18 10:48:31 -04:00
{
2008-10-09 05:56:54 -04:00
if (boderWidth<1 || boderWidth>16)
boderWidth=1;
2008-07-18 10:48:31 -04:00
m_boderWidth=boderWidth;
}
int QZint::pdf417CodeWords()
2008-07-18 10:48:31 -04:00
{
return m_pdf417CodeWords;
2008-07-18 10:48:31 -04:00
}
void QZint::setPdf417CodeWords(int pdf417CodeWords)
2008-07-18 10:48:31 -04:00
{
m_pdf417CodeWords=pdf417CodeWords;
2008-07-18 10:48:31 -04:00
}
int QZint::securityLevel()
{
return m_securityLevel;
}
void QZint::setSecurityLevel(int securityLevel)
2008-07-18 10:48:31 -04:00
{
m_securityLevel=securityLevel;
}
int QZint::mode()
{
return m_securityLevel;
}
void QZint::setMode(int securityLevel)
{
m_securityLevel=securityLevel;
}
2008-10-09 05:56:54 -04:00
void QZint::render(QPainter & painter, const QRectF & paintRect, AspectRatioMode mode)
2008-07-18 10:48:31 -04:00
{
encode();
2009-04-28 11:34:02 -04:00
bool textdone;
int comp_offset = 0, xoffset = 0, j;
QString caption = (const char*)m_zintSymbol->text;
2008-10-09 05:56:54 -04:00
2008-07-18 10:48:31 -04:00
if (m_lastError.length())
{
painter.drawText(paintRect,Qt::AlignCenter,m_lastError);
return;
}
painter.save();
painter.setClipRect(paintRect,Qt::IntersectClip);
qreal xtr=paintRect.x();
qreal ytr=paintRect.y();
int zrow_height=m_zintSymbol->height;
int zrows=0;
for (int i=0;i<m_zintSymbol->rows;i++)
{
zrow_height-=m_zintSymbol->row_height[i];
if (!m_zintSymbol->row_height[i])
zrows++;
}
if (zrows)
{
zrow_height/=zrows;
for (int i=0;i<m_zintSymbol->rows;i++)
if (!m_zintSymbol->row_height[i])
m_zintSymbol->row_height[i]=zrow_height;
}
else
m_zintSymbol->height-=zrow_height;
2008-07-18 10:48:31 -04:00
2008-10-09 05:56:54 -04:00
qreal gwidth=m_zintSymbol->width;
qreal gheight=m_zintSymbol->height;
2008-07-18 10:48:31 -04:00
if (m_zintSymbol->symbology == BARCODE_MAXICODE)
{
2009-04-28 03:22:46 -04:00
gheight*=(maxi_width);
2008-10-09 05:56:54 -04:00
gwidth*=(maxi_width+1);
2008-07-18 10:48:31 -04:00
}
2008-10-09 05:56:54 -04:00
qreal xsf=1;
qreal ysf=1;
2009-04-28 11:34:02 -04:00
qreal textoffset = 0;
2008-10-09 05:56:54 -04:00
gwidth+=((m_border==BOX)?m_boderWidth*2:0);
gheight+=((m_border!=NO_BORDER)?m_boderWidth*2:0);
2009-04-28 11:34:02 -04:00
if(QString((const char*)m_zintSymbol->text).isEmpty() == false) {
textoffset = 9;
gheight += textoffset;
} else {
textoffset = 0;
}
gwidth+=m_zintSymbol->whitespace_width*2;
2008-07-18 10:48:31 -04:00
switch(mode)
{
case IgnoreAspectRatio:
xsf=(qreal)paintRect.width()/gwidth;
ysf=(qreal)paintRect.height()/gheight;
break;
case KeepAspectRatio:
2009-04-28 03:22:46 -04:00
if (paintRect.width()/gwidth<paintRect.height()/gheight)
2008-07-18 10:48:31 -04:00
{
ysf=xsf=(qreal)paintRect.width()/gwidth;
ytr+=(qreal)(paintRect.height()-gheight*ysf)/2;
}
else
{
ysf=xsf=(qreal)paintRect.height()/gheight;
xtr+=(qreal)(paintRect.width()-gwidth*xsf)/2;
}
break;
case CenterBarCode:
xtr+=((qreal)paintRect.width()-gwidth*xsf)/2;
ytr+=((qreal)paintRect.height()-gheight*ysf)/2;
break;
}
painter.setBackground(QBrush(m_bgColor));
painter.fillRect(paintRect,QBrush(m_bgColor));
painter.translate(xtr,ytr);
painter.scale(xsf,ysf);
QPen p;
p.setColor(m_fgColor);
p.setWidth(m_boderWidth);
painter.setPen(p);
QPainterPath pt;
switch(m_border)
{
case BOX:
painter.drawLine(m_boderWidth/2,m_boderWidth/2, gwidth-m_boderWidth/2, m_boderWidth/2);
2008-10-09 05:56:54 -04:00
painter.drawLine(gwidth-m_boderWidth/2, m_boderWidth/2, gwidth-m_boderWidth/2, gheight-m_boderWidth/2);
painter.drawLine(m_boderWidth/2, gheight-m_boderWidth/2, gwidth-m_boderWidth/2, gheight-m_boderWidth/2);
2008-07-18 10:48:31 -04:00
painter.drawLine(m_boderWidth/2, gheight-m_boderWidth/2, m_boderWidth/2,m_boderWidth/2);
painter.translate(m_boderWidth+m_zintSymbol->whitespace_width,m_boderWidth);
2008-07-18 10:48:31 -04:00
break;
case BIND:
painter.drawLine(m_boderWidth/2,m_boderWidth/2,gwidth-m_boderWidth/2, m_boderWidth/2);
painter.drawLine(m_boderWidth/2,gheight-m_boderWidth/2,gwidth-m_boderWidth/2, gheight-m_boderWidth/2);
painter.translate(m_zintSymbol->whitespace_width,m_boderWidth);
2008-07-18 10:48:31 -04:00
break;
default:
painter.translate(m_zintSymbol->whitespace_width,0);
2008-07-18 10:48:31 -04:00
break;;
}
p.setWidth(1);
painter.setPen(p);
if (m_zintSymbol->symbology == BARCODE_MAXICODE)
{
painter.save();
painter.setRenderHint(QPainter::Antialiasing);
2008-10-07 10:27:39 -04:00
for (int r=0;r<m_zintSymbol->rows;r++)
{
for (int c=0;c<m_zintSymbol->width;c++)
{
if (m_zintSymbol->encoded_data[r][c]=='1')
2008-07-18 10:48:31 -04:00
{
2008-10-09 05:56:54 -04:00
qreal col=(qreal)c*(maxi_width+1)+(r%2)*((maxi_width+1)/2);
2009-02-02 05:02:41 -05:00
qreal row=(qreal)r*(maxi_width+1)*0.868;
2008-07-18 10:48:31 -04:00
QPainterPath pt;
2008-10-09 05:56:54 -04:00
pt.moveTo(col+maxi_width/2, row);
pt.lineTo(col+maxi_width, row+maxi_diagonal/4);
pt.lineTo(col+maxi_width, row+(maxi_diagonal-maxi_diagonal/4));
pt.lineTo(col+maxi_width/2, row+maxi_diagonal);
pt.lineTo(col, row+(maxi_diagonal-maxi_diagonal/4));
pt.lineTo(col, row+maxi_diagonal/4);
2008-10-09 05:56:54 -04:00
pt.lineTo(col+maxi_width/2, row);
2008-07-18 10:48:31 -04:00
painter.fillPath(pt,QBrush(m_fgColor));
}
2008-10-07 10:27:39 -04:00
}
}
2008-10-09 05:56:54 -04:00
p.setWidth(maxi_width);
2008-07-18 10:48:31 -04:00
painter.setPen(p);
2008-10-09 05:56:54 -04:00
const qreal w=maxi_width+1;
2009-02-02 05:02:41 -05:00
painter.drawEllipse(QPointF(14.5*w,16.5*w*0.868),w,w);
painter.drawEllipse(QPointF(14.5*w,16.5*w*0.868),w+w*1.5,w+w*1.5);
painter.drawEllipse(QPointF(14.5*w,16.5*w*0.868),w+w*3,w+w*3);
2008-07-18 10:48:31 -04:00
painter.restore();
}
else
{
int y=0;
for (int row=0;row<m_zintSymbol->rows;row++)
{
for (int i=0;i<m_zintSymbol->width;i++)
if (m_zintSymbol->encoded_data[row][i]!='0')
{
int ed=m_zintSymbol->encoded_data[row][i];
int linewidth=0;
for (int j=i;j<m_zintSymbol->width;j++,linewidth++)
if (ed!=m_zintSymbol->encoded_data[row][j])
break;
QColor color;
switch(ed)
{
case 'R':
color=qRgb(0xff,0x00,0x00);
break;
case 'G':
color=qRgb(0x00,0xff,0x00);
break;
case 'B':
color=qRgb(0x00,0x00,0xff);
break;
case 'C':
color=qRgb(0x00,0xff,0xff);
break;
case 'M':
color=qRgb(0xff,0x00,0xff);
break;
case 'Y':
color=qRgb(0xff,0xff,0x00);
break;
default:
color=m_fgColor;
break;
}
painter.fillRect(i,y,linewidth,m_zintSymbol->row_height[row],QBrush(color));
}
y+=m_zintSymbol->row_height[row];
}
}
2009-04-28 11:34:02 -04:00
textdone = false;
while(m_zintSymbol->encoded_data[m_zintSymbol->rows - 1][comp_offset] != '1') {
comp_offset++;
}
xoffset += comp_offset;
painter.setFont(QFont("Ariel", 4));
if(((m_zintSymbol->symbology == BARCODE_EANX) || (m_zintSymbol->symbology == BARCODE_EANX_CC)) ||
(m_zintSymbol->symbology == BARCODE_ISBNX)) {
switch(caption.size()) {
case 8:
case 11:
case 14:
painter.fillRect(0 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
painter.fillRect(2 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
painter.fillRect(32 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
painter.fillRect(34 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
painter.fillRect(64 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
painter.fillRect(66 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
textdone = true;
break;
case 13:
case 16:
case 19:
painter.fillRect(0 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
painter.fillRect(2 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
painter.fillRect(46 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
painter.fillRect(48 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
painter.fillRect(92 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
painter.fillRect(94 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
textdone = true;
break;
}
}
if((m_zintSymbol->symbology == BARCODE_UPCA) || (m_zintSymbol->symbology == BARCODE_UPCA_CC)) {
int block_width;
bool latch = true;
j = 0 + comp_offset;
do {
block_width = 0;
do {
block_width++;
} while (m_zintSymbol->encoded_data[m_zintSymbol->rows - 1][j + block_width] == m_zintSymbol->encoded_data[m_zintSymbol->rows - 1][j]);
if(latch == true) {
/* a bar */
painter.fillRect(j + xoffset - comp_offset,m_zintSymbol->height,block_width,5,QBrush(m_fgColor));
latch = false;
} else {
/* a space */
latch = true;
}
j += block_width;
} while (j < 11 + comp_offset);
painter.fillRect(46 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
painter.fillRect(48 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
latch = true;
j = 85 + comp_offset;
do {
block_width = 0;
do {
block_width++;
} while (m_zintSymbol->encoded_data[m_zintSymbol->rows - 1][j + block_width] == m_zintSymbol->encoded_data[m_zintSymbol->rows - 1][j]);
if(latch == true) {
/* a bar */
painter.fillRect(j + xoffset - comp_offset,m_zintSymbol->height,block_width,5,QBrush(m_fgColor));
latch = false;
} else {
/* a space */
latch = true;
}
j += block_width;
} while (j < 96 + comp_offset);
textdone = true;
}
if((m_zintSymbol->symbology == BARCODE_UPCE) || (m_zintSymbol->symbology == BARCODE_UPCE_CC)) {
painter.fillRect(0 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
painter.fillRect(2 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
painter.fillRect(46 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
painter.fillRect(48 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
painter.fillRect(50 + xoffset,m_zintSymbol->height,1,5,QBrush(m_fgColor));
textdone = true;
}
if((caption.isEmpty() == false) && (textdone == false)) {
painter.drawText(0, m_zintSymbol->height + 3, m_zintSymbol->width, 7,Qt::AlignCenter, caption);
}
2008-07-18 10:48:31 -04:00
painter.restore();
}
const QString & QZint::lastError()
{
return m_lastError;
}
bool QZint::hasErrors()
{
return m_lastError.length();
}
2008-07-18 10:48:31 -04:00
}