Split window functions
This commit is contained in:
24
windows.h
24
windows.h
@@ -1,7 +1,6 @@
|
||||
#ifndef WINDOWS_H
|
||||
#define WINDOWS_h
|
||||
|
||||
#include <strophe/strophe.h>
|
||||
#include <ncurses.h>
|
||||
|
||||
struct prof_win {
|
||||
@@ -9,6 +8,23 @@ struct prof_win {
|
||||
WINDOW *win;
|
||||
};
|
||||
|
||||
// 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);
|
||||
|
||||
void gui_init(void);
|
||||
void gui_close(void);
|
||||
void switch_to(int i);
|
||||
@@ -17,12 +33,6 @@ int in_chat(void);
|
||||
void get_recipient(char *recipient);
|
||||
void show_incomming_msg(char *from, char *message);
|
||||
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);
|
||||
void bar_print_message(char *msg);
|
||||
void cons_help(void);
|
||||
void cons_bad_command(char *cmd);
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user