ultimatepp/bazaar/CtrlPosTest2/CtrlPosTest2.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

30 lines
709 B
C++

#ifndef _CtrlPosTest2_CtrlPosTest2_h
#define _CtrlPosTest2_CtrlPosTest2_h
#include <CtrlLib/CtrlLib.h>
using namespace Upp;
#include <CtrlPos/CtrlPos.h>
#include <AutoScroller/AutoScroller.hpp>
#define LAYOUTFILE <CtrlPosTest2/CtrlPosTest2.lay>
#include <CtrlCore/lay.h>
class CtrlPosTest2 : public WithMainLay<TopWindow> {
public:
typedef CtrlPosTest2 CLASSNAME;
CtrlPosTest2();
virtual void Activate();
//keep the visiting control separated from the CtrlFinder (aka CtrlPos)
//so simply visiting this TopWindow is not possible (cause of Ctrl Tree search from bottom)
AutoScroller<ParentCtrl> sc;
WithCtrlPosTest2Layout<ParentCtrl> vis;
CtrlPos hk;
};
#endif