Glade.this

Creates a new GladeXML object (and the corresponding widgets) from the XML file fname. 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 file, but not the window it is embedded in. Note also that the XML parse tree is cached to speed up creating another GladeXML object for the same file

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

Parameters

fname string

the XML file name.

root string

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

domain string

the translation domain for the XML file (or NULL for default)

Meta