1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00
profanity/input_bar.c
2012-02-08 23:55:11 +00:00

37 lines
654 B
C

#include <ncurses.h>
#include "windows.h"
static WINDOW *inp_bar;
void create_input_bar(void)
{
int rows, cols;
getmaxyx(stdscr, rows, cols);
inp_bar = newwin(1, cols, rows-2, 0);
wbkgd(inp_bar, COLOR_PAIR(3));
wrefresh(inp_bar);
}
void inp_bar_inactive(int win)
{
mvwaddch(inp_bar, 0, 30 + win, ' ');
if (win == 9)
mvwaddch(inp_bar, 0, 30 + win + 1, ' ');
wrefresh(inp_bar);
}
void inp_bar_active(int win)
{
mvwprintw(inp_bar, 0, 30 + win, "%d", win+1);
touchwin(inp_bar);
wrefresh(inp_bar);
}
void inp_bar_print_message(char *msg)
{
mvwprintw(inp_bar, 0, 0, msg);
wrefresh(inp_bar);
}