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

222 lines
5.1 KiB
C
Raw Normal View History

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