2012-10-21 15:02:20 -04:00
|
|
|
/*
|
2013-02-02 14:57:46 -05:00
|
|
|
* titlebar.c
|
2012-02-20 15:07:38 -05:00
|
|
|
*
|
2013-01-10 21:05:29 -05:00
|
|
|
* Copyright (C) 2012, 2013 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-04-19 20:14:07 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2012-08-16 16:43:52 -04:00
|
|
|
|
2012-05-27 15:36:31 -04:00
|
|
|
#include "common.h"
|
2013-02-02 16:59:29 -05:00
|
|
|
#include "config/theme.h"
|
2013-02-02 15:55:58 -05:00
|
|
|
#include "ui/ui.h"
|
2012-02-08 18:55:11 -05:00
|
|
|
|
|
|
|
static WINDOW *title_bar;
|
2012-04-19 20:14:07 -04:00
|
|
|
static char *current_title = NULL;
|
2014-01-11 13:06:46 -05:00
|
|
|
static char *recipient = NULL;
|
2012-08-16 16:43:52 -04:00
|
|
|
static GTimer *typing_elapsed;
|
2012-03-05 20:04:45 -05:00
|
|
|
static int dirty;
|
2013-02-10 12:13:19 -05:00
|
|
|
static contact_presence_t current_status;
|
2012-02-08 18:55:11 -05:00
|
|
|
|
2012-05-27 15:36:31 -04:00
|
|
|
static void _title_bar_draw_title(void);
|
|
|
|
static void _title_bar_draw_status(void);
|
2012-04-19 20:24:24 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_create_title_bar(void)
|
2012-02-08 18:55:11 -05:00
|
|
|
{
|
2012-09-10 17:57:42 -04:00
|
|
|
int cols = getmaxx(stdscr);
|
2012-02-08 18:55:11 -05:00
|
|
|
|
|
|
|
title_bar = newwin(1, cols, 0, 0);
|
2012-11-20 19:21:58 -05:00
|
|
|
wbkgd(title_bar, COLOUR_TITLE_TEXT);
|
2012-02-18 19:23:45 -05:00
|
|
|
title_bar_title();
|
2013-02-10 12:13:19 -05:00
|
|
|
title_bar_set_status(CONTACT_OFFLINE);
|
2012-03-05 20:04:45 -05:00
|
|
|
dirty = TRUE;
|
2012-02-18 19:23:45 -05:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_title_bar_title(void)
|
2012-02-18 19:23:45 -05:00
|
|
|
{
|
2013-04-21 19:02:56 -04:00
|
|
|
werase(title_bar);
|
2012-08-16 16:43:52 -04:00
|
|
|
recipient = NULL;
|
|
|
|
typing_elapsed = NULL;
|
2012-04-19 20:06:19 -04:00
|
|
|
title_bar_show("Profanity. Type /help for help information.");
|
2013-01-06 18:47:50 -05:00
|
|
|
_title_bar_draw_status();
|
2012-03-05 20:04:45 -05:00
|
|
|
dirty = TRUE;
|
2012-02-08 18:55:11 -05:00
|
|
|
}
|
2012-02-09 16:45:31 -05:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_title_bar_resize(void)
|
2012-04-19 20:38:04 -04:00
|
|
|
{
|
2012-09-10 17:57:42 -04:00
|
|
|
int cols = getmaxx(stdscr);
|
2012-04-19 20:38:04 -04:00
|
|
|
|
2012-04-22 15:59:36 -04:00
|
|
|
wresize(title_bar, 1, cols);
|
2012-11-20 19:21:58 -05:00
|
|
|
wbkgd(title_bar, COLOUR_TITLE_TEXT);
|
2013-04-21 19:02:56 -04:00
|
|
|
werase(title_bar);
|
2012-04-19 20:38:04 -04:00
|
|
|
_title_bar_draw_title();
|
|
|
|
_title_bar_draw_status();
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_title_bar_refresh(void)
|
2012-02-12 17:44:00 -05:00
|
|
|
{
|
2012-08-16 16:43:52 -04:00
|
|
|
if (recipient != NULL) {
|
|
|
|
|
|
|
|
if (typing_elapsed != NULL) {
|
|
|
|
gdouble seconds = g_timer_elapsed(typing_elapsed, NULL);
|
|
|
|
|
|
|
|
if (seconds >= 10) {
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-08-16 16:43:52 -04:00
|
|
|
if (current_title != NULL) {
|
|
|
|
free(current_title);
|
|
|
|
}
|
|
|
|
|
2013-08-03 06:17:50 -04:00
|
|
|
current_title = (char *) malloc(strlen(recipient) + 1);
|
2012-08-16 16:43:52 -04:00
|
|
|
strcpy(current_title, recipient);
|
|
|
|
|
|
|
|
title_bar_draw();
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-12-19 19:00:42 -05:00
|
|
|
g_timer_destroy(typing_elapsed);
|
|
|
|
typing_elapsed = NULL;
|
|
|
|
|
2012-08-16 16:43:52 -04:00
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-05 20:04:45 -05:00
|
|
|
if (dirty) {
|
|
|
|
wrefresh(title_bar);
|
|
|
|
inp_put_back();
|
|
|
|
dirty = FALSE;
|
|
|
|
}
|
2012-02-12 17:44:00 -05:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_title_bar_show(const char * const title)
|
2012-02-09 16:45:31 -05:00
|
|
|
{
|
2012-04-19 20:14:07 -04:00
|
|
|
if (current_title != NULL)
|
|
|
|
free(current_title);
|
|
|
|
|
2013-08-03 06:17:50 -04:00
|
|
|
current_title = (char *) malloc(strlen(title) + 1);
|
2012-04-19 20:14:07 -04:00
|
|
|
strcpy(current_title, title);
|
2012-04-19 20:24:24 -04:00
|
|
|
_title_bar_draw_title();
|
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_title_bar_set_status(contact_presence_t status)
|
2012-04-19 20:24:24 -04:00
|
|
|
{
|
2012-05-27 15:36:31 -04:00
|
|
|
current_status = status;
|
|
|
|
_title_bar_draw_status();
|
2012-02-09 16:45:31 -05:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_title_bar_set_recipient(const char * const from)
|
2012-08-16 16:43:52 -04:00
|
|
|
{
|
2012-12-19 19:00:42 -05:00
|
|
|
if (typing_elapsed != NULL) {
|
|
|
|
g_timer_destroy(typing_elapsed);
|
|
|
|
typing_elapsed = NULL;
|
|
|
|
}
|
2014-01-11 13:06:46 -05:00
|
|
|
free(recipient);
|
|
|
|
recipient = strdup(from);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-08-16 16:43:52 -04:00
|
|
|
if (current_title != NULL) {
|
|
|
|
free(current_title);
|
|
|
|
}
|
|
|
|
|
2013-08-03 06:17:50 -04:00
|
|
|
current_title = (char *) malloc(strlen(from) + 1);
|
2012-08-16 16:43:52 -04:00
|
|
|
strcpy(current_title, from);
|
|
|
|
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_title_bar_set_typing(gboolean is_typing)
|
2012-08-16 16:43:52 -04:00
|
|
|
{
|
|
|
|
if (is_typing) {
|
|
|
|
if (typing_elapsed != NULL) {
|
|
|
|
g_timer_start(typing_elapsed);
|
|
|
|
} else {
|
|
|
|
typing_elapsed = g_timer_new();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (current_title != NULL) {
|
|
|
|
free(current_title);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_typing) {
|
2013-08-03 06:17:50 -04:00
|
|
|
current_title = (char *) malloc(strlen(recipient) + 13);
|
2012-08-16 16:43:52 -04:00
|
|
|
sprintf(current_title, "%s (typing...)", recipient);
|
|
|
|
} else {
|
2013-08-03 06:17:50 -04:00
|
|
|
current_title = (char *) malloc(strlen(recipient) + 1);
|
2012-08-16 16:43:52 -04:00
|
|
|
strcpy(current_title, recipient);
|
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-08-16 16:43:52 -04:00
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_title_bar_draw(void)
|
2012-08-16 16:43:52 -04:00
|
|
|
{
|
2013-04-21 19:02:56 -04:00
|
|
|
werase(title_bar);
|
2012-08-16 16:43:52 -04:00
|
|
|
_title_bar_draw_status();
|
|
|
|
_title_bar_draw_title();
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
2012-08-16 16:43:52 -04:00
|
|
|
_title_bar_draw_status(void)
|
2012-04-19 20:24:24 -04:00
|
|
|
{
|
2012-09-10 17:57:42 -04:00
|
|
|
int cols = getmaxx(stdscr);
|
2012-04-19 20:24:24 -04:00
|
|
|
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(title_bar, COLOUR_TITLE_BRACKET);
|
2012-04-19 20:24:24 -04:00
|
|
|
mvwaddch(title_bar, 0, cols - 14, '[');
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(title_bar, COLOUR_TITLE_BRACKET);
|
2012-04-19 20:24:24 -04:00
|
|
|
|
2013-02-10 12:13:19 -05:00
|
|
|
switch (current_status)
|
|
|
|
{
|
|
|
|
case CONTACT_ONLINE:
|
|
|
|
mvwprintw(title_bar, 0, cols - 13, " ...online ");
|
|
|
|
break;
|
|
|
|
case CONTACT_AWAY:
|
|
|
|
mvwprintw(title_bar, 0, cols - 13, " .....away ");
|
|
|
|
break;
|
|
|
|
case CONTACT_DND:
|
|
|
|
mvwprintw(title_bar, 0, cols - 13, " ......dnd ");
|
|
|
|
break;
|
|
|
|
case CONTACT_CHAT:
|
|
|
|
mvwprintw(title_bar, 0, cols - 13, " .....chat ");
|
|
|
|
break;
|
|
|
|
case CONTACT_XA:
|
|
|
|
mvwprintw(title_bar, 0, cols - 13, " .......xa ");
|
|
|
|
break;
|
|
|
|
case CONTACT_OFFLINE:
|
|
|
|
mvwprintw(title_bar, 0, cols - 13, " ..offline ");
|
|
|
|
break;
|
2012-05-27 15:36:31 -04:00
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(title_bar, COLOUR_TITLE_BRACKET);
|
2012-04-19 20:24:24 -04:00
|
|
|
mvwaddch(title_bar, 0, cols - 2, ']');
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(title_bar, COLOUR_TITLE_BRACKET);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-04-19 20:24:24 -04:00
|
|
|
dirty = TRUE;
|
|
|
|
}
|
2012-05-27 15:36:31 -04:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
|
|
|
_title_bar_draw_title(void)
|
2012-05-27 15:36:31 -04:00
|
|
|
{
|
|
|
|
wmove(title_bar, 0, 0);
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 45; i++)
|
|
|
|
waddch(title_bar, ' ');
|
|
|
|
mvwprintw(title_bar, 0, 0, " %s", current_title);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-05-27 15:36:31 -04:00
|
|
|
dirty = TRUE;
|
|
|
|
}
|
2013-12-22 19:23:22 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
titlebar_init_module(void)
|
|
|
|
{
|
|
|
|
create_title_bar = _create_title_bar;
|
|
|
|
title_bar_title = _title_bar_title;
|
|
|
|
title_bar_resize = _title_bar_resize;
|
|
|
|
title_bar_refresh = _title_bar_refresh;
|
|
|
|
title_bar_show = _title_bar_show;
|
|
|
|
title_bar_set_status = _title_bar_set_status;
|
|
|
|
title_bar_set_recipient = _title_bar_set_recipient;
|
|
|
|
title_bar_set_typing = _title_bar_set_typing;
|
|
|
|
title_bar_draw = _title_bar_draw;
|
|
|
|
}
|