mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
28 lines
597 B
C++
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
|