Package: gtk

Function gtk-application-inhibit

Lambda List

gtk-application-inhibit (application window flags reason)

Arguments

application -- a gtk-application instance
window -- a gtk-window widget, or nil
flags -- what gtk-application-inhibit-flags types of user actions should be inhibited
reason -- a short, human readable string that explains why these operations are inhibited

Return Value

A non-zero unsigned integer cookie that is used to uniquely identify this request. It should be used as an argument to the gtk-application-uninhibit function in order to remove the request. If the platform does not support inhibiting or the request failed for some reason, 0 is returned.

Details

Inform the session manager that certain types of actions should be inhibited. This is not guaranteed to work on all platforms and for all types of actions.

Applications should invoke this method when they begin an operation that should not be interrupted, such as creating a CD or DVD. The types of actions that may be blocked are specified by the flags argument. When the application completes the operation it should call the gtk-application-uninhibit function to remove the inhibitor. Note that an application can have multiple inhibitors, and all of them must be individually removed. Inhibitors are also cleared when the application exits.

Applications should not expect that they will always be able to block the action. In most cases, users will be given the option to force the action to take place.

Reasons should be short and to the point.

If the window argument is given, the session manager may point the user to this window to find out more about why the action is inhibited.
 

See also

*2021-10-11