1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-11-03 19:37:16 -05:00
profanity/windows.c

120 lines
2.2 KiB
C
Raw Normal View History

2012-02-05 18:08:15 -05:00
#include <ncurses.h>
#include "windows.h"
// window references
extern WINDOW *title_bar;
extern WINDOW *cmd_bar;
extern WINDOW *cmd_win;
extern WINDOW *main_win;
2012-02-05 18:29:09 -05:00
static void create_title_bar(void);
static void create_command_bar(void);
static void create_command_window(void);
static void create_main_window(void);
2012-02-06 19:08:59 -05:00
void gui_init(void)
2012-02-05 18:29:09 -05:00
{
initscr();
cbreak();
keypad(stdscr, TRUE);
start_color();
init_color(COLOR_WHITE, 1000, 1000, 1000);
init_pair(1, COLOR_WHITE, COLOR_BLACK);
init_pair(2, COLOR_GREEN, COLOR_BLACK);
init_color(COLOR_BLUE, 0, 0, 250);
init_pair(3, COLOR_WHITE, COLOR_BLUE);
attron(A_BOLD);
attron(COLOR_PAIR(1));
refresh();
create_title_bar();
wrefresh(title_bar);
create_command_bar();
wrefresh(cmd_bar);
create_command_window();
wrefresh(cmd_win);
create_main_window();
wrefresh(main_win);
2012-02-06 19:08:59 -05:00
wmove(cmd_win, 0, 0);
}
void gui_close(void)
{
endwin();
}
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);
}
void cmd_get_command_str(char *cmd)
{
wmove(cmd_win, 0, 0);
wgetstr(cmd_win, cmd);
}
void cmd_get_password(char *passwd)
{
wclear(cmd_win);
noecho();
mvwgetstr(cmd_win, 0, 0, passwd);
echo();
}
void bar_print_message(char *msg)
{
mvwprintw(cmd_bar, 0, 0, msg);
wrefresh(cmd_bar);
2012-02-05 18:29:09 -05:00
}
static void create_title_bar(void)
2012-02-05 18:08:15 -05:00
{
char *title = "Profanity";
int rows, cols;
getmaxyx(stdscr, rows, cols);
title_bar = newwin(1, cols, 0, 0);
wbkgd(title_bar, COLOR_PAIR(3));
mvwprintw(title_bar, 0, 0, title);
}
2012-02-05 18:29:09 -05:00
static void create_command_bar(void)
2012-02-05 18:08:15 -05:00
{
int rows, cols;
getmaxyx(stdscr, rows, cols);
cmd_bar = newwin(1, cols, rows-2, 0);
wbkgd(cmd_bar, COLOR_PAIR(3));
}
2012-02-05 18:29:09 -05:00
static void create_command_window(void)
2012-02-05 18:08:15 -05:00
{
int rows, cols;
getmaxyx(stdscr, rows, cols);
cmd_win = newwin(1, cols, rows-1, 0);
2012-02-06 17:04:30 -05:00
keypad(cmd_win, TRUE);
2012-02-05 18:08:15 -05:00
}
2012-02-05 18:29:09 -05:00
static void create_main_window(void)
2012-02-05 18:08:15 -05:00
{
int rows, cols;
getmaxyx(stdscr, rows, cols);
main_win = newwin(rows-3, cols, 1, 0);
scrollok(main_win, TRUE);
}
2012-02-06 17:29:05 -05:00