mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-24 12:34:39 +03:00
commit
77cc93e766
2
3rdparty/zint-2.6.1/backend_qt/qzint.cpp
vendored
2
3rdparty/zint-2.6.1/backend_qt/qzint.cpp
vendored
@ -300,7 +300,7 @@ namespace Zint {
|
||||
return result;
|
||||
}
|
||||
|
||||
void QZint::render(QPainter & painter, const QRectF & paintRect, AspectRatioMode mode) {
|
||||
void QZint::render(QPainter & painter, const QRectF & paintRect) {
|
||||
bool textdone;
|
||||
int comp_offset = 0;
|
||||
int xoffset = m_whitespace;
|
||||
|
2
3rdparty/zint-2.6.1/backend_qt/qzint.h
vendored
2
3rdparty/zint-2.6.1/backend_qt/qzint.h
vendored
@ -86,7 +86,7 @@ public:
|
||||
|
||||
QString error_message();
|
||||
|
||||
void render(QPainter & painter, const QRectF & paintRect, AspectRatioMode mode=IgnoreAspectRatio);
|
||||
void render(QPainter & painter, const QRectF & paintRect);
|
||||
|
||||
const QString & lastError();
|
||||
bool hasErrors();
|
||||
|
33
common.pri
33
common.pri
@ -1,27 +1,27 @@
|
||||
CONFIG += build_translations
|
||||
CONFIG *= build_translations
|
||||
|
||||
!contains(CONFIG, no_zint){
|
||||
CONFIG += zint
|
||||
CONFIG *= zint
|
||||
}
|
||||
|
||||
!contains(CONFIG, qtscriptengine){
|
||||
CONFIG += qjsengine
|
||||
CONFIG *= qjsengine
|
||||
}
|
||||
|
||||
!contains(CONFIG, no_formdesigner){
|
||||
CONFIG += dialogdesigner
|
||||
CONFIG *= dialogdesigner
|
||||
}
|
||||
|
||||
ZINT_PATH = $$PWD/3rdparty/zint-2.6.1
|
||||
contains(CONFIG,zint){
|
||||
DEFINES += HAVE_ZINT
|
||||
DEFINES *= HAVE_ZINT
|
||||
}
|
||||
|
||||
greaterThan(QT_MAJOR_VERSION, 4) {
|
||||
QT += uitools
|
||||
QT *= uitools
|
||||
}
|
||||
lessThan(QT_MAJOR_VERSION, 5){
|
||||
CONFIG += uitools
|
||||
CONFIG *= uitools
|
||||
}
|
||||
|
||||
CONFIG(release, debug|release){
|
||||
@ -72,32 +72,31 @@ LIMEREPORT_VERSION_MAJOR = 1
|
||||
LIMEREPORT_VERSION_MINOR = 4
|
||||
LIMEREPORT_VERSION_RELEASE = 40
|
||||
|
||||
LIMEREPORT_VERSION = '\\"$${LIMEREPORT_VERSION_MAJOR}.$${LIMEREPORT_VERSION_MINOR}.$${LIMEREPORT_VERSION_RELEASE}\\"'
|
||||
DEFINES += LIMEREPORT_VERSION_STR=\"$${LIMEREPORT_VERSION}\"
|
||||
DEFINES += LIMEREPORT_VERSION=$${LIMEREPORT_VERSION}
|
||||
LIMEREPORT_VERSION = '$${LIMEREPORT_VERSION_MAJOR}.$${LIMEREPORT_VERSION_MINOR}.$${LIMEREPORT_VERSION_RELEASE}'
|
||||
DEFINES *= LIMEREPORT_VERSION_STR=\\\"$${LIMEREPORT_VERSION}\\\"
|
||||
|
||||
QT += script xml sql
|
||||
QT *= script xml sql
|
||||
REPORT_PATH = $$PWD/limereport
|
||||
TRANSLATIONS_PATH = $$PWD/translations
|
||||
|
||||
greaterThan(QT_MAJOR_VERSION, 4) {
|
||||
DEFINES+=HAVE_QT5
|
||||
QT+= printsupport widgets qml
|
||||
DEFINES *= HAVE_QT5
|
||||
QT *= printsupport widgets qml
|
||||
contains(QT,uitools){
|
||||
message(uitools)
|
||||
DEFINES += HAVE_UI_LOADER
|
||||
DEFINES *= HAVE_UI_LOADER
|
||||
}
|
||||
contains(CONFIG, qjsengine){
|
||||
message(qjsengine)
|
||||
DEFINES += USE_QJSENGINE
|
||||
DEFINES *= USE_QJSENGINE
|
||||
}
|
||||
}
|
||||
|
||||
lessThan(QT_MAJOR_VERSION, 5){
|
||||
DEFINES+=HAVE_QT4
|
||||
DEFINES *= HAVE_QT4
|
||||
CONFIG(uitools){
|
||||
message(uitools)
|
||||
DEFINES += HAVE_UI_LOADER
|
||||
DEFINES *= HAVE_UI_LOADER
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -99,7 +99,7 @@ void BarcodeItem::paint(QPainter *ppainter, const QStyleOptionGraphicsItem *opti
|
||||
break;
|
||||
}
|
||||
|
||||
bc.render(*ppainter,bcRect,Zint::QZint::KeepAspectRatio);
|
||||
bc.render(*ppainter,bcRect);
|
||||
ppainter->restore();
|
||||
ItemDesignIntf::paint(ppainter,option,widget);
|
||||
}
|
||||
|
@ -30,7 +30,6 @@
|
||||
#ifndef LRBARCODEITEM_H
|
||||
#define LRBARCODEITEM_H
|
||||
#include "lritemdesignintf.h"
|
||||
#include <qzint.h>
|
||||
|
||||
namespace LimeReport{
|
||||
|
||||
@ -184,7 +183,6 @@ public:
|
||||
void setInputMode(const InputMode &inputMode);
|
||||
|
||||
private:
|
||||
Zint::QZint m_bc;
|
||||
QString m_content;
|
||||
QString m_designTestValue;
|
||||
BarcodeType m_barcodeType;
|
||||
|
Loading…
Reference in New Issue
Block a user