ultimatepp/bazaar/CtrlPosTest/CtrlPosTest.h
kohait 0e787eb5f6 bazaar: AutoScroller scope simplification, CtrlFinder filter bugfix, CtrlPos: filter bugfix and SPACE key deselection
git-svn-id: svn://ultimatepp.org/upp/trunk@3859 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2011-09-13 16:45:17 +00:00

43 lines
827 B
C++

#ifndef _CtrlPosTest_CtrlPosTest_h
#define _CtrlPosTest_CtrlPosTest_h
#include <CtrlLib/CtrlLib.h>
using namespace Upp;
#define LAYOUTFILE <CtrlPosTest/CtrlPosTest.lay>
#include <CtrlCore/lay.h>
#include <CtrlPos/CtrlPos.h>
class CtrlPosTest : public TopWindow {
public:
typedef CtrlPosTest CLASSNAME;
CtrlPosTest();
virtual void Activate();
void VisitCB();
void ClearCB();
void EnableCB();
void DisableCB();
void DeepCB();
void FrameCB();
void ViewCB();
void ToInfo(const String& s);
void OnSelect(Ctrl& c, Point p, dword keyflags);
WithCtrlPosTestLayout<ParentCtrl> vis;
FrameLeft<WithLeftBarLay<ParentCtrl> > sb;
CtrlPos hk;
FrameTop<WithControlLay<StaticRect> > ft;
EditString es;
StaticText st;
FrameBottom<WithBotLay<ParentCtrl> > bot;
};
#endif