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

41 lines
934 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 <ncurses.h>
struct prof_win {
2012-02-08 22:46:35 +00:00
char from[100];
WINDOW *win;
};
2012-02-08 23:49:46 +00:00
// create windows
void create_title_bar(void);
void create_input_bar(void);
void create_input_window(void);
// input bar actions
void inp_bar_inactive(int win);
void inp_bar_active(int win);
// input window actions
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);
void inp_bar_print_message(char *msg);
2012-02-07 00:08:59 +00:00
void gui_init(void);
void gui_close(void);
2012-02-09 21:45:31 +00:00
void title_bar_show(char *title);
void switch_to(int i);
2012-02-08 23:12:34 +00:00
void close_win(void);
2012-02-08 22:46:35 +00:00
int in_chat(void);
void get_recipient(char *recipient);
2012-02-06 22:29:05 +00:00
void show_incomming_msg(char *from, char *message);
2012-02-09 21:45:31 +00:00
void show_outgoing_msg(char *from, char *to, char *message);
void cons_help(void);
void cons_bad_command(char *cmd);
2012-02-09 02:47:25 +00:00
void cons_show(char *cmd);
2012-02-05 23:08:15 +00:00
#endif