Fork of LimeReport. Used to propose changes to upstream.
Go to file
Sergey Popovichev 9720c7bc4f readme.md
2016-02-17 10:07:26 +03:00
.gitignore Initial commit 2016-02-08 11:51:58 +03:00
LICENSE Initial commit 2016-02-08 11:51:58 +03:00
README.md readme.md 2016-02-17 10:07:26 +03:00

LimeReport

##How to use it

  • Build limereport.pro. It will create a limereport shared library
  • 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\r1