X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fansi.h;h=28089875cd0db8648e06324e138375a1c53bba6f;hb=ab4d1b2e4c884114ecd4cba652ebcc97ef4c1a0d;hp=bc245243b0eec1a291bb89a6f66ee077dea5c866;hpb=c41d259a13d31aa9a1698ef5f22e06d2694ba85e;p=sympathy.git diff --git a/src/ansi.h b/src/ansi.h index bc24524..2808987 100644 --- a/src/ansi.h +++ b/src/ansi.h @@ -12,6 +12,21 @@ /* * $Log$ + * Revision 1.9 2008/02/20 19:36:06 james + * @@ + * + * Revision 1.8 2008/02/20 19:25:09 james + * *** empty log message *** + * + * Revision 1.7 2008/02/13 16:57:29 james + * *** empty log message *** + * + * Revision 1.6 2008/02/13 01:08:18 james + * *** empty log message *** + * + * Revision 1.5 2008/02/07 12:16:04 james + * *** empty log message *** + * * Revision 1.4 2008/02/07 00:43:27 james * *** empty log message *** * @@ -42,17 +57,31 @@ typedef struct int escape_ptr; } ANSI_Parser; -typedef struct +struct CRT_struct; +struct Context_struct; + +typedef struct ANSI_struct { - int fd; + ANSI_Parser parser; + + TTY *terminal; CRT crt; CRT_Pos pos; CRT_Pos size; int hide_cursor; int attr; + int color; - ANSI_Parser parser; + + int history_ptr; + + void (*dispatch)(struct ANSI_struct *,struct Context_struct *); + void (*update)(struct ANSI_struct *,struct Context_struct *); + void (*oneshot)(struct ANSI_struct *,struct CRT_struct *); + void (*reset)(struct ANSI_struct *,struct CRT_struct *); + void (*terminal_reset)(struct ANSI_struct *); + void (*close)(struct ANSI_struct *); } ANSI;