1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-29 19:56:07 -04:00
profanity/title_bar.c

31 lines
538 B
C
Raw Normal View History

2012-02-08 18:55:11 -05:00
#include <ncurses.h>
#include "windows.h"
static WINDOW *title_bar;
void create_title_bar(void)
{
2012-02-12 16:36:01 -05:00
char *title = "Profanity. Type /help for help information.";
2012-02-08 18:55:11 -05:00
int rows, cols;
getmaxyx(stdscr, rows, cols);
title_bar = newwin(1, cols, 0, 0);
wbkgd(title_bar, COLOR_PAIR(3));
2012-02-12 17:38:27 -05:00
title_bar_show(title);
2012-02-08 18:55:11 -05:00
}
2012-02-09 16:45:31 -05:00
2012-02-12 17:44:00 -05:00
void title_bar_refresh(void)
{
touchwin(title_bar);
wrefresh(title_bar);
inp_put_back();
}
2012-02-12 17:38:27 -05:00
void title_bar_show(char *title)
2012-02-09 16:45:31 -05:00
{
wclear(title_bar);
mvwprintw(title_bar, 0, 0, " %s", title);
2012-02-09 16:45:31 -05:00
}