1 1.9 christos /* $NetBSD: terminal.h,v 1.9 2016/05/09 21:46:56 christos Exp $ */ 2 1.1 christos 3 1.1 christos /*- 4 1.1 christos * Copyright (c) 1992, 1993 5 1.1 christos * The Regents of the University of California. All rights reserved. 6 1.1 christos * 7 1.1 christos * This code is derived from software contributed to Berkeley by 8 1.1 christos * Christos Zoulas of Cornell University. 9 1.1 christos * 10 1.1 christos * Redistribution and use in source and binary forms, with or without 11 1.1 christos * modification, are permitted provided that the following conditions 12 1.1 christos * are met: 13 1.1 christos * 1. Redistributions of source code must retain the above copyright 14 1.1 christos * notice, this list of conditions and the following disclaimer. 15 1.1 christos * 2. Redistributions in binary form must reproduce the above copyright 16 1.1 christos * notice, this list of conditions and the following disclaimer in the 17 1.1 christos * documentation and/or other materials provided with the distribution. 18 1.1 christos * 3. Neither the name of the University nor the names of its contributors 19 1.1 christos * may be used to endorse or promote products derived from this software 20 1.1 christos * without specific prior written permission. 21 1.1 christos * 22 1.1 christos * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 23 1.1 christos * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 24 1.1 christos * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 25 1.1 christos * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 26 1.1 christos * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 27 1.1 christos * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 28 1.1 christos * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 29 1.1 christos * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 30 1.1 christos * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 31 1.1 christos * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32 1.1 christos * SUCH DAMAGE. 33 1.1 christos * 34 1.1 christos * @(#)term.h 8.1 (Berkeley) 6/4/93 35 1.1 christos */ 36 1.1 christos 37 1.1 christos /* 38 1.1 christos * el.term.h: Termcap header 39 1.1 christos */ 40 1.1 christos #ifndef _h_el_terminal 41 1.1 christos #define _h_el_terminal 42 1.1 christos 43 1.1 christos typedef struct { /* Symbolic function key bindings */ 44 1.8 christos const wchar_t *name; /* name of the key */ 45 1.1 christos int key; /* Index in termcap table */ 46 1.2 christos keymacro_value_t fun; /* Function bound to it */ 47 1.1 christos int type; /* Type of function */ 48 1.2 christos } funckey_t; 49 1.1 christos 50 1.1 christos typedef struct { 51 1.1 christos const char *t_name; /* the terminal name */ 52 1.1 christos coord_t t_size; /* # lines and cols */ 53 1.1 christos int t_flags; 54 1.1 christos #define TERM_CAN_INSERT 0x001 /* Has insert cap */ 55 1.1 christos #define TERM_CAN_DELETE 0x002 /* Has delete cap */ 56 1.1 christos #define TERM_CAN_CEOL 0x004 /* Has CEOL cap */ 57 1.1 christos #define TERM_CAN_TAB 0x008 /* Can use tabs */ 58 1.1 christos #define TERM_CAN_ME 0x010 /* Can turn all attrs. */ 59 1.1 christos #define TERM_CAN_UP 0x020 /* Can move up */ 60 1.1 christos #define TERM_HAS_META 0x040 /* Has a meta key */ 61 1.1 christos #define TERM_HAS_AUTO_MARGINS 0x080 /* Has auto margins */ 62 1.1 christos #define TERM_HAS_MAGIC_MARGINS 0x100 /* Has magic margins */ 63 1.1 christos char *t_buf; /* Termcap buffer */ 64 1.3 christos size_t t_loc; /* location used */ 65 1.1 christos char **t_str; /* termcap strings */ 66 1.1 christos int *t_val; /* termcap values */ 67 1.1 christos char *t_cap; /* Termcap buffer */ 68 1.2 christos funckey_t *t_fkey; /* Array of keys */ 69 1.1 christos } el_terminal_t; 70 1.1 christos 71 1.1 christos /* 72 1.1 christos * fKey indexes 73 1.1 christos */ 74 1.1 christos #define A_K_DN 0 75 1.1 christos #define A_K_UP 1 76 1.1 christos #define A_K_LT 2 77 1.1 christos #define A_K_RT 3 78 1.1 christos #define A_K_HO 4 79 1.1 christos #define A_K_EN 5 80 1.4 christos #define A_K_DE 6 81 1.4 christos #define A_K_NKEYS 7 82 1.1 christos 83 1.9 christos libedit_private void terminal_move_to_line(EditLine *, int); 84 1.9 christos libedit_private void terminal_move_to_char(EditLine *, int); 85 1.9 christos libedit_private void terminal_clear_EOL(EditLine *, int); 86 1.9 christos libedit_private void terminal_overwrite(EditLine *, const wchar_t *, size_t); 87 1.9 christos libedit_private void terminal_insertwrite(EditLine *, wchar_t *, int); 88 1.9 christos libedit_private void terminal_deletechars(EditLine *, int); 89 1.9 christos libedit_private void terminal_clear_screen(EditLine *); 90 1.9 christos libedit_private void terminal_beep(EditLine *); 91 1.9 christos libedit_private int terminal_change_size(EditLine *, int, int); 92 1.9 christos libedit_private int terminal_get_size(EditLine *, int *, int *); 93 1.9 christos libedit_private int terminal_init(EditLine *); 94 1.9 christos libedit_private void terminal_bind_arrow(EditLine *); 95 1.9 christos libedit_private void terminal_print_arrow(EditLine *, const wchar_t *); 96 1.9 christos libedit_private int terminal_clear_arrow(EditLine *, const wchar_t *); 97 1.9 christos libedit_private int terminal_set_arrow(EditLine *, const wchar_t *, 98 1.8 christos keymacro_value_t *, int); 99 1.9 christos libedit_private void terminal_end(EditLine *); 100 1.9 christos libedit_private void terminal_get(EditLine *, const char **); 101 1.9 christos libedit_private int terminal_set(EditLine *, const char *); 102 1.9 christos libedit_private int terminal_settc(EditLine *, int, const wchar_t **); 103 1.9 christos libedit_private int terminal_gettc(EditLine *, int, char **); 104 1.9 christos libedit_private int terminal_telltc(EditLine *, int, const wchar_t **); 105 1.9 christos libedit_private int terminal_echotc(EditLine *, int, const wchar_t **); 106 1.9 christos libedit_private void terminal_writec(EditLine *, wint_t); 107 1.9 christos libedit_private int terminal__putc(EditLine *, wint_t); 108 1.9 christos libedit_private void terminal__flush(EditLine *); 109 1.1 christos 110 1.1 christos /* 111 1.1 christos * Easy access macros 112 1.1 christos */ 113 1.1 christos #define EL_FLAGS (el)->el_terminal.t_flags 114 1.1 christos 115 1.1 christos #define EL_CAN_INSERT (EL_FLAGS & TERM_CAN_INSERT) 116 1.1 christos #define EL_CAN_DELETE (EL_FLAGS & TERM_CAN_DELETE) 117 1.1 christos #define EL_CAN_CEOL (EL_FLAGS & TERM_CAN_CEOL) 118 1.1 christos #define EL_CAN_TAB (EL_FLAGS & TERM_CAN_TAB) 119 1.1 christos #define EL_CAN_ME (EL_FLAGS & TERM_CAN_ME) 120 1.1 christos #define EL_CAN_UP (EL_FLAGS & TERM_CAN_UP) 121 1.1 christos #define EL_HAS_META (EL_FLAGS & TERM_HAS_META) 122 1.1 christos #define EL_HAS_AUTO_MARGINS (EL_FLAGS & TERM_HAS_AUTO_MARGINS) 123 1.1 christos #define EL_HAS_MAGIC_MARGINS (EL_FLAGS & TERM_HAS_MAGIC_MARGINS) 124 1.1 christos 125 1.1 christos #endif /* _h_el_terminal */ 126