1 /* Cursor motion calculation definitions for GNU Emacs
2 Copyright (C) 1985, 1989, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
22 /* Holds the minimum and maximum costs for the parametrized capabilities. */
28 /* This structure holds everything needed to do cursor motion except the pad
29 character (PC) and the output speed of the terminal (ospeed), which
30 termcap wants in global variables. */
34 /* Cursor position. -1 in *both* variables means the cursor
35 position is unknown, in order to force absolute cursor motion. */
37 int cm_curY
; /* Current row */
38 int cm_curX
; /* Current column */
40 /* Capabilities from termcap */
41 char *cm_up
; /* up (up) */
42 char *cm_down
; /* down (do) */
43 char *cm_left
; /* left (le) */
44 char *cm_right
; /* right (nd) */
45 char *cm_home
; /* home (ho) */
46 char *cm_cr
; /* carriage return (cr) */
47 char *cm_ll
; /* last line (ll) */
48 char *cm_tab
; /* tab (ta) */
49 char *cm_backtab
; /* backtab (bt) */
50 char *cm_abs
; /* absolute (cm) */
51 char *cm_habs
; /* horizontal absolute (ch) */
52 char *cm_vabs
; /* vertical absolute (cv) */
54 char *cm_ds
; /* "don't send" string (ds) */
56 char *cm_multiup
; /* multiple up (UP) */
57 char *cm_multidown
; /* multiple down (DO) */
58 char *cm_multileft
; /* multiple left (LE) */
59 char *cm_multiright
; /* multiple right (RI) */
60 int cm_cols
; /* number of cols on screen (co) */
61 int cm_rows
; /* number of rows on screen (li) */
62 int cm_tabwidth
; /* tab width (it) */
63 unsigned int cm_autowrap
:1; /* autowrap flag (am) */
64 unsigned int cm_magicwrap
:1; /* VT-100: cursor stays in last col but
65 will cm_wrap if next char is
67 unsigned int cm_usetabs
:1; /* if set, use tabs */
68 unsigned int cm_losewrap
:1; /* if reach right margin, forget cursor
70 unsigned int cm_autolf
:1; /* \r performs a \r\n (rn) */
72 /* Parametrized capabilities. This needs to be a struct since
73 the costs are accessed through pointers. */
76 struct parmcap cc_abs
; /* absolute (cm) */
77 struct parmcap cc_habs
; /* horizontal absolute (ch) */
78 struct parmcap cc_vabs
; /* vertical absolute (cv) */
79 struct parmcap cc_multiup
; /* multiple up (UP) */
80 struct parmcap cc_multidown
; /* multiple down (DO) */
81 struct parmcap cc_multileft
; /* multiple left (LE) */
82 struct parmcap cc_multiright
; /* multiple right (RI) */
85 /* Costs for the non-parametrized capabilities */
86 int cc_up
; /* cost for up */
87 int cc_down
; /* etc. */
95 /* These are temporary, until the code is installed to use the
96 struct parmcap fields above. */
102 extern struct cm Wcm
; /* Terminal capabilities */
103 extern char PC
; /* Pad character */
106 #ifndef NoCMShortHand
107 #define curY Wcm.cm_curY
108 #define curX Wcm.cm_curX
110 #define Down Wcm.cm_down
111 #define Left Wcm.cm_left
112 #define Right Wcm.cm_right
113 #define Tab Wcm.cm_tab
114 #define BackTab Wcm.cm_backtab
115 #define TabWidth Wcm.cm_tabwidth
117 #define Home Wcm.cm_home
118 #define LastLine Wcm.cm_ll
119 #define AbsPosition Wcm.cm_abs
120 #define ColPosition Wcm.cm_habs
121 #define RowPosition Wcm.cm_vabs
122 #define MultiUp Wcm.cm_multiup
123 #define MultiDown Wcm.cm_multidown
124 #define MultiLeft Wcm.cm_multileft
125 #define MultiRight Wcm.cm_multiright
126 #define AutoWrap Wcm.cm_autowrap
127 #define MagicWrap Wcm.cm_magicwrap
128 #define UseTabs Wcm.cm_usetabs
129 #define FrameRows Wcm.cm_rows
130 #define FrameCols Wcm.cm_cols
132 #define UpCost Wcm.cc_up
133 #define DownCost Wcm.cc_down
134 #define LeftCost Wcm.cc_left
135 #define RightCost Wcm.cc_right
136 #define HomeCost Wcm.cc_home
137 #define CRCost Wcm.cc_cr
138 #define LastLineCost Wcm.cc_ll
139 #define TabCost Wcm.cc_tab
140 #define BackTabCost Wcm.cc_backtab
141 #define AbsPositionCost Wcm.cc_abs
142 #define ColPositionCost Wcm.cc_habs
143 #define RowPositionCost Wcm.cc_vabs
144 #define MultiUpCost Wcm.cc_multiup
145 #define MultiDownCost Wcm.cc_multidown
146 #define MultiLeftCost Wcm.cc_multileft
147 #define MultiRightCost Wcm.cc_multiright
150 #define cmat(row,col) (curY = (row), curX = (col))
153 if ((curX += (n)) >= FrameCols && !MagicWrap) \
155 if (Wcm.cm_losewrap) losecursor (); \
156 else if (AutoWrap) curX = 0, curY++; \
161 #define losecursor() (curX = -1, curY = -1)
164 extern int evalcost ();
166 extern void cmcheckmagic ();
167 extern int cmputc ();
168 extern void cmcostinit ();
169 extern void cmgoto ();
170 extern void Wcm_clear ();
171 extern int Wcm_init ();
173 /* arch-tag: acc1535a-7136-49d6-b22d-9bc85702251b
174 (do not change this comment) */