1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00
profanity/title_bar.c

25 lines
459 B
C
Raw Normal View History

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