GtkBuilder module.

Robert Carr

API Reference
Examples

API Reference

The GtkBuilder extends Gtk.GtkBuilder.prototype to implement a custom automatic signal connection function, which is useful in Seed. It does not provide any methods or types, so there is no need to save it's namespace, as of such it can be imported as follows.

	imports.gtkbuilder;
      

builder.connect_signals (object, user_data)

Connects the signals present in the GtkBuilder to the functions present in object. That is to say, a signal with handler name, 'ok_button_clicked' will be connected to the 'ok_button_clicked' property of object.

object

The object containing the signal handlers

user_data

The user_data to use in connecting the signals