mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
27 lines
410 B
C++
27 lines
410 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
class Test : public TopWindow
|
|
{
|
|
public:
|
|
typedef Test CLASSNAME;
|
|
Splitter splitter;
|
|
LineEdit source;
|
|
ArrayCtrl chart;
|
|
LineEdit textMetric;
|
|
|
|
Test();
|
|
};
|
|
|
|
Test::Test()
|
|
{
|
|
splitter.Vert() << source << chart << textMetric;
|
|
Add(splitter.SizePos());
|
|
Sizeable().Zoomable();
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
Test().Run();
|
|
}
|