On 2017-08-11 13:00, Mr. Pib wrote:
How can one include external files such as glade, icons, images that are
static in nature in to the binary but not require extraction on program
run to be used?

gtk's builder doesn't seem to take an in memory representation of glade
files and building a pixbuf seems quite over the top to do such simple
things?


including the glade UI/XML defs to the executable is simple, compile with -J. switch and:


immutable string UIdefs = import("myuidefs.glade");
...
main(){
        ...
        builder.addFromString( UIdefs );
        ...

Reply via email to