├── .appveyor.yml ├── .clang-format ├── .gitattributes ├── .github └── workflows │ └── cmake.yml ├── .gitignore ├── .idea ├── .gitignore ├── .name ├── LimeReport.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── .remarkrc ├── .travis.yml ├── 3rdparty ├── 3rdparty.pro ├── CMakeLists.txt ├── dark_style_sheet │ ├── COPYING │ ├── qdarkstyle │ │ ├── rc │ │ │ ├── Hmovetoolbar.png │ │ │ ├── Hsepartoolbar.png │ │ │ ├── Vmovetoolbar.png │ │ │ ├── Vsepartoolbar.png │ │ │ ├── branch_closed-on.png │ │ │ ├── branch_closed.png │ │ │ ├── branch_open-on.png │ │ │ ├── branch_open.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_checked_disabled.png │ │ │ ├── checkbox_checked_focus.png │ │ │ ├── checkbox_indeterminate.png │ │ │ ├── checkbox_indeterminate_disabled.png │ │ │ ├── checkbox_indeterminate_focus.png │ │ │ ├── checkbox_unchecked.png │ │ │ ├── checkbox_unchecked_disabled.png │ │ │ ├── checkbox_unchecked_focus.png │ │ │ ├── close-hover.png │ │ │ ├── close-pressed.png │ │ │ ├── close.png │ │ │ ├── down_arrow.png │ │ │ ├── down_arrow_disabled.png │ │ │ ├── extend.png │ │ │ ├── left_arrow.png │ │ │ ├── left_arrow_disabled.png │ │ │ ├── radio_checked.png │ │ │ ├── radio_checked_disabled.png │ │ │ ├── radio_checked_focus.png │ │ │ ├── radio_unchecked.png │ │ │ ├── radio_unchecked_disabled.png │ │ │ ├── radio_unchecked_focus.png │ │ │ ├── right_arrow.png │ │ │ ├── right_arrow_disabled.png │ │ │ ├── sizegrip.png │ │ │ ├── stylesheet-branch-end.png │ │ │ ├── stylesheet-branch-more.png │ │ │ ├── stylesheet-vline.png │ │ │ ├── transparent.png │ │ │ ├── undock-hover.png │ │ │ ├── undock.png │ │ │ ├── up_arrow.png │ │ │ └── up_arrow_disabled.png │ │ ├── style.qrc │ │ └── style.qss │ └── svg │ │ ├── checkbox_checked.svg │ │ ├── checkbox_checked_disabled.svg │ │ ├── checkbox_checked_focus.svg │ │ ├── checkbox_indeterminate.svg │ │ ├── checkbox_indeterminate_disabled.svg │ │ ├── checkbox_indeterminate_focus.svg │ │ ├── checkbox_unchecked.svg │ │ ├── checkbox_unchecked_disabled.svg │ │ ├── checkbox_unchecked_focus.svg │ │ ├── radio_checked.svg │ │ ├── radio_checked_disabled.svg │ │ ├── radio_checked_focus.svg │ │ ├── radio_unchecked.svg │ │ ├── radio_unchecked_disabled.svg │ │ └── radio_unchecked_focus.svg ├── easyprofiler │ ├── .gitignore │ ├── CMakeCache.txt │ ├── CMakeFiles │ │ ├── 3.5.1 │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ ├── CMakeSystem.cmake │ │ │ └── CompilerIdCXX │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ └── a.out │ │ ├── CMakeDirectoryInformation.cmake │ │ ├── CMakeOutput.log │ │ ├── CMakeRuleHashes.txt │ │ ├── TargetDirectories.txt │ │ ├── cmake.check_cache │ │ ├── feature_tests.bin │ │ ├── feature_tests.cxx │ │ └── progress.marks │ ├── CMakeLists.txt │ ├── LICENSE.APACHE │ ├── LICENSE.MIT │ ├── README.md │ ├── appveyor.bat │ ├── appveyor.yml │ ├── cmake_install.cmake │ ├── easy_profiler_core │ │ ├── CMakeFiles │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── Export │ │ │ │ └── lib │ │ │ │ │ └── cmake │ │ │ │ │ └── easy_profiler │ │ │ │ │ ├── easy_profilerTargets-release.cmake │ │ │ │ │ └── easy_profilerTargets.cmake │ │ │ ├── easy_profiler.dir │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ │ └── progress.marks │ │ ├── CMakeLists.txt │ │ ├── LICENSE.APACHE │ │ ├── LICENSE.MIT │ │ ├── block.cpp │ │ ├── chunk_allocator.h │ │ ├── cmake │ │ │ └── config.cmake.in │ │ ├── cmake_install.cmake │ │ ├── current_thread.h │ │ ├── current_time.h │ │ ├── easy_socket.cpp │ │ ├── event_trace_status.h │ │ ├── event_trace_win.cpp │ │ ├── event_trace_win.h │ │ ├── generated │ │ │ ├── easy_profilerConfig.cmake │ │ │ └── easy_profilerConfigVersion.cmake │ │ ├── hashed_cstr.h │ │ ├── include │ │ │ └── easy │ │ │ │ ├── arbitrary_value.h │ │ │ │ ├── details │ │ │ │ ├── arbitrary_value_aux.h │ │ │ │ ├── arbitrary_value_public_types.h │ │ │ │ ├── easy_compiler_support.h │ │ │ │ ├── profiler_aux.h │ │ │ │ ├── profiler_colors.h │ │ │ │ └── profiler_public_types.h │ │ │ │ ├── easy_net.h │ │ │ │ ├── easy_socket.h │ │ │ │ ├── profiler.h │ │ │ │ ├── reader.h │ │ │ │ ├── serialized_block.h │ │ │ │ └── utility.h │ │ ├── nonscoped_block.cpp │ │ ├── nonscoped_block.h │ │ ├── outstream.h │ │ ├── profile_manager.cpp │ │ ├── profile_manager.h │ │ ├── reader.cpp │ │ ├── resources.rc │ │ ├── spin_lock.h │ │ ├── stack_buffer.h │ │ ├── thread_storage.cpp │ │ └── thread_storage.h │ ├── profiler_gui │ │ ├── CMakeFiles │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── profiler_gui.dir │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ │ ├── profiler_gui_automoc.dir │ │ │ │ ├── AutogenInfo.cmake │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ └── progress.make │ │ │ └── progress.marks │ │ ├── CMakeLists.txt │ │ ├── arbitrary_value_inspector.cpp │ │ ├── arbitrary_value_inspector.h │ │ ├── blocks_graphics_view.cpp │ │ ├── blocks_graphics_view.h │ │ ├── blocks_tree_widget.cpp │ │ ├── blocks_tree_widget.h │ │ ├── cmake_install.cmake │ │ ├── common_functions.cpp │ │ ├── common_functions.h │ │ ├── common_types.h │ │ ├── descriptors_tree_widget.cpp │ │ ├── descriptors_tree_widget.h │ │ ├── easy_chronometer_item.cpp │ │ ├── easy_chronometer_item.h │ │ ├── easy_frame_rate_viewer.cpp │ │ ├── easy_frame_rate_viewer.h │ │ ├── easy_graphics_item.cpp │ │ ├── easy_graphics_item.h │ │ ├── easy_graphics_scrollbar.cpp │ │ ├── easy_graphics_scrollbar.h │ │ ├── easy_qtimer.cpp │ │ ├── easy_qtimer.h │ │ ├── globals.cpp │ │ ├── globals.h │ │ ├── globals_qobjects.cpp │ │ ├── globals_qobjects.h │ │ ├── images │ │ │ ├── attribution.txt │ │ │ ├── default │ │ │ │ ├── arrow-down-disabled.svg │ │ │ │ ├── arrow-down-hover.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up-disabled.svg │ │ │ │ ├── arrow-up-hover.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── check-disabled.svg │ │ │ │ ├── check.svg │ │ │ │ ├── close-white-hover.svg │ │ │ │ ├── close-white-pressed.svg │ │ │ │ ├── close-white.svg │ │ │ │ ├── collapse.svg │ │ │ │ ├── colors-black.svg │ │ │ │ ├── colors.svg │ │ │ │ ├── delete-old.svg │ │ │ │ ├── delete.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── lan.svg │ │ │ │ ├── lan_on.svg │ │ │ │ ├── list.svg │ │ │ │ ├── maximize-white-hover.svg │ │ │ │ ├── maximize-white-pressed.svg │ │ │ │ ├── maximize-white.svg │ │ │ │ ├── minimize-white-hover.svg │ │ │ │ ├── minimize-white-pressed.svg │ │ │ │ ├── minimize-white.svg │ │ │ │ ├── off.svg │ │ │ │ ├── open-folder.svg │ │ │ │ ├── open-folder2.svg │ │ │ │ ├── play.svg │ │ │ │ ├── radio-indicator-disabled.svg │ │ │ │ ├── radio-indicator.svg │ │ │ │ ├── reload-folder2.svg │ │ │ │ ├── reload.svg │ │ │ │ ├── save.svg │ │ │ │ ├── search-next.svg │ │ │ │ ├── search-prev.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── statistics.svg │ │ │ │ ├── statistics2.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── wifi.svg │ │ │ │ └── wifi_on.svg │ │ │ ├── logo.ico │ │ │ └── logo.svg │ │ ├── main.cpp │ │ ├── main_window.cpp │ │ ├── main_window.h │ │ ├── resources.qrc │ │ ├── resources.rc │ │ ├── themes │ │ │ ├── default.css │ │ │ └── default.scss │ │ ├── tree_widget_item.cpp │ │ ├── tree_widget_item.h │ │ ├── tree_widget_loader.cpp │ │ ├── tree_widget_loader.h │ │ ├── treeview_first_column_delegate.cpp │ │ └── treeview_first_column_delegate.h │ ├── reader │ │ ├── CMakeFiles │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── profiler_reader.dir │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ │ └── progress.marks │ │ ├── CMakeLists.txt │ │ ├── cmake_install.cmake │ │ └── main.cpp │ ├── sample │ │ ├── CMakeFiles │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── profiler_sample.dir │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ │ ├── profiler_sample_disabled_profiler.dir │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ │ └── progress.marks │ │ ├── CMakeLists.txt │ │ ├── build_express_test.sh │ │ ├── cmake_install.cmake │ │ ├── express_sample.cpp │ │ ├── main.cpp │ │ └── main_clock.cpp │ └── scripts │ │ ├── context_switch_logger.stp │ │ ├── make_style.sh │ │ └── test.sh ├── light_style_sheet │ ├── COPYING │ ├── qlightstyle │ │ ├── lightstyle.qrc │ │ ├── lightstyle.qss │ │ └── rc │ │ │ ├── Hmovetoolbar.png │ │ │ ├── Hsepartoolbar.png │ │ │ ├── Vmovetoolbar.png │ │ │ ├── Vsepartoolbar.png │ │ │ ├── branch_closed-on.png │ │ │ ├── branch_closed.png │ │ │ ├── branch_open-on.png │ │ │ ├── branch_open.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_checked_disabled.png │ │ │ ├── checkbox_checked_focus.png │ │ │ ├── checkbox_indeterminate.png │ │ │ ├── checkbox_indeterminate_disabled.png │ │ │ ├── checkbox_indeterminate_focus.png │ │ │ ├── checkbox_unchecked.png │ │ │ ├── checkbox_unchecked_disabled.png │ │ │ ├── checkbox_unchecked_focus.png │ │ │ ├── cloce.png │ │ │ ├── close-hover.png │ │ │ ├── close-pressed.png │ │ │ ├── close.png │ │ │ ├── down_arrow.png │ │ │ ├── down_arrow_disabled.png │ │ │ ├── extend.png │ │ │ ├── left_arrow.png │ │ │ ├── left_arrow_disabled.png │ │ │ ├── radio_checked.png │ │ │ ├── radio_checked_disabled.png │ │ │ ├── radio_checked_focus.png │ │ │ ├── radio_unchecked.png │ │ │ ├── radio_unchecked_disabled.png │ │ │ ├── radio_unchecked_focus.png │ │ │ ├── right_arrow.png │ │ │ ├── right_arrow_disabled.png │ │ │ ├── sizegrip.png │ │ │ ├── stylesheet-branch-end.png │ │ │ ├── stylesheet-branch-more.png │ │ │ ├── stylesheet-vline.png │ │ │ ├── transparent.png │ │ │ ├── undock-hover.png │ │ │ ├── undock.png │ │ │ ├── up_arrow.png │ │ │ └── up_arrow_disabled.png │ └── svg │ │ ├── checkbox_checked.svg │ │ ├── checkbox_checked_disabled.svg │ │ ├── checkbox_checked_focus.svg │ │ ├── checkbox_indeterminate.svg │ │ ├── checkbox_indeterminate_disabled.svg │ │ ├── checkbox_indeterminate_focus.svg │ │ ├── checkbox_unchecked.svg │ │ ├── checkbox_unchecked_disabled.svg │ │ ├── checkbox_unchecked_focus.svg │ │ ├── radio_checked.svg │ │ ├── radio_checked_disabled.svg │ │ ├── radio_checked_focus.svg │ │ ├── radio_unchecked.svg │ │ ├── radio_unchecked_disabled.svg │ │ └── radio_unchecked_focus.svg ├── zint-2.10.0-src.tar.gz └── zint-2.10.0 │ ├── .editorconfig │ ├── .gitignore │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── README │ ├── SetPaths.cmake │ ├── TODO │ ├── backend │ ├── 2of5.c │ ├── CMakeLists.txt │ ├── DEVELOPER │ ├── LICENSE │ ├── auspost.c │ ├── aztec.c │ ├── aztec.h │ ├── big5.h │ ├── bmp.c │ ├── bmp.h │ ├── channel_precalcs.h │ ├── codablock.c │ ├── code.c │ ├── code1.c │ ├── code1.h │ ├── code128.c │ ├── code128.h │ ├── code16k.c │ ├── code49.c │ ├── code49.h │ ├── common.c │ ├── common.h │ ├── composite.c │ ├── composite.h │ ├── dllversion.c │ ├── dmatrix.c │ ├── dmatrix.h │ ├── dotcode.c │ ├── eci.c │ ├── eci.h │ ├── eci_sb.h │ ├── emf.c │ ├── emf.h │ ├── font.h │ ├── fonts │ │ ├── OCRB-16.bdf │ │ └── OCRB-18.bdf │ ├── gb18030.c │ ├── gb18030.h │ ├── gb2312.c │ ├── gb2312.h │ ├── general_field.c │ ├── general_field.h │ ├── gif.c │ ├── gridmtx.c │ ├── gridmtx.h │ ├── gs1.c │ ├── gs1.h │ ├── gs1_lint.h │ ├── hanxin.c │ ├── hanxin.h │ ├── imail.c │ ├── iso3166.h │ ├── iso4217.h │ ├── ksx1001.h │ ├── large.c │ ├── large.h │ ├── library.c │ ├── libzint.rc │ ├── mailmark.c │ ├── maxicode.c │ ├── maxicode.h │ ├── medical.c │ ├── ms_stdint.h │ ├── output.c │ ├── output.h │ ├── pcx.c │ ├── pcx.h │ ├── pdf417.c │ ├── pdf417.h │ ├── plessey.c │ ├── png.c │ ├── postal.c │ ├── ps.c │ ├── qr.c │ ├── qr.h │ ├── raster.c │ ├── reedsol.c │ ├── reedsol.h │ ├── reedsol_logs.h │ ├── rss.c │ ├── rss.h │ ├── sjis.c │ ├── sjis.h │ ├── stdint_msvc.h │ ├── svg.c │ ├── telepen.c │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── cmake │ │ │ └── Modules │ │ │ │ └── FindLibZint.cmake │ │ ├── data │ │ │ ├── bmp │ │ │ │ ├── pdf417_fg_bg.bmp │ │ │ │ ├── pdf417comp_hvwsp2.bmp │ │ │ │ ├── ultracode_fg_bg.bmp │ │ │ │ └── ultracode_fg_bg_hvwsp1_box1.bmp │ │ │ ├── emf │ │ │ │ ├── code128_egrave_bold.emf │ │ │ │ ├── code39_rotate_180.emf │ │ │ │ ├── code39_rotate_270.emf │ │ │ │ ├── code39_rotate_90.emf │ │ │ │ ├── ean13_5addon_#185.emf │ │ │ │ ├── ean13_5addon_ggs_5.2.2.5.2-2.emf │ │ │ │ ├── itf14_bold.emf │ │ │ │ ├── maxicode_#185.emf │ │ │ │ ├── maxicode_rotate_90_nobg.emf │ │ │ │ ├── telenum_fg_bg.emf │ │ │ │ ├── ultracode_fg_bg.emf │ │ │ │ ├── ultracode_fg_bg_box2.emf │ │ │ │ ├── upca_2addon_ggs_5.2.6.6-5.emf │ │ │ │ ├── upce_2addon.emf │ │ │ │ └── upce_2addon_small_bold.emf │ │ │ ├── eps │ │ │ │ ├── code128_egrave_bold.eps │ │ │ │ ├── code128_egrave_bold_rotate_90.eps │ │ │ │ ├── code128_escape_latin1.eps │ │ │ │ ├── code39_fg_bg.eps │ │ │ │ ├── code39_fgalpha_bg_cmyk.eps │ │ │ │ ├── dbar_ltd_24724_fig7_bold.eps │ │ │ │ ├── dotcode_1.0.eps │ │ │ │ ├── dotcode_1.0_ds0.1.eps │ │ │ │ ├── dotcode_1.0_ds1.1.eps │ │ │ │ ├── dotcode_1.5.eps │ │ │ │ ├── dotcode_1.5_ds0.4.eps │ │ │ │ ├── dotcode_1.5_ds1.1.eps │ │ │ │ ├── dotcode_1.5_ds2.1.eps │ │ │ │ ├── dotcode_2.0.eps │ │ │ │ ├── dotcode_2.0_ds0.9.eps │ │ │ │ ├── dotcode_2.0_ds1.1.eps │ │ │ │ ├── dotcode_3.0.eps │ │ │ │ ├── dotcode_3.0_ds0.4.eps │ │ │ │ ├── dotcode_3.0_ds1.1.eps │ │ │ │ ├── dotcode_3.5.eps │ │ │ │ ├── dotcode_3.5_ds0.4.eps │ │ │ │ ├── dotcode_3.5_ds1.1.eps │ │ │ │ ├── dotcode_5.0.eps │ │ │ │ ├── dotcode_5.0_ds0.2.eps │ │ │ │ ├── dotcode_5.0_ds1.1.eps │ │ │ │ ├── dotcode_5.0_ds1.7.eps │ │ │ │ ├── dotcode_no_bg.eps │ │ │ │ ├── ean13_2addon_ggs_5.2.2.5.1-2.eps │ │ │ │ ├── maxicode_no_bg_hwsp3_rotate_180.eps │ │ │ │ ├── maxicode_rotate_270_cmyk.eps │ │ │ │ ├── ultra_fg_bg.eps │ │ │ │ ├── ultra_fg_bg_box.eps │ │ │ │ ├── ultra_fg_bg_box_cmyk.eps │ │ │ │ ├── upca_2addon_ggs_5.2.6.6-5.eps │ │ │ │ ├── upce_5addon.eps │ │ │ │ └── upce_5addon_small_bold.eps │ │ │ ├── gif │ │ │ │ ├── dotcode_1.0.gif │ │ │ │ ├── dotcode_1.0_ds0.1.gif │ │ │ │ ├── dotcode_1.0_ds1.1.gif │ │ │ │ ├── dotcode_1.5.gif │ │ │ │ ├── dotcode_1.5_ds0.4.gif │ │ │ │ ├── dotcode_1.5_ds1.1.gif │ │ │ │ ├── dotcode_1.5_ds2.1.gif │ │ │ │ ├── dotcode_2.0.gif │ │ │ │ ├── dotcode_2.0_ds0.9.gif │ │ │ │ ├── dotcode_2.0_ds1.1.gif │ │ │ │ ├── dotcode_3.0.gif │ │ │ │ ├── dotcode_3.0_ds0.4.gif │ │ │ │ ├── dotcode_3.0_ds1.1.gif │ │ │ │ ├── dotcode_3.5.gif │ │ │ │ ├── dotcode_3.5_ds0.4.gif │ │ │ │ ├── dotcode_3.5_ds1.1.gif │ │ │ │ ├── dotcode_5.0.gif │ │ │ │ ├── dotcode_5.0_ds0.2.gif │ │ │ │ ├── dotcode_5.0_ds1.1.gif │ │ │ │ ├── dotcode_5.0_ds1.7.gif │ │ │ │ ├── dotcode_bgfgalpha.gif │ │ │ │ ├── dotcode_bgfgtrans.gif │ │ │ │ └── ultra_fgbg_hvwsp1_box1.gif │ │ │ ├── imail │ │ │ │ └── usps │ │ │ │ │ └── uspsIMbEncoderTestCases.csv │ │ │ ├── pcx │ │ │ │ ├── codeblockf_reverse.pcx │ │ │ │ ├── gridmatrix_fg_0.75.pcx │ │ │ │ ├── qr_bg.pcx │ │ │ │ └── ultra_fg_bg_hvwsp1_box1.pcx │ │ │ ├── png │ │ │ │ ├── aztec.png │ │ │ │ ├── codablockf_3rows.png │ │ │ │ ├── codablockf_hvwsp2.png │ │ │ │ ├── codablockf_hvwsp2_box2.png │ │ │ │ ├── code128_egrave_bold.png │ │ │ │ ├── code128_egrave_bold_box3.png │ │ │ │ ├── code128_egrave_bold_hvwsp2_box2.png │ │ │ │ ├── code39_small.png │ │ │ │ ├── datamatrix_2.0_bind1_dotty.png │ │ │ │ ├── datamatrix_2.0_hvwsp1_bind1_dotty.png │ │ │ │ ├── dbar_ltd.png │ │ │ │ ├── ean13_2addon_ggs_5.2.2.5.1-2.png │ │ │ │ ├── ean13_5addon_ggs_5.2.2.5.2-2.png │ │ │ │ ├── ean13_cc_2addon_cca_4x4.png │ │ │ │ ├── ean13_cc_5addon_ccb_3x4.png │ │ │ │ ├── ean13_cc_5addon_ccb_3x4_notext.png │ │ │ │ ├── ean2.png │ │ │ │ ├── ean5.png │ │ │ │ ├── ean8_2addon.png │ │ │ │ ├── ean8_5addon.png │ │ │ │ ├── ean8_cc_2addon_cca_4x3.png │ │ │ │ ├── ean8_cc_5addon_ccb_8x3.png │ │ │ │ ├── gs1_128_cc_fig12.png │ │ │ │ ├── imail_height7.75.png │ │ │ │ ├── maxicode_0.5.png │ │ │ │ ├── maxicode_0.7_wsp3_box1.png │ │ │ │ ├── maxicode_1.4_bgfgalpha.png │ │ │ │ ├── maxicode_2.1.png │ │ │ │ ├── maxicode_hvwsp1_box2.png │ │ │ │ ├── maxicode_vwsp1_bind1.png │ │ │ │ ├── pdf417_bgalpha.png │ │ │ │ ├── pdf417_bgfgalpha.png │ │ │ │ ├── pdf417_fgalpha.png │ │ │ │ ├── pdf417_height5.png │ │ │ │ ├── postnet_zip.png │ │ │ │ ├── ultra_bgalpha.png │ │ │ │ ├── ultra_bgfgalpha.png │ │ │ │ ├── ultra_fgalpha.png │ │ │ │ ├── ultra_fgalpha_hvwsp1_box1.png │ │ │ │ ├── ultra_fgalpha_nobg.png │ │ │ │ ├── ultra_hvwsp1_box1.png │ │ │ │ ├── ultra_odd.png │ │ │ │ ├── upca_2addon_ggs_5.2.6.6-5.png │ │ │ │ ├── upca_5addon.png │ │ │ │ ├── upca_5addon_bind3.png │ │ │ │ ├── upca_5addon_notext.png │ │ │ │ ├── upca_cc_2addon_cca_3x4.png │ │ │ │ ├── upca_cc_5addon_ccb_4x4.png │ │ │ │ ├── upca_cc_5addon_ccb_4x4_bind3.png │ │ │ │ ├── upca_cc_5addon_ccb_4x4_notext.png │ │ │ │ ├── upce_2addon.png │ │ │ │ ├── upce_5addon.png │ │ │ │ ├── upce_5addon_small.png │ │ │ │ ├── upce_cc_2addon_cca_5x2.png │ │ │ │ ├── upce_cc_5addon_ccb_8x2.png │ │ │ │ └── upce_cc_5addon_ccb_8x2_notext.png │ │ │ ├── print │ │ │ │ ├── bmp │ │ │ │ │ ├── code128_aim.bmp │ │ │ │ │ ├── dotcode_aim_fig7.bmp │ │ │ │ │ ├── maxicode_fig_2.bmp │ │ │ │ │ ├── qr_v1_m.bmp │ │ │ │ │ └── ultracode_a.bmp │ │ │ │ ├── emf │ │ │ │ │ ├── code128_aim.emf │ │ │ │ │ ├── dotcode_aim_fig7.emf │ │ │ │ │ ├── maxicode_fig_2.emf │ │ │ │ │ ├── qr_v1_m.emf │ │ │ │ │ └── ultracode_a.emf │ │ │ │ ├── eps │ │ │ │ │ ├── code128_aim.eps │ │ │ │ │ ├── dotcode_aim_fig7.eps │ │ │ │ │ ├── maxicode_fig_2.eps │ │ │ │ │ ├── qr_v1_m.eps │ │ │ │ │ └── ultracode_a.eps │ │ │ │ ├── gif │ │ │ │ │ ├── code128_aim.gif │ │ │ │ │ ├── dotcode_aim_fig7.gif │ │ │ │ │ ├── maxicode_fig_2.gif │ │ │ │ │ ├── qr_v1_m.gif │ │ │ │ │ └── ultracode_a.gif │ │ │ │ ├── pcx │ │ │ │ │ ├── code128_aim.pcx │ │ │ │ │ ├── dotcode_aim_fig7.pcx │ │ │ │ │ ├── maxicode_fig_2.pcx │ │ │ │ │ ├── qr_v1_m.pcx │ │ │ │ │ └── ultracode_a.pcx │ │ │ │ ├── png │ │ │ │ │ ├── code128_aim.png │ │ │ │ │ ├── dotcode_aim_fig7.png │ │ │ │ │ ├── maxicode_fig_2.png │ │ │ │ │ ├── qr_v1_m.png │ │ │ │ │ └── ultracode_a.png │ │ │ │ ├── svg │ │ │ │ │ ├── code128_aim.svg │ │ │ │ │ ├── dotcode_aim_fig7.svg │ │ │ │ │ ├── maxicode_fig_2.svg │ │ │ │ │ ├── qr_v1_m.svg │ │ │ │ │ └── ultracode_a.svg │ │ │ │ ├── tif │ │ │ │ │ ├── code128_aim.tif │ │ │ │ │ ├── dotcode_aim_fig7.tif │ │ │ │ │ ├── maxicode_fig_2.tif │ │ │ │ │ ├── qr_v1_m.tif │ │ │ │ │ └── ultracode_a.tif │ │ │ │ └── txt │ │ │ │ │ ├── code128_aim.txt │ │ │ │ │ ├── dotcode_aim_fig7.txt │ │ │ │ │ ├── maxicode_fig_2.txt │ │ │ │ │ ├── qr_v1_m.txt │ │ │ │ │ └── ultracode_a.txt │ │ │ ├── qr │ │ │ │ └── okapi │ │ │ │ │ ├── version-01.png │ │ │ │ │ ├── version-02.png │ │ │ │ │ └── version-10.png │ │ │ ├── svg │ │ │ │ ├── codablockf_3rows.svg │ │ │ │ ├── codablockf_hvwsp2.svg │ │ │ │ ├── codablockf_hvwsp2_box2.svg │ │ │ │ ├── code128_amperands.svg │ │ │ │ ├── code128_egrave_bold.svg │ │ │ │ ├── code128_egrave_bold_box3.svg │ │ │ │ ├── code128_egrave_bold_hvwsp2_box2.svg │ │ │ │ ├── code128_egrave_bold_hvwsp3.svg │ │ │ │ ├── code39_small.svg │ │ │ │ ├── datamatrix_hvwsp1_bind1_dotty.svg │ │ │ │ ├── datamatrix_vwsp1_bind1_dotty.svg │ │ │ │ ├── dbar_ltd.svg │ │ │ │ ├── ean13_2addon_ggs_5.2.2.5.1-2.svg │ │ │ │ ├── ean13_5addon_ggs_5.2.2.5.2-2.svg │ │ │ │ ├── ean13_cc_2addon_cca_4x4.svg │ │ │ │ ├── ean13_cc_5addon_ccb_3x4.svg │ │ │ │ ├── ean13_cc_5addon_ccb_3x4_notext.svg │ │ │ │ ├── ean2.svg │ │ │ │ ├── ean5.svg │ │ │ │ ├── ean8_2addon.svg │ │ │ │ ├── ean8_5addon.svg │ │ │ │ ├── ean8_cc_2addon_cca_4x3.svg │ │ │ │ ├── ean8_cc_5addon_ccb_8x3.svg │ │ │ │ ├── gs1_128_cc_fig12.svg │ │ │ │ ├── imail_height7.75.svg │ │ │ │ ├── maxicode_box2.svg │ │ │ │ ├── maxicode_fgbg_rotate_90.svg │ │ │ │ ├── maxicode_vwsp1_bind1.svg │ │ │ │ ├── pdf417_height5.svg │ │ │ │ ├── postnet_zip.svg │ │ │ │ ├── telepen_height0.4_rotate_180.svg │ │ │ │ ├── ultra_fgbg_hvwsp2_box3.svg │ │ │ │ ├── upca_2addon_ggs_5.2.6.6-5.svg │ │ │ │ ├── upca_5addon.svg │ │ │ │ ├── upca_5addon_bind3.svg │ │ │ │ ├── upca_5addon_small_bold.svg │ │ │ │ ├── upca_cc_2addon_cca_3x4.svg │ │ │ │ ├── upca_cc_5addon_ccb_4x4.svg │ │ │ │ ├── upca_cc_5addon_ccb_4x4_bind3.svg │ │ │ │ ├── upca_cc_5addon_ccb_4x4_notext.svg │ │ │ │ ├── upce_2addon.svg │ │ │ │ ├── upce_5addon.svg │ │ │ │ ├── upce_5addon_notext.svg │ │ │ │ ├── upce_5addon_small.svg │ │ │ │ ├── upce_cc_2addon_cca_5x2.svg │ │ │ │ ├── upce_cc_2addon_cca_5x2_fgbgalpha.svg │ │ │ │ ├── upce_cc_2addon_cca_5x2_nobg.svg │ │ │ │ ├── upce_cc_2addon_cca_5x2_rotate_270.svg │ │ │ │ ├── upce_cc_5addon_ccb_8x2.svg │ │ │ │ └── upce_cc_5addon_ccb_8x2_notext.svg │ │ │ └── tif │ │ │ │ ├── aztec_v32_fg.tif │ │ │ │ ├── code128_bgalpha.tif │ │ │ │ ├── code128_cmyk.tif │ │ │ │ ├── code128_cmyk_fgbg.tif │ │ │ │ ├── code128_cmyk_fgbgalpha.tif │ │ │ │ ├── code128_fgalpha.tif │ │ │ │ ├── code128_fgbg.tif │ │ │ │ ├── code128_fgbgalpha.tif │ │ │ │ ├── code128_reverse.tif │ │ │ │ ├── daft_height1_scale0.5.tif │ │ │ │ ├── daft_height8_scale0.5.tif │ │ │ │ ├── hanxin_v84_l4_scale2.tif │ │ │ │ ├── ultra_bgalpha.tif │ │ │ │ ├── ultra_bgalpha_nofg.tif │ │ │ │ ├── ultra_cmyk.tif │ │ │ │ ├── ultra_cmyk_bgalpha.tif │ │ │ │ ├── ultra_fgalpha.tif │ │ │ │ ├── ultra_fgalpha_nobg.tif │ │ │ │ ├── ultra_fgbg_hvwsp1_box1.tif │ │ │ │ ├── ultra_fgbgalpha.tif │ │ │ │ └── ultra_odd.tif │ │ ├── test_2of5.c │ │ ├── test_auspost.c │ │ ├── test_aztec.c │ │ ├── test_big5.c │ │ ├── test_big5_tab.h │ │ ├── test_bmp.c │ │ ├── test_channel.c │ │ ├── test_codablock.c │ │ ├── test_code.c │ │ ├── test_code1.c │ │ ├── test_code128.c │ │ ├── test_code16k.c │ │ ├── test_code49.c │ │ ├── test_common.c │ │ ├── test_composite.c │ │ ├── test_dmatrix.c │ │ ├── test_dotcode.c │ │ ├── test_eci.c │ │ ├── test_emf.c │ │ ├── test_gb18030.c │ │ ├── test_gb18030_tab.h │ │ ├── test_gb2312.c │ │ ├── test_gb2312_tab.h │ │ ├── test_gif.c │ │ ├── test_gridmtx.c │ │ ├── test_gs1.c │ │ ├── test_hanxin.c │ │ ├── test_imail.c │ │ ├── test_iso3166.c │ │ ├── test_iso4217.c │ │ ├── test_ksx1001.c │ │ ├── test_ksx1001_tab.h │ │ ├── test_large.c │ │ ├── test_library.c │ │ ├── test_mailmark.c │ │ ├── test_maxicode.c │ │ ├── test_medical.c │ │ ├── test_pcx.c │ │ ├── test_pdf417.c │ │ ├── test_plessey.c │ │ ├── test_png.c │ │ ├── test_postal.c │ │ ├── test_print.c │ │ ├── test_ps.c │ │ ├── test_qr.c │ │ ├── test_raster.c │ │ ├── test_reedsol.c │ │ ├── test_rss.c │ │ ├── test_sjis.c │ │ ├── test_sjis_tab.h │ │ ├── test_svg.c │ │ ├── test_telepen.c │ │ ├── test_tif.c │ │ ├── test_ultra.c │ │ ├── test_upcean.c │ │ ├── test_vector.c │ │ ├── testcommon.c │ │ ├── testcommon.h │ │ └── tools │ │ │ ├── bwipp_dump-barcode.ps.diff │ │ │ ├── bwipp_dump.ps.tar.xz │ │ │ ├── data │ │ │ ├── BIG5.TXT │ │ │ ├── GB18030.TXT.README │ │ │ ├── GB2312.TXT │ │ │ ├── KSX1001.TXT │ │ │ └── SHIFTJIS.TXT │ │ │ ├── gen_test_tab.php │ │ │ └── run_bwipp_tests.sh │ ├── tif.c │ ├── tif.h │ ├── tif_lzw.h │ ├── tools │ │ ├── cnv_gb2312.php │ │ ├── cnv_sjis.php │ │ ├── gen_gs1_lint.php │ │ ├── gen_iso3166_h.php │ │ ├── gen_iso4217_h.php │ │ └── gen_pwr928_table.php │ ├── ultra.c │ ├── upcean.c │ ├── vector.c │ ├── zfiletypes.h │ ├── zint.h │ ├── zintconfig.h │ └── zintconfig.h.in │ ├── backend_qt │ ├── CMakeLists.txt │ ├── backend_qt.pro │ ├── backend_qt_zintdll.pro │ ├── backend_vc8.pro │ ├── qzint.cpp │ ├── qzint.h │ └── qzint_global.h │ ├── backend_tcl │ ├── aclocal.m4 │ ├── configure │ ├── configure.in │ ├── demo │ │ └── demo.tcl │ ├── lib │ │ └── zint │ │ │ └── pkgIndex.tcl │ ├── readme.txt │ ├── tclconfig │ │ ├── README.txt │ │ ├── install-sh │ │ └── tcl.m4 │ ├── zint.c │ └── zint_tcl.dsp │ ├── cmake │ ├── modules │ │ └── FindZint.cmake │ └── zint_add_test.cmake │ ├── cmake_uninstall.cmake.in │ ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ └── format │ ├── zint-devel.install │ ├── zint-qt-devel.install │ ├── zint-qt.install │ └── zint.install │ ├── docs │ └── manual.txt │ ├── extras │ ├── README │ ├── cuecat.c │ ├── daft.c │ ├── ida_2d.c │ ├── kartrak.c │ ├── stroke.c │ ├── sunburst.c │ └── zebu_pdf.c │ ├── frontend │ ├── CMakeLists.txt │ ├── isotest.sh │ ├── main.c │ ├── test.sh │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── cmake │ │ │ └── Modules │ │ │ │ └── FindLibZint.cmake │ │ └── test_args.c │ ├── zint.1.gz │ ├── zint.rc │ └── zint_black.ico │ ├── frontend_qt │ ├── CMakeLists.txt │ ├── Inno_Setup_qtzint.iss │ ├── barcodeitem.cpp │ ├── barcodeitem.h │ ├── datawindow.cpp │ ├── datawindow.h │ ├── exportwindow.cpp │ ├── exportwindow.h │ ├── extData.ui │ ├── extExport.ui │ ├── extSequence.ui │ ├── frontend_qt.pro │ ├── frontend_qt_zintdll.pro │ ├── frontend_vc8.pro │ ├── grpAztec.ui │ ├── grpC11.ui │ ├── grpC128.ui │ ├── grpC16k.ui │ ├── grpC25.ui │ ├── grpC39.ui │ ├── grpC49.ui │ ├── grpChannel.ui │ ├── grpCodabar.ui │ ├── grpCodablockF.ui │ ├── grpCodeOne.ui │ ├── grpDAFT.ui │ ├── grpDBExtend.ui │ ├── grpDM.ui │ ├── grpDotCode.ui │ ├── grpGrid.ui │ ├── grpHX.ui │ ├── grpLOGMARS.ui │ ├── grpMQR.ui │ ├── grpMSICheck.ui │ ├── grpMaxicode.ui │ ├── grpMicroPDF.ui │ ├── grpPDF417.ui │ ├── grpQR.ui │ ├── grpRMQR.ui │ ├── grpUPCA.ui │ ├── grpUPCEAN.ui │ ├── grpUltra.ui │ ├── grpVIN.ui │ ├── howto_build_qzint_using_msvs2015.txt │ ├── images │ │ └── scalable │ │ │ └── zint-qt.svg │ ├── main.cpp │ ├── mainWindow.ui │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── res │ │ ├── qtZint.rc │ │ └── zint-qt.ico │ ├── resources.qrc │ ├── sequencewindow.cpp │ └── sequencewindow.h │ ├── getopt │ ├── CMakeLists.txt │ ├── getopt.c │ ├── getopt.h │ └── getopt1.c │ ├── readme-cmake │ ├── tools │ └── update_version.php │ ├── win32 │ ├── README │ ├── SetWindowsTargetPlatformVersion.props │ ├── libzint.vcxproj │ ├── test.bat │ ├── vs2008 │ │ ├── libzint.vcproj │ │ └── zint.vcproj │ ├── vs2015 │ │ ├── libzint.vcxproj │ │ ├── vsx │ │ │ └── libzintMD.vcxproj │ │ ├── zint.sln │ │ └── zint.vcxproj │ ├── vs2019 │ │ ├── libzint.vcxproj │ │ ├── zint.sln │ │ └── zint.vcxproj │ ├── zint.sln │ ├── zint.vcxproj │ └── zint_cmdline_vc6 │ │ ├── readme.txt │ │ ├── resource.h │ │ ├── zint.rc │ │ ├── zint_black.svg │ │ ├── zint_black_vc6.ico │ │ ├── zint_cmdline_vc6.dsp │ │ └── zint_cmdline_vc6.dsw │ ├── zint-qt.desktop │ ├── zint-qt.png │ ├── zint.nsi │ └── zint.spec ├── CMakeLists.txt ├── COPYING ├── LICENSE ├── README.md ├── cmake └── modules │ └── GenerateVersionHeader.cmake ├── common.pri ├── console ├── CMakeLists.txt ├── console.pro └── main.cpp ├── demo_r1 ├── .idea │ ├── .gitignore │ ├── demo_r1.iml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── CMakeLists.txt ├── demo_r1.pro ├── demo_reports │ ├── 1.4 │ │ ├── 1_simple_list.lrxml │ │ ├── 2_simple_group.lrxml │ │ ├── 3_memos_and_pictures.lrxml │ │ ├── 4_nested_group.lrxml │ │ ├── 5_dialogDemo.lrxml │ │ ├── 6_change_page_margins_by_script.lrxml │ │ ├── 7_change_subband_visibility_by_script.lrxml │ │ ├── demoDialog.ui │ │ └── test.zip │ ├── DataSource_to_Column.lrxml │ ├── categories.lrxml │ ├── change_alignment.lrxml │ ├── change_item_from_script.lrxml │ ├── change_lang_from_script.lrxml │ ├── db.sqlite3 │ ├── demoDialog.ui │ ├── demoReport1_report_header_group_subdetail.lrxml │ ├── demoReport1_report_header_group_subdetail_TOC.lrxml │ ├── demo_db.db │ ├── dialogDemo.lrxml │ ├── form.lrd │ ├── northwind.db │ ├── simple_group.lrxml │ ├── simple_list.lrxml │ └── template.lrxml ├── global.h ├── images │ ├── logo.png │ └── lr.png ├── lr1.ico ├── lr6.ico ├── main.cpp ├── main.ico ├── mainicon.rc ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui └── r1.qrc ├── demo_r2 ├── CMakeLists.txt ├── demo_r2.pro ├── demo_r2.qrc ├── demo_reports │ ├── Facture.lrxml │ ├── categories.lrxml │ ├── change_item_from_script.lrxml │ ├── demoReport1_report_header_group_subdetail.lrxml │ ├── invoice.zip │ └── northwind.db ├── images │ ├── First.png │ ├── FitPage.png │ ├── FitWidth.png │ ├── Last.png │ ├── Next.png │ ├── OneToOne.png │ ├── PDF.png │ ├── Prev.png │ ├── Print.png │ ├── ZoomIn.png │ ├── ZoomOut.png │ ├── design.png │ ├── folder3.png │ ├── logo.png │ ├── logo1.png │ ├── lr.png │ └── new_leaf1.png ├── main.cpp ├── main.ico ├── mainicon.rc ├── mainwindow.cpp ├── mainwindow.h └── mainwindow.ui ├── designer ├── CMakeLists.txt ├── designer.pro ├── designersettingmanager.cpp ├── designersettingmanager.h ├── main.cpp ├── main.ico └── mainicon.rc ├── designer_plugin ├── designer_plugin.pro ├── lrdesignerplugin.cpp └── lrdesignerplugin.h ├── docs ├── UserManualEn.pdf ├── UserManualRu.pdf ├── Руководство пользователя.docx └── Руководство пользователя.pdf ├── followTo.patch ├── include ├── LRCallbackDS ├── LRDataManager ├── LRScriptManager ├── LimeReport ├── lrcallbackdatasourceintf.h ├── lrdatasourceintf.h ├── lrdatasourcemanagerintf.h ├── lrglobal.cpp ├── lrglobal.h ├── lrpreparedpagesintf.h ├── lrpreviewreportwidget.h ├── lrrenderengine.h ├── lrreportdesignwindowintrerface.h ├── lrreportengine.h └── lrscriptenginemanagerintf.h ├── limereport.pri ├── limereport.pro ├── limereport ├── LRCallbackDS ├── LRDataManager ├── LRScriptManager ├── LimeReport ├── bands │ ├── lrdataband.cpp │ ├── lrdataband.h │ ├── lrgroupbands.cpp │ ├── lrgroupbands.h │ ├── lrpagefooter.cpp │ ├── lrpagefooter.h │ ├── lrpageheader.cpp │ ├── lrpageheader.h │ ├── lrreportfooter.cpp │ ├── lrreportfooter.h │ ├── lrreportheader.cpp │ ├── lrreportheader.h │ ├── lrsubdetailband.cpp │ ├── lrsubdetailband.h │ ├── lrtearoffband.cpp │ └── lrtearoffband.h ├── base │ ├── lrattribsabstractfactory.h │ ├── lrsimpleabstractfactory.h │ └── lrsingleton.h ├── databrowser │ ├── images │ │ ├── add.png │ │ ├── closed_eye.png │ │ ├── data.png │ │ ├── data1.png │ │ ├── data_add.png │ │ ├── data_add1.png │ │ ├── data_delete.png │ │ ├── data_delete1.png │ │ ├── data_edit.png │ │ ├── data_edit1.png │ │ ├── database_connect.png │ │ ├── database_connected.png │ │ ├── database_connected2.png │ │ ├── database_connected3.png │ │ ├── database_disconnect.png │ │ ├── edit_table.png │ │ ├── error_message.png │ │ ├── error_message_2.png │ │ ├── eye.png │ │ ├── field.png │ │ ├── plug-connect.png │ │ ├── plug-disconnect.png │ │ ├── remove.png │ │ ├── row.png │ │ ├── table.png │ │ ├── table_add.png │ │ ├── table_delete.png │ │ ├── table_delete1.png │ │ ├── table_edit.png │ │ ├── table_error.png │ │ ├── table_error1.png │ │ ├── table_good.png │ │ ├── table_good1.png │ │ ├── table_view.png │ │ ├── table_view1.png │ │ ├── value.png │ │ ├── value1.png │ │ ├── value_add.png │ │ ├── value_add1.png │ │ ├── value_add2.png │ │ ├── value_delete.png │ │ ├── value_delete1.png │ │ ├── value_edit.png │ │ ├── value_edit1.png │ │ ├── value_edit2.png │ │ └── varToReport.png │ ├── lrconnectiondialog.cpp │ ├── lrconnectiondialog.h │ ├── lrconnectiondialog.ui │ ├── lrdatabrowser.cpp │ ├── lrdatabrowser.h │ ├── lrdatabrowser.qrc │ ├── lrdatabrowser.ui │ ├── lrdatabrowsertree.cpp │ ├── lrdatabrowsertree.h │ ├── lrsqleditdialog.cpp │ ├── lrsqleditdialog.h │ ├── lrsqleditdialog.ui │ ├── lrvariabledialog.cpp │ ├── lrvariabledialog.h │ └── lrvariabledialog.ui ├── designer.pri ├── dialogdesigner │ ├── 3rdparty │ │ ├── designer │ │ │ ├── pluginmanager_p.h │ │ │ ├── qdesigner_integration_p.h │ │ │ └── shared_global_p.h │ │ └── qtcreator │ │ │ ├── designerintegrationv2 │ │ │ ├── README.txt │ │ │ ├── designerintegration.pri │ │ │ ├── formresizer.cpp │ │ │ ├── formresizer.h │ │ │ ├── sizehandlerect.cpp │ │ │ ├── sizehandlerect.h │ │ │ ├── widgethost.cpp │ │ │ ├── widgethost.h │ │ │ └── widgethostconstants.h │ │ │ └── namespace_global.h │ ├── dialogdesigner.pri │ ├── dialogdesigner.qrc │ ├── images │ │ ├── buddytool.png │ │ ├── editform.png │ │ ├── signalslottool.png │ │ ├── tabordertool.png │ │ └── widgettool.png │ ├── lrdialogdesigner.cpp │ ├── lrdialogdesigner.h │ └── templates │ │ └── Dialog.ui ├── exporters │ ├── lrpdfexporter.cpp │ └── lrpdfexporter.h ├── images │ ├── Control-Edit_Box.png │ ├── FitPage.png │ ├── FitWidth.png │ ├── Hourglass_80.png │ ├── OneToOne.png │ ├── PDF2.png │ ├── addBand.png │ ├── addBand1.png │ ├── addBand2.png │ ├── addDialog.png │ ├── addPage.png │ ├── addPage1.png │ ├── allLines.png │ ├── allLines1.png │ ├── barcode.png │ ├── barcode2.png │ ├── border_settings.png │ ├── bottomLine.png │ ├── bottomLine1.png │ ├── bringToFront.png │ ├── checked.png │ ├── closebox.png │ ├── copy.png │ ├── copy2.png │ ├── copy24.png │ ├── copy3.png │ ├── cpyright_logo.png │ ├── cut.png │ ├── cut1.png │ ├── cut24.png │ ├── cut_24.png │ ├── dasabases.png │ ├── database.png │ ├── delete.png │ ├── delete1.png │ ├── delete2.png │ ├── deleteDialog.png │ ├── deletePage.png │ ├── deletePage1.png │ ├── design.png │ ├── designer.png │ ├── dialog-close.png │ ├── dialog-close_red.png │ ├── disk_blue.png │ ├── document_add.png │ ├── document_add_1.png │ ├── document_zoom_in.png │ ├── document_zoom_in_1.png │ ├── document_zoom_out.png │ ├── document_zoom_out_1.png │ ├── edit-copy_1_24.png │ ├── edit-paste_1_24.png │ ├── edit.png │ ├── edit_control_24.png │ ├── edit_control_2_24.png │ ├── edit_control_3_24.png │ ├── edit_control_4_24.png │ ├── edit_layout.png │ ├── edit_layout_2_24.png │ ├── edit_layout_3_24.png │ ├── edit_layout_4_24.png │ ├── edit_pecil2.png │ ├── empty.png │ ├── errors.png │ ├── field.png │ ├── first2.png │ ├── folder.png │ ├── folder1.png │ ├── folder3.png │ ├── function2.png │ ├── function3.png │ ├── go-next.png │ ├── green_logo_32x32.png │ ├── grid.png │ ├── hideLeftPanel.png │ ├── hideRightPanel.png │ ├── hlayout.png │ ├── hlayuot_1_24.png │ ├── hlayuot_2_24.png │ ├── hlayuot_3_24.png │ ├── hlayuot_4_24.png │ ├── last2.png │ ├── layuot_create.png │ ├── layuot_create_24.png │ ├── layuot_delete_24.png │ ├── layuot_move.png │ ├── layuot_select.png │ ├── layuot_select_24.png │ ├── leftLine.png │ ├── leftLine1.png │ ├── lock.png │ ├── logo.png │ ├── logo_100.png │ ├── logo_16x16.png │ ├── logo_32x32.png │ ├── logo_32x32_1.png │ ├── magnet.png │ ├── main.png │ ├── move_back.png │ ├── move_top_1.png │ ├── new_leaf.png │ ├── new_leaf1.png │ ├── next.png │ ├── next1.png │ ├── next2.png │ ├── noLines.png │ ├── noLines1.png │ ├── not_checked.png │ ├── object.png │ ├── paste.png │ ├── paste1.png │ ├── paste2.png │ ├── paste_1_24.png │ ├── pin_green.png │ ├── prin-preview2.png │ ├── prin-preview_4_24.png │ ├── print.png │ ├── print2_big.png │ ├── print_2_24.png │ ├── print_preview.png │ ├── print_preview1.png │ ├── print_preview2.png │ ├── prior.png │ ├── prior1.png │ ├── prior2.png │ ├── property.png │ ├── redo.png │ ├── redo1.png │ ├── rightLine.png │ ├── rightLine1.png │ ├── save.png │ ├── save_as_1_24.png │ ├── sendToBack.png │ ├── settings.png │ ├── signal.png │ ├── table1.png │ ├── text-align-botom.png │ ├── text-align-botom1.png │ ├── text-align-justify.png │ ├── text-align-justify1.png │ ├── text-align-top.png │ ├── text-align-top1.png │ ├── text-align-v-center.png │ ├── text-align-v-center1.png │ ├── text_align_center.png │ ├── text_align_center1.png │ ├── text_align_left.png │ ├── text_align_left1.png │ ├── text_align_right.png │ ├── text_align_right1.png │ ├── text_bold.png │ ├── text_bold1.png │ ├── text_italic.png │ ├── text_italic1.png │ ├── text_underline.png │ ├── text_underline1.png │ ├── toBack.png │ ├── toBottom.png │ ├── toCenter.png │ ├── toFront.png │ ├── toLeft1.png │ ├── toRight.png │ ├── toSameHeight.png │ ├── toSameWidth.png │ ├── toTop.png │ ├── toVCernter.png │ ├── to_bottom.png │ ├── to_center.png │ ├── to_h_center.png │ ├── to_left.png │ ├── to_right.png │ ├── to_same_height.png │ ├── to_same_width.png │ ├── to_top.png │ ├── toolbar.png │ ├── topLine.png │ ├── topLine1.png │ ├── undo.png │ ├── undo1.png │ ├── unlock.png │ ├── value.png │ ├── var1.png │ ├── variable.png │ ├── variable1.png │ ├── vlayout.png │ ├── vlayuot_4_24.png │ ├── zoom-in_2_16.png │ ├── zoom_in.png │ ├── zoom_in1.png │ ├── zoom_out.png │ └── zoom_out1.png ├── items │ ├── charts │ │ ├── lrgridlineschart.cpp │ │ ├── lrgridlineschart.h │ │ ├── lrhorizontalbarchart.cpp │ │ ├── lrhorizontalbarchart.h │ │ ├── lrlineschart.cpp │ │ ├── lrlineschart.h │ │ ├── lrpiechart.cpp │ │ ├── lrpiechart.h │ │ ├── lrverticalbarchart.cpp │ │ └── lrverticalbarchart.h │ ├── editors │ │ ├── lrfonteditorwidget.cpp │ │ ├── lrfonteditorwidget.h │ │ ├── lritemeditorwidget.cpp │ │ ├── lritemeditorwidget.h │ │ ├── lritemsaligneditorwidget.cpp │ │ ├── lritemsaligneditorwidget.h │ │ ├── lritemsborderseditorwidget.cpp │ │ ├── lritemsborderseditorwidget.h │ │ ├── lrtextalignmenteditorwidget.cpp │ │ └── lrtextalignmenteditorwidget.h │ ├── images │ │ ├── DataBand.png │ │ ├── DataBand16.png │ │ ├── DataFooterBand.png │ │ ├── DataHeaderBand.png │ │ ├── GroupFooter16.png │ │ ├── GroupHeader16.png │ │ ├── PageFooter.png │ │ ├── PageFooter16.png │ │ ├── PageHeader.png │ │ ├── PageHeader16.png │ │ ├── ReportFooter.png │ │ ├── ReportFooter16.png │ │ ├── ReportHeader.png │ │ ├── ReportHeader16.png │ │ ├── ReportPage.png │ │ ├── ReportPage16.png │ │ ├── SVGItem.png │ │ ├── SubDetailBand16.png │ │ ├── SubDetailFooterBand16.png │ │ ├── SubDetailHeaderBand16.png │ │ ├── addBand1.png │ │ ├── barcode2.png │ │ ├── barcode3.png │ │ ├── barcode4.png │ │ ├── barcode5.png │ │ ├── border_settings.png │ │ ├── hlayout.png │ │ ├── hlayuot_3_24.png │ │ ├── imageItem.png │ │ ├── imageItem1.png │ │ ├── imageItem2.png │ │ ├── imageItem3.png │ │ ├── imageItem4.png │ │ ├── insert-text.png │ │ ├── insert-text_2.png │ │ ├── insert-text_3.png │ │ ├── insert-text_5.png │ │ ├── insert-text_6.png │ │ ├── pie_chart2.png │ │ ├── settings.png │ │ ├── settings2.png │ │ ├── shape2.png │ │ ├── shape4.png │ │ ├── shape5.png │ │ ├── shape6.png │ │ └── shapes7.png │ ├── items.qrc │ ├── lrabstractlayout.cpp │ ├── lrabstractlayout.h │ ├── lralignpropitem.cpp │ ├── lralignpropitem.h │ ├── lrbarcodeitem.cpp │ ├── lrbarcodeitem.h │ ├── lrbordereditor.cpp │ ├── lrbordereditor.h │ ├── lrbordereditor.ui │ ├── lrborderframeeditor.cpp │ ├── lrborderframeeditor.h │ ├── lrborderframeeditor.ui │ ├── lrchartaxiseditor.cpp │ ├── lrchartaxiseditor.h │ ├── lrchartaxiseditor.ui │ ├── lrchartitem.cpp │ ├── lrchartitem.h │ ├── lrchartitemeditor.cpp │ ├── lrchartitemeditor.h │ ├── lrchartitemeditor.ui │ ├── lreditableimageitemintf.h │ ├── lrhorizontallayout.cpp │ ├── lrhorizontallayout.h │ ├── lrimageitem.cpp │ ├── lrimageitem.h │ ├── lrimageitemeditor.cpp │ ├── lrimageitemeditor.h │ ├── lrimageitemeditor.ui │ ├── lrlayoutmarker.cpp │ ├── lrlayoutmarker.h │ ├── lrpageeditor.cpp │ ├── lrpageeditor.h │ ├── lrpageeditor.ui │ ├── lrshapeitem.cpp │ ├── lrshapeitem.h │ ├── lrsimpletagparser.cpp │ ├── lrsimpletagparser.h │ ├── lrsubitemparentpropitem.cpp │ ├── lrsubitemparentpropitem.h │ ├── lrsvgitem.cpp │ ├── lrsvgitem.h │ ├── lrtextitem.cpp │ ├── lrtextitem.h │ ├── lrtextitemeditor.cpp │ ├── lrtextitemeditor.h │ ├── lrtextitemeditor.ui │ ├── lrverticallayout.cpp │ └── lrverticallayout.h ├── limereport.prf ├── limereport.pri ├── limereport.pro ├── lraboutdialog.cpp ├── lraboutdialog.h ├── lraboutdialog.ui ├── lraxisdata.cpp ├── lraxisdata.h ├── lrbanddesignintf.cpp ├── lrbanddesignintf.h ├── lrbandsmanager.cpp ├── lrbandsmanager.h ├── lrbasedesignintf.cpp ├── lrbasedesignintf.h ├── lrcallbackdatasourceintf.h ├── lrcollection.h ├── lrcolorindicator.cpp ├── lrcolorindicator.h ├── lrdatadesignintf.cpp ├── lrdatadesignintf.h ├── lrdatasourceintf.h ├── lrdatasourcemanager.cpp ├── lrdatasourcemanager.h ├── lrdatasourcemanagerintf.h ├── lrdesignelementsfactory.h ├── lrdesignerplugininterface.h ├── lrexporterintf.h ├── lrexportersfactory.h ├── lrfactoryinitializer.cpp ├── lrfactoryinitializer.h ├── lrglobal.cpp ├── lrglobal.h ├── lrgraphicsviewzoom.cpp ├── lrgraphicsviewzoom.h ├── lrgroupfunctions.cpp ├── lrgroupfunctions.h ├── lritemdesignintf.cpp ├── lritemdesignintf.h ├── lritemscontainerdesignitf.cpp ├── lritemscontainerdesignitf.h ├── lrpagedesignintf.cpp ├── lrpagedesignintf.h ├── lrpageinitintf.h ├── lrpageitemdesignintf.cpp ├── lrpageitemdesignintf.h ├── lrpreparedpages.cpp ├── lrpreparedpages.h ├── lrpreparedpagesintf.h ├── lrpreviewreportwidget.cpp ├── lrpreviewreportwidget.h ├── lrpreviewreportwidget.ui ├── lrpreviewreportwidget_p.h ├── lrpreviewreportwindow.cpp ├── lrpreviewreportwindow.h ├── lrpreviewreportwindow.ui ├── lrreportdesignwidget.cpp ├── lrreportdesignwidget.h ├── lrreportdesignwindow.cpp ├── lrreportdesignwindow.h ├── lrreportdesignwindowintrerface.h ├── lrreportengine.cpp ├── lrreportengine.h ├── lrreportengine_p.h ├── lrreportrender.cpp ├── lrreportrender.h ├── lrreporttranslation.cpp ├── lrreporttranslation.h ├── lrscriptenginemanager.cpp ├── lrscriptenginemanager.h ├── lrscriptenginemanagerintf.h ├── lrsettingdialog.cpp ├── lrsettingdialog.h ├── lrsettingdialog.ui ├── lrsimplecrypt.cpp ├── lrsimplecrypt.h ├── lrvariablesholder.cpp ├── lrvariablesholder.h ├── objectinspector │ ├── editors │ │ ├── lrbuttonlineeditor.cpp │ │ ├── lrbuttonlineeditor.h │ │ ├── lrcheckboxeditor.cpp │ │ ├── lrcheckboxeditor.h │ │ ├── lrcoloreditor.cpp │ │ ├── lrcoloreditor.h │ │ ├── lrcomboboxeditor.cpp │ │ ├── lrcomboboxeditor.h │ │ ├── lrfonteditor.cpp │ │ ├── lrfonteditor.h │ │ ├── lrimageeditor.cpp │ │ ├── lrimageeditor.h │ │ ├── lrsvgeditor.cpp │ │ ├── lrsvgeditor.h │ │ ├── lrtextitempropertyeditor.cpp │ │ ├── lrtextitempropertyeditor.h │ │ └── ltextitempropertyeditor.ui │ ├── images │ │ ├── check.png │ │ ├── check_w.png │ │ ├── clear.png │ │ ├── edit_16.ico │ │ ├── settings.png │ │ ├── uncheck.png │ │ └── uncheck_w.png │ ├── lobjectinspector.qrc │ ├── lrbasedesignobjectmodel.cpp │ ├── lrbasedesignobjectmodel.h │ ├── lrobjectinspectorwidget.cpp │ ├── lrobjectinspectorwidget.h │ ├── lrobjectitemmodel.cpp │ ├── lrobjectitemmodel.h │ ├── lrobjectpropitem.cpp │ ├── lrobjectpropitem.h │ ├── lrpropertydelegate.cpp │ ├── lrpropertydelegate.h │ └── propertyItems │ │ ├── lraxispropitem.cpp │ │ ├── lraxispropitem.h │ │ ├── lrboolpropitem.cpp │ │ ├── lrboolpropitem.h │ │ ├── lrcolorpropitem.cpp │ │ ├── lrcolorpropitem.h │ │ ├── lrcontentpropitem.cpp │ │ ├── lrcontentpropitem.h │ │ ├── lrdatasourcepropitem.cpp │ │ ├── lrdatasourcepropitem.h │ │ ├── lrenumpropitem.cpp │ │ ├── lrenumpropitem.h │ │ ├── lrflagspropitem.cpp │ │ ├── lrflagspropitem.h │ │ ├── lrfontpropitem.cpp │ │ ├── lrfontpropitem.h │ │ ├── lrgroupfieldpropitem.cpp │ │ ├── lrgroupfieldpropitem.h │ │ ├── lrimagepropitem.cpp │ │ ├── lrimagepropitem.h │ │ ├── lrintpropitem.cpp │ │ ├── lrintpropitem.h │ │ ├── lrmarginpropitem.cpp │ │ ├── lrmarginpropitem.h │ │ ├── lrqrealpropitem.cpp │ │ ├── lrqrealpropitem.h │ │ ├── lrrectproptem.cpp │ │ ├── lrrectproptem.h │ │ ├── lrseriespropitem.cpp │ │ ├── lrseriespropitem.h │ │ ├── lrstringpropitem.cpp │ │ ├── lrstringpropitem.h │ │ ├── lrsvgpropitem.cpp │ │ └── lrsvgpropitem.h ├── objectsbrowser │ ├── lrobjectbrowser.cpp │ └── lrobjectbrowser.h ├── report.qrc ├── scriptbrowser │ ├── images │ │ ├── Dialog.png │ │ ├── Dialog_add.png │ │ ├── Dialog_delete.png │ │ ├── Dialog_run.png │ │ ├── function3.png │ │ ├── function_add.png │ │ ├── function_delete.png │ │ ├── function_edit.png │ │ ├── green_cube.png │ │ └── green_cube1.png │ ├── lrscriptbrowser.cpp │ ├── lrscriptbrowser.h │ ├── lrscriptbrowser.qrc │ └── lrscriptbrowser.ui ├── scripteditor │ ├── lrcodeeditor.cpp │ ├── lrcodeeditor.h │ ├── lrcompletermodel.cpp │ ├── lrcompletermodel.h │ ├── lrscripteditor.cpp │ ├── lrscripteditor.h │ ├── lrscripteditor.ui │ ├── lrscripthighlighter.cpp │ └── lrscripthighlighter.h ├── serializators │ ├── lrserializatorintf.h │ ├── lrstorageintf.h │ ├── lrxmlbasetypesserializators.cpp │ ├── lrxmlbasetypesserializators.h │ ├── lrxmlqrectserializator.cpp │ ├── lrxmlqrectserializator.h │ ├── lrxmlreader.cpp │ ├── lrxmlreader.h │ ├── lrxmlserializatorsfactory.h │ ├── lrxmlwriter.cpp │ └── lrxmlwriter.h ├── translationeditor │ ├── images │ │ ├── add.png │ │ ├── checked.png │ │ ├── green_check.png │ │ ├── question.png │ │ └── remove.png │ ├── languageselectdialog.cpp │ ├── languageselectdialog.h │ ├── languageselectdialog.ui │ ├── translationeditor.cpp │ ├── translationeditor.h │ ├── translationeditor.qrc │ └── translationeditor.ui └── version.h.in ├── lrdview ├── MainWindow.cpp ├── MainWindow.h ├── MainWindow.qrc ├── MainWindow.ui ├── SettingDialog.cpp ├── SettingDialog.h ├── SettingDialog.ui ├── XmlModel.cpp ├── XmlModel.h ├── images │ ├── PDF1.png │ ├── delete.png │ ├── design.png │ ├── design_black.png │ ├── edit.png │ ├── edit_page.png │ ├── edit_pattern.png │ ├── folder_open.png │ ├── folder_open_16.png │ ├── print.png │ ├── settings-24.png │ ├── view.ico │ ├── view.png │ ├── zoomin.png │ └── zoomout.png ├── lrdview.pro ├── main.cpp ├── mainicon.rc └── view.ico ├── qzint.pri ├── tests ├── tests.pro └── tst_callbackdstest.cpp ├── tools └── check_code_style.sh └── translations ├── limereport_ar.ts ├── limereport_es.ts ├── limereport_fr.ts ├── limereport_pl.ts ├── limereport_ru.ts └── limereport_zh.ts /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | limereport/version.h.in export-subst 2 | -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | limereport -------------------------------------------------------------------------------- /.idea/LimeReport.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/.idea/LimeReport.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.remarkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/.remarkrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/.travis.yml -------------------------------------------------------------------------------- /3rdparty/3rdparty.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/3rdparty.pro -------------------------------------------------------------------------------- /3rdparty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/dark_style_sheet/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/dark_style_sheet/COPYING -------------------------------------------------------------------------------- /3rdparty/easyprofiler/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /bin/ 3 | -------------------------------------------------------------------------------- /3rdparty/easyprofiler/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/easyprofiler/CMakeCache.txt -------------------------------------------------------------------------------- /3rdparty/easyprofiler/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 35 2 | -------------------------------------------------------------------------------- /3rdparty/easyprofiler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/easyprofiler/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/easyprofiler/LICENSE.APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/easyprofiler/LICENSE.APACHE -------------------------------------------------------------------------------- /3rdparty/easyprofiler/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/easyprofiler/LICENSE.MIT -------------------------------------------------------------------------------- /3rdparty/easyprofiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/easyprofiler/README.md -------------------------------------------------------------------------------- /3rdparty/easyprofiler/appveyor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/easyprofiler/appveyor.bat -------------------------------------------------------------------------------- /3rdparty/easyprofiler/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/easyprofiler/appveyor.yml -------------------------------------------------------------------------------- /3rdparty/easyprofiler/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/easyprofiler/cmake_install.cmake -------------------------------------------------------------------------------- /3rdparty/easyprofiler/easy_profiler_core/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /3rdparty/easyprofiler/profiler_gui/CMakeFiles/profiler_gui_automoc.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 29 2 | 3 | -------------------------------------------------------------------------------- /3rdparty/easyprofiler/profiler_gui/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 29 2 | -------------------------------------------------------------------------------- /3rdparty/easyprofiler/profiler_gui/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/easyprofiler/profiler_gui/globals.h -------------------------------------------------------------------------------- /3rdparty/easyprofiler/profiler_gui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/easyprofiler/profiler_gui/main.cpp -------------------------------------------------------------------------------- /3rdparty/easyprofiler/reader/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /3rdparty/easyprofiler/reader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/easyprofiler/reader/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/easyprofiler/reader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/easyprofiler/reader/main.cpp -------------------------------------------------------------------------------- /3rdparty/easyprofiler/sample/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /3rdparty/easyprofiler/sample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/easyprofiler/sample/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/easyprofiler/sample/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/easyprofiler/sample/main.cpp -------------------------------------------------------------------------------- /3rdparty/easyprofiler/sample/main_clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/easyprofiler/sample/main_clock.cpp -------------------------------------------------------------------------------- /3rdparty/easyprofiler/scripts/make_style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/easyprofiler/scripts/make_style.sh -------------------------------------------------------------------------------- /3rdparty/easyprofiler/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/easyprofiler/scripts/test.sh -------------------------------------------------------------------------------- /3rdparty/light_style_sheet/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/light_style_sheet/COPYING -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0-src.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0-src.tar.gz -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/.editorconfig -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/.gitignore -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/COPYING -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/ChangeLog -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/README -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/SetPaths.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/SetPaths.cmake -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/TODO -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/2of5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/2of5.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/DEVELOPER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/DEVELOPER -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/LICENSE -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/auspost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/auspost.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/aztec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/aztec.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/aztec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/aztec.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/big5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/big5.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/bmp.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/bmp.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/codablock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/codablock.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/code.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/code1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/code1.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/code1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/code1.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/code128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/code128.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/code128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/code128.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/code16k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/code16k.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/code49.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/code49.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/code49.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/code49.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/common.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/common.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/composite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/composite.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/composite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/composite.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/dllversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/dllversion.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/dmatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/dmatrix.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/dmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/dmatrix.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/dotcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/dotcode.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/eci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/eci.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/eci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/eci.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/eci_sb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/eci_sb.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/emf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/emf.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/emf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/emf.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/font.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/gb18030.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/gb18030.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/gb18030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/gb18030.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/gb2312.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/gb2312.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/gb2312.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/gb2312.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/general_field.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/general_field.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/general_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/general_field.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/gif.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/gridmtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/gridmtx.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/gridmtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/gridmtx.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/gs1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/gs1.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/gs1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/gs1.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/gs1_lint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/gs1_lint.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/hanxin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/hanxin.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/hanxin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/hanxin.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/imail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/imail.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/iso3166.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/iso3166.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/iso4217.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/iso4217.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/ksx1001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/ksx1001.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/large.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/large.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/large.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/large.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/library.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/libzint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/libzint.rc -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/mailmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/mailmark.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/maxicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/maxicode.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/maxicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/maxicode.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/medical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/medical.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/ms_stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/ms_stdint.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/output.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/output.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/pcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/pcx.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/pcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/pcx.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/pdf417.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/pdf417.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/pdf417.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/pdf417.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/plessey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/plessey.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/png.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/postal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/postal.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/ps.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/qr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/qr.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/qr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/qr.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/raster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/raster.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/reedsol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/reedsol.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/reedsol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/reedsol.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/reedsol_logs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/reedsol_logs.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/rss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/rss.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/rss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/rss.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/sjis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/sjis.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/sjis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/sjis.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/stdint_msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/stdint_msvc.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/svg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/svg.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/telepen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/telepen.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/tests/README -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/tests/data/print/txt/code128_aim.txt: -------------------------------------------------------------------------------- 1 | D2 14 63 11 5D 8B B1 8E B 2 | -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/tests/test_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/tests/test_bmp.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/tests/test_eci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/tests/test_eci.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/tests/test_emf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/tests/test_emf.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/tests/test_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/tests/test_gif.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/tests/test_gs1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/tests/test_gs1.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/tests/test_pcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/tests/test_pcx.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/tests/test_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/tests/test_png.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/tests/test_ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/tests/test_ps.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/tests/test_qr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/tests/test_qr.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/tests/test_rss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/tests/test_rss.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/tests/test_svg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/tests/test_svg.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/tests/test_tif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/tests/test_tif.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/tif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/tif.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/tif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/tif.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/tif_lzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/tif_lzw.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/ultra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/ultra.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/upcean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/upcean.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/vector.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/zfiletypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/zfiletypes.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/zint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/zint.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/zintconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/zintconfig.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend/zintconfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend/zintconfig.h.in -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend_qt/qzint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend_qt/qzint.cpp -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend_qt/qzint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend_qt/qzint.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend_tcl/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend_tcl/aclocal.m4 -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend_tcl/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend_tcl/configure -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend_tcl/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend_tcl/configure.in -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend_tcl/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend_tcl/readme.txt -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend_tcl/zint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend_tcl/zint.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/backend_tcl/zint_tcl.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/backend_tcl/zint_tcl.dsp -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/debian/changelog -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/debian/compat: -------------------------------------------------------------------------------- 1 | 9 -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/debian/control -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/debian/copyright -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | %: 3 | dh $@ 4 | -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/debian/zint-qt.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/debian/zint-qt.install -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/debian/zint.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/debian/zint.install -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/docs/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/docs/manual.txt -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/extras/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/extras/README -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/extras/cuecat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/extras/cuecat.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/extras/daft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/extras/daft.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/extras/ida_2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/extras/ida_2d.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/extras/kartrak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/extras/kartrak.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/extras/stroke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/extras/stroke.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/extras/sunburst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/extras/sunburst.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/extras/zebu_pdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/extras/zebu_pdf.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend/isotest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend/isotest.sh -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend/main.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend/test.sh -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend/tests/README -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend/zint.1.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend/zint.1.gz -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend/zint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend/zint.rc -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend/zint_black.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend/zint_black.ico -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/datawindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/datawindow.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/extData.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/extData.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/extExport.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/extExport.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpAztec.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpAztec.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpC11.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpC11.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpC128.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpC128.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpC16k.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpC16k.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpC25.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpC25.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpC39.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpC39.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpC49.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpC49.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpDAFT.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpDAFT.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpDM.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpDM.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpGrid.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpGrid.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpHX.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpHX.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpMQR.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpMQR.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpPDF417.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpPDF417.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpQR.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpQR.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpRMQR.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpRMQR.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpUPCA.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpUPCA.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpUPCEAN.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpUPCEAN.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpUltra.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpUltra.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/grpVIN.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/grpVIN.ui -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/main.cpp -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/frontend_qt/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/frontend_qt/mainwindow.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/getopt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/getopt/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/getopt/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/getopt/getopt.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/getopt/getopt.h -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/getopt/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/getopt/getopt1.c -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/readme-cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/readme-cmake -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/tools/update_version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/tools/update_version.php -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/win32/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/win32/README -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/win32/libzint.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/win32/libzint.vcxproj -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/win32/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/win32/test.bat -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/win32/vs2008/zint.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/win32/vs2008/zint.vcproj -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/win32/vs2015/zint.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/win32/vs2015/zint.sln -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/win32/vs2019/zint.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/win32/vs2019/zint.sln -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/win32/zint.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/win32/zint.sln -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/win32/zint.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/win32/zint.vcxproj -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/zint-qt.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/zint-qt.desktop -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/zint-qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/zint-qt.png -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/zint.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/zint.nsi -------------------------------------------------------------------------------- /3rdparty/zint-2.10.0/zint.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/3rdparty/zint-2.10.0/zint.spec -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/README.md -------------------------------------------------------------------------------- /cmake/modules/GenerateVersionHeader.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/cmake/modules/GenerateVersionHeader.cmake -------------------------------------------------------------------------------- /common.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/common.pri -------------------------------------------------------------------------------- /console/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/console/CMakeLists.txt -------------------------------------------------------------------------------- /console/console.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/console/console.pro -------------------------------------------------------------------------------- /console/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/console/main.cpp -------------------------------------------------------------------------------- /demo_r1/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/.idea/.gitignore -------------------------------------------------------------------------------- /demo_r1/.idea/demo_r1.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/.idea/demo_r1.iml -------------------------------------------------------------------------------- /demo_r1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/.idea/misc.xml -------------------------------------------------------------------------------- /demo_r1/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/.idea/modules.xml -------------------------------------------------------------------------------- /demo_r1/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/.idea/vcs.xml -------------------------------------------------------------------------------- /demo_r1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/CMakeLists.txt -------------------------------------------------------------------------------- /demo_r1/demo_r1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/demo_r1.pro -------------------------------------------------------------------------------- /demo_r1/demo_reports/1.4/1_simple_list.lrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/demo_reports/1.4/1_simple_list.lrxml -------------------------------------------------------------------------------- /demo_r1/demo_reports/1.4/2_simple_group.lrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/demo_reports/1.4/2_simple_group.lrxml -------------------------------------------------------------------------------- /demo_r1/demo_reports/1.4/4_nested_group.lrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/demo_reports/1.4/4_nested_group.lrxml -------------------------------------------------------------------------------- /demo_r1/demo_reports/1.4/5_dialogDemo.lrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/demo_reports/1.4/5_dialogDemo.lrxml -------------------------------------------------------------------------------- /demo_r1/demo_reports/1.4/demoDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/demo_reports/1.4/demoDialog.ui -------------------------------------------------------------------------------- /demo_r1/demo_reports/1.4/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/demo_reports/1.4/test.zip -------------------------------------------------------------------------------- /demo_r1/demo_reports/categories.lrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/demo_reports/categories.lrxml -------------------------------------------------------------------------------- /demo_r1/demo_reports/change_alignment.lrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/demo_reports/change_alignment.lrxml -------------------------------------------------------------------------------- /demo_r1/demo_reports/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/demo_reports/db.sqlite3 -------------------------------------------------------------------------------- /demo_r1/demo_reports/demoDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/demo_reports/demoDialog.ui -------------------------------------------------------------------------------- /demo_r1/demo_reports/demo_db.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/demo_reports/demo_db.db -------------------------------------------------------------------------------- /demo_r1/demo_reports/dialogDemo.lrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/demo_reports/dialogDemo.lrxml -------------------------------------------------------------------------------- /demo_r1/demo_reports/form.lrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/demo_reports/form.lrd -------------------------------------------------------------------------------- /demo_r1/demo_reports/northwind.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/demo_reports/northwind.db -------------------------------------------------------------------------------- /demo_r1/demo_reports/simple_group.lrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/demo_reports/simple_group.lrxml -------------------------------------------------------------------------------- /demo_r1/demo_reports/simple_list.lrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/demo_reports/simple_list.lrxml -------------------------------------------------------------------------------- /demo_r1/demo_reports/template.lrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/demo_reports/template.lrxml -------------------------------------------------------------------------------- /demo_r1/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/global.h -------------------------------------------------------------------------------- /demo_r1/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/images/logo.png -------------------------------------------------------------------------------- /demo_r1/images/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/images/lr.png -------------------------------------------------------------------------------- /demo_r1/lr1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/lr1.ico -------------------------------------------------------------------------------- /demo_r1/lr6.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/lr6.ico -------------------------------------------------------------------------------- /demo_r1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/main.cpp -------------------------------------------------------------------------------- /demo_r1/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/main.ico -------------------------------------------------------------------------------- /demo_r1/mainicon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/mainicon.rc -------------------------------------------------------------------------------- /demo_r1/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/mainwindow.cpp -------------------------------------------------------------------------------- /demo_r1/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/mainwindow.h -------------------------------------------------------------------------------- /demo_r1/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/mainwindow.ui -------------------------------------------------------------------------------- /demo_r1/r1.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r1/r1.qrc -------------------------------------------------------------------------------- /demo_r2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/CMakeLists.txt -------------------------------------------------------------------------------- /demo_r2/demo_r2.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/demo_r2.pro -------------------------------------------------------------------------------- /demo_r2/demo_r2.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/demo_r2.qrc -------------------------------------------------------------------------------- /demo_r2/demo_reports/Facture.lrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/demo_reports/Facture.lrxml -------------------------------------------------------------------------------- /demo_r2/demo_reports/categories.lrxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/demo_reports/categories.lrxml -------------------------------------------------------------------------------- /demo_r2/demo_reports/invoice.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/demo_reports/invoice.zip -------------------------------------------------------------------------------- /demo_r2/demo_reports/northwind.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/demo_reports/northwind.db -------------------------------------------------------------------------------- /demo_r2/images/First.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/images/First.png -------------------------------------------------------------------------------- /demo_r2/images/FitPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/images/FitPage.png -------------------------------------------------------------------------------- /demo_r2/images/FitWidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/images/FitWidth.png -------------------------------------------------------------------------------- /demo_r2/images/Last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/images/Last.png -------------------------------------------------------------------------------- /demo_r2/images/Next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/images/Next.png -------------------------------------------------------------------------------- /demo_r2/images/OneToOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/images/OneToOne.png -------------------------------------------------------------------------------- /demo_r2/images/PDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/images/PDF.png -------------------------------------------------------------------------------- /demo_r2/images/Prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/images/Prev.png -------------------------------------------------------------------------------- /demo_r2/images/Print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/images/Print.png -------------------------------------------------------------------------------- /demo_r2/images/ZoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/images/ZoomIn.png -------------------------------------------------------------------------------- /demo_r2/images/ZoomOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/images/ZoomOut.png -------------------------------------------------------------------------------- /demo_r2/images/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/images/design.png -------------------------------------------------------------------------------- /demo_r2/images/folder3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/images/folder3.png -------------------------------------------------------------------------------- /demo_r2/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/images/logo.png -------------------------------------------------------------------------------- /demo_r2/images/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/images/logo1.png -------------------------------------------------------------------------------- /demo_r2/images/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/images/lr.png -------------------------------------------------------------------------------- /demo_r2/images/new_leaf1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/images/new_leaf1.png -------------------------------------------------------------------------------- /demo_r2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/main.cpp -------------------------------------------------------------------------------- /demo_r2/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/main.ico -------------------------------------------------------------------------------- /demo_r2/mainicon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/mainicon.rc -------------------------------------------------------------------------------- /demo_r2/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/mainwindow.cpp -------------------------------------------------------------------------------- /demo_r2/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/mainwindow.h -------------------------------------------------------------------------------- /demo_r2/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/demo_r2/mainwindow.ui -------------------------------------------------------------------------------- /designer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/designer/CMakeLists.txt -------------------------------------------------------------------------------- /designer/designer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/designer/designer.pro -------------------------------------------------------------------------------- /designer/designersettingmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/designer/designersettingmanager.cpp -------------------------------------------------------------------------------- /designer/designersettingmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/designer/designersettingmanager.h -------------------------------------------------------------------------------- /designer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/designer/main.cpp -------------------------------------------------------------------------------- /designer/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/designer/main.ico -------------------------------------------------------------------------------- /designer/mainicon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/designer/mainicon.rc -------------------------------------------------------------------------------- /designer_plugin/designer_plugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/designer_plugin/designer_plugin.pro -------------------------------------------------------------------------------- /designer_plugin/lrdesignerplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/designer_plugin/lrdesignerplugin.cpp -------------------------------------------------------------------------------- /designer_plugin/lrdesignerplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/designer_plugin/lrdesignerplugin.h -------------------------------------------------------------------------------- /docs/UserManualEn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/docs/UserManualEn.pdf -------------------------------------------------------------------------------- /docs/UserManualRu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/docs/UserManualRu.pdf -------------------------------------------------------------------------------- /docs/Руководство пользователя.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/docs/Руководство пользователя.docx -------------------------------------------------------------------------------- /docs/Руководство пользователя.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/docs/Руководство пользователя.pdf -------------------------------------------------------------------------------- /followTo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/followTo.patch -------------------------------------------------------------------------------- /include/LRCallbackDS: -------------------------------------------------------------------------------- 1 | #include "lrcallbackdatasourceintf.h" 2 | -------------------------------------------------------------------------------- /include/LRDataManager: -------------------------------------------------------------------------------- 1 | #include "lrdatasourcemanagerintf.h" -------------------------------------------------------------------------------- /include/LRScriptManager: -------------------------------------------------------------------------------- 1 | #include "lrscriptenginemanagerintf.h" -------------------------------------------------------------------------------- /include/LimeReport: -------------------------------------------------------------------------------- 1 | #include "lrreportengine.h" 2 | -------------------------------------------------------------------------------- /include/lrcallbackdatasourceintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/include/lrcallbackdatasourceintf.h -------------------------------------------------------------------------------- /include/lrdatasourceintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/include/lrdatasourceintf.h -------------------------------------------------------------------------------- /include/lrdatasourcemanagerintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/include/lrdatasourcemanagerintf.h -------------------------------------------------------------------------------- /include/lrglobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/include/lrglobal.cpp -------------------------------------------------------------------------------- /include/lrglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/include/lrglobal.h -------------------------------------------------------------------------------- /include/lrpreparedpagesintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/include/lrpreparedpagesintf.h -------------------------------------------------------------------------------- /include/lrpreviewreportwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/include/lrpreviewreportwidget.h -------------------------------------------------------------------------------- /include/lrrenderengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/include/lrrenderengine.h -------------------------------------------------------------------------------- /include/lrreportdesignwindowintrerface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/include/lrreportdesignwindowintrerface.h -------------------------------------------------------------------------------- /include/lrreportengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/include/lrreportengine.h -------------------------------------------------------------------------------- /include/lrscriptenginemanagerintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/include/lrscriptenginemanagerintf.h -------------------------------------------------------------------------------- /limereport.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport.pri -------------------------------------------------------------------------------- /limereport.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport.pro -------------------------------------------------------------------------------- /limereport/LRCallbackDS: -------------------------------------------------------------------------------- 1 | #include "lrcallbackdatasourceintf.h" -------------------------------------------------------------------------------- /limereport/LRDataManager: -------------------------------------------------------------------------------- 1 | #include "lrdatasourcemanagerintf.h" -------------------------------------------------------------------------------- /limereport/LRScriptManager: -------------------------------------------------------------------------------- 1 | #include "lrscriptenginemanagerintf.h" -------------------------------------------------------------------------------- /limereport/LimeReport: -------------------------------------------------------------------------------- 1 | #include "lrreportengine.h" 2 | -------------------------------------------------------------------------------- /limereport/bands/lrdataband.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/bands/lrdataband.cpp -------------------------------------------------------------------------------- /limereport/bands/lrdataband.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/bands/lrdataband.h -------------------------------------------------------------------------------- /limereport/bands/lrgroupbands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/bands/lrgroupbands.cpp -------------------------------------------------------------------------------- /limereport/bands/lrgroupbands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/bands/lrgroupbands.h -------------------------------------------------------------------------------- /limereport/bands/lrpagefooter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/bands/lrpagefooter.cpp -------------------------------------------------------------------------------- /limereport/bands/lrpagefooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/bands/lrpagefooter.h -------------------------------------------------------------------------------- /limereport/bands/lrpageheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/bands/lrpageheader.cpp -------------------------------------------------------------------------------- /limereport/bands/lrpageheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/bands/lrpageheader.h -------------------------------------------------------------------------------- /limereport/bands/lrreportfooter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/bands/lrreportfooter.cpp -------------------------------------------------------------------------------- /limereport/bands/lrreportfooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/bands/lrreportfooter.h -------------------------------------------------------------------------------- /limereport/bands/lrreportheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/bands/lrreportheader.cpp -------------------------------------------------------------------------------- /limereport/bands/lrreportheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/bands/lrreportheader.h -------------------------------------------------------------------------------- /limereport/bands/lrsubdetailband.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/bands/lrsubdetailband.cpp -------------------------------------------------------------------------------- /limereport/bands/lrsubdetailband.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/bands/lrsubdetailband.h -------------------------------------------------------------------------------- /limereport/bands/lrtearoffband.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/bands/lrtearoffband.cpp -------------------------------------------------------------------------------- /limereport/bands/lrtearoffband.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/bands/lrtearoffband.h -------------------------------------------------------------------------------- /limereport/base/lrattribsabstractfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/base/lrattribsabstractfactory.h -------------------------------------------------------------------------------- /limereport/base/lrsimpleabstractfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/base/lrsimpleabstractfactory.h -------------------------------------------------------------------------------- /limereport/base/lrsingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/base/lrsingleton.h -------------------------------------------------------------------------------- /limereport/databrowser/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/add.png -------------------------------------------------------------------------------- /limereport/databrowser/images/closed_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/closed_eye.png -------------------------------------------------------------------------------- /limereport/databrowser/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/data.png -------------------------------------------------------------------------------- /limereport/databrowser/images/data1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/data1.png -------------------------------------------------------------------------------- /limereport/databrowser/images/data_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/data_add.png -------------------------------------------------------------------------------- /limereport/databrowser/images/data_add1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/data_add1.png -------------------------------------------------------------------------------- /limereport/databrowser/images/data_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/data_delete.png -------------------------------------------------------------------------------- /limereport/databrowser/images/data_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/data_edit.png -------------------------------------------------------------------------------- /limereport/databrowser/images/data_edit1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/data_edit1.png -------------------------------------------------------------------------------- /limereport/databrowser/images/edit_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/edit_table.png -------------------------------------------------------------------------------- /limereport/databrowser/images/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/eye.png -------------------------------------------------------------------------------- /limereport/databrowser/images/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/field.png -------------------------------------------------------------------------------- /limereport/databrowser/images/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/remove.png -------------------------------------------------------------------------------- /limereport/databrowser/images/row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/row.png -------------------------------------------------------------------------------- /limereport/databrowser/images/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/table.png -------------------------------------------------------------------------------- /limereport/databrowser/images/table_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/table_add.png -------------------------------------------------------------------------------- /limereport/databrowser/images/table_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/table_edit.png -------------------------------------------------------------------------------- /limereport/databrowser/images/table_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/table_error.png -------------------------------------------------------------------------------- /limereport/databrowser/images/table_good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/table_good.png -------------------------------------------------------------------------------- /limereport/databrowser/images/table_good1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/table_good1.png -------------------------------------------------------------------------------- /limereport/databrowser/images/table_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/table_view.png -------------------------------------------------------------------------------- /limereport/databrowser/images/table_view1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/table_view1.png -------------------------------------------------------------------------------- /limereport/databrowser/images/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/value.png -------------------------------------------------------------------------------- /limereport/databrowser/images/value1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/value1.png -------------------------------------------------------------------------------- /limereport/databrowser/images/value_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/value_add.png -------------------------------------------------------------------------------- /limereport/databrowser/images/value_add1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/value_add1.png -------------------------------------------------------------------------------- /limereport/databrowser/images/value_add2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/value_add2.png -------------------------------------------------------------------------------- /limereport/databrowser/images/value_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/value_edit.png -------------------------------------------------------------------------------- /limereport/databrowser/images/value_edit1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/value_edit1.png -------------------------------------------------------------------------------- /limereport/databrowser/images/value_edit2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/value_edit2.png -------------------------------------------------------------------------------- /limereport/databrowser/images/varToReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/images/varToReport.png -------------------------------------------------------------------------------- /limereport/databrowser/lrconnectiondialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/lrconnectiondialog.cpp -------------------------------------------------------------------------------- /limereport/databrowser/lrconnectiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/lrconnectiondialog.h -------------------------------------------------------------------------------- /limereport/databrowser/lrconnectiondialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/lrconnectiondialog.ui -------------------------------------------------------------------------------- /limereport/databrowser/lrdatabrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/lrdatabrowser.cpp -------------------------------------------------------------------------------- /limereport/databrowser/lrdatabrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/lrdatabrowser.h -------------------------------------------------------------------------------- /limereport/databrowser/lrdatabrowser.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/lrdatabrowser.qrc -------------------------------------------------------------------------------- /limereport/databrowser/lrdatabrowser.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/lrdatabrowser.ui -------------------------------------------------------------------------------- /limereport/databrowser/lrdatabrowsertree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/lrdatabrowsertree.cpp -------------------------------------------------------------------------------- /limereport/databrowser/lrdatabrowsertree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/lrdatabrowsertree.h -------------------------------------------------------------------------------- /limereport/databrowser/lrsqleditdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/lrsqleditdialog.cpp -------------------------------------------------------------------------------- /limereport/databrowser/lrsqleditdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/lrsqleditdialog.h -------------------------------------------------------------------------------- /limereport/databrowser/lrsqleditdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/lrsqleditdialog.ui -------------------------------------------------------------------------------- /limereport/databrowser/lrvariabledialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/lrvariabledialog.cpp -------------------------------------------------------------------------------- /limereport/databrowser/lrvariabledialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/lrvariabledialog.h -------------------------------------------------------------------------------- /limereport/databrowser/lrvariabledialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/databrowser/lrvariabledialog.ui -------------------------------------------------------------------------------- /limereport/designer.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/designer.pri -------------------------------------------------------------------------------- /limereport/dialogdesigner/dialogdesigner.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/dialogdesigner/dialogdesigner.pri -------------------------------------------------------------------------------- /limereport/dialogdesigner/dialogdesigner.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/dialogdesigner/dialogdesigner.qrc -------------------------------------------------------------------------------- /limereport/dialogdesigner/images/editform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/dialogdesigner/images/editform.png -------------------------------------------------------------------------------- /limereport/dialogdesigner/lrdialogdesigner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/dialogdesigner/lrdialogdesigner.h -------------------------------------------------------------------------------- /limereport/dialogdesigner/templates/Dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/dialogdesigner/templates/Dialog.ui -------------------------------------------------------------------------------- /limereport/exporters/lrpdfexporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/exporters/lrpdfexporter.cpp -------------------------------------------------------------------------------- /limereport/exporters/lrpdfexporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/exporters/lrpdfexporter.h -------------------------------------------------------------------------------- /limereport/images/Control-Edit_Box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/Control-Edit_Box.png -------------------------------------------------------------------------------- /limereport/images/FitPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/FitPage.png -------------------------------------------------------------------------------- /limereport/images/FitWidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/FitWidth.png -------------------------------------------------------------------------------- /limereport/images/Hourglass_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/Hourglass_80.png -------------------------------------------------------------------------------- /limereport/images/OneToOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/OneToOne.png -------------------------------------------------------------------------------- /limereport/images/PDF2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/PDF2.png -------------------------------------------------------------------------------- /limereport/images/addBand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/addBand.png -------------------------------------------------------------------------------- /limereport/images/addBand1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/addBand1.png -------------------------------------------------------------------------------- /limereport/images/addBand2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/addBand2.png -------------------------------------------------------------------------------- /limereport/images/addDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/addDialog.png -------------------------------------------------------------------------------- /limereport/images/addPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/addPage.png -------------------------------------------------------------------------------- /limereport/images/addPage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/addPage1.png -------------------------------------------------------------------------------- /limereport/images/allLines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/allLines.png -------------------------------------------------------------------------------- /limereport/images/allLines1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/allLines1.png -------------------------------------------------------------------------------- /limereport/images/barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/barcode.png -------------------------------------------------------------------------------- /limereport/images/barcode2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/barcode2.png -------------------------------------------------------------------------------- /limereport/images/border_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/border_settings.png -------------------------------------------------------------------------------- /limereport/images/bottomLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/bottomLine.png -------------------------------------------------------------------------------- /limereport/images/bottomLine1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/bottomLine1.png -------------------------------------------------------------------------------- /limereport/images/bringToFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/bringToFront.png -------------------------------------------------------------------------------- /limereport/images/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/checked.png -------------------------------------------------------------------------------- /limereport/images/closebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/closebox.png -------------------------------------------------------------------------------- /limereport/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/copy.png -------------------------------------------------------------------------------- /limereport/images/copy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/copy2.png -------------------------------------------------------------------------------- /limereport/images/copy24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/copy24.png -------------------------------------------------------------------------------- /limereport/images/copy3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/copy3.png -------------------------------------------------------------------------------- /limereport/images/cpyright_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/cpyright_logo.png -------------------------------------------------------------------------------- /limereport/images/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/cut.png -------------------------------------------------------------------------------- /limereport/images/cut1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/cut1.png -------------------------------------------------------------------------------- /limereport/images/cut24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/cut24.png -------------------------------------------------------------------------------- /limereport/images/cut_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/cut_24.png -------------------------------------------------------------------------------- /limereport/images/dasabases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/dasabases.png -------------------------------------------------------------------------------- /limereport/images/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/database.png -------------------------------------------------------------------------------- /limereport/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/delete.png -------------------------------------------------------------------------------- /limereport/images/delete1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/delete1.png -------------------------------------------------------------------------------- /limereport/images/delete2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/delete2.png -------------------------------------------------------------------------------- /limereport/images/deleteDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/deleteDialog.png -------------------------------------------------------------------------------- /limereport/images/deletePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/deletePage.png -------------------------------------------------------------------------------- /limereport/images/deletePage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/deletePage1.png -------------------------------------------------------------------------------- /limereport/images/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/design.png -------------------------------------------------------------------------------- /limereport/images/designer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/designer.png -------------------------------------------------------------------------------- /limereport/images/dialog-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/dialog-close.png -------------------------------------------------------------------------------- /limereport/images/dialog-close_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/dialog-close_red.png -------------------------------------------------------------------------------- /limereport/images/disk_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/disk_blue.png -------------------------------------------------------------------------------- /limereport/images/document_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/document_add.png -------------------------------------------------------------------------------- /limereport/images/document_add_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/document_add_1.png -------------------------------------------------------------------------------- /limereport/images/document_zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/document_zoom_in.png -------------------------------------------------------------------------------- /limereport/images/document_zoom_in_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/document_zoom_in_1.png -------------------------------------------------------------------------------- /limereport/images/document_zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/document_zoom_out.png -------------------------------------------------------------------------------- /limereport/images/document_zoom_out_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/document_zoom_out_1.png -------------------------------------------------------------------------------- /limereport/images/edit-copy_1_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/edit-copy_1_24.png -------------------------------------------------------------------------------- /limereport/images/edit-paste_1_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/edit-paste_1_24.png -------------------------------------------------------------------------------- /limereport/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/edit.png -------------------------------------------------------------------------------- /limereport/images/edit_control_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/edit_control_24.png -------------------------------------------------------------------------------- /limereport/images/edit_control_2_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/edit_control_2_24.png -------------------------------------------------------------------------------- /limereport/images/edit_control_3_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/edit_control_3_24.png -------------------------------------------------------------------------------- /limereport/images/edit_control_4_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/edit_control_4_24.png -------------------------------------------------------------------------------- /limereport/images/edit_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/edit_layout.png -------------------------------------------------------------------------------- /limereport/images/edit_layout_2_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/edit_layout_2_24.png -------------------------------------------------------------------------------- /limereport/images/edit_layout_3_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/edit_layout_3_24.png -------------------------------------------------------------------------------- /limereport/images/edit_layout_4_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/edit_layout_4_24.png -------------------------------------------------------------------------------- /limereport/images/edit_pecil2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/edit_pecil2.png -------------------------------------------------------------------------------- /limereport/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/empty.png -------------------------------------------------------------------------------- /limereport/images/errors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/errors.png -------------------------------------------------------------------------------- /limereport/images/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/field.png -------------------------------------------------------------------------------- /limereport/images/first2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/first2.png -------------------------------------------------------------------------------- /limereport/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/folder.png -------------------------------------------------------------------------------- /limereport/images/folder1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/folder1.png -------------------------------------------------------------------------------- /limereport/images/folder3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/folder3.png -------------------------------------------------------------------------------- /limereport/images/function2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/function2.png -------------------------------------------------------------------------------- /limereport/images/function3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/function3.png -------------------------------------------------------------------------------- /limereport/images/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/go-next.png -------------------------------------------------------------------------------- /limereport/images/green_logo_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/green_logo_32x32.png -------------------------------------------------------------------------------- /limereport/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/grid.png -------------------------------------------------------------------------------- /limereport/images/hideLeftPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/hideLeftPanel.png -------------------------------------------------------------------------------- /limereport/images/hideRightPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/hideRightPanel.png -------------------------------------------------------------------------------- /limereport/images/hlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/hlayout.png -------------------------------------------------------------------------------- /limereport/images/hlayuot_1_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/hlayuot_1_24.png -------------------------------------------------------------------------------- /limereport/images/hlayuot_2_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/hlayuot_2_24.png -------------------------------------------------------------------------------- /limereport/images/hlayuot_3_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/hlayuot_3_24.png -------------------------------------------------------------------------------- /limereport/images/hlayuot_4_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/hlayuot_4_24.png -------------------------------------------------------------------------------- /limereport/images/last2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/last2.png -------------------------------------------------------------------------------- /limereport/images/layuot_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/layuot_create.png -------------------------------------------------------------------------------- /limereport/images/layuot_create_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/layuot_create_24.png -------------------------------------------------------------------------------- /limereport/images/layuot_delete_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/layuot_delete_24.png -------------------------------------------------------------------------------- /limereport/images/layuot_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/layuot_move.png -------------------------------------------------------------------------------- /limereport/images/layuot_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/layuot_select.png -------------------------------------------------------------------------------- /limereport/images/layuot_select_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/layuot_select_24.png -------------------------------------------------------------------------------- /limereport/images/leftLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/leftLine.png -------------------------------------------------------------------------------- /limereport/images/leftLine1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/leftLine1.png -------------------------------------------------------------------------------- /limereport/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/lock.png -------------------------------------------------------------------------------- /limereport/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/logo.png -------------------------------------------------------------------------------- /limereport/images/logo_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/logo_100.png -------------------------------------------------------------------------------- /limereport/images/logo_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/logo_16x16.png -------------------------------------------------------------------------------- /limereport/images/logo_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/logo_32x32.png -------------------------------------------------------------------------------- /limereport/images/logo_32x32_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/logo_32x32_1.png -------------------------------------------------------------------------------- /limereport/images/magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/magnet.png -------------------------------------------------------------------------------- /limereport/images/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/main.png -------------------------------------------------------------------------------- /limereport/images/move_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/move_back.png -------------------------------------------------------------------------------- /limereport/images/move_top_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/move_top_1.png -------------------------------------------------------------------------------- /limereport/images/new_leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/new_leaf.png -------------------------------------------------------------------------------- /limereport/images/new_leaf1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/new_leaf1.png -------------------------------------------------------------------------------- /limereport/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/next.png -------------------------------------------------------------------------------- /limereport/images/next1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/next1.png -------------------------------------------------------------------------------- /limereport/images/next2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/next2.png -------------------------------------------------------------------------------- /limereport/images/noLines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/noLines.png -------------------------------------------------------------------------------- /limereport/images/noLines1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/noLines1.png -------------------------------------------------------------------------------- /limereport/images/not_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/not_checked.png -------------------------------------------------------------------------------- /limereport/images/object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/object.png -------------------------------------------------------------------------------- /limereport/images/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/paste.png -------------------------------------------------------------------------------- /limereport/images/paste1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/paste1.png -------------------------------------------------------------------------------- /limereport/images/paste2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/paste2.png -------------------------------------------------------------------------------- /limereport/images/paste_1_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/paste_1_24.png -------------------------------------------------------------------------------- /limereport/images/pin_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/pin_green.png -------------------------------------------------------------------------------- /limereport/images/prin-preview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/prin-preview2.png -------------------------------------------------------------------------------- /limereport/images/prin-preview_4_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/prin-preview_4_24.png -------------------------------------------------------------------------------- /limereport/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/print.png -------------------------------------------------------------------------------- /limereport/images/print2_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/print2_big.png -------------------------------------------------------------------------------- /limereport/images/print_2_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/print_2_24.png -------------------------------------------------------------------------------- /limereport/images/print_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/print_preview.png -------------------------------------------------------------------------------- /limereport/images/print_preview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/print_preview1.png -------------------------------------------------------------------------------- /limereport/images/print_preview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/print_preview2.png -------------------------------------------------------------------------------- /limereport/images/prior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/prior.png -------------------------------------------------------------------------------- /limereport/images/prior1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/prior1.png -------------------------------------------------------------------------------- /limereport/images/prior2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/prior2.png -------------------------------------------------------------------------------- /limereport/images/property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/property.png -------------------------------------------------------------------------------- /limereport/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/redo.png -------------------------------------------------------------------------------- /limereport/images/redo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/redo1.png -------------------------------------------------------------------------------- /limereport/images/rightLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/rightLine.png -------------------------------------------------------------------------------- /limereport/images/rightLine1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/rightLine1.png -------------------------------------------------------------------------------- /limereport/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/save.png -------------------------------------------------------------------------------- /limereport/images/save_as_1_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/save_as_1_24.png -------------------------------------------------------------------------------- /limereport/images/sendToBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/sendToBack.png -------------------------------------------------------------------------------- /limereport/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/settings.png -------------------------------------------------------------------------------- /limereport/images/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/signal.png -------------------------------------------------------------------------------- /limereport/images/table1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/table1.png -------------------------------------------------------------------------------- /limereport/images/text-align-botom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text-align-botom.png -------------------------------------------------------------------------------- /limereport/images/text-align-botom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text-align-botom1.png -------------------------------------------------------------------------------- /limereport/images/text-align-justify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text-align-justify.png -------------------------------------------------------------------------------- /limereport/images/text-align-justify1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text-align-justify1.png -------------------------------------------------------------------------------- /limereport/images/text-align-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text-align-top.png -------------------------------------------------------------------------------- /limereport/images/text-align-top1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text-align-top1.png -------------------------------------------------------------------------------- /limereport/images/text-align-v-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text-align-v-center.png -------------------------------------------------------------------------------- /limereport/images/text-align-v-center1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text-align-v-center1.png -------------------------------------------------------------------------------- /limereport/images/text_align_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text_align_center.png -------------------------------------------------------------------------------- /limereport/images/text_align_center1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text_align_center1.png -------------------------------------------------------------------------------- /limereport/images/text_align_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text_align_left.png -------------------------------------------------------------------------------- /limereport/images/text_align_left1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text_align_left1.png -------------------------------------------------------------------------------- /limereport/images/text_align_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text_align_right.png -------------------------------------------------------------------------------- /limereport/images/text_align_right1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text_align_right1.png -------------------------------------------------------------------------------- /limereport/images/text_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text_bold.png -------------------------------------------------------------------------------- /limereport/images/text_bold1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text_bold1.png -------------------------------------------------------------------------------- /limereport/images/text_italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text_italic.png -------------------------------------------------------------------------------- /limereport/images/text_italic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text_italic1.png -------------------------------------------------------------------------------- /limereport/images/text_underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text_underline.png -------------------------------------------------------------------------------- /limereport/images/text_underline1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/text_underline1.png -------------------------------------------------------------------------------- /limereport/images/toBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/toBack.png -------------------------------------------------------------------------------- /limereport/images/toBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/toBottom.png -------------------------------------------------------------------------------- /limereport/images/toCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/toCenter.png -------------------------------------------------------------------------------- /limereport/images/toFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/toFront.png -------------------------------------------------------------------------------- /limereport/images/toLeft1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/toLeft1.png -------------------------------------------------------------------------------- /limereport/images/toRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/toRight.png -------------------------------------------------------------------------------- /limereport/images/toSameHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/toSameHeight.png -------------------------------------------------------------------------------- /limereport/images/toSameWidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/toSameWidth.png -------------------------------------------------------------------------------- /limereport/images/toTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/toTop.png -------------------------------------------------------------------------------- /limereport/images/toVCernter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/toVCernter.png -------------------------------------------------------------------------------- /limereport/images/to_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/to_bottom.png -------------------------------------------------------------------------------- /limereport/images/to_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/to_center.png -------------------------------------------------------------------------------- /limereport/images/to_h_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/to_h_center.png -------------------------------------------------------------------------------- /limereport/images/to_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/to_left.png -------------------------------------------------------------------------------- /limereport/images/to_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/to_right.png -------------------------------------------------------------------------------- /limereport/images/to_same_height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/to_same_height.png -------------------------------------------------------------------------------- /limereport/images/to_same_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/to_same_width.png -------------------------------------------------------------------------------- /limereport/images/to_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/to_top.png -------------------------------------------------------------------------------- /limereport/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/toolbar.png -------------------------------------------------------------------------------- /limereport/images/topLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/topLine.png -------------------------------------------------------------------------------- /limereport/images/topLine1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/topLine1.png -------------------------------------------------------------------------------- /limereport/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/undo.png -------------------------------------------------------------------------------- /limereport/images/undo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/undo1.png -------------------------------------------------------------------------------- /limereport/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/unlock.png -------------------------------------------------------------------------------- /limereport/images/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/value.png -------------------------------------------------------------------------------- /limereport/images/var1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/var1.png -------------------------------------------------------------------------------- /limereport/images/variable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/variable.png -------------------------------------------------------------------------------- /limereport/images/variable1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/variable1.png -------------------------------------------------------------------------------- /limereport/images/vlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/vlayout.png -------------------------------------------------------------------------------- /limereport/images/vlayuot_4_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/vlayuot_4_24.png -------------------------------------------------------------------------------- /limereport/images/zoom-in_2_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/zoom-in_2_16.png -------------------------------------------------------------------------------- /limereport/images/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/zoom_in.png -------------------------------------------------------------------------------- /limereport/images/zoom_in1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/zoom_in1.png -------------------------------------------------------------------------------- /limereport/images/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/zoom_out.png -------------------------------------------------------------------------------- /limereport/images/zoom_out1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/images/zoom_out1.png -------------------------------------------------------------------------------- /limereport/items/charts/lrgridlineschart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/charts/lrgridlineschart.cpp -------------------------------------------------------------------------------- /limereport/items/charts/lrgridlineschart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/charts/lrgridlineschart.h -------------------------------------------------------------------------------- /limereport/items/charts/lrlineschart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/charts/lrlineschart.cpp -------------------------------------------------------------------------------- /limereport/items/charts/lrlineschart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/charts/lrlineschart.h -------------------------------------------------------------------------------- /limereport/items/charts/lrpiechart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/charts/lrpiechart.cpp -------------------------------------------------------------------------------- /limereport/items/charts/lrpiechart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/charts/lrpiechart.h -------------------------------------------------------------------------------- /limereport/items/charts/lrverticalbarchart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/charts/lrverticalbarchart.h -------------------------------------------------------------------------------- /limereport/items/editors/lrfonteditorwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/editors/lrfonteditorwidget.h -------------------------------------------------------------------------------- /limereport/items/editors/lritemeditorwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/editors/lritemeditorwidget.h -------------------------------------------------------------------------------- /limereport/items/images/DataBand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/DataBand.png -------------------------------------------------------------------------------- /limereport/items/images/DataBand16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/DataBand16.png -------------------------------------------------------------------------------- /limereport/items/images/DataFooterBand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/DataFooterBand.png -------------------------------------------------------------------------------- /limereport/items/images/DataHeaderBand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/DataHeaderBand.png -------------------------------------------------------------------------------- /limereport/items/images/GroupFooter16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/GroupFooter16.png -------------------------------------------------------------------------------- /limereport/items/images/GroupHeader16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/GroupHeader16.png -------------------------------------------------------------------------------- /limereport/items/images/PageFooter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/PageFooter.png -------------------------------------------------------------------------------- /limereport/items/images/PageFooter16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/PageFooter16.png -------------------------------------------------------------------------------- /limereport/items/images/PageHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/PageHeader.png -------------------------------------------------------------------------------- /limereport/items/images/PageHeader16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/PageHeader16.png -------------------------------------------------------------------------------- /limereport/items/images/ReportFooter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/ReportFooter.png -------------------------------------------------------------------------------- /limereport/items/images/ReportFooter16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/ReportFooter16.png -------------------------------------------------------------------------------- /limereport/items/images/ReportHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/ReportHeader.png -------------------------------------------------------------------------------- /limereport/items/images/ReportHeader16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/ReportHeader16.png -------------------------------------------------------------------------------- /limereport/items/images/ReportPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/ReportPage.png -------------------------------------------------------------------------------- /limereport/items/images/ReportPage16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/ReportPage16.png -------------------------------------------------------------------------------- /limereport/items/images/SVGItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/SVGItem.png -------------------------------------------------------------------------------- /limereport/items/images/SubDetailBand16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/SubDetailBand16.png -------------------------------------------------------------------------------- /limereport/items/images/addBand1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/addBand1.png -------------------------------------------------------------------------------- /limereport/items/images/barcode2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/barcode2.png -------------------------------------------------------------------------------- /limereport/items/images/barcode3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/barcode3.png -------------------------------------------------------------------------------- /limereport/items/images/barcode4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/barcode4.png -------------------------------------------------------------------------------- /limereport/items/images/barcode5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/barcode5.png -------------------------------------------------------------------------------- /limereport/items/images/border_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/border_settings.png -------------------------------------------------------------------------------- /limereport/items/images/hlayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/hlayout.png -------------------------------------------------------------------------------- /limereport/items/images/hlayuot_3_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/hlayuot_3_24.png -------------------------------------------------------------------------------- /limereport/items/images/imageItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/imageItem.png -------------------------------------------------------------------------------- /limereport/items/images/imageItem1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/imageItem1.png -------------------------------------------------------------------------------- /limereport/items/images/imageItem2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/imageItem2.png -------------------------------------------------------------------------------- /limereport/items/images/imageItem3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/imageItem3.png -------------------------------------------------------------------------------- /limereport/items/images/imageItem4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/imageItem4.png -------------------------------------------------------------------------------- /limereport/items/images/insert-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/insert-text.png -------------------------------------------------------------------------------- /limereport/items/images/insert-text_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/insert-text_2.png -------------------------------------------------------------------------------- /limereport/items/images/insert-text_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/insert-text_3.png -------------------------------------------------------------------------------- /limereport/items/images/insert-text_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/insert-text_5.png -------------------------------------------------------------------------------- /limereport/items/images/insert-text_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/insert-text_6.png -------------------------------------------------------------------------------- /limereport/items/images/pie_chart2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/pie_chart2.png -------------------------------------------------------------------------------- /limereport/items/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/settings.png -------------------------------------------------------------------------------- /limereport/items/images/settings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/settings2.png -------------------------------------------------------------------------------- /limereport/items/images/shape2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/shape2.png -------------------------------------------------------------------------------- /limereport/items/images/shape4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/shape4.png -------------------------------------------------------------------------------- /limereport/items/images/shape5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/shape5.png -------------------------------------------------------------------------------- /limereport/items/images/shape6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/shape6.png -------------------------------------------------------------------------------- /limereport/items/images/shapes7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/images/shapes7.png -------------------------------------------------------------------------------- /limereport/items/items.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/items.qrc -------------------------------------------------------------------------------- /limereport/items/lrabstractlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrabstractlayout.cpp -------------------------------------------------------------------------------- /limereport/items/lrabstractlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrabstractlayout.h -------------------------------------------------------------------------------- /limereport/items/lralignpropitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lralignpropitem.cpp -------------------------------------------------------------------------------- /limereport/items/lralignpropitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lralignpropitem.h -------------------------------------------------------------------------------- /limereport/items/lrbarcodeitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrbarcodeitem.cpp -------------------------------------------------------------------------------- /limereport/items/lrbarcodeitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrbarcodeitem.h -------------------------------------------------------------------------------- /limereport/items/lrbordereditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrbordereditor.cpp -------------------------------------------------------------------------------- /limereport/items/lrbordereditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrbordereditor.h -------------------------------------------------------------------------------- /limereport/items/lrbordereditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrbordereditor.ui -------------------------------------------------------------------------------- /limereport/items/lrborderframeeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrborderframeeditor.cpp -------------------------------------------------------------------------------- /limereport/items/lrborderframeeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrborderframeeditor.h -------------------------------------------------------------------------------- /limereport/items/lrborderframeeditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrborderframeeditor.ui -------------------------------------------------------------------------------- /limereport/items/lrchartaxiseditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrchartaxiseditor.cpp -------------------------------------------------------------------------------- /limereport/items/lrchartaxiseditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrchartaxiseditor.h -------------------------------------------------------------------------------- /limereport/items/lrchartaxiseditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrchartaxiseditor.ui -------------------------------------------------------------------------------- /limereport/items/lrchartitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrchartitem.cpp -------------------------------------------------------------------------------- /limereport/items/lrchartitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrchartitem.h -------------------------------------------------------------------------------- /limereport/items/lrchartitemeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrchartitemeditor.cpp -------------------------------------------------------------------------------- /limereport/items/lrchartitemeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrchartitemeditor.h -------------------------------------------------------------------------------- /limereport/items/lrchartitemeditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrchartitemeditor.ui -------------------------------------------------------------------------------- /limereport/items/lreditableimageitemintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lreditableimageitemintf.h -------------------------------------------------------------------------------- /limereport/items/lrhorizontallayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrhorizontallayout.cpp -------------------------------------------------------------------------------- /limereport/items/lrhorizontallayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrhorizontallayout.h -------------------------------------------------------------------------------- /limereport/items/lrimageitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrimageitem.cpp -------------------------------------------------------------------------------- /limereport/items/lrimageitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrimageitem.h -------------------------------------------------------------------------------- /limereport/items/lrimageitemeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrimageitemeditor.cpp -------------------------------------------------------------------------------- /limereport/items/lrimageitemeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrimageitemeditor.h -------------------------------------------------------------------------------- /limereport/items/lrimageitemeditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrimageitemeditor.ui -------------------------------------------------------------------------------- /limereport/items/lrlayoutmarker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrlayoutmarker.cpp -------------------------------------------------------------------------------- /limereport/items/lrlayoutmarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrlayoutmarker.h -------------------------------------------------------------------------------- /limereport/items/lrpageeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrpageeditor.cpp -------------------------------------------------------------------------------- /limereport/items/lrpageeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrpageeditor.h -------------------------------------------------------------------------------- /limereport/items/lrpageeditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrpageeditor.ui -------------------------------------------------------------------------------- /limereport/items/lrshapeitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrshapeitem.cpp -------------------------------------------------------------------------------- /limereport/items/lrshapeitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrshapeitem.h -------------------------------------------------------------------------------- /limereport/items/lrsimpletagparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrsimpletagparser.cpp -------------------------------------------------------------------------------- /limereport/items/lrsimpletagparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrsimpletagparser.h -------------------------------------------------------------------------------- /limereport/items/lrsubitemparentpropitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrsubitemparentpropitem.cpp -------------------------------------------------------------------------------- /limereport/items/lrsubitemparentpropitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrsubitemparentpropitem.h -------------------------------------------------------------------------------- /limereport/items/lrsvgitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrsvgitem.cpp -------------------------------------------------------------------------------- /limereport/items/lrsvgitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrsvgitem.h -------------------------------------------------------------------------------- /limereport/items/lrtextitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrtextitem.cpp -------------------------------------------------------------------------------- /limereport/items/lrtextitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrtextitem.h -------------------------------------------------------------------------------- /limereport/items/lrtextitemeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrtextitemeditor.cpp -------------------------------------------------------------------------------- /limereport/items/lrtextitemeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrtextitemeditor.h -------------------------------------------------------------------------------- /limereport/items/lrtextitemeditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrtextitemeditor.ui -------------------------------------------------------------------------------- /limereport/items/lrverticallayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrverticallayout.cpp -------------------------------------------------------------------------------- /limereport/items/lrverticallayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/items/lrverticallayout.h -------------------------------------------------------------------------------- /limereport/limereport.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/limereport.prf -------------------------------------------------------------------------------- /limereport/limereport.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/limereport.pri -------------------------------------------------------------------------------- /limereport/limereport.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/limereport.pro -------------------------------------------------------------------------------- /limereport/lraboutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lraboutdialog.cpp -------------------------------------------------------------------------------- /limereport/lraboutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lraboutdialog.h -------------------------------------------------------------------------------- /limereport/lraboutdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lraboutdialog.ui -------------------------------------------------------------------------------- /limereport/lraxisdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lraxisdata.cpp -------------------------------------------------------------------------------- /limereport/lraxisdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lraxisdata.h -------------------------------------------------------------------------------- /limereport/lrbanddesignintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrbanddesignintf.cpp -------------------------------------------------------------------------------- /limereport/lrbanddesignintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrbanddesignintf.h -------------------------------------------------------------------------------- /limereport/lrbandsmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrbandsmanager.cpp -------------------------------------------------------------------------------- /limereport/lrbandsmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrbandsmanager.h -------------------------------------------------------------------------------- /limereport/lrbasedesignintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrbasedesignintf.cpp -------------------------------------------------------------------------------- /limereport/lrbasedesignintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrbasedesignintf.h -------------------------------------------------------------------------------- /limereport/lrcallbackdatasourceintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrcallbackdatasourceintf.h -------------------------------------------------------------------------------- /limereport/lrcollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrcollection.h -------------------------------------------------------------------------------- /limereport/lrcolorindicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrcolorindicator.cpp -------------------------------------------------------------------------------- /limereport/lrcolorindicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrcolorindicator.h -------------------------------------------------------------------------------- /limereport/lrdatadesignintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrdatadesignintf.cpp -------------------------------------------------------------------------------- /limereport/lrdatadesignintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrdatadesignintf.h -------------------------------------------------------------------------------- /limereport/lrdatasourceintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrdatasourceintf.h -------------------------------------------------------------------------------- /limereport/lrdatasourcemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrdatasourcemanager.cpp -------------------------------------------------------------------------------- /limereport/lrdatasourcemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrdatasourcemanager.h -------------------------------------------------------------------------------- /limereport/lrdatasourcemanagerintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrdatasourcemanagerintf.h -------------------------------------------------------------------------------- /limereport/lrdesignelementsfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrdesignelementsfactory.h -------------------------------------------------------------------------------- /limereport/lrdesignerplugininterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrdesignerplugininterface.h -------------------------------------------------------------------------------- /limereport/lrexporterintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrexporterintf.h -------------------------------------------------------------------------------- /limereport/lrexportersfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrexportersfactory.h -------------------------------------------------------------------------------- /limereport/lrfactoryinitializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrfactoryinitializer.cpp -------------------------------------------------------------------------------- /limereport/lrfactoryinitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrfactoryinitializer.h -------------------------------------------------------------------------------- /limereport/lrglobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrglobal.cpp -------------------------------------------------------------------------------- /limereport/lrglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrglobal.h -------------------------------------------------------------------------------- /limereport/lrgraphicsviewzoom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrgraphicsviewzoom.cpp -------------------------------------------------------------------------------- /limereport/lrgraphicsviewzoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrgraphicsviewzoom.h -------------------------------------------------------------------------------- /limereport/lrgroupfunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrgroupfunctions.cpp -------------------------------------------------------------------------------- /limereport/lrgroupfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrgroupfunctions.h -------------------------------------------------------------------------------- /limereport/lritemdesignintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lritemdesignintf.cpp -------------------------------------------------------------------------------- /limereport/lritemdesignintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lritemdesignintf.h -------------------------------------------------------------------------------- /limereport/lritemscontainerdesignitf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lritemscontainerdesignitf.cpp -------------------------------------------------------------------------------- /limereport/lritemscontainerdesignitf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lritemscontainerdesignitf.h -------------------------------------------------------------------------------- /limereport/lrpagedesignintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrpagedesignintf.cpp -------------------------------------------------------------------------------- /limereport/lrpagedesignintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrpagedesignintf.h -------------------------------------------------------------------------------- /limereport/lrpageinitintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrpageinitintf.h -------------------------------------------------------------------------------- /limereport/lrpageitemdesignintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrpageitemdesignintf.cpp -------------------------------------------------------------------------------- /limereport/lrpageitemdesignintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrpageitemdesignintf.h -------------------------------------------------------------------------------- /limereport/lrpreparedpages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrpreparedpages.cpp -------------------------------------------------------------------------------- /limereport/lrpreparedpages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrpreparedpages.h -------------------------------------------------------------------------------- /limereport/lrpreparedpagesintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrpreparedpagesintf.h -------------------------------------------------------------------------------- /limereport/lrpreviewreportwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrpreviewreportwidget.cpp -------------------------------------------------------------------------------- /limereport/lrpreviewreportwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrpreviewreportwidget.h -------------------------------------------------------------------------------- /limereport/lrpreviewreportwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrpreviewreportwidget.ui -------------------------------------------------------------------------------- /limereport/lrpreviewreportwidget_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrpreviewreportwidget_p.h -------------------------------------------------------------------------------- /limereport/lrpreviewreportwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrpreviewreportwindow.cpp -------------------------------------------------------------------------------- /limereport/lrpreviewreportwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrpreviewreportwindow.h -------------------------------------------------------------------------------- /limereport/lrpreviewreportwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrpreviewreportwindow.ui -------------------------------------------------------------------------------- /limereport/lrreportdesignwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrreportdesignwidget.cpp -------------------------------------------------------------------------------- /limereport/lrreportdesignwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrreportdesignwidget.h -------------------------------------------------------------------------------- /limereport/lrreportdesignwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrreportdesignwindow.cpp -------------------------------------------------------------------------------- /limereport/lrreportdesignwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrreportdesignwindow.h -------------------------------------------------------------------------------- /limereport/lrreportdesignwindowintrerface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrreportdesignwindowintrerface.h -------------------------------------------------------------------------------- /limereport/lrreportengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrreportengine.cpp -------------------------------------------------------------------------------- /limereport/lrreportengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrreportengine.h -------------------------------------------------------------------------------- /limereport/lrreportengine_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrreportengine_p.h -------------------------------------------------------------------------------- /limereport/lrreportrender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrreportrender.cpp -------------------------------------------------------------------------------- /limereport/lrreportrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrreportrender.h -------------------------------------------------------------------------------- /limereport/lrreporttranslation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrreporttranslation.cpp -------------------------------------------------------------------------------- /limereport/lrreporttranslation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrreporttranslation.h -------------------------------------------------------------------------------- /limereport/lrscriptenginemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrscriptenginemanager.cpp -------------------------------------------------------------------------------- /limereport/lrscriptenginemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrscriptenginemanager.h -------------------------------------------------------------------------------- /limereport/lrscriptenginemanagerintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrscriptenginemanagerintf.h -------------------------------------------------------------------------------- /limereport/lrsettingdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrsettingdialog.cpp -------------------------------------------------------------------------------- /limereport/lrsettingdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrsettingdialog.h -------------------------------------------------------------------------------- /limereport/lrsettingdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrsettingdialog.ui -------------------------------------------------------------------------------- /limereport/lrsimplecrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrsimplecrypt.cpp -------------------------------------------------------------------------------- /limereport/lrsimplecrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrsimplecrypt.h -------------------------------------------------------------------------------- /limereport/lrvariablesholder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrvariablesholder.cpp -------------------------------------------------------------------------------- /limereport/lrvariablesholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/lrvariablesholder.h -------------------------------------------------------------------------------- /limereport/objectinspector/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/objectinspector/images/check.png -------------------------------------------------------------------------------- /limereport/objectinspector/images/check_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/objectinspector/images/check_w.png -------------------------------------------------------------------------------- /limereport/objectinspector/images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/objectinspector/images/clear.png -------------------------------------------------------------------------------- /limereport/objectinspector/images/edit_16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/objectinspector/images/edit_16.ico -------------------------------------------------------------------------------- /limereport/objectinspector/images/uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/objectinspector/images/uncheck.png -------------------------------------------------------------------------------- /limereport/objectinspector/lrobjectpropitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/objectinspector/lrobjectpropitem.h -------------------------------------------------------------------------------- /limereport/objectsbrowser/lrobjectbrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/objectsbrowser/lrobjectbrowser.cpp -------------------------------------------------------------------------------- /limereport/objectsbrowser/lrobjectbrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/objectsbrowser/lrobjectbrowser.h -------------------------------------------------------------------------------- /limereport/report.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/report.qrc -------------------------------------------------------------------------------- /limereport/scriptbrowser/images/Dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/scriptbrowser/images/Dialog.png -------------------------------------------------------------------------------- /limereport/scriptbrowser/images/function3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/scriptbrowser/images/function3.png -------------------------------------------------------------------------------- /limereport/scriptbrowser/lrscriptbrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/scriptbrowser/lrscriptbrowser.cpp -------------------------------------------------------------------------------- /limereport/scriptbrowser/lrscriptbrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/scriptbrowser/lrscriptbrowser.h -------------------------------------------------------------------------------- /limereport/scriptbrowser/lrscriptbrowser.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/scriptbrowser/lrscriptbrowser.qrc -------------------------------------------------------------------------------- /limereport/scriptbrowser/lrscriptbrowser.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/scriptbrowser/lrscriptbrowser.ui -------------------------------------------------------------------------------- /limereport/scripteditor/lrcodeeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/scripteditor/lrcodeeditor.cpp -------------------------------------------------------------------------------- /limereport/scripteditor/lrcodeeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/scripteditor/lrcodeeditor.h -------------------------------------------------------------------------------- /limereport/scripteditor/lrcompletermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/scripteditor/lrcompletermodel.cpp -------------------------------------------------------------------------------- /limereport/scripteditor/lrcompletermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/scripteditor/lrcompletermodel.h -------------------------------------------------------------------------------- /limereport/scripteditor/lrscripteditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/scripteditor/lrscripteditor.cpp -------------------------------------------------------------------------------- /limereport/scripteditor/lrscripteditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/scripteditor/lrscripteditor.h -------------------------------------------------------------------------------- /limereport/scripteditor/lrscripteditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/scripteditor/lrscripteditor.ui -------------------------------------------------------------------------------- /limereport/scripteditor/lrscripthighlighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/scripteditor/lrscripthighlighter.h -------------------------------------------------------------------------------- /limereport/serializators/lrserializatorintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/serializators/lrserializatorintf.h -------------------------------------------------------------------------------- /limereport/serializators/lrstorageintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/serializators/lrstorageintf.h -------------------------------------------------------------------------------- /limereport/serializators/lrxmlreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/serializators/lrxmlreader.cpp -------------------------------------------------------------------------------- /limereport/serializators/lrxmlreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/serializators/lrxmlreader.h -------------------------------------------------------------------------------- /limereport/serializators/lrxmlwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/serializators/lrxmlwriter.cpp -------------------------------------------------------------------------------- /limereport/serializators/lrxmlwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/serializators/lrxmlwriter.h -------------------------------------------------------------------------------- /limereport/translationeditor/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/translationeditor/images/add.png -------------------------------------------------------------------------------- /limereport/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/limereport/version.h.in -------------------------------------------------------------------------------- /lrdview/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/MainWindow.cpp -------------------------------------------------------------------------------- /lrdview/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/MainWindow.h -------------------------------------------------------------------------------- /lrdview/MainWindow.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/MainWindow.qrc -------------------------------------------------------------------------------- /lrdview/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/MainWindow.ui -------------------------------------------------------------------------------- /lrdview/SettingDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/SettingDialog.cpp -------------------------------------------------------------------------------- /lrdview/SettingDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/SettingDialog.h -------------------------------------------------------------------------------- /lrdview/SettingDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/SettingDialog.ui -------------------------------------------------------------------------------- /lrdview/XmlModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/XmlModel.cpp -------------------------------------------------------------------------------- /lrdview/XmlModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/XmlModel.h -------------------------------------------------------------------------------- /lrdview/images/PDF1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/images/PDF1.png -------------------------------------------------------------------------------- /lrdview/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/images/delete.png -------------------------------------------------------------------------------- /lrdview/images/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/images/design.png -------------------------------------------------------------------------------- /lrdview/images/design_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/images/design_black.png -------------------------------------------------------------------------------- /lrdview/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/images/edit.png -------------------------------------------------------------------------------- /lrdview/images/edit_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/images/edit_page.png -------------------------------------------------------------------------------- /lrdview/images/edit_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/images/edit_pattern.png -------------------------------------------------------------------------------- /lrdview/images/folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/images/folder_open.png -------------------------------------------------------------------------------- /lrdview/images/folder_open_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/images/folder_open_16.png -------------------------------------------------------------------------------- /lrdview/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/images/print.png -------------------------------------------------------------------------------- /lrdview/images/settings-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/images/settings-24.png -------------------------------------------------------------------------------- /lrdview/images/view.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/images/view.ico -------------------------------------------------------------------------------- /lrdview/images/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/images/view.png -------------------------------------------------------------------------------- /lrdview/images/zoomin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/images/zoomin.png -------------------------------------------------------------------------------- /lrdview/images/zoomout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/images/zoomout.png -------------------------------------------------------------------------------- /lrdview/lrdview.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/lrdview.pro -------------------------------------------------------------------------------- /lrdview/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/main.cpp -------------------------------------------------------------------------------- /lrdview/mainicon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/mainicon.rc -------------------------------------------------------------------------------- /lrdview/view.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/lrdview/view.ico -------------------------------------------------------------------------------- /qzint.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/qzint.pri -------------------------------------------------------------------------------- /tests/tests.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/tests/tests.pro -------------------------------------------------------------------------------- /tests/tst_callbackdstest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/tests/tst_callbackdstest.cpp -------------------------------------------------------------------------------- /tools/check_code_style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/tools/check_code_style.sh -------------------------------------------------------------------------------- /translations/limereport_ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/translations/limereport_ar.ts -------------------------------------------------------------------------------- /translations/limereport_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/translations/limereport_es.ts -------------------------------------------------------------------------------- /translations/limereport_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/translations/limereport_fr.ts -------------------------------------------------------------------------------- /translations/limereport_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/translations/limereport_pl.ts -------------------------------------------------------------------------------- /translations/limereport_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/translations/limereport_ru.ts -------------------------------------------------------------------------------- /translations/limereport_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fralx/LimeReport/HEAD/translations/limereport_zh.ts --------------------------------------------------------------------------------