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

66 lines
1.4 KiB
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));
2012-02-12 17:38:27 -05:00
title_bar_show(title);
2012-02-08 18:55:11 -05:00
}
2012-02-09 16:45:31 -05:00
2012-02-16 19:42:41 -05:00
void title_bar_connected(void)
{
int rows, cols;
getmaxyx(stdscr, rows, cols);
2012-02-18 16:02:51 -05:00
wattron(title_bar, COLOR_PAIR(4));
mvwaddch(title_bar, 0, cols - 14, '[');
wattroff(title_bar, COLOR_PAIR(4));
mvwprintw(title_bar, 0, cols - 13, " ...online ");
wattron(title_bar, COLOR_PAIR(4));
mvwaddch(title_bar, 0, cols - 2, ']');
wattroff(title_bar, COLOR_PAIR(4));
2012-02-16 19:42:41 -05:00
}
void title_bar_disconnected(void)
{
int rows, cols;
getmaxyx(stdscr, rows, cols);
2012-02-18 16:02:51 -05:00
wattron(title_bar, COLOR_PAIR(4));
mvwaddch(title_bar, 0, cols - 14, '[');
wattroff(title_bar, COLOR_PAIR(4));
mvwprintw(title_bar, 0, cols - 13, " ..offline ");
wattron(title_bar, COLOR_PAIR(4));
mvwaddch(title_bar, 0, cols - 2, ']');
wattroff(title_bar, COLOR_PAIR(4));
2012-02-16 19:42:41 -05:00
}
2012-02-12 17:44:00 -05:00
void title_bar_refresh(void)
{
touchwin(title_bar);
wrefresh(title_bar);
inp_put_back();
}
2012-02-12 17:38:27 -05:00
void title_bar_show(char *title)
2012-02-09 16:45:31 -05:00
{
2012-02-18 16:02:51 -05:00
wmove(title_bar, 0, 0);
int i;
for (i = 0; i < 45; i++)
waddch(title_bar, ' ');
mvwprintw(title_bar, 0, 0, " %s", title);
2012-02-09 16:45:31 -05:00
}