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

68 lines
1.6 KiB
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-12 22:09:07 +00:00
// gui startup and shutdown
void gui_init(void);
void gui_refresh(void);
2012-02-12 22:09:07 +00:00
void gui_close(void);
2012-02-08 23:49:46 +00:00
// create windows
void create_title_bar(void);
2012-02-12 22:20:21 +00:00
void create_status_bar(void);
2012-02-08 23:49:46 +00:00
void create_input_window(void);
2012-02-12 22:38:27 +00:00
// title bar actions
2012-02-12 22:44:00 +00:00
void title_bar_refresh(void);
2012-02-12 22:38:27 +00:00
void title_bar_show(char *title);
2012-02-19 00:23:45 +00:00
void title_bar_title(void);
2012-02-17 00:42:41 +00:00
void title_bar_connected(void);
void title_bar_disconnected(void);
2012-02-12 22:38:27 +00:00
// main window actions
int win_is_active(int i);
void win_switch_to(int i);
void win_close_win(void);
int win_in_chat(void);
char *win_get_recipient(void);
2012-02-12 22:38:27 +00:00
void win_show_incomming_msg(char *from, char *message);
void win_show_outgoing_msg(char *from, char *to, char *message);
// console window actions
void cons_help(void);
void cons_bad_command(char *cmd);
2012-02-18 22:51:08 +00:00
void cons_bad_connect(void);
2012-02-20 01:42:29 +00:00
void cons_not_disconnected(void);
void cons_not_connected(void);
2012-02-19 00:17:36 +00:00
void cons_bad_message(void);
2012-02-12 22:38:27 +00:00
void cons_show(char *cmd);
2012-02-19 00:43:35 +00:00
void cons_good_show(char *cmd);
void cons_bad_show(char *cmd);
void cons_highlight_show(char *cmd);
2012-02-12 22:38:27 +00:00
2012-02-12 22:20:21 +00:00
// status bar actions
2012-02-12 22:34:31 +00:00
void status_bar_refresh(void);
2012-02-12 22:20:21 +00:00
void status_bar_clear(void);
void status_bar_get_password(void);
void status_bar_print_message(const char *msg);
2012-02-12 22:20:21 +00:00
void status_bar_inactive(int win);
void status_bar_active(int win);
void status_bar_update_time(void);
2012-02-08 23:49:46 +00:00
// input window actions
void inp_get_command_str(char *cmd);
void inp_poll_char(int *ch, char command[], int *size);
void inp_clear(void);
2012-02-10 00:28:39 +00:00
void inp_put_back(void);
2012-02-08 23:49:46 +00:00
void inp_non_block(void);
2012-02-17 00:42:41 +00:00
void inp_block(void);
2012-02-08 23:49:46 +00:00
void inp_get_password(char *passwd);
2012-02-05 23:08:15 +00:00
#endif