GimpUi.context_help

function context_help(widget: Gtk.Widget): void {
    // Gjs 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.