Method
IdeSignalGroupconnect_swapped
Declaration
void
ide_signal_group_connect_swapped (
IdeSignalGroup* self,
const gchar* detailed_signal,
GCallback c_handler,
gpointer data
)
Description
Connects callback to the signal detailed_signal
on the target instance of self.
The instance on which the signal is emitted and data
will be swapped when calling callback.
See: g_signal_connect_swapped().
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. data-
Type:
gpointerThe data to pass to
callbackcalls.The argument can be NULL.The data is owned by the caller of the method.