1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

doc: update man pages to display   correctly.

This commit is contained in:
Liang Chang 2022-03-03 09:51:36 +00:00
parent df5cb30ec6
commit efe9db6585
4 changed files with 550 additions and 550 deletions

View file

@ -2005,14 +2005,14 @@ resource can be used to modify these translations.</para>
<title>Action Routines</title> <title>Action Routines</title>
<para>The DtEditor widget action routines are described here:</para> <para>The DtEditor widget action routines are described here:</para>
<variablelist> <variablelist>
<varlistentry><term><emphasis>backward-character</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>backward-character</emphasis>()</term>
<listitem> <listitem>
<para>This action moves the insertion cursor one character to the left. This <para>This action moves the insertion cursor one character to the left. This
action may have different behavior in a right-to-left language environment. action may have different behavior in a right-to-left language environment.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>backward-paragraph</emphasis>&hairsp;(<symbol role="Variable">extend</symbol>)</term> <varlistentry><term><emphasis>backward-paragraph</emphasis>(<symbol role="Variable">extend</symbol>)</term>
<listitem> <listitem>
<para>If this action is called with no argument, it moves the insertion cursor <para>If this action is called with no argument, it moves the insertion cursor
to the first non-whitespace character following the first previous blank line to the first non-whitespace character following the first previous blank line
@ -2023,7 +2023,7 @@ the previous paragraph.</para>
and extends the current selection.</para> and extends the current selection.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>backward-word</emphasis>&hairsp;( <symbol role="Variable">extend</symbol>)</term> <varlistentry><term><emphasis>backward-word</emphasis>( <symbol role="Variable">extend</symbol>)</term>
<listitem> <listitem>
<para>If this action is called with no argument, it moves the insertion cursor <para>If this action is called with no argument, it moves the insertion cursor
to the first non-whitespace character after the first whitespace character to the first non-whitespace character after the first whitespace character
@ -2035,7 +2035,7 @@ in a locale other than the C locale.</para>
and extends the current selection.</para> and extends the current selection.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>beginning-of-file</emphasis>&hairsp;(<symbol role="Variable">extend</symbol>)</term> <varlistentry><term><emphasis>beginning-of-file</emphasis>(<symbol role="Variable">extend</symbol>)</term>
<listitem> <listitem>
<para>If this action is called with no argument, it moves the insertion cursor <para>If this action is called with no argument, it moves the insertion cursor
to the beginning of the text.</para> to the beginning of the text.</para>
@ -2043,7 +2043,7 @@ to the beginning of the text.</para>
and extends the current selection.</para> and extends the current selection.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>beginning-of-line</emphasis>&hairsp;(<symbol role="Variable">extend</symbol>)</term> <varlistentry><term><emphasis>beginning-of-line</emphasis>(<symbol role="Variable">extend</symbol>)</term>
<listitem> <listitem>
<para>If this action is called with no argument, it moves the insertion cursor <para>If this action is called with no argument, it moves the insertion cursor
to the beginning of the line.</para> to the beginning of the line.</para>
@ -2051,45 +2051,45 @@ to the beginning of the line.</para>
and extends the current selection.</para> and extends the current selection.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>clear-selection</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>clear-selection</emphasis>()</term>
<listitem> <listitem>
<para>This action clears the current selection by replacing each character <para>This action clears the current selection by replacing each character
except <keysym>carriage-return</keysym> with a <keysym>space</keysym> character. except <keysym>carriage-return</keysym> with a <keysym>space</keysym> character.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>copy-clipboard</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>copy-clipboard</emphasis>()</term>
<listitem> <listitem>
<para>This action copies the current selection to the clipboard.</para> <para>This action copies the current selection to the clipboard.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>cut-clipboard</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>cut-clipboard</emphasis>()</term>
<listitem> <listitem>
<para>This action cuts the current selection to the clipboard.</para> <para>This action cuts the current selection to the clipboard.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>delete-next-character</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>delete-next-character</emphasis>()</term>
<listitem> <listitem>
<para>If there is a non-<systemitem class="Constant">NULL</systemitem> selection, <para>If there is a non-<systemitem class="Constant">NULL</systemitem> selection,
this action deletes the selection; otherwise, it deletes the character following this action deletes the selection; otherwise, it deletes the character following
the insertion cursor.</para> the insertion cursor.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>delete-next-word</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>delete-next-word</emphasis>()</term>
<listitem> <listitem>
<para>If there is a non-<systemitem class="Constant">NULL</systemitem> selection, <para>If there is a non-<systemitem class="Constant">NULL</systemitem> selection,
this action deletes the selection; otherwise, it deletes the characters following this action deletes the selection; otherwise, it deletes the characters following
the insertion cursor to the next space, tab or end of line character.</para> the insertion cursor to the next space, tab or end of line character.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>delete-previous-character</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>delete-previous-character</emphasis>()</term>
<listitem> <listitem>
<para>If there is a non-<systemitem class="Constant">NULL</systemitem> selection, <para>If there is a non-<systemitem class="Constant">NULL</systemitem> selection,
this action deletes the selection; otherwise, it deletes the character of this action deletes the selection; otherwise, it deletes the character of
text immediately preceding the insertion cursor.</para> text immediately preceding the insertion cursor.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>delete-previous-word</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>delete-previous-word</emphasis>()</term>
<listitem> <listitem>
<para>If there is a non-<systemitem class="Constant">NULL</systemitem> selection, <para>If there is a non-<systemitem class="Constant">NULL</systemitem> selection,
this action deletes the selection; otherwise, it deletes the characters preceding this action deletes the selection; otherwise, it deletes the characters preceding
@ -2098,26 +2098,26 @@ This action may have different behavior in a locale other than the C locale.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>delete-to-end-of-line</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>delete-to-end-of-line</emphasis>()</term>
<listitem> <listitem>
<para>If there is a non-<systemitem class="Constant">NULL</systemitem> selection, <para>If there is a non-<systemitem class="Constant">NULL</systemitem> selection,
this action deletes the selection; otherwise, it deletes the characters following this action deletes the selection; otherwise, it deletes the characters following
the insertion cursor to the next end-of-line character.</para> the insertion cursor to the next end-of-line character.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>delete-to-start-of-line</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>delete-to-start-of-line</emphasis>()</term>
<listitem> <listitem>
<para>If there is a non-<systemitem class="Constant">NULL</systemitem> selection, <para>If there is a non-<systemitem class="Constant">NULL</systemitem> selection,
this action deletes the selection; otherwise, it deletes the characters preceding this action deletes the selection; otherwise, it deletes the characters preceding
the insertion cursor to the previous beginning-of-line character.</para> the insertion cursor to the previous beginning-of-line character.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>deselect-all</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>deselect-all</emphasis>()</term>
<listitem> <listitem>
<para>This action deselects the current selection.</para> <para>This action deselects the current selection.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>end-of-file</emphasis>&hairsp;( <symbol role="Variable">extend</symbol>)</term> <varlistentry><term><emphasis>end-of-file</emphasis>( <symbol role="Variable">extend</symbol>)</term>
<listitem> <listitem>
<para>If this action is called with no argument, it moves the insertion cursor <para>If this action is called with no argument, it moves the insertion cursor
to the end of the text.</para> to the end of the text.</para>
@ -2125,7 +2125,7 @@ to the end of the text.</para>
and extends the current selection.</para> and extends the current selection.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>end-of-line</emphasis>&hairsp;( <symbol role="Variable">extend</symbol>)</term> <varlistentry><term><emphasis>end-of-line</emphasis>( <symbol role="Variable">extend</symbol>)</term>
<listitem> <listitem>
<para>If this action is called with no argument, it moves the insertion cursor <para>If this action is called with no argument, it moves the insertion cursor
to the end of the line.</para> to the end of the line.</para>
@ -2133,14 +2133,14 @@ to the end of the line.</para>
and extends the current selection.</para> and extends the current selection.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>forward-character</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>forward-character</emphasis>()</term>
<listitem> <listitem>
<para>This action moves the insertion cursor one character to the right. This <para>This action moves the insertion cursor one character to the right. This
action may have different behavior in a right-to-left language environment. action may have different behavior in a right-to-left language environment.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>forward-paragraph</emphasis>&hairsp;(<symbol role="Variable">extend</symbol>)</term> <varlistentry><term><emphasis>forward-paragraph</emphasis>(<symbol role="Variable">extend</symbol>)</term>
<listitem> <listitem>
<para>If this action is called with no argument, it moves the insertion cursor <para>If this action is called with no argument, it moves the insertion cursor
to the first non-whitespace character following the next blank line. If the to the first non-whitespace character following the next blank line. If the
@ -2150,7 +2150,7 @@ the insertion cursor to the beginning of the next paragraph.</para>
and extends the current selection.</para> and extends the current selection.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>forward-word</emphasis>&hairsp;( <symbol role="Variable">extend</symbol>)</term> <varlistentry><term><emphasis>forward-word</emphasis>( <symbol role="Variable">extend</symbol>)</term>
<listitem> <listitem>
<para>If this action is called with no argument, it moves the insertion cursor <para>If this action is called with no argument, it moves the insertion cursor
to the first whitespace character or end-of-line following the next non-whitespace to the first whitespace character or end-of-line following the next non-whitespace
@ -2163,7 +2163,7 @@ extends the current selection. <![ %CDE.C.CDE; [</Para>
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Emphasis>go-to-line</Emphasis>&hairsp;()</Term> <Term><Emphasis>go-to-line</Emphasis>()</Term>
<ListItem> <ListItem>
<Para>This action moves the keyboard focus to the Current Line text field to allow the user to <Para>This action moves the keyboard focus to the Current Line text field to allow the user to
move the insertion cursor to a new line. move the insertion cursor to a new line.
@ -2175,21 +2175,21 @@ For a description of the status line, see the
]]></para> ]]></para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>Help</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>Help</emphasis>()</term>
<listitem> <listitem>
<para>This action calls the callbacks for <systemitem class="Resource">XmNhelpCallback</systemitem> if any exist. If there are no help callbacks for this widget, <para>This action calls the callbacks for <systemitem class="Resource">XmNhelpCallback</systemitem> if any exist. If there are no help callbacks for this widget,
this action calls the help callbacks for the nearest ancestor that has them. this action calls the help callbacks for the nearest ancestor that has them.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>insert-string</emphasis>&hairsp;( <symbol role="Variable">string</symbol>)</term> <varlistentry><term><emphasis>insert-string</emphasis>( <symbol role="Variable">string</symbol>)</term>
<listitem> <listitem>
<para>This action deletes the entire selection if there is a non-<systemitem class="Constant">NULL</systemitem> selection and the cursor is not disjoint <para>This action deletes the entire selection if there is a non-<systemitem class="Constant">NULL</systemitem> selection and the cursor is not disjoint
from it. It inserts <literal>string</literal> before the insertion cursor. from it. It inserts <literal>string</literal> before the insertion cursor.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>key-select</emphasis>&hairsp;( <symbol role="Variable">direction</symbol>)</term> <varlistentry><term><emphasis>key-select</emphasis>( <symbol role="Variable">direction</symbol>)</term>
<listitem> <listitem>
<para>If this action is called with an argument of <symbol role="Variable">right</symbol>, it moves the insertion cursor one character to the right and <para>If this action is called with an argument of <symbol role="Variable">right</symbol>, it moves the insertion cursor one character to the right and
extends the current selection. If this action is called with an argument of extends the current selection. If this action is called with an argument of
@ -2198,7 +2198,7 @@ to the left and extends the current selection. If this action is called with
no argument, it extends the current selection.</para> no argument, it extends the current selection.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>newline-and-backup</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>newline-and-backup</emphasis>()</term>
<listitem> <listitem>
<para>If there is a non-<systemitem class="Constant">NULL</systemitem> selection <para>If there is a non-<systemitem class="Constant">NULL</systemitem> selection
and the cursor is not disjoint from it, this action deletes the entire selection, and the cursor is not disjoint from it, this action deletes the entire selection,
@ -2206,7 +2206,7 @@ inserts a newline just before the insertion cursor and repositions the insertion
cursor to the end of the line before the newline.</para> cursor to the end of the line before the newline.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>newline-and-indent</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>newline-and-indent</emphasis>()</term>
<listitem> <listitem>
<para>If there is a non-<systemitem class="Constant">NULL</systemitem> selection <para>If there is a non-<systemitem class="Constant">NULL</systemitem> selection
and the cursor is not disjoint from it, this action deletes the entire selection, and the cursor is not disjoint from it, this action deletes the entire selection,
@ -2214,7 +2214,7 @@ inserts a newline and then the same number of whitespace characters as at
the beginning of the previous line.</para> the beginning of the previous line.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>next-page</emphasis>&hairsp;( <symbol role="Variable">extend</symbol>)</term> <varlistentry><term><emphasis>next-page</emphasis>( <symbol role="Variable">extend</symbol>)</term>
<listitem> <listitem>
<para>If this action is called with no argument, it moves the insertion cursor <para>If this action is called with no argument, it moves the insertion cursor
forward one page.</para> forward one page.</para>
@ -2222,23 +2222,23 @@ forward one page.</para>
and extends the current selection.</para> and extends the current selection.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>page-left</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>page-left</emphasis>()</term>
<listitem> <listitem>
<para>This action scrolls the viewing window left one page of text.</para> <para>This action scrolls the viewing window left one page of text.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>page-right</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>page-right</emphasis>()</term>
<listitem> <listitem>
<para>This action scrolls the viewing window right one page of text.</para> <para>This action scrolls the viewing window right one page of text.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>paste-clipboard</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>paste-clipboard</emphasis>()</term>
<listitem> <listitem>
<para>This action pastes the contents of the clipboard before the insertion <para>This action pastes the contents of the clipboard before the insertion
cursor.</para> cursor.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>previous-page</emphasis>&hairsp;( <symbol role="Variable">extend</symbol>)</term> <varlistentry><term><emphasis>previous-page</emphasis>( <symbol role="Variable">extend</symbol>)</term>
<listitem> <listitem>
<para>If this action is called with no argument, it moves the insertion cursor <para>If this action is called with no argument, it moves the insertion cursor
back one page.</para> back one page.</para>
@ -2246,41 +2246,41 @@ back one page.</para>
and extends the current selection.</para> and extends the current selection.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>process-cancel</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>process-cancel</emphasis>()</term>
<listitem> <listitem>
<para>This action cancels the current <function>extend-adjust</function> or <function>secondary-adjust</function> operation and leaves the selection state as it <para>This action cancels the current <function>extend-adjust</function> or <function>secondary-adjust</function> operation and leaves the selection state as it
was before the operation; otherwise, (and if the parent is a manager) it passes was before the operation; otherwise, (and if the parent is a manager) it passes
the event to the parent.</para> the event to the parent.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>process-down</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>process-down</emphasis>()</term>
<listitem> <listitem>
<para>This action moves the insertion cursor down one line.</para> <para>This action moves the insertion cursor down one line.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>process-shift-down</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>process-shift-down</emphasis>()</term>
<listitem> <listitem>
<para>This action moves the insertion cursor down one line, extending the <para>This action moves the insertion cursor down one line, extending the
current selection.</para> current selection.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>process-shift-up</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>process-shift-up</emphasis>()</term>
<listitem> <listitem>
<para>This action moves the insertion cursor up one line, extending the current <para>This action moves the insertion cursor up one line, extending the current
selection.</para> selection.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>process-up</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>process-up</emphasis>()</term>
<listitem> <listitem>
<para>This action moves the insertion cursor up one line.</para> <para>This action moves the insertion cursor up one line.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>select-all</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>select-all</emphasis>()</term>
<listitem> <listitem>
<para>Selects all text.</para> <para>Selects all text.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>toggle-insert-mode</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>toggle-insert-mode</emphasis>()</term>
<listitem> <listitem>
<para>This action toggles the state of the text insertion mode. By default, <para>This action toggles the state of the text insertion mode. By default,
characters typed into the DtEditor widget are inserted at the position of characters typed into the DtEditor widget are inserted at the position of
@ -2290,7 +2290,7 @@ overstrike mode, characters are appended to the end of the line when the end
of a line is reached.</para> of a line is reached.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>quote-next-character</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>quote-next-character</emphasis>()</term>
<listitem> <listitem>
<para>This action treats the next typed character as a special character and <para>This action treats the next typed character as a special character and
inserts it into the text without interpreting it. Enables the insertion of inserts it into the text without interpreting it. Enables the insertion of
@ -2298,7 +2298,7 @@ special instructional characters or special language characters, such as the
character marking a form feed or the umlaut used in German text.</para> character marking a form feed or the umlaut used in German text.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>undo-edit</emphasis>&hairsp;()</term> <varlistentry><term><emphasis>undo-edit</emphasis>()</term>
<listitem> <listitem>
<para>This action undoes the last change (deletion or insertion) made to the <para>This action undoes the last change (deletion or insertion) made to the
text. A change consists of either a set of consecutive insertions, or a set text. A change consists of either a set of consecutive insertions, or a set
@ -2323,14 +2323,14 @@ The following lists summarize these functions.
<Title>DtEditor Life Cycle Functions</Title> <Title>DtEditor Life Cycle Functions</Title>
<VariableList> <VariableList>
<VarListEntry> <VarListEntry>
<Term><Function>DtCreateEditor</Function>&hairsp;()</Term> <Term><Function>DtCreateEditor</Function>()</Term>
<ListItem> <ListItem>
<Para>Creates a new instance of a DtEditor widget. <Para>Creates a new instance of a DtEditor widget.
</Para> </Para>
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorReset</Function>&hairsp;()</Term> <Term><Function>DtEditorReset</Function>()</Term>
<ListItem> <ListItem>
<Para>Restores a DtEditor widget to its initial state. <Para>Restores a DtEditor widget to its initial state.
</Para> </Para>
@ -2342,7 +2342,7 @@ The following lists summarize these functions.
<Title>DtEditor Input/Output Functions</Title> <Title>DtEditor Input/Output Functions</Title>
<VariableList> <VariableList>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorAppend</Function>&hairsp;()</Term> <Term><Function>DtEditorAppend</Function>()</Term>
<ListItem> <ListItem>
<Para>Appends content data to the end of a DtEditor <Para>Appends content data to the end of a DtEditor
widget. widget.
@ -2350,7 +2350,7 @@ widget.
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorAppendFromFile</Function>&hairsp;()</Term> <Term><Function>DtEditorAppendFromFile</Function>()</Term>
<ListItem> <ListItem>
<Para>Appends the contents of a file to the end of a DtEditor <Para>Appends the contents of a file to the end of a DtEditor
widget. widget.
@ -2358,7 +2358,7 @@ widget.
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorGetContents</Function>&hairsp;()</Term> <Term><Function>DtEditorGetContents</Function>()</Term>
<ListItem> <ListItem>
<Para>Retrieves the entire contents of a DtEditor <Para>Retrieves the entire contents of a DtEditor
widget. widget.
@ -2366,42 +2366,42 @@ widget.
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorInsert</Function>&hairsp;()</Term> <Term><Function>DtEditorInsert</Function>()</Term>
<ListItem> <ListItem>
<Para>Inserts content data at the current insert position. <Para>Inserts content data at the current insert position.
</Para> </Para>
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorInsertFromFile</Function>&hairsp;()</Term> <Term><Function>DtEditorInsertFromFile</Function>()</Term>
<ListItem> <ListItem>
<Para>Inserts the contents of a file at the current insert position. <Para>Inserts the contents of a file at the current insert position.
</Para> </Para>
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorReplace</Function>&hairsp;()</Term> <Term><Function>DtEditorReplace</Function>()</Term>
<ListItem> <ListItem>
<Para>Replaces a portion of text with the supplied data. <Para>Replaces a portion of text with the supplied data.
</Para> </Para>
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorReplaceFromFile</Function>&hairsp;()</Term> <Term><Function>DtEditorReplaceFromFile</Function>()</Term>
<ListItem> <ListItem>
<Para>Replaces a portion of text with the contents of a file. <Para>Replaces a portion of text with the contents of a file.
</Para> </Para>
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorSaveContentsToFile</Function>&hairsp;()</Term> <Term><Function>DtEditorSaveContentsToFile</Function>()</Term>
<ListItem> <ListItem>
<Para>Saves the entire contents to a file. <Para>Saves the entire contents to a file.
</Para> </Para>
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorSetContents</Function>&hairsp;()</Term> <Term><Function>DtEditorSetContents</Function>()</Term>
<ListItem> <ListItem>
<Para>Loads content data into a DtEditor <Para>Loads content data into a DtEditor
widget, replacing the entire contents of the widget. widget, replacing the entire contents of the widget.
@ -2409,7 +2409,7 @@ widget, replacing the entire contents of the widget.
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorSetContentsFromFile</Function>&hairsp;()</Term> <Term><Function>DtEditorSetContentsFromFile</Function>()</Term>
<ListItem> <ListItem>
<Para>Loads the contents of a file into a DtEditor <Para>Loads the contents of a file into a DtEditor
widget, replacing the entire contents of the widget. widget, replacing the entire contents of the widget.
@ -2422,42 +2422,42 @@ widget, replacing the entire contents of the widget.
<Title>DtEditor Selection Functions</Title> <Title>DtEditor Selection Functions</Title>
<VariableList> <VariableList>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorClearSelection</Function>&hairsp;()</Term> <Term><Function>DtEditorClearSelection</Function>()</Term>
<ListItem> <ListItem>
<Para>Replaces the currently selected contents with blanks. <Para>Replaces the currently selected contents with blanks.
</Para> </Para>
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorCopyToClipboard</Function>&hairsp;()</Term> <Term><Function>DtEditorCopyToClipboard</Function>()</Term>
<ListItem> <ListItem>
<Para>Copies the currently selected contents to the clipboard. <Para>Copies the currently selected contents to the clipboard.
</Para> </Para>
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorCutToClipboard</Function>&hairsp;()</Term> <Term><Function>DtEditorCutToClipboard</Function>()</Term>
<ListItem> <ListItem>
<Para>Removes the currently selected contents, placing it on the clipboard. <Para>Removes the currently selected contents, placing it on the clipboard.
</Para> </Para>
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorDeleteSelection</Function>&hairsp;()</Term> <Term><Function>DtEditorDeleteSelection</Function>()</Term>
<ListItem> <ListItem>
<Para>Removes the currently selected contents. <Para>Removes the currently selected contents.
</Para> </Para>
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorDeselect</Function>&hairsp;()</Term> <Term><Function>DtEditorDeselect</Function>()</Term>
<ListItem> <ListItem>
<Para>Deselects any selected contents. <Para>Deselects any selected contents.
</Para> </Para>
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorPasteFromClipboard</Function>&hairsp;()</Term> <Term><Function>DtEditorPasteFromClipboard</Function>()</Term>
<ListItem> <ListItem>
<Para>Pastes the contents of the clipboard into a DtEditor <Para>Pastes the contents of the clipboard into a DtEditor
widget, replacing any currently selected contents. widget, replacing any currently selected contents.
@ -2465,7 +2465,7 @@ widget, replacing any currently selected contents.
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorSelectAll</Function>&hairsp;()</Term> <Term><Function>DtEditorSelectAll</Function>()</Term>
<ListItem> <ListItem>
<Para>Selects the entire contents of a DtEditor widget. <Para>Selects the entire contents of a DtEditor widget.
</Para> </Para>
@ -2477,7 +2477,7 @@ widget, replacing any currently selected contents.
<Title>DtEditor Format Functions</Title> <Title>DtEditor Format Functions</Title>
<VariableList> <VariableList>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorFormat</Function>&hairsp;()</Term> <Term><Function>DtEditorFormat</Function>()</Term>
<ListItem> <ListItem>
<Para>Formats the contents of all or part of a DtEditor <Para>Formats the contents of all or part of a DtEditor
widget. widget.
@ -2485,7 +2485,7 @@ widget.
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorInvokeFormatDialog</Function>&hairsp;()</Term> <Term><Function>DtEditorInvokeFormatDialog</Function>()</Term>
<ListItem> <ListItem>
<Para>Displays the format dialog that enables the user <Para>Displays the format dialog that enables the user
to specify format settings for margins and to specify format settings for margins and
@ -2500,21 +2500,21 @@ operations.
<Title>DtEditor Find and Change Text Functions</Title> <Title>DtEditor Find and Change Text Functions</Title>
<VariableList> <VariableList>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorChange</Function>&hairsp;()</Term> <Term><Function>DtEditorChange</Function>()</Term>
<ListItem> <ListItem>
<Para>Changes one or all occurrences of a string. <Para>Changes one or all occurrences of a string.
</Para> </Para>
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorFind</Function>&hairsp;()</Term> <Term><Function>DtEditorFind</Function>()</Term>
<ListItem> <ListItem>
<Para>Finds the next occurrence of a string. <Para>Finds the next occurrence of a string.
</Para> </Para>
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorInvokeFindChangeDialog</Function>&hairsp;()</Term> <Term><Function>DtEditorInvokeFindChangeDialog</Function>()</Term>
<ListItem> <ListItem>
<Para>Displays the dialog that enables the user <Para>Displays the dialog that enables the user
to search for, and optionally change, a string. to search for, and optionally change, a string.
@ -2522,7 +2522,7 @@ to search for, and optionally change, a string.
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorInvokeSpellDialog</Function>&hairsp;()</Term> <Term><Function>DtEditorInvokeSpellDialog</Function>()</Term>
<ListItem> <ListItem>
<Para>Displays a dialog with a list of misspelled <Para>Displays a dialog with a list of misspelled
words in the current contents. words in the current contents.
@ -2536,14 +2536,14 @@ words in the current contents.
<VariableList> <VariableList>
<![ %CDE.C.CDE; [ <![ %CDE.C.CDE; [
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorDisableRedisplay</Function>&hairsp;()</Term> <Term><Function>DtEditorDisableRedisplay</Function>()</Term>
<ListItem> <ListItem>
<Para>Temporarily prevents visual update of a DtEditor widget. <Para>Temporarily prevents visual update of a DtEditor widget.
</Para> </Para>
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorEnableRedisplay</Function>&hairsp;()</Term> <Term><Function>DtEditorEnableRedisplay</Function>()</Term>
<ListItem> <ListItem>
<Para>Forces the visual update of a DtEditor widget. <Para>Forces the visual update of a DtEditor widget.
</Para> </Para>
@ -2551,7 +2551,7 @@ words in the current contents.
</VarListEntry> </VarListEntry>
]]> ]]>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorCheckForUnsavedChanges</Function>&hairsp;()</Term> <Term><Function>DtEditorCheckForUnsavedChanges</Function>()</Term>
<ListItem> <ListItem>
<Para>Reports whether the contents of a DtEditor <Para>Reports whether the contents of a DtEditor
widget have been altered since they were last widget have been altered since they were last
@ -2560,7 +2560,7 @@ retrieved or saved.
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorGetInsertionPosition</Function>&hairsp;()</Term> <Term><Function>DtEditorGetInsertionPosition</Function>()</Term>
<ListItem> <ListItem>
<Para>Returns the insertion cursor position of a DtEditor <Para>Returns the insertion cursor position of a DtEditor
widget. widget.
@ -2568,7 +2568,7 @@ widget.
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorGetLastPosition</Function>&hairsp;()</Term> <Term><Function>DtEditorGetLastPosition</Function>()</Term>
<ListItem> <ListItem>
<Para>Returns the position of the last character <Para>Returns the position of the last character
in the edit window. in the edit window.
@ -2576,7 +2576,7 @@ in the edit window.
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorGetMessageTextFieldID</Function>&hairsp;()</Term> <Term><Function>DtEditorGetMessageTextFieldID</Function>()</Term>
<ListItem> <ListItem>
<Para>Retrieves the widget ID of the Text Field <Para>Retrieves the widget ID of the Text Field
widget used to display application messages. widget used to display application messages.
@ -2584,7 +2584,7 @@ widget used to display application messages.
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorGetSizeHints</Function>&hairsp;()</Term> <Term><Function>DtEditorGetSizeHints</Function>()</Term>
<ListItem> <ListItem>
<Para>Retrieves sizing information from a DtEditor <Para>Retrieves sizing information from a DtEditor
widget. widget.
@ -2592,21 +2592,21 @@ widget.
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorGoToLine</Function>&hairsp;()</Term> <Term><Function>DtEditorGoToLine</Function>()</Term>
<ListItem> <ListItem>
<Para>Moves the insert cursor to the specified line. <Para>Moves the insert cursor to the specified line.
</Para> </Para>
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorSetInsertionPosition</Function>&hairsp;()</Term> <Term><Function>DtEditorSetInsertionPosition</Function>()</Term>
<ListItem> <ListItem>
<Para>Sets the position of the insertion cursor. <Para>Sets the position of the insertion cursor.
</Para> </Para>
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorTraverseToEditor</Function>&hairsp;()</Term> <Term><Function>DtEditorTraverseToEditor</Function>()</Term>
<ListItem> <ListItem>
<Para>Sets keyboard traversal to the edit window of a DtEditor <Para>Sets keyboard traversal to the edit window of a DtEditor
widget. widget.
@ -2614,7 +2614,7 @@ widget.
</ListItem> </ListItem>
</VarListEntry> </VarListEntry>
<VarListEntry> <VarListEntry>
<Term><Function>DtEditorUndoEdit</Function>&hairsp;()</Term> <Term><Function>DtEditorUndoEdit</Function>()</Term>
<ListItem> <ListItem>
<Para>Undoes the last edit made by a user. <Para>Undoes the last edit made by a user.
</Para> </Para>
@ -2627,7 +2627,7 @@ widget.
<Title>FILES</Title> <Title>FILES</Title>
<VariableList> <VariableList>
<VarListEntry> <VarListEntry>
<Term><Emphasis>/usr/dt/lib/nls/msg/$LANG/DtWidget.cat</Emphasis>&hairsp;()</Term> <Term><Emphasis>/usr/dt/lib/nls/msg/$LANG/DtWidget.cat</Emphasis>()</Term>
<ListItem> <ListItem>
<Para>Message catalog for DtWidget library. <Para>Message catalog for DtWidget library.
</Para> </Para>

View file

@ -1789,40 +1789,40 @@ function)</computeroutput></entry></row>
to the child process.--><!-- DKS .LI "\f3backarrow\^\f1(\|)"--><!-- DKS This to the child process.--><!-- DKS .LI "\f3backarrow\^\f1(\|)"--><!-- DKS This
action sends a \f3\s-1DEL\s0\fP (delete) character to the child--><!-- process.--></para> action sends a \f3\s-1DEL\s0\fP (delete) character to the child--><!-- process.--></para>
<variablelist> <variablelist>
<varlistentry><term><emphasis>bell&hairsp;</emphasis>(<literal>[</literal><symbol role="Variable">percentage</symbol><literal>]</literal>)</term> <varlistentry><term><emphasis>bell</emphasis>(<literal>[</literal><symbol role="Variable">percentage</symbol><literal>]</literal>)</term>
<listitem> <listitem>
<para>Rings the keyboard bell at the specified <para>Rings the keyboard bell at the specified
<symbol role="Variable">percentage</symbol> above or below the base volume.</para> <symbol role="Variable">percentage</symbol> above or below the base volume.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>break&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>break</emphasis>()</term>
<listitem> <listitem>
<para>Sends an RS232 break signal to the child process.</para> <para>Sends an RS232 break signal to the child process.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>cancel&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>cancel</emphasis>()</term>
<listitem> <listitem>
<para>Sends a <Symbol>CAN</Symbol> (cancel) character to the child process. <para>Sends a <Symbol>CAN</Symbol> (cancel) character to the child process.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>copy-clipboard&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>copy-clipboard</emphasis>()</term>
<listitem> <listitem>
<para>Copies current selection to the clipboard.</para> <para>Copies current selection to the clipboard.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>copy-to&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>copy-to</emphasis>()</term>
<listitem> <listitem>
<para>Sends the primary selection to the subprocess.</para> <para>Sends the primary selection to the subprocess.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>do&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>do</emphasis>()</term>
<listitem> <listitem>
<para>Sends the escape sequence (see <![ %CDE.C.CDE; [&cdeman.dttermesc;) ]]><![ %CDE.C.XO; [<xref <para>Sends the escape sequence (see <![ %CDE.C.CDE; [&cdeman.dttermesc;) ]]><![ %CDE.C.XO; [<xref
role="2" linkend="XCSA.M5DTT.anch.1">) ]]>associated with the <literal>Do</literal> key to the child process.</para> role="2" linkend="XCSA.M5DTT.anch.1">) ]]>associated with the <literal>Do</literal> key to the child process.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>edit-key&hairsp;</emphasis>( <symbol role="Variable">string</symbol>)</term> <varlistentry><term><emphasis>edit-key</emphasis>( <symbol role="Variable">string</symbol>)</term>
<listitem> <listitem>
<para>Sends the escape sequence (see <![ %CDE.C.CDE; [&cdeman.dttermesc;) ]]><![ %CDE.C.XO; [<xref <para>Sends the escape sequence (see <![ %CDE.C.CDE; [&cdeman.dttermesc;) ]]><![ %CDE.C.XO; [<xref
role="2" linkend="XCSA.M5DTT.anch.1">) ]]>associated with the corresponding role="2" linkend="XCSA.M5DTT.anch.1">) ]]>associated with the corresponding
@ -1838,20 +1838,20 @@ select</programlisting>
</informalexample> </informalexample>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>extend-start&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>extend-start</emphasis>()</term>
<listitem> <listitem>
<para>Starts the extension of the currently selected text. The amount of text <para>Starts the extension of the currently selected text. The amount of text
selected depends on the number of mouse clicks (see <function>grab-focus</function>). selected depends on the number of mouse clicks (see <function>grab-focus</function>).
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>extend-end&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>extend-end</emphasis>()</term>
<listitem> <listitem>
<para>Extends the current selection. The amount of text selected depends on <para>Extends the current selection. The amount of text selected depends on
the number of mouse clicks (see <function>grab-focus</function>).</para> the number of mouse clicks (see <function>grab-focus</function>).</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>function-key-execute&hairsp;</emphasis>( <emphasis>num</emphasis><literal>[,</literal> <symbol role="Variable">type</symbol> <literal>]</literal>)</term> <varlistentry><term><emphasis>function-key-execute</emphasis>( <emphasis>num</emphasis><literal>[,</literal> <symbol role="Variable">type</symbol> <literal>]</literal>)</term>
<listitem> <listitem>
<para>Sends the escape sequence (see <![ %CDE.C.CDE; [&cdeman.dttermesc;) ]]><![ %CDE.C.XO; [<xref <para>Sends the escape sequence (see <![ %CDE.C.CDE; [&cdeman.dttermesc;) ]]><![ %CDE.C.XO; [<xref
role="2" linkend="XCSA.M5DTT.anch.1">) ]]>associated with the corresponding role="2" linkend="XCSA.M5DTT.anch.1">) ]]>associated with the corresponding
@ -1864,7 +1864,7 @@ then the string associated with user defined key <emphasis>num</emphasis>
is sent to the child process.</para> is sent to the child process.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>grab-focus&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>grab-focus</emphasis>()</term>
<listitem> <listitem>
<para>Performs one of the following depending on the number of multiple mouse <para>Performs one of the following depending on the number of multiple mouse
clicks. One click deselects any selected text and sets the selection anchor clicks. One click deselects any selected text and sets the selection anchor
@ -1872,12 +1872,12 @@ at the pointer position; two clicks selects a word; three clicks selects a
line of text; and four clicks selects all text.</para> line of text; and four clicks selects all text.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>hard-reset&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>hard-reset</emphasis>()</term>
<listitem> <listitem>
<para>Performs a hard reset on the terminal emulator. <![ %CDE.C.CDE; [See &cdeman.dttermesc; for a definition of hard reset. ]]></para> <para>Performs a hard reset on the terminal emulator. <![ %CDE.C.CDE; [See &cdeman.dttermesc; for a definition of hard reset. ]]></para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>help&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>help</emphasis>()</term>
<listitem><![ %CDE.C.CDE; [<para>Sends the escape sequence (see <![ %CDE.C.CDE; [ &cdeman.dttermesc;) ]]><![ %CDE.C.XO; [<XRef Linkend="XCSA.M5DTT.anch.1" Role="2">) ]]>associated <listitem><![ %CDE.C.CDE; [<para>Sends the escape sequence (see <![ %CDE.C.CDE; [ &cdeman.dttermesc;) ]]><![ %CDE.C.XO; [<XRef Linkend="XCSA.M5DTT.anch.1" Role="2">) ]]>associated
with the DEC VT220 Help key to the child process.</para>]]><![ %CDE.C.XO; [<para>Sends the escape sequence (see <![ %CDE.C.CDE; [&cdeman.dttermesc;) ]]><![ %CDE.C.XO; [<xref with the DEC VT220 Help key to the child process.</para>]]><![ %CDE.C.XO; [<para>Sends the escape sequence (see <![ %CDE.C.CDE; [&cdeman.dttermesc;) ]]><![ %CDE.C.XO; [<xref
role="2" linkend="XCSA.M5DTT.anch.1">) ]]>associated with the DEC VT220 Help role="2" linkend="XCSA.M5DTT.anch.1">) ]]>associated with the DEC VT220 Help
@ -1885,14 +1885,14 @@ key to the child process.</para>]]>
<para>The interpretation of this key is application-specific.</para> <para>The interpretation of this key is application-specific.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>keymap&hairsp;</emphasis>(name)</term> <varlistentry><term><emphasis>keymap</emphasis>(name)</term>
<listitem> <listitem>
<para>Defines a new translation table whose resource name is named with the <para>Defines a new translation table whose resource name is named with the
suffix <literal>Keymap</literal> (case is significant). The name <systemitem class="Constant">None</systemitem> restores the original translation table. suffix <literal>Keymap</literal> (case is significant). The name <systemitem class="Constant">None</systemitem> restores the original translation table.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>keypad-key-execute&hairsp;</emphasis>(<symbol role="Variable">string</symbol>)</term> <varlistentry><term><emphasis>keypad-key-execute</emphasis>(<symbol role="Variable">string</symbol>)</term>
<listitem> <listitem>
<para>Sends the escape sequence (see <![ %CDE.C.CDE; [&cdeman.dttermesc;) ]]><![ %CDE.C.XO; [<xref <para>Sends the escape sequence (see <![ %CDE.C.CDE; [&cdeman.dttermesc;) ]]><![ %CDE.C.XO; [<xref
role="2" linkend="XCSA.M5DTT.anch.1">) ]]>associated with the corresponding role="2" linkend="XCSA.M5DTT.anch.1">) ]]>associated with the corresponding
@ -1914,7 +1914,7 @@ divide
</informalexample> </informalexample>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>move-cursor&hairsp;</emphasis>( <symbol role="Variable">direction</symbol>)</term> <varlistentry><term><emphasis>move-cursor</emphasis>( <symbol role="Variable">direction</symbol>)</term>
<listitem> <listitem>
<para>Sends the escape sequence (see <![ %CDE.C.CDE; [&cdeman.dttermesc;) ]]><![ %CDE.C.XO; [<xref <para>Sends the escape sequence (see <![ %CDE.C.CDE; [&cdeman.dttermesc;) ]]><![ %CDE.C.XO; [<xref
role="2" linkend="XCSA.M5DTT.anch.1">) ]]>associated with the corresponding role="2" linkend="XCSA.M5DTT.anch.1">) ]]>associated with the corresponding
@ -1928,12 +1928,12 @@ forward</programlisting>
</informalexample> </informalexample>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>paste-clipboard&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>paste-clipboard</emphasis>()</term>
<listitem> <listitem>
<para>Sends the contents of the clipboard to the subprocess.</para> <para>Sends the contents of the clipboard to the subprocess.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>process-bdrag&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>process-bdrag</emphasis>()</term>
<listitem> <listitem>
<para>The result of this action is determined by several factors: position <para>The result of this action is determined by several factors: position
of the location cursor, motion of the location cursor and the interval between of the location cursor, motion of the location cursor and the interval between
@ -1948,12 +1948,12 @@ whose <systemitem class="Resource">XmNexportTargets</systemitem> resource
value includes target types of <systemitem class="Constant">COMPOUND_TEXT</systemitem>, <systemitem class="Constant">STRING</systemitem> and <systemitem class="Constant">TEXT</systemitem>.</para> value includes target types of <systemitem class="Constant">COMPOUND_TEXT</systemitem>, <systemitem class="Constant">STRING</systemitem> and <systemitem class="Constant">TEXT</systemitem>.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>redraw-display&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>redraw-display</emphasis>()</term>
<listitem> <listitem>
<para>Redraws the contents of the text window.</para> <para>Redraws the contents of the text window.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>scroll&hairsp;</emphasis>( <symbol role="Variable">count</symbol><literal>[,</literal> <symbol role="Variable">units</symbol> <literal>]</literal>)</term> <varlistentry><term><emphasis>scroll</emphasis>( <symbol role="Variable">count</symbol><literal>[,</literal> <symbol role="Variable">units</symbol> <literal>]</literal>)</term>
<listitem> <listitem>
<para>Scrolls the display memory down if <symbol role="Variable">count</symbol> <para>Scrolls the display memory down if <symbol role="Variable">count</symbol>
is greater than zero, or up if <symbol role="Variable">count</symbol> is less is greater than zero, or up if <symbol role="Variable">count</symbol> is less
@ -1966,36 +1966,36 @@ line</programlisting>
</informalexample> </informalexample>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>select-adjust&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>select-adjust</emphasis>()</term>
<listitem> <listitem>
<para>Extends the selection. The amount of text selected depends on the number <para>Extends the selection. The amount of text selected depends on the number
of mouse clicks. One click selects characters; two clicks selects words; three of mouse clicks. One click selects characters; two clicks selects words; three
clicks selects lines; and four clicks selects the entire buffer.</para> clicks selects lines; and four clicks selects the entire buffer.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>select-all&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>select-all</emphasis>()</term>
<listitem> <listitem>
<para>Selects all text.</para> <para>Selects all text.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>select-page&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>select-page</emphasis>()</term>
<listitem> <listitem>
<para>Selects all text currently displayed on the screen.</para> <para>Selects all text currently displayed on the screen.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>self-insert&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>self-insert</emphasis>()</term>
<listitem> <listitem>
<para>Sends the character associated with the key pressed to the child process. <para>Sends the character associated with the key pressed to the child process.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>soft-reset&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>soft-reset</emphasis>()</term>
<listitem> <listitem>
<para>Performs a soft reset of the terminal. <![ %CDE.C.CDE; [For a definition <para>Performs a soft reset of the terminal. <![ %CDE.C.CDE; [For a definition
of soft reset see the ``Reset'' section in &cdeman.dttermesc;. ]]></para> of soft reset see the ``Reset'' section in &cdeman.dttermesc;. ]]></para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>stop&hairsp;</emphasis>( <symbol role="Variable">state</symbol>)</term> <varlistentry><term><emphasis>stop</emphasis>( <symbol role="Variable">state</symbol>)</term>
<listitem> <listitem>
<para>Toggles, starts, or stops the process of reading data from the child <para>Toggles, starts, or stops the process of reading data from the child
process. Valid values for <symbol role="Variable">state</symbol> are:</para> process. Valid values for <symbol role="Variable">state</symbol> are:</para>
@ -2006,7 +2006,7 @@ off</programlisting>
</informalexample> </informalexample>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>string&hairsp;</emphasis>( <symbol role="Variable">string</symbol>)</term> <varlistentry><term><emphasis>string</emphasis>( <symbol role="Variable">string</symbol>)</term>
<listitem> <listitem>
<para>Inserts the specified text string as if it had been typed. The string <para>Inserts the specified text string as if it had been typed. The string
must be quoted if it contains white space or non-alphanumeric characters. must be quoted if it contains white space or non-alphanumeric characters.
@ -2014,12 +2014,12 @@ The string is interpreted as a hexadecimal character constant if it begins
with the characters <literal>0x</literal>.</para> with the characters <literal>0x</literal>.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>tab&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>tab</emphasis>()</term>
<listitem> <listitem>
<para>Sends a tab to the child process.</para> <para>Sends a tab to the child process.</para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry><term><emphasis>visual-bell&hairsp;</emphasis>()</term> <varlistentry><term><emphasis>visual-bell</emphasis>()</term>
<listitem> <listitem>
<para>Flashes the window quickly.</para> <para>Flashes the window quickly.</para>
</listitem> </listitem>

File diff suppressed because it is too large Load diff

View file

@ -89,7 +89,7 @@ widget for information on the resources that apply to that widget.</para>
<para>The following information describes the environment variables that <command>dtksh</command> uses that are in addition to those documented in the manual <para>The following information describes the environment variables that <command>dtksh</command> uses that are in addition to those documented in the manual
page for the <command>sh</command> command language interpreter.</para> page for the <command>sh</command> command language interpreter.</para>
<refsect2> <refsect2>
<title>Immediate Return Value (&hairsp;-&hairsp;)</title> <title>Immediate Return Value (-)</title>
<para>Many of the category 3 commands (as described in <![ %CDE.C.CDE; [the <literal>Return Values From Built-in Commands</literal> section) ]]><![ %CDE.C.XO; [<xref <para>Many of the category 3 commands (as described in <![ %CDE.C.CDE; [the <literal>Return Values From Built-in Commands</literal> section) ]]><![ %CDE.C.XO; [<xref
role="5" linkend="XCSA.MAN6.anch.1">) ]]>return a single value using an environment role="5" linkend="XCSA.MAN6.anch.1">) ]]>return a single value using an environment
variable specified as the first argument to the command (in the synopses for variable specified as the first argument to the command (in the synopses for