Method

IdeSignalGroupconnect_data

Declaration

void
ide_signal_group_connect_data (
  IdeSignalGroup* self,
  const gchar* detailed_signal,
  GCallback c_handler,
  gpointer data,
  GClosureNotify notify,
  GConnectFlags flags
)

Description

Connects callback to the signal detailed_signal on the target instance of self.

See: g_signal_connect_data().

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.

data

Type: gpointer

The data to pass to callback calls.

The argument can be NULL.
The data is owned by the caller of the function.
notify

Type: GClosureNotify

Function to be called when disposing of self.

flags

Type: GConnectFlags

The flags used to create the signal connection.