mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
28 lines
509 B
C++
28 lines
509 B
C++
#include "VegaMain.h"
|
|
|
|
|
|
#define IMAGECLASS VegaImg
|
|
#define IMAGEFILE <ForlanoVega/Vega.iml>
|
|
#include <Draw/iml_source.h>
|
|
|
|
//you can have it as standard.... and even do not change
|
|
VegaMain::VegaMain()
|
|
{
|
|
CtrlLayout(*this, "Forlano Vega Main");
|
|
spls.Vert();
|
|
spls.SetPos(8000);
|
|
// spls.Vert(tabs, consoleFrame);
|
|
spls.Add(tabs);
|
|
spls.Add(consoleFrame);
|
|
rubbish = " ";
|
|
|
|
SetBars();
|
|
SetTabs();
|
|
Init();
|
|
BackPaint();
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
VegaMain().Sizeable().Zoomable().Run();
|
|
}
|