view mcabber/screen.h @ 4:eb31418b48df

[/trunk] Changeset 19 by mikael * scr_LogPrint() function.
author mikael
date Sat, 19 Mar 2005 10:57:03 +0000
parents 63acb2dcaeea
children b8815158a45d
line wrap: on
line source

#ifndef __SCREEN_H__
#define __SCREEN_H__ 1

#include <ncurses.h>

#define COLOR_POPUP     1
#define COLOR_GENERAL   3
#define COLOR_BD_CONSEL 4
#define COLOR_BD_CON    5
#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);
void scr_CreatePopup(char *title, char *texto, int corte, int type,
		     char *returnstring);
void scr_WriteInWindow(char *nombreVentana, char *texto, int TimeStamp);
void scr_WriteMessage(int sock);
void scr_WriteIncomingMessage(char *jidfrom, char *text);
void scr_RoolWindow(void);
void scr_ShowBuddyWindow(void);
void scr_LogPrint(const char *fmt, ...);

WINDOW *scr_GetRosterWindow(void);
WINDOW *scr_GetStatusWindow(void);
WINDOW *scr_GetInputWindow(void);

int scr_Getch(void);

int process_key(int, int sock);

#endif