mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
19 lines
263 B
C++
19 lines
263 B
C++
#include "RectCtrlTest.h"
|
|
|
|
|
|
|
|
RectCtrlTest::RectCtrlTest()
|
|
{
|
|
CtrlLayout(*this, "Window title");
|
|
Sizeable().Zoomable();
|
|
|
|
Rect r = rc.GetRect();
|
|
r.Deflate(r.Width()/4, r.Height()/4);
|
|
rc.SetData(r);
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
RectCtrlTest().Run();
|
|
}
|
|
|