mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
29 lines
523 B
C++
29 lines
523 B
C++
#ifndef _PieTest_PieTest_h
|
|
#define _PieTest_PieTest_h
|
|
|
|
#include <Scatter/Pie.h>
|
|
#include <Report/Report.h>
|
|
#include <PdfDraw/PdfDraw.h>
|
|
|
|
#define LAYOUTFILE <PieTest/PieTest.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
|
|
|
|
class PieTest : public WithPieTestLayout<TopWindow> {
|
|
public:
|
|
typedef PieTest CLASSNAME;
|
|
PieTest();
|
|
void EditCategory();
|
|
void AddCategory();
|
|
void RemoveCategory();
|
|
void PrintPreview();
|
|
void ExportPNG();
|
|
#ifdef PLATFORM_WIN32
|
|
void ExportEMF();
|
|
#endif
|
|
void Help();
|
|
};
|
|
|
|
#endif
|
|
|