Method
IdeSignalGroupconnect_object
Declaration
void
ide_signal_group_connect_object (
IdeSignalGroup* self,
const gchar* detailed_signal,
GCallback c_handler,
gpointer object,
GConnectFlags flags
)
Description
Connects callback
to the signal detailed_signal
on the target object of self
.
Ensures that the object
stays alive during the call to callback
by temporarily adding a reference count. When the object
is destroyed
the signal handler will automatically be removed.
See: g_signal_connect_object().
This method is not directly available to language bindings.
Parameters
detailed_signal
-
Type:
const gchar*
A string of the form “signal-name::detail”
The data is owned by the caller of the function. The value is a NUL terminated UTF-8 string. c_handler
-
Type:
GCallback
The
GCallback
to connect. object
-
Type:
gpointer
The
GObject
to pass as data tocallback
calls.The argument can be NULL
.The data is owned by the caller of the function. flags
-
Type:
GConnectFlags
No description available.