]> gitweb.factorcode.org Git - factor.git/blob - basis/ui/gadgets/editors/editors-docs.factor
Merge branch 'master' of git://factorcode.org/git/factor into new_ui
[factor.git] / basis / ui / gadgets / editors / editors-docs.factor
1 USING: documents help.markup help.syntax ui.gadgets
2 ui.gadgets.scrollers models strings ui.commands
3 ui.text colors fonts ;
4 IN: ui.gadgets.editors
5
6 HELP: editor
7 { $class-description "An editor is a control for editing a multi-line passage of text stored in a " { $link document } " model. Editors are crated by calling " { $link <editor> } "."
8 $nl
9 "Editors have the following slots:"
10 { $list
11     { { $snippet "font" } " - a " { $link font } "." }
12     { { $snippet "color" } " - a " { $link color } "." }
13     { { $snippet "caret-color" } " - a " { $link color } "." }
14     { { $snippet "selection-color" } " - a " { $link color } "." }
15     { { $snippet "caret" } " - a " { $link model } " storing a line/column pair." }
16     { { $snippet "mark" } " - a " { $link model } " storing a line/column pair. If there is no selection, the mark is equal to the caret, otherwise the mark is located at the opposite end of the selection from the caret." }
17     { { $snippet "focused?" } " - a boolean." }
18 } } ;
19
20 HELP: <editor>
21 { $values { "editor" "a new " { $link editor } } }
22 { $description "Creates a new " { $link editor } " with an empty document." } ;
23
24 { editor-caret editor-mark } related-words
25
26 HELP: editor-caret
27 { $values { "editor" editor } { "loc" "a pair of integers" } }
28 { $description "Outputs the current caret location as a line/column number pair." } ;
29
30 HELP: editor-mark
31 { $values { "editor" editor } { "loc" "a pair of integers" } }
32 { $description "Outputs the current mark location as a line/column number pair." } ;
33
34 HELP: change-caret
35 { $values { "editor" editor } { "quot" { $quotation "( loc -- newloc )" } } }
36 { $description "Applies a quotation to the current caret location and moves the caret to the location output by the quotation." } ;
37
38 { change-caret change-caret&mark mark>caret } related-words
39
40 HELP: mark>caret
41 { $values { "editor" editor } }
42 { $description "Moves the mark to the caret location, effectively deselecting any selected text." } ;
43
44 HELP: change-caret&mark
45 { $values { "editor" editor } { "quot" { $quotation "( loc -- newloc )" } } }
46 { $description "Applies a quotation to the current caret location and moves the caret and the mark to the location output by the quotation." } ;
47
48 HELP: point>loc
49 { $values { "point" "a pair of integers" } { "editor" editor } { "loc" "a pair of integers" } }
50 { $description "Converts a point to a line/column number pair." } ;
51
52 HELP: scroll>caret
53 { $values { "editor" editor } }
54 { $description "Ensures that the caret becomes visible in a " { $link scroller } " containing the editor. Does nothing if no parent of " { $snippet "gadget" } " is a " { $link scroller } "." } ;
55
56 HELP: remove-selection
57 { $values { "editor" editor } }
58 { $description "Removes currently selected text from the editor's " { $link document } "." } ;
59
60 HELP: editor-string
61 { $values { "editor" editor } { "string" string } }
62 { $description "Outputs the contents of the editor's " { $link document } " as a string. Lines are separated by " { $snippet "\\n" } "." } ;
63
64 HELP: set-editor-string
65 { $values { "string" string } { "editor" editor } }
66 { $description "Sets the contents of the editor's " { $link document } " to a string,  which may use either " { $snippet "\\n" } ", " { $snippet "\\r\\n" } " or " { $snippet "\\r" } " line separators." } ;
67
68 ARTICLE: "gadgets-editors-selection" "The caret and mark"
69 "If there is no selection, the caret and the mark are at the same location; otherwise the mark delimits the end-point of the selection opposite the caret."
70 { $subsection editor-caret }
71 { $subsection editor-mark }
72 { $subsection change-caret }
73 { $subsection change-caret&mark }
74 { $subsection mark>caret }
75 "Getting the selected text:"
76 { $subsection gadget-selection? }
77 { $subsection gadget-selection }
78 "Removing selected text:"
79 { $subsection remove-selection }
80 "Scrolling to the caret location:"
81 { $subsection scroll>caret }
82 "Use " { $link user-input* } " to change selected text." ;
83
84 ARTICLE: "gadgets-editors-contents" "Getting and setting editor contents"
85 { $subsection editor-string }
86 { $subsection set-editor-string }
87 { $subsection clear-editor } ;
88
89 ARTICLE: "gadgets-editors-commands" "Editor gadget commands"
90 { $command-map editor "editing" }
91 { $command-map editor "caret-motion" }
92 { $command-map editor "selection" }
93 { $command-map multiline-editor "multiline" } ;
94
95 ARTICLE: "gadgets-editors" "Editor gadgets"
96 "The " { $vocab-link "ui.gadgets.editors" } " vocabulary implements editor gadgets. An editor edits a passage of text."
97 { $subsection "gadgets-editors-commands" }
98 "Editors:"
99 { $subsection editor }
100 { $subsection <editor> }
101 { $subsection "gadgets-editors-contents" }
102 { $subsection "gadgets-editors-selection" }
103 "Multiline editors:"
104 { $subsection <multiline-editor> }
105 "Fields:"
106 { $subsection <model-field> }
107 { $subsection <action-field> }
108 "Editors edit " { $emphasis "documents" } ":"
109 { $subsection "documents" } ;
110
111 ABOUT: "gadgets-editors"