User talk:Baxissimo
From CEGUI Wiki - Crazy Eddie's GUI System (Open Source)
I'm interested in making CEGUI easier to use.
I'm currently mulling over how to provided a simplified interface to CEGUI that lets you get going trivially in a jiff.
For instance, I'm thinking you should be able to do something like this in your code:
using namespace CEGUI_EZ; CEGUI_EZ::Initialize(); EZGUI *gui = new EZGUI(); w = new Panel(gui, "Test GUI"); new Button(w, "Click me", buttoncb); new Slider(w, "Frob me", slidercb); Menu* m = new Menu(w,"Options",menucb); new MenuItem(m, "Choice 1"); new MenuItem(m, "Choice 2"); new MenuItem(m, "Choice 3");
And you'd have a usable GUI of some sort that calls the specified callback functions when something happens.