Added seperate window modules

This commit is contained in:
James Booth
2012-02-08 23:55:11 +00:00
parent a7190ed7e4
commit c8bf654e2c
4 changed files with 155 additions and 0 deletions

17
title_bar.c Normal file
View 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);
}