Hello, core maybe you can be one of the one/or two people needed ? You are experienced on the topic. There's people working on the various parts of the XML description to create "visual" editors for almost any kind of xml resource file in CEGUI. The current editor focus on one aspect the l...
Hello, like lindquist says, I am new and I am not able at the moment to contribute large change to the system. I am discovering step by step the internals of this wonderfull beast and learn a lot by trying helping on IRC. We have a talk before I join the team with CE, lindquist on this topics and di...
There is no method named drawself in cegui_mk2-0.4.1 and cvs HEAD version bash-3.00$ for name in `find -name "*.h"`; do grep "drawself" $name ; done bash-3.00$ for name in `find -name "*.cpp"`; do grep "drawself" $name ; done bash-3.00$
Another approach is to write a plugin for the gimp. I know it can handle imagemap and export html code for it. It might as well be used for exporting CEGUI imageset.
a definition is a preprocessor command of the form #define var value. The preprocessor will make use of this definition and substitute every where in the code var by value. There is possibly to kind of definition: macro and constant. For a detailed description of the preprocessor you might have a lo...
If you need to remove the const you must do the conversion in two step (the order is not important):
static_cast<WindowEventArgs&>(const_cast<CEGUI::EventArgs&>(arg)).
You can most of the time do a static_cast instead of a dynamic_cast.
CEGUI support the loading of gif image using DevIL library. The image will be converted into a square texture power of two (but CEGUI does not take in account the size update). You can then add a Static image. The second solution consists in using falagard skining to add a frame with your background.