begin documenting iOS specific words in the glossary

FossilOrigin-Name: 65cec605d2ce8116c9a5d9244470f1b7e499da69edb08da44fba84e39dcb772e
This commit is contained in:
crc 2018-02-05 19:51:04 +00:00
parent 25e75074e5
commit 07cdce0210
2 changed files with 26 additions and 0 deletions

View file

@ -1674,6 +1674,30 @@ Class Handler: class:word | Namespace: global | Interface Layer: all
----------------------------------------------------------------
editor:set-font-face
Data: s-
Addr: -
Float: -
Set the font to use in the editor and toolbars. If the font fails to load, RETRO will fall back to a safe default.
Class Handler: class:word | Namespace: editor | Interface Layer: iOS
----------------------------------------------------------------
editor:set-font-size
Data: n-
Addr: -
Float: -
Set the size of the font to use in the editor and toolbars.
Class Handler: class:word | Namespace: editor | Interface Layer: iOS
----------------------------------------------------------------
eq?
Data: nn-f

View file

@ -132,6 +132,8 @@ drop-pair nn- - - Remove top two items on the stack. class:word {n/a} {n/a} gl
dump-stack - - - Display the items on the data stack. class:word {n/a} {n/a} global all
dup n-nn - - Duplicate the top item on the stack. class:primitive {n/a} {n/a} global all
dup-pair nm-nmnm - - Duplicate the top two items on the stack. class:word {n/a} {n/a} global all
editor:set-font-face s- - - Set the font to use in the editor and toolbars. If the font fails to load, RETRO will fall back to a safe default. class:word {n/a} {n/a} editor iOS
editor:set-font-size n- - - Set the size of the font to use in the editor and toolbars. class:word {n/a} {n/a} editor iOS
eq? nn-f - - Compare two values for equality. Returns `TRUE` if they are equal or `FALSE` otherwise. class:primitive #1 #2 eq?\n $a $b eq? {n/a} global all
err:notfound - - - Error handler. Called when a word is not found by `interpret`. class:word {n/a} {n/a} err all
f:* - - FF-F Multiply two floating point numbers, returning the result. class:word .3.1415 .22 f:* {n/a} f rre

1 * nn-n - - Multiply `n1` by `n2` and return the result. class:primitive #2 #6 *\n #-1 #100 * {n/a} global all
132 dump-stack - - - Display the items on the data stack. class:word {n/a} {n/a} global all
133 dup n-nn - - Duplicate the top item on the stack. class:primitive {n/a} {n/a} global all
134 dup-pair nm-nmnm - - Duplicate the top two items on the stack. class:word {n/a} {n/a} global all
135 editor:set-font-face s- - - Set the font to use in the editor and toolbars. If the font fails to load, RETRO will fall back to a safe default. class:word {n/a} {n/a} editor iOS
136 editor:set-font-size n- - - Set the size of the font to use in the editor and toolbars. class:word {n/a} {n/a} editor iOS
137 eq? nn-f - - Compare two values for equality. Returns `TRUE` if they are equal or `FALSE` otherwise. class:primitive #1 #2 eq?\n $a $b eq? {n/a} global all
138 err:notfound - - - Error handler. Called when a word is not found by `interpret`. class:word {n/a} {n/a} err all
139 f:* - - FF-F Multiply two floating point numbers, returning the result. class:word .3.1415 .22 f:* {n/a} f rre