Signals.emitv

Warning gtk_signal_emitv is deprecated and should not be used in newly-written code. Use g_signal_emitv() instead. Emits a signal. This causes the default handler and user-connected handlers to be run. This differs from gtk_signal_emit() by taking an array of GtkArgs instead of using C's varargs mechanism.

class Signals
static
void
emitv

Parameters

object ObjectGtk

the object to emit the signal to.

signalId uint

the signal identifier.

args GtkArg[]

an array of GtkArgs, one for each parameter, followed by one which is a pointer to the return type.

Meta