ultimatepp/bazaar/AutoScrollerTest/AutoScrollerTest.h
klugier 91768046b8 Bazaar: AutoScroller example is now easier to understand.
git-svn-id: svn://ultimatepp.org/upp/trunk@15203 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-10-04 20:32:04 +00:00

28 lines
597 B
C++

#ifndef _AutoScrollerTest_AutoScrollerTest_h
#define _AutoScrollerTest_AutoScrollerTest_h
#include <CtrlLib/CtrlLib.h>
#include <AutoScroller/AutoScroller.h>
namespace Upp {
#define LAYOUTFILE <AutoScrollerTest/AutoScrollerTest.lay>
#include <CtrlCore/lay.h>
#define IMAGEFILE <AutoScrollerTest/AutoScrollerTest.iml>
#include <Draw/iml_header.h>
class AutoScrollerTest : public WithAutoScrollerTestLayout<TopWindow> {
public:
AutoScrollerTest();
void Toggle();
public:
AutoScroller<ParentCtrl> scroller;
WithTestLay<ParentCtrl> scroller_view;
};
}
#endif