This is GUI editor.
Code: Select all
Code generated using IRRGI - The ultimate GUI editor for irrlicht
//#####BEGIN GUI CODE#####
IGUIScrollBar *scrH1 = env->addScrollBar(false,rect<s32>(56, 16, 176, 32), 0);
scrH1->setMax();
env->addStaticText(L"Red", rect<s32>(8, 16, 40, 32), false, false, 0);
env->addStaticText(L"Green", rect<s32>(8, 40, 48, 56), false, false, 0);
IGUIScrollBar *scrH2 = env->addScrollBar(false,rect<s32>(56, 40, 176, 56), 0);
scrH2->setMax();
env->addStaticText(L"Blue", rect<s32>(8, 64, 40, 80), false, false, 0);
IGUIScrollBar *scrH3 = env->addScrollBar(false,rect<s32>(56, 64, 176, 80), 0);
scrH3->setMax();
env->addCheckBox(1,rect<s32>(8, 240, 176, 256),0,-1,L"Use global coordinates");
env->addEditBox(L"100.0", rect<s32>(24, 200, 72, 224), true, 0);
env->addStaticText(L"X", rect<s32>(8, 208, 21, 228), false, false, 0);
env->addStaticText(L"Y", rect<s32>(88, 208, 104, 232), false, false, 0);
env->addEditBox(L"20.0", rect<s32>(104, 200, 152, 224), true, 0);
env->addStaticText(L"Z", rect<s32>(168, 208, 181, 228), false, false, 0);
env->addEditBox(L"0.0", rect<s32>(184, 200, 229, 224), true, 0);
IGUIComboBox *combo1 = env->addComboBox(rect<s32>(120, 96, 237, 118), 0);
env->addStaticText(L"Select driver:", rect<s32>(8, 96, 162.0909, 119.1818), false, false, 0);
IGUIListBox *list1 = env->addListBox(rect<s32>(120, 128, 240, 180), 0);
env->addStaticText(L"Select resolution", rect<s32>(8, 128, 162.0909, 151.1818), false, false, 0);
env->addButton(rect<s32>(192, 32, 280, 64), 0, -1, L"Set color");
IGUIScrollBar *scrV1 = env->addScrollBar(true,rect<s32>(256, 104, 272, 200), 0);
scrV1->setMax();
//#####END GUI CODE#####