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 70 71 72 73 74
|
class:: HelpBrowser
categories:: HelpSystem, GUI>Interfaces
related:: Classes/SCDoc
summary:: Browse the SuperCollider help documentation
description::
HelpBrowser is a 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.
There are two different help browsers in SuperCollider: the help browser built into SCIDE, and this HelpBrowser class implemented with sclang's GUI features. Both are implemented with the same underlying Qt WebEngine browser.
Since the Qt WebEngine dependency is hefty and difficult to install on some systems, it is possible for sclang to have been built without WebView support (using the CMake flag code:: -DSC_USE_QTWEBENGINE=OFF :: at compile). If so, attempting to invoke this class will throw an error.
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.
|