mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-15 14:22:57 -06:00
38 lines
805 B
C++
38 lines
805 B
C++
#ifndef _CtrlFinderTest_CtrlFinderTest_h
|
|
#define _CtrlFinderTest_CtrlFinderTest_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <CtrlFinderTest/CtrlFinderTest.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
#include <CtrlFinder/CtrlFinder.h>
|
|
|
|
class CtrlFinderTest : public TopWindow {
|
|
public:
|
|
typedef CtrlFinderTest CLASSNAME;
|
|
CtrlFinderTest();
|
|
|
|
void VisitCB();
|
|
void ClearCB();
|
|
void EnableCB();
|
|
void DisableCB();
|
|
void DeepCB();
|
|
void IgnoreFrameCB();
|
|
|
|
void ToInfo(const String& s);
|
|
void OnSelect(Ctrl& c, Point p, dword keyflags);
|
|
void OnMissed(Point p, dword keyflags);
|
|
|
|
WithCtrlFinderTestLayout<ParentCtrl> vis;
|
|
FrameLeft<WithLeftBarLay<ParentCtrl> > sb;
|
|
CtrlFinder hk;
|
|
|
|
FrameTop<WithControlLay<ParentCtrl> > ft;
|
|
EditString es;
|
|
};
|
|
|
|
#endif
|
|
|