2012-11-22 19:19:29 -05:00
|
|
|
/*
|
|
|
|
* window.c
|
|
|
|
*
|
2015-02-10 18:16:09 -05:00
|
|
|
* Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
|
2012-11-22 19:19:29 -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-11-22 19:19:29 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2014-01-08 15:11:53 -05:00
|
|
|
#include <assert.h>
|
2015-01-31 19:14:11 -05:00
|
|
|
#include <wchar.h>
|
2012-11-22 19:19:29 -05:00
|
|
|
|
|
|
|
#include <glib.h>
|
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-11-22 19:19:29 -05:00
|
|
|
#endif
|
|
|
|
|
2013-02-02 16:59:29 -05:00
|
|
|
#include "config/theme.h"
|
2014-10-09 17:02:39 -04:00
|
|
|
#include "config/preferences.h"
|
2014-12-18 18:57:19 -05:00
|
|
|
#include "roster_list.h"
|
2014-10-07 12:06:02 -04:00
|
|
|
#include "ui/ui.h"
|
2013-02-02 15:55:58 -05:00
|
|
|
#include "ui/window.h"
|
2014-06-03 16:14:21 -04:00
|
|
|
#include "xmpp/xmpp.h"
|
2012-11-22 19:19:29 -05:00
|
|
|
|
2014-12-21 17:01:56 -05:00
|
|
|
#define CONS_WIN_TITLE "Profanity. Type /help for help information."
|
2014-12-14 19:28:28 -05:00
|
|
|
#define XML_WIN_TITLE "XML Console"
|
|
|
|
|
2014-11-15 17:26:43 -05:00
|
|
|
#define CEILING(X) (X-(int)(X) > 0 ? (int)(X+1) : (int)(X))
|
|
|
|
|
2014-11-15 20:11:00 -05:00
|
|
|
static void _win_print(ProfWin *window, const char show_char, GDateTime *time,
|
2015-03-14 12:05:13 -04:00
|
|
|
int flags, theme_item_t theme_item, const char * const from, const char * const message, DeliveryReceipt *receipt);
|
2014-11-08 16:03:28 -05:00
|
|
|
static void _win_print_wrapped(WINDOW *win, const char * const message);
|
2014-07-20 18:35:48 -04:00
|
|
|
|
2014-11-10 17:47:53 -05:00
|
|
|
int
|
2014-11-15 17:26:43 -05:00
|
|
|
win_roster_cols(void)
|
2014-11-10 17:47:53 -05:00
|
|
|
{
|
2014-11-15 18:47:27 -05:00
|
|
|
int roster_win_percent = prefs_get_roster_size();
|
2014-11-10 17:47:53 -05:00
|
|
|
int cols = getmaxx(stdscr);
|
2014-11-15 17:26:43 -05:00
|
|
|
return CEILING( (((double)cols) / 100) * roster_win_percent);
|
2014-11-10 17:47:53 -05:00
|
|
|
}
|
2014-07-20 18:35:48 -04:00
|
|
|
|
2014-11-15 17:59:13 -05:00
|
|
|
int
|
|
|
|
win_occpuants_cols(void)
|
|
|
|
{
|
2014-11-15 18:47:27 -05:00
|
|
|
int occupants_win_percent = prefs_get_occupants_size();
|
2014-11-15 17:59:13 -05:00
|
|
|
int cols = getmaxx(stdscr);
|
|
|
|
return CEILING( (((double)cols) / 100) * occupants_win_percent);
|
|
|
|
}
|
|
|
|
|
2014-12-16 15:53:23 -05:00
|
|
|
static ProfLayout*
|
|
|
|
_win_create_simple_layout(void)
|
2014-12-14 19:28:28 -05:00
|
|
|
{
|
|
|
|
int cols = getmaxx(stdscr);
|
|
|
|
|
2014-12-16 15:53:23 -05:00
|
|
|
ProfLayoutSimple *layout = malloc(sizeof(ProfLayoutSimple));
|
2014-12-21 14:40:15 -05:00
|
|
|
layout->base.type = LAYOUT_SIMPLE;
|
|
|
|
layout->base.win = newpad(PAD_SIZE, cols);
|
|
|
|
wbkgd(layout->base.win, theme_attrs(THEME_TEXT));
|
|
|
|
layout->base.buffer = buffer_create();
|
|
|
|
layout->base.y_pos = 0;
|
|
|
|
layout->base.paged = 0;
|
|
|
|
scrollok(layout->base.win, TRUE);
|
|
|
|
|
|
|
|
return &layout->base;
|
2014-12-16 15:53:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static ProfLayout*
|
|
|
|
_win_create_split_layout(void)
|
|
|
|
{
|
|
|
|
int cols = getmaxx(stdscr);
|
2014-12-15 20:39:47 -05:00
|
|
|
|
|
|
|
ProfLayoutSplit *layout = malloc(sizeof(ProfLayoutSplit));
|
2014-12-21 14:40:15 -05:00
|
|
|
layout->base.type = LAYOUT_SPLIT;
|
|
|
|
layout->base.win = newpad(PAD_SIZE, cols);
|
|
|
|
wbkgd(layout->base.win, theme_attrs(THEME_TEXT));
|
|
|
|
layout->base.buffer = buffer_create();
|
|
|
|
layout->base.y_pos = 0;
|
|
|
|
layout->base.paged = 0;
|
|
|
|
scrollok(layout->base.win, TRUE);
|
2014-12-15 20:39:47 -05:00
|
|
|
layout->subwin = NULL;
|
|
|
|
layout->sub_y_pos = 0;
|
2014-12-16 17:14:15 -05:00
|
|
|
layout->memcheck = LAYOUT_SPLIT_MEMCHECK;
|
2014-12-15 20:39:47 -05:00
|
|
|
|
2014-12-21 14:40:15 -05:00
|
|
|
return &layout->base;
|
2014-12-16 15:53:23 -05:00
|
|
|
}
|
2014-12-15 20:39:47 -05:00
|
|
|
|
2014-12-16 15:53:23 -05:00
|
|
|
ProfWin*
|
|
|
|
win_create_console(void)
|
|
|
|
{
|
|
|
|
ProfConsoleWin *new_win = malloc(sizeof(ProfConsoleWin));
|
2014-12-21 14:40:15 -05:00
|
|
|
new_win->window.type = WIN_CONSOLE;
|
|
|
|
new_win->window.layout = _win_create_split_layout();
|
2014-12-16 15:53:23 -05:00
|
|
|
|
2014-12-21 14:40:15 -05:00
|
|
|
return &new_win->window;
|
2014-12-14 19:28:28 -05:00
|
|
|
}
|
|
|
|
|
2014-12-10 17:34:33 -05:00
|
|
|
ProfWin*
|
|
|
|
win_create_chat(const char * const barejid)
|
|
|
|
{
|
2014-12-15 20:39:47 -05:00
|
|
|
ProfChatWin *new_win = malloc(sizeof(ProfChatWin));
|
2014-12-21 14:40:15 -05:00
|
|
|
new_win->window.type = WIN_CHAT;
|
|
|
|
new_win->window.layout = _win_create_simple_layout();
|
2014-12-10 17:34:33 -05:00
|
|
|
|
2014-12-18 18:57:19 -05:00
|
|
|
new_win->barejid = strdup(barejid);
|
2015-01-10 13:17:10 -05:00
|
|
|
new_win->resource_override = NULL;
|
2015-05-04 16:38:19 -04:00
|
|
|
new_win->enc_mode = PROF_ENC_NONE;
|
2014-12-15 20:39:47 -05:00
|
|
|
new_win->is_trusted = FALSE;
|
|
|
|
new_win->history_shown = FALSE;
|
2014-12-21 18:14:01 -05:00
|
|
|
new_win->unread = 0;
|
2015-01-11 15:20:17 -05:00
|
|
|
new_win->state = chat_state_new();
|
2014-12-10 17:34:33 -05:00
|
|
|
|
2014-12-19 19:52:35 -05:00
|
|
|
new_win->memcheck = PROFCHATWIN_MEMCHECK;
|
|
|
|
|
2014-12-21 14:40:15 -05:00
|
|
|
return &new_win->window;
|
2014-12-10 17:34:33 -05:00
|
|
|
}
|
|
|
|
|
2014-12-14 19:28:28 -05:00
|
|
|
ProfWin*
|
|
|
|
win_create_muc(const char * const roomjid)
|
|
|
|
{
|
2014-12-15 20:39:47 -05:00
|
|
|
ProfMucWin *new_win = malloc(sizeof(ProfMucWin));
|
2014-12-14 19:28:28 -05:00
|
|
|
int cols = getmaxx(stdscr);
|
|
|
|
|
2014-12-21 14:40:15 -05:00
|
|
|
new_win->window.type = WIN_MUC;
|
2014-12-15 20:39:47 -05:00
|
|
|
|
|
|
|
ProfLayoutSplit *layout = malloc(sizeof(ProfLayoutSplit));
|
2014-12-21 14:40:15 -05:00
|
|
|
layout->base.type = LAYOUT_SPLIT;
|
2014-12-14 19:28:28 -05:00
|
|
|
|
|
|
|
if (prefs_get_boolean(PREF_OCCUPANTS)) {
|
|
|
|
int subwin_cols = win_occpuants_cols();
|
2014-12-21 14:40:15 -05:00
|
|
|
layout->base.win = newpad(PAD_SIZE, cols - subwin_cols);
|
|
|
|
wbkgd(layout->base.win, theme_attrs(THEME_TEXT));
|
2014-12-15 20:39:47 -05:00
|
|
|
layout->subwin = newpad(PAD_SIZE, subwin_cols);;
|
|
|
|
wbkgd(layout->subwin, theme_attrs(THEME_TEXT));
|
2014-12-14 19:28:28 -05:00
|
|
|
} else {
|
2014-12-21 14:40:15 -05:00
|
|
|
layout->base.win = newpad(PAD_SIZE, (cols));
|
|
|
|
wbkgd(layout->base.win, theme_attrs(THEME_TEXT));
|
2014-12-15 20:39:47 -05:00
|
|
|
layout->subwin = NULL;
|
|
|
|
}
|
|
|
|
layout->sub_y_pos = 0;
|
2014-12-16 17:14:15 -05:00
|
|
|
layout->memcheck = LAYOUT_SPLIT_MEMCHECK;
|
2014-12-21 14:40:15 -05:00
|
|
|
layout->base.buffer = buffer_create();
|
|
|
|
layout->base.y_pos = 0;
|
|
|
|
layout->base.paged = 0;
|
|
|
|
scrollok(layout->base.win, TRUE);
|
|
|
|
new_win->window.layout = (ProfLayout*)layout;
|
2014-12-15 20:39:47 -05:00
|
|
|
|
2014-12-18 18:57:19 -05:00
|
|
|
new_win->roomjid = strdup(roomjid);
|
2014-12-21 18:14:01 -05:00
|
|
|
new_win->unread = 0;
|
2015-04-11 21:14:37 -04:00
|
|
|
if (prefs_get_boolean(PREF_OCCUPANTS_JID)) {
|
|
|
|
new_win->showjid = TRUE;
|
|
|
|
} else {
|
|
|
|
new_win->showjid = FALSE;
|
|
|
|
}
|
2014-12-15 20:39:47 -05:00
|
|
|
|
2014-12-19 19:52:35 -05:00
|
|
|
new_win->memcheck = PROFMUCWIN_MEMCHECK;
|
|
|
|
|
2014-12-21 14:40:15 -05:00
|
|
|
return &new_win->window;
|
2014-12-14 19:28:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ProfWin*
|
2014-12-21 17:01:56 -05:00
|
|
|
win_create_muc_config(const char * const roomjid, DataForm *form)
|
2014-12-14 19:28:28 -05:00
|
|
|
{
|
2014-12-15 20:39:47 -05:00
|
|
|
ProfMucConfWin *new_win = malloc(sizeof(ProfMucConfWin));
|
2014-12-21 14:40:15 -05:00
|
|
|
new_win->window.type = WIN_MUC_CONFIG;
|
|
|
|
new_win->window.layout = _win_create_simple_layout();
|
2014-12-14 19:28:28 -05:00
|
|
|
|
2014-12-21 17:01:56 -05:00
|
|
|
new_win->roomjid = strdup(roomjid);
|
2014-12-15 20:39:47 -05:00
|
|
|
new_win->form = form;
|
2014-12-14 19:28:28 -05:00
|
|
|
|
2014-12-19 19:52:35 -05:00
|
|
|
new_win->memcheck = PROFCONFWIN_MEMCHECK;
|
|
|
|
|
2014-12-21 14:40:15 -05:00
|
|
|
return &new_win->window;
|
2014-12-14 19:28:28 -05:00
|
|
|
}
|
|
|
|
|
2014-12-10 17:34:33 -05:00
|
|
|
ProfWin*
|
|
|
|
win_create_private(const char * const fulljid)
|
|
|
|
{
|
2014-12-15 20:39:47 -05:00
|
|
|
ProfPrivateWin *new_win = malloc(sizeof(ProfPrivateWin));
|
2014-12-21 14:40:15 -05:00
|
|
|
new_win->window.type = WIN_PRIVATE;
|
|
|
|
new_win->window.layout = _win_create_simple_layout();
|
2014-12-10 17:34:33 -05:00
|
|
|
|
2014-12-18 18:57:19 -05:00
|
|
|
new_win->fulljid = strdup(fulljid);
|
2014-12-21 18:14:01 -05:00
|
|
|
new_win->unread = 0;
|
2014-12-18 18:57:19 -05:00
|
|
|
|
2014-12-19 19:52:35 -05:00
|
|
|
new_win->memcheck = PROFPRIVATEWIN_MEMCHECK;
|
|
|
|
|
2014-12-21 14:40:15 -05:00
|
|
|
return &new_win->window;
|
2014-12-10 17:34:33 -05:00
|
|
|
}
|
|
|
|
|
2012-11-22 19:19:29 -05:00
|
|
|
ProfWin*
|
2014-12-14 19:28:28 -05:00
|
|
|
win_create_xmlconsole(void)
|
2012-11-22 19:19:29 -05:00
|
|
|
{
|
2014-12-15 20:39:47 -05:00
|
|
|
ProfXMLWin *new_win = malloc(sizeof(ProfXMLWin));
|
2014-12-21 14:40:15 -05:00
|
|
|
new_win->window.type = WIN_XML;
|
|
|
|
new_win->window.layout = _win_create_simple_layout();
|
2014-12-09 20:14:11 -05:00
|
|
|
|
2014-12-21 17:01:56 -05:00
|
|
|
new_win->memcheck = PROFXMLWIN_MEMCHECK;
|
2014-12-18 18:57:19 -05:00
|
|
|
|
2014-12-21 14:40:15 -05:00
|
|
|
return &new_win->window;
|
2012-11-22 19:19:29 -05:00
|
|
|
}
|
|
|
|
|
2014-12-21 17:01:56 -05:00
|
|
|
char *
|
|
|
|
win_get_title(ProfWin *window)
|
|
|
|
{
|
|
|
|
if (window == NULL) {
|
|
|
|
return strdup(CONS_WIN_TITLE);
|
|
|
|
}
|
|
|
|
if (window->type == WIN_CONSOLE) {
|
|
|
|
return strdup(CONS_WIN_TITLE);
|
|
|
|
}
|
|
|
|
if (window->type == WIN_CHAT) {
|
|
|
|
ProfChatWin *chatwin = (ProfChatWin*) window;
|
|
|
|
assert(chatwin->memcheck == PROFCHATWIN_MEMCHECK);
|
2014-12-21 17:39:00 -05:00
|
|
|
PContact contact = roster_get_contact(chatwin->barejid);
|
|
|
|
if (contact) {
|
|
|
|
const char *name = p_contact_name_or_jid(contact);
|
|
|
|
return strdup(name);
|
|
|
|
} else {
|
|
|
|
return strdup(chatwin->barejid);
|
|
|
|
}
|
2014-12-21 17:01:56 -05:00
|
|
|
}
|
|
|
|
if (window->type == WIN_MUC) {
|
|
|
|
ProfMucWin *mucwin = (ProfMucWin*) window;
|
|
|
|
assert(mucwin->memcheck == PROFMUCWIN_MEMCHECK);
|
|
|
|
return strdup(mucwin->roomjid);
|
|
|
|
}
|
|
|
|
if (window->type == WIN_MUC_CONFIG) {
|
|
|
|
ProfMucConfWin *confwin = (ProfMucConfWin*) window;
|
|
|
|
assert(confwin->memcheck == PROFCONFWIN_MEMCHECK);
|
|
|
|
GString *title = g_string_new(confwin->roomjid);
|
|
|
|
g_string_append(title, " config");
|
|
|
|
if (confwin->form->modified) {
|
|
|
|
g_string_append(title, " *");
|
|
|
|
}
|
|
|
|
char *title_str = title->str;
|
|
|
|
g_string_free(title, FALSE);
|
|
|
|
return title_str;
|
|
|
|
}
|
|
|
|
if (window->type == WIN_PRIVATE) {
|
|
|
|
ProfPrivateWin *privatewin = (ProfPrivateWin*) window;
|
|
|
|
assert(privatewin->memcheck == PROFPRIVATEWIN_MEMCHECK);
|
|
|
|
return strdup(privatewin->fulljid);
|
|
|
|
}
|
|
|
|
if (window->type == WIN_XML) {
|
|
|
|
return strdup(XML_WIN_TITLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-10-09 16:27:16 -04:00
|
|
|
void
|
|
|
|
win_hide_subwin(ProfWin *window)
|
|
|
|
{
|
2014-12-15 20:39:47 -05:00
|
|
|
if (window->layout->type == LAYOUT_SPLIT) {
|
|
|
|
ProfLayoutSplit *layout = (ProfLayoutSplit*)window->layout;
|
|
|
|
if (layout->subwin) {
|
|
|
|
delwin(layout->subwin);
|
2014-12-09 19:54:46 -05:00
|
|
|
}
|
2014-12-15 20:39:47 -05:00
|
|
|
layout->subwin = NULL;
|
|
|
|
layout->sub_y_pos = 0;
|
|
|
|
int cols = getmaxx(stdscr);
|
2014-12-21 14:40:15 -05:00
|
|
|
wresize(layout->base.win, PAD_SIZE, cols);
|
2014-12-15 20:39:47 -05:00
|
|
|
win_redraw(window);
|
|
|
|
} else {
|
|
|
|
int cols = getmaxx(stdscr);
|
|
|
|
wresize(window->layout->win, PAD_SIZE, cols);
|
|
|
|
win_redraw(window);
|
2014-10-09 16:27:16 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-09 16:42:09 -04:00
|
|
|
void
|
|
|
|
win_show_subwin(ProfWin *window)
|
|
|
|
{
|
2014-12-09 19:54:46 -05:00
|
|
|
int cols = getmaxx(stdscr);
|
|
|
|
int subwin_cols = 0;
|
2014-10-09 16:42:09 -04:00
|
|
|
|
2014-12-20 17:44:01 -05:00
|
|
|
if (window->layout->type != LAYOUT_SPLIT) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window->type == WIN_MUC) {
|
|
|
|
subwin_cols = win_occpuants_cols();
|
|
|
|
} else if (window->type == WIN_CONSOLE) {
|
2014-12-09 19:54:46 -05:00
|
|
|
subwin_cols = win_roster_cols();
|
2014-10-09 16:42:09 -04:00
|
|
|
}
|
2014-12-20 17:44:01 -05:00
|
|
|
|
|
|
|
ProfLayoutSplit *layout = (ProfLayoutSplit*)window->layout;
|
|
|
|
layout->subwin = newpad(PAD_SIZE, subwin_cols);
|
|
|
|
wbkgd(layout->subwin, theme_attrs(THEME_TEXT));
|
2014-12-21 14:40:15 -05:00
|
|
|
wresize(layout->base.win, PAD_SIZE, cols - subwin_cols);
|
2014-12-20 17:44:01 -05:00
|
|
|
win_redraw(window);
|
2014-10-09 16:42:09 -04:00
|
|
|
}
|
|
|
|
|
2012-11-22 19:19:29 -05:00
|
|
|
void
|
2013-04-21 14:48:56 -04:00
|
|
|
win_free(ProfWin* window)
|
2012-11-22 19:19:29 -05:00
|
|
|
{
|
2014-12-15 20:39:47 -05:00
|
|
|
if (window->layout->type == LAYOUT_SPLIT) {
|
|
|
|
ProfLayoutSplit *layout = (ProfLayoutSplit*)window->layout;
|
|
|
|
if (layout->subwin) {
|
|
|
|
delwin(layout->subwin);
|
2014-12-09 19:54:46 -05:00
|
|
|
}
|
2014-12-21 14:40:15 -05:00
|
|
|
buffer_free(layout->base.buffer);
|
|
|
|
delwin(layout->base.win);
|
2014-12-15 20:39:47 -05:00
|
|
|
} else {
|
|
|
|
buffer_free(window->layout->buffer);
|
|
|
|
delwin(window->layout->win);
|
2014-10-07 12:06:02 -04:00
|
|
|
}
|
2015-02-06 16:39:53 -05:00
|
|
|
free(window->layout);
|
2014-12-09 19:54:46 -05:00
|
|
|
|
2014-12-09 20:44:32 -05:00
|
|
|
if (window->type == WIN_CHAT) {
|
2014-12-15 20:39:47 -05:00
|
|
|
ProfChatWin *chatwin = (ProfChatWin*)window;
|
2014-12-18 18:57:19 -05:00
|
|
|
free(chatwin->barejid);
|
2015-01-10 13:17:10 -05:00
|
|
|
free(chatwin->resource_override);
|
2015-02-09 15:11:51 -05:00
|
|
|
chat_state_free(chatwin->state);
|
2014-12-09 20:44:32 -05:00
|
|
|
}
|
|
|
|
|
2014-12-18 18:57:19 -05:00
|
|
|
if (window->type == WIN_MUC) {
|
|
|
|
ProfMucWin *mucwin = (ProfMucWin*)window;
|
|
|
|
free(mucwin->roomjid);
|
|
|
|
}
|
2014-12-09 20:14:11 -05:00
|
|
|
|
|
|
|
if (window->type == WIN_MUC_CONFIG) {
|
2014-12-15 20:39:47 -05:00
|
|
|
ProfMucConfWin *mucconf = (ProfMucConfWin*)window;
|
2014-12-21 17:01:56 -05:00
|
|
|
free(mucconf->roomjid);
|
2014-12-15 20:39:47 -05:00
|
|
|
form_destroy(mucconf->form);
|
2014-12-09 20:14:11 -05:00
|
|
|
}
|
|
|
|
|
2014-12-18 18:57:19 -05:00
|
|
|
if (window->type == WIN_PRIVATE) {
|
|
|
|
ProfPrivateWin *privatewin = (ProfPrivateWin*)window;
|
|
|
|
free(privatewin->fulljid);
|
|
|
|
}
|
|
|
|
|
2012-11-22 19:19:29 -05:00
|
|
|
free(window);
|
|
|
|
}
|
2013-04-20 18:39:17 -04:00
|
|
|
|
2015-01-14 19:14:12 -05:00
|
|
|
void
|
2015-01-31 17:00:22 -05:00
|
|
|
win_page_up(ProfWin *window)
|
|
|
|
{
|
|
|
|
int rows = getmaxy(stdscr);
|
|
|
|
int y = getcury(window->layout->win);
|
|
|
|
int page_space = rows - 4;
|
|
|
|
int *page_start = &(window->layout->y_pos);
|
|
|
|
|
|
|
|
*page_start -= page_space;
|
|
|
|
|
|
|
|
// went past beginning, show first page
|
|
|
|
if (*page_start < 0)
|
|
|
|
*page_start = 0;
|
|
|
|
|
|
|
|
window->layout->paged = 1;
|
|
|
|
win_update_virtual(window);
|
|
|
|
|
|
|
|
// switch off page if last line and space line visible
|
|
|
|
if ((y) - *page_start == page_space) {
|
|
|
|
window->layout->paged = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
win_page_down(ProfWin *window)
|
|
|
|
{
|
|
|
|
int rows = getmaxy(stdscr);
|
|
|
|
int y = getcury(window->layout->win);
|
|
|
|
int page_space = rows - 4;
|
|
|
|
int *page_start = &(window->layout->y_pos);
|
|
|
|
|
|
|
|
*page_start += page_space;
|
|
|
|
|
|
|
|
// only got half a screen, show full screen
|
|
|
|
if ((y - (*page_start)) < page_space)
|
|
|
|
*page_start = y - page_space;
|
|
|
|
|
|
|
|
// went past end, show full screen
|
|
|
|
else if (*page_start >= y)
|
|
|
|
*page_start = y - page_space - 1;
|
|
|
|
|
|
|
|
window->layout->paged = 1;
|
|
|
|
win_update_virtual(window);
|
|
|
|
|
|
|
|
// switch off page if last line and space line visible
|
|
|
|
if ((y) - *page_start == page_space) {
|
|
|
|
window->layout->paged = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
win_sub_page_down(ProfWin *window)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (window->layout->type == LAYOUT_SPLIT) {
|
|
|
|
int rows = getmaxy(stdscr);
|
|
|
|
int page_space = rows - 4;
|
|
|
|
ProfLayoutSplit *split_layout = (ProfLayoutSplit*)window->layout;
|
|
|
|
int sub_y = getcury(split_layout->subwin);
|
|
|
|
int *sub_y_pos = &(split_layout->sub_y_pos);
|
|
|
|
|
|
|
|
*sub_y_pos += page_space;
|
|
|
|
|
|
|
|
// only got half a screen, show full screen
|
|
|
|
if ((sub_y- (*sub_y_pos)) < page_space)
|
|
|
|
*sub_y_pos = sub_y - page_space;
|
|
|
|
|
|
|
|
// went past end, show full screen
|
|
|
|
else if (*sub_y_pos >= sub_y)
|
|
|
|
*sub_y_pos = sub_y - page_space - 1;
|
|
|
|
|
|
|
|
win_update_virtual(window);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
win_sub_page_up(ProfWin *window)
|
|
|
|
{
|
|
|
|
if (window->layout->type == LAYOUT_SPLIT) {
|
|
|
|
int rows = getmaxy(stdscr);
|
|
|
|
int page_space = rows - 4;
|
|
|
|
ProfLayoutSplit *split_layout = (ProfLayoutSplit*)window->layout;
|
|
|
|
int *sub_y_pos = &(split_layout->sub_y_pos);
|
|
|
|
|
|
|
|
*sub_y_pos -= page_space;
|
|
|
|
|
|
|
|
// went past beginning, show first page
|
|
|
|
if (*sub_y_pos < 0)
|
|
|
|
*sub_y_pos = 0;
|
|
|
|
|
|
|
|
win_update_virtual(window);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
win_mouse(ProfWin *window, const wint_t ch, const int result)
|
2015-01-14 19:14:12 -05:00
|
|
|
{
|
|
|
|
int rows = getmaxy(stdscr);
|
|
|
|
int y = getcury(window->layout->win);
|
|
|
|
|
|
|
|
int page_space = rows - 4;
|
|
|
|
int *page_start = &(window->layout->y_pos);
|
|
|
|
|
|
|
|
if (prefs_get_boolean(PREF_MOUSE)) {
|
|
|
|
MEVENT mouse_event;
|
|
|
|
|
|
|
|
if (ch == KEY_MOUSE) {
|
|
|
|
if (getmouse(&mouse_event) == OK) {
|
|
|
|
|
|
|
|
#ifdef PLATFORM_CYGWIN
|
|
|
|
if (mouse_event.bstate & BUTTON5_PRESSED) { // mouse wheel down
|
|
|
|
#else
|
|
|
|
if (mouse_event.bstate & BUTTON2_PRESSED) { // mouse wheel down
|
|
|
|
#endif
|
|
|
|
*page_start += 4;
|
|
|
|
|
|
|
|
// only got half a screen, show full screen
|
|
|
|
if ((y - (*page_start)) < page_space)
|
|
|
|
*page_start = y - page_space;
|
|
|
|
|
|
|
|
// went past end, show full screen
|
|
|
|
else if (*page_start >= y)
|
|
|
|
*page_start = y - page_space;
|
|
|
|
|
|
|
|
window->layout->paged = 1;
|
|
|
|
win_update_virtual(window);
|
|
|
|
} else if (mouse_event.bstate & BUTTON4_PRESSED) { // mouse wheel up
|
|
|
|
*page_start -= 4;
|
|
|
|
|
|
|
|
// went past beginning, show first page
|
|
|
|
if (*page_start < 0)
|
|
|
|
*page_start = 0;
|
|
|
|
|
|
|
|
window->layout->paged = 1;
|
|
|
|
win_update_virtual(window);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-06 12:46:22 -04:00
|
|
|
void
|
2014-04-01 16:52:04 -04:00
|
|
|
win_update_virtual(ProfWin *window)
|
2013-10-05 20:30:53 -04:00
|
|
|
{
|
2013-10-05 20:28:25 -04:00
|
|
|
int rows, cols;
|
|
|
|
getmaxyx(stdscr, rows, cols);
|
2014-12-09 19:54:46 -05:00
|
|
|
int subwin_cols = 0;
|
2014-10-07 11:37:14 -04:00
|
|
|
|
2014-12-15 20:39:47 -05:00
|
|
|
if (window->layout->type == LAYOUT_SPLIT) {
|
|
|
|
ProfLayoutSplit *layout = (ProfLayoutSplit*)window->layout;
|
|
|
|
if (layout->subwin) {
|
|
|
|
if (window->type == WIN_MUC) {
|
|
|
|
subwin_cols = win_occpuants_cols();
|
|
|
|
} else {
|
|
|
|
subwin_cols = win_roster_cols();
|
|
|
|
}
|
2014-12-21 14:40:15 -05:00
|
|
|
pnoutrefresh(layout->base.win, layout->base.y_pos, 0, 1, 0, rows-3, (cols-subwin_cols)-1);
|
2014-12-15 20:39:47 -05:00
|
|
|
pnoutrefresh(layout->subwin, layout->sub_y_pos, 0, 1, (cols-subwin_cols), rows-3, cols-1);
|
2014-12-09 19:54:46 -05:00
|
|
|
} else {
|
2014-12-21 14:40:15 -05:00
|
|
|
pnoutrefresh(layout->base.win, layout->base.y_pos, 0, 1, 0, rows-3, cols-1);
|
2014-11-15 17:59:13 -05:00
|
|
|
}
|
2014-12-15 20:39:47 -05:00
|
|
|
} else {
|
|
|
|
pnoutrefresh(window->layout->win, window->layout->y_pos, 0, 1, 0, rows-3, cols-1);
|
2014-10-07 11:37:14 -04:00
|
|
|
}
|
2013-10-05 20:28:25 -04:00
|
|
|
}
|
|
|
|
|
2013-10-06 19:59:17 -04:00
|
|
|
void
|
2014-03-31 16:44:34 -04:00
|
|
|
win_move_to_end(ProfWin *window)
|
2013-10-06 19:59:17 -04:00
|
|
|
{
|
2014-12-15 20:39:47 -05:00
|
|
|
window->layout->paged = 0;
|
2013-10-06 19:59:17 -04:00
|
|
|
|
|
|
|
int rows = getmaxy(stdscr);
|
2014-12-15 20:39:47 -05:00
|
|
|
int y = getcury(window->layout->win);
|
2013-10-06 19:59:17 -04:00
|
|
|
int size = rows - 3;
|
|
|
|
|
2014-12-15 20:39:47 -05:00
|
|
|
window->layout->y_pos = y - (size - 1);
|
|
|
|
if (window->layout->y_pos < 0) {
|
|
|
|
window->layout->y_pos = 0;
|
2013-10-06 19:59:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-29 19:16:01 -04:00
|
|
|
void
|
|
|
|
win_show_occupant(ProfWin *window, Occupant *occupant)
|
|
|
|
{
|
|
|
|
const char *presence_str = string_from_resource_presence(occupant->presence);
|
|
|
|
|
2014-11-16 18:37:07 -05:00
|
|
|
theme_item_t presence_colour = theme_main_presence_attrs(presence_str);
|
2014-09-29 19:16:01 -04:00
|
|
|
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, NO_EOL, presence_colour, "", occupant->nick);
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", " is %s", presence_str);
|
2014-09-29 19:16:01 -04:00
|
|
|
|
|
|
|
if (occupant->status) {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", ", \"%s\"", occupant->status);
|
2014-09-29 19:16:01 -04:00
|
|
|
}
|
|
|
|
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, NO_DATE, presence_colour, "", "");
|
2014-09-29 19:16:01 -04:00
|
|
|
}
|
|
|
|
|
2013-10-06 18:22:46 -04:00
|
|
|
void
|
|
|
|
win_show_contact(ProfWin *window, PContact contact)
|
2013-04-20 20:13:35 -04:00
|
|
|
{
|
|
|
|
const char *barejid = p_contact_barejid(contact);
|
|
|
|
const char *name = p_contact_name(contact);
|
|
|
|
const char *presence = p_contact_presence(contact);
|
|
|
|
const char *status = p_contact_status(contact);
|
|
|
|
GDateTime *last_activity = p_contact_last_activity(contact);
|
|
|
|
|
2014-11-16 18:37:07 -05:00
|
|
|
theme_item_t presence_colour = theme_main_presence_attrs(presence);
|
2013-04-20 20:13:35 -04:00
|
|
|
|
2015-05-04 18:11:32 -04:00
|
|
|
if (name) {
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, NO_EOL, presence_colour, "", name);
|
2013-05-19 12:00:27 -04:00
|
|
|
} else {
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, NO_EOL, presence_colour, "", barejid);
|
2013-04-20 20:13:35 -04:00
|
|
|
}
|
|
|
|
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", " is %s", presence);
|
2013-04-20 20:13:35 -04:00
|
|
|
|
2015-05-04 18:11:32 -04:00
|
|
|
if (last_activity) {
|
2013-04-20 20:13:35 -04:00
|
|
|
GDateTime *now = g_date_time_new_now_local();
|
|
|
|
GTimeSpan span = g_date_time_difference(now, last_activity);
|
|
|
|
|
|
|
|
int hours = span / G_TIME_SPAN_HOUR;
|
|
|
|
span = span - hours * G_TIME_SPAN_HOUR;
|
|
|
|
int minutes = span / G_TIME_SPAN_MINUTE;
|
|
|
|
span = span - minutes * G_TIME_SPAN_MINUTE;
|
|
|
|
int seconds = span / G_TIME_SPAN_SECOND;
|
2014-06-21 04:16:50 -04:00
|
|
|
|
|
|
|
if (hours > 0) {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", ", idle %dh%dm%ds", hours, minutes, seconds);
|
2014-06-21 04:16:50 -04:00
|
|
|
}
|
|
|
|
else {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", ", idle %dm%ds", minutes, seconds);
|
2014-06-21 04:16:50 -04:00
|
|
|
}
|
2013-04-20 20:13:35 -04:00
|
|
|
}
|
|
|
|
|
2015-05-04 18:11:32 -04:00
|
|
|
if (status) {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", ", \"%s\"", p_contact_status(contact));
|
2013-04-20 20:13:35 -04:00
|
|
|
}
|
|
|
|
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, NO_DATE, presence_colour, "", "");
|
2013-04-20 20:13:35 -04:00
|
|
|
}
|
2013-10-05 20:28:25 -04:00
|
|
|
|
2014-09-29 19:16:01 -04:00
|
|
|
void
|
|
|
|
win_show_occupant_info(ProfWin *window, const char * const room, Occupant *occupant)
|
|
|
|
{
|
|
|
|
const char *presence_str = string_from_resource_presence(occupant->presence);
|
2014-09-30 16:58:18 -04:00
|
|
|
const char *occupant_affiliation = muc_occupant_affiliation_str(occupant);
|
|
|
|
const char *occupant_role = muc_occupant_role_str(occupant);
|
2014-09-29 19:16:01 -04:00
|
|
|
|
2014-11-16 18:37:07 -05:00
|
|
|
theme_item_t presence_colour = theme_main_presence_attrs(presence_str);
|
2014-09-29 19:16:01 -04:00
|
|
|
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '!', NULL, NO_EOL, presence_colour, "", occupant->nick);
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '!', NULL, NO_DATE | NO_EOL, presence_colour, "", " is %s", presence_str);
|
2014-09-29 19:16:01 -04:00
|
|
|
|
|
|
|
if (occupant->status) {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '!', NULL, NO_DATE | NO_EOL, presence_colour, "", ", \"%s\"", occupant->status);
|
2014-09-29 19:16:01 -04:00
|
|
|
}
|
|
|
|
|
2015-03-14 10:16:50 -04:00
|
|
|
win_newline(window);
|
2014-09-29 19:16:01 -04:00
|
|
|
|
2014-10-01 08:27:01 -04:00
|
|
|
if (occupant->jid) {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '!', NULL, 0, 0, "", " Jid: %s", occupant->jid);
|
2014-10-01 08:27:01 -04:00
|
|
|
}
|
|
|
|
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '!', NULL, 0, 0, "", " Affiliation: %s", occupant_affiliation);
|
|
|
|
win_vprint(window, '!', NULL, 0, 0, "", " Role: %s", occupant_role);
|
2014-09-30 14:46:35 -04:00
|
|
|
|
2014-09-29 19:16:01 -04:00
|
|
|
Jid *jidp = jid_create_from_bare_and_resource(room, occupant->nick);
|
|
|
|
Capabilities *caps = caps_lookup(jidp->fulljid);
|
2014-10-31 21:48:36 -04:00
|
|
|
jid_destroy(jidp);
|
2014-09-29 19:16:01 -04:00
|
|
|
|
|
|
|
if (caps) {
|
|
|
|
// show identity
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->category || caps->type || caps->name) {
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '!', NULL, NO_EOL, 0, "", " Identity: ");
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->name) {
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '!', NULL, NO_DATE | NO_EOL, 0, "", caps->name);
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->category || caps->type) {
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, NO_DATE | NO_EOL, 0, "", " ");
|
2014-09-29 19:16:01 -04:00
|
|
|
}
|
|
|
|
}
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->type) {
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '!', NULL, NO_DATE | NO_EOL, 0, "", caps->type);
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->category) {
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '!', NULL, NO_DATE | NO_EOL, 0, "", " ");
|
2014-09-29 19:16:01 -04:00
|
|
|
}
|
|
|
|
}
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->category) {
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '!', NULL, NO_DATE | NO_EOL, 0, "", caps->category);
|
2014-09-29 19:16:01 -04:00
|
|
|
}
|
2015-03-14 10:16:50 -04:00
|
|
|
win_newline(window);
|
2014-09-29 19:16:01 -04:00
|
|
|
}
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->software) {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '!', NULL, NO_EOL, 0, "", " Software: %s", caps->software);
|
2014-09-29 19:16:01 -04:00
|
|
|
}
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->software_version) {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '!', NULL, NO_DATE | NO_EOL, 0, "", ", %s", caps->software_version);
|
2014-09-29 19:16:01 -04:00
|
|
|
}
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->software || caps->software_version) {
|
2015-03-14 10:16:50 -04:00
|
|
|
win_newline(window);
|
2014-09-29 19:16:01 -04:00
|
|
|
}
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->os) {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '!', NULL, NO_EOL, 0, "", " OS: %s", caps->os);
|
2014-09-29 19:16:01 -04:00
|
|
|
}
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->os_version) {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '!', NULL, NO_DATE | NO_EOL, 0, "", ", %s", caps->os_version);
|
2014-09-29 19:16:01 -04:00
|
|
|
}
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->os || caps->os_version) {
|
2015-03-14 10:16:50 -04:00
|
|
|
win_newline(window);
|
2014-09-29 19:16:01 -04:00
|
|
|
}
|
|
|
|
caps_destroy(caps);
|
|
|
|
}
|
2014-09-30 16:58:18 -04:00
|
|
|
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, 0, 0, "", "");
|
2014-09-29 19:16:01 -04:00
|
|
|
}
|
|
|
|
|
2014-06-03 16:14:21 -04:00
|
|
|
void
|
|
|
|
win_show_info(ProfWin *window, PContact contact)
|
|
|
|
{
|
|
|
|
const char *barejid = p_contact_barejid(contact);
|
|
|
|
const char *name = p_contact_name(contact);
|
|
|
|
const char *presence = p_contact_presence(contact);
|
|
|
|
const char *sub = p_contact_subscription(contact);
|
|
|
|
GDateTime *last_activity = p_contact_last_activity(contact);
|
|
|
|
|
2014-11-16 18:37:07 -05:00
|
|
|
theme_item_t presence_colour = theme_main_presence_attrs(presence);
|
2014-06-21 04:16:50 -04:00
|
|
|
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, 0, 0, "", "");
|
|
|
|
win_print(window, '-', NULL, NO_EOL, presence_colour, "", barejid);
|
2015-05-04 18:11:32 -04:00
|
|
|
if (name) {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", " (%s)", name);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, NO_DATE, 0, "", ":");
|
2014-06-03 16:14:21 -04:00
|
|
|
|
2015-05-04 18:11:32 -04:00
|
|
|
if (sub) {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, 0, 0, "", "Subscription: %s", sub);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
|
|
|
|
2015-05-04 18:11:32 -04:00
|
|
|
if (last_activity) {
|
2014-06-03 16:14:21 -04:00
|
|
|
GDateTime *now = g_date_time_new_now_local();
|
|
|
|
GTimeSpan span = g_date_time_difference(now, last_activity);
|
|
|
|
|
|
|
|
int hours = span / G_TIME_SPAN_HOUR;
|
|
|
|
span = span - hours * G_TIME_SPAN_HOUR;
|
|
|
|
int minutes = span / G_TIME_SPAN_MINUTE;
|
|
|
|
span = span - minutes * G_TIME_SPAN_MINUTE;
|
|
|
|
int seconds = span / G_TIME_SPAN_SECOND;
|
|
|
|
|
2014-06-21 04:16:50 -04:00
|
|
|
if (hours > 0) {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, 0, 0, "", "Last activity: %dh%dm%ds", hours, minutes, seconds);
|
2014-06-21 04:16:50 -04:00
|
|
|
}
|
|
|
|
else {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, 0, 0, "", "Last activity: %dm%ds", minutes, seconds);
|
2014-06-21 04:16:50 -04:00
|
|
|
}
|
2014-06-03 16:14:21 -04:00
|
|
|
|
|
|
|
g_date_time_unref(now);
|
|
|
|
}
|
|
|
|
|
2015-02-09 16:46:54 -05:00
|
|
|
GList *resources = p_contact_get_available_resources(contact);
|
|
|
|
GList *ordered_resources = NULL;
|
2015-05-04 18:11:32 -04:00
|
|
|
if (resources) {
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, 0, 0, "", "Resources:");
|
2014-06-03 16:14:21 -04:00
|
|
|
|
2015-02-17 04:52:37 -05:00
|
|
|
// sort in order of availability
|
2015-02-09 16:46:54 -05:00
|
|
|
GList *curr = resources;
|
2015-05-04 18:11:32 -04:00
|
|
|
while (curr) {
|
2015-02-09 16:46:54 -05:00
|
|
|
Resource *resource = curr->data;
|
2014-06-03 16:14:21 -04:00
|
|
|
ordered_resources = g_list_insert_sorted(ordered_resources,
|
|
|
|
resource, (GCompareFunc)resource_compare_availability);
|
2015-02-09 16:46:54 -05:00
|
|
|
curr = g_list_next(curr);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
|
|
|
}
|
2015-02-09 16:46:54 -05:00
|
|
|
g_list_free(resources);
|
2014-06-03 16:14:21 -04:00
|
|
|
|
2015-02-09 16:46:54 -05:00
|
|
|
GList *curr = ordered_resources;
|
2015-05-04 18:11:32 -04:00
|
|
|
while (curr) {
|
2015-02-09 16:46:54 -05:00
|
|
|
Resource *resource = curr->data;
|
2014-06-03 16:14:21 -04:00
|
|
|
const char *resource_presence = string_from_resource_presence(resource->presence);
|
2014-11-16 18:37:07 -05:00
|
|
|
theme_item_t presence_colour = theme_main_presence_attrs(resource_presence);
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_EOL, presence_colour, "", " %s (%d), %s", resource->name, resource->priority, resource_presence);
|
2015-05-04 18:11:32 -04:00
|
|
|
if (resource->status) {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", ", \"%s\"", resource->status);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
2015-03-14 10:16:50 -04:00
|
|
|
win_newline(window);
|
2014-06-03 16:14:21 -04:00
|
|
|
|
2014-09-20 18:50:19 -04:00
|
|
|
Jid *jidp = jid_create_from_bare_and_resource(barejid, resource->name);
|
|
|
|
Capabilities *caps = caps_lookup(jidp->fulljid);
|
2014-10-31 21:48:36 -04:00
|
|
|
jid_destroy(jidp);
|
2014-09-20 18:50:19 -04:00
|
|
|
|
|
|
|
if (caps) {
|
|
|
|
// show identity
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->category || caps->type || caps->name) {
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, NO_EOL, 0, "", " Identity: ");
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->name) {
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, NO_DATE | NO_EOL, 0, "", caps->name);
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->category || caps->type) {
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, NO_DATE | NO_EOL, 0, "", " ");
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
2014-09-20 18:50:19 -04:00
|
|
|
}
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->type) {
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, NO_DATE | NO_EOL, 0, "", caps->type);
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->category) {
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, NO_DATE | NO_EOL, 0, "", " ");
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
|
|
|
}
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->category) {
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, NO_DATE | NO_EOL, 0, "", caps->category);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
2015-03-14 10:16:50 -04:00
|
|
|
win_newline(window);
|
2014-09-20 18:50:19 -04:00
|
|
|
}
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->software) {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_EOL, 0, "", " Software: %s", caps->software);
|
2014-09-20 18:50:19 -04:00
|
|
|
}
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->software_version) {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_DATE | NO_EOL, 0, "", ", %s", caps->software_version);
|
2014-09-20 18:50:19 -04:00
|
|
|
}
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->software || caps->software_version) {
|
2015-03-14 10:16:50 -04:00
|
|
|
win_newline(window);
|
2014-09-20 18:50:19 -04:00
|
|
|
}
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->os) {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_EOL, 0, "", " OS: %s", caps->os);
|
2014-09-20 18:50:19 -04:00
|
|
|
}
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->os_version) {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_DATE | NO_EOL, 0, "", ", %s", caps->os_version);
|
2014-09-20 18:50:19 -04:00
|
|
|
}
|
2015-05-04 18:11:32 -04:00
|
|
|
if (caps->os || caps->os_version) {
|
2015-03-14 10:16:50 -04:00
|
|
|
win_newline(window);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
2014-09-21 20:36:45 -04:00
|
|
|
caps_destroy(caps);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
|
|
|
|
2015-02-09 16:46:54 -05:00
|
|
|
curr = g_list_next(curr);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
2015-02-09 16:46:54 -05:00
|
|
|
g_list_free(ordered_resources);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
|
|
|
|
2013-10-06 18:52:50 -04:00
|
|
|
void
|
|
|
|
win_show_status_string(ProfWin *window, const char * const from,
|
|
|
|
const char * const show, const char * const status,
|
|
|
|
GDateTime *last_activity, const char * const pre,
|
|
|
|
const char * const default_show)
|
|
|
|
{
|
2014-11-16 15:40:19 -05:00
|
|
|
theme_item_t presence_colour;
|
2013-10-06 18:52:50 -04:00
|
|
|
|
2015-05-04 18:11:32 -04:00
|
|
|
if (show) {
|
2014-11-16 18:37:07 -05:00
|
|
|
presence_colour = theme_main_presence_attrs(show);
|
2013-10-06 18:52:50 -04:00
|
|
|
} else if (strcmp(default_show, "online") == 0) {
|
2014-11-16 15:40:19 -05:00
|
|
|
presence_colour = THEME_ONLINE;
|
2013-10-06 18:52:50 -04:00
|
|
|
} else {
|
2014-11-16 15:40:19 -05:00
|
|
|
presence_colour = THEME_OFFLINE;
|
2013-10-06 18:52:50 -04:00
|
|
|
}
|
|
|
|
|
2014-06-21 04:16:50 -04:00
|
|
|
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_EOL, presence_colour, "", "%s %s", pre, from);
|
2013-10-06 18:52:50 -04:00
|
|
|
|
2015-05-04 18:11:32 -04:00
|
|
|
if (show)
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", " is %s", show);
|
2013-10-06 18:52:50 -04:00
|
|
|
else
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", " is %s", default_show);
|
2013-10-06 18:52:50 -04:00
|
|
|
|
2015-05-04 18:11:32 -04:00
|
|
|
if (last_activity) {
|
2013-10-06 18:52:50 -04:00
|
|
|
GDateTime *now = g_date_time_new_now_local();
|
|
|
|
GTimeSpan span = g_date_time_difference(now, last_activity);
|
2014-09-23 19:52:32 -04:00
|
|
|
g_date_time_unref(now);
|
2013-10-06 18:52:50 -04:00
|
|
|
|
|
|
|
int hours = span / G_TIME_SPAN_HOUR;
|
|
|
|
span = span - hours * G_TIME_SPAN_HOUR;
|
|
|
|
int minutes = span / G_TIME_SPAN_MINUTE;
|
|
|
|
span = span - minutes * G_TIME_SPAN_MINUTE;
|
|
|
|
int seconds = span / G_TIME_SPAN_SECOND;
|
2014-06-21 04:16:50 -04:00
|
|
|
|
|
|
|
if (hours > 0) {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", ", idle %dh%dm%ds", hours, minutes, seconds);
|
2014-06-21 04:16:50 -04:00
|
|
|
}
|
|
|
|
else {
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", ", idle %dm%ds", minutes, seconds);
|
2014-06-21 04:16:50 -04:00
|
|
|
}
|
2013-10-06 18:52:50 -04:00
|
|
|
}
|
|
|
|
|
2015-05-04 18:11:32 -04:00
|
|
|
if (status)
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", ", \"%s\"", status);
|
2013-10-06 18:52:50 -04:00
|
|
|
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, NO_DATE, presence_colour, "", "");
|
2013-10-06 18:52:50 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-01-08 15:11:53 -05:00
|
|
|
void
|
|
|
|
win_print_incoming_message(ProfWin *window, GTimeVal *tv_stamp,
|
|
|
|
const char * const from, const char * const message)
|
|
|
|
{
|
|
|
|
switch (window->type)
|
|
|
|
{
|
|
|
|
case WIN_CHAT:
|
|
|
|
case WIN_PRIVATE:
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', tv_stamp, NO_ME, THEME_TEXT_THEM, from, message);
|
2014-01-08 15:11:53 -05:00
|
|
|
break;
|
2014-01-08 15:27:18 -05:00
|
|
|
default:
|
|
|
|
assert(FALSE);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-16 17:03:46 -04:00
|
|
|
void
|
2015-03-14 10:10:10 -04:00
|
|
|
win_vprint(ProfWin *window, const char show_char, GTimeVal *tstamp,
|
2014-11-16 15:40:19 -05:00
|
|
|
int flags, theme_item_t theme_item, const char * const from, const char * const message, ...)
|
2014-07-16 17:03:46 -04:00
|
|
|
{
|
|
|
|
va_list arg;
|
|
|
|
va_start(arg, message);
|
|
|
|
GString *fmt_msg = g_string_new(NULL);
|
|
|
|
g_string_vprintf(fmt_msg, message, arg);
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, show_char, tstamp, flags, theme_item, from, fmt_msg->str);
|
2014-09-09 15:57:28 -04:00
|
|
|
g_string_free(fmt_msg, TRUE);
|
2014-06-21 04:16:50 -04:00
|
|
|
}
|
|
|
|
|
2014-07-16 17:03:46 -04:00
|
|
|
void
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(ProfWin *window, const char show_char, GTimeVal *tstamp,
|
2014-11-16 15:40:19 -05:00
|
|
|
int flags, theme_item_t theme_item, const char * const from, const char * const message)
|
2014-07-16 17:03:46 -04:00
|
|
|
{
|
2014-06-21 04:16:50 -04:00
|
|
|
GDateTime *time;
|
2014-07-16 17:03:46 -04:00
|
|
|
|
|
|
|
if (tstamp == NULL) {
|
|
|
|
time = g_date_time_new_now_local();
|
|
|
|
} else {
|
|
|
|
time = g_date_time_new_from_timeval_utc(tstamp);
|
2014-06-21 04:16:50 -04:00
|
|
|
}
|
2014-07-16 17:03:46 -04:00
|
|
|
|
2015-03-14 12:05:13 -04:00
|
|
|
buffer_push(window->layout->buffer, show_char, time, flags, theme_item, from, message, NULL);
|
|
|
|
_win_print(window, show_char, time, flags, theme_item, from, message, NULL);
|
2015-01-08 17:43:11 -05:00
|
|
|
// TODO: cross-reference.. this should be replaced by a real event-based system
|
|
|
|
ui_input_nonblocking(TRUE);
|
2014-06-29 09:04:23 -04:00
|
|
|
}
|
|
|
|
|
2015-03-14 12:05:13 -04:00
|
|
|
void
|
|
|
|
win_print_with_receipt(ProfWin *window, const char show_char, GTimeVal *tstamp,
|
|
|
|
int flags, theme_item_t theme_item, const char * const from, const char * const message, char *id)
|
|
|
|
{
|
|
|
|
GDateTime *time;
|
|
|
|
|
|
|
|
if (tstamp == NULL) {
|
|
|
|
time = g_date_time_new_now_local();
|
|
|
|
} else {
|
|
|
|
time = g_date_time_new_from_timeval_utc(tstamp);
|
|
|
|
}
|
|
|
|
|
|
|
|
DeliveryReceipt *receipt = malloc(sizeof(struct delivery_receipt_t));
|
|
|
|
receipt->id = strdup(id);
|
|
|
|
receipt->received = FALSE;
|
|
|
|
|
|
|
|
buffer_push(window->layout->buffer, show_char, time, flags, theme_item, from, message, receipt);
|
|
|
|
_win_print(window, show_char, time, flags, theme_item, from, message, receipt);
|
|
|
|
// TODO: cross-reference.. this should be replaced by a real event-based system
|
|
|
|
ui_input_nonblocking(TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
win_mark_received(ProfWin *window, const char * const id)
|
|
|
|
{
|
|
|
|
gboolean received = buffer_mark_received(window->layout->buffer, id);
|
|
|
|
if (received) {
|
|
|
|
win_redraw(window);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-20 19:11:38 -04:00
|
|
|
void
|
2015-03-14 10:14:46 -04:00
|
|
|
win_println(ProfWin *window, const char * const message)
|
2014-07-20 19:11:38 -04:00
|
|
|
{
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, 0, 0, "", message);
|
2014-07-20 19:11:38 -04:00
|
|
|
}
|
|
|
|
|
2014-07-20 18:57:31 -04:00
|
|
|
void
|
2015-03-14 10:16:50 -04:00
|
|
|
win_newline(ProfWin *window)
|
2014-07-20 18:57:31 -04:00
|
|
|
{
|
2015-03-14 10:12:32 -04:00
|
|
|
win_print(window, '-', NULL, NO_DATE, 0, "", "");
|
2014-07-20 18:57:31 -04:00
|
|
|
}
|
|
|
|
|
2014-07-20 18:35:48 -04:00
|
|
|
static void
|
2014-11-15 20:11:00 -05:00
|
|
|
_win_print(ProfWin *window, const char show_char, GDateTime *time,
|
2015-03-14 12:05:13 -04:00
|
|
|
int flags, theme_item_t theme_item, const char * const from, const char * const message, DeliveryReceipt *receipt)
|
2014-07-16 17:03:46 -04:00
|
|
|
{
|
2014-06-29 09:04:23 -04:00
|
|
|
// flags : 1st bit = 0/1 - me/not me
|
|
|
|
// 2nd bit = 0/1 - date/no date
|
|
|
|
// 3rd bit = 0/1 - eol/no eol
|
|
|
|
// 4th bit = 0/1 - color from/no color from
|
2014-11-15 20:11:00 -05:00
|
|
|
// 5th bit = 0/1 - color date/no date
|
2014-11-30 17:50:02 -05:00
|
|
|
gboolean me_message = FALSE;
|
2014-06-29 09:04:23 -04:00
|
|
|
int offset = 0;
|
2014-11-16 15:40:19 -05:00
|
|
|
int colour = theme_attrs(THEME_ME);
|
2014-07-16 17:03:46 -04:00
|
|
|
|
2014-07-16 17:12:20 -04:00
|
|
|
if ((flags & NO_DATE) == 0) {
|
2014-11-15 20:28:41 -05:00
|
|
|
gchar *date_fmt = NULL;
|
2014-11-15 20:11:00 -05:00
|
|
|
char *time_pref = prefs_get_string(PREF_TIME);
|
|
|
|
if (g_strcmp0(time_pref, "minutes") == 0) {
|
|
|
|
date_fmt = g_date_time_format(time, "%H:%M");
|
2014-11-15 20:28:41 -05:00
|
|
|
} else if (g_strcmp0(time_pref, "seconds") == 0) {
|
2014-11-15 20:11:00 -05:00
|
|
|
date_fmt = g_date_time_format(time, "%H:%M:%S");
|
|
|
|
}
|
|
|
|
free(time_pref);
|
|
|
|
|
2014-11-15 20:28:41 -05:00
|
|
|
if (date_fmt) {
|
|
|
|
if ((flags & NO_COLOUR_DATE) == 0) {
|
2014-12-15 20:39:47 -05:00
|
|
|
wattron(window->layout->win, theme_attrs(THEME_TIME));
|
2014-11-15 20:28:41 -05:00
|
|
|
}
|
2014-12-15 20:39:47 -05:00
|
|
|
wprintw(window->layout->win, "%s %c ", date_fmt, show_char);
|
2014-11-15 20:28:41 -05:00
|
|
|
if ((flags & NO_COLOUR_DATE) == 0) {
|
2014-12-15 20:39:47 -05:00
|
|
|
wattroff(window->layout->win, theme_attrs(THEME_TIME));
|
2014-11-15 20:28:41 -05:00
|
|
|
}
|
2014-11-08 19:36:25 -05:00
|
|
|
}
|
2014-11-15 20:11:00 -05:00
|
|
|
g_free(date_fmt);
|
2014-06-21 04:16:50 -04:00
|
|
|
}
|
2013-10-06 14:11:51 -04:00
|
|
|
|
2014-07-16 17:03:46 -04:00
|
|
|
if (strlen(from) > 0) {
|
2014-07-16 17:56:58 -04:00
|
|
|
if (flags & NO_ME) {
|
2014-11-16 15:40:19 -05:00
|
|
|
colour = theme_attrs(THEME_THEM);
|
2014-07-16 17:03:46 -04:00
|
|
|
}
|
|
|
|
|
2014-07-16 17:56:58 -04:00
|
|
|
if (flags & NO_COLOUR_FROM) {
|
2014-07-16 17:03:46 -04:00
|
|
|
colour = 0;
|
|
|
|
}
|
|
|
|
|
2015-03-14 12:05:13 -04:00
|
|
|
if (receipt && !receipt->received) {
|
2015-03-15 15:35:25 -04:00
|
|
|
colour = theme_attrs(THEME_RECEIPT_SENT);
|
2015-03-14 12:05:13 -04:00
|
|
|
}
|
|
|
|
|
2014-12-15 20:39:47 -05:00
|
|
|
wattron(window->layout->win, colour);
|
2014-07-16 17:03:46 -04:00
|
|
|
if (strncmp(message, "/me ", 4) == 0) {
|
2014-12-15 20:39:47 -05:00
|
|
|
wprintw(window->layout->win, "*%s ", from);
|
2014-07-16 17:03:46 -04:00
|
|
|
offset = 4;
|
2014-11-30 17:50:02 -05:00
|
|
|
me_message = TRUE;
|
2014-07-16 17:03:46 -04:00
|
|
|
} else {
|
2014-12-15 20:39:47 -05:00
|
|
|
wprintw(window->layout->win, "%s: ", from);
|
|
|
|
wattroff(window->layout->win, colour);
|
2014-07-16 17:03:46 -04:00
|
|
|
}
|
2014-06-21 04:16:50 -04:00
|
|
|
}
|
2014-07-16 17:03:46 -04:00
|
|
|
|
2014-11-30 17:50:02 -05:00
|
|
|
if (!me_message) {
|
2015-03-14 12:05:13 -04:00
|
|
|
if (receipt && !receipt->received) {
|
2015-03-15 15:35:25 -04:00
|
|
|
wattron(window->layout->win, theme_attrs(THEME_RECEIPT_SENT));
|
2015-03-14 12:05:13 -04:00
|
|
|
} else {
|
|
|
|
wattron(window->layout->win, theme_attrs(theme_item));
|
|
|
|
}
|
2014-11-30 17:50:02 -05:00
|
|
|
}
|
2014-07-16 17:03:46 -04:00
|
|
|
|
2014-11-09 18:29:25 -05:00
|
|
|
if (prefs_get_boolean(PREF_WRAP)) {
|
2014-12-15 20:39:47 -05:00
|
|
|
_win_print_wrapped(window->layout->win, message+offset);
|
2014-07-16 17:56:58 -04:00
|
|
|
} else {
|
2014-12-15 20:39:47 -05:00
|
|
|
wprintw(window->layout->win, "%s", message+offset);
|
2014-11-09 18:29:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((flags & NO_EOL) == 0) {
|
2014-12-15 20:39:47 -05:00
|
|
|
wprintw(window->layout->win, "\n");
|
2014-07-16 17:03:46 -04:00
|
|
|
}
|
|
|
|
|
2014-11-30 17:50:02 -05:00
|
|
|
if (me_message) {
|
2014-12-15 20:39:47 -05:00
|
|
|
wattroff(window->layout->win, colour);
|
2014-11-30 17:50:02 -05:00
|
|
|
} else {
|
2015-03-14 12:05:13 -04:00
|
|
|
if (receipt && !receipt->received) {
|
2015-03-15 15:35:25 -04:00
|
|
|
wattroff(window->layout->win, theme_attrs(THEME_RECEIPT_SENT));
|
2015-03-14 12:05:13 -04:00
|
|
|
} else {
|
|
|
|
wattroff(window->layout->win, theme_attrs(theme_item));
|
|
|
|
}
|
2013-10-06 14:11:51 -04:00
|
|
|
}
|
|
|
|
}
|
2014-06-29 09:04:23 -04:00
|
|
|
|
2014-11-08 16:03:28 -05:00
|
|
|
static void
|
2014-11-16 11:27:11 -05:00
|
|
|
_win_indent(WINDOW *win, int size)
|
2014-11-08 16:03:28 -05:00
|
|
|
{
|
2014-11-15 20:11:00 -05:00
|
|
|
int i = 0;
|
2014-11-16 11:27:11 -05:00
|
|
|
for (i = 0; i < size; i++) {
|
|
|
|
waddch(win, ' ');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_win_print_wrapped(WINDOW *win, const char * const message)
|
|
|
|
{
|
2014-11-08 16:03:28 -05:00
|
|
|
int wordi = 0;
|
|
|
|
char *word = malloc(strlen(message) + 1);
|
|
|
|
|
2014-11-15 20:11:00 -05:00
|
|
|
char *time_pref = prefs_get_string(PREF_TIME);
|
2014-11-16 11:27:11 -05:00
|
|
|
int indent = 0;
|
2014-11-15 20:11:00 -05:00
|
|
|
if (g_strcmp0(time_pref, "minutes") == 0) {
|
2014-11-16 11:27:11 -05:00
|
|
|
indent = 8;
|
2014-11-15 20:28:41 -05:00
|
|
|
} else if (g_strcmp0(time_pref, "seconds") == 0) {
|
2014-11-16 11:27:11 -05:00
|
|
|
indent = 11;
|
2014-11-15 20:11:00 -05:00
|
|
|
}
|
|
|
|
free(time_pref);
|
|
|
|
|
2015-01-31 19:14:11 -05:00
|
|
|
gchar *curr_ch = g_utf8_offset_to_pointer(message, 0);
|
|
|
|
|
|
|
|
while (*curr_ch != '\0') {
|
|
|
|
if (*curr_ch == ' ') {
|
2014-11-16 11:27:11 -05:00
|
|
|
waddch(win, ' ');
|
2015-01-31 19:14:11 -05:00
|
|
|
curr_ch = g_utf8_next_char(curr_ch);
|
|
|
|
} else if (*curr_ch == '\n') {
|
2014-11-15 20:11:00 -05:00
|
|
|
waddch(win, '\n');
|
2014-11-16 11:27:11 -05:00
|
|
|
_win_indent(win, indent);
|
2015-01-31 19:14:11 -05:00
|
|
|
curr_ch = g_utf8_next_char(curr_ch);
|
2014-11-08 16:03:28 -05:00
|
|
|
} else {
|
2015-01-31 19:14:11 -05:00
|
|
|
// get word
|
2014-11-08 16:03:28 -05:00
|
|
|
wordi = 0;
|
2015-01-31 19:14:11 -05:00
|
|
|
while (*curr_ch != ' ' && *curr_ch != '\n' && *curr_ch != '\0') {
|
2015-02-03 16:08:34 -05:00
|
|
|
size_t ch_len = mbrlen(curr_ch, 4, NULL);
|
2015-01-31 19:14:11 -05:00
|
|
|
int offset = 0;
|
|
|
|
while (offset < ch_len) {
|
|
|
|
word[wordi++] = curr_ch[offset++];
|
|
|
|
}
|
|
|
|
curr_ch = g_utf8_next_char(curr_ch);
|
2014-11-08 16:03:28 -05:00
|
|
|
}
|
|
|
|
word[wordi] = '\0';
|
2014-11-08 16:16:16 -05:00
|
|
|
|
|
|
|
int curx = getcurx(win);
|
|
|
|
int maxx = getmaxx(win);
|
|
|
|
|
2014-11-09 18:05:53 -05:00
|
|
|
// word larger than line
|
2015-01-31 19:14:11 -05:00
|
|
|
if (utf8_display_len(word) > (maxx - indent)) {
|
|
|
|
gchar *word_ch = g_utf8_offset_to_pointer(word, 0);
|
|
|
|
while(*word_ch != '\0') {
|
2014-11-09 18:05:53 -05:00
|
|
|
curx = getcurx(win);
|
2014-11-16 11:27:11 -05:00
|
|
|
if (curx < indent) {
|
|
|
|
_win_indent(win, indent);
|
2014-11-09 18:05:53 -05:00
|
|
|
}
|
2015-01-31 19:14:11 -05:00
|
|
|
|
|
|
|
gchar copy[wordi++];
|
|
|
|
g_utf8_strncpy(copy, word_ch, 1);
|
|
|
|
|
|
|
|
if (curx + utf8_display_len(copy) > maxx) {
|
|
|
|
waddch(win, '\n');
|
|
|
|
_win_indent(win, indent);
|
|
|
|
}
|
|
|
|
waddstr(win, copy);
|
|
|
|
|
|
|
|
word_ch = g_utf8_next_char(word_ch);
|
2014-11-09 18:05:53 -05:00
|
|
|
}
|
|
|
|
} else {
|
2015-01-31 19:14:11 -05:00
|
|
|
if (curx + utf8_display_len(word) > maxx) {
|
2014-11-15 20:11:00 -05:00
|
|
|
waddch(win, '\n');
|
2014-11-16 11:27:11 -05:00
|
|
|
_win_indent(win, indent);
|
2014-11-09 18:05:53 -05:00
|
|
|
}
|
2014-11-16 11:27:11 -05:00
|
|
|
if (curx < indent) {
|
|
|
|
_win_indent(win, indent);
|
2014-11-09 18:05:53 -05:00
|
|
|
}
|
|
|
|
wprintw(win, "%s", word);
|
2014-11-08 16:16:16 -05:00
|
|
|
}
|
2014-11-08 16:03:28 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(word);
|
|
|
|
}
|
|
|
|
|
2014-07-16 17:03:46 -04:00
|
|
|
void
|
|
|
|
win_redraw(ProfWin *window)
|
|
|
|
{
|
2014-06-29 09:04:23 -04:00
|
|
|
int i, size;
|
2014-12-15 20:39:47 -05:00
|
|
|
werase(window->layout->win);
|
|
|
|
size = buffer_size(window->layout->buffer);
|
2014-07-16 17:03:46 -04:00
|
|
|
|
|
|
|
for (i = 0; i < size; i++) {
|
2014-12-15 20:39:47 -05:00
|
|
|
ProfBuffEntry *e = buffer_yield_entry(window->layout->buffer, i);
|
2015-03-14 12:05:13 -04:00
|
|
|
_win_print(window, e->show_char, e->time, e->flags, e->theme_item, e->from, e->message, e->receipt);
|
2014-06-29 09:04:23 -04:00
|
|
|
}
|
2014-07-18 17:28:49 -04:00
|
|
|
}
|
2014-11-10 17:47:53 -05:00
|
|
|
|
2014-12-15 20:39:47 -05:00
|
|
|
gboolean
|
|
|
|
win_has_active_subwin(ProfWin *window)
|
|
|
|
{
|
|
|
|
if (window->layout->type == LAYOUT_SPLIT) {
|
|
|
|
ProfLayoutSplit *layout = (ProfLayoutSplit*)window->layout;
|
|
|
|
return (layout->subwin != NULL);
|
|
|
|
} else {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-21 18:14:01 -05:00
|
|
|
int
|
|
|
|
win_unread(ProfWin *window)
|
|
|
|
{
|
|
|
|
if (window->type == WIN_CHAT) {
|
|
|
|
ProfChatWin *chatwin = (ProfChatWin*) window;
|
|
|
|
assert(chatwin->memcheck == PROFCHATWIN_MEMCHECK);
|
|
|
|
return chatwin->unread;
|
|
|
|
} else if (window->type == WIN_MUC) {
|
|
|
|
ProfMucWin *mucwin = (ProfMucWin*) window;
|
|
|
|
assert(mucwin->memcheck == PROFMUCWIN_MEMCHECK);
|
|
|
|
return mucwin->unread;
|
|
|
|
} else if (window->type == WIN_PRIVATE) {
|
|
|
|
ProfPrivateWin *privatewin = (ProfPrivateWin*) window;
|
|
|
|
assert(privatewin->memcheck == PROFPRIVATEWIN_MEMCHECK);
|
|
|
|
return privatewin->unread;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-10 17:47:53 -05:00
|
|
|
void
|
|
|
|
win_printline_nowrap(WINDOW *win, char *msg)
|
|
|
|
{
|
|
|
|
int maxx = getmaxx(win);
|
|
|
|
int cury = getcury(win);
|
|
|
|
|
2014-11-10 19:54:10 -05:00
|
|
|
waddnstr(win, msg, maxx);
|
|
|
|
|
2014-11-10 17:47:53 -05:00
|
|
|
wmove(win, cury+1, 0);
|
2015-01-08 17:43:11 -05:00
|
|
|
}
|