Deleted Added
sdiff udiff text old ( 197539 ) new ( 199171 )
full compact
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 unchanged lines hidden (view full) ---

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: head/sys/teken/teken.h 197539 2009-09-27 18:19:41Z ed $
27 */
28
29#ifndef _TEKEN_H_
30#define _TEKEN_H_
31
32/*
33 * libteken: terminal emulation library.
34 *

--- 49 unchanged lines hidden (view full) ---

84typedef void tf_cursor_t(void *, const teken_pos_t *);
85typedef void tf_putchar_t(void *, const teken_pos_t *, teken_char_t,
86 const teken_attr_t *);
87typedef void tf_fill_t(void *, const teken_rect_t *, teken_char_t,
88 const teken_attr_t *);
89typedef void tf_copy_t(void *, const teken_rect_t *, const teken_pos_t *);
90typedef void tf_param_t(void *, int, unsigned int);
91#define TP_SHOWCURSOR 0
92#define TP_CURSORKEYS 1
93#define TP_KEYPADAPP 2
94#define TP_AUTOREPEAT 3
95#define TP_SWITCHVT 4
96#define TP_132COLS 5
97#define TP_SETBELLPD 6
98#define TP_SETBELLPD_PITCH(pd) ((pd) >> 16)
99#define TP_SETBELLPD_DURATION(pd) ((pd) & 0xffff)
100#define TP_MOUSE 7
101typedef void tf_respond_t(void *, const void *, size_t);
102
103typedef struct {
104 tf_bell_t *tf_bell;
105 tf_cursor_t *tf_cursor;
106 tf_putchar_t *tf_putchar;
107 tf_fill_t *tf_fill;
108 tf_copy_t *tf_copy;

--- 54 unchanged lines hidden (view full) ---

163const teken_attr_t *teken_get_defattr(teken_t *);
164void teken_get_defattr_cons25(teken_t *, int *, int *);
165const teken_pos_t *teken_get_winsize(teken_t *);
166void teken_set_cursor(teken_t *, const teken_pos_t *);
167void teken_set_curattr(teken_t *, const teken_attr_t *);
168void teken_set_defattr(teken_t *, const teken_attr_t *);
169void teken_set_winsize(teken_t *, const teken_pos_t *);
170
171/* Legacy features. */
172void teken_set_8bit(teken_t *);
173void teken_set_cons25(teken_t *);
174
175/* Color conversion. */
176teken_color_t teken_256to8(teken_color_t);
177
178#endif /* !_TEKEN_H_ */