mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
24 lines
400 B
C++
24 lines
400 B
C++
#ifndef _GeomTest_GeomTest_h
|
|
#define _GeomTest_GeomTest_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
|
|
|
|
|
|
|
|
class GeomTest : public TopWindow {
|
|
public:
|
|
Vector<Pointf> polygon;
|
|
Point point;
|
|
bool paintin;
|
|
|
|
virtual void LeftDown(Point p, dword);
|
|
virtual void MouseMove(Point p, dword);
|
|
virtual void Paint(Draw& w);
|
|
|
|
typedef GeomTest CLASSNAME;
|
|
GeomTest();
|
|
};
|
|
|
|
#endif
|