mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
30 lines
709 B
C++
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
|
|
|