mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-30 12:56:20 +00:00
Renamed title bar functions
This commit is contained in:
32
windows.h
32
windows.h
@@ -17,6 +17,23 @@ void create_title_bar(void);
|
||||
void create_status_bar(void);
|
||||
void create_input_window(void);
|
||||
|
||||
// title bar actions
|
||||
void title_bar_show(char *title);
|
||||
|
||||
// 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);
|
||||
void win_get_recipient(char *recipient);
|
||||
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);
|
||||
void cons_show(char *cmd);
|
||||
|
||||
// status bar actions
|
||||
void status_bar_refresh(void);
|
||||
void status_bar_clear(void);
|
||||
@@ -34,19 +51,4 @@ void inp_put_back(void);
|
||||
void inp_non_block(void);
|
||||
void inp_get_password(char *passwd);
|
||||
|
||||
// main window actions
|
||||
void win_title_bar_show(char *title);
|
||||
int win_is_active(int i);
|
||||
void win_switch_to(int i);
|
||||
void win_close_win(void);
|
||||
int win_in_chat(void);
|
||||
void win_get_recipient(char *recipient);
|
||||
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);
|
||||
void cons_show(char *cmd);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user