Toolbar.connectFocusHomeOrEnd
gulong connectFocusHomeOrEnd(T)(T callback, Flag!"After" after = No.After) if (isCallable!T
&& is(ReturnType!T == bool)
&& (Parameters!T.length < 1 || (ParameterStorageClassTuple!T[0] == ParameterStorageClass.none && is(Parameters!T[0] == bool)))
&& (Parameters!T.length < 2 || (ParameterStorageClassTuple!T[1] == ParameterStorageClass.none && is(Parameters!T[1] : gtk.toolbar.Toolbar)))
&& Parameters!T.length < 3)Connect to FocusHomeOrEnd signal.
A keybinding signal used internally by GTK+. This signal can't be used in application code
Parameters
callback | signal callback delegate or function to connect bool callback(bool focusHome, gtk.toolbar.Toolbar toolbar) focusHome true if the first item should be focused (optional) toolbar the instance the signal is connected to (optional) Returns true if the signal was handled, false if not |
after | Yes.After to execute callback after default handler, No.After to execute before (default) |
Returns
Signal ID