1 /* $NetBSD: ip_term.c,v 1.4 2014/01/26 21:43:45 christos Exp $ */
4 * Keith Bostic. All rights reserved.
6 * See the LICENSE file for redistribution information.
11 #include <sys/cdefs.h>
14 static const char sccsid
[] = "Id: ip_term.c,v 8.9 2001/06/25 15:19:24 skimo Exp (Berkeley) Date: 2001/06/25 15:19:24 ";
17 __RCSID("$NetBSD: ip_term.c,v 1.4 2014/01/26 21:43:45 christos Exp $");
20 #include <sys/types.h>
21 #include <sys/queue.h>
23 #include <bitstring.h>
27 #include "../common/common.h"
28 #include "../ipc/ip.h"
32 * Initialize the terminal special keys.
34 * PUBLIC: int ip_term_init __P((SCR *));
42 * Rework any function key mappings that were set before the
43 * screen was initialized.
45 LIST_FOREACH(qp
, &sp
->gp
->seqq
, q
)
46 if (F_ISSET(qp
, SEQ_FUNCMAP
))
47 (void)ip_fmap(sp
, qp
->stype
,
48 qp
->input
, qp
->ilen
, qp
->output
, qp
->olen
);
54 * End the special keys defined by the termcap/terminfo entry.
56 * PUBLIC: int ip_term_end __P((GS *));
63 /* Delete screen specific mappings. */
64 LIST_FOREACH_SAFE(qp
, &gp
->seqq
, q
, nqp
) {
65 if (F_ISSET(qp
, SEQ_SCREEN
))
75 * PUBLIC: int ip_fmap __P((SCR *, seq_t, CHAR_T *, size_t, CHAR_T *, size_t));
78 ip_fmap(SCR
*sp
, seq_t stype
, CHAR_T
*from
, size_t flen
, CHAR_T
*to
, size_t tlen
)
80 /* Bind a function key to a string sequence. */
86 * IP screen specific "option changed" routine.
88 * PUBLIC: int ip_optchange __P((SCR *, int, const char *, u_long *));
91 ip_optchange(SCR
*sp
, int offset
, const char *str
, u_long
*valp
)
95 IP_PRIVATE
*ipp
= IPP(sp
);
100 F_SET(sp
->gp
, G_SRESTART
);
101 F_CLR(sp
, SC_SCR_EX
| SC_SCR_VI
);
104 /* Called with "ip_curses"; previously wasn't shown
105 * because switching to EX wasn't allowed
106 msgq(sp, M_ERR, "The screen type may not be changed");
111 opt
= optlist
+ offset
;
125 ipb
.len2
= strlen(str
) + 1;
130 ipb
.code
= SI_EDITOPT
;
131 ipb
.str1
= __UNCONST(opt
->name
);
132 ipb
.len1
= STRLEN(opt
->name
) * sizeof(CHAR_T
);
134 (void)vi_send(ipp
->o_fd
, "ab1", &ipb
);