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
|
|
|
*
|
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-04-19 20:14:07 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2014-12-18 18:57:19 -05:00
|
|
|
#include <assert.h>
|
2012-08-16 16:43:52 -04:00
|
|
|
|
2014-05-19 16:25:21 -04:00
|
|
|
#include "config.h"
|
|
|
|
|
2012-05-27 15:36:31 -04:00
|
|
|
#include "common.h"
|
2013-02-02 16:59:29 -05:00
|
|
|
#include "config/theme.h"
|
2014-01-16 17:44:23 -05:00
|
|
|
#include "config/preferences.h"
|
2013-02-02 15:55:58 -05:00
|
|
|
#include "ui/ui.h"
|
2014-04-07 15:00:11 -04:00
|
|
|
#include "ui/titlebar.h"
|
2014-04-07 16:50:28 -04:00
|
|
|
#include "ui/inputwin.h"
|
2015-06-15 14:26:28 -04:00
|
|
|
#include "window_list.h"
|
2014-01-16 17:44:23 -05:00
|
|
|
#include "ui/window.h"
|
2014-01-21 13:14:20 -05:00
|
|
|
#include "roster_list.h"
|
2015-01-10 13:35:59 -05:00
|
|
|
#include "chat_session.h"
|
2012-02-08 18:55:11 -05:00
|
|
|
|
2014-01-16 13:08:00 -05:00
|
|
|
static WINDOW *win;
|
2014-01-16 14:34:05 -05:00
|
|
|
static contact_presence_t current_presence;
|
2015-10-13 19:23:12 -04:00
|
|
|
static gboolean tls_secured;
|
|
|
|
static gboolean is_connected;
|
2014-01-16 13:13:22 -05:00
|
|
|
|
2014-01-16 15:37:25 -05:00
|
|
|
static gboolean typing;
|
2012-08-16 16:43:52 -04:00
|
|
|
static GTimer *typing_elapsed;
|
2014-01-16 13:13:22 -05:00
|
|
|
|
2014-01-16 15:09:54 -05:00
|
|
|
static void _title_bar_draw(void);
|
2014-11-20 16:32:19 -05:00
|
|
|
static void _show_self_presence(void);
|
2014-12-21 15:55:58 -05:00
|
|
|
static void _show_contact_presence(ProfChatWin *chatwin);
|
2014-12-18 18:57:19 -05:00
|
|
|
static void _show_privacy(ProfChatWin *chatwin);
|
2014-01-16 15:09:54 -05:00
|
|
|
|
2014-04-07 15:00:11 -04:00
|
|
|
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
|
|
|
|
2014-01-16 13:08:00 -05:00
|
|
|
win = newwin(1, cols, 0, 0);
|
2014-11-16 15:40:19 -05:00
|
|
|
wbkgd(win, theme_attrs(THEME_TITLE_TEXT));
|
2014-01-16 13:04:25 -05:00
|
|
|
title_bar_console();
|
2014-01-16 13:13:22 -05:00
|
|
|
title_bar_set_presence(CONTACT_OFFLINE);
|
2015-10-13 19:23:12 -04:00
|
|
|
title_bar_set_tls(FALSE);
|
|
|
|
title_bar_set_connected(FALSE);
|
2014-02-02 18:56:50 -05:00
|
|
|
wnoutrefresh(win);
|
2014-01-16 12:59:24 -05:00
|
|
|
inp_put_back();
|
2012-02-18 19:23:45 -05:00
|
|
|
}
|
|
|
|
|
2014-04-07 15:41:06 -04:00
|
|
|
void
|
|
|
|
title_bar_update_virtual(void)
|
2012-02-18 19:23:45 -05:00
|
|
|
{
|
2014-12-21 17:01:56 -05:00
|
|
|
ProfWin *window = wins_get_current();
|
|
|
|
if (window->type != WIN_CONSOLE) {
|
2015-05-04 18:08:09 -04:00
|
|
|
if (typing_elapsed) {
|
2014-04-07 15:41:06 -04:00
|
|
|
gdouble seconds = g_timer_elapsed(typing_elapsed, NULL);
|
2014-01-16 13:43:06 -05:00
|
|
|
|
2014-04-07 15:41:06 -04:00
|
|
|
if (seconds >= 10) {
|
|
|
|
typing = FALSE;
|
|
|
|
|
|
|
|
g_timer_destroy(typing_elapsed);
|
|
|
|
typing_elapsed = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-09-16 17:23:59 -04:00
|
|
|
_title_bar_draw();
|
2012-02-08 18:55:11 -05:00
|
|
|
}
|
2012-02-09 16:45:31 -05:00
|
|
|
|
2014-04-07 15:41:06 -04:00
|
|
|
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
|
|
|
|
2014-01-16 13:08:00 -05:00
|
|
|
wresize(win, 1, cols);
|
2014-11-16 15:40:19 -05:00
|
|
|
wbkgd(win, theme_attrs(THEME_TITLE_TEXT));
|
2014-01-16 13:58:04 -05:00
|
|
|
|
2014-01-16 15:09:54 -05:00
|
|
|
_title_bar_draw();
|
2012-04-19 20:38:04 -04:00
|
|
|
}
|
|
|
|
|
2014-04-07 15:41:06 -04:00
|
|
|
void
|
|
|
|
title_bar_console(void)
|
2012-02-12 17:44:00 -05:00
|
|
|
{
|
2014-04-07 15:41:06 -04:00
|
|
|
werase(win);
|
2015-02-09 15:15:24 -05:00
|
|
|
if (typing_elapsed) {
|
|
|
|
g_timer_destroy(typing_elapsed);
|
|
|
|
}
|
2014-04-07 15:41:06 -04:00
|
|
|
typing_elapsed = NULL;
|
2015-02-09 15:15:24 -05:00
|
|
|
typing = FALSE;
|
2012-08-16 16:43:52 -04:00
|
|
|
|
2014-04-07 15:41:06 -04:00
|
|
|
_title_bar_draw();
|
2012-02-12 17:44:00 -05:00
|
|
|
}
|
|
|
|
|
2014-04-07 15:41:06 -04:00
|
|
|
void
|
|
|
|
title_bar_set_presence(contact_presence_t presence)
|
2012-04-19 20:24:24 -04:00
|
|
|
{
|
2014-01-16 13:22:50 -05:00
|
|
|
current_presence = presence;
|
2014-01-16 15:09:54 -05:00
|
|
|
_title_bar_draw();
|
2012-02-09 16:45:31 -05:00
|
|
|
}
|
|
|
|
|
2015-10-13 19:23:12 -04:00
|
|
|
void
|
|
|
|
title_bar_set_connected(gboolean connected)
|
|
|
|
{
|
|
|
|
is_connected = connected;
|
|
|
|
_title_bar_draw();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
title_bar_set_tls(gboolean secured)
|
|
|
|
{
|
|
|
|
tls_secured = secured;
|
|
|
|
_title_bar_draw();
|
|
|
|
}
|
|
|
|
|
2014-04-07 15:41:06 -04:00
|
|
|
void
|
2014-12-21 17:01:56 -05:00
|
|
|
title_bar_switch(void)
|
2012-08-16 16:43:52 -04:00
|
|
|
{
|
2015-05-04 18:08:09 -04:00
|
|
|
if (typing_elapsed) {
|
2012-12-19 19:00:42 -05:00
|
|
|
g_timer_destroy(typing_elapsed);
|
|
|
|
typing_elapsed = NULL;
|
2014-01-16 15:37:25 -05:00
|
|
|
typing = FALSE;
|
2012-12-19 19:00:42 -05:00
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2014-01-16 15:09:54 -05:00
|
|
|
_title_bar_draw();
|
2012-08-16 16:43:52 -04:00
|
|
|
}
|
|
|
|
|
2014-04-07 15:41:06 -04:00
|
|
|
void
|
|
|
|
title_bar_set_typing(gboolean is_typing)
|
2012-08-16 16:43:52 -04:00
|
|
|
{
|
|
|
|
if (is_typing) {
|
2015-05-04 18:08:09 -04:00
|
|
|
if (typing_elapsed) {
|
2012-08-16 16:43:52 -04:00
|
|
|
g_timer_start(typing_elapsed);
|
|
|
|
} else {
|
|
|
|
typing_elapsed = g_timer_new();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-16 15:37:25 -05:00
|
|
|
typing = is_typing;
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2014-01-16 15:09:54 -05:00
|
|
|
_title_bar_draw();
|
2012-08-16 16:43:52 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_title_bar_draw(void)
|
2012-08-16 16:43:52 -04:00
|
|
|
{
|
2014-12-02 15:05:52 -05:00
|
|
|
ProfWin *current = wins_get_current();
|
2012-08-16 16:43:52 -04:00
|
|
|
|
2014-12-02 15:05:52 -05:00
|
|
|
werase(win);
|
2014-01-16 14:06:32 -05:00
|
|
|
wmove(win, 0, 0);
|
|
|
|
int i;
|
2014-12-02 15:05:52 -05:00
|
|
|
for (i = 0; i < 45; i++) {
|
2014-01-16 14:06:32 -05:00
|
|
|
waddch(win, ' ');
|
2014-11-22 16:55:33 -05:00
|
|
|
}
|
2014-11-16 15:40:19 -05:00
|
|
|
|
2014-12-21 17:01:56 -05:00
|
|
|
char *title = win_get_title(current);
|
|
|
|
mvwprintw(win, 0, 0, " %s", title);
|
|
|
|
free(title);
|
2014-12-02 15:05:52 -05:00
|
|
|
|
|
|
|
if (current && current->type == WIN_CHAT) {
|
2014-12-21 15:55:58 -05:00
|
|
|
ProfChatWin *chatwin = (ProfChatWin*) current;
|
2014-12-18 18:57:19 -05:00
|
|
|
assert(chatwin->memcheck == PROFCHATWIN_MEMCHECK);
|
2014-12-21 15:55:58 -05:00
|
|
|
_show_contact_presence(chatwin);
|
2014-12-18 18:57:19 -05:00
|
|
|
_show_privacy(chatwin);
|
2014-12-21 15:55:58 -05:00
|
|
|
|
2014-12-02 15:05:52 -05:00
|
|
|
if (typing) {
|
|
|
|
wprintw(win, " (typing...)");
|
|
|
|
}
|
2014-11-20 16:32:19 -05:00
|
|
|
}
|
2014-11-07 17:38:34 -05:00
|
|
|
|
2014-11-20 16:32:19 -05:00
|
|
|
_show_self_presence();
|
2014-11-16 15:40:19 -05:00
|
|
|
|
2014-11-20 16:32:19 -05:00
|
|
|
wnoutrefresh(win);
|
|
|
|
inp_put_back();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_show_self_presence(void)
|
|
|
|
{
|
2014-11-22 15:41:47 -05:00
|
|
|
int presence_attrs = 0;
|
2014-11-20 16:32:19 -05:00
|
|
|
int bracket_attrs = theme_attrs(THEME_TITLE_BRACKET);
|
2015-10-13 19:23:12 -04:00
|
|
|
int encrypted_attrs = theme_attrs(THEME_TITLE_ENCRYPTED);
|
|
|
|
int unencrypted_attrs = theme_attrs(THEME_TITLE_UNENCRYPTED);
|
2014-11-20 16:32:19 -05:00
|
|
|
int cols = getmaxx(stdscr);
|
|
|
|
|
2015-10-13 19:23:12 -04:00
|
|
|
int tls_start = 0;
|
2014-11-20 16:32:19 -05:00
|
|
|
|
|
|
|
switch (current_presence)
|
|
|
|
{
|
|
|
|
case CONTACT_ONLINE:
|
|
|
|
presence_attrs = theme_attrs(THEME_TITLE_ONLINE);
|
2015-10-13 19:23:12 -04:00
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
mvwaddch(win, 0, cols - 9, '[');
|
|
|
|
wattroff(win, bracket_attrs);
|
2014-11-20 16:32:19 -05:00
|
|
|
wattron(win, presence_attrs);
|
2015-10-13 19:23:12 -04:00
|
|
|
mvwprintw(win, 0, cols - 8, "online");
|
2014-11-20 16:32:19 -05:00
|
|
|
wattroff(win, presence_attrs);
|
2015-10-13 19:23:12 -04:00
|
|
|
tls_start = 15;
|
2014-11-20 16:32:19 -05:00
|
|
|
break;
|
|
|
|
case CONTACT_AWAY:
|
|
|
|
presence_attrs = theme_attrs(THEME_TITLE_AWAY);
|
2015-10-13 19:23:12 -04:00
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
mvwaddch(win, 0, cols - 7, '[');
|
|
|
|
wattroff(win, bracket_attrs);
|
2014-11-20 16:32:19 -05:00
|
|
|
wattron(win, presence_attrs);
|
2015-10-13 19:23:12 -04:00
|
|
|
mvwprintw(win, 0, cols - 6, "away");
|
2014-11-20 16:32:19 -05:00
|
|
|
wattroff(win, presence_attrs);
|
2015-10-13 19:23:12 -04:00
|
|
|
tls_start = 13;
|
2014-11-20 16:32:19 -05:00
|
|
|
break;
|
|
|
|
case CONTACT_DND:
|
|
|
|
presence_attrs = theme_attrs(THEME_TITLE_DND);
|
2015-10-13 19:23:12 -04:00
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
mvwaddch(win, 0, cols - 6, '[');
|
|
|
|
wattroff(win, bracket_attrs);
|
2014-11-20 16:32:19 -05:00
|
|
|
wattron(win, presence_attrs);
|
2015-10-13 19:23:12 -04:00
|
|
|
mvwprintw(win, 0, cols - 5, "dnd");
|
2014-11-20 16:32:19 -05:00
|
|
|
wattroff(win, presence_attrs);
|
2015-10-13 19:23:12 -04:00
|
|
|
tls_start = 12;
|
2014-11-20 16:32:19 -05:00
|
|
|
break;
|
|
|
|
case CONTACT_CHAT:
|
|
|
|
presence_attrs = theme_attrs(THEME_TITLE_CHAT);
|
2015-10-13 19:23:12 -04:00
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
mvwaddch(win, 0, cols - 7, '[');
|
|
|
|
wattroff(win, bracket_attrs);
|
2014-11-20 16:32:19 -05:00
|
|
|
wattron(win, presence_attrs);
|
2015-10-13 19:23:12 -04:00
|
|
|
mvwprintw(win, 0, cols - 6, "chat");
|
2014-11-20 16:32:19 -05:00
|
|
|
wattroff(win, presence_attrs);
|
2015-10-13 19:23:12 -04:00
|
|
|
tls_start = 13;
|
2014-11-20 16:32:19 -05:00
|
|
|
break;
|
|
|
|
case CONTACT_XA:
|
|
|
|
presence_attrs = theme_attrs(THEME_TITLE_XA);
|
2015-10-13 19:23:12 -04:00
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
mvwaddch(win, 0, cols - 5, '[');
|
|
|
|
wattroff(win, bracket_attrs);
|
2014-11-20 16:32:19 -05:00
|
|
|
wattron(win, presence_attrs);
|
2015-10-13 19:23:12 -04:00
|
|
|
mvwprintw(win, 0, cols - 4, "xa");
|
2014-11-20 16:32:19 -05:00
|
|
|
wattroff(win, presence_attrs);
|
2015-10-13 19:23:12 -04:00
|
|
|
tls_start = 11;
|
2014-11-20 16:32:19 -05:00
|
|
|
break;
|
|
|
|
case CONTACT_OFFLINE:
|
|
|
|
presence_attrs = theme_attrs(THEME_TITLE_OFFLINE);
|
2015-10-13 19:23:12 -04:00
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
mvwaddch(win, 0, cols - 10, '[');
|
|
|
|
wattroff(win, bracket_attrs);
|
2014-11-20 16:32:19 -05:00
|
|
|
wattron(win, presence_attrs);
|
2015-10-13 19:23:12 -04:00
|
|
|
mvwprintw(win, 0, cols - 9, "offline");
|
2014-11-20 16:32:19 -05:00
|
|
|
wattroff(win, presence_attrs);
|
2015-10-13 19:23:12 -04:00
|
|
|
tls_start = 16;
|
2014-11-20 16:32:19 -05:00
|
|
|
break;
|
2014-11-07 17:38:34 -05:00
|
|
|
}
|
|
|
|
|
2014-11-20 16:32:19 -05:00
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
mvwaddch(win, 0, cols - 2, ']');
|
|
|
|
wattroff(win, bracket_attrs);
|
2015-10-13 19:23:12 -04:00
|
|
|
|
2015-10-13 19:46:16 -04:00
|
|
|
if (is_connected && prefs_get_boolean(PREF_TLS_SHOW)) {
|
2015-10-13 19:23:12 -04:00
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
mvwaddch(win, 0, cols - tls_start, '[');
|
|
|
|
wattroff(win, bracket_attrs);
|
|
|
|
|
|
|
|
if (tls_secured) {
|
|
|
|
wattron(win, encrypted_attrs);
|
|
|
|
mvwprintw(win, 0, cols - (tls_start - 1), "TLS");
|
|
|
|
wattroff(win, encrypted_attrs);
|
|
|
|
} else {
|
|
|
|
wattron(win, unencrypted_attrs);
|
|
|
|
mvwprintw(win, 0, cols - (tls_start - 1), "TLS");
|
|
|
|
wattroff(win, unencrypted_attrs);
|
|
|
|
}
|
|
|
|
|
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
mvwaddch(win, 0, cols - (tls_start - 4), ']');
|
|
|
|
wattroff(win, bracket_attrs);
|
|
|
|
}
|
2014-11-20 16:32:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-12-18 18:57:19 -05:00
|
|
|
_show_privacy(ProfChatWin *chatwin)
|
2014-11-20 16:32:19 -05:00
|
|
|
{
|
|
|
|
int bracket_attrs = theme_attrs(THEME_TITLE_BRACKET);
|
2015-06-20 18:49:24 -04:00
|
|
|
int encrypted_attrs = theme_attrs(THEME_TITLE_ENCRYPTED);
|
|
|
|
int unencrypted_attrs = theme_attrs(THEME_TITLE_UNENCRYPTED);
|
|
|
|
int trusted_attrs = theme_attrs(THEME_TITLE_TRUSTED);
|
|
|
|
int untrusted_attrs = theme_attrs(THEME_TITLE_UNTRUSTED);
|
|
|
|
|
2015-08-29 20:32:13 -04:00
|
|
|
if (chatwin->is_otr) {
|
|
|
|
wprintw(win, " ");
|
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
wprintw(win, "[");
|
|
|
|
wattroff(win, bracket_attrs);
|
|
|
|
wattron(win, encrypted_attrs);
|
|
|
|
wprintw(win, "OTR");
|
|
|
|
wattroff(win, encrypted_attrs);
|
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
wprintw(win, "]");
|
|
|
|
wattroff(win, bracket_attrs);
|
|
|
|
if (chatwin->otr_is_trusted) {
|
2014-12-02 15:05:52 -05:00
|
|
|
wprintw(win, " ");
|
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
wprintw(win, "[");
|
|
|
|
wattroff(win, bracket_attrs);
|
2015-08-29 20:32:13 -04:00
|
|
|
wattron(win, trusted_attrs);
|
|
|
|
wprintw(win, "trusted");
|
|
|
|
wattroff(win, trusted_attrs);
|
2014-12-02 15:05:52 -05:00
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
wprintw(win, "]");
|
|
|
|
wattroff(win, bracket_attrs);
|
2015-08-29 20:32:13 -04:00
|
|
|
} else {
|
2014-11-22 16:26:53 -05:00
|
|
|
wprintw(win, " ");
|
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
wprintw(win, "[");
|
|
|
|
wattroff(win, bracket_attrs);
|
2015-08-29 20:32:13 -04:00
|
|
|
wattron(win, untrusted_attrs);
|
|
|
|
wprintw(win, "untrusted");
|
|
|
|
wattroff(win, untrusted_attrs);
|
2014-11-22 16:26:53 -05:00
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
wprintw(win, "]");
|
|
|
|
wattroff(win, bracket_attrs);
|
2015-08-29 20:32:13 -04:00
|
|
|
}
|
|
|
|
} else if (chatwin->pgp_send || chatwin->pgp_recv) {
|
|
|
|
GString *pgpmsg = g_string_new("PGP ");
|
|
|
|
if (chatwin->pgp_send && !chatwin->pgp_recv) {
|
|
|
|
g_string_append(pgpmsg, "send");
|
|
|
|
} else if (!chatwin->pgp_send && chatwin->pgp_recv) {
|
|
|
|
g_string_append(pgpmsg, "recv");
|
|
|
|
} else {
|
|
|
|
g_string_append(pgpmsg, "send/recv");
|
|
|
|
}
|
|
|
|
wprintw(win, " ");
|
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
wprintw(win, "[");
|
|
|
|
wattroff(win, bracket_attrs);
|
|
|
|
wattron(win, encrypted_attrs);
|
|
|
|
wprintw(win, pgpmsg->str);
|
|
|
|
wattroff(win, encrypted_attrs);
|
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
wprintw(win, "]");
|
|
|
|
wattroff(win, bracket_attrs);
|
|
|
|
g_string_free(pgpmsg, TRUE);
|
|
|
|
} else {
|
|
|
|
if (prefs_get_boolean(PREF_ENC_WARN)) {
|
|
|
|
wprintw(win, " ");
|
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
wprintw(win, "[");
|
|
|
|
wattroff(win, bracket_attrs);
|
|
|
|
wattron(win, unencrypted_attrs);
|
|
|
|
wprintw(win, "unencrypted");
|
|
|
|
wattroff(win, unencrypted_attrs);
|
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
wprintw(win, "]");
|
|
|
|
wattroff(win, bracket_attrs);
|
|
|
|
}
|
2014-01-16 17:44:23 -05:00
|
|
|
}
|
2014-11-20 16:32:19 -05:00
|
|
|
}
|
2014-09-16 17:23:59 -04:00
|
|
|
|
2014-12-02 15:50:21 -05:00
|
|
|
static void
|
2014-12-21 15:55:58 -05:00
|
|
|
_show_contact_presence(ProfChatWin *chatwin)
|
2014-12-02 15:50:21 -05:00
|
|
|
{
|
|
|
|
int bracket_attrs = theme_attrs(THEME_TITLE_BRACKET);
|
2015-01-10 13:35:59 -05:00
|
|
|
char *resource = NULL;
|
|
|
|
|
|
|
|
ChatSession *session = chat_session_get(chatwin->barejid);
|
|
|
|
if (chatwin->resource_override) {
|
|
|
|
resource = chatwin->resource_override;
|
|
|
|
} else if (session && session->resource) {
|
|
|
|
resource = session->resource;
|
|
|
|
}
|
2015-01-10 14:10:10 -05:00
|
|
|
if (resource && prefs_get_boolean(PREF_RESOURCE_TITLE)) {
|
2014-12-02 16:06:29 -05:00
|
|
|
wprintw(win, "/");
|
2015-01-10 13:35:59 -05:00
|
|
|
wprintw(win, resource);
|
2014-12-02 16:06:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (prefs_get_boolean(PREF_PRESENCE)) {
|
|
|
|
theme_item_t presence_colour = THEME_TITLE_OFFLINE;
|
|
|
|
const char *presence = "offline";
|
|
|
|
|
2014-12-21 15:55:58 -05:00
|
|
|
PContact contact = roster_get_contact(chatwin->barejid);
|
|
|
|
if (contact) {
|
2015-01-10 13:35:59 -05:00
|
|
|
if (resource) {
|
|
|
|
Resource *resourcep = p_contact_get_resource(contact, resource);
|
|
|
|
if (resourcep) {
|
|
|
|
presence = string_from_resource_presence(resourcep->presence);
|
2014-12-02 16:06:29 -05:00
|
|
|
}
|
2014-12-21 15:55:58 -05:00
|
|
|
} else {
|
|
|
|
presence = p_contact_presence(contact);
|
2014-12-02 16:06:29 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
presence_colour = THEME_TITLE_ONLINE;
|
|
|
|
if (g_strcmp0(presence, "offline") == 0) {
|
|
|
|
presence_colour = THEME_TITLE_OFFLINE;
|
|
|
|
} else if (g_strcmp0(presence, "away") == 0) {
|
|
|
|
presence_colour = THEME_TITLE_AWAY;
|
|
|
|
} else if (g_strcmp0(presence, "xa") == 0) {
|
|
|
|
presence_colour = THEME_TITLE_XA;
|
|
|
|
} else if (g_strcmp0(presence, "chat") == 0) {
|
|
|
|
presence_colour = THEME_TITLE_CHAT;
|
|
|
|
} else if (g_strcmp0(presence, "dnd") == 0) {
|
|
|
|
presence_colour = THEME_TITLE_DND;
|
|
|
|
}
|
|
|
|
|
|
|
|
int presence_attrs = theme_attrs(presence_colour);
|
2014-12-02 15:50:21 -05:00
|
|
|
wprintw(win, " ");
|
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
wprintw(win, "[");
|
|
|
|
wattroff(win, bracket_attrs);
|
2014-12-02 16:06:29 -05:00
|
|
|
wattron(win, presence_attrs);
|
|
|
|
wprintw(win, presence);
|
|
|
|
wattroff(win, presence_attrs);
|
2014-12-02 15:50:21 -05:00
|
|
|
wattron(win, bracket_attrs);
|
|
|
|
wprintw(win, "]");
|
|
|
|
wattroff(win, bracket_attrs);
|
|
|
|
}
|
|
|
|
}
|