 |
| Never Seen the Sunlight |
Joined: Mon Apr 28, 2008 5:52 am Posts: 510 Location: UK
|
|
Hi,
Glade only outputs a XML file and GtkBuilder can only read a XML file or XML data stored as a string. So to answer your question binary data is not supported. I would not think that there would be any performance to be gained by using a binary data file instead of an XML file but you will lose the ease of editing a XML file manually.
In an application you will normally call GtkBuilder to create a window and its widgets, get pointers to the relevant widgets and connect the signals. After that you normally ignore GtkBuilder until you need to create another window or batch of widgets. So you are not calling GtkBuilder repeatedly.
In an application I am working on I need fairly good performance as I am playing back many tracks of audio and MIDI which can be triggered at any time and also updating the display. I am also using GtkBuilder and do not find it a problem with performance.
_________________ E.
|
|