2012-10-21 20:02:20 +01:00
|
|
|
/*
|
2013-02-02 19:57:46 +00:00
|
|
|
* titlebar.c
|
2012-02-20 20:07:38 +00:00
|
|
|
*
|
2014-03-09 01:18:19 +00:00
|
|
|
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com>
|
2012-10-21 20:02:20 +01:00
|
|
|
*
|
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 01:14:07 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2012-08-16 21:43:52 +01:00
|
|
|
|
2014-05-19 21:25:21 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2012-05-27 20:36:31 +01:00
|
|
|
#include "common.h"
|
2013-02-02 21:59:29 +00:00
|
|
|
#include "config/theme.h"
|
2014-01-16 22:44:23 +00:00
|
|
|
#include "config/preferences.h"
|
2013-02-02 20:55:58 +00:00
|
|
|
#include "ui/ui.h"
|
2014-04-07 20:00:11 +01:00
|
|
|
#include "ui/titlebar.h"
|
2014-04-07 21:50:28 +01:00
|
|
|
#include "ui/inputwin.h"
|
2014-01-16 22:44:23 +00:00
|
|
|
#include "ui/windows.h"
|
|
|
|
#include "ui/window.h"
|
2014-01-21 18:14:20 +00:00
|
|
|
#include "roster_list.h"
|
2012-02-08 23:55:11 +00:00
|
|
|
|
2014-01-16 19:47:00 +00:00
|
|
|
#define CONSOLE_TITLE "Profanity. Type /help for help information."
|
|
|
|
|
2014-01-16 18:08:00 +00:00
|
|
|
static WINDOW *win;
|
2012-04-20 01:14:07 +01:00
|
|
|
static char *current_title = NULL;
|
2014-01-16 19:21:17 +00:00
|
|
|
static char *current_recipient = NULL;
|
2014-01-16 19:34:05 +00:00
|
|
|
static contact_presence_t current_presence;
|
2014-01-16 18:13:22 +00:00
|
|
|
|
2014-01-16 20:37:25 +00:00
|
|
|
static gboolean typing;
|
2012-08-16 21:43:52 +01:00
|
|
|
static GTimer *typing_elapsed;
|
2014-01-16 18:13:22 +00:00
|
|
|
|
2014-01-16 20:09:54 +00:00
|
|
|
static void _title_bar_draw(void);
|
|
|
|
|
2014-04-07 20:00:11 +01:00
|
|
|
void
|
|
|
|
create_title_bar(void)
|
2012-02-08 23:55:11 +00:00
|
|
|
{
|
2012-09-10 22:57:42 +01: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);
|
2014-01-16 18:04:25 +00:00
|
|
|
title_bar_console();
|
2014-01-16 18:13:22 +00:00
|
|
|
title_bar_set_presence(CONTACT_OFFLINE);
|
2014-02-02 23:56:50 +00:00
|
|
|
wnoutrefresh(win);
|
2014-01-16 17:59:24 +00:00
|
|
|
inp_put_back();
|
2012-02-19 00:23:45 +00:00
|
|
|
}
|
|
|
|
|
2014-04-07 20:41:06 +01:00
|
|
|
void
|
|
|
|
title_bar_update_virtual(void)
|
2012-02-19 00:23:45 +00:00
|
|
|
{
|
2014-04-07 20:41:06 +01:00
|
|
|
if (current_recipient != NULL) {
|
2014-01-16 18:43:06 +00:00
|
|
|
|
2014-04-07 20:41:06 +01:00
|
|
|
if (typing_elapsed != NULL) {
|
|
|
|
gdouble seconds = g_timer_elapsed(typing_elapsed, NULL);
|
2014-01-16 18:43:06 +00:00
|
|
|
|
2014-04-07 20:41:06 +01:00
|
|
|
if (seconds >= 10) {
|
|
|
|
typing = FALSE;
|
|
|
|
|
|
|
|
g_timer_destroy(typing_elapsed);
|
|
|
|
typing_elapsed = NULL;
|
|
|
|
|
|
|
|
_title_bar_draw();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-02-08 23:55:11 +00:00
|
|
|
}
|
2012-02-09 21:45:31 +00:00
|
|
|
|
2014-04-07 20:41:06 +01:00
|
|
|
void
|
|
|
|
title_bar_resize(void)
|
2012-04-20 01:38:04 +01:00
|
|
|
{
|
2012-09-10 22:57:42 +01:00
|
|
|
int cols = getmaxx(stdscr);
|
2012-04-20 01:38:04 +01:00
|
|
|
|
2014-01-16 18:08:00 +00:00
|
|
|
wresize(win, 1, cols);
|
|
|
|
wbkgd(win, COLOUR_TITLE_TEXT);
|
2014-01-16 18:58:04 +00:00
|
|
|
|
2014-01-16 20:09:54 +00:00
|
|
|
_title_bar_draw();
|
2012-04-20 01:38:04 +01:00
|
|
|
}
|
|
|
|
|
2014-04-07 20:41:06 +01:00
|
|
|
void
|
|
|
|
title_bar_console(void)
|
2012-02-12 22:44:00 +00:00
|
|
|
{
|
2014-04-07 20:41:06 +01:00
|
|
|
werase(win);
|
|
|
|
current_recipient = NULL;
|
|
|
|
typing = FALSE;
|
|
|
|
typing_elapsed = NULL;
|
2012-08-16 21:43:52 +01:00
|
|
|
|
2014-04-07 20:41:06 +01:00
|
|
|
free(current_title);
|
|
|
|
current_title = strdup(CONSOLE_TITLE);
|
2012-12-20 00:00:42 +00:00
|
|
|
|
2014-04-07 20:41:06 +01:00
|
|
|
_title_bar_draw();
|
2012-02-12 22:44:00 +00:00
|
|
|
}
|
|
|
|
|
2014-04-07 20:41:06 +01:00
|
|
|
void
|
|
|
|
title_bar_set_presence(contact_presence_t presence)
|
2012-04-20 01:24:24 +01:00
|
|
|
{
|
2014-01-16 18:22:50 +00:00
|
|
|
current_presence = presence;
|
2014-01-16 20:09:54 +00:00
|
|
|
_title_bar_draw();
|
2012-02-09 21:45:31 +00:00
|
|
|
}
|
|
|
|
|
2014-04-07 20:41:06 +01:00
|
|
|
void
|
|
|
|
title_bar_set_recipient(const char * const recipient)
|
2012-08-16 21:43:52 +01:00
|
|
|
{
|
2012-12-20 00:00:42 +00:00
|
|
|
if (typing_elapsed != NULL) {
|
|
|
|
g_timer_destroy(typing_elapsed);
|
|
|
|
typing_elapsed = NULL;
|
2014-01-16 20:37:25 +00:00
|
|
|
typing = FALSE;
|
2012-12-20 00:00:42 +00:00
|
|
|
}
|
2012-10-21 20:02:20 +01:00
|
|
|
|
2014-01-16 19:34:05 +00:00
|
|
|
free(current_recipient);
|
|
|
|
current_recipient = strdup(recipient);
|
2012-08-16 21:43:52 +01:00
|
|
|
|
2014-01-16 19:34:05 +00:00
|
|
|
free(current_title);
|
|
|
|
current_title = strdup(recipient);
|
2012-08-16 21:43:52 +01:00
|
|
|
|
2014-01-16 20:09:54 +00:00
|
|
|
_title_bar_draw();
|
2012-08-16 21:43:52 +01:00
|
|
|
}
|
|
|
|
|
2014-04-07 20:41:06 +01:00
|
|
|
void
|
|
|
|
title_bar_set_typing(gboolean is_typing)
|
2012-08-16 21:43:52 +01:00
|
|
|
{
|
|
|
|
if (is_typing) {
|
|
|
|
if (typing_elapsed != NULL) {
|
|
|
|
g_timer_start(typing_elapsed);
|
|
|
|
} else {
|
|
|
|
typing_elapsed = g_timer_new();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-16 20:37:25 +00:00
|
|
|
typing = is_typing;
|
|
|
|
|
2012-10-21 20:02:20 +01:00
|
|
|
|
2014-01-16 20:09:54 +00:00
|
|
|
_title_bar_draw();
|
2012-08-16 21:43:52 +01:00
|
|
|
}
|
|
|
|
|
2013-12-22 22:14:15 +00:00
|
|
|
static void
|
|
|
|
_title_bar_draw(void)
|
2012-08-16 21:43:52 +01:00
|
|
|
{
|
2014-01-16 18:08:00 +00:00
|
|
|
werase(win);
|
2012-08-16 21:43:52 +01:00
|
|
|
|
2014-01-16 19:06:32 +00:00
|
|
|
// show title
|
|
|
|
wmove(win, 0, 0);
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 45; i++)
|
|
|
|
waddch(win, ' ');
|
|
|
|
mvwprintw(win, 0, 0, " %s", current_title);
|
2014-01-16 22:44:23 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LIBOTR
|
|
|
|
// show privacy
|
|
|
|
if (current_recipient != NULL) {
|
2014-04-18 23:29:22 +01:00
|
|
|
char *recipient_jid = NULL;
|
|
|
|
if (roster_find_contact(current_recipient) != NULL) {
|
|
|
|
recipient_jid = roster_barejid_from_name(current_recipient);
|
|
|
|
} else {
|
|
|
|
recipient_jid = current_recipient;
|
|
|
|
}
|
2014-01-21 18:14:20 +00:00
|
|
|
ProfWin *current = wins_get_by_recipient(recipient_jid);
|
2014-01-16 22:44:23 +00:00
|
|
|
if (current != NULL) {
|
|
|
|
if (current->type == WIN_CHAT) {
|
|
|
|
if (!current->is_otr) {
|
|
|
|
if (prefs_get_boolean(PREF_OTR_WARN)) {
|
|
|
|
wprintw(win, " ");
|
|
|
|
wattron(win, COLOUR_TITLE_BRACKET);
|
|
|
|
wprintw(win, "[");
|
|
|
|
wattroff(win, COLOUR_TITLE_BRACKET);
|
|
|
|
wattron(win, COLOUR_TITLE_UNENCRYPTED);
|
|
|
|
wprintw(win, "unencrypted");
|
|
|
|
wattroff(win, COLOUR_TITLE_UNENCRYPTED);
|
|
|
|
wattron(win, COLOUR_TITLE_BRACKET);
|
|
|
|
wprintw(win, "]");
|
|
|
|
wattroff(win, COLOUR_TITLE_BRACKET);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
wprintw(win, " ");
|
|
|
|
wattron(win, COLOUR_TITLE_BRACKET);
|
|
|
|
wprintw(win, "[");
|
|
|
|
wattroff(win, COLOUR_TITLE_BRACKET);
|
|
|
|
wattron(win, COLOUR_TITLE_ENCRYPTED);
|
|
|
|
wprintw(win, "OTR");
|
|
|
|
wattroff(win, COLOUR_TITLE_ENCRYPTED);
|
|
|
|
wattron(win, COLOUR_TITLE_BRACKET);
|
|
|
|
wprintw(win, "]");
|
|
|
|
wattroff(win, COLOUR_TITLE_BRACKET);
|
|
|
|
if (current->is_trusted) {
|
|
|
|
wprintw(win, " ");
|
|
|
|
wattron(win, COLOUR_TITLE_BRACKET);
|
|
|
|
wprintw(win, "[");
|
|
|
|
wattroff(win, COLOUR_TITLE_BRACKET);
|
|
|
|
wattron(win, COLOUR_TITLE_TRUSTED);
|
|
|
|
wprintw(win, "trusted");
|
|
|
|
wattroff(win, COLOUR_TITLE_TRUSTED);
|
|
|
|
wattron(win, COLOUR_TITLE_BRACKET);
|
|
|
|
wprintw(win, "]");
|
|
|
|
wattroff(win, COLOUR_TITLE_BRACKET);
|
|
|
|
} else {
|
|
|
|
wprintw(win, " ");
|
|
|
|
wattron(win, COLOUR_TITLE_BRACKET);
|
|
|
|
wprintw(win, "[");
|
|
|
|
wattroff(win, COLOUR_TITLE_BRACKET);
|
|
|
|
wattron(win, COLOUR_TITLE_UNTRUSTED);
|
|
|
|
wprintw(win, "untrusted");
|
|
|
|
wattroff(win, COLOUR_TITLE_UNTRUSTED);
|
|
|
|
wattron(win, COLOUR_TITLE_BRACKET);
|
|
|
|
wprintw(win, "]");
|
|
|
|
wattroff(win, COLOUR_TITLE_BRACKET);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// show contact typing
|
2014-01-16 20:37:25 +00:00
|
|
|
if (typing) {
|
|
|
|
wprintw(win, " (typing...)");
|
|
|
|
}
|
2014-01-16 19:06:32 +00:00
|
|
|
|
|
|
|
// show presence
|
2012-09-10 22:57:42 +01:00
|
|
|
int cols = getmaxx(stdscr);
|
2012-04-20 01:24:24 +01: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 01:24:24 +01:00
|
|
|
|
2014-01-16 18:22:50 +00:00
|
|
|
switch (current_presence)
|
2013-02-10 17:13:19 +00:00
|
|
|
{
|
|
|
|
case CONTACT_ONLINE:
|
2014-01-16 18:08:00 +00:00
|
|
|
mvwprintw(win, 0, cols - 13, " ...online ");
|
2013-02-10 17:13:19 +00:00
|
|
|
break;
|
|
|
|
case CONTACT_AWAY:
|
2014-01-16 18:08:00 +00:00
|
|
|
mvwprintw(win, 0, cols - 13, " .....away ");
|
2013-02-10 17:13:19 +00:00
|
|
|
break;
|
|
|
|
case CONTACT_DND:
|
2014-01-16 18:08:00 +00:00
|
|
|
mvwprintw(win, 0, cols - 13, " ......dnd ");
|
2013-02-10 17:13:19 +00:00
|
|
|
break;
|
|
|
|
case CONTACT_CHAT:
|
2014-01-16 18:08:00 +00:00
|
|
|
mvwprintw(win, 0, cols - 13, " .....chat ");
|
2013-02-10 17:13:19 +00:00
|
|
|
break;
|
|
|
|
case CONTACT_XA:
|
2014-01-16 18:08:00 +00:00
|
|
|
mvwprintw(win, 0, cols - 13, " .......xa ");
|
2013-02-10 17:13:19 +00:00
|
|
|
break;
|
|
|
|
case CONTACT_OFFLINE:
|
2014-01-16 18:08:00 +00:00
|
|
|
mvwprintw(win, 0, cols - 13, " ..offline ");
|
2013-02-10 17:13:19 +00:00
|
|
|
break;
|
2012-05-27 20:36:31 +01:00
|
|
|
}
|
2012-10-21 20:02:20 +01:00
|
|
|
|
2014-01-16 18:08:00 +00:00
|
|
|
wattron(win, COLOUR_TITLE_BRACKET);
|
|
|
|
mvwaddch(win, 0, cols - 2, ']');
|
|
|
|
wattroff(win, COLOUR_TITLE_BRACKET);
|
2012-10-21 20:02:20 +01:00
|
|
|
|
2014-02-02 23:56:50 +00:00
|
|
|
wnoutrefresh(win);
|
2014-01-16 17:59:24 +00:00
|
|
|
inp_put_back();
|
2014-04-07 20:41:06 +01:00
|
|
|
}
|