Fork of LimeReport. Used to propose changes to upstream.
Go to file
Sergey Popovichev 20fe567ab2 1.3.1
2016-02-17 10:28:27 +03:00
demo/r1 1.3.1 2016-02-17 10:28:27 +03:00
include 1.2.1 2016-02-17 10:19:50 +03:00
lib 1.0.1.7 2016-02-17 10:11:00 +03:00
src 1.3.1 2016-02-17 10:28:27 +03:00
translations 1.3.1 2016-02-17 10:28:27 +03:00
.gitignore Initial commit 2016-02-08 11:51:58 +03:00
COPYING 1.1.1 2016-02-17 10:18:19 +03:00
LICENSE 1.1.1 2016-02-17 10:18:19 +03:00
limereport.pro 1.3.1 2016-02-17 10:28:27 +03:00
qzint.pri 1.0.1.7 2016-02-17 10:11:00 +03:00
README.md 1.0.1.7 2016-02-17 10:11:00 +03:00
report-lib.pri 1.2.1 2016-02-17 10:19:50 +03:00

LimeReport

##How to use it

  1. Build limereport.pro. It will create a limereport shared library
  2. In your project connect the limereport library then in source code add:
  #include "lrreportengine.h" to add report engine 
  #include "lrcallbackdatasourceintf.h" if you want use callback datasources

  report = new LimeReport::ReportEngine(this); to create reportengine
  report->dataManager()->addModel("string_list",stringListModel,true); to add datasource to report engine
  report->loadFromFile("File name"); to load report template file
  report->previewReport(); to generate report and preview
  report->printReport(); to print report 	 

For more samples see a demo