Deleted Added
full compact
teken.h (197539) teken.h (199171)
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 *
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 $
26 * $FreeBSD: head/sys/teken/teken.h 199171 2009-11-11 08:20:19Z 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
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
92#define TP_KEYPADAPP 1
93#define TP_AUTOREPEAT 2
94#define TP_SWITCHVT 3
95#define TP_132COLS 4
96#define TP_SETBELLPD 5
98#define TP_SETBELLPD_PITCH(pd) ((pd) >> 16)
99#define TP_SETBELLPD_DURATION(pd) ((pd) & 0xffff)
97#define TP_SETBELLPD_PITCH(pd) ((pd) >> 16)
98#define TP_SETBELLPD_DURATION(pd) ((pd) & 0xffff)
100#define TP_MOUSE 7
99#define TP_MOUSE 6
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
100typedef void tf_respond_t(void *, const void *, size_t);
101
102typedef struct {
103 tf_bell_t *tf_bell;
104 tf_cursor_t *tf_cursor;
105 tf_putchar_t *tf_putchar;
106 tf_fill_t *tf_fill;
107 tf_copy_t *tf_copy;

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

162const teken_attr_t *teken_get_defattr(teken_t *);
163void teken_get_defattr_cons25(teken_t *, int *, int *);
164const teken_pos_t *teken_get_winsize(teken_t *);
165void teken_set_cursor(teken_t *, const teken_pos_t *);
166void teken_set_curattr(teken_t *, const teken_attr_t *);
167void teken_set_defattr(teken_t *, const teken_attr_t *);
168void teken_set_winsize(teken_t *, const teken_pos_t *);
169
170/* Key input escape sequences. */
171#define TKEY_UP 0x00
172#define TKEY_DOWN 0x01
173#define TKEY_LEFT 0x02
174#define TKEY_RIGHT 0x03
175
176#define TKEY_INSERT 0x04
177#define TKEY_DELETE 0x05
178#define TKEY_HOME 0x06
179#define TKEY_END 0x07
180#define TKEY_PAGE_UP 0x08
181#define TKEY_PAGE_DOWN 0x09
182
183#define TKEY_F1 0x0a
184#define TKEY_F2 0x0b
185#define TKEY_F3 0x0c
186#define TKEY_F4 0x0d
187#define TKEY_F5 0x0e
188#define TKEY_F6 0x0f
189#define TKEY_F7 0x10
190#define TKEY_F8 0x11
191#define TKEY_F9 0x12
192#define TKEY_F10 0x13
193#define TKEY_F11 0x14
194#define TKEY_F12 0x15
195const char *teken_get_sequence(teken_t *, unsigned int);
196
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_ */
197/* Legacy features. */
198void teken_set_8bit(teken_t *);
199void teken_set_cons25(teken_t *);
200
201/* Color conversion. */
202teken_color_t teken_256to8(teken_color_t);
203
204#endif /* !_TEKEN_H_ */