mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-08-01 22:56:22 +00:00
SImple window switching for message and console
This commit is contained in:
149
windows.c
149
windows.c
@@ -2,16 +2,21 @@
|
||||
|
||||
#include "windows.h"
|
||||
|
||||
// window references
|
||||
// common window references
|
||||
static WINDOW *title_bar;
|
||||
static WINDOW *cmd_bar;
|
||||
static WINDOW *cmd_win;
|
||||
static WINDOW *main_win;
|
||||
static WINDOW *inp_bar;
|
||||
static WINDOW *inp_win;
|
||||
|
||||
// main windows
|
||||
static WINDOW *chat_win;
|
||||
static WINDOW *cons_win;
|
||||
|
||||
static void create_title_bar(void);
|
||||
static void create_command_bar(void);
|
||||
static void create_command_window(void);
|
||||
static void create_main_window(void);
|
||||
static void create_input_bar(void);
|
||||
static void create_input_window(void);
|
||||
|
||||
static void create_chat_window(void);
|
||||
static void create_console_window(void);
|
||||
|
||||
void gui_init(void)
|
||||
{
|
||||
@@ -34,14 +39,15 @@ void gui_init(void)
|
||||
|
||||
create_title_bar();
|
||||
wrefresh(title_bar);
|
||||
create_command_bar();
|
||||
wrefresh(cmd_bar);
|
||||
create_command_window();
|
||||
wrefresh(cmd_win);
|
||||
create_main_window();
|
||||
wrefresh(main_win);
|
||||
create_input_bar();
|
||||
wrefresh(inp_bar);
|
||||
create_input_window();
|
||||
wrefresh(inp_win);
|
||||
|
||||
wmove(cmd_win, 0, 0);
|
||||
create_chat_window();
|
||||
create_console_window();
|
||||
|
||||
wmove(inp_win, 0, 0);
|
||||
}
|
||||
|
||||
void gui_close(void)
|
||||
@@ -54,8 +60,7 @@ void show_incomming_msg(char *from, char *message)
|
||||
char line[100];
|
||||
sprintf(line, "%s: %s\n", from, message);
|
||||
|
||||
wprintw(main_win, line);
|
||||
wrefresh(main_win);
|
||||
wprintw(chat_win, line);
|
||||
}
|
||||
|
||||
void show_outgoing_msg(char *from, char* message)
|
||||
@@ -63,73 +68,96 @@ void show_outgoing_msg(char *from, char* message)
|
||||
char line[100];
|
||||
sprintf(line, "%s: %s\n", from, message);
|
||||
|
||||
wprintw(main_win, line);
|
||||
wrefresh(main_win);
|
||||
wprintw(chat_win, line);
|
||||
}
|
||||
|
||||
void cmd_get_command_str(char *cmd)
|
||||
void inp_get_command_str(char *cmd)
|
||||
{
|
||||
wmove(cmd_win, 0, 0);
|
||||
wgetstr(cmd_win, cmd);
|
||||
wmove(inp_win, 0, 0);
|
||||
wgetstr(inp_win, cmd);
|
||||
}
|
||||
|
||||
void cmd_clear(void)
|
||||
void inp_clear(void)
|
||||
{
|
||||
wclear(cmd_win);
|
||||
wmove(cmd_win, 0, 0);
|
||||
wrefresh(cmd_win);
|
||||
wclear(inp_win);
|
||||
wmove(inp_win, 0, 0);
|
||||
wrefresh(inp_win);
|
||||
}
|
||||
|
||||
void cmd_non_block(void)
|
||||
void inp_non_block(void)
|
||||
{
|
||||
wtimeout(cmd_win, 0);
|
||||
wtimeout(inp_win, 0);
|
||||
}
|
||||
|
||||
void cmd_poll_char(int *ch, char command[], int *size)
|
||||
void inp_poll_char(int *ch, char command[], int *size)
|
||||
{
|
||||
int cmd_y = 0;
|
||||
int cmd_x = 0;
|
||||
int inp_y = 0;
|
||||
int inp_x = 0;
|
||||
|
||||
// move cursor back to cmd_win
|
||||
getyx(cmd_win, cmd_y, cmd_x);
|
||||
wmove(cmd_win, cmd_y, cmd_x);
|
||||
// move cursor back to inp_win
|
||||
getyx(inp_win, inp_y, inp_x);
|
||||
wmove(inp_win, inp_y, inp_x);
|
||||
|
||||
// echo off, and get some more input
|
||||
noecho();
|
||||
*ch = wgetch(cmd_win);
|
||||
*ch = wgetch(inp_win);
|
||||
|
||||
// if delete pressed, go back and delete it
|
||||
if (*ch == 127) {
|
||||
if (*size > 0) {
|
||||
getyx(cmd_win, cmd_y, cmd_x);
|
||||
wmove(cmd_win, cmd_y, cmd_x-1);
|
||||
wdelch(cmd_win);
|
||||
getyx(inp_win, inp_y, inp_x);
|
||||
wmove(inp_win, inp_y, inp_x-1);
|
||||
wdelch(inp_win);
|
||||
(*size)--;
|
||||
}
|
||||
}
|
||||
|
||||
// else if not error or newline, show it and store it
|
||||
else if (*ch != ERR && *ch != '\n') {
|
||||
waddch(cmd_win, *ch);
|
||||
waddch(inp_win, *ch);
|
||||
command[(*size)++] = *ch;
|
||||
}
|
||||
|
||||
echo();
|
||||
|
||||
|
||||
}
|
||||
|
||||
void cmd_get_password(char *passwd)
|
||||
void inp_get_password(char *passwd)
|
||||
{
|
||||
wclear(cmd_win);
|
||||
wclear(inp_win);
|
||||
noecho();
|
||||
mvwgetstr(cmd_win, 0, 0, passwd);
|
||||
mvwgetstr(inp_win, 0, 0, passwd);
|
||||
echo();
|
||||
}
|
||||
|
||||
void bar_print_message(char *msg)
|
||||
{
|
||||
mvwprintw(cmd_bar, 0, 0, msg);
|
||||
wrefresh(cmd_bar);
|
||||
mvwprintw(inp_bar, 0, 0, msg);
|
||||
wrefresh(inp_bar);
|
||||
}
|
||||
|
||||
void cons_help(void)
|
||||
{
|
||||
waddstr(cons_win, "Help\n");
|
||||
waddstr(cons_win, "----\n");
|
||||
waddstr(cons_win, "/quit - Quits Profanity.\n");
|
||||
waddstr(cons_win, "/connect <username@host> - Login to jabber.\n");
|
||||
}
|
||||
|
||||
void cons_bad_command(char *cmd)
|
||||
{
|
||||
wprintw(cons_win, "Unknown command: %s\n", cmd);
|
||||
}
|
||||
|
||||
void cons_show(void)
|
||||
{
|
||||
touchwin(cons_win);
|
||||
wrefresh(cons_win);
|
||||
}
|
||||
|
||||
void chat_show(void)
|
||||
{
|
||||
touchwin(chat_win);
|
||||
wrefresh(chat_win);
|
||||
}
|
||||
|
||||
static void create_title_bar(void)
|
||||
@@ -144,30 +172,43 @@ static void create_title_bar(void)
|
||||
mvwprintw(title_bar, 0, 0, title);
|
||||
}
|
||||
|
||||
static void create_command_bar(void)
|
||||
static void create_input_bar(void)
|
||||
{
|
||||
int rows, cols;
|
||||
getmaxyx(stdscr, rows, cols);
|
||||
|
||||
cmd_bar = newwin(1, cols, rows-2, 0);
|
||||
wbkgd(cmd_bar, COLOR_PAIR(3));
|
||||
inp_bar = newwin(1, cols, rows-2, 0);
|
||||
wbkgd(inp_bar, COLOR_PAIR(3));
|
||||
}
|
||||
|
||||
static void create_command_window(void)
|
||||
static void create_input_window(void)
|
||||
{
|
||||
int rows, cols;
|
||||
getmaxyx(stdscr, rows, cols);
|
||||
|
||||
cmd_win = newwin(1, cols, rows-1, 0);
|
||||
keypad(cmd_win, TRUE);
|
||||
inp_win = newwin(1, cols, rows-1, 0);
|
||||
keypad(inp_win, TRUE);
|
||||
}
|
||||
|
||||
static void create_main_window(void)
|
||||
static void create_chat_window(void)
|
||||
{
|
||||
int rows, cols;
|
||||
getmaxyx(stdscr, rows, cols);
|
||||
|
||||
main_win = newwin(rows-3, cols, 1, 0);
|
||||
scrollok(main_win, TRUE);
|
||||
chat_win = newwin(rows-3, cols, 1, 0);
|
||||
scrollok(chat_win, TRUE);
|
||||
}
|
||||
|
||||
static void create_console_window(void)
|
||||
{
|
||||
int rows, cols;
|
||||
getmaxyx(stdscr, rows, cols);
|
||||
|
||||
cons_win = newwin(rows-3, cols, 1, 0);
|
||||
scrollok(cons_win, TRUE);
|
||||
|
||||
waddstr(cons_win, "Welcome to Profanity.\n");
|
||||
touchwin(cons_win);
|
||||
wrefresh(cons_win);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user