chiark / gitweb /
*** empty log message ***
[sympathy.git] / src / ansi.h
1 /*
2  * ansi.h:
3  *
4  * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
5  * All rights reserved.
6  *
7  */
8
9 /*
10  * $Id$
11  */
12
13 /*
14  * $Log$
15  * Revision 1.11  2008/02/20 20:16:07  james
16  * *** empty log message ***
17  *
18  * Revision 1.10  2008/02/20 19:44:37  james
19  * @@
20  *
21  * Revision 1.9  2008/02/20 19:36:06  james
22  * @@
23  *
24  * Revision 1.8  2008/02/20 19:25:09  james
25  * *** empty log message ***
26  *
27  * Revision 1.7  2008/02/13 16:57:29  james
28  * *** empty log message ***
29  *
30  * Revision 1.6  2008/02/13 01:08:18  james
31  * *** empty log message ***
32  *
33  * Revision 1.5  2008/02/07 12:16:04  james
34  * *** empty log message ***
35  *
36  * Revision 1.4  2008/02/07 00:43:27  james
37  * *** empty log message ***
38  *
39  * Revision 1.3  2008/02/07 00:39:13  james
40  * *** empty log message ***
41  *
42  * Revision 1.2  2008/02/06 11:30:37  james
43  * *** empty log message ***
44  *
45  * Revision 1.1  2008/02/03 23:31:25  james
46  * *** empty log message ***
47  *
48  */
49
50 #ifndef __ANSI_H__
51 #define __ANSI_H__
52
53 #define ANSI_INVAL -1
54
55 #define ANSI_ESCAPE_BUF_LEN 10
56 #define ANSI_ESCAPE_TIMEOUT     100000 /*in ms */
57
58 typedef struct
59 {
60   int in_escape;
61   struct timeval last_escape;
62   char escape_buf[ANSI_ESCAPE_BUF_LEN];
63   int escape_ptr;
64 } ANSI_Parser;
65
66 struct CRT_struct;
67 struct Context_struct;
68
69 typedef struct ANSI_struct
70 {
71   ANSI_Parser parser;
72
73   TTY *terminal;
74
75   CRT crt;
76   CRT_Pos pos;
77   CRT_Pos size;
78   int hide_cursor;
79   int attr;
80   int color;
81
82   int history_ptr;
83   FILE *file;
84
85   int (*dispatch)(struct ANSI_struct *,struct Context_struct *);
86   void (*update)(struct ANSI_struct *,struct Context_struct *);
87   void (*one_shot)(struct ANSI_struct *,struct CRT_struct *);
88   void (*reset)(struct ANSI_struct *,struct CRT_struct *);
89   void (*terminal_reset)(struct ANSI_struct *);
90   void (*close)(struct ANSI_struct *);
91 } ANSI;
92
93
94 #endif /* __ANSI_H__ */