Package ch.bailu.gtk.gobject
Interface ConnectFlags
public interface ConnectFlags
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
If set, the handler should be called after the
default handler of the signal.static final int
Default behaviour (no special flags).static final int
If set, the instance and data should be swapped when
calling the handler; see g_signal_connect_swapped() for an example.
-
Field Details
-
DEFAULT
static final int DEFAULTDefault behaviour (no special flags). Since: 2.74- See Also:
-
AFTER
static final int AFTERIf set, the handler should be called after the
default handler of the signal. Normally, the handler is called before
the default handler.- See Also:
-
SWAPPED
static final int SWAPPEDIf set, the instance and data should be swapped when
calling the handler; see g_signal_connect_swapped() for an example.- See Also:
-