2012-02-05 18:08:15 -05:00
|
|
|
#ifndef WINDOWS_H
|
|
|
|
#define WINDOWS_h
|
|
|
|
|
2012-02-06 19:08:59 -05:00
|
|
|
#include <strophe/strophe.h>
|
|
|
|
#include <ncurses.h>
|
|
|
|
|
2012-02-05 18:08:15 -05:00
|
|
|
// windows
|
|
|
|
WINDOW *title_bar;
|
|
|
|
WINDOW *cmd_bar;
|
|
|
|
WINDOW *cmd_win;
|
|
|
|
WINDOW *main_win;
|
|
|
|
|
2012-02-06 19:08:59 -05:00
|
|
|
void gui_init(void);
|
|
|
|
void gui_close(void);
|
2012-02-06 17:29:05 -05:00
|
|
|
void show_incomming_msg(char *from, char *message);
|
2012-02-06 19:08:59 -05:00
|
|
|
void cmd_get_command_str(char *cmd);
|
|
|
|
void cmd_get_password(char *passwd);
|
|
|
|
void bar_print_message(char *msg);
|
2012-02-05 18:08:15 -05:00
|
|
|
|
|
|
|
#endif
|