FreeNOS
teken.h
Go to the documentation of this file.
1/*-
2 * Copyright (c) 2008-2009 Ed Schouten <ed@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD$
27 */
28
29#ifndef _TEKEN_H_
30#define _TEKEN_H_
31
32/*
33 * libteken: terminal emulation library.
34 *
35 * This library converts an UTF-8 stream of bytes to terminal drawing
36 * commands.
37 *
38 * Configuration switches:
39 * - TEKEN_UTF8: Enable/disable UTF-8 handling.
40 * - TEKEN_XTERM: Enable xterm-style emulation, instead of cons25.
41 */
42
43#include <sys/types.h>
44#include <Macros.h>
45
46#ifdef TEKEN_UTF8
47typedef uint32_t teken_char_t;
48#else /* !TEKEN_UTF8 */
49typedef unsigned char teken_char_t;
50#endif /* TEKEN_UTF8 */
51typedef unsigned short teken_unit_t;
52typedef unsigned char teken_format_t;
53#define TF_BOLD 0x01
54#define TF_UNDERLINE 0x02
55#define TF_BLINK 0x04
56#define TF_REVERSE 0x08
57typedef unsigned char teken_color_t;
58#define TC_BLACK 0
59#define TC_RED 1
60#define TC_GREEN 2
61#define TC_BROWN 3
62#define TC_BLUE 4
63#define TC_MAGENTA 5
64#define TC_CYAN 6
65#define TC_WHITE 7
66#define TC_NCOLORS 8
67
85
86typedef struct __teken teken_t;
87
89
90/*
91 * Drawing routines supplied by the user.
92 */
93
94typedef void tf_bell_t(void *);
95typedef void tf_cursor_t(void *, const teken_pos_t *);
96typedef void tf_putchar_t(void *, const teken_pos_t *, teken_char_t,
97 const teken_attr_t *);
98typedef void tf_fill_t(void *, const teken_rect_t *, teken_char_t,
99 const teken_attr_t *);
100typedef void tf_copy_t(void *, const teken_rect_t *, const teken_pos_t *);
101typedef void tf_param_t(void *, int, unsigned int);
102#define TP_SHOWCURSOR 0
103#define TP_CURSORKEYS 1
104#define TP_KEYPADAPP 2
105#define TP_AUTOREPEAT 3
106#define TP_SWITCHVT 4
107#define TP_132COLS 5
108#define TP_SETBELLPD 6
109#define TP_SETBELLPD_PITCH(pd) ((pd) >> 16)
110#define TP_SETBELLPD_DURATION(pd) ((pd) & 0xffff)
111typedef void tf_respond_t(void *, const void *, size_t);
112
122
123#if defined(TEKEN_XTERM) && defined(TEKEN_UTF8)
124typedef teken_char_t teken_scs_t(teken_char_t);
125#endif /* TEKEN_XTERM && TEKEN_UTF8 */
126
127/*
128 * Terminal state.
129 */
130
131struct __teken {
133 void *t_softc;
134
136 unsigned int t_stateflags;
137
138#define T_NUMSIZE 8
139 unsigned int t_nums[T_NUMSIZE];
140 unsigned int t_curnum;
141
146
149
150 /* For DECSTBM. */
152 /* For DECOM. */
154
155#define T_NUMCOL 160
156 unsigned int t_tabstops[T_NUMCOL / (sizeof(unsigned int) * 8)];
157
158#ifdef TEKEN_UTF8
159 unsigned int t_utf8_left;
160 teken_char_t t_utf8_partial;
161#endif /* TEKEN_UTF8 */
162
163#if defined(TEKEN_XTERM) && defined(TEKEN_UTF8)
164 unsigned int t_curscs;
165 teken_scs_t *t_saved_curscs;
166 teken_scs_t *t_scs[2];
167#endif /* TEKEN_XTERM && TEKEN_UTF8 */
168};
169
170/* Initialize teken structure. */
171extern C void teken_init(teken_t *, const teken_funcs_t *, void *);
172
173/* Deliver character input. */
174extern C void teken_input(teken_t *, const void *, size_t);
175
176/* Get/set teken attributes. */
177extern C const teken_attr_t *teken_get_curattr(teken_t *);
178extern C const teken_attr_t *teken_get_defattr(teken_t *);
179extern C void teken_set_cursor(teken_t *, const teken_pos_t *);
180extern C void teken_set_curattr(teken_t *, const teken_attr_t *);
181extern C void teken_set_defattr(teken_t *, const teken_attr_t *);
182extern C void teken_set_winsize(teken_t *, const teken_pos_t *);
183
184#endif /* !_TEKEN_H_ */
#define C
Used to define external C functions.
Definition Macros.h:134
teken_pos_t t_cursor
Definition teken.h:142
void * t_softc
Definition teken.h:133
unsigned int t_curnum
Definition teken.h:140
unsigned int t_nums[T_NUMSIZE]
Definition teken.h:139
const teken_funcs_t * t_funcs
Definition teken.h:132
teken_attr_t t_saved_curattr
Definition teken.h:145
teken_pos_t t_winsize
Definition teken.h:148
unsigned int t_stateflags
Definition teken.h:136
teken_attr_t t_defattr
Definition teken.h:147
teken_state_t * t_nextstate
Definition teken.h:135
unsigned int t_tabstops[T_NUMCOL/(sizeof(unsigned int) *8)]
Definition teken.h:156
teken_span_t t_scrollreg
Definition teken.h:151
teken_pos_t t_saved_cursor
Definition teken.h:144
teken_span_t t_originreg
Definition teken.h:153
teken_attr_t t_curattr
Definition teken.h:143
teken_color_t ta_fgcolor
Definition teken.h:78
teken_format_t ta_format
Definition teken.h:77
teken_color_t ta_bgcolor
Definition teken.h:79
tf_cursor_t * tf_cursor
Definition teken.h:115
tf_param_t * tf_param
Definition teken.h:119
tf_copy_t * tf_copy
Definition teken.h:118
tf_putchar_t * tf_putchar
Definition teken.h:116
tf_bell_t * tf_bell
Definition teken.h:114
tf_fill_t * tf_fill
Definition teken.h:117
tf_respond_t * tf_respond
Definition teken.h:120
teken_unit_t tp_col
Definition teken.h:70
teken_unit_t tp_row
Definition teken.h:69
teken_pos_t tr_begin
Definition teken.h:73
teken_pos_t tr_end
Definition teken.h:74
teken_unit_t ts_begin
Definition teken.h:82
teken_unit_t ts_end
Definition teken.h:83
C void teken_set_cursor(teken_t *, const teken_pos_t *)
Definition teken.c:298
C const teken_attr_t * teken_get_curattr(teken_t *)
Definition teken.c:309
void tf_bell_t(void *)
Definition teken.h:94
void teken_state_t(teken_t *, teken_char_t)
Definition teken.h:88
#define T_NUMSIZE
Definition teken.h:138
C void teken_set_defattr(teken_t *, const teken_attr_t *)
Definition teken.c:330
C void teken_set_curattr(teken_t *, const teken_attr_t *)
Definition teken.c:316
C void teken_input(teken_t *, const void *, size_t)
Definition teken.c:289
C const teken_attr_t * teken_get_defattr(teken_t *)
Definition teken.c:323
void tf_param_t(void *, int, unsigned int)
Definition teken.h:101
void tf_respond_t(void *, const void *, size_t)
Definition teken.h:111
void tf_fill_t(void *, const teken_rect_t *, teken_char_t, const teken_attr_t *)
Definition teken.h:98
#define T_NUMCOL
Definition teken.h:155
unsigned char teken_char_t
Definition teken.h:49
unsigned char teken_color_t
Definition teken.h:57
unsigned short teken_unit_t
Definition teken.h:51
C void teken_set_winsize(teken_t *, const teken_pos_t *)
Definition teken.c:337
unsigned char teken_format_t
Definition teken.h:52
void tf_cursor_t(void *, const teken_pos_t *)
Definition teken.h:95
void tf_copy_t(void *, const teken_rect_t *, const teken_pos_t *)
Definition teken.h:100
void tf_putchar_t(void *, const teken_pos_t *, teken_char_t, const teken_attr_t *)
Definition teken.h:96
C void teken_init(teken_t *, const teken_funcs_t *, void *)
Definition teken.c:173