How do you create your own skin? Can you make them have rounded corners? How do you remove the minimise and maximise buttons (which don't seem to do anything - how do you get them to work?)?
Thanks.
GUI Skin?
To hide the buttons:
Code: Select all
window = guienv->addWindow( core::rect< s32 >( 150,150, 300,320), true, L"Mywindow", 0, -1);
window->getMaximizeButton()->setVisible(false);
window->getMinimizeButton()->setVisible(false);