Added seperate window modules
This commit is contained in:
17
title_bar.c
Normal file
17
title_bar.c
Normal file
@@ -0,0 +1,17 @@
|
||||
#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);
|
||||
}
|
||||
Reference in New Issue
Block a user