view mcabber/src/screen.h @ 44:c10f95f959d0

[/trunk] Changeset 60 by mikael * screen.c cleanup * Remove scr_CreatePopup() * Improve message splitting, to use full window width.
author mikael
date Tue, 05 Apr 2005 21:15:49 +0000
parents 416fd026d76d
children 7259a61e1a4b
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 ROSTER_WEIGHT   24
#define CHAT_WIN_HEIGHT (maxY-1-LOG_WIN_HEIGHT)

#define INPUTLINE_LENGTH  1024

extern int update_roster;

void scr_InitCurses(void);
void scr_DrawMainWindow(void);
void scr_TerminateCurses(void);
void scr_WriteInWindow(char *nombreVentana, char *texto, int TimeStamp,
                       int force_show);
void scr_WriteIncomingMessage(char *jidfrom, char *text);
void scr_RoolWindow(void);
void scr_ShowBuddyWindow(void);
void scr_LogPrint(const char *fmt, ...);

int scr_IsHiddenMessage(char *jid);

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

int scr_Getch(void);

int process_key(int);

#endif