mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
18 lines
329 B
C
18 lines
329 B
C
|
#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);
|
||
|
}
|