WebView.connectLeaveFullscreen

gulong connectLeaveFullscreen(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] : webkit.web_view.WebView))) && Parameters!T.length < 2)

Connect to LeaveFullscreen signal.

Emitted when the #WebKitWebView is about to restore its top level window out of its full screen state. This signal can be used by client code to restore widgets hidden during the #WebKitWebView::enter-fullscreen stage for instance.

Parameters

callbacksignal callback delegate or function to connect bool callback(webkit.web_view.WebView webView) webView the instance the signal is connected to (optional) Returns true to stop other handlers from being invoked for the event. false to continue emission of the event.
afterYes.After to execute callback after default handler, No.After to execute before (default)

Returns

Signal ID