1############################################################################## 2# Copyright 2019-2023,2024 Thomas E. Dickey # 3# Copyright 2001-2015,2016 Free Software Foundation, Inc. # 4# # 5# Permission is hereby granted, free of charge, to any person obtaining a # 6# copy of this software and associated documentation files (the "Software"), # 7# to deal in the Software without restriction, including without limitation # 8# the rights to use, copy, modify, merge, publish, distribute, distribute # 9# with modifications, sublicense, and/or sell copies of the Software, and to # 10# permit persons to whom the Software is furnished to do so, subject to the # 11# following conditions: # 12# # 13# The above copyright notice and this permission notice shall be included in # 14# all copies or substantial portions of the Software. # 15# # 16# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # 17# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # 18# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL # 19# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # 20# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # 21# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # 22# DEALINGS IN THE SOFTWARE. # 23# # 24# Except as contained in this notice, the name(s) of the above copyright # 25# holders shall not be used in advertising or otherwise to promote the sale, # 26# use or other dealings in this Software without prior written # 27# authorization. # 28############################################################################## 29# 30# Author: Thomas Dickey 31# 32# $Id: Caps.aix4,v 1.28 2024/04/20 21:05:02 tom Exp $ 33# 34# This is an adaptation of ncurses' termcap/terminfo capability table, which 35# is designed to align with AIX 4.x's terminfo. 36# 37# This table is used to generate initializers for tables that drive tic, 38# infocmp, and the library compilation code used to support the termcap 39# compatibility hack. It is also used to generate the tabular portion of the 40# terminfo(5) man page; lines beginning with `#%' are passed through to become 41# the terminfo table. 42# 43# This file has three major sections; a standard-capabilities table, two 44# extension-capability tables, and a section of aliases declarations. 45# The first two have the same format, as follows: 46# 47# FILE FORMAT 48# 49# Column 1: terminfo variable name 50# Column 2: terminfo capability name 51# Column 3: capability type (Boolean, numeric, or string) 52# Column 4: termcap capability name 53# Column 5: KEY_xxx name, if any, `-' otherwise 54# Column 6: value for KEY_xxx name, if any, `-' otherwise 55# Column 7: Lead with `Y' if capability should be emitted in termcap 56# translations, `-' otherwise 57# Column 8: capability description 58# 59# The codes following [Y-] in column 7 describe the versions of termcap which 60# use the given capability. This information is not used by the curses library 61# proper; rather, it is there to help the terminfo maintainer avoid emitting 62# termcap entry translations that are more than 1023 bytes long (and tank a 63# lot of old termcap-using programs). The codes read as follows: 64# B = mentioned in the BSD man page for 4.4BSD curses 65# C = used by the 4.4BSD curses library 66# G = mentioned in the documentation for GNU termcap 67# E = used by GNU Emacs 68# K = remove this terminfo capability when translating to standard format 69# The important codes are C and E. A cap with C or E should be preserved in 70# translation if possible. The problem is that preserving all such caps may 71# lead to some termcap translations being too long. The termcap maintainer 72# has a bit of a juggling act to do...potential problem cases are marked with 73# an asterisk (*). 74# 75# The aliases section has the following format: 76# 77# Column 1: either `capalias' or `infoalias' 78# Column 2: name to be aliased 79# Column 3: what name it should translate to. The name IGNORE means it 80# should be discarded with a warning message. 81# Column 4: name of the extension set (used for compiler warning messages) 82# Column 5: capability description (usually an associated terminfo variable) 83# 84# HANDLING TERMCAP AND TERMINFO EXTENSIONS 85# 86# There are basically five different ways to handle termcap and terminfo 87# extensions: 88# 89# 1. Don't list the capname here, or list it but comment it out (the latter 90# is preferable; someone might want to handle it in the future). If you do 91# this, the capability will be treated as unknown and raise a warning from 92# the compiler. 93# 94# 2. Alias it. This is appropriate if the capability has the same meaning 95# as an already-supported one. The compiler will handle aliasing, emitting 96# an appropriate informational message whenever an alias fires. 97# 98# 3. List it in the standard table. You almost certainly do *not* want 99# to do this -- the capabilities in that one, and their order, have been 100# carefully chosen to be SVr4-binary-compatible when they're written out 101# as a terminfo object, and breaking this would be bad. It is up to the ncurses 102# library what to do with the terminfo data after it is read in. 103# 104# 4. List it in the aliases table with an IGNORE target field. If you 105# do this, the capability will be ignored on input (though the user will 106# get a warning message about it). 107# 108# 5. List it in the extensions table. If you do this, the compiler will 109# silently accept the capability, but the curses library proper will never 110# see it (because it won't be written out as part of the terminfo object 111# format). It is up to you what you have the compiler do with it. 112# 113# There are two opposite reasons to choose option 5. One is when you want 114# to eat the capability silently and discard it when doing translations 115# to terminfo with tic -I. Some very old obsolete BSD caps like :kn: are 116# in this class. Nothing will ever use them again. 117# 118# More usually, you want the compiler to try to deduce something from the 119# capability value that it can use to translate it into your output format. 120# You'll need to write custom code, probably in postprocess_termcap() or 121# postprocess_terminfo(), to handle the translation. 122# 123# CONTROLLING ENTRY LENGTH 124# 125# Notes on specific elisions made to fit translations within 1023 bytes: 126# 127# Machines with IBM PC-like keyboards want to be able to define the following 128# keys: key_npage, key_ppage, key_home, key_ll (which is used for in termcap- 129# only environments for End or Home-Down), key_dc, and key_ic. This is also 130# the set of keys the `joe' editor will be upset if it can't see. So don't 131# trim those out of the set to be translated to termcap, or various users of 132# the termcap file will become irate. 133# 134# It might look tempting to leave those long init strings out of translations. 135# We can't do it (yet); 4.4BSD tput and tset use them. 136# 137# We retain the sgr capability in translation in spite of the fact that neither 138# 4.4BSD nor GNU Emacs uses it, because (a) some entry naming distinctions are 139# hard to understand without it, and (b) the entries in which it is long tend 140# to be older types that don't use up a lot of string space on function keys. 141# The tic(1) translation code will complain and elide it if it makes a critical 142# difference (there is special code in tic to recognize this situation). 143# 144# Yes, BSD tset(1) uses hpa. We elide hpa/vpa anyway because the motion 145# optimizer in BSD curses didn't use them. This omission seems to be the 146# single most effective one, it shortened the resolved length of all thirteen 147# problem entries in the 9.9.0 version of the terminfo master below critical. 148# 149# It would be nice to keep f11 and f12 for Emacs use, but a couple of termcap 150# translations go back over critical if we do this. As 4.4BSD curses fades 151# into history and GNU termcap's application base shrinks towards being GNU 152# Emacs only, we'll probably elide out some BSD-only capabilities in order 153# to buy space for non-essentials Emacs is still using. Capabilities high 154# on that hit list: rc, sc, uc. 155# 156# FORMATTING THE TABLES 157# 158# We manually specify a (minimum) column width for the capability name 159# and terminfo code columns in the tables to achieve a consistent 160# arrangement; as used here, tbl(1) cannot know the width required by 161# one table's data while formatting another's. 162# 163# The longest capability names (C variables) are 164# "enter_near_letter_quality" and "bit_image_carriage_return" (tied at 165# 25n), and the longest terminfo code is "setcolor" (8n). 166# 167# The tables are a tight fit on traditional man(7) implementations that 168# use a line length of 65n, and the "Description" column has little room 169# within which the formatter can make breaking or adjustment decisions. 170# Words like "micro_..._address" and "parm_..._micro" don't break. 171# Reducing the inter-column gaps to 2 ens gives them enough room. --GBR 172# 173############################################################################# 174# 175# STANDARD CAPABILITIES 176# 177#%Tables of capabilities 178#%.I \%ncurses 179#%recognizes in a 180#%.I \%term\%info 181#%terminal type description and available to 182#%.IR \%term\%info -using 183#%code follow. 184#%.bP 185#%The capability name identifies the symbol by which the programmer 186#%using the 187#%.I \%term\%info 188#%API accesses the capability. 189#%.bP 190#%The TI 191#%.RI ( \%term\%info ) 192#%code is the short name used by a person composing or updating a 193#%terminal type entry. 194#%.IP 195#%Whenever possible, 196#%these codes are the same as or similar to those of the ANSI X3.64-1979 197#%standard 198#%(now superseded by ECMA-48, 199#%which uses identical or very similar names). 200#%Semantics are also intended to match those of the specification. 201#%.IP 202#%.I \%term\%info 203#%codes have no hard length limit, 204#%but 205#%.I \%ncurses 206#%maintains an informal one of 5 characters to keep them short and to 207#%allow the tabs in the source file 208#%.I Caps 209#%to line up nicely. 210#%(Some standard codes exceed this limit regardless.) 211#%.bP 212#%The TC 213#%.RI ( termcap ) 214#%code is that used by the corresponding API of 215#%.IR \%ncurses . 216#%(Some capabilities are new, 217#%and have names that BSD 218#%.I termcap 219#%did not originate.) 220#%.bP 221#%The description field attempts to convey the capability's semantics. 222#%.PP 223#%The description field employs a handful of notations. 224#%.TP 225#%.B (P) 226#%indicates that padding may be specified. 227#%.TP 228#%.B (P*) 229#%indicates that padding may vary in proportion to the number of output 230#%lines affected. 231#%.TP 232#%.BI # i 233#%indicates the 234#%.IR i th 235#%parameter of a string capability; 236#%the programmer should pass the string to \fB\%tparm\fP(3X) with the 237#%parameters listed. 238#%.IP 239#%If the description lists no parameters, 240#%passing the string to \fB\%tparm\fP(3X) may produce unexpected 241#%behavior, 242#%for instance if the string contains percent signs. 243#%. 244#%.PP 245#%.TS 246#%center; 247#%Lb Cb S Lb 248#%Lb Lb Lb Lb 249#%Lbw(25n)2 Lbw(8n)2 Lb2 Lx. 250#%\& Code \& 251#%Boolean Capability Name TI TC Description 252#%_ 253auto_left_margin bw bool bw - - YB-G- cub1 wraps from column 0 to last column 254auto_right_margin am bool am - - YBCGE terminal has automatic margins 255no_esc_ctlc xsb bool xb - - YBCG- beehive (f1=escape, f2=ctrl C) 256ceol_standout_glitch xhp bool xs - - YBCGE standout not erased by overwriting (hp) 257eat_newline_glitch xenl bool xn - - YBCGE newline ignored after 80 cols (concept) 258erase_overstrike eo bool eo - - YBCG- can erase overstrikes with a blank 259generic_type gn bool gn - - YB-G- generic line type 260hard_copy hc bool hc - - YBCG- hardcopy terminal 261has_meta_key km bool km - - YB-GE Has a meta key (i.e., sets 8th-bit) 262has_status_line hs bool hs - - YB-G- has extra status line 263insert_null_glitch in bool in - - YBCGE insert mode distinguishes nulls 264memory_above da bool da - - YBCG- display may be retained above the screen 265memory_below db bool db - - YB-GE display may be retained below the screen 266move_insert_mode mir bool mi - - YBCGE safe to move while in insert mode 267move_standout_mode msgr bool ms - - YBCGE safe to move while in standout mode 268over_strike os bool os - - YBCG- terminal can overstrike 269status_line_esc_ok eslok bool es - - YB-G- escape can be used on the status line 270dest_tabs_magic_smso xt bool xt - - YBCGE tabs destructive, magic so char (t1061) 271tilde_glitch hz bool hz - - YB-GE cannot print ~'s (Hazeltine) 272transparent_underline ul bool ul - - YBCGE underline character overstrikes 273xon_xoff xon bool xo - - YB--- terminal uses xon/xoff handshaking 274needs_xon_xoff nxon bool nx - - ----- padding will not work, xon/xoff required 275prtr_silent mc5i bool 5i - - ----- printer will not echo on screen 276hard_cursor chts bool HC - - ----- cursor is hard to see 277non_rev_rmcup nrrmc bool NR - - ----- smcup does not reverse rmcup 278no_pad_char npc bool NP - - ----- pad character does not exist 279non_dest_scroll_region ndscr bool ND - - ----- scrolling region is non-destructive 280can_change ccc bool cc - - ----- terminal can re-define existing colors 281back_color_erase bce bool ut - - ----- screen erased with background color 282hue_lightness_saturation hls bool hl - - ----- terminal uses only HLS color notation (Tektronix) 283col_addr_glitch xhpa bool YA - - ----- only positive motion for hpa/mhpa caps 284cr_cancels_micro_mode crxm bool YB - - ----- using cr turns off micro mode 285has_print_wheel daisy bool YC - - ----- printer needs operator to change character set 286row_addr_glitch xvpa bool YD - - ----- only positive motion for vpa/mvpa caps 287semi_auto_right_margin sam bool YE - - ----- printing in last column causes cr 288cpi_changes_res cpix bool YF - - ----- changing character pitch changes resolution 289lpi_changes_res lpix bool YG - - ----- changing line pitch changes resolution 290#%.TE 291#%.PP 292#%. 293#%.TS 294#%center; 295#%Lb Cb S Lb 296#%Lb Lb Lb Lb 297#%Lbw(25n)2 Lbw(8n)2 Lb2 Lx. 298#%\& Code \& 299#%Numeric Capability Name TI TC Description 300#%_ 301columns cols num co - - YBCGE number of columns in a line 302init_tabs it num it - - YB-G- tabs initially every # spaces 303lines lines num li - - YBCGE number of lines on screen or page 304lines_of_memory lm num lm - - YB-G- lines of memory if > line. 0 means varies 305magic_cookie_glitch xmc num sg - - YBCGE number of blank characters left by smso or rmso 306padding_baud_rate pb num pb - - YB-GE lowest baud rate where padding needed 307virtual_terminal vt num vt - - YB--- virtual terminal number (CB/unix) 308width_status_line wsl num ws - - YB-G- number of columns in status line 309num_labels nlab num Nl - - ----- number of labels on screen 310label_height lh num lh - - ----- rows in each label 311label_width lw num lw - - ----- columns in each label 312max_attributes ma num ma - - YBC-- maximum combined attributes terminal can handle 313maximum_windows wnum num MW - - ----- maximum number of definable windows 314# These came in with SVr4's color support 315max_colors colors num Co - - ----- maximum number of colors on screen 316max_pairs pairs num pa - - ----- maximum number of color-pairs on the screen 317no_color_video ncv num NC - - ----- video attributes that cannot be used with colors 318#%.TE 319#%.PP 320#%. 321#%The following numeric capabilities are present in the SVr4.0 term structure, 322#%but are not yet documented in the man page. 323#%They came in with SVr4's printer support. 324#%. 325#%.PP 326#%.TS 327#%center; 328#%Lb Cb S Lb 329#%Lb Lb Lb Lb 330#%Lbw(25n)2 Lbw(8n)2 Lb2 Lx. 331#%\& Code \& 332#%Numeric Capability Name TI TC Description 333#%_ 334buffer_capacity bufsz num Ya - - ----- numbers of bytes buffered before printing 335dot_vert_spacing spinv num Yb - - ----- spacing of pins vertically in pins per inch 336dot_horz_spacing spinh num Yc - - ----- spacing of dots horizontally in dots per inch 337max_micro_address maddr num Yd - - ----- maximum value in micro_..._address 338max_micro_jump mjump num Ye - - ----- maximum value in parm_..._micro 339micro_col_size mcs num Yf - - ----- character step size when in micro mode 340micro_line_size mls num Yg - - ----- line step size when in micro mode 341number_of_pins npins num Yh - - ----- numbers of pins in print-head 342output_res_char orc num Yi - - ----- horizontal resolution in units per line 343output_res_line orl num Yj - - ----- vertical resolution in units per line 344output_res_horz_inch orhi num Yk - - ----- horizontal resolution in units per inch 345output_res_vert_inch orvi num Yl - - ----- vertical resolution in units per inch 346print_rate cps num Ym - - ----- print rate in characters per second 347wide_char_size widcs num Yn - - ----- character step size when in double wide mode 348buttons btns num BT - - ----- number of buttons on mouse 349bit_image_entwining bitwin num Yo - - ----- number of passes for each bit-image row 350bit_image_type bitype num Yp - - ----- type of bit-image device 351#%.TE 352#%.PP 353#%. 354#%.TS 355#%center; 356#%Lb Cb S Lb 357#%Lb Lb Lb Lb 358#%Lbw(25n)2 Lbw(8n)2 Lb2 Lx. 359#%\& Code \& 360#%String Capability Name TI TC Description 361#%_ 362back_tab cbt str bt - - YBCGE back tab (P) 363bell bel str bl - - YB-GE audible signal (bell) (P) 364carriage_return cr str cr - - YBCGE carriage return (P*) (P*) 365change_scroll_region csr str cs - - YBCGE change region to line #1 to line #2 (P) 366clear_all_tabs tbc str ct - - YB-G- clear all tab stops (P) 367clear_screen clear str cl - - YBCGE clear screen and home cursor (P*) 368clr_eol el str ce - - YBCGE clear to end of line (P) 369clr_eos ed str cd - - YBCGE clear to end of screen (P*) 370column_address hpa str ch - - -B-GE* horizontal position #1, absolute (P) 371command_character cmdch str CC - - YB-G- terminal settable cmd character in prototype !? 372cursor_address cup str cm - - YBCGE move to row #1 columns #2 373cursor_down cud1 str do - - YBCGE down one line 374cursor_home home str ho - - YBCGE home cursor (if no cup) 375cursor_invisible civis str vi - - YB-G- make cursor invisible 376cursor_left cub1 str le - - YBCGE move left one space 377cursor_mem_address mrcup str CM - - YB-G- memory relative cursor addressing, move to row #1 columns #2 378cursor_normal cnorm str ve - - YBCGE make cursor appear normal (undo civis/cvvis) 379cursor_right cuf1 str nd - - YBCGE non-destructive space (move right one space) 380cursor_to_ll ll str ll - - YBCGE last line, first column (if no cup) 381cursor_up cuu1 str up - - YBCGE up one line 382cursor_visible cvvis str vs - - YBCGE make cursor very visible 383delete_character dch1 str dc - - YBCGE delete character (P*) 384delete_line dl1 str dl - - YBCGE delete line (P*) 385dis_status_line dsl str ds - - YB-G- disable status line 386down_half_line hd str hd - - YB-G- half a line down 387enter_alt_charset_mode smacs str as - - YB-G- start alternate character set (P) 388enter_blink_mode blink str mb - - YB-G- turn on blinking 389enter_bold_mode bold str md - - YB-G- turn on bold (extra bright) mode 390enter_ca_mode smcup str ti - - YBCGE string to start programs using cup 391enter_delete_mode smdc str dm - - YBCGE enter delete mode 392enter_dim_mode dim str mh - - YB-G- turn on half-bright mode 393enter_insert_mode smir str im - - YBCGE enter insert mode 394enter_secure_mode invis str mk - - -B-G-* turn on blank mode (characters invisible) 395enter_protected_mode prot str mp - - -B-G-* turn on protected mode 396enter_reverse_mode rev str mr - - YB-G- turn on reverse video mode 397enter_standout_mode smso str so - - YBCGE begin standout mode 398enter_underline_mode smul str us - - YBCGE begin underline mode 399erase_chars ech str ec - - YB-G- erase #1 characters (P) 400exit_alt_charset_mode rmacs str ae - - YB-G- end alternate character set (P) 401exit_attribute_mode sgr0 str me - - YB-GE turn off all attributes 402exit_ca_mode rmcup str te - - YBCGE strings to end programs using cup 403exit_delete_mode rmdc str ed - - YBCGE end delete mode 404exit_insert_mode rmir str ei - - YBCGE exit insert mode 405exit_standout_mode rmso str se - - YBCGE exit standout mode 406exit_underline_mode rmul str ue - - YBCGE exit underline mode 407flash_screen flash str vb - - YBCGE visible bell (may not move cursor) 408form_feed ff str ff - - YB-G- hardcopy terminal page eject (P*) 409from_status_line fsl str fs - - YB-G- return from status line 410init_1string is1 str i1 - - YB-G- initialization string 411init_2string is2 str is - - YB-G- initialization string 412init_3string is3 str i3 - - YB-G- initialization string 413init_file if str if - - YB-G- name of initialization file 414insert_character ich1 str ic - - YBCGE insert character (P) 415insert_line il1 str al - - YBCGE insert line (P*) 416insert_padding ip str ip - - YBCGE insert padding after inserted character 417key_backspace kbs str kb KEY_BACKSPACE 0407 YB-G- backspace key 418key_catab ktbc str ka KEY_CATAB 0526 -B-G-* clear-all-tabs key 419key_clear kclr str kC KEY_CLEAR 0515 -B-G-* clear-screen or erase key 420key_ctab kctab str kt KEY_CTAB 0525 -B-G-* clear-tab key 421key_dc kdch1 str kD KEY_DC 0512 YB-G- delete-character key 422key_dl kdl1 str kL KEY_DL 0510 -B-G-* delete-line key 423key_down kcud1 str kd KEY_DOWN 0402 YBCGE down-arrow key 424#%.TE 425#%.TS 426#%center; 427#%Lbw(25n)2 Lbw(8n)2 Lb2 Lx. 428key_eic krmir str kM KEY_EIC 0514 -B-G-* sent by rmir or smir in insert mode 429key_eol kel str kE KEY_EOL 0517 -B-G-* clear-to-end-of-line key 430key_eos ked str kS KEY_EOS 0516 -B-G-* clear-to-end-of-screen key 431key_f0 kf0 str k0 KEY_F(0) 0410 YBCGE F0 function key 432key_f1 kf1 str k1 KEY_F(1) - YBCGE F1 function key 433key_f10 kf10 str k; KEY_F(10) - ----E F10 function key 434key_f2 kf2 str k2 KEY_F(2) - YBCGE F2 function key 435key_f3 kf3 str k3 KEY_F(3) - YBCGE F3 function key 436key_f4 kf4 str k4 KEY_F(4) - YBCGE F4 function key 437key_f5 kf5 str k5 KEY_F(5) - YBCGE F5 function key 438key_f6 kf6 str k6 KEY_F(6) - YBCGE F6 function key 439key_f7 kf7 str k7 KEY_F(7) - YBCGE F7 function key 440key_f8 kf8 str k8 KEY_F(8) - YBCGE F8 function key 441key_f9 kf9 str k9 KEY_F(9) - YBCGE F9 function key 442key_home khome str kh KEY_HOME 0406 YBCGE home key 443key_ic kich1 str kI KEY_IC 0513 YB-GE insert-character key 444key_il kil1 str kA KEY_IL 0511 -B-G-* insert-line key 445key_left kcub1 str kl KEY_LEFT 0404 YBCGE left-arrow key 446key_ll kll str kH KEY_LL 0533 YB-G- lower-left key (home down) 447key_npage knp str kN KEY_NPAGE 0522 YB-GE next-page key 448key_ppage kpp str kP KEY_PPAGE 0523 YB-GE previous-page key 449key_right kcuf1 str kr KEY_RIGHT 0405 YBCGE right-arrow key 450key_sf kind str kF KEY_SF 0520 -B-G-* scroll-forward key 451key_sr kri str kR KEY_SR 0521 -B-G-* scroll-backward key 452key_stab khts str kT KEY_STAB 0524 -B-G-* set-tab key 453key_up kcuu1 str ku KEY_UP 0403 YBCGE up-arrow key 454keypad_local rmkx str ke - - YBCGE leave 'keyboard_transmit' mode 455keypad_xmit smkx str ks - - YBCGE enter 'keyboard_transmit' mode 456lab_f0 lf0 str l0 - - -B-G-* label on function key f0 if not f0 457lab_f1 lf1 str l1 - - -B-G-* label on function key f1 if not f1 458lab_f10 lf10 str la - - ----- label on function key f10 if not f10 459lab_f2 lf2 str l2 - - -B-G-* label on function key f2 if not f2 460lab_f3 lf3 str l3 - - -B-G-* label on function key f3 if not f3 461lab_f4 lf4 str l4 - - -B-G-* label on function key f4 if not f4 462lab_f5 lf5 str l5 - - -B-G-* label on function key f5 if not f5 463lab_f6 lf6 str l6 - - -B-G-* label on function key f6 if not f6 464lab_f7 lf7 str l7 - - -B-G-* label on function key f7 if not f7 465lab_f8 lf8 str l8 - - -B-G-* label on function key f8 if not f8 466lab_f9 lf9 str l9 - - -B-G-* label on function key f9 if not f9 467meta_off rmm str mo - - YB-G-* turn off meta mode 468meta_on smm str mm - - YB-G-* turn on meta mode (8th-bit on) 469newline nel str nw - - YB-G-* newline (behave like cr followed by lf) 470pad_char pad str pc - - YBCGE padding char (instead of null) 471parm_dch dch str DC - - YB-GE delete #1 characters (P*) 472parm_delete_line dl str DL - - YBCGE delete #1 lines (P*) 473parm_down_cursor cud str DO - - YBCGE down #1 lines (P*) 474parm_ich ich str IC - - YB-GE insert #1 characters (P*) 475parm_index indn str SF - - YBCG- scroll forward #1 lines (P) 476parm_insert_line il str AL - - YBCGE insert #1 lines (P*) 477parm_left_cursor cub str LE - - YBCGE move #1 characters to the left (P) 478parm_right_cursor cuf str RI - - YBCGE move #1 characters to the right (P*) 479parm_rindex rin str SR - - YBCG- scroll back #1 lines (P) 480parm_up_cursor cuu str UP - - YBCGE up #1 lines (P*) 481pkey_key pfkey str pk - - -B--- program function key #1 to type string #2 482pkey_local pfloc str pl - - -B--- program function key #1 to execute string #2 483pkey_xmit pfx str px - - -B--- program function key #1 to transmit string #2 484print_screen mc0 str ps - - -B-G-* print contents of screen 485prtr_off mc4 str pf - - -B-G-* turn off printer 486prtr_on mc5 str po - - -B-G-* turn on printer 487repeat_char rep str rp - - YB-GE repeat char #1 #2 times (P*) 488reset_1string rs1 str r1 - - -B--- reset string 489reset_2string rs2 str r2 - - -B--- reset string 490#%.TE 491#%.TS 492#%center; 493#%Lbw(25n)2 Lbw(8n)2 Lb2 Lx. 494reset_3string rs3 str r3 - - -B--- reset string 495reset_file rf str rf - - -B--- name of reset file 496restore_cursor rc str rc - - YBCG- restore cursor to position of last save_cursor 497row_address vpa str cv - - -B-GE* vertical position #1 absolute (P) 498save_cursor sc str sc - - YBCG- save current cursor position (P) 499scroll_forward ind str sf - - YBCGE scroll text up (P) 500scroll_reverse ri str sr - - YBCGE scroll text down (P) 501set_attributes sgr str sa - - YB-G- define video attributes #1-#9 (PG9) 502set_tab hts str st - - YB-G- set a tab in every row, current columns 503set_window wind str wi - - -B-GE current window is lines #1-#2 cols #3-#4 504tab ht str ta - - YBCGE tab to next 8-space hardware tab stop 505to_status_line tsl str ts - - YB-G- move to status line, column #1 506underline_char uc str uc - - YBCG- underline char and move past it 507up_half_line hu str hu - - YB-G- half a line up 508init_prog iprog str iP - - -B--- path name of program for initialization 509key_a1 ka1 str K1 KEY_A1 0534 YB-GE upper left of keypad 510key_a3 ka3 str K3 KEY_A3 0535 YB-GE upper right of keypad 511key_b2 kb2 str K2 KEY_B2 0536 YB-GE center of keypad 512key_c1 kc1 str K4 KEY_C1 0537 YB-GE lower left of keypad 513key_c3 kc3 str K5 KEY_C3 0540 YB-GE lower right of keypad 514prtr_non mc5p str pO - - -B-G-* turn on printer for #1 bytes 515# 516# IBM extensions 517# 518# These extensions follow ptr_non (replacing everything after it) in IBM 519# terminfo files. 520# 521# The places in the box[12] capabilities correspond to acsc characters, here is 522# the mapping: 523# 524# box1[0] = ACS_ULCORNER 525# box1[1] = ACS_HLINE 526# box1[2] = ACS_URCORNER 527# box1[3] = ACS_VLINE 528# box1[4] = ACS_LRCORNER 529# box1[5] = ACS_LLCORNER 530# box1[6] = ACS_TTEE 531# box1[7] = ACS_RTEE 532# box1[8] = ACS_BTEE 533# box1[9] = ACS_LTEE 534# box1[10] = ACS_PLUS 535# 536# The box2 characters are the double-line versions of these forms graphics. 537# 538box_chars_1 box1 str bx - - ----K box characters primary set 539box_chars_2 box2 str by - - ----K box characters secondary set 540box_attr_1 batt1 str Bx - - ----K attributes for box1 541box_attr_2 batt2 str By - - ----K attributes for box2 542color_bg_0 colb0 str d0 - - ----K background color 0 543color_bg_1 colb1 str d1 - - ----K background color 1 544color_bg_2 colb2 str d2 - - ----K background color 2 545color_bg_3 colb3 str d3 - - ----K background color 3 546color_bg_4 colb4 str d4 - - ----K background color 4 547color_bg_5 colb5 str d5 - - ----K background color 5 548color_bg_6 colb6 str d6 - - ----K background color 6 549color_bg_7 colb7 str d7 - - ----K background color 7 550color_fg_0 colf0 str c0 - - ----K foreground color 0 551color_fg_1 colf1 str c1 - - ----K foreground color 1 552color_fg_2 colf2 str c2 - - ----K foreground color 2 553color_fg_3 colf3 str c3 - - ----K foreground color 3 554color_fg_4 colf4 str c4 - - ----K foreground color 4 555color_fg_5 colf5 str c5 - - ----K foreground color 5 556color_fg_6 colf6 str c6 - - ----K foreground color 6 557color_fg_7 colf7 str c7 - - ----K foreground color 7 558font_0 font0 str f0 - - ----K select font 0 559font_1 font1 str f1 - - ----K select font 1 560font_2 font2 str f2 - - ----K select font 2 561font_3 font3 str f3 - - ----K select font 3 562font_4 font4 str f4 - - ----K select font 4 563font_5 font5 str f5 - - ----K select font 5 564font_6 font6 str f6 - - ----K select font 6 565font_7 font7 str f7 - - ----K select font 7 566key_back_tab kbtab str kO - - ----K backtab key 567key_do kdo str ki - - ----K do request key 568key_command kcmd str @4 - - ----K command-request key 569key_command_pane kcpn str kW - - ----K command-pane key 570key_end kend str @7 KEY_END 0550 ----- end key 571key_help khlp str %1 - - ----- help key 572key_newline knl str kn - - ----K newline key 573key_next_pane knpn str kv - - ----K next-pane key 574key_prev_cmd kpcmd str kp - - ----K previous-command key 575key_prev_pane kppn str kV - - ----K previous-pane key 576key_quit kquit str kQ - - ----K quit key 577key_select_aix ksel str kU - - ----- select key 578key_scroll_left kscl str kz - - ----K scroll left 579key_scroll_right kscr str kZ - - ----K scroll right 580key_tab ktab str ko - - ----K tab key 581key_smap_in1 kmpf1 str Kv - - ----K special mapped key 1 input 582key_smap_out1 kmpt1 str KV - - ----K special mapped key 1 output 583key_smap_in2 kmpf2 str Kw - - ----K special mapped key 2 input 584key_smap_out2 kmpt2 str KW - - ----K special mapped key 2 output 585key_smap_in3 kmpf3 str Kx - - ----K special mapped key 3 input 586key_smap_out3 kmpt3 str KX - - ----K special mapped key 3 output 587key_smap_in4 kmpf4 str Ky - - ----K special mapped key 4 input 588key_smap_out4 kmpt4 str KY - - ----K special mapped key 4 output 589key_smap_in5 kmpf5 str Kz - - ----K special mapped key 5 input 590key_smap_out5 kmpt5 str KZ - - ----K special mapped key 5 output 591appl_defined_str apstr str za - - ----K application-defined string 592key_smap_in6 kmpf6 str Kr - - ----K special mapped key 6 input 593key_smap_out6 kmpt6 str KR - - ----K special mapped key 6 output 594key_smap_in7 kmpf7 str Ks - - ----K special mapped key 7 input 595key_smap_out7 kmpt7 str KS - - ----K special mapped key 7 output 596key_smap_in8 kmpf8 str Kt - - ----K special mapped key 8 input 597key_smap_out8 kmpt8 str KT - - ----K special mapped key 8 output 598key_smap_in9 kmpf9 str Ku - - ----K special mapped key 9 input 599key_smap_out9 kmpt9 str KU - - ----K special mapped key 9 output 600key_sf1 ksf1 str S1 - - ----K special function key 1 601key_sf2 ksf2 str S2 - - ----K special function key 2 602key_sf3 ksf3 str S3 - - ----K special function key 3 603key_sf4 ksf4 str S4 - - ----K special function key 4 604key_sf5 ksf5 str S5 - - ----K special function key 5 605key_sf6 ksf6 str S6 - - ----K special function key 6 606key_sf7 ksf7 str S7 - - ----K special function key 7 607key_sf8 ksf8 str S8 - - ----K special function key 8 608key_sf9 ksf9 str S9 - - ----K special function key 9 609key_sf10 ksf10 str S0 - - ----K special function key 10 610key_f11 kf11 str F1 KEY_F(11) - ----E F11 function key 611key_f12 kf12 str F2 KEY_F(12) - ----E F12 function key 612key_f13 kf13 str F3 KEY_F(13) - ----E F13 function key 613key_f14 kf14 str F4 KEY_F(14) - ----E F14 function key 614key_f15 kf15 str F5 KEY_F(15) - ----E F15 function key 615key_f16 kf16 str F6 KEY_F(16) - ----E F16 function key 616key_f17 kf17 str F7 KEY_F(17) - ----E F17 function key 617key_f18 kf18 str F8 KEY_F(18) - ----E F18 function key 618key_f19 kf19 str F9 KEY_F(19) - ----E F19 function key 619key_f20 kf20 str FA KEY_F(20) - ----E F20 function key 620key_f21 kf21 str FB KEY_F(21) - ----E F21 function key 621key_f22 kf22 str FC KEY_F(22) - ----E F22 function key 622key_f23 kf23 str FD KEY_F(23) - ----E F23 function key 623key_f24 kf24 str FE KEY_F(24) - ----E F24 function key 624key_f25 kf25 str FF KEY_F(25) - ----E F25 function key 625key_f26 kf26 str FG KEY_F(26) - ----E F26 function key 626key_f27 kf27 str FH KEY_F(27) - ----E F27 function key 627key_f28 kf28 str FI KEY_F(28) - ----E F28 function key 628key_f29 kf29 str FJ KEY_F(29) - ----E F29 function key 629key_f30 kf30 str FK KEY_F(30) - ----E F30 function key 630key_f31 kf31 str FL KEY_F(31) - ----E F31 function key 631key_f32 kf32 str FM KEY_F(32) - ----E F32 function key 632key_f33 kf33 str FN KEY_F(33) - ----E F33 function key 633key_f34 kf34 str FO KEY_F(34) - ----E F34 function key 634key_f35 kf35 str FP KEY_F(35) - ----E F35 function key 635key_f36 kf36 str FQ KEY_F(36) - ----E F36 function key 636key_f37 kf37 str FR KEY_F(37) - ----E F37 function key 637key_f38 kf38 str FS KEY_F(38) - ----E F38 function key 638key_f39 kf39 str FT KEY_F(39) - ----E F39 function key 639key_f40 kf40 str FU KEY_F(40) - ----E F40 function key 640key_f41 kf41 str FV KEY_F(41) - ----E F41 function key 641key_f42 kf42 str FW KEY_F(42) - ----E F42 function key 642#%.TE 643#%.TS 644#%center; 645#%Lbw(25n)2 Lbw(8n)2 Lb2 Lx. 646key_f43 kf43 str FX KEY_F(43) - ----E F43 function key 647key_f44 kf44 str FY KEY_F(44) - ----E F44 function key 648key_f45 kf45 str FZ KEY_F(45) - ----E F45 function key 649key_f46 kf46 str Fa KEY_F(46) - ----E F46 function key 650key_f47 kf47 str Fb KEY_F(47) - ----E F47 function key 651key_f48 kf48 str Fc KEY_F(48) - ----E F48 function key 652key_f49 kf49 str Fd KEY_F(49) - ----E F49 function key 653key_f50 kf50 str Fe KEY_F(50) - ----E F50 function key 654key_f51 kf51 str Ff KEY_F(51) - ----E F51 function key 655key_f52 kf52 str Fg KEY_F(52) - ----E F52 function key 656key_f53 kf53 str Fh KEY_F(53) - ----E F53 function key 657key_f54 kf54 str Fi KEY_F(54) - ----E F54 function key 658key_f55 kf55 str Fj KEY_F(55) - ----E F55 function key 659key_f56 kf56 str Fk KEY_F(56) - ----E F56 function key 660key_f57 kf57 str Fl KEY_F(57) - ----E F57 function key 661key_f58 kf58 str Fm KEY_F(58) - ----E F58 function key 662key_f59 kf59 str Fn KEY_F(59) - ----E F59 function key 663key_f60 kf60 str Fo KEY_F(60) - ----E F60 function key 664key_f61 kf61 str Fp KEY_F(61) - ----E F61 function key 665key_f62 kf62 str Fq KEY_F(62) - ----E F62 function key 666key_f63 kf63 str Fr KEY_F(63) - ----E F63 function key 667key_action kact str kJ - - ----K sent by action key 668 669# The IBM docs say these capabilities are for table-drawing, and are 670# valid only for aixterm descriptions. 671enter_topline_mode topl str tp - - ----K start top-line mode 672enter_bottom_mode btml str bm - - ----K start bottom-line mode 673enter_rvert_mode rvert str rv - - ----K start right-vertical mode 674enter_lvert_mode lvert str lv - - ----K start left-vertical mode 675# 676# SVr4 capabilities resume here. Note that key_end is in the IBM-extensions. 677# 678char_padding rmp str rP - - ----- like ip but when in insert mode 679acs_chars acsc str ac - - ----- graphics charset pairs, based on vt100 680plab_norm pln str pn - - ----- program label #1 to show string #2 681key_btab kcbt str kB KEY_BTAB 0541 ----- back-tab key 682enter_xon_mode smxon str SX - - ----- turn on xon/xoff handshaking 683exit_xon_mode rmxon str RX - - ----- turn off xon/xoff handshaking 684enter_am_mode smam str SA - - ----- turn on automatic margins 685exit_am_mode rmam str RA - - ----- turn off automatic margins 686xon_character xonc str XN - - ----- XON character 687xoff_character xoffc str XF - - ----- XOFF character 688ena_acs enacs str eA - - ----- enable alternate char set 689label_on smln str LO - - ----- turn on soft labels 690label_off rmln str LF - - ----- turn off soft labels 691key_beg kbeg str @1 KEY_BEG 0542 ----- begin key 692key_cancel kcan str @2 KEY_CANCEL 0543 ----- cancel key 693key_close kclo str @3 KEY_CLOSE 0544 ----- close key 694#key_command kcmd str @4 KEY_COMMAND 0545 ----- command key 695key_copy kcpy str @5 KEY_COPY 0546 ----- copy key 696key_create kcrt str @6 KEY_CREATE 0547 ----- create key 697#key_end kend str @7 KEY_END 0550 ----- end key 698key_enter kent str @8 KEY_ENTER 0527 ----- enter/send key 699key_exit kext str @9 KEY_EXIT 0551 ----- exit key 700key_find kfnd str @0 KEY_FIND 0552 ----- find key 701#key_help khlp str %1 KEY_HELP 0553 ----- help key 702key_mark kmrk str %2 KEY_MARK 0554 ----- mark key 703key_message kmsg str %3 KEY_MESSAGE 0555 ----- message key 704key_move kmov str %4 KEY_MOVE 0556 ----- move key 705key_next knxt str %5 KEY_NEXT 0557 ----- next key 706key_open kopn str %6 KEY_OPEN 0560 ----- open key 707key_options kopt str %7 KEY_OPTIONS 0561 ----- options key 708key_previous kprv str %8 KEY_PREVIOUS 0562 ----- previous key 709key_print kprt str %9 KEY_PRINT 0532 ----- print key 710key_redo krdo str %0 KEY_REDO 0563 ----- redo key 711key_reference kref str &1 KEY_REFERENCE 0564 ----- reference key 712key_refresh krfr str &2 KEY_REFRESH 0565 ----- refresh key 713key_replace krpl str &3 KEY_REPLACE 0566 ----- replace key 714key_restart krst str &4 KEY_RESTART 0567 ----- restart key 715key_resume kres str &5 KEY_RESUME 0570 ----- resume key 716key_save ksav str &6 KEY_SAVE 0571 ----- save key 717key_suspend kspd str &7 KEY_SUSPEND 0627 ----- suspend key 718key_undo kund str &8 KEY_UNDO 0630 ----- undo key 719#%.TE 720#%.TS 721#%center; 722#%Lbw(25n)2 Lbw(8n)2 Lb2 Lx. 723key_sbeg kBEG str &9 KEY_SBEG 0572 ----- shifted begin key 724key_scancel kCAN str &0 KEY_SCANCEL 0573 ----- shifted cancel key 725key_scommand kCMD str *1 KEY_SCOMMAND 0574 ----- shifted command key 726key_scopy kCPY str *2 KEY_SCOPY 0575 ----- shifted copy key 727key_screate kCRT str *3 KEY_SCREATE 0576 ----- shifted create key 728key_sdc kDC str *4 KEY_SDC 0577 ----- shifted delete-character key 729key_sdl kDL str *5 KEY_SDL 0600 ----- shifted delete-line key 730key_select kslt str *6 KEY_SELECT 0601 ----- select key 731key_send kEND str *7 KEY_SEND 0602 ----- shifted end key 732key_seol kEOL str *8 KEY_SEOL 0603 ----- shifted clear-to-end-of-line key 733key_sexit kEXT str *9 KEY_SEXIT 0604 ----- shifted exit key 734key_sfind kFND str *0 KEY_SFIND 0605 ----- shifted find key 735key_shelp kHLP str #1 KEY_SHELP 0606 ----- shifted help key 736key_shome kHOM str #2 KEY_SHOME 0607 ----- shifted home key 737key_sic kIC str #3 KEY_SIC 0610 ----- shifted insert-character key 738key_sleft kLFT str #4 KEY_SLEFT 0611 ----- shifted left-arrow key 739key_smessage kMSG str %a KEY_SMESSAGE 0612 ----- shifted message key 740key_smove kMOV str %b KEY_SMOVE 0613 ----- shifted move key 741key_snext kNXT str %c KEY_SNEXT 0614 ----- shifted next key 742key_soptions kOPT str %d KEY_SOPTIONS 0615 ----- shifted options key 743key_sprevious kPRV str %e KEY_SPREVIOUS 0616 ----- shifted previous key 744key_sprint kPRT str %f KEY_SPRINT 0617 ----- shifted print key 745key_sredo kRDO str %g KEY_SREDO 0620 ----- shifted redo key 746key_sreplace kRPL str %h KEY_SREPLACE 0621 ----- shifted replace key 747key_sright kRIT str %i KEY_SRIGHT 0622 ----- shifted right-arrow key 748key_srsume kRES str %j KEY_SRSUME 0623 ----- shifted resume key 749key_ssave kSAV str !1 KEY_SSAVE 0624 ----- shifted save key 750key_ssuspend kSPD str !2 KEY_SSUSPEND 0625 ----- shifted suspend key 751key_sundo kUND str !3 KEY_SUNDO 0626 ----- shifted undo key 752req_for_input rfi str RF - - ----- send next input char (for ptys) 753clr_bol el1 str cb - - ----- Clear to beginning of line 754clear_margins mgc str MC - - ----- clear right and left soft margins 755set_left_margin smgl str ML - - ----- set left soft margin at current column (not in BSD \fItermcap\fP) 756set_right_margin smgr str MR - - ----- set right soft margin at current column 757label_format fln str Lf - - ----- label format 758set_clock sclk str SC - - ----- set clock, #1 hrs #2 mins #3 secs 759display_clock dclk str DK - - ----- display clock 760remove_clock rmclk str RC - - ----- remove clock 761create_window cwin str CW - - ----- define a window #1 from #2,#3 to #4,#5 762goto_window wingo str WG - - ----- go to window #1 763hangup hup str HU - - ----- hang-up phone 764dial_phone dial str DI - - ----- dial number #1 765quick_dial qdial str QD - - ----- dial number #1 without checking 766tone tone str TO - - ----- select touch tone dialing 767pulse pulse str PU - - ----- select pulse dialing 768flash_hook hook str fh - - ----- flash switch hook 769fixed_pause pause str PA - - ----- pause for 2-3 seconds 770wait_tone wait str WA - - ----- wait for dial-tone 771user0 u0 str u0 - - ----- User string #0 772user1 u1 str u1 - - ----- User string #1 773user2 u2 str u2 - - ----- User string #2 774user3 u3 str u3 - - ----- User string #3 775user4 u4 str u4 - - ----- User string #4 776user5 u5 str u5 - - ----- User string #5 777user6 u6 str u6 - - ----- User string #6 778user7 u7 str u7 - - ----- User string #7 779user8 u8 str u8 - - ----- User string #8 780user9 u9 str u9 - - ----- User string #9 781# 782# SVr4 added these capabilities to support color 783# 784orig_pair op str op - - ----- Set default pair to its original value 785orig_colors oc str oc - - ----- Set all color pairs to the original ones 786initialize_color initc str Ic - - ----- initialize color #1 to (#2,#3,#4) 787initialize_pair initp str Ip - - ----- Initialize color pair #1 to fg=(#2,#3,#4), bg=(#5,#6,#7) 788set_color_pair scp str sp - - ----- Set current color pair to #1 789set_foreground setf str Sf - - ----- Set foreground color #1 790set_background setb str Sb - - ----- Set background color #1 791# 792# SVr4 added these capabilities to support printers 793# 794change_char_pitch cpi str ZA - - ----- Change number of characters per inch to #1 795change_line_pitch lpi str ZB - - ----- Change number of lines per inch to #1 796change_res_horz chr str ZC - - ----- Change horizontal resolution to #1 797change_res_vert cvr str ZD - - ----- Change vertical resolution to #1 798define_char defc str ZE - - ----- Define a character #1, #2 dots wide, descender #3 799enter_doublewide_mode swidm str ZF - - ----- Enter double-wide mode 800#%.TE 801#%.TS 802#%center; 803#%Lbw(25n)2 Lbw(8n)2 Lb2 Lx. 804enter_draft_quality sdrfq str ZG - - ----- Enter draft-quality mode 805enter_italics_mode sitm str ZH - - ----- Enter italic mode 806enter_leftward_mode slm str ZI - - ----- Start leftward carriage motion 807enter_micro_mode smicm str ZJ - - ----- Start micro-motion mode 808enter_near_letter_quality snlq str ZK - - ----- Enter NLQ mode 809enter_normal_quality snrmq str ZL - - ----- Enter normal-quality mode 810enter_shadow_mode sshm str ZM - - ----- Enter shadow-print mode 811enter_subscript_mode ssubm str ZN - - ----- Enter subscript mode 812enter_superscript_mode ssupm str ZO - - ----- Enter superscript mode 813enter_upward_mode sum str ZP - - ----- Start upward carriage motion 814exit_doublewide_mode rwidm str ZQ - - ----- End double-wide mode 815exit_italics_mode ritm str ZR - - ----- End italic mode 816exit_leftward_mode rlm str ZS - - ----- End left-motion mode 817exit_micro_mode rmicm str ZT - - ----- End micro-motion mode 818exit_shadow_mode rshm str ZU - - ----- End shadow-print mode 819exit_subscript_mode rsubm str ZV - - ----- End subscript mode 820exit_superscript_mode rsupm str ZW - - ----- End superscript mode 821exit_upward_mode rum str ZX - - ----- End reverse character motion 822micro_column_address mhpa str ZY - - ----- Like column_address in micro mode 823micro_down mcud1 str ZZ - - ----- Like cursor_down in micro mode 824micro_left mcub1 str Za - - ----- Like cursor_left in micro mode 825micro_right mcuf1 str Zb - - ----- Like cursor_right in micro mode 826micro_row_address mvpa str Zc - - ----- Like row_address #1 in micro mode 827micro_up mcuu1 str Zd - - ----- Like cursor_up in micro mode 828order_of_pins porder str Ze - - ----- Match software bits to print-head pins 829parm_down_micro mcud str Zf - - ----- Like parm_down_cursor in micro mode 830parm_left_micro mcub str Zg - - ----- Like parm_left_cursor in micro mode 831parm_right_micro mcuf str Zh - - ----- Like parm_right_cursor in micro mode 832parm_up_micro mcuu str Zi - - ----- Like parm_up_cursor in micro mode 833select_char_set scs str Zj - - ----- Select character set, #1 834set_bottom_margin smgb str Zk - - ----- Set bottom margin at current line 835set_bottom_margin_parm smgbp str Zl - - ----- Set bottom margin at line #1 or (if smgtp is not given) #2 lines from bottom 836set_left_margin_parm smglp str Zm - - ----- Set left (right) margin at column #1 837set_right_margin_parm smgrp str Zn - - ----- Set right margin at column #1 838set_top_margin smgt str Zo - - ----- Set top margin at current line 839set_top_margin_parm smgtp str Zp - - ----- Set top (bottom) margin at row #1 840start_bit_image sbim str Zq - - ----- Start printing bit image graphics 841start_char_set_def scsd str Zr - - ----- Start character set definition #1, with #2 characters in the set 842stop_bit_image rbim str Zs - - ----- Stop printing bit image graphics 843stop_char_set_def rcsd str Zt - - ----- End definition of character set #1 844subscript_characters subcs str Zu - - ----- List of subscriptable characters 845superscript_characters supcs str Zv - - ----- List of superscriptable characters 846these_cause_cr docr str Zw - - ----- Printing any of these characters causes CR 847zero_motion zerom str Zx - - ----- No motion for subsequent character 848#%.TE 849#%.PP 850#%. 851#%The following string capabilities are present in the SVr4.0 term structure, 852#%but were originally not documented in the man page. 853#%. 854#%.PP 855#%.TS 856#%center; 857#%Lb Cb S Lb 858#%Lb Lb Lb Lb 859#%Lbw(25n)2 Lbw(8n)2 Lb2 Lx. 860#%\& Code \& 861#%String Capability Name TI TC Description 862#%_ 863char_set_names csnm str Zy - - ----- Produce #1'th item from list of character set names 864key_mouse kmous str Km KEY_MOUSE 0631 ----- Mouse event has occurred 865mouse_info minfo str Mi - - ----- Mouse status information 866req_mouse_pos reqmp str RQ - - ----- Request mouse position 867get_mouse getm str Gm - - ----- Curses should get button events, parameter #1 not documented. 868set_a_foreground setaf str AF - - ----- Set foreground color to #1, using ANSI escape 869set_a_background setab str AB - - ----- Set background color to #1, using ANSI escape 870pkey_plab pfxl str xl - - ----- Program function key #1 to type string #2 and show string #3 871device_type devt str dv - - ----- Indicate language/codeset support 872code_set_init csin str ci - - ----- Init sequence for multiple codesets 873set0_des_seq s0ds str s0 - - ----- Shift to codeset 0 (EUC set 0, ASCII) 874set1_des_seq s1ds str s1 - - ----- Shift to codeset 1 875set2_des_seq s2ds str s2 - - ----- Shift to codeset 2 876set3_des_seq s3ds str s3 - - ----- Shift to codeset 3 877set_lr_margin smglr str ML - - ----- Set both left and right margins to #1, #2. (ML is not in BSD termcap). 878set_tb_margin smgtb str MT - - ----- Sets both top and bottom margins to #1, #2 879bit_image_repeat birep str Xy - - ----- Repeat bit image cell #1 #2 times 880bit_image_newline binel str Zz - - ----- Move to next row of the bit image 881bit_image_carriage_return bicr str Yv - - ----- Move to beginning of same row 882color_names colornm str Yw - - ----- Give name for color #1 883define_bit_image_region defbi str Yx - - ----- Define rectangular bit image region 884end_bit_image_region endbi str Yy - - ----- End a bit-image region 885set_color_band setcolor str Yz - - ----- Change to ribbon color #1 886set_page_length slines str YZ - - ----- Set page length to #1 lines 887# 888# SVr4 added these capabilities for direct PC-clone support 889# 890display_pc_char dispc str S1 - - ----- Display PC character #1 891enter_pc_charset_mode smpch str S2 - - ----- Enter PC character display mode 892exit_pc_charset_mode rmpch str S3 - - ----- Exit PC character display mode 893enter_scancode_mode smsc str S4 - - ----- Enter PC scancode mode 894exit_scancode_mode rmsc str S5 - - ----- Exit PC scancode mode 895pc_term_options pctrm str S6 - - ----- PC terminal options 896scancode_escape scesc str S7 - - ----- Escape for scancode emulation 897alt_scancode_esc scesa str S8 - - ----- Alternate escape for scancode emulation 898#%.TE 899#%.PP 900#%. 901#%The XSI Curses standard added these hardcopy capabilities. 902#%They were used in some post-4.1 versions of System V curses, 903#%e.g., Solaris 2.5 and IRIX 6.x. 904#%Except for \fBYI\fP, the \fBncurses\fR termcap names for them are invented. 905#%According to the XSI Curses standard, they have no termcap names. 906#%If your compiled terminfo entries use these, 907#%they may not be binary-compatible with System V terminfo 908#%entries after SVr4.1; beware! 909#%. 910#%.PP 911#%.TS 912#%center; 913#%Lb Cb S Lb 914#%Lb Lb Lb Lb 915#%Lbw(25n)2 Lbw(8n)2 Lb2 Lx. 916#%\& Code \& 917#%String Capability Name TI TC Description 918#%_ 919#enter_horizontal_hl_mode ehhlm str Xh - - ----- Enter horizontal highlight mode 920#enter_left_hl_mode elhlm str Xl - - ----- Enter left highlight mode 921#enter_low_hl_mode elohlm str Xo - - ----- Enter low highlight mode 922#enter_right_hl_mode erhlm str Xr - - ----- Enter right highlight mode 923#enter_top_hl_mode ethlm str Xt - - ----- Enter top highlight mode 924#enter_vertical_hl_mode evhlm str Xv - - ----- Enter vertical highlight mode 925#set_a_attributes sgr1 str sA - - ----- Define second set of video attributes #1-#6 926set_pglen_inch slength str YI - - ----- Set page length to #1 hundredth of an inch (some implementations use sL for termcap). 927#%.TE 928# 929# The magic token below tells the tic compiler-generator code that all the caps 930# past it should be ignored (not written out) when dumping terminfo objects. It 931# also tells the man page table generator not to pass through following lines 932# This means we can have obsolete capabilities and pseudo-capabilities that are 933# recognized for termcap or terminfo compilation, but not output. 934# 935# %%-STOP-HERE-%% 936# 937# Don't move this casually! In fact, don't move it at all unless you're 938# either doing it to add System V or XPG4 extensions, or have decided you 939# don't care about SVr4 binary compatibility. 940# 941############################################################################# 942# 943# TERMCAP EXTENSION CAPABILITIES 944# 945# The capabilities below are either obsolete or extensions on certain systems. 946# They are not used by SVR4 terminfo. Some are used by captoinfo to translate 947# termcap sources; the rest are listed for completeness, and in case somebody 948# cares about them enough to hack in code that will translate them into 949# terminfo capabilities. 950# 951# The first part of the list is from Ross Ridge's `mytinfo' package 952# (comp.sources.unix, volume 26); the variable names and terminfo names (as 953# well as the termcap codes) match his list. 954# 955# This group of codes is not marked obsolete in 4.4BSD, but have no direct 956# terminfo equivalents. The rs capability is specially translated to terminfo 957# r2, and vice versa, if an entry does not already have an r2. Similarly, 958# i2 is translated to r3 if there is no r3 (because SV terminfo maps is to i2). 959# The ug capability is thrown away, but assumed to be whatever sg is if the 960# latter is nonzero and we're dumping in termcap format. 961# 962termcap_init2 OTi2 str i2 - - YB--- secondary initialization string 963termcap_reset OTrs str rs - - YB-G- terminal reset string 964magic_cookie_glitch_ul OTug num ug - - YBCGE number of blanks left by ul 965# 966# Obsolete termcap capabilities. Some are used for termcap translation. The 967# code uses the 'OT' prefix we put on obsolete capabilities to suppress 968# printing them in terminfo source dumps of compiled entries. 969# 970backspaces_with_bs OTbs bool bs - - YBCGE uses ^H to move left 971crt_no_scrolling OTns bool ns - - YBCG- crt cannot scroll 972no_correctly_working_cr OTnc bool nc - - YBCG- no way to go to start of line 973carriage_return_delay OTdC num dC - - YB-G- pad needed for CR 974new_line_delay OTdN num dN - - YB-G- pad needed for LF 975linefeed_if_not_lf OTnl str nl - - YBCGE use to move down 976backspace_if_not_bs OTbc str bc - - YBCGE move left, if not ^H 977# 978# GNU termcap library extensions. The GNU termcap file distributed with 979# Emacs no longer uses these, but MT showed up in pre-9.0 versions of the 980# BSD termcap file. The name clash with terminfo MT is resolved by type 981# info; MT is converted to km. 982# 983gnu_has_meta_key OTMT bool MT - - ----E has meta key 984# gnu_tab_width OTtw num tw - - ----E tab width in spaces 985# 986# GNU termcap *does* include the following extended capability, Only the 987# now-obsolete Ann Arbor terminals used it. 988# 989# gnu_change_scroll_region OTcS str cS - - ---GE alternate set scrolling region 990# 991# The following comments describe capnames so ancient that I believe no 992# software uses them any longer. Some of these have to go because they 993# clash with terminfo names in ways that cannot be resolved by type 994# information. 995# 996# These mytinfo codes are not used in the 4.4BSD curses code. They are 997# marked obsolete in the 4.4BSD manual pages. 998# 999# There is one conflict with terminfo; ma is in both. This conflict is 1000# resolved by type information. 1001# 1002# The `ko' capability is translated by special code. It should contain a 1003# comma-separated list of capabilities for which there are corresponding keys. 1004# The `kn' code is accepted but ignored. 1005# 1006# The `ma' capability was a 4.0BSD feature used by vi version 2. 1007# It consists of pairs of characters corresponding to kl, kr, ku, kd, and kh. 1008# Besides being obsolete, that interpretation conflicts with max_attributes. 1009# 1010# Here is a description of memory_lock_above and memory_unlock: 1011# "You can 'freeze' data on the screen by turning on Memory Lock in a line of 1012# text. All lines above the cursor's current line become locked in place on 1013# the screen. Then enter data normally. When the screen fills up, any 1014# further data entered forces the first line of unfrozen line text to scroll 1015# under the frozen data. Lines scrolled off the screen are inserted into 1016# memory immediately preceding the first frozen line." (from the HP 700/96 1017# User's manual). VT100/ANSI memory lock set is \E[>2h, reset is \E[>2l. 1018# 1019# Applications that use terminfo are supposed to behave as though xr is 1020# always true. 1021# 1022linefeed_is_newline OTNL bool NL - - YB--- move down with \n 1023# even_parity OTEP bool EP - - -B--- terminal requires even parity 1024# odd_parity OTOP bool OP - - -B--- terminal requires odd parity 1025# half_duplex OTHD bool HD - - -B--- terminal is half-duplex 1026# lower_case_only OTLC bool LC - - -B--- terminal has only lower case 1027# upper_case_only OTUC bool UC - - -B--- terminal has only upper case 1028backspace_delay OTdB num dB - - YB-G- padding required for ^H 1029# form_feed_delay OTdF num dF - - -B-G- padding required for ^L 1030horizontal_tab_delay OTdT num dT - - YB-G- padding required for ^I 1031# vertical_tab_delay OTdV num dV - - -B--- padding required for ^V 1032number_of_function_keys OTkn num kn - - -B-G- count of function keys 1033other_non_function_keys OTko str ko - - -B-G- list of self-mapped keycaps 1034arrow_key_map OTma str ma - - YBC-- map motion-keys for vi version 2 1035# memory_lock_above OTml str ml - - -B--- lock visible screen memory above the current line 1036# memory_unlock OTmu str mu - - -B--- unlock visible screen memory above the current line 1037has_hardware_tabs OTpt bool pt - - YB--- has 8-char tabs invoked with ^I 1038return_does_clr_eol OTxr bool xr - - YB--- return clears the line 1039# tek_4025_insert_line OTxx bool xx - - -BC-- Tektronix 4025 insert-line glitch 1040# 1041# mytinfo described this as a termcap capability, but it is not listed in the 1042# 4.4BSD man pages, and not found in the 4.4BSD termcap file. The ncurses 1043# package, like System V, behaves as though it is always true. 1044# 1045# rind_only_at_top OTxq bool xq - - ----- reverse index only works from top line 1046# 1047# University of Waterloo termcap extensions (as described in mytinfo). 1048# The `xl' termcap file clashes with a terminfo name; this ambiguity cannot 1049# be resolved by a type check. The descriptions are guesses from what was 1050# in the mytinfo tables. 1051# 1052# key_interrupt_char OTki str ki - - ----- string set by interrupt key (?) 1053# key_kill_char OTkk str kk - - ----- string set by kill key (?) 1054# key_suspend_char OTkz str kz - - ----- string set by suspend key (?) 1055# initialization_messy OTxc bool xc - - ----- initialization leaves garbage on the screen (?) 1056# ind_at_bottom_does_cr OTxl bool xl - - ----- index does a carriage return 1057# 1058# Nonstandard capabilities unique to Ross Ridge's `mytinfo' package. 1059# SR clashes with a terminfo name; this ambiguity cannot be resolved by a type 1060# check. 1061# 1062# scroll_left OTsl1 str Sl - - ----- scroll screen leftward 1063# scroll_right OTsr1 str Sr - - ----- scroll screen rightward 1064# parm_scroll_left OTsl str SL - - ----- scroll screen leftward #1 characters 1065# parm_scroll_right OTsr str SR - - ----- scroll screen rightward #1 characters 1066# 1067# The mytinfo capabilities end here. 1068# 1069# XENIX extensions: 1070# 1071# Xenix defined its own set of forms-drawing capabilities: 1072# 1073# cap IBM ASCII description ACS ASCII 1074# --- ----------- -------------------- ------------- ------ 1075# G1 191 \277 M-? single upper right ACS_URCORNER 1076# G2 218 \332 M-Z single upper left ACS_ULCORNER 1077# G3 192 \300 M-@ single lower left ACS_LLCORNER 1078# G4 217 \331 M-Y single lower right ACS_LRCORNER 1079# G5 187 \273 M-; double upper right 1080# G6 201 \311 M-I double upper left 1081# G7 200 \310 M-H double lower left 1082# G8 188 \274 M-< double lower right 1083# GC 197 \305 M-E single intersection ACS_PLUS _ _ 1084# GD 194 \302 M-B single down-tick ACS_TTEE | 1085# GH 196 \304 M-D single horizontal line ACS_HLINE 1086# GL 180 \264 M-4 single left tick ACS_RTEE -| 1087# GR 195 \303 M-C single right tick ACS_LTEE |- 1088# GU 193 \301 M-A single up tick ACS_BTEE _|_ 1089# GV 179 \263 M-3 single vertical line ACS_VLINE 1090# Gc 206 \316 M-N double intersection 1091# Gd 203 \313 M-K double down tick 1092# Gh 205 \315 M-M double horizontal line 1093# Gl 204 \204 M-L double left tick 1094# Gr 185 \271 M-9 double right tick 1095# Gu 202 \312 M-J double up tick 1096# Gv 186 \272 M-: double vertical line 1097# 1098# The compiler will translate the single-line caps and discard the others 1099# (via IGNORE aliases further down). We don't want to do normal pad 1100# translation on these, they're often single-character printable ASCII 1101# strings that happen to be numerics. There's awk code in parametrized.sh 1102# that detects the acs_ prefix and uses it to suppress pad translation. 1103# These terminfo names are invented. 1104# 1105acs_ulcorner OTG2 str G2 - - ----- single upper left 1106acs_llcorner OTG3 str G3 - - ----- single lower left 1107acs_urcorner OTG1 str G1 - - ----- single upper right 1108acs_lrcorner OTG4 str G4 - - ----- single lower right 1109acs_ltee OTGR str GR - - ----- tee pointing right 1110acs_rtee OTGL str GL - - ----- tee pointing left 1111acs_btee OTGU str GU - - ----- tee pointing up 1112acs_ttee OTGD str GD - - ----- tee pointing down 1113acs_hline OTGH str GH - - ----- single horizontal line 1114acs_vline OTGV str GV - - ----- single vertical line 1115acs_plus OTGC str GC - - ----- single intersection 1116# 1117############################################################################# 1118# 1119# TERMINFO EXTENSION CAPABILITIES 1120# 1121# (see Caps-ncurses for the complete set of comments) 1122# 1123memory_lock meml str ml - - ----K lock memory above cursor 1124memory_unlock memu str mu - - ----K unlock memory 1125# 1126############################################################################# 1127