I'm searching for that since 2 hours now. I have seen the GUI Editor example but I cannot find a Sourcecode of it... So I want to ask you if Irrlicht has an XML-Reader built in which can read GUI Structures directly from XML Files?
No but it's incredibly simple to write an XML parser to get that information and construct the corresponding GUI elements anyway.
If you look at the MeshViewer tutorial there's some XML parsing in there (not sure if there's any other XML tutorials, probably some in irrXML i guess).
If I want to make an Interface linke in WoW, where some things are on the right side of the screen, but If I want to let the user rescale the window so how can I realize thet for example a button is always 60% away from the right border
If the window is 1000 * 1000 it is on 400 from left. But what if the user rescales the window to 2000 * 2000 - if I write 400 in the XML it will now be 80% away from the right border
Look at the meshviewer example, the Irrlicht logo is always aligned to the bottom left corner of the window even if you resize it.
Or you could read the XML you pasted