mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
32 lines
670 B
C++
32 lines
670 B
C++
#ifndef _CtrlMoverTest_CtrlMoverTest_h
|
|
#define _CtrlMoverTest_CtrlMoverTest_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <CtrlMoverTest/CtrlMoverTest.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
#include <CtrlMover/CtrlMover.h>
|
|
|
|
class CtrlMoverTest : public WithCtrlMoverTestLayout<TopWindow> {
|
|
public:
|
|
typedef CtrlMoverTest CLASSNAME;
|
|
CtrlMoverTest();
|
|
|
|
void VisitCB();
|
|
void ClearCB();
|
|
void EnableCB();
|
|
void DisableCB();
|
|
|
|
void ToInfo(const String& s);
|
|
void OnSelect(Ctrl& c, Point p, dword keyflags);
|
|
void OnMissed(Point p, dword keyflags);
|
|
|
|
CtrlMover hk;
|
|
FrameTop<WithControlLay<ParentCtrl> > ft;
|
|
};
|
|
|
|
#endif
|
|
|