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

25 lines
459 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));
title_bar_show(title);
2012-02-08 18:55:11 -05:00
}
2012-02-09 16:45:31 -05:00
void title_bar_show(char *title)
{
wclear(title_bar);
mvwprintw(title_bar, 0, 0, " %s", title);
2012-02-09 16:45:31 -05:00
wrefresh(title_bar);
}