0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-24 08:34:38 +03:00

Merge pull request #337 from darktorres/master

Some more small changes
This commit is contained in:
Alexander Arin 2021-08-19 02:28:10 +03:00 committed by GitHub
commit 09a31a96a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
184 changed files with 406 additions and 411 deletions

View File

@ -1,4 +1,4 @@
ZINT_PATH = $$PWD/zint-2.6.1/ ZINT_PATH = $$PWD/zint-2.6.1
ZINT_VERSION = 2.6.1 ZINT_VERSION = 2.6.1
INCLUDEPATH += $${ZINT_PATH}/backend $${ZINT_PATH}/backend_qt INCLUDEPATH += $${ZINT_PATH}/backend $${ZINT_PATH}/backend_qt
DEPENDPATH += $${ZINT_PATH}/backend $${ZINT_PATH}/backend_qt DEPENDPATH += $${ZINT_PATH}/backend $${ZINT_PATH}/backend_qt

View File

@ -1,13 +1,13 @@
DEFINES += NO_PNG DEFINES += NO_PNG
TEMPLATE = lib TEMPLATE = lib
contains(CONFIG, static_build){ CONFIG(static_build) {
message(Static Build) message(Static Build)
CONFIG += staticlib CONFIG += staticlib
DEFINES += QZINT_STATIC_BUILD DEFINES += QZINT_STATIC_BUILD
} }
!contains(CONFIG, staticlib){ !CONFIG(staticlib) {
CONFIG += dll CONFIG += dll
DEFINES += QZINT_LIBRARY DEFINES += QZINT_LIBRARY
} }

View File

@ -1,34 +1,44 @@
# uncomment to disable translations
#CONFIG += no_build_translations
# uncomment to disable zint
#CONFIG += no_zint
# uncomment to disable svg
#CONFIG += no_svg
# uncomment to enable easy_profiler
#CONFIG *= easy_profiler
isEmpty(BINARY_RESULT_DIR) { isEmpty(BINARY_RESULT_DIR) {
BINARY_RESULT_DIR = $${PWD} BINARY_RESULT_DIR = $${PWD}
} }
!contains(CONFIG, no_build_translations){ !CONFIG(no_build_translations) {
CONFIG += build_translations CONFIG *= build_translations
} }
#CONFIG *= easy_profiler
!contains(CONFIG, no_zint){ !CONFIG(no_zint) {
CONFIG *= zint CONFIG *= zint
} }
!contains(CONGIG, no_svg){ !CONFIG(no_svg) {
QT *= svg QT *= svg
CONFIG *= svg CONFIG *= svg
DEFINES += HAVE_SVG DEFINES *= HAVE_SVG
} }
INCLUDEPATH += $$PWD/3rdparty/easyprofiler/easy_profiler_core/include CONFIG(easy_profiler) {
DEPENDPATH += $$PWD/3rdparty/easyprofiler/easy_profiler_core/include
contains(CONFIG, easy_profiler){
message(EasyProfiler) message(EasyProfiler)
unix|win32: LIBS += -L$$PWD/3rdparty/easyprofiler/build/bin/ -leasy_profiler INCLUDEPATH *= $$PWD/3rdparty/easyprofiler/easy_profiler_core/include
DEPENDPATH *= $$PWD/3rdparty/easyprofiler/easy_profiler_core/include
unix|win32: LIBS *= -L$$PWD/3rdparty/easyprofiler/build/bin/ -leasy_profiler
greaterThan(QT_MAJOR_VERSION, 4) { greaterThan(QT_MAJOR_VERSION, 4) {
DEFINES += BUILD_WITH_EASY_PROFILER DEFINES *= BUILD_WITH_EASY_PROFILER
} }
} }
!contains(CONFIG, qtscriptengine){ !CONFIG(qtscriptengine) {
greaterThan(QT_MAJOR_VERSION, 4) { greaterThan(QT_MAJOR_VERSION, 4) {
greaterThan(QT_MINOR_VERSION, 5) { greaterThan(QT_MINOR_VERSION, 5) {
CONFIG *= qjsengine CONFIG *= qjsengine
@ -42,25 +52,25 @@ lessThan(QT_MAJOR_VERSION, 5){
} }
} }
contains(CONFIG, qtscriptengine){ CONFIG(qtscriptengine) {
CONFIG -= qjsengine CONFIG -= qjsengine
QT *= script QT *= script
DEFINES *= USE_QTSCRIPTENGINE DEFINES *= USE_QTSCRIPTENGINE
message(qtscriptengine) message(qtscriptengine)
} }
!contains(CONFIG, no_formdesigner){ !CONFIG(no_formdesigner) {
CONFIG *= dialogdesigner CONFIG *= dialogdesigner
} }
!contains(CONFIG, no_embedded_designer){ !CONFIG(no_embedded_designer) {
CONFIG *= embedded_designer CONFIG *= embedded_designer
DEFINES += HAVE_REPORT_DESIGNER DEFINES *= HAVE_REPORT_DESIGNER
message(embedded designer) message(embedded designer)
} }
ZINT_PATH = $$PWD/3rdparty/zint-2.6.1 ZINT_PATH = $$PWD/3rdparty/zint-2.6.1
contains(CONFIG,zint){ CONFIG(zint) {
DEFINES *= HAVE_ZINT DEFINES *= HAVE_ZINT
} }
@ -83,13 +93,16 @@ CONFIG(release, debug|release){
BUILD_DIR = $${BINARY_RESULT_DIR}/build/$${QT_VERSION} BUILD_DIR = $${BINARY_RESULT_DIR}/build/$${QT_VERSION}
DEST_INCLUDE_DIR = $$PWD/include DEST_INCLUDE_DIR = $$PWD/include
unix{ unix{
ARCH_DIR = $${OUT_PWD}/unix ARCH_DIR = $${OUT_PWD}/unix
ARCH_TYPE = unix ARCH_TYPE = unix
macx{ macx{
ARCH_DIR = $${OUT_PWD}/macx ARCH_DIR = $${OUT_PWD}/macx
ARCH_TYPE = macx ARCH_TYPE = macx
} }
linux{ linux{
!contains(QT_ARCH, x86_64) { !contains(QT_ARCH, x86_64) {
message("Compiling for 32bit system") message("Compiling for 32bit system")
@ -102,6 +115,7 @@ unix{
} }
} }
} }
win32 { win32 {
!contains(QT_ARCH, x86_64) { !contains(QT_ARCH, x86_64) {
message("Compiling for 32bit system") message("Compiling for 32bit system")
@ -143,7 +157,7 @@ greaterThan(QT_MAJOR_VERSION, 4) {
message(uitools) message(uitools)
DEFINES *= HAVE_UI_LOADER DEFINES *= HAVE_UI_LOADER
} }
contains(CONFIG, qjsengine){ CONFIG(qjsengine) {
message(qjsengine) message(qjsengine)
DEFINES *= USE_QJSENGINE DEFINES *= USE_QJSENGINE
QT *= qml QT *= qml

View File

@ -23,8 +23,8 @@ CONFIG(debug, debug|release) {
} else { } else {
LIBS += -llimereport LIBS += -llimereport
} }
!contains(CONFIG, static_build){
contains(CONFIG,zint){ !CONFIG(static_build) : CONFIG(zint) {
LIBS += -L$${DEST_LIBS} LIBS += -L$${DEST_LIBS}
CONFIG(debug, debug|release) { CONFIG(debug, debug|release) {
LIBS += -lQtZintd LIBS += -lQtZintd
@ -32,4 +32,3 @@ CONFIG(debug, debug|release) {
LIBS += -lQtZint LIBS += -lQtZint
} }
} }
}

View File

@ -67,8 +67,7 @@ CONFIG(debug, debug|release) {
} }
message($$LIBS) message($$LIBS)
!contains(CONFIG, static_build){ !CONFIG(static_build) : CONFIG(zint) {
contains(CONFIG,zint){
LIBS += -L$${DEST_LIBS} LIBS += -L$${DEST_LIBS}
CONFIG(debug, debug|release) { CONFIG(debug, debug|release) {
LIBS += -lQtZintd LIBS += -lQtZintd
@ -76,4 +75,3 @@ message($$LIBS)
LIBS += -lQtZint LIBS += -lQtZint
} }
} }
}

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -65,8 +65,7 @@ CONFIG(debug, debug|release) {
LIBS += -llimereport LIBS += -llimereport
} }
!contains(CONFIG, static_build){ !CONFIG(static_build) : CONFIG(zint) {
contains(CONFIG,zint){
LIBS += -L$${DEST_LIBS} LIBS += -L$${DEST_LIBS}
CONFIG(debug, debug|release) { CONFIG(debug, debug|release) {
LIBS += -lQtZintd LIBS += -lQtZintd
@ -74,4 +73,3 @@ CONFIG(debug, debug|release) {
LIBS += -lQtZint LIBS += -lQtZint
} }
} }
}

View File

@ -1,11 +1,12 @@
include(../common.pri) include(../common.pri)
QT += core gui QT += core gui
contains(CONFIG,release) { CONFIG(release) {
TARGET = LRDesigner TARGET = LRDesigner
} else { } else {
TARGET = LRDesignerd TARGET = LRDesignerd
} }
TEMPLATE = app TEMPLATE = app
HEADERS += \ HEADERS += \
@ -56,12 +57,10 @@ CONFIG(debug, debug|release) {
LIBS += -llimereport LIBS += -llimereport
} }
!contains(CONFIG, static_build){ !CONFIG(static_build) : CONFIG(zint) {
contains(CONFIG,zint){
CONFIG(debug, debug|release) { CONFIG(debug, debug|release) {
LIBS += -L$${DEST_LIBS} -lQtZintd LIBS += -L$${DEST_LIBS} -lQtZintd
} else { } else {
LIBS += -L$${DEST_LIBS} -lQtZint LIBS += -L$${DEST_LIBS} -lQtZint
} }
} }
}

View File

@ -4,7 +4,7 @@ include(../common.pri)
include(../limereport/limereport.pri) include(../limereport/limereport.pri)
include(../limereport/designer.pri) include(../limereport/designer.pri)
contains(CONFIG,release) { CONFIG(release) {
TARGET = designer_plugin TARGET = designer_plugin
} else { } else {
TARGET = designer_plugind TARGET = designer_plugind
@ -33,7 +33,7 @@ unix {
} }
contains(CONFIG,zint){ CONFIG(zint) {
message(zint) message(zint)
INCLUDEPATH += $$ZINT_PATH/backend $$ZINT_PATH/backend_qt INCLUDEPATH += $$ZINT_PATH/backend $$ZINT_PATH/backend_qt
DEPENDPATH += $$ZINT_PATH/backend $$ZINT_PATH/backend_qt DEPENDPATH += $$ZINT_PATH/backend $$ZINT_PATH/backend_qt

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,31 +1,23 @@
TEMPLATE = subdirs TEMPLATE = subdirs
!contains(CONFIG, no_zint){
CONFIG += zint
}
include(common.pri) include(common.pri)
contains(CONFIG, zint){
CONFIG += ordered
CONFIG(zint) {
SUBDIRS += 3rdparty SUBDIRS += 3rdparty
} }
export($$CONFIG)
CONFIG += ordered
SUBDIRS += \ SUBDIRS += \
limereport \ limereport \
demo_r1 \ demo_r1 \
demo_r2 \ demo_r2 \
designer designer
greaterThan(QT_MAJOR_VERSION, 4){ greaterThan(QT_MAJOR_VERSION, 4) : greaterThan(QT_MINOR_VERSION, 1) {
greaterThan(QT_MINOR_VERSION, 1){
SUBDIRS += console SUBDIRS += console
} }
}
!contains(CONFIG, embedded_designer){ !CONFIG(embedded_designer) : !CONFIG(static_build) {
!contains(CONFIG, static_build){
SUBDIRS += designer_plugin SUBDIRS += designer_plugin
} }
}

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,7 +1,8 @@
include(../common.pri) include(../common.pri)
DEFINES += HAVE_REPORT_DESIGNER DEFINES += HAVE_REPORT_DESIGNER
contains(CONFIG,dialogdesigner){ CONFIG(dialogdesigner) {
include($$REPORT_PATH/dialogdesigner/dialogdesigner.pri) include($$REPORT_PATH/dialogdesigner/dialogdesigner.pri)
} }
@ -51,7 +52,7 @@ SOURCES += \
$$REPORT_PATH/lrreportdesignwidget.cpp \ $$REPORT_PATH/lrreportdesignwidget.cpp \
$$REPORT_PATH/lrreportdesignwindow.cpp $$REPORT_PATH/lrreportdesignwindow.cpp
contains(CONFIG, svg){ CONFIG(svg) {
SOURCES += \ SOURCES += \
$$REPORT_PATH/objectinspector/editors/lrsvgeditor.cpp \ $$REPORT_PATH/objectinspector/editors/lrsvgeditor.cpp \
$$REPORT_PATH/objectinspector/propertyItems/lrsvgpropitem.cpp $$REPORT_PATH/objectinspector/propertyItems/lrsvgpropitem.cpp

View File

@ -1,20 +1,18 @@
include(../../common.pri) include(../../common.pri)
include($$PWD/3rdparty/qtcreator/designerintegrationv2/designerintegration.pri) include($$PWD/3rdparty/qtcreator/designerintegrationv2/designerintegration.pri)
INCLUDEPATH *= $$PWD/3rdparty/designer INCLUDEPATH *= $$PWD/3rdparty/designer
greaterThan(QT_MAJOR_VERSION, 4) {
contains(QT,uitools){ greaterThan(QT_MAJOR_VERSION, 4) : contains(QT, uitools) {
DEFINES += HAVE_QTDESIGNER_INTEGRATION DEFINES += HAVE_QTDESIGNER_INTEGRATION
} }
}
lessThan(QT_MAJOR_VERSION, 5){ lessThan(QT_MAJOR_VERSION, 5) : CONFIG(uitools) {
contains(CONFIG,uitools){
DEFINES += HAVE_QTDESIGNER_INTEGRATION DEFINES += HAVE_QTDESIGNER_INTEGRATION
} }
}
greaterThan(QT_MAJOR_VERSION, 4) { greaterThan(QT_MAJOR_VERSION, 4) {
QT *= designer designercomponents-private QT *= designer designercomponents-private
} else { } else {
CONFIG *= designer CONFIG *= designer
qtAddLibrary(QtDesignerComponents) qtAddLibrary(QtDesignerComponents)

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -76,16 +76,15 @@ SOURCES += \
$$REPORT_PATH/exporters/lrpdfexporter.cpp \ $$REPORT_PATH/exporters/lrpdfexporter.cpp \
$$REPORT_PATH/lrpreparedpages.cpp $$REPORT_PATH/lrpreparedpages.cpp
CONFIG(staticlib) {
contains(CONFIG, staticlib){
SOURCES += $$REPORT_PATH/lrfactoryinitializer.cpp SOURCES += $$REPORT_PATH/lrfactoryinitializer.cpp
} }
contains(CONFIG, zint){ CONFIG(zint) {
SOURCES += $$REPORT_PATH/items/lrbarcodeitem.cpp SOURCES += $$REPORT_PATH/items/lrbarcodeitem.cpp
} }
contains(CONFIG, svg){ CONFIG(svg) {
SOURCES += $$REPORT_PATH/items/lrsvgitem.cpp \ SOURCES += $$REPORT_PATH/items/lrsvgitem.cpp \
} }
@ -171,15 +170,15 @@ HEADERS += \
$$REPORT_PATH/lrpreparedpages.h \ $$REPORT_PATH/lrpreparedpages.h \
$$REPORT_PATH/lrpreparedpagesintf.h $$REPORT_PATH/lrpreparedpagesintf.h
contains(CONFIG, staticlib){ CONFIG(staticlib) {
HEADERS += $$REPORT_PATH/lrfactoryinitializer.h HEADERS += $$REPORT_PATH/lrfactoryinitializer.h
} }
contains(CONFIG,zint){ CONFIG(zint) {
HEADERS += $$REPORT_PATH/items/lrbarcodeitem.h HEADERS += $$REPORT_PATH/items/lrbarcodeitem.h
} }
contains(CONFIG, svg){ CONFIG(svg) {
HEADERS += $$REPORT_PATH/items/lrsvgitem.h HEADERS += $$REPORT_PATH/items/lrsvgitem.h
} }
@ -196,4 +195,3 @@ FORMS += \
RESOURCES += \ RESOURCES += \
$$REPORT_PATH/report.qrc \ $$REPORT_PATH/report.qrc \
$$REPORT_PATH/items/items.qrc $$REPORT_PATH/items/items.qrc

View File

@ -6,11 +6,11 @@ CONFIG(debug, debug|release){
TEMPLATE = lib TEMPLATE = lib
contains(CONFIG, static_build){ CONFIG(static_build) {
CONFIG += staticlib CONFIG += staticlib
} }
!contains(CONFIG, staticlib){ !CONFIG(staticlib) {
CONFIG += lib CONFIG += lib
CONFIG += dll CONFIG += dll
} }
@ -26,7 +26,7 @@ macx{
DEFINES += LIMEREPORT_EXPORTS DEFINES += LIMEREPORT_EXPORTS
contains(CONFIG, staticlib){ CONFIG(staticlib) {
DEFINES += HAVE_STATIC_BUILD DEFINES += HAVE_STATIC_BUILD
DEFINES += QZINT_STATIC_BUILD DEFINES += QZINT_STATIC_BUILD
message(STATIC_BUILD) message(STATIC_BUILD)
@ -85,7 +85,7 @@ win32 {
} }
} }
contains(CONFIG,zint){ CONFIG(zint) {
message(zint) message(zint)
INCLUDEPATH += $$ZINT_PATH/backend $$ZINT_PATH/backend_qt INCLUDEPATH += $$ZINT_PATH/backend $$ZINT_PATH/backend_qt
DEPENDPATH += $$ZINT_PATH/backend $$ZINT_PATH/backend_qt DEPENDPATH += $$ZINT_PATH/backend $$ZINT_PATH/backend_qt
@ -112,7 +112,7 @@ INSTALLS += target
####Automatically build required translation files (*.qm) ####Automatically build required translation files (*.qm)
contains(CONFIG,build_translations){ CONFIG(build_translations) {
LANGUAGES = ru es ar fr zh pl LANGUAGES = ru es ar fr zh pl
defineReplace(prependAll) { defineReplace(prependAll) {
@ -139,5 +139,3 @@ contains(CONFIG,build_translations){
} }
#### EN AUTOMATIC TRANSLATIONS #### EN AUTOMATIC TRANSLATIONS

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -42,7 +42,7 @@ p, li { white-space: pre-wrap; }
<p align="justify" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:11pt; text-decoration: underline; color:#0000ff;"><br /></p> <p align="justify" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:11pt; text-decoration: underline; color:#0000ff;"><br /></p>
<p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">This library 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.</span></p> <p align="justify" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">This library 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.</span></p>
<p align="justify" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt; font-weight:600; color:#000000;"><br /></p> <p align="justify" style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt; font-weight:600; color:#000000;"><br /></p>
&lt;p align=&quot;justify&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Copyright 2015 Arin Alexander. All rights reserved.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string> &lt;p align=&quot;justify&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Copyright 2021 Arin Alexander. All rights reserved.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property> </property>
</widget> </widget>
</item> </item>

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

View File

@ -1,6 +1,6 @@
/*************************************************************************** /***************************************************************************
* This file is part of the Lime Report project * * This file is part of the Lime Report project *
* Copyright (C) 2015 by Alexander Arin * * Copyright (C) 2021 by Alexander Arin *
* arin_a@bk.ru * * arin_a@bk.ru *
* * * *
** GNU General Public License Usage ** ** GNU General Public License Usage **

Some files were not shown because too many files have changed in this diff Show More