2012-11-22 19:19:29 -05:00
|
|
|
/*
|
|
|
|
* window.c
|
|
|
|
*
|
2014-03-08 20:18:19 -05:00
|
|
|
* Copyright (C) 2012 - 2014 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>
|
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"
|
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-07-20 18:35:48 -04:00
|
|
|
static void _win_print(ProfWin *window, const char show_char, const char * const date_fmt,
|
|
|
|
int flags, int attrs, const char * const from, const char * const message);
|
|
|
|
|
|
|
|
|
2012-11-22 19:19:29 -05:00
|
|
|
ProfWin*
|
2013-04-21 14:48:56 -04:00
|
|
|
win_create(const char * const title, int cols, win_type_t type)
|
2012-11-22 19:19:29 -05:00
|
|
|
{
|
|
|
|
ProfWin *new_win = malloc(sizeof(struct prof_win_t));
|
|
|
|
new_win->from = strdup(title);
|
|
|
|
new_win->win = newpad(PAD_SIZE, cols);
|
|
|
|
wbkgd(new_win->win, COLOUR_TEXT);
|
2014-06-22 18:44:35 -04:00
|
|
|
new_win->buffer = buffer_create();
|
2012-11-22 19:19:29 -05:00
|
|
|
new_win->y_pos = 0;
|
|
|
|
new_win->paged = 0;
|
|
|
|
new_win->unread = 0;
|
|
|
|
new_win->history_shown = 0;
|
|
|
|
new_win->type = type;
|
2014-01-11 12:03:01 -05:00
|
|
|
new_win->is_otr = FALSE;
|
2014-01-11 13:24:44 -05:00
|
|
|
new_win->is_trusted = FALSE;
|
2014-09-10 18:05:35 -04:00
|
|
|
new_win->form = NULL;
|
2012-11-22 19:19:29 -05:00
|
|
|
scrollok(new_win->win, TRUE);
|
|
|
|
|
|
|
|
return new_win;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-04-21 14:48:56 -04:00
|
|
|
win_free(ProfWin* window)
|
2012-11-22 19:19:29 -05:00
|
|
|
{
|
2014-06-22 18:44:35 -04:00
|
|
|
buffer_free(window->buffer);
|
2012-11-22 19:19:29 -05:00
|
|
|
delwin(window->win);
|
|
|
|
free(window->from);
|
2014-09-10 18:05:35 -04:00
|
|
|
form_destroy(window->form);
|
2012-11-22 19:19:29 -05:00
|
|
|
free(window);
|
|
|
|
}
|
2013-04-20 18:39:17 -04:00
|
|
|
|
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-07-18 17:28:49 -04:00
|
|
|
pnoutrefresh(window->win, window->y_pos, 0, 1, 0, rows-3, cols-1);
|
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
|
|
|
{
|
|
|
|
window->paged = 0;
|
|
|
|
|
|
|
|
int rows = getmaxy(stdscr);
|
|
|
|
int y = getcury(window->win);
|
|
|
|
int size = rows - 3;
|
|
|
|
|
|
|
|
window->y_pos = y - (size - 1);
|
|
|
|
if (window->y_pos < 0) {
|
|
|
|
window->y_pos = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-21 04:16:50 -04:00
|
|
|
int
|
|
|
|
win_presence_colour(const char * const presence)
|
2013-04-20 19:21:30 -04:00
|
|
|
{
|
|
|
|
if (g_strcmp0(presence, "online") == 0) {
|
2014-06-21 04:16:50 -04:00
|
|
|
return COLOUR_ONLINE;
|
2013-04-20 19:21:30 -04:00
|
|
|
} else if (g_strcmp0(presence, "away") == 0) {
|
2014-06-21 04:16:50 -04:00
|
|
|
return COLOUR_AWAY;
|
2013-04-20 19:21:30 -04:00
|
|
|
} else if (g_strcmp0(presence, "chat") == 0) {
|
2014-06-21 04:16:50 -04:00
|
|
|
return COLOUR_CHAT;
|
2013-04-20 19:21:30 -04:00
|
|
|
} else if (g_strcmp0(presence, "dnd") == 0) {
|
2014-06-21 04:16:50 -04:00
|
|
|
return COLOUR_DND;
|
2013-04-20 19:21:30 -04:00
|
|
|
} else if (g_strcmp0(presence, "xa") == 0) {
|
2014-06-21 04:16:50 -04:00
|
|
|
return COLOUR_XA;
|
2013-04-20 19:21:30 -04:00
|
|
|
} else {
|
2014-06-21 04:16:50 -04:00
|
|
|
return COLOUR_OFFLINE;
|
2013-04-20 19:21:30 -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-06-21 04:16:50 -04:00
|
|
|
int presence_colour = win_presence_colour(presence);
|
2013-04-20 20:13:35 -04:00
|
|
|
|
|
|
|
if (name != NULL) {
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_print(window, '-', NULL, NO_EOL, presence_colour, "", name);
|
2013-05-19 12:00:27 -04:00
|
|
|
} else {
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_print(window, '-', NULL, NO_EOL, presence_colour, "", barejid);
|
2013-04-20 20:13:35 -04:00
|
|
|
}
|
|
|
|
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", " is %s", presence);
|
2013-04-20 20:13:35 -04:00
|
|
|
|
|
|
|
if (last_activity != NULL) {
|
|
|
|
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) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_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 {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_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
|
|
|
}
|
|
|
|
|
|
|
|
if (status != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", ", \"%s\"", p_contact_status(contact));
|
2013-04-20 20:13:35 -04:00
|
|
|
}
|
|
|
|
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_print(window, '-', NULL, NO_DATE, presence_colour, "", "");
|
2013-04-20 20:13:35 -04:00
|
|
|
}
|
2013-10-05 20:28:25 -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);
|
|
|
|
GList *resources = p_contact_get_available_resources(contact);
|
|
|
|
GList *ordered_resources = NULL;
|
|
|
|
GDateTime *last_activity = p_contact_last_activity(contact);
|
|
|
|
|
2014-06-21 04:16:50 -04:00
|
|
|
int presence_colour = win_presence_colour(presence);
|
|
|
|
|
|
|
|
win_save_print(window, '-', NULL, 0, 0, "", "");
|
|
|
|
win_save_print(window, '-', NULL, NO_EOL, presence_colour, "", barejid);
|
2014-06-03 16:14:21 -04:00
|
|
|
if (name != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", " (%s)", name);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_print(window, '-', NULL, NO_DATE, 0, "", ":");
|
2014-06-03 16:14:21 -04:00
|
|
|
|
|
|
|
if (sub != NULL) {
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", "Subscription: %s", sub);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (last_activity != NULL) {
|
|
|
|
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) {
|
|
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", "Last activity: %dh%dm%ds", hours, minutes, seconds);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", "Last activity: %dm%ds", minutes, seconds);
|
|
|
|
}
|
2014-06-03 16:14:21 -04:00
|
|
|
|
|
|
|
g_date_time_unref(now);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (resources != NULL) {
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_print(window, '-', NULL, 0, 0, "", "Resources:");
|
2014-06-03 16:14:21 -04:00
|
|
|
|
|
|
|
// sort in order of availabiltiy
|
|
|
|
while (resources != NULL) {
|
|
|
|
Resource *resource = resources->data;
|
|
|
|
ordered_resources = g_list_insert_sorted(ordered_resources,
|
|
|
|
resource, (GCompareFunc)resource_compare_availability);
|
|
|
|
resources = g_list_next(resources);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while (ordered_resources != NULL) {
|
|
|
|
Resource *resource = ordered_resources->data;
|
|
|
|
const char *resource_presence = string_from_resource_presence(resource->presence);
|
2014-06-21 04:16:50 -04:00
|
|
|
int presence_colour = win_presence_colour(resource_presence);
|
|
|
|
win_save_vprint(window, '-', NULL, NO_EOL, presence_colour, "", " %s (%d), %s", resource->name, resource->priority, resource_presence);
|
2014-06-03 16:14:21 -04:00
|
|
|
if (resource->status != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", ", \"%s\"", resource->status);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
2014-07-20 18:57:31 -04:00
|
|
|
win_save_newline(window);
|
2014-06-03 16:14:21 -04:00
|
|
|
|
|
|
|
if (resource->caps_str != NULL) {
|
|
|
|
Capabilities *caps = caps_get(resource->caps_str);
|
|
|
|
if (caps != NULL) {
|
|
|
|
// show identity
|
|
|
|
if ((caps->category != NULL) || (caps->type != NULL) || (caps->name != NULL)) {
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_print(window, '-', NULL, NO_EOL, 0, "", " Identity: ");
|
2014-06-03 16:14:21 -04:00
|
|
|
if (caps->name != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_print(window, '-', NULL, NO_DATE | NO_EOL, 0, "", caps->name);
|
2014-06-03 16:14:21 -04:00
|
|
|
if ((caps->category != NULL) || (caps->type != NULL)) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_print(window, '-', NULL, NO_DATE | NO_EOL, 0, "", " ");
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (caps->type != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_print(window, '-', NULL, NO_DATE | NO_EOL, 0, "", caps->type);
|
2014-06-03 16:14:21 -04:00
|
|
|
if (caps->category != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_print(window, '-', NULL, NO_DATE | NO_EOL, 0, "", " ");
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (caps->category != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_print(window, '-', NULL, NO_DATE | NO_EOL, 0, "", caps->category);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
2014-07-20 18:57:31 -04:00
|
|
|
win_save_newline(window);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
|
|
|
if (caps->software != NULL) {
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(window, '-', NULL, NO_EOL, 0, "", " Software: %s", caps->software);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
|
|
|
if (caps->software_version != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(window, '-', NULL, NO_DATE | NO_EOL, 0, "", ", %s", caps->software_version);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
|
|
|
if ((caps->software != NULL) || (caps->software_version != NULL)) {
|
2014-07-20 18:57:31 -04:00
|
|
|
win_save_newline(window);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
|
|
|
if (caps->os != NULL) {
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(window, '-', NULL, NO_EOL, 0, "", " OS: %s", caps->os);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
|
|
|
if (caps->os_version != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(window, '-', NULL, NO_DATE | NO_EOL, 0, "", ", %s", caps->os_version);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
|
|
|
if ((caps->os != NULL) || (caps->os_version != NULL)) {
|
2014-07-20 18:57:31 -04:00
|
|
|
win_save_newline(window);
|
2014-06-03 16:14:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ordered_resources = g_list_next(ordered_resources);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-06-21 04:16:50 -04:00
|
|
|
int presence_colour;
|
2013-10-06 18:52:50 -04:00
|
|
|
|
|
|
|
if (show != NULL) {
|
2014-06-21 04:16:50 -04:00
|
|
|
presence_colour = win_presence_colour(show);
|
2013-10-06 18:52:50 -04:00
|
|
|
} else if (strcmp(default_show, "online") == 0) {
|
2014-06-21 04:16:50 -04:00
|
|
|
presence_colour = COLOUR_ONLINE;
|
2013-10-06 18:52:50 -04:00
|
|
|
} else {
|
2014-06-21 04:16:50 -04:00
|
|
|
presence_colour = COLOUR_OFFLINE;
|
2013-10-06 18:52:50 -04:00
|
|
|
}
|
|
|
|
|
2014-06-21 04:16:50 -04:00
|
|
|
|
|
|
|
win_save_vprint(window, '-', NULL, NO_EOL, presence_colour, "", "%s %s", pre, from);
|
2013-10-06 18:52:50 -04:00
|
|
|
|
|
|
|
if (show != NULL)
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", " is %s", show);
|
2013-10-06 18:52:50 -04:00
|
|
|
else
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", " is %s", default_show);
|
2013-10-06 18:52:50 -04:00
|
|
|
|
|
|
|
if (last_activity != NULL) {
|
|
|
|
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) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_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 {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_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
|
|
|
}
|
|
|
|
|
|
|
|
if (status != NULL)
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(window, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", ", \"%s\"", status);
|
2013-10-06 18:52:50 -04:00
|
|
|
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_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:
|
2014-07-16 17:41:02 -04:00
|
|
|
win_save_print(window, '-', tv_stamp, NO_ME, 0, 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
|
|
|
|
win_save_vprint(ProfWin *window, const char show_char, GTimeVal *tstamp,
|
|
|
|
int flags, int attrs, const char * const from, const char * const message, ...)
|
|
|
|
{
|
|
|
|
va_list arg;
|
|
|
|
va_start(arg, message);
|
|
|
|
GString *fmt_msg = g_string_new(NULL);
|
|
|
|
g_string_vprintf(fmt_msg, message, arg);
|
|
|
|
win_save_print(window, show_char, tstamp, flags, attrs, 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
|
|
|
|
win_save_print(ProfWin *window, const char show_char, GTimeVal *tstamp,
|
|
|
|
int flags, int attrs, const char * const from, const char * const message)
|
|
|
|
{
|
2014-06-21 04:16:50 -04:00
|
|
|
gchar *date_fmt;
|
|
|
|
GDateTime *time;
|
2014-07-16 17:03:46 -04:00
|
|
|
|
|
|
|
if (tstamp == NULL) {
|
|
|
|
time = g_date_time_new_now_local();
|
|
|
|
date_fmt = g_date_time_format(time, "%H:%M:%S");
|
|
|
|
} else {
|
|
|
|
time = g_date_time_new_from_timeval_utc(tstamp);
|
|
|
|
date_fmt = g_date_time_format(time, "%H:%M:%S");
|
2014-06-21 04:16:50 -04:00
|
|
|
}
|
2014-07-16 17:03:46 -04:00
|
|
|
|
2014-06-21 04:16:50 -04:00
|
|
|
g_date_time_unref(time);
|
2014-06-29 09:04:23 -04:00
|
|
|
buffer_push(window->buffer, show_char, date_fmt, flags, attrs, from, message);
|
2014-07-20 18:35:48 -04:00
|
|
|
_win_print(window, show_char, date_fmt, flags, attrs, from, message);
|
2014-06-29 09:04:23 -04:00
|
|
|
g_free(date_fmt);
|
|
|
|
}
|
|
|
|
|
2014-07-20 19:11:38 -04:00
|
|
|
void
|
|
|
|
win_save_println(ProfWin *window, const char * const message)
|
|
|
|
{
|
|
|
|
win_save_print(window, '-', NULL, 0, 0, "", message);
|
|
|
|
}
|
|
|
|
|
2014-07-20 18:57:31 -04:00
|
|
|
void
|
|
|
|
win_save_newline(ProfWin *window)
|
|
|
|
{
|
|
|
|
win_save_print(window, '-', NULL, NO_DATE, 0, "", "");
|
|
|
|
}
|
|
|
|
|
2014-07-20 18:35:48 -04:00
|
|
|
static void
|
|
|
|
_win_print(ProfWin *window, const char show_char, const char * const date_fmt,
|
2014-07-16 17:03:46 -04:00
|
|
|
int flags, int attrs, const char * const from, const char * const message)
|
|
|
|
{
|
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
|
|
|
|
int unattr_me = 0;
|
|
|
|
int offset = 0;
|
|
|
|
int colour = COLOUR_ME;
|
2014-07-16 17:03:46 -04:00
|
|
|
|
2014-07-16 17:12:20 -04:00
|
|
|
if ((flags & NO_DATE) == 0) {
|
2014-07-16 17:03:46 -04:00
|
|
|
wattron(window->win, COLOUR_TIME);
|
|
|
|
wprintw(window->win, "%s %c ", date_fmt, show_char);
|
|
|
|
wattroff(window->win, COLOUR_TIME);
|
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-07-16 17:03:46 -04:00
|
|
|
colour = COLOUR_THEM;
|
|
|
|
}
|
|
|
|
|
2014-07-16 17:56:58 -04:00
|
|
|
if (flags & NO_COLOUR_FROM) {
|
2014-07-16 17:03:46 -04:00
|
|
|
colour = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
wattron(window->win, colour);
|
|
|
|
if (strncmp(message, "/me ", 4) == 0) {
|
|
|
|
wprintw(window->win, "*%s ", from);
|
|
|
|
offset = 4;
|
|
|
|
unattr_me = 1;
|
|
|
|
} else {
|
|
|
|
wprintw(window->win, "%s: ", from);
|
|
|
|
wattroff(window->win, colour);
|
|
|
|
}
|
2014-06-21 04:16:50 -04:00
|
|
|
}
|
2014-07-16 17:03:46 -04:00
|
|
|
|
2014-06-21 04:16:50 -04:00
|
|
|
wattron(window->win, attrs);
|
2014-07-16 17:03:46 -04:00
|
|
|
|
2014-07-16 17:56:58 -04:00
|
|
|
if (flags & NO_EOL) {
|
2014-07-16 17:03:46 -04:00
|
|
|
wprintw(window->win, "%s", message+offset);
|
2014-07-16 17:56:58 -04:00
|
|
|
} else {
|
|
|
|
wprintw(window->win, "%s\n", message+offset);
|
2014-07-16 17:03:46 -04:00
|
|
|
}
|
|
|
|
|
2014-06-21 04:16:50 -04:00
|
|
|
wattroff(window->win, attrs);
|
|
|
|
|
2014-07-16 17:03:46 -04:00
|
|
|
if (unattr_me) {
|
|
|
|
wattroff(window->win, colour);
|
2013-10-06 14:11:51 -04:00
|
|
|
}
|
|
|
|
}
|
2014-06-29 09:04:23 -04:00
|
|
|
|
2014-07-16 17:03:46 -04:00
|
|
|
void
|
|
|
|
win_redraw(ProfWin *window)
|
|
|
|
{
|
2014-06-29 09:04:23 -04:00
|
|
|
int i, size;
|
|
|
|
werase(window->win);
|
|
|
|
size = buffer_size(window->buffer);
|
2014-07-16 17:03:46 -04:00
|
|
|
|
|
|
|
for (i = 0; i < size; i++) {
|
2014-07-19 12:14:04 -04:00
|
|
|
ProfBuffEntry *e = buffer_yield_entry(window->buffer, i);
|
2014-07-20 18:35:48 -04:00
|
|
|
_win_print(window, e->show_char, e->date_fmt, e->flags, e->attrs, e->from, e->message);
|
2014-06-29 09:04:23 -04:00
|
|
|
}
|
2014-07-18 17:28:49 -04:00
|
|
|
}
|