mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
45 lines
965 B
C++
45 lines
965 B
C++
#ifndef _Reports3_RepGen_h_
|
|
#define _Reports3_RepGen_h_
|
|
|
|
#include <Report/Report.h>
|
|
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
|
|
//Module maximized window
|
|
|
|
|
|
class RepGen {
|
|
private:
|
|
String tpl,tplb,tplbr;
|
|
String result,resultb;
|
|
bool ENDCALCULATE;
|
|
bool IN_BP_LOOP;
|
|
|
|
void PCRE_Replace(String& where, String s_from,String s_to);
|
|
public:
|
|
typedef RepGen CLASSNAME;
|
|
RepGen() {};
|
|
void SetTemplate(String tpl0) { tpl=Join(Split(tpl0,'\n'),""); };
|
|
|
|
Callback RepGenReportStart;
|
|
Callback RepGenReportVar;
|
|
Callback RepGenReportFinish;
|
|
Callback RepGenCalculateStart;
|
|
Callback RepGenCalculateBody;
|
|
Callback RepGenCalculateFinish;
|
|
|
|
void SubstVar(String s_from,String s_to) {
|
|
if (!IN_BP_LOOP)
|
|
PCRE_Replace(tpl, s_from, s_to);
|
|
else
|
|
PCRE_Replace(tplbr, s_from, s_to);
|
|
};
|
|
void PlaceImage (String s_from, Image im_to, Size rep_place = Size(0,0));
|
|
|
|
void LoopDone(bool indicator=true) { ENDCALCULATE = indicator; };
|
|
|
|
void Perform();
|
|
};
|
|
|
|
#endif
|