1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00
profanity/title_bar.c

26 lines
455 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)
{
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);
wrefresh(title_bar);
}
2012-02-09 16:45:31 -05:00
void title_bar_show(char *title)
{
wclear(title_bar);
mvwprintw(title_bar, 0, 0, title);
wrefresh(title_bar);
}