2012-10-21 15:02:20 -04:00
|
|
|
/*
|
2013-02-02 14:57:46 -05:00
|
|
|
* statusbar.c
|
2012-02-20 15:07:38 -05:00
|
|
|
*
|
2015-02-10 18:16:09 -05:00
|
|
|
* Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
|
2012-10-21 15:02:20 -04:00
|
|
|
*
|
2012-02-20 15:07:38 -05: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/>.
|
|
|
|
*
|
2014-08-24 15:57:39 -04:00
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link the code of portions of this program with the OpenSSL library under
|
|
|
|
* certain conditions as described in each individual source file, and
|
|
|
|
* distribute linked combinations including the two.
|
|
|
|
*
|
|
|
|
* You must obey the GNU General Public License in all respects for all of the
|
|
|
|
* code used other than OpenSSL. If you modify file(s) with this exception, you
|
|
|
|
* may extend this exception to your version of the file(s), but you are not
|
|
|
|
* obligated to do so. If you do not wish to do so, delete this exception
|
|
|
|
* statement from your version. If you delete this exception statement from all
|
|
|
|
* source files in the program, then also delete it here.
|
|
|
|
*
|
2012-02-20 15:07:38 -05:00
|
|
|
*/
|
|
|
|
|
2012-09-08 11:51:09 -04:00
|
|
|
#include "config.h"
|
|
|
|
|
2013-08-23 17:39:03 -04:00
|
|
|
#include <assert.h>
|
2012-03-05 20:04:45 -05:00
|
|
|
#include <string.h>
|
2012-04-21 20:25:19 -04:00
|
|
|
#include <stdlib.h>
|
2012-03-05 20:04:45 -05:00
|
|
|
|
2013-01-02 15:27:37 -05:00
|
|
|
#ifdef HAVE_NCURSESW_NCURSES_H
|
|
|
|
#include <ncursesw/ncurses.h>
|
2013-01-03 19:35:54 -05:00
|
|
|
#elif HAVE_NCURSES_H
|
|
|
|
#include <ncurses.h>
|
2012-09-08 11:51:09 -04:00
|
|
|
#endif
|
2012-05-10 04:55:55 -04:00
|
|
|
|
2013-02-02 16:59:29 -05:00
|
|
|
#include "config/theme.h"
|
2013-02-02 15:55:58 -05:00
|
|
|
#include "ui/ui.h"
|
2014-04-07 16:12:30 -04:00
|
|
|
#include "ui/statusbar.h"
|
2014-04-07 16:50:28 -04:00
|
|
|
#include "ui/inputwin.h"
|
2015-03-10 19:35:08 -04:00
|
|
|
#include "config/preferences.h"
|
2012-02-12 17:20:21 -05:00
|
|
|
|
2014-04-05 20:33:00 -04:00
|
|
|
#define TIME_CHECK 60000000
|
|
|
|
|
2012-02-12 17:20:21 -05:00
|
|
|
static WINDOW *status_bar;
|
2012-04-21 20:25:19 -04:00
|
|
|
static char *message = NULL;
|
2013-08-27 19:50:15 -04:00
|
|
|
// 1 2 3 4 5 6 7 8 9 0 >
|
|
|
|
static char _active[34] = "[ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ]";
|
2013-10-02 18:33:48 -04:00
|
|
|
static char *bracket = "- -";
|
2013-08-27 19:50:15 -04:00
|
|
|
static int is_active[12];
|
2013-08-29 18:57:34 -04:00
|
|
|
static GHashTable *remaining_active;
|
2013-08-27 19:50:15 -04:00
|
|
|
static int is_new[12];
|
2013-08-29 18:57:34 -04:00
|
|
|
static GHashTable *remaining_new;
|
2012-08-26 17:36:00 -04:00
|
|
|
static GDateTime *last_time;
|
2013-10-02 18:33:48 -04:00
|
|
|
static int current;
|
2012-03-05 20:04:45 -05:00
|
|
|
|
2013-08-28 17:11:44 -04:00
|
|
|
static void _update_win_statuses(void);
|
2013-08-29 19:10:05 -04:00
|
|
|
static void _mark_new(int num);
|
|
|
|
static void _mark_active(int num);
|
|
|
|
static void _mark_inactive(int num);
|
2014-04-05 20:33:00 -04:00
|
|
|
static void _status_bar_draw(void);
|
2012-02-12 17:34:31 -05:00
|
|
|
|
2014-04-07 16:12:30 -04:00
|
|
|
void
|
|
|
|
create_status_bar(void)
|
2012-02-12 17:20:21 -05:00
|
|
|
{
|
2012-04-19 20:43:51 -04:00
|
|
|
int rows, cols, i;
|
2012-02-12 17:20:21 -05:00
|
|
|
getmaxyx(stdscr, rows, cols);
|
|
|
|
|
2013-08-27 19:50:15 -04:00
|
|
|
is_active[1] = TRUE;
|
|
|
|
is_new[1] = FALSE;
|
|
|
|
for (i = 2; i < 12; i++) {
|
2012-04-19 20:43:51 -04:00
|
|
|
is_active[i] = FALSE;
|
|
|
|
is_new[i] = FALSE;
|
|
|
|
}
|
2013-08-29 18:57:34 -04:00
|
|
|
remaining_active = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, NULL);
|
|
|
|
remaining_new = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, NULL);
|
2013-10-02 18:33:48 -04:00
|
|
|
current = 1;
|
2012-04-19 20:43:51 -04:00
|
|
|
|
2014-11-16 15:40:19 -05:00
|
|
|
int bracket_attrs = theme_attrs(THEME_STATUS_BRACKET);
|
|
|
|
|
2012-02-12 17:20:21 -05:00
|
|
|
status_bar = newwin(1, cols, rows-2, 0);
|
2014-11-16 15:40:19 -05:00
|
|
|
wbkgd(status_bar, theme_attrs(THEME_STATUS_TEXT));
|
|
|
|
wattron(status_bar, bracket_attrs);
|
2013-08-27 19:50:15 -04:00
|
|
|
mvwprintw(status_bar, 0, cols - 34, _active);
|
2013-10-02 18:33:48 -04:00
|
|
|
mvwprintw(status_bar, 0, cols - 34 + ((current - 1) * 3), bracket);
|
2014-11-16 15:40:19 -05:00
|
|
|
wattroff(status_bar, bracket_attrs);
|
2012-03-05 20:04:45 -05:00
|
|
|
|
2015-05-04 18:07:36 -04:00
|
|
|
if (last_time) {
|
2013-08-23 17:39:03 -04:00
|
|
|
g_date_time_unref(last_time);
|
2014-04-05 20:33:00 -04:00
|
|
|
}
|
2012-08-26 17:36:00 -04:00
|
|
|
last_time = g_date_time_new_now_local();
|
|
|
|
|
2014-04-05 20:33:00 -04:00
|
|
|
_status_bar_draw();
|
2012-02-12 17:20:21 -05:00
|
|
|
}
|
|
|
|
|
2014-04-07 16:12:30 -04:00
|
|
|
void
|
|
|
|
status_bar_update_virtual(void)
|
2012-02-12 17:34:31 -05:00
|
|
|
{
|
2014-09-16 17:23:59 -04:00
|
|
|
_status_bar_draw();
|
2012-02-12 17:34:31 -05:00
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2014-04-07 16:12:30 -04:00
|
|
|
void
|
|
|
|
status_bar_resize(void)
|
2012-04-21 20:25:19 -04:00
|
|
|
{
|
2013-08-28 17:11:44 -04:00
|
|
|
int rows, cols;
|
2012-04-21 20:25:19 -04:00
|
|
|
getmaxyx(stdscr, rows, cols);
|
|
|
|
|
2014-07-18 18:17:42 -04:00
|
|
|
werase(status_bar);
|
|
|
|
|
2014-11-16 15:40:19 -05:00
|
|
|
int bracket_attrs = theme_attrs(THEME_STATUS_BRACKET);
|
|
|
|
|
2012-04-22 15:59:36 -04:00
|
|
|
mvwin(status_bar, rows-2, 0);
|
|
|
|
wresize(status_bar, 1, cols);
|
2014-11-16 15:40:19 -05:00
|
|
|
wbkgd(status_bar, theme_attrs(THEME_STATUS_TEXT));
|
|
|
|
wattron(status_bar, bracket_attrs);
|
2013-08-27 19:50:15 -04:00
|
|
|
mvwprintw(status_bar, 0, cols - 34, _active);
|
2013-10-02 18:33:48 -04:00
|
|
|
mvwprintw(status_bar, 0, cols - 34 + ((current - 1) * 3), bracket);
|
2014-11-16 15:40:19 -05:00
|
|
|
wattroff(status_bar, bracket_attrs);
|
2012-04-21 20:25:19 -04:00
|
|
|
|
2015-05-04 18:07:36 -04:00
|
|
|
if (message) {
|
2015-03-10 19:35:08 -04:00
|
|
|
char *time_pref = prefs_get_string(PREF_TIME_STATUSBAR);
|
2015-09-30 17:34:27 -04:00
|
|
|
|
|
|
|
gchar *date_fmt = NULL;
|
|
|
|
if (g_strcmp0(time_pref, "off") == 0) {
|
|
|
|
date_fmt = g_strdup("");
|
|
|
|
} else {
|
|
|
|
date_fmt = g_date_time_format(last_time, time_pref);
|
|
|
|
}
|
2015-05-29 21:23:09 -04:00
|
|
|
assert(date_fmt != NULL);
|
|
|
|
size_t len = strlen(date_fmt);
|
2015-05-29 21:55:33 -04:00
|
|
|
g_free(date_fmt);
|
2015-09-30 17:34:27 -04:00
|
|
|
if (g_strcmp0(time_pref, "off") != 0) {
|
2015-05-29 21:23:09 -04:00
|
|
|
/* 01234567890123456
|
|
|
|
* [HH:MM] message */
|
|
|
|
mvwprintw(status_bar, 0, 5 + len, message);
|
2015-03-10 19:35:08 -04:00
|
|
|
} else {
|
|
|
|
mvwprintw(status_bar, 0, 1, message);
|
|
|
|
}
|
2015-06-24 09:27:40 -04:00
|
|
|
prefs_free_string(time_pref);
|
2014-04-05 20:33:00 -04:00
|
|
|
}
|
2015-05-04 18:07:36 -04:00
|
|
|
if (last_time) {
|
2013-08-23 17:39:03 -04:00
|
|
|
g_date_time_unref(last_time);
|
2014-04-05 20:33:00 -04:00
|
|
|
}
|
2012-08-26 17:36:00 -04:00
|
|
|
last_time = g_date_time_new_now_local();
|
2014-04-05 20:33:00 -04:00
|
|
|
|
|
|
|
_status_bar_draw();
|
2012-04-21 20:25:19 -04:00
|
|
|
}
|
2012-02-12 17:34:31 -05:00
|
|
|
|
2014-04-07 16:12:30 -04:00
|
|
|
void
|
|
|
|
status_bar_set_all_inactive(void)
|
2013-08-29 19:49:38 -04:00
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
for (i = 0; i < 12; i++) {
|
|
|
|
is_active[i] = FALSE;
|
|
|
|
is_new[i] = FALSE;
|
|
|
|
_mark_inactive(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_hash_table_remove_all(remaining_active);
|
|
|
|
g_hash_table_remove_all(remaining_new);
|
2014-04-05 20:33:00 -04:00
|
|
|
|
|
|
|
_status_bar_draw();
|
2013-08-29 19:49:38 -04:00
|
|
|
}
|
|
|
|
|
2014-04-07 16:12:30 -04:00
|
|
|
void
|
|
|
|
status_bar_current(int i)
|
2013-10-02 18:33:48 -04:00
|
|
|
{
|
|
|
|
if (i == 0) {
|
|
|
|
current = 10;
|
|
|
|
} else if (i > 10) {
|
|
|
|
current = 11;
|
|
|
|
} else {
|
|
|
|
current = i;
|
|
|
|
}
|
|
|
|
int cols = getmaxx(stdscr);
|
2014-11-16 15:40:19 -05:00
|
|
|
int bracket_attrs = theme_attrs(THEME_STATUS_BRACKET);
|
|
|
|
wattron(status_bar, bracket_attrs);
|
2013-10-02 18:33:48 -04:00
|
|
|
mvwprintw(status_bar, 0, cols - 34, _active);
|
|
|
|
mvwprintw(status_bar, 0, cols - 34 + ((current - 1) * 3), bracket);
|
2014-11-16 15:40:19 -05:00
|
|
|
wattroff(status_bar, bracket_attrs);
|
2014-04-05 20:33:00 -04:00
|
|
|
|
|
|
|
_status_bar_draw();
|
2013-10-02 18:33:48 -04:00
|
|
|
}
|
|
|
|
|
2014-04-07 16:12:30 -04:00
|
|
|
void
|
|
|
|
status_bar_inactive(const int win)
|
2012-02-12 17:20:21 -05:00
|
|
|
{
|
2013-08-27 19:50:15 -04:00
|
|
|
int true_win = win;
|
|
|
|
if (true_win == 0) {
|
|
|
|
true_win = 10;
|
|
|
|
}
|
2012-04-21 20:25:19 -04:00
|
|
|
|
2013-08-29 18:57:34 -04:00
|
|
|
// extra windows
|
|
|
|
if (true_win > 10) {
|
|
|
|
g_hash_table_remove(remaining_active, GINT_TO_POINTER(true_win));
|
|
|
|
g_hash_table_remove(remaining_new, GINT_TO_POINTER(true_win));
|
|
|
|
|
|
|
|
// still have new windows
|
|
|
|
if (g_hash_table_size(remaining_new) != 0) {
|
|
|
|
is_active[11] = TRUE;
|
|
|
|
is_new[11] = TRUE;
|
2013-08-29 19:10:05 -04:00
|
|
|
_mark_new(11);
|
2013-08-29 18:57:34 -04:00
|
|
|
|
2015-02-17 04:52:37 -05:00
|
|
|
// still have active windows
|
2013-08-29 18:57:34 -04:00
|
|
|
} else if (g_hash_table_size(remaining_active) != 0) {
|
|
|
|
is_active[11] = TRUE;
|
|
|
|
is_new[11] = FALSE;
|
2013-08-29 19:10:05 -04:00
|
|
|
_mark_active(11);
|
2013-08-29 18:57:34 -04:00
|
|
|
|
|
|
|
// no active or new windows
|
|
|
|
} else {
|
|
|
|
is_active[11] = FALSE;
|
|
|
|
is_new[11] = FALSE;
|
2013-08-29 19:10:05 -04:00
|
|
|
_mark_inactive(11);
|
2013-08-29 18:57:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// visible window indicators
|
|
|
|
} else {
|
|
|
|
is_active[true_win] = FALSE;
|
|
|
|
is_new[true_win] = FALSE;
|
2013-08-29 19:10:05 -04:00
|
|
|
_mark_inactive(true_win);
|
2013-08-29 18:57:34 -04:00
|
|
|
}
|
2014-04-05 20:33:00 -04:00
|
|
|
|
|
|
|
_status_bar_draw();
|
2012-02-12 17:20:21 -05:00
|
|
|
}
|
|
|
|
|
2014-04-07 16:12:30 -04:00
|
|
|
void
|
|
|
|
status_bar_active(const int win)
|
2012-02-12 17:20:21 -05:00
|
|
|
{
|
2013-08-27 19:50:15 -04:00
|
|
|
int true_win = win;
|
|
|
|
if (true_win == 0) {
|
|
|
|
true_win = 10;
|
|
|
|
}
|
|
|
|
|
2013-08-29 18:57:34 -04:00
|
|
|
// extra windows
|
|
|
|
if (true_win > 10) {
|
|
|
|
g_hash_table_add(remaining_active, GINT_TO_POINTER(true_win));
|
|
|
|
g_hash_table_remove(remaining_new, GINT_TO_POINTER(true_win));
|
|
|
|
|
|
|
|
// still have new windows
|
|
|
|
if (g_hash_table_size(remaining_new) != 0) {
|
|
|
|
is_active[11] = TRUE;
|
|
|
|
is_new[11] = TRUE;
|
2013-08-29 19:10:05 -04:00
|
|
|
_mark_new(11);
|
2013-08-29 18:57:34 -04:00
|
|
|
|
|
|
|
// only active windows
|
|
|
|
} else {
|
|
|
|
is_active[11] = TRUE;
|
|
|
|
is_new[11] = FALSE;
|
2013-08-29 19:10:05 -04:00
|
|
|
_mark_active(11);
|
2013-08-29 18:57:34 -04:00
|
|
|
}
|
|
|
|
|
2015-02-17 04:52:37 -05:00
|
|
|
// visible window indicators
|
2013-08-27 19:50:15 -04:00
|
|
|
} else {
|
2013-08-29 18:57:34 -04:00
|
|
|
is_active[true_win] = TRUE;
|
|
|
|
is_new[true_win] = FALSE;
|
2013-08-29 19:10:05 -04:00
|
|
|
_mark_active(true_win);
|
2013-08-27 19:50:15 -04:00
|
|
|
}
|
2014-04-05 20:33:00 -04:00
|
|
|
|
|
|
|
_status_bar_draw();
|
2012-02-12 17:20:21 -05:00
|
|
|
}
|
|
|
|
|
2014-04-07 16:12:30 -04:00
|
|
|
void
|
|
|
|
status_bar_new(const int win)
|
2012-04-19 18:32:44 -04:00
|
|
|
{
|
2013-08-27 19:50:15 -04:00
|
|
|
int true_win = win;
|
|
|
|
if (true_win == 0) {
|
|
|
|
true_win = 10;
|
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2013-08-29 18:57:34 -04:00
|
|
|
if (true_win > 10) {
|
|
|
|
g_hash_table_add(remaining_active, GINT_TO_POINTER(true_win));
|
|
|
|
g_hash_table_add(remaining_new, GINT_TO_POINTER(true_win));
|
2013-08-27 19:50:15 -04:00
|
|
|
|
2013-08-29 18:57:34 -04:00
|
|
|
is_active[11] = TRUE;
|
|
|
|
is_new[11] = TRUE;
|
2013-08-29 19:10:05 -04:00
|
|
|
_mark_new(11);
|
2013-08-29 18:57:34 -04:00
|
|
|
|
2013-08-27 19:50:15 -04:00
|
|
|
} else {
|
2013-08-29 18:57:34 -04:00
|
|
|
is_active[true_win] = TRUE;
|
|
|
|
is_new[true_win] = TRUE;
|
2013-08-29 19:10:05 -04:00
|
|
|
_mark_new(true_win);
|
2013-08-27 19:50:15 -04:00
|
|
|
}
|
2014-04-05 20:33:00 -04:00
|
|
|
|
|
|
|
_status_bar_draw();
|
2012-04-19 18:32:44 -04:00
|
|
|
}
|
|
|
|
|
2014-04-07 16:12:30 -04:00
|
|
|
void
|
|
|
|
status_bar_get_password(void)
|
2012-02-12 17:20:21 -05:00
|
|
|
{
|
2012-04-21 20:25:19 -04:00
|
|
|
status_bar_print_message("Enter password:");
|
2014-04-05 20:33:00 -04:00
|
|
|
|
|
|
|
_status_bar_draw();
|
2012-02-12 17:20:21 -05:00
|
|
|
}
|
|
|
|
|
2014-04-07 16:12:30 -04:00
|
|
|
void
|
2015-10-25 19:31:11 -04:00
|
|
|
status_bar_print_message(const char *const msg)
|
2012-02-12 17:20:21 -05:00
|
|
|
{
|
2013-08-23 17:39:03 -04:00
|
|
|
werase(status_bar);
|
|
|
|
|
2015-05-04 18:07:36 -04:00
|
|
|
if (message) {
|
2012-04-21 20:25:19 -04:00
|
|
|
free(message);
|
2012-11-19 18:56:54 -05:00
|
|
|
}
|
2014-04-02 16:01:20 -04:00
|
|
|
message = strdup(msg);
|
2015-03-10 19:35:08 -04:00
|
|
|
|
|
|
|
char *time_pref = prefs_get_string(PREF_TIME_STATUSBAR);
|
2015-09-30 17:34:27 -04:00
|
|
|
gchar *date_fmt = NULL;
|
|
|
|
if (g_strcmp0(time_pref, "off") == 0) {
|
|
|
|
date_fmt = g_strdup("");
|
|
|
|
} else {
|
|
|
|
date_fmt = g_date_time_format(last_time, time_pref);
|
|
|
|
}
|
|
|
|
|
2015-05-29 21:23:09 -04:00
|
|
|
assert(date_fmt != NULL);
|
|
|
|
size_t len = strlen(date_fmt);
|
2015-05-29 21:55:33 -04:00
|
|
|
g_free(date_fmt);
|
2015-09-30 17:34:27 -04:00
|
|
|
if (g_strcmp0(time_pref, "off") != 0) {
|
2015-05-29 21:23:09 -04:00
|
|
|
mvwprintw(status_bar, 0, 5 + len, message);
|
2015-03-10 19:35:08 -04:00
|
|
|
} else {
|
|
|
|
mvwprintw(status_bar, 0, 1, message);
|
|
|
|
}
|
2015-06-24 09:27:40 -04:00
|
|
|
prefs_free_string(time_pref);
|
2012-03-05 20:04:45 -05:00
|
|
|
|
2012-11-19 18:56:54 -05:00
|
|
|
int cols = getmaxx(stdscr);
|
2014-11-16 15:40:19 -05:00
|
|
|
int bracket_attrs = theme_attrs(THEME_STATUS_BRACKET);
|
2012-11-19 18:56:54 -05:00
|
|
|
|
2014-11-16 15:40:19 -05:00
|
|
|
wattron(status_bar, bracket_attrs);
|
2013-08-27 19:50:15 -04:00
|
|
|
mvwprintw(status_bar, 0, cols - 34, _active);
|
2013-10-02 18:33:48 -04:00
|
|
|
mvwprintw(status_bar, 0, cols - 34 + ((current - 1) * 3), bracket);
|
2014-11-16 15:40:19 -05:00
|
|
|
wattroff(status_bar, bracket_attrs);
|
2012-11-19 18:56:54 -05:00
|
|
|
|
2014-04-05 20:33:00 -04:00
|
|
|
_status_bar_draw();
|
2012-02-12 17:20:21 -05:00
|
|
|
}
|
|
|
|
|
2014-04-07 16:12:30 -04:00
|
|
|
void
|
|
|
|
status_bar_clear(void)
|
2012-02-12 17:34:31 -05:00
|
|
|
{
|
2015-05-04 18:07:36 -04:00
|
|
|
if (message) {
|
2012-04-21 20:25:19 -04:00
|
|
|
free(message);
|
|
|
|
message = NULL;
|
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2013-04-21 19:02:56 -04:00
|
|
|
werase(status_bar);
|
2012-02-16 21:18:47 -05:00
|
|
|
|
2012-09-10 17:57:42 -04:00
|
|
|
int cols = getmaxx(stdscr);
|
2014-11-16 15:40:19 -05:00
|
|
|
int bracket_attrs = theme_attrs(THEME_STATUS_BRACKET);
|
2012-09-10 17:57:42 -04:00
|
|
|
|
2014-11-16 15:40:19 -05:00
|
|
|
wattron(status_bar, bracket_attrs);
|
2013-08-27 19:50:15 -04:00
|
|
|
mvwprintw(status_bar, 0, cols - 34, _active);
|
2013-10-02 18:33:48 -04:00
|
|
|
mvwprintw(status_bar, 0, cols - 34 + ((current - 1) * 3), bracket);
|
2014-11-16 15:40:19 -05:00
|
|
|
wattroff(status_bar, bracket_attrs);
|
2012-03-05 20:04:45 -05:00
|
|
|
|
2014-04-05 20:33:00 -04:00
|
|
|
_status_bar_draw();
|
2012-02-12 17:34:31 -05:00
|
|
|
}
|
|
|
|
|
2014-04-07 16:12:30 -04:00
|
|
|
void
|
|
|
|
status_bar_clear_message(void)
|
2012-11-19 18:15:42 -05:00
|
|
|
{
|
2015-05-04 18:07:36 -04:00
|
|
|
if (message) {
|
2012-11-19 18:15:42 -05:00
|
|
|
free(message);
|
|
|
|
message = NULL;
|
|
|
|
}
|
|
|
|
|
2013-04-21 19:02:56 -04:00
|
|
|
werase(status_bar);
|
2012-11-19 18:15:42 -05:00
|
|
|
|
|
|
|
int cols = getmaxx(stdscr);
|
2014-11-16 15:40:19 -05:00
|
|
|
int bracket_attrs = theme_attrs(THEME_STATUS_BRACKET);
|
2012-11-19 18:15:42 -05:00
|
|
|
|
2014-11-16 15:40:19 -05:00
|
|
|
wattron(status_bar, bracket_attrs);
|
2013-08-27 19:50:15 -04:00
|
|
|
mvwprintw(status_bar, 0, cols - 34, _active);
|
2013-10-02 18:33:48 -04:00
|
|
|
mvwprintw(status_bar, 0, cols - 34 + ((current - 1) * 3), bracket);
|
2014-11-16 15:40:19 -05:00
|
|
|
wattroff(status_bar, bracket_attrs);
|
2012-11-19 18:15:42 -05:00
|
|
|
|
2014-04-05 20:33:00 -04:00
|
|
|
_status_bar_draw();
|
2012-11-19 18:15:42 -05:00
|
|
|
}
|
|
|
|
|
2013-08-28 17:11:44 -04:00
|
|
|
static void
|
|
|
|
_update_win_statuses(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for(i = 1; i < 12; i++) {
|
2013-08-29 18:57:34 -04:00
|
|
|
if (is_new[i]) {
|
2013-08-29 19:10:05 -04:00
|
|
|
_mark_new(i);
|
2013-08-29 18:57:34 -04:00
|
|
|
}
|
|
|
|
else if (is_active[i]) {
|
2013-08-29 19:10:05 -04:00
|
|
|
_mark_active(i);
|
2013-08-29 18:57:34 -04:00
|
|
|
}
|
|
|
|
else {
|
2013-08-29 19:10:05 -04:00
|
|
|
_mark_inactive(i);
|
2013-08-29 18:57:34 -04:00
|
|
|
}
|
2013-08-28 17:11:44 -04:00
|
|
|
}
|
|
|
|
}
|
2013-08-29 19:10:05 -04:00
|
|
|
|
|
|
|
static void
|
|
|
|
_mark_new(int num)
|
|
|
|
{
|
|
|
|
int active_pos = 1 + ((num-1) * 3);
|
|
|
|
int cols = getmaxx(stdscr);
|
2014-11-16 15:40:19 -05:00
|
|
|
int status_attrs = theme_attrs(THEME_STATUS_NEW);
|
|
|
|
wattron(status_bar, status_attrs);
|
2013-08-29 19:10:05 -04:00
|
|
|
wattron(status_bar, A_BLINK);
|
|
|
|
if (num == 10) {
|
|
|
|
mvwprintw(status_bar, 0, cols - 34 + active_pos, "0");
|
|
|
|
} else if (num > 10) {
|
|
|
|
mvwprintw(status_bar, 0, cols - 34 + active_pos, ">");
|
|
|
|
} else {
|
|
|
|
mvwprintw(status_bar, 0, cols - 34 + active_pos, "%d", num);
|
|
|
|
}
|
2014-11-16 15:40:19 -05:00
|
|
|
wattroff(status_bar, status_attrs);
|
2013-08-29 19:10:05 -04:00
|
|
|
wattroff(status_bar, A_BLINK);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_mark_active(int num)
|
|
|
|
{
|
|
|
|
int active_pos = 1 + ((num-1) * 3);
|
|
|
|
int cols = getmaxx(stdscr);
|
2014-11-16 15:40:19 -05:00
|
|
|
int status_attrs = theme_attrs(THEME_STATUS_ACTIVE);
|
|
|
|
wattron(status_bar, status_attrs);
|
2013-08-29 19:10:05 -04:00
|
|
|
if (num == 10) {
|
|
|
|
mvwprintw(status_bar, 0, cols - 34 + active_pos, "0");
|
|
|
|
} else if (num > 10) {
|
|
|
|
mvwprintw(status_bar, 0, cols - 34 + active_pos, ">");
|
|
|
|
} else {
|
|
|
|
mvwprintw(status_bar, 0, cols - 34 + active_pos, "%d", num);
|
|
|
|
}
|
2014-11-16 15:40:19 -05:00
|
|
|
wattroff(status_bar, status_attrs);
|
2013-08-29 19:10:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_mark_inactive(int num)
|
|
|
|
{
|
|
|
|
int active_pos = 1 + ((num-1) * 3);
|
|
|
|
int cols = getmaxx(stdscr);
|
|
|
|
mvwaddch(status_bar, 0, cols - 34 + active_pos, ' ');
|
2014-04-05 20:33:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_status_bar_draw(void)
|
|
|
|
{
|
2015-05-04 18:07:36 -04:00
|
|
|
if (last_time) {
|
2014-04-05 20:33:00 -04:00
|
|
|
g_date_time_unref(last_time);
|
|
|
|
}
|
|
|
|
last_time = g_date_time_new_now_local();
|
|
|
|
|
2014-11-16 15:40:19 -05:00
|
|
|
int bracket_attrs = theme_attrs(THEME_STATUS_BRACKET);
|
|
|
|
|
2015-03-10 19:35:08 -04:00
|
|
|
char *time_pref = prefs_get_string(PREF_TIME_STATUSBAR);
|
2015-09-30 17:34:27 -04:00
|
|
|
if (g_strcmp0(time_pref, "off") != 0) {
|
2015-05-29 21:23:09 -04:00
|
|
|
gchar *date_fmt = g_date_time_format(last_time, time_pref);
|
2015-03-10 19:35:08 -04:00
|
|
|
assert(date_fmt != NULL);
|
2015-05-29 21:23:09 -04:00
|
|
|
size_t len = strlen(date_fmt);
|
2015-03-10 19:35:08 -04:00
|
|
|
wattron(status_bar, bracket_attrs);
|
|
|
|
mvwaddch(status_bar, 0, 1, '[');
|
|
|
|
wattroff(status_bar, bracket_attrs);
|
|
|
|
mvwprintw(status_bar, 0, 2, date_fmt);
|
|
|
|
wattron(status_bar, bracket_attrs);
|
2015-05-29 21:23:09 -04:00
|
|
|
mvwaddch(status_bar, 0, 2 + len, ']');
|
2015-03-10 19:35:08 -04:00
|
|
|
wattroff(status_bar, bracket_attrs);
|
|
|
|
g_free(date_fmt);
|
|
|
|
}
|
2015-06-24 09:27:40 -04:00
|
|
|
prefs_free_string(time_pref);
|
2014-04-05 20:33:00 -04:00
|
|
|
|
|
|
|
_update_win_statuses();
|
|
|
|
wnoutrefresh(status_bar);
|
|
|
|
inp_put_back();
|
2014-07-18 18:17:42 -04:00
|
|
|
}
|