Signals.newv

Warning gtk_signal_newv is deprecated and should not be used in newly-written code. Use g_signal_newv() instead. Creates a new signal type. (This is usually done in a class initializer.) This function take the types as an array, instead of a list following the arguments. Otherwise the same as gtk_signal_new().

Parameters

name string

the name of the signal to create.

signalFlags GtkSignalRunType

see gtk_signal_new().

objectType GType

the type of GtkObject to associate the signal with.

functionOffset uint

how many bytes the function pointer is in the class structure for this type.

returnVal GType

the type of the return value, or GTK_TYPE_NONE if you don't want a return value.

args GType[]

an array of GtkTypes, describing the prototype to the callbacks.

Return Value

Type: uint

the signal id.

Meta