Eneboo - Documentación para desarrolladores
|
00001 /*************************************************************************** 00002 FLReportEngine.h 00003 ------------------- 00004 begin : jue jun 27 2002 00005 copyright : (C) 2002-2005 by InfoSiAL S.L. 00006 email : mail@infosial.com 00007 ***************************************************************************/ 00008 /*************************************************************************** 00009 * This program is free software; you can redistribute it and/or modify * 00010 * it under the terms of the GNU General Public License as published by * 00011 * the Free Software Foundation; version 2 of the License. * 00012 ***************************************************************************/ 00013 /*************************************************************************** 00014 Este programa es software libre. Puede redistribuirlo y/o modificarlo 00015 bajo los términos de la Licencia Pública General de GNU en su 00016 versión 2, publicada por la Free Software Foundation. 00017 ***************************************************************************/ 00018 00019 #ifndef FLREPORTENGINE_H 00020 #define FLREPORTENGINE_H 00021 00022 #include <qdom.h> 00023 00024 #include "mreportengine.h" 00025 #include "mreportviewer.h" 00026 00027 class FLSqlCursor; 00028 class FLSqlQuery; 00029 class FLSqlQueryInterface; 00030 class FLDomNodeInterface; 00031 class FLPicture; 00032 class FLReportEngine; 00033 class FLReportPages; 00034 class FLReportEnginePrivate; 00035 00047 class FLReportEngine: public MReportEngine 00048 { 00049 Q_OBJECT 00050 00051 public: 00052 00056 FLReportEngine(QObject *parent = 0); 00057 00061 ~FLReportEngine(); 00062 00069 bool setReportData(FLSqlQuery *q); 00070 00077 bool setFLReportData(QDomNode n); 00078 00085 bool setReportData(FLSqlCursor *t); 00086 00095 bool setFLReportTemplate(const QString &t); 00096 00105 bool setFLReportTemplate(QDomNode n); 00106 00113 FLSqlQuery *rptQueryData() const; 00114 00118 QString rptNameTemplate() const; 00119 00125 QDomDocument *rptXmlData() const { 00126 return rd; 00127 } 00128 00134 QDomDocument *rptXmlTemplate() const { 00135 return rt; 00136 } 00137 00138 public slots: 00139 00140 // Intefaz scripts 00141 bool setReportData(FLSqlQueryInterface *q); 00142 bool setReportData(FLDomNodeInterface *n); 00143 bool setReportTemplate(const QString &t); 00144 bool setReportTemplate(FLDomNodeInterface *n); 00145 FLDomNodeInterface *reportData() const; 00146 FLDomNodeInterface *reportTemplate() const; 00147 00164 FLReportPages *renderReport(int initRow = 0, 00165 int initCol = 0, 00166 bool fillRecords = false, 00167 FLReportPages *pages = 0); 00168 // Intefaz scripts 00169 00170 private: 00171 00172 FLReportEnginePrivate *d; 00173 }; 00174 00175 #endif