1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00
profanity/src/ui/statusbar.c

286 lines
6.2 KiB
C
Raw Normal View History

/*
2013-02-02 19:57:46 +00:00
* statusbar.c
2012-02-20 20:07:38 +00:00
*
2013-01-11 02:05:29 +00:00
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
*
2012-02-20 20:07:38 +00:00
* This file is part of Profanity.
*
* Profanity is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Profanity is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
*
*/
2012-09-08 15:51:09 +00:00
#include "config.h"
#include <string.h>
2012-04-22 00:25:19 +00:00
#include <stdlib.h>
2013-01-02 20:27:37 +00:00
#ifdef HAVE_NCURSESW_NCURSES_H
#include <ncursesw/ncurses.h>
#elif HAVE_NCURSES_H
#include <ncurses.h>
2012-09-08 15:51:09 +00:00
#endif
2012-11-22 02:01:49 +00:00
#include "theme.h"
2012-05-24 00:11:43 +00:00
#include "ui.h"
2012-02-12 22:20:21 +00:00
static WINDOW *status_bar;
2012-04-22 00:25:19 +00:00
static char *message = NULL;
2012-11-24 20:41:27 +00:00
static char _active[31] = "[ ][ ][ ][ ][ ][ ][ ][ ][ ][ ]";
static int is_active[10];
static int is_new[10];
static int dirty;
static GDateTime *last_time;
2012-02-12 22:34:31 +00:00
static void _status_bar_update_time(void);
2012-07-24 22:19:48 +00:00
void
create_status_bar(void)
2012-02-12 22:20:21 +00:00
{
int rows, cols, i;
2012-02-12 22:20:21 +00:00
getmaxyx(stdscr, rows, cols);
2012-11-24 20:41:27 +00:00
is_active[0] = TRUE;
is_new[0] = FALSE;
for (i = 1; i < 10; i++) {
is_active[i] = FALSE;
is_new[i] = FALSE;
}
2012-02-12 22:20:21 +00:00
status_bar = newwin(1, cols, rows-2, 0);
2012-11-21 00:21:58 +00:00
wbkgd(status_bar, COLOUR_STATUS_TEXT);
wattron(status_bar, COLOUR_STATUS_BRACKET);
2012-11-24 20:41:27 +00:00
mvwprintw(status_bar, 0, cols - 31, _active);
2012-11-21 00:21:58 +00:00
wattroff(status_bar, COLOUR_STATUS_BRACKET);
last_time = g_date_time_new_now_local();
dirty = TRUE;
2012-02-12 22:20:21 +00:00
}
2012-07-24 22:19:48 +00:00
void
status_bar_refresh(void)
2012-02-12 22:34:31 +00:00
{
GDateTime *now_time = g_date_time_new_now_local();
GTimeSpan elapsed = g_date_time_difference(now_time, last_time);
if (elapsed >= 60000000) {
dirty = TRUE;
last_time = g_date_time_new_now_local();
}
if (dirty) {
_status_bar_update_time();
wrefresh(status_bar);
inp_put_back();
dirty = FALSE;
}
2012-10-05 23:16:53 +00:00
g_date_time_unref(now_time);
2012-02-12 22:34:31 +00:00
}
2012-07-24 22:19:48 +00:00
void
status_bar_resize(void)
2012-04-22 00:25:19 +00:00
{
int rows, cols, i;
getmaxyx(stdscr, rows, cols);
2012-04-22 19:59:36 +00:00
mvwin(status_bar, rows-2, 0);
wresize(status_bar, 1, cols);
2012-11-21 00:21:58 +00:00
wbkgd(status_bar, COLOUR_STATUS_TEXT);
2012-04-22 19:59:36 +00:00
wclear(status_bar);
2012-11-21 00:21:58 +00:00
wattron(status_bar, COLOUR_STATUS_BRACKET);
2012-11-24 20:41:27 +00:00
mvwprintw(status_bar, 0, cols - 31, _active);
2012-11-21 00:21:58 +00:00
wattroff(status_bar, COLOUR_STATUS_BRACKET);
2012-04-22 00:25:19 +00:00
2012-11-24 20:41:27 +00:00
for(i = 0; i < 10; i++) {
2012-04-22 00:25:19 +00:00
if (is_new[i])
2012-11-24 20:41:27 +00:00
status_bar_new(i);
2012-04-22 00:25:19 +00:00
else if (is_active[i])
2012-11-24 20:41:27 +00:00
status_bar_active(i);
2012-04-22 00:25:19 +00:00
}
if (message != NULL)
2012-11-24 20:41:27 +00:00
mvwprintw(status_bar, 0, 10, message);
2012-04-22 00:25:19 +00:00
last_time = g_date_time_new_now_local();
2012-04-22 00:25:19 +00:00
dirty = TRUE;
}
2012-02-12 22:34:31 +00:00
2012-07-24 22:19:48 +00:00
void
status_bar_inactive(const int win)
2012-02-12 22:20:21 +00:00
{
2012-11-24 20:41:27 +00:00
is_active[win] = FALSE;
is_new[win] = FALSE;
2012-04-22 00:25:19 +00:00
2012-11-24 20:41:27 +00:00
int active_pos = 1 + (win * 3);
2012-02-18 21:02:51 +00:00
int cols = getmaxx(stdscr);
2012-11-24 20:41:27 +00:00
mvwaddch(status_bar, 0, cols - 31 + active_pos, ' ');
dirty = TRUE;
2012-02-12 22:20:21 +00:00
}
2012-07-24 22:19:48 +00:00
void
status_bar_active(const int win)
2012-02-12 22:20:21 +00:00
{
2012-11-24 20:41:27 +00:00
is_active[win] = TRUE;
is_new[win] = FALSE;
2012-04-22 00:25:19 +00:00
2012-11-24 20:41:27 +00:00
int active_pos = 1 + (win * 3);
2012-02-18 21:02:51 +00:00
int cols = getmaxx(stdscr);
2012-11-21 00:21:58 +00:00
wattron(status_bar, COLOUR_STATUS_ACTIVE);
if (win+1 < 10)
2012-11-24 20:41:27 +00:00
mvwprintw(status_bar, 0, cols - 31 + active_pos, "%d", win+1);
2012-02-18 21:02:51 +00:00
else
2012-11-24 20:41:27 +00:00
mvwprintw(status_bar, 0, cols - 31 + active_pos, "0");
2012-11-21 00:21:58 +00:00
wattroff(status_bar, COLOUR_STATUS_ACTIVE);
dirty = TRUE;
2012-02-12 22:20:21 +00:00
}
2012-07-24 22:19:48 +00:00
void
status_bar_new(const int win)
{
2012-11-24 20:41:27 +00:00
is_active[win] = TRUE;
is_new[win] = TRUE;
2012-04-22 00:25:19 +00:00
2012-11-24 20:41:27 +00:00
int active_pos = 1 + (win * 3);
int cols = getmaxx(stdscr);
2012-11-21 00:21:58 +00:00
wattron(status_bar, COLOUR_STATUS_NEW);
wattron(status_bar, A_BLINK);
if (win+1 < 10)
2012-11-24 20:41:27 +00:00
mvwprintw(status_bar, 0, cols - 31 + active_pos, "%d", win+1);
else
2012-11-24 20:41:27 +00:00
mvwprintw(status_bar, 0, cols - 31 + active_pos, "0");
2012-11-21 00:21:58 +00:00
wattroff(status_bar, COLOUR_STATUS_NEW);
wattroff(status_bar, A_BLINK);
dirty = TRUE;
}
2012-07-24 22:19:48 +00:00
void
status_bar_get_password(void)
2012-02-12 22:20:21 +00:00
{
2012-04-22 00:25:19 +00:00
status_bar_print_message("Enter password:");
dirty = TRUE;
2012-02-12 22:20:21 +00:00
}
2012-07-24 22:19:48 +00:00
void
status_bar_print_message(const char * const msg)
2012-02-12 22:20:21 +00:00
{
if (message != NULL) {
2012-04-22 00:25:19 +00:00
free(message);
message = NULL;
}
wclear(status_bar);
2012-04-22 00:25:19 +00:00
message = (char *) malloc((strlen(msg) + 1) * sizeof(char));
2012-04-22 00:25:19 +00:00
strcpy(message, msg);
2012-11-24 20:41:27 +00:00
mvwprintw(status_bar, 0, 10, message);
int cols = getmaxx(stdscr);
2012-11-21 00:21:58 +00:00
wattron(status_bar, COLOUR_STATUS_BRACKET);
2012-11-24 20:41:27 +00:00
mvwprintw(status_bar, 0, cols - 31, _active);
2012-11-21 00:21:58 +00:00
wattroff(status_bar, COLOUR_STATUS_BRACKET);
int i;
2012-11-24 20:41:27 +00:00
for(i = 0; i < 10; i++) {
if (is_new[i])
2012-11-24 20:41:27 +00:00
status_bar_new(i);
else if (is_active[i])
2012-11-24 20:41:27 +00:00
status_bar_active(i);
}
dirty = TRUE;
2012-02-12 22:20:21 +00:00
}
2012-07-24 22:19:48 +00:00
void
status_bar_clear(void)
2012-02-12 22:34:31 +00:00
{
2012-04-22 00:25:19 +00:00
if (message != NULL) {
free(message);
message = NULL;
}
2012-04-22 00:25:19 +00:00
int i;
2012-11-24 20:41:27 +00:00
is_active[0] = TRUE;
is_new[0] = FALSE;
for (i = 1; i < 10; i++) {
2012-04-22 00:25:19 +00:00
is_active[i] = FALSE;
is_new[i] = FALSE;
}
2012-02-12 22:34:31 +00:00
wclear(status_bar);
2012-02-17 02:18:47 +00:00
int cols = getmaxx(stdscr);
2012-11-21 00:21:58 +00:00
wattron(status_bar, COLOUR_STATUS_BRACKET);
2012-11-24 20:41:27 +00:00
mvwprintw(status_bar, 0, cols - 31, _active);
2012-11-21 00:21:58 +00:00
wattroff(status_bar, COLOUR_STATUS_BRACKET);
dirty = TRUE;
2012-02-12 22:34:31 +00:00
}
2012-11-19 23:15:42 +00:00
void
status_bar_clear_message(void)
{
if (message != NULL) {
free(message);
message = NULL;
}
wclear(status_bar);
int cols = getmaxx(stdscr);
2012-11-21 00:21:58 +00:00
wattron(status_bar, COLOUR_STATUS_BRACKET);
2012-11-24 20:41:27 +00:00
mvwprintw(status_bar, 0, cols - 31, _active);
2012-11-21 00:21:58 +00:00
wattroff(status_bar, COLOUR_STATUS_BRACKET);
2012-11-19 23:15:42 +00:00
int i;
2012-11-24 20:41:27 +00:00
for(i = 0; i < 10; i++) {
2012-11-19 23:15:42 +00:00
if (is_new[i])
2012-11-24 20:41:27 +00:00
status_bar_new(i);
2012-11-19 23:15:42 +00:00
else if (is_active[i])
2012-11-24 20:41:27 +00:00
status_bar_active(i);
2012-11-19 23:15:42 +00:00
}
dirty = TRUE;
}
2012-07-24 22:19:48 +00:00
static void
_status_bar_update_time(void)
2012-02-12 22:20:21 +00:00
{
gchar *date_fmt = g_date_time_format(last_time, "%H:%M");
2012-02-12 22:20:21 +00:00
2012-11-21 00:21:58 +00:00
wattron(status_bar, COLOUR_STATUS_BRACKET);
2012-02-18 21:10:51 +00:00
mvwaddch(status_bar, 0, 1, '[');
2012-11-21 00:21:58 +00:00
wattroff(status_bar, COLOUR_STATUS_BRACKET);
mvwprintw(status_bar, 0, 2, date_fmt);
2012-11-21 00:21:58 +00:00
wattron(status_bar, COLOUR_STATUS_BRACKET);
2012-02-18 21:10:51 +00:00
mvwaddch(status_bar, 0, 7, ']');
2012-11-21 00:21:58 +00:00
wattroff(status_bar, COLOUR_STATUS_BRACKET);
free(date_fmt);
dirty = TRUE;
2012-02-12 22:20:21 +00:00
}