/usr/share/SuperCollider/HelpSource/Classes/HelpBrowser.schelp is in supercollider-common 1:3.8.0~repack-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | class:: HelpBrowser
categories:: HelpSystem, GUI>Interfaces
related:: Classes/SCDoc
summary:: Browse the SuperCollider help documentation
description::
HelpBrowser is the GUI help browser that lets you browse the documentation of SuperCollider. It is coupled with SCDoc to allow on-the-fly rendering of HTML help files.
classmethods::
private:: getOldWrapUrl, initClass
method:: instance
The singleton HelpBrowser instance.
method:: new
Create a new HelpBrowser instance with given home URL.
method:: defaultHomeUrl
Get or set the default home URL.
method:: openNewWindows
Get or set the default for "open in new windows" toggle.
method:: goTo
Go to url with singleton instance or a new window, depending on the code::openNewWindows:: setting.
method:: openHelpFor
Open the relevant help page for given text in the singleton HelpBrowser instance.
method:: openSearchPage
Open the help search page with given text in the singleton HelpBrowser instance.
method:: openBrowsePage
Open the category browser page in the singleton HelpBrowser instance.
argument:: category
An optional String to start at specified category, like "UGens>Filters"
method:: openHelpForMethod
Open help for specified method.
argument:: method
a link::Classes/Method::
instancemethods::
private:: init, openTextFile, startAnim, stopAnim
method:: homeUrl
Get or set the home URL.
method:: window
The GUI window for this HelpBrowser.
discussion::
Mainly useful for when you need to show the browser:
code::
HelpBrowser.instance.window.front;
::
method:: goTo
Go to specific URL. If the URL points to a file under link::Classes/SCDoc#*helpTargetDir:: it will be rendered on demand if needed.
method:: goHome
Go to the home URL.
method:: goBack
Go back.
method:: goForward
Go forward.
|