1[comment {-*- tcl -*- ntextIndent manpage}]
2[manpage_begin ntextIndent n 0.81]
3[moddesc   {ntext Indentation for the Text Widget}]
4[titledesc {ntext Indentation for the Text Widget}]
5[require Tcl 8.5]
6[require Tk 8.5]
7[require ntext [opt 0.81]]
8[description]
9
10The [package ntext] package provides a binding tag named [emph Ntext] for use by text widgets in place of the default [emph Text] binding tag.
11
12[para]
13
14Tk's text widget may be configured to wrap lines of text that are longer than the width of the text area, a feature that is familiar from text editors and word processors.  A complete line of text (delimited by newlines, or by the beginning or end of the document) is called a "logical line".  When a logical line is wrapped onto more than one line of the display area, these fragments of the logical line are called "display lines".
15[para]
16If a logical line begins with whitespace, then wrapped display lines begin further to the left than the first display line, which can make the text layout untidy and difficult to read.  The [emph Ntext] binding tag provides facilities so that a text widget in [arg -wrap] [arg word] mode will automatically indent display lines (other than the first) to match the initial whitespace of the first display line.
17[para]
18This indentation is available to text widgets only in [arg -wrap] [arg word] mode.
19
20[section {CONFIGURATION OPTIONS}]
21
22The behavior of [emph Ntext] may be configured application-wide by setting the values of a number of namespace variables:
23
24[para]
25[var ::ntext::classicWrap]
26[list_begin itemized]
27[item]
28   0 - selects [emph Ntext] behaviour, i.e. display lines are indented to match the initial whitespace of the first display line of a logical line.
29[para]
30   No other action is required if this option, and the text widget's [arg -wrap] option, are set before any text is entered in the widget, and if text is entered and edited only by the mouse and keyboard.  If, instead, text is manipulated by the script, or if the text widget's [arg -wrap] option or the value of [var ::ntext::classicWrap] are changed while the widget holds text, then calls to [emph ntext] functions are needed to alter the indentation.  See the section [sectref {INDENTING DISPLAY LINES}] for detailed instructions.
31[item]
32   1 - (default value) selects classic [emph Text] behaviour, i.e. no indentation.
33[list_end]
34
35[emph {Advanced Use}]
36
37[para]
38[var ::ntext::newWrapRegexp]
39[list_begin itemized]
40[item]
41  the value is a regexp pattern that determines the character of a logical line to which display lines other than the first will be aligned.  The default value, [const [lb]^[lb]:space:[rb][rb]], ensures alignment with the first non-whitespace character.
42[list_end]
43
44[section {INDENTING DISPLAY LINES}]
45
46To use [emph Ntext] 's display line indentation:
47[list_begin enum]
48[enum] Set the variable [var ::ntext::classicWrap] to [const 0] (default value is [const 1]).  This enables bindings that will preserve indentation whenever the user modifies the widget contents using the keyboard and mouse.  If the widget already holds text, call [fun ::ntext::wrapIndent] to initialise indentation.
49
50[para]
51Further instructions apply if the program changes the widget's contents, wrap configuration, or indent configuration.
52
53[enum] The program can change the text contents, e.g. by the .text insert command.  Such a change does not trigger a window binding, so the program should explicitly call function [fun ::ntext::wrapIndent] after inserting text.
54
55[enum] Auto-indentation occurs only if the widget is in [arg -wrap] [arg word] mode.  If the program changes to or from [arg -wrap] [arg word] when the widget is not empty, it should call [fun ::ntext::wrapIndent] to format the widget's text.
56
57[enum] If indentation is used, and then switched off by setting [var ::ntext::classicWrap] to [const 1],  call [fun ::ntext::wrapIndent] to remove indentation.
58[list_end]
59
60[section FUNCTIONS]
61[comment {do not use list_begin definitions and call - these give functions prominence at the top of the page, which is not appropriate in this case}]
62
63[fun ::ntext::wrapIndent] [arg textWidget] [opt index1] [opt index2]
64[list_begin itemized]
65[item]
66Adjust the indentation of a text widget.  Different cases are discussed below.
67[list_end]
68
69[fun ::ntext::wrapIndent] [arg textWidget]
70[list_begin itemized]
71[item]
72Adjust the indentation of all the text in text widget [arg textWidget].
73[list_end]
74
75[fun ::ntext::wrapIndent] [arg textWidget] [arg index1]
76[list_begin itemized]
77[item]
78Adjust the indentation of a single logical line of a text widget - the line of [arg textWidget] that contains the index [arg index1].
79[list_end]
80
81[fun ::ntext::wrapIndent] [arg textWidget] [arg index1] [arg index2]
82[list_begin itemized]
83[item]
84Adjust the indentation of a range of logical lines of a text widget - the lines of [arg textWidget] that contain indices [arg index1] to [arg index2].
85[list_end]
86
87[emph Usage]
88[list_begin itemized]
89[item]
90[fun ::ntext::wrapIndent] should be called only if the script changes the widget's contents or display properties.  If the contents of the widget have been modified by the keyboard or mouse, it is not necessary for the script to call [fun ::ntext::wrapIndent] because the appropriate calls are made automatically by the [emph Ntext] bindings.
91[item] The script should normally call [fun ::ntext::wrapIndent] if, for example, the script changes one of the following when the widget is not empty: the value of [var ::ntext::classicWrap], or the widget's [arg -wrap] status, or the widget's tab spacing, or the font size, or the widget's contents.
92[item] A call of the form [fun ::ntext::wrapIndent] [arg textWidget] will always suffice, but if changes are needed only to certain lines, it is more efficient to specify those lines with the optional arguments [opt index1], [opt index2].
93[item]
94If the widget is in [arg -word] [arg wrap] mode, and if [var ::ntext::classicWrap] is set to [const 0], [fun ::ntext::wrapIndent] will apply indentation to the logical lines within the range specified by the function's arguments.
95[item]
96In other cases, i.e. if the widget is in [arg -word] [arg char] or [arg -word] [arg none] mode, or if [var ::ntext::classicWrap] is set to [const 1],  [fun ::ntext::wrapIndent] will remove the indentation of the logical lines within the range specified by the function's arguments.
97[list_end]
98
99
100[section EXAMPLES]
101
102To switch on [emph Ntext] 's indentation and use it in widget .t:
103
104[example {
105package require ntext
106set ::ntext::classicWrap 0
107text .t -wrap word
108bindtags .t {.t Ntext . all}
109}]
110
111To decide later to switch off [emph Ntext] 's indentation:
112
113[example {
114set ::ntext::classicWrap 1
115::ntext::wrapIndent .t
116}]
117
118To decide later to switch [emph Ntext] 's indentation back on:
119
120[example {
121set ::ntext::classicWrap 0
122::ntext::wrapIndent .t 1.0 end
123}]
124
125To inject some text into the widget:
126
127[example {
128set foo [.t index end]
129.t insert end {This line was added by the script, not the keyboard!}
130::ntext::wrapIndent .t $foo end
131}]
132
133To switch to [arg -wrap] [arg char] mode:
134
135[example {
136.t configure -wrap char
137::ntext::wrapIndent .t
138}]
139
140
141
142
143[see_also ntext]
144[see_also text bindtags regexp re_syntax]
145[keywords text bindtags regexp re_syntax]
146[manpage_end]
147