mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
23 lines
384 B
C++
23 lines
384 B
C++
#ifndef _TabCtrl_TabCtrl_h
|
|
#define _TabCtrl_TabCtrl_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <TabCtrl/TabCtrl.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
struct TabCtrlTest : public WithTabCtrlLayout<TopWindow> {
|
|
Button b;
|
|
ArrayCtrl arr;
|
|
|
|
Array<Button> ins;
|
|
|
|
void AddTab();
|
|
|
|
typedef TabCtrlTest CLASSNAME;
|
|
TabCtrlTest();
|
|
};
|
|
|
|
#endif
|