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 method. The value is a NUL terminated UTF-8 string. c_handler-
Type:
GCallbackThe
GCallbackto connect. object-
Type:
gpointerThe
GObjectto pass as data tocallbackcalls.The argument can be NULL.The data is owned by the caller of the method. flags-
Type:
GConnectFlagsNo description available.