about summary refs log tree commit diff stats
path: root/windows.h
blob: 05333254314c9f85de4b5ca3da477ae612a7d028 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#ifndef WINDOWS_H
#define WINDOWS_h

#include <ncurses.h>

struct prof_win {
    char from[100];
    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);
void close_win(void);
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 cons_help(void);
void cons_bad_command(char *cmd);
void cons_show(char *cmd);
#endif