diff mcabber/screen.h @ 1:da1fb510081e

[/trunk] Changeset 16 by mikael * Start using an "input line" at the bottom. Only "/quit" is understood at the moment... :)
author mikael
date Wed, 16 Mar 2005 22:18:54 +0000
parents b3b2332715fb
children 63acb2dcaeea
line wrap: on
line diff
--- a/mcabber/screen.h	Thu Jun 30 21:39:31 2005 +0000
+++ b/mcabber/screen.h	Wed Mar 16 22:18:54 2005 +0000
@@ -10,6 +10,11 @@
 #define COLOR_BD_DESSEL 6
 #define COLOR_BD_DES    7
 
+#define LOG_WIN_HEIGHT  (5+2)
+#define CHAT_WIN_HEIGHT (maxY-1-LOG_WIN_HEIGHT)
+
+#define INPUTLINE_LENGTH  1024
+
 void scr_InitCurses(void);
 void scr_DrawMainWindow(void);
 void scr_TerminateCurses(void);
@@ -26,5 +31,6 @@
 
 int scr_Getch(void);
 
+int process_key(int);
 
 #endif