GimpUi.context_help

@accepts(Gtk.Widget)
@returns(none)
def context_help(widget):
    # Python wrapper for gimp_context_help()
  

This function invokes the context help inspector.

The mouse cursor will turn turn into a question mark and the user can click on any widget of the application which started the inspector.

If the widget the user clicked on has a @help_id string attached (see GimpUi.help_set_help_data), the corresponding help page will be displayed. Otherwise the help system will ascend the widget hierarchy until it finds an attached @help_id string (which should be the case at least for every window/dialog).

widget

Any Gtk.Widget on the screen.