mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
37 lines
628 B
C++
37 lines
628 B
C++
#ifndef _TestScatter_TestScatter_h
|
|
#define _TestScatter_TestScatter_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
#include <Scatter/Scatter.h>
|
|
|
|
#define LAYOUTFILE <TestScatter/TestScatter.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
|
|
|
|
|
|
class TestScatter : public WithTestScatterLayout<TopWindow> {
|
|
|
|
public:
|
|
typedef TestScatter CLASSNAME;
|
|
TestScatter();
|
|
void ModifPoint();
|
|
void AddPoint();
|
|
void RemovePoint();
|
|
void InsertPoint();
|
|
void ChangeColor();
|
|
void ChangeMarkColor();
|
|
void Join();
|
|
|
|
void RemoveSeries();
|
|
void RemoveFunct();
|
|
|
|
void Zoom();
|
|
|
|
|
|
void SaveJPG();
|
|
void SavePNG();
|
|
void Preview();
|
|
};
|
|
|
|
#endif
|