2012-11-22 19:19:29 -05:00
|
|
|
/*
|
|
|
|
* window.c
|
|
|
|
*
|
2013-01-10 21:05:29 -05:00
|
|
|
* Copyright (C) 2012, 2013 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#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"
|
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);
|
|
|
|
new_win->y_pos = 0;
|
|
|
|
new_win->paged = 0;
|
|
|
|
new_win->unread = 0;
|
|
|
|
new_win->history_shown = 0;
|
|
|
|
new_win->type = type;
|
|
|
|
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
|
|
|
{
|
|
|
|
delwin(window->win);
|
|
|
|
free(window->from);
|
|
|
|
free(window);
|
|
|
|
window = NULL;
|
|
|
|
}
|
2013-04-20 18:39:17 -04:00
|
|
|
|
|
|
|
void
|
2013-04-21 14:48:56 -04:00
|
|
|
win_print_time(ProfWin* window, char show_char)
|
2013-04-20 18:39:17 -04:00
|
|
|
{
|
|
|
|
GDateTime *time = g_date_time_new_now_local();
|
|
|
|
gchar *date_fmt = g_date_time_format(time, "%H:%M:%S");
|
|
|
|
wattron(window->win, COLOUR_TIME);
|
|
|
|
wprintw(window->win, "%s %c ", date_fmt, show_char);
|
|
|
|
wattroff(window->win, COLOUR_TIME);
|
|
|
|
g_date_time_unref(time);
|
|
|
|
g_free(date_fmt);
|
|
|
|
}
|
2013-04-20 19:21:30 -04:00
|
|
|
|
|
|
|
void
|
2013-04-21 14:48:56 -04:00
|
|
|
win_presence_colour_on(ProfWin *window, const char * const presence)
|
2013-04-20 19:21:30 -04:00
|
|
|
{
|
|
|
|
if (g_strcmp0(presence, "online") == 0) {
|
|
|
|
wattron(window->win, COLOUR_ONLINE);
|
|
|
|
} else if (g_strcmp0(presence, "away") == 0) {
|
|
|
|
wattron(window->win, COLOUR_AWAY);
|
|
|
|
} else if (g_strcmp0(presence, "chat") == 0) {
|
|
|
|
wattron(window->win, COLOUR_CHAT);
|
|
|
|
} else if (g_strcmp0(presence, "dnd") == 0) {
|
|
|
|
wattron(window->win, COLOUR_DND);
|
|
|
|
} else if (g_strcmp0(presence, "xa") == 0) {
|
|
|
|
wattron(window->win, COLOUR_XA);
|
|
|
|
} else {
|
|
|
|
wattron(window->win, COLOUR_OFFLINE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-04-21 14:48:56 -04:00
|
|
|
win_presence_colour_off(ProfWin *window, const char * const presence)
|
2013-04-20 19:21:30 -04:00
|
|
|
{
|
|
|
|
if (g_strcmp0(presence, "online") == 0) {
|
|
|
|
wattroff(window->win, COLOUR_ONLINE);
|
|
|
|
} else if (g_strcmp0(presence, "away") == 0) {
|
|
|
|
wattroff(window->win, COLOUR_AWAY);
|
|
|
|
} else if (g_strcmp0(presence, "chat") == 0) {
|
|
|
|
wattroff(window->win, COLOUR_CHAT);
|
|
|
|
} else if (g_strcmp0(presence, "dnd") == 0) {
|
|
|
|
wattroff(window->win, COLOUR_DND);
|
|
|
|
} else if (g_strcmp0(presence, "xa") == 0) {
|
|
|
|
wattroff(window->win, COLOUR_XA);
|
|
|
|
} else {
|
|
|
|
wattroff(window->win, COLOUR_OFFLINE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-20 20:13:35 -04:00
|
|
|
void
|
2013-04-21 14:48:56 -04:00
|
|
|
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);
|
|
|
|
|
2013-04-21 14:48:56 -04:00
|
|
|
win_print_time(window, '-');
|
|
|
|
win_presence_colour_on(window, presence);
|
2013-04-20 20:13:35 -04:00
|
|
|
|
|
|
|
if (name != NULL) {
|
2013-05-19 12:00:27 -04:00
|
|
|
wprintw(window->win, "%s", name);
|
|
|
|
} else {
|
|
|
|
wprintw(window->win, "%s", barejid);
|
2013-04-20 20:13:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
wprintw(window->win, " is %s", presence);
|
|
|
|
|
|
|
|
if (last_activity != NULL) {
|
|
|
|
GDateTime *now = g_date_time_new_now_local();
|
|
|
|
GTimeSpan span = g_date_time_difference(now, last_activity);
|
|
|
|
|
|
|
|
wprintw(window->win, ", idle ");
|
|
|
|
|
|
|
|
int hours = span / G_TIME_SPAN_HOUR;
|
|
|
|
span = span - hours * G_TIME_SPAN_HOUR;
|
|
|
|
if (hours > 0) {
|
|
|
|
wprintw(window->win, "%dh", hours);
|
|
|
|
}
|
|
|
|
|
|
|
|
int minutes = span / G_TIME_SPAN_MINUTE;
|
|
|
|
span = span - minutes * G_TIME_SPAN_MINUTE;
|
|
|
|
wprintw(window->win, "%dm", minutes);
|
|
|
|
|
|
|
|
int seconds = span / G_TIME_SPAN_SECOND;
|
|
|
|
wprintw(window->win, "%ds", seconds);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (status != NULL) {
|
|
|
|
wprintw(window->win, ", \"%s\"", p_contact_status(contact));
|
|
|
|
}
|
|
|
|
|
|
|
|
wprintw(window->win, "\n");
|
2013-04-21 14:48:56 -04:00
|
|
|
win_presence_colour_off(window, presence);
|
2013-04-20 20:13:35 -04:00
|
|
|
}
|