Glade.this

Creates a new GladeXML object (and the corresponding widgets) from the buffer buffer. Optionally it will only build the interface from the widget node root (if it is not NULL). This feature is useful if you only want to build say a toolbar or menu from the XML document, but not the window it is embedded in.

  1. this(GladeXML* gladeXML)
  2. this(string fname, string root, string domain)
  3. this(string buffer, int size, string root, string domain)
    class Glade
    this
    (
    string buffer
    ,
    int size
    ,
    string root
    ,
    string domain
    )

Parameters

buffer string

the memory buffer containing the XML document.

size int

the size of the buffer.

root string

the widget node in buffer to start building from (or NULL)

domain string

the translation domain to use for this interface (or NULL)

Throws

ConstructionException GTK+ fails to create the object.

Meta