1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00
profanity/windows.h

28 lines
635 B
C
Raw Normal View History

2012-02-05 23:08:15 +00:00
#ifndef WINDOWS_H
#define WINDOWS_h
2012-02-07 00:08:59 +00:00
#include <strophe/strophe.h>
#include <ncurses.h>
struct prof_win {
char from[70];
WINDOW *win;
};
2012-02-07 00:08:59 +00:00
void gui_init(void);
void gui_close(void);
void switch_to(int i);
2012-02-06 22:29:05 +00:00
void show_incomming_msg(char *from, char *message);
2012-02-07 00:37:42 +00:00
void show_outgoing_msg(char *from, char *message);
void inp_get_command_str(char *cmd);
void inp_poll_char(int *ch, char command[], int *size);
void inp_clear(void);
void inp_non_block(void);
void inp_get_password(char *passwd);
2012-02-07 00:08:59 +00:00
void bar_print_message(char *msg);
void cons_help(void);
void cons_show(void);
void chat_show(void);
void cons_bad_command(char *cmd);
2012-02-05 23:08:15 +00:00
#endif