Class method
GtkWidgetClassbind_template_callback_full
Declaration [src]
void
gtk_widget_class_bind_template_callback_full (
  GtkWidgetClass* widget_class,
  const char* callback_name,
  GCallback callback_symbol
)
Description [src]
Associates a name to be used in GtkBuilder XML with a symbol.
This function is not supported after gtk_widget_class_set_template_scope()
has been used on widget_class.
See gtk_builder_cscope_add_callback_symbol().
Note that this must be called from a composite widget classes
class initializer after calling gtk_widget_class_set_template().
Parameters
- callback_name
- 
            Type: const char*Name of the callback as expected in the template XML. The data is owned by the caller of the method. The value is a NUL terminated UTF-8 string. 
- callback_symbol
- 
            Type: GCallbackThe callback symbol.