1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-30 21:55:24 +00:00
profanity/src/ui/core.c

1772 lines
46 KiB
C
Raw Normal View History

/*
2013-04-21 16:33:12 +00:00
* core.c
2012-02-20 20:07:38 +00:00
*
2013-01-11 02:05:29 +00:00
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
*
2012-02-20 20:07:38 +00:00
* This file is part of Profanity.
*
* Profanity is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Profanity is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
*
*/
2012-08-26 00:50:50 +00:00
#include "config.h"
2012-02-20 20:07:38 +00:00
#include <stdlib.h>
#include <string.h>
2012-11-30 21:26:28 +00:00
#ifdef HAVE_LIBXSS
#include <X11/extensions/scrnsaver.h>
#endif
2012-05-09 23:30:03 +00:00
#include <glib.h>
2013-01-02 20:27:37 +00:00
#ifdef HAVE_NCURSESW_NCURSES_H
#include <ncursesw/ncurses.h>
#elif HAVE_NCURSES_H
#include <ncurses.h>
2012-09-08 15:51:09 +00:00
#endif
2012-05-04 00:00:01 +00:00
#include "chat_session.h"
#include "command/command.h"
2013-01-12 01:44:21 +00:00
#include "common.h"
2013-02-02 21:59:29 +00:00
#include "config/preferences.h"
#include "config/theme.h"
2012-05-04 00:00:01 +00:00
#include "contact.h"
2013-01-12 23:10:56 +00:00
#include "jid.h"
#include "log.h"
2013-01-12 01:01:39 +00:00
#include "muc.h"
2013-04-21 19:17:06 +00:00
#include "ui/notifier.h"
2013-02-02 20:55:58 +00:00
#include "ui/ui.h"
#include "ui/window.h"
#include "xmpp/xmpp.h"
2012-02-05 23:08:15 +00:00
2012-03-01 00:40:51 +00:00
// the window currently being displayed
static int current_index = 0;
static ProfWin *current;
static ProfWin *console;
2012-02-05 23:08:15 +00:00
// current window state
static gboolean current_win_dirty;
// max columns for main windows, never resize below
static int max_cols = 0;
static char *win_title;
2012-11-30 21:26:28 +00:00
#ifdef HAVE_LIBXSS
static Display *display;
#endif
static GTimer *ui_idle_time;
static void _set_current(int index);
2012-03-09 01:06:55 +00:00
static int _find_prof_win_index(const char * const contact);
2012-11-12 23:05:22 +00:00
static int _new_prof_win(const char * const contact, win_type_t type);
2012-03-09 01:06:55 +00:00
static void _current_window_refresh(void);
static void _win_show_user(WINDOW *win, const char * const user, const int colour);
static void _win_show_message(WINDOW *win, const char * const message);
2012-10-18 15:18:44 +00:00
static void _win_show_error_msg(WINDOW *win, const char * const message);
2013-04-20 22:39:17 +00:00
static void _show_status_string(ProfWin *window, const char * const from,
2012-12-09 03:07:33 +00:00
const char * const show, const char * const status,
GDateTime *last_activity, const char * const pre,
2012-03-09 01:06:55 +00:00
const char * const default_show);
2013-01-03 00:16:39 +00:00
static void _win_handle_switch(const wint_t * const ch);
static void _win_handle_page(const wint_t * const ch);
2012-04-22 21:35:54 +00:00
static void _win_resize_all(void);
static void _win_show_history(WINDOW *win, int win_index,
2012-10-14 21:36:29 +00:00
const char * const contact);
static void _ui_draw_win_title(void);
gboolean _tidy(void);
2012-07-24 22:19:48 +00:00
void
2012-11-26 00:01:34 +00:00
ui_init(void)
2012-02-05 23:29:09 +00:00
{
log_info("Initialising UI");
2012-02-05 23:29:09 +00:00
initscr();
2012-11-23 02:56:38 +00:00
raw();
2012-02-05 23:29:09 +00:00
keypad(stdscr, TRUE);
2013-02-03 02:35:04 +00:00
if (prefs_get_boolean(PREF_MOUSE)) {
mousemask(ALL_MOUSE_EVENTS, NULL);
mouseinterval(5);
}
2012-11-26 00:01:34 +00:00
ui_load_colours();
refresh();
create_title_bar();
create_status_bar();
2012-11-24 20:41:27 +00:00
status_bar_active(0);
create_input_window();
2013-04-20 20:42:39 +00:00
max_cols = getmaxx(stdscr);
2013-04-20 22:39:17 +00:00
windows[0] = cons_create();
2013-04-20 20:42:39 +00:00
console = windows[0];
current = console;
cons_about();
2013-04-21 19:17:06 +00:00
notifier_init();
2012-11-30 21:26:28 +00:00
#ifdef HAVE_LIBXSS
display = XOpenDisplay(0);
#endif
ui_idle_time = g_timer_new();
current_win_dirty = TRUE;
}
void
2012-11-26 00:01:34 +00:00
ui_refresh(void)
{
_ui_draw_win_title();
title_bar_refresh();
status_bar_refresh();
if (current_win_dirty) {
_current_window_refresh();
current_win_dirty = FALSE;
}
inp_put_back();
}
void
ui_console_dirty(void)
{
if (ui_current_win_type() == WIN_CONSOLE) {
current_win_dirty = TRUE;
}
}
2012-11-30 21:26:28 +00:00
unsigned long
ui_get_idle_time(void)
2012-11-30 21:26:28 +00:00
{
2013-01-05 00:38:50 +00:00
// if compiled with libxss, get the x sessions idle time
#ifdef HAVE_LIBXSS
2012-11-30 21:26:28 +00:00
XScreenSaverInfo *info = XScreenSaverAllocInfo();
if (info != NULL && display != NULL) {
XScreenSaverQueryInfo(display, DefaultRootWindow(display), info);
unsigned long result = info->idle;
XFree(info);
return result;
}
// if no libxss or xss idle time failed, use profanity idle time
#endif
2012-12-01 18:47:50 +00:00
gdouble seconds_elapsed = g_timer_elapsed(ui_idle_time, NULL);
unsigned long ms_elapsed = seconds_elapsed * 1000.0;
return ms_elapsed;
}
void
ui_reset_idle_time(void)
{
g_timer_start(ui_idle_time);
}
2012-11-30 21:26:28 +00:00
2012-07-24 22:19:48 +00:00
void
2012-11-26 00:01:34 +00:00
ui_close(void)
2012-02-07 00:08:59 +00:00
{
2013-04-21 19:17:06 +00:00
notifier_uninit();
2012-02-07 00:08:59 +00:00
endwin();
}
2012-07-24 22:19:48 +00:00
void
2012-11-26 00:01:34 +00:00
ui_resize(const int ch, const char * const input, const int size)
2012-04-17 22:28:21 +00:00
{
log_info("Resizing UI");
title_bar_resize();
2012-04-22 00:25:19 +00:00
status_bar_resize();
2012-04-22 21:35:54 +00:00
_win_resize_all();
2012-04-22 19:59:36 +00:00
inp_win_resize(input, size);
current_win_dirty = TRUE;
2012-04-17 22:28:21 +00:00
}
2012-10-31 21:30:58 +00:00
void
2012-11-26 00:01:34 +00:00
ui_load_colours(void)
{
if (has_colors()) {
use_default_colors();
start_color();
theme_init_colours();
}
}
2012-11-27 00:17:35 +00:00
gboolean
ui_windows_full(void)
{
int i;
for (i = 1; i < NUM_WINS; i++) {
if (windows[i] == NULL) {
return FALSE;
}
}
return TRUE;
}
gboolean ui_win_exists(int index)
{
return (windows[index] != NULL);
}
gboolean
ui_duck_exists(void)
{
int i;
for (i = 1; i < NUM_WINS; i++) {
if (windows[i] != NULL) {
if (windows[i]->type == WIN_DUCK)
return TRUE;
}
}
return FALSE;
}
2012-11-26 00:01:34 +00:00
void
2013-05-20 21:51:35 +00:00
ui_contact_typing(const char * const barejid)
2012-11-26 00:01:34 +00:00
{
2013-05-20 21:51:35 +00:00
int win_index = _find_prof_win_index(barejid);
2012-11-26 00:01:34 +00:00
2013-02-03 02:35:04 +00:00
if (prefs_get_boolean(PREF_INTYPE)) {
2012-11-26 00:01:34 +00:00
// no chat window for user
if (win_index == NUM_WINS) {
2013-05-20 21:51:35 +00:00
cons_show_typing(barejid);
2012-11-26 00:01:34 +00:00
// have chat window but not currently in it
} else if (win_index != current_index) {
2013-05-20 21:51:35 +00:00
cons_show_typing(barejid);
current_win_dirty = TRUE;
2012-11-26 00:01:34 +00:00
// in chat window with user
} else {
title_bar_set_typing(TRUE);
title_bar_draw();
status_bar_active(win_index);
current_win_dirty = TRUE;
2012-11-26 00:01:34 +00:00
}
}
2013-05-20 21:51:35 +00:00
if (prefs_get_boolean(PREF_NOTIFY_TYPING)) {
PContact contact = roster_get_contact(barejid);
char const *display_usr = NULL;
if (p_contact_name(contact) != NULL) {
display_usr = p_contact_name(contact);
} else {
display_usr = barejid;
}
notify_typing(display_usr);
}
2012-11-26 00:01:34 +00:00
}
void
2012-11-26 00:57:41 +00:00
ui_idle(void)
{
int i;
// loop through regular chat windows and update states
for (i = 1; i < NUM_WINS; i++) {
if ((windows[i] != NULL) && (windows[i]->type == WIN_CHAT)) {
char *recipient = windows[i]->from;
chat_session_no_activity(recipient);
if (chat_session_is_gone(recipient) &&
!chat_session_get_sent(recipient)) {
message_send_gone(recipient);
} else if (chat_session_is_inactive(recipient) &&
!chat_session_get_sent(recipient)) {
message_send_inactive(recipient);
2013-02-03 02:35:04 +00:00
} else if (prefs_get_boolean(PREF_OUTTYPE) &&
chat_session_is_paused(recipient) &&
!chat_session_get_sent(recipient)) {
message_send_paused(recipient);
}
}
}
}
2012-07-24 22:19:48 +00:00
void
2013-04-21 18:44:31 +00:00
ui_incoming_msg(const char * const from, const char * const message,
GTimeVal *tv_stamp, gboolean priv)
2012-02-26 18:26:38 +00:00
{
gboolean win_created = FALSE;
char *display_from;
win_type_t win_type;
if (priv) {
win_type = WIN_PRIVATE;
2013-01-12 01:44:21 +00:00
display_from = get_nick_from_full_jid(from);
} else {
win_type = WIN_CHAT;
PContact contact = roster_get_contact(from);
if (contact != NULL) {
if (p_contact_name(contact) != NULL) {
display_from = strdup(p_contact_name(contact));
} else {
display_from = strdup(from);
}
} else {
display_from = strdup(from);
}
}
int win_index = _find_prof_win_index(from);
if (win_index == NUM_WINS) {
win_index = _new_prof_win(from, win_type);
win_created = TRUE;
}
2012-03-01 00:34:54 +00:00
// no spare windows left
if (win_index == 0) {
if (tv_stamp == NULL) {
2013-04-21 18:48:56 +00:00
win_print_time(console, '-');
} else {
GDateTime *time = g_date_time_new_from_timeval_utc(tv_stamp);
gchar *date_fmt = g_date_time_format(time, "%H:%M:%S");
wattron(console->win, COLOUR_TIME);
wprintw(console->win, "%s - ", date_fmt);
wattroff(console->win, COLOUR_TIME);
g_date_time_unref(time);
g_free(date_fmt);
}
if (strncmp(message, "/me ", 4) == 0) {
wattron(console->win, COLOUR_THEM);
wprintw(console->win, "*%s ", display_from);
waddstr(console->win, message + 4);
wprintw(console->win, "\n");
wattroff(console->win, COLOUR_THEM);
} else {
_win_show_user(console->win, display_from, 1);
_win_show_message(console->win, message);
}
cons_show("Windows all used, close a window to respond.");
if (current_index == 0) {
current_win_dirty = TRUE;
} else {
status_bar_new(0);
}
// window found or created
} else {
2013-04-20 22:39:17 +00:00
ProfWin *window = windows[win_index];
// currently viewing chat window with sender
if (win_index == current_index) {
if (tv_stamp == NULL) {
2013-04-21 18:48:56 +00:00
win_print_time(window, '-');
} else {
GDateTime *time = g_date_time_new_from_timeval_utc(tv_stamp);
gchar *date_fmt = g_date_time_format(time, "%H:%M:%S");
2013-04-20 22:39:17 +00:00
wattron(window->win, COLOUR_TIME);
wprintw(window->win, "%s - ", date_fmt);
wattroff(window->win, COLOUR_TIME);
g_date_time_unref(time);
g_free(date_fmt);
}
if (strncmp(message, "/me ", 4) == 0) {
2013-04-20 22:39:17 +00:00
wattron(window->win, COLOUR_THEM);
wprintw(window->win, "*%s ", display_from);
waddstr(window->win, message + 4);
2013-04-20 22:39:17 +00:00
wprintw(window->win, "\n");
wattroff(window->win, COLOUR_THEM);
} else {
2013-04-20 22:39:17 +00:00
_win_show_user(window->win, display_from, 1);
_win_show_message(window->win, message);
}
title_bar_set_typing(FALSE);
title_bar_draw();
status_bar_active(win_index);
current_win_dirty = TRUE;
// not currently viewing chat window with sender
} else {
status_bar_new(win_index);
cons_show_incoming_message(display_from, win_index);
2013-02-03 02:35:04 +00:00
if (prefs_get_boolean(PREF_FLASH))
flash();
windows[win_index]->unread++;
2013-02-03 02:35:04 +00:00
if (prefs_get_boolean(PREF_CHLOG) && prefs_get_boolean(PREF_HISTORY)) {
2013-04-20 22:39:17 +00:00
_win_show_history(window->win, win_index, from);
}
if (tv_stamp == NULL) {
2013-04-21 18:48:56 +00:00
win_print_time(window, '-');
} else {
// if show users status first, when receiving message via delayed delivery
if (win_created) {
PContact pcontact = roster_get_contact(from);
win_show_contact(window, pcontact);
}
GDateTime *time = g_date_time_new_from_timeval_utc(tv_stamp);
gchar *date_fmt = g_date_time_format(time, "%H:%M:%S");
2013-04-20 22:39:17 +00:00
wattron(window->win, COLOUR_TIME);
wprintw(window->win, "%s - ", date_fmt);
wattroff(window->win, COLOUR_TIME);
g_date_time_unref(time);
g_free(date_fmt);
}
if (strncmp(message, "/me ", 4) == 0) {
2013-04-20 22:39:17 +00:00
wattron(window->win, COLOUR_THEM);
wprintw(window->win, "*%s ", display_from);
waddstr(window->win, message + 4);
2013-04-20 22:39:17 +00:00
wprintw(window->win, "\n");
wattroff(window->win, COLOUR_THEM);
} else {
2013-04-20 22:39:17 +00:00
_win_show_user(window->win, display_from, 1);
_win_show_message(window->win, message);
}
}
}
2012-04-24 00:11:39 +00:00
int ui_index = win_index + 1;
if (ui_index == 10) {
ui_index = 0;
}
2013-02-03 02:35:04 +00:00
if (prefs_get_boolean(PREF_BEEP))
2012-04-24 00:24:54 +00:00
beep();
2013-02-03 02:35:04 +00:00
if (prefs_get_boolean(PREF_NOTIFY_MESSAGE))
notify_message(display_from, ui_index);
FREE_SET_NULL(display_from);
2012-02-07 00:08:59 +00:00
}
void
ui_roster_add(const char * const barejid, const char * const name)
{
if (name != NULL) {
cons_show("Roster item added: %s (%s)", barejid, name);
} else {
cons_show("Roster item added: %s", barejid);
}
}
void
ui_roster_remove(const char * const barejid)
{
cons_show("Roster item removed: %s", barejid);
}
void
ui_contact_already_in_group(const char * const contact, const char * const group)
{
cons_show("%s already in group %s", contact, group);
}
void
ui_contact_not_in_group(const char * const contact, const char * const group)
{
cons_show("%s is not currently in group %s", contact, group);
}
2012-10-18 15:18:44 +00:00
void
ui_contact_online(const char * const barejid, const char * const resource,
const char * const show, const char * const status, GDateTime *last_activity)
2012-10-18 15:18:44 +00:00
{
Jid *jid = jid_create_from_bare_and_resource(barejid, resource);
PContact contact = roster_get_contact(barejid);
GString *display_str = g_string_new("");
// use nickname if exists
if (p_contact_name(contact) != NULL) {
g_string_append(display_str, strdup(p_contact_name(contact)));
} else {
g_string_append(display_str, strdup(barejid));
}
// add resource if not default provided by profanity
if (strcmp(jid->resourcepart, "__prof_default") != 0) {
g_string_append(display_str, " (");
g_string_append(display_str, strdup(jid->resourcepart));
g_string_append(display_str, ")");
}
_show_status_string(console, display_str->str, show, status, last_activity,
"++", "online");
2012-10-18 15:18:44 +00:00
int win_index = _find_prof_win_index(barejid);
2012-11-26 00:57:41 +00:00
if (win_index != NUM_WINS) {
2013-04-20 22:39:17 +00:00
ProfWin *window = windows[win_index];
_show_status_string(window, display_str->str, show, status,
last_activity, "++", "online");
2012-11-26 00:57:41 +00:00
}
2012-10-18 15:18:44 +00:00
jid_destroy(jid);
g_string_free(display_str, TRUE);
2012-11-26 00:57:41 +00:00
if (win_index == current_index)
current_win_dirty = TRUE;
2012-11-26 00:57:41 +00:00
}
void
ui_contact_offline(const char * const from, const char * const show,
const char * const status)
{
Jid *jidp = jid_create(from);
PContact contact = roster_get_contact(jidp->barejid);
GString *display_str = g_string_new("");
// use nickname if exists
if (p_contact_name(contact) != NULL) {
g_string_append(display_str, strdup(p_contact_name(contact)));
} else {
g_string_append(display_str, strdup(jidp->barejid));
}
// add resource if not default provided by profanity
if (strcmp(jidp->resourcepart, "__prof_default") != 0) {
g_string_append(display_str, " (");
g_string_append(display_str, strdup(jidp->resourcepart));
g_string_append(display_str, ")");
}
_show_status_string(console, display_str->str, show, status, NULL, "--",
"offline");
2012-11-26 00:57:41 +00:00
2013-05-20 21:51:35 +00:00
int win_index = _find_prof_win_index(jidp->barejid);
2012-11-26 00:57:41 +00:00
if (win_index != NUM_WINS) {
2013-04-20 22:39:17 +00:00
ProfWin *window = windows[win_index];
_show_status_string(window, display_str->str, show, status, NULL, "--",
"offline");
2012-11-26 00:57:41 +00:00
}
jid_destroy(jidp);
g_string_free(display_str, TRUE);
2012-11-26 00:57:41 +00:00
if (win_index == current_index)
current_win_dirty = TRUE;
2012-11-26 00:57:41 +00:00
}
void
ui_disconnected(void)
{
int i;
// show message in all active chats
for (i = 1; i < NUM_WINS; i++) {
if (windows[i] != NULL) {
2013-04-20 22:39:17 +00:00
ProfWin *window = windows[i];
2013-04-21 18:48:56 +00:00
win_print_time(window, '-');
2013-04-20 22:39:17 +00:00
wattron(window->win, COLOUR_ERROR);
wprintw(window->win, "%s\n", "Lost connection.");
wattroff(window->win, COLOUR_ERROR);
2012-11-26 00:57:41 +00:00
// if current win, set current_win_dirty
2012-11-26 00:57:41 +00:00
if (i == current_index) {
current_win_dirty = TRUE;
2012-11-26 00:57:41 +00:00
}
}
2012-10-18 15:18:44 +00:00
}
2013-02-03 23:46:20 +00:00
title_bar_set_status(CONTACT_OFFLINE);
status_bar_clear_message();
status_bar_refresh();
2012-10-18 15:18:44 +00:00
}
2012-11-01 01:21:00 +00:00
void
2013-02-02 23:52:47 +00:00
ui_handle_special_keys(const wint_t * const ch, const char * const inp,
const int size)
2012-11-26 00:57:41 +00:00
{
_win_handle_switch(ch);
_win_handle_page(ch);
2013-02-02 23:52:47 +00:00
if (*ch == KEY_RESIZE) {
ui_resize(*ch, inp, size);
}
2012-11-26 00:57:41 +00:00
}
void
ui_close_connected_win(int index)
{
win_type_t win_type = ui_win_type(index);
if (win_type == WIN_MUC) {
char *room_jid = ui_recipient(index);
presence_leave_chat_room(room_jid);
} else if ((win_type == WIN_CHAT) || (win_type == WIN_PRIVATE)) {
if (prefs_get_boolean(PREF_STATES)) {
char *recipient = ui_recipient(index);
// send <gone/> chat state before closing
if (chat_session_get_recipient_supports(recipient)) {
chat_session_set_gone(recipient);
message_send_gone(recipient);
chat_session_end(recipient);
}
}
}
}
2012-11-26 00:57:41 +00:00
void
ui_switch_win(const int i)
{
2013-04-21 18:44:31 +00:00
ui_current_page_off();
2012-11-26 00:57:41 +00:00
if (windows[i] != NULL) {
current_index = i;
current = windows[current_index];
2013-04-21 18:44:31 +00:00
ui_current_page_off();
2012-11-26 00:57:41 +00:00
current->unread = 0;
if (i == 0) {
title_bar_title();
status_bar_active(0);
} else {
PContact contact = roster_get_contact(current->from);
if (contact != NULL) {
if (p_contact_name(contact) != NULL) {
title_bar_set_recipient(p_contact_name(contact));
} else {
title_bar_set_recipient(current->from);
}
} else {
title_bar_set_recipient(current->from);
}
2012-11-26 00:57:41 +00:00
title_bar_draw();;
status_bar_active(i);
}
}
current_win_dirty = TRUE;
2012-11-26 00:57:41 +00:00
}
void
ui_clear_current(void)
{
2013-04-21 22:57:47 +00:00
werase(current->win);
current_win_dirty = TRUE;
}
2012-11-26 00:57:41 +00:00
void
ui_close_current(void)
2012-11-26 00:57:41 +00:00
{
2013-04-21 18:48:56 +00:00
win_free(current);
2012-11-26 00:57:41 +00:00
windows[current_index] = NULL;
// set it as inactive in the status bar
status_bar_inactive(current_index);
// go back to console window
_set_current(0);
status_bar_active(0);
title_bar_title();
current_win_dirty = TRUE;
2012-11-26 00:57:41 +00:00
}
void
ui_close_win(int index)
{
win_free(windows[index]);
windows[index] = NULL;
status_bar_inactive(index);
if (index == current_index) {
_set_current(0);
}
status_bar_active(0);
title_bar_title();
current_win_dirty = TRUE;
}
void
ui_tidy_wins(void)
{
gboolean tidied = _tidy();
if (tidied) {
cons_show("Windows tidied.");
} else {
cons_show("No tidy needed.");
}
}
void
ui_prune_wins(void)
{
jabber_conn_status_t conn_status = jabber_get_connection_status();
int curr = 0;
gboolean pruned = FALSE;
for (curr = 1; curr <= 9; curr++) {
if (ui_win_exists(curr)) {
win_type_t win_type = windows[curr]->type;
if ((ui_win_unread(curr) == 0) && (win_type != WIN_MUC)) {
if (conn_status == JABBER_CONNECTED) {
ui_close_connected_win(curr);
}
ui_close_win(curr);
pruned = TRUE;
}
}
}
_tidy();
if (pruned) {
cons_show("Windows pruned.");
} else {
cons_show("No prune needed.");
}
}
win_type_t
ui_current_win_type(void)
2013-01-11 01:05:59 +00:00
{
return current->type;
2012-11-26 00:57:41 +00:00
}
int
ui_current_win_index(void)
{
return current_index;
}
win_type_t
ui_win_type(int index)
{
return windows[index]->type;
}
char *
ui_recipient(int index)
{
return strdup(windows[index]->from);
}
2012-11-26 00:57:41 +00:00
char *
2013-04-21 18:44:31 +00:00
ui_current_recipient(void)
2012-11-26 00:57:41 +00:00
{
return strdup(current->from);
}
void
2013-04-21 18:44:31 +00:00
ui_current_print_line(const char * const msg, ...)
2012-11-26 00:57:41 +00:00
{
2012-11-27 21:53:56 +00:00
va_list arg;
va_start(arg, msg);
GString *fmt_msg = g_string_new(NULL);
g_string_vprintf(fmt_msg, msg, arg);
2013-04-21 18:48:56 +00:00
win_print_time(current, '-');
2012-11-27 21:53:56 +00:00
wprintw(current->win, "%s\n", fmt_msg->str);
g_string_free(fmt_msg, TRUE);
va_end(arg);
2012-11-26 00:57:41 +00:00
current_win_dirty = TRUE;
2012-11-26 00:57:41 +00:00
}
void
2013-04-21 18:44:31 +00:00
ui_current_error_line(const char * const msg)
2012-11-26 00:57:41 +00:00
{
2013-04-21 18:48:56 +00:00
win_print_time(current, '-');
2013-04-20 22:39:17 +00:00
wattron(current->win, COLOUR_ERROR);
wprintw(current->win, "%s\n", msg);
wattroff(current->win, COLOUR_ERROR);
2012-11-26 00:57:41 +00:00
current_win_dirty = TRUE;
2012-11-26 00:57:41 +00:00
}
void
2013-04-21 18:44:31 +00:00
ui_current_page_off(void)
2012-11-26 00:57:41 +00:00
{
int rows = getmaxy(stdscr);
ProfWin *window = windows[current_index];
window->paged = 0;
int y = getcury(window->win);
int size = rows - 3;
window->y_pos = y - (size - 1);
if (window->y_pos < 0)
window->y_pos = 0;
current_win_dirty = TRUE;
2012-11-26 00:57:41 +00:00
}
void
2013-04-21 18:44:31 +00:00
ui_print_error_from_recipient(const char * const from, const char *err_msg)
2012-11-01 01:21:00 +00:00
{
int win_index;
2013-04-20 22:39:17 +00:00
ProfWin *window;
2012-11-01 01:21:00 +00:00
2012-11-26 00:57:41 +00:00
if (from == NULL || err_msg == NULL)
2012-11-01 01:21:00 +00:00
return;
win_index = _find_prof_win_index(from);
// chat window exists
if (win_index < NUM_WINS) {
2013-04-20 22:39:17 +00:00
window = windows[win_index];
2013-04-21 18:48:56 +00:00
win_print_time(window, '-');
2013-04-20 22:39:17 +00:00
_win_show_error_msg(window->win, err_msg);
if (win_index == current_index) {
current_win_dirty = TRUE;
2012-11-01 01:21:00 +00:00
}
}
}
2012-11-11 12:00:21 +00:00
void
2013-04-21 18:44:31 +00:00
ui_print_system_msg_from_recipient(const char * const from, const char *message)
2012-11-11 12:00:21 +00:00
{
int win_index;
2013-04-20 22:39:17 +00:00
ProfWin *window;
2012-11-11 12:00:21 +00:00
char from_cpy[strlen(from) + 1];
char *bare_jid;
if (from == NULL || message == NULL)
return;
strcpy(from_cpy, from);
bare_jid = strtok(from_cpy, "/");
win_index = _find_prof_win_index(bare_jid);
if (win_index == NUM_WINS) {
2012-11-12 23:05:22 +00:00
win_index = _new_prof_win(bare_jid, WIN_CHAT);
2012-11-11 12:00:21 +00:00
status_bar_active(win_index);
current_win_dirty = TRUE;
2012-11-11 12:00:21 +00:00
}
2013-04-20 22:39:17 +00:00
window = windows[win_index];
2012-11-11 12:00:21 +00:00
2013-04-21 18:48:56 +00:00
win_print_time(window, '-');
2013-04-20 22:39:17 +00:00
wprintw(window->win, "*%s %s\n", bare_jid, message);
2012-11-11 12:00:21 +00:00
// this is the current window
if (win_index == current_index) {
current_win_dirty = TRUE;
2012-11-11 12:00:21 +00:00
}
}
2012-11-26 00:57:41 +00:00
void
2013-05-20 21:51:35 +00:00
ui_recipient_gone(const char * const barejid)
{
2012-11-26 00:57:41 +00:00
int win_index;
2013-04-20 22:39:17 +00:00
ProfWin *window;
2013-05-20 21:51:35 +00:00
if (barejid == NULL)
2012-11-26 00:57:41 +00:00
return;
2013-05-20 21:51:35 +00:00
PContact contact = roster_get_contact(barejid);
const char * display_usr = NULL;
if (p_contact_name(contact) != NULL) {
display_usr = p_contact_name(contact);
} else {
display_usr = barejid;
}
win_index = _find_prof_win_index(barejid);
2012-11-26 00:57:41 +00:00
// chat window exists
if (win_index < NUM_WINS) {
2013-04-20 22:39:17 +00:00
window = windows[win_index];
2013-05-20 21:51:35 +00:00
win_print_time(window, '!');
2013-04-20 22:39:17 +00:00
wattron(window->win, COLOUR_GONE);
2013-05-20 21:51:35 +00:00
wprintw(window->win, "<- %s ", display_usr);
2013-04-20 22:39:17 +00:00
wprintw(window->win, "has left the conversation.");
wprintw(window->win, "\n");
wattroff(window->win, COLOUR_GONE);
2012-11-26 00:57:41 +00:00
if (win_index == current_index) {
current_win_dirty = TRUE;
2012-11-26 00:57:41 +00:00
}
}
2012-06-28 22:29:46 +00:00
}
void
2013-04-21 18:44:31 +00:00
ui_new_chat_win(const char * const to)
{
// if the contact is offline, show a message
PContact contact = roster_get_contact(to);
int win_index = _find_prof_win_index(to);
2013-04-20 22:39:17 +00:00
ProfWin *window = NULL;
// create new window
if (win_index == NUM_WINS) {
Jid *jid = jid_create(to);
if (muc_room_is_active(jid)) {
win_index = _new_prof_win(to, WIN_PRIVATE);
} else {
win_index = _new_prof_win(to, WIN_CHAT);
}
jid_destroy(jid);
2013-04-20 22:39:17 +00:00
window = windows[win_index];
2013-02-03 02:35:04 +00:00
if (prefs_get_boolean(PREF_CHLOG) && prefs_get_boolean(PREF_HISTORY)) {
2013-04-20 22:39:17 +00:00
_win_show_history(window->win, win_index, to);
}
if (contact != NULL) {
if (strcmp(p_contact_presence(contact), "offline") == 0) {
const char const *show = p_contact_presence(contact);
const char const *status = p_contact_status(contact);
2013-04-20 22:39:17 +00:00
_show_status_string(window, to, show, status, NULL, "--", "offline");
}
}
// use existing window
} else {
2013-04-20 22:39:17 +00:00
window = windows[win_index];
}
ui_switch_win(win_index);
}
void
ui_create_duck_win(void)
{
int win_index = _new_prof_win("DuckDuckGo search", WIN_DUCK);
ui_switch_win(win_index);
win_print_time(windows[win_index], '-');
wprintw(windows[win_index]->win, "Type ':help' to find out more.\n");
}
void
ui_open_duck_win(void)
{
int win_index = _find_prof_win_index("DuckDuckGo search");
if (win_index != NUM_WINS) {
ui_switch_win(win_index);
}
}
void
ui_duck(const char * const query)
{
int win_index = _find_prof_win_index("DuckDuckGo search");
if (win_index != NUM_WINS) {
win_print_time(windows[win_index], '-');
wprintw(windows[win_index]->win, "\n");
win_print_time(windows[win_index], '-');
wattron(windows[win_index]->win, COLOUR_ME);
wprintw(windows[win_index]->win, "Query : ");
wattroff(windows[win_index]->win, COLOUR_ME);
wprintw(windows[win_index]->win, query);
wprintw(windows[win_index]->win, "\n");
}
}
void
ui_duck_result(const char * const result)
{
int win_index = _find_prof_win_index("DuckDuckGo search");
if (win_index != NUM_WINS) {
win_print_time(windows[win_index], '-');
wattron(windows[win_index]->win, COLOUR_THEM);
wprintw(windows[win_index]->win, "Result : ");
wattroff(windows[win_index]->win, COLOUR_THEM);
2013-05-06 00:09:10 +00:00
glong offset = 0;
while (offset < g_utf8_strlen(result, -1)) {
gchar *ptr = g_utf8_offset_to_pointer(result, offset);
gunichar unichar = g_utf8_get_char(ptr);
if (unichar == '\n') {
wprintw(windows[win_index]->win, "\n");
win_print_time(windows[win_index], '-');
} else {
2013-05-06 00:09:10 +00:00
gchar *string = g_ucs4_to_utf8(&unichar, 1, NULL, NULL, NULL);
2013-05-06 00:22:34 +00:00
if (string != NULL) {
wprintw(windows[win_index]->win, string);
g_free(string);
}
}
2013-05-06 00:09:10 +00:00
offset++;
}
wprintw(windows[win_index]->win, "\n");
}
}
2012-07-24 22:19:48 +00:00
void
2013-04-21 18:44:31 +00:00
ui_outgoing_msg(const char * const from, const char * const to,
2012-03-09 01:06:55 +00:00
const char * const message)
2012-02-07 00:37:42 +00:00
{
// if the contact is offline, show a message
PContact contact = roster_get_contact(to);
int win_index = _find_prof_win_index(to);
2013-04-20 22:39:17 +00:00
ProfWin *window = NULL;
// create new window
if (win_index == NUM_WINS) {
2013-01-13 03:14:36 +00:00
Jid *jid = jid_create(to);
2013-01-13 03:14:36 +00:00
if (muc_room_is_active(jid)) {
win_index = _new_prof_win(to, WIN_PRIVATE);
} else {
win_index = _new_prof_win(to, WIN_CHAT);
}
2013-01-13 03:14:36 +00:00
jid_destroy(jid);
2013-04-20 22:39:17 +00:00
window = windows[win_index];
2013-02-03 02:35:04 +00:00
if (prefs_get_boolean(PREF_CHLOG) && prefs_get_boolean(PREF_HISTORY)) {
2013-04-20 22:39:17 +00:00
_win_show_history(window->win, win_index, to);
}
2012-10-04 22:55:15 +00:00
if (contact != NULL) {
2012-10-28 20:52:30 +00:00
if (strcmp(p_contact_presence(contact), "offline") == 0) {
const char const *show = p_contact_presence(contact);
2012-10-04 22:55:15 +00:00
const char const *status = p_contact_status(contact);
2013-04-20 22:39:17 +00:00
_show_status_string(window, to, show, status, NULL, "--", "offline");
2012-10-04 22:55:15 +00:00
}
}
// use existing window
} else {
2013-04-20 22:39:17 +00:00
window = windows[win_index];
}
2013-04-21 18:48:56 +00:00
win_print_time(window, '-');
2012-10-28 02:52:52 +00:00
if (strncmp(message, "/me ", 4) == 0) {
2013-04-20 22:39:17 +00:00
wattron(window->win, COLOUR_ME);
wprintw(window->win, "*%s ", from);
wprintw(window->win, "%s", message + 4);
wprintw(window->win, "\n");
wattroff(window->win, COLOUR_ME);
2012-10-28 02:52:52 +00:00
} else {
2013-04-20 22:39:17 +00:00
_win_show_user(window->win, from, 0);
_win_show_message(window->win, message);
2012-10-28 02:52:52 +00:00
}
2012-11-26 00:57:41 +00:00
ui_switch_win(win_index);
2012-02-07 00:37:42 +00:00
}
2012-11-05 21:36:32 +00:00
void
2013-04-21 18:44:31 +00:00
ui_room_join(Jid *jid)
2012-11-05 21:36:32 +00:00
{
2013-01-13 03:14:36 +00:00
int win_index = _find_prof_win_index(jid->barejid);
2012-11-05 21:36:32 +00:00
// create new window
if (win_index == NUM_WINS) {
2013-01-13 03:14:36 +00:00
win_index = _new_prof_win(jid->barejid, WIN_MUC);
2012-11-05 21:36:32 +00:00
}
2012-11-26 00:57:41 +00:00
ui_switch_win(win_index);
2012-11-05 21:36:32 +00:00
}
void
2013-04-21 18:44:31 +00:00
ui_room_roster(const char * const room, GList *roster, const char * const presence)
2012-11-05 21:36:32 +00:00
{
2012-11-07 22:46:20 +00:00
int win_index = _find_prof_win_index(room);
2013-04-20 22:39:17 +00:00
ProfWin *window = windows[win_index];
2012-11-05 21:36:32 +00:00
2013-04-21 18:48:56 +00:00
win_print_time(window, '!');
if ((roster == NULL) || (g_list_length(roster) == 0)) {
2013-04-20 22:39:17 +00:00
wattron(window->win, COLOUR_ROOMINFO);
2013-01-15 23:17:07 +00:00
if (presence == NULL) {
2013-04-20 22:39:17 +00:00
wprintw(window->win, "Room is empty.\n");
2013-01-15 23:17:07 +00:00
} else {
2013-05-30 21:31:43 +00:00
wprintw(window->win, "No participants %s.\n", presence);
2013-01-15 23:17:07 +00:00
}
2013-04-20 22:39:17 +00:00
wattroff(window->win, COLOUR_ROOMINFO);
} else {
2013-05-30 21:31:43 +00:00
int length = g_list_length(roster);
2013-04-20 22:39:17 +00:00
wattron(window->win, COLOUR_ROOMINFO);
2013-01-15 23:17:07 +00:00
if (presence == NULL) {
2013-05-30 21:31:43 +00:00
length++;
wprintw(window->win, "%d participants: ", length);
wattroff(window->win, COLOUR_ROOMINFO);
wattron(window->win, COLOUR_ONLINE);
wprintw(window->win, "%s", muc_get_room_nick(room));
wprintw(window->win, ", ");
2013-01-15 23:17:07 +00:00
} else {
2013-05-30 21:31:43 +00:00
wprintw(window->win, "%d %s: ", length, presence);
wattroff(window->win, COLOUR_ROOMINFO);
wattron(window->win, COLOUR_ONLINE);
2013-01-15 23:17:07 +00:00
}
2012-11-07 22:46:20 +00:00
while (roster != NULL) {
PContact member = roster->data;
2013-02-09 23:50:41 +00:00
const char const *nick = p_contact_barejid(member);
const char const *show = p_contact_presence(member);
2013-04-21 18:48:56 +00:00
win_presence_colour_on(window, show);
2013-04-20 22:39:17 +00:00
wprintw(window->win, "%s", nick);
2013-04-21 18:48:56 +00:00
win_presence_colour_off(window, show);
if (roster->next != NULL) {
2013-04-20 22:39:17 +00:00
wprintw(window->win, ", ");
}
roster = g_list_next(roster);
2012-11-07 22:46:20 +00:00
}
2013-04-20 22:39:17 +00:00
wprintw(window->win, "\n");
wattroff(window->win, COLOUR_ONLINE);
}
2012-11-05 21:36:32 +00:00
if (win_index == current_index)
current_win_dirty = TRUE;
2012-11-05 21:36:32 +00:00
}
2012-11-08 00:05:32 +00:00
void
2013-04-21 18:44:31 +00:00
ui_room_member_offline(const char * const room, const char * const nick)
2012-11-08 00:05:32 +00:00
{
int win_index = _find_prof_win_index(room);
2013-04-20 22:39:17 +00:00
ProfWin *window = windows[win_index];
2012-11-08 00:05:32 +00:00
2013-04-21 18:48:56 +00:00
win_print_time(window, '!');
2013-04-20 22:39:17 +00:00
wattron(window->win, COLOUR_OFFLINE);
wprintw(window->win, "<- %s has left the room.\n", nick);
wattroff(window->win, COLOUR_OFFLINE);
2012-11-08 00:05:32 +00:00
if (win_index == current_index)
current_win_dirty = TRUE;
2012-11-08 00:05:32 +00:00
}
void
2013-04-21 18:44:31 +00:00
ui_room_member_online(const char * const room, const char * const nick,
2012-11-18 21:46:58 +00:00
const char * const show, const char * const status)
2012-11-08 00:05:32 +00:00
{
int win_index = _find_prof_win_index(room);
2013-04-20 22:39:17 +00:00
ProfWin *window = windows[win_index];
2012-11-08 00:05:32 +00:00
2013-04-21 18:48:56 +00:00
win_print_time(window, '!');
2013-04-20 22:39:17 +00:00
wattron(window->win, COLOUR_ONLINE);
wprintw(window->win, "-> %s has joined the room.\n", nick);
wattroff(window->win, COLOUR_ONLINE);
2012-11-08 00:05:32 +00:00
if (win_index == current_index)
current_win_dirty = TRUE;
2012-11-08 00:05:32 +00:00
}
2012-11-18 21:46:58 +00:00
void
2013-04-21 18:44:31 +00:00
ui_room_member_presence(const char * const room, const char * const nick,
2012-11-19 00:26:31 +00:00
const char * const show, const char * const status)
{
int win_index = _find_prof_win_index(room);
if (win_index != NUM_WINS) {
2013-04-20 22:39:17 +00:00
ProfWin *window = windows[win_index];
_show_status_string(window, nick, show, status, NULL, "++", "online");
2012-11-19 00:26:31 +00:00
}
if (win_index == current_index)
current_win_dirty = TRUE;
2012-11-19 00:26:31 +00:00
}
void
2013-04-21 18:44:31 +00:00
ui_room_member_nick_change(const char * const room,
2012-11-18 21:46:58 +00:00
const char * const old_nick, const char * const nick)
{
int win_index = _find_prof_win_index(room);
2013-04-20 22:39:17 +00:00
ProfWin *window = windows[win_index];
2012-11-18 21:46:58 +00:00
2013-04-21 18:48:56 +00:00
win_print_time(window, '!');
2013-04-20 22:39:17 +00:00
wattron(window->win, COLOUR_THEM);
wprintw(window->win, "** %s is now known as %s\n", old_nick, nick);
wattroff(window->win, COLOUR_THEM);
2012-11-18 21:46:58 +00:00
if (win_index == current_index)
current_win_dirty = TRUE;
}
void
2013-04-21 18:44:31 +00:00
ui_room_nick_change(const char * const room, const char * const nick)
{
int win_index = _find_prof_win_index(room);
2013-04-20 22:39:17 +00:00
ProfWin *window = windows[win_index];
2012-11-18 21:46:58 +00:00
2013-04-21 18:48:56 +00:00
win_print_time(window, '!');
2013-04-20 22:39:17 +00:00
wattron(window->win, COLOUR_ME);
wprintw(window->win, "** You are now known as %s\n", nick);
wattroff(window->win, COLOUR_ME);
if (win_index == current_index)
current_win_dirty = TRUE;
2012-11-18 21:46:58 +00:00
}
2012-11-05 22:21:03 +00:00
void
2013-04-21 18:44:31 +00:00
ui_room_history(const char * const room_jid, const char * const nick,
2012-11-05 22:21:03 +00:00
GTimeVal tv_stamp, const char * const message)
{
int win_index = _find_prof_win_index(room_jid);
WINDOW *win = windows[win_index]->win;
2012-11-05 22:21:03 +00:00
GDateTime *time = g_date_time_new_from_timeval_utc(&tv_stamp);
gchar *date_fmt = g_date_time_format(time, "%H:%M:%S");
wprintw(win, "%s - ", date_fmt);
g_date_time_unref(time);
g_free(date_fmt);
2012-11-10 04:18:34 +00:00
if (strncmp(message, "/me ", 4) == 0) {
wprintw(win, "*%s ", nick);
waddstr(win, message + 4);
2012-11-10 04:18:34 +00:00
wprintw(win, "\n");
} else {
wprintw(win, "%s: ", nick);
_win_show_message(win, message);
}
2012-11-05 22:21:03 +00:00
if (win_index == current_index)
current_win_dirty = TRUE;
2012-11-05 22:21:03 +00:00
}
2012-11-05 22:28:06 +00:00
void
2013-04-21 18:44:31 +00:00
ui_room_message(const char * const room_jid, const char * const nick,
2012-11-05 22:28:06 +00:00
const char * const message)
{
int win_index = _find_prof_win_index(room_jid);
2013-04-20 22:39:17 +00:00
ProfWin *window = windows[win_index];
2012-11-05 22:28:06 +00:00
2013-04-21 18:48:56 +00:00
win_print_time(window, '-');
2013-01-12 01:34:09 +00:00
if (strcmp(nick, muc_get_room_nick(room_jid)) != 0) {
2012-11-10 04:18:34 +00:00
if (strncmp(message, "/me ", 4) == 0) {
2013-04-20 22:39:17 +00:00
wattron(window->win, COLOUR_THEM);
wprintw(window->win, "*%s ", nick);
waddstr(window->win, message + 4);
2013-04-20 22:39:17 +00:00
wprintw(window->win, "\n");
wattroff(window->win, COLOUR_THEM);
2012-11-10 04:18:34 +00:00
} else {
2013-04-20 22:39:17 +00:00
_win_show_user(window->win, nick, 1);
_win_show_message(window->win, message);
2012-11-10 04:18:34 +00:00
}
2012-11-05 23:24:29 +00:00
} else {
2012-11-10 04:18:34 +00:00
if (strncmp(message, "/me ", 4) == 0) {
2013-04-20 22:39:17 +00:00
wattron(window->win, COLOUR_ME);
wprintw(window->win, "*%s ", nick);
waddstr(window->win, message + 4);
2013-04-20 22:39:17 +00:00
wprintw(window->win, "\n");
wattroff(window->win, COLOUR_ME);
2012-11-10 04:18:34 +00:00
} else {
2013-04-20 22:39:17 +00:00
_win_show_user(window->win, nick, 0);
_win_show_message(window->win, message);
2012-11-10 04:18:34 +00:00
}
2012-11-05 23:24:29 +00:00
}
2012-11-05 22:28:06 +00:00
// currently in groupchat window
if (win_index == current_index) {
status_bar_active(win_index);
current_win_dirty = TRUE;
// not currenlty on groupchat window
} else {
status_bar_new(win_index);
cons_show_incoming_message(nick, win_index);
if (current_index == 0) {
current_win_dirty = TRUE;
}
2013-01-12 01:34:09 +00:00
if (strcmp(nick, muc_get_room_nick(room_jid)) != 0) {
2013-02-03 02:35:04 +00:00
if (prefs_get_boolean(PREF_FLASH)) {
2012-11-05 23:24:29 +00:00
flash();
}
}
windows[win_index]->unread++;
}
int ui_index = win_index + 1;
if (ui_index == 10) {
ui_index = 0;
}
2013-01-12 01:34:09 +00:00
if (strcmp(nick, muc_get_room_nick(room_jid)) != 0) {
2013-02-03 02:35:04 +00:00
if (prefs_get_boolean(PREF_BEEP)) {
2012-11-05 23:24:29 +00:00
beep();
}
2013-02-03 02:35:04 +00:00
if (prefs_get_boolean(PREF_NOTIFY_MESSAGE)) {
Jid *jidp = jid_create(room_jid);
notify_room_message(nick, jidp->localpart, ui_index);
jid_destroy(jidp);
2012-11-05 23:24:29 +00:00
}
}
2012-11-05 22:28:06 +00:00
}
2012-11-10 03:30:27 +00:00
void
2013-04-21 18:44:31 +00:00
ui_room_subject(const char * const room_jid, const char * const subject)
2012-11-10 03:30:27 +00:00
{
int win_index = _find_prof_win_index(room_jid);
2013-04-20 22:39:17 +00:00
ProfWin *window = windows[win_index];
2012-11-10 03:30:27 +00:00
2013-04-21 18:48:56 +00:00
win_print_time(window, '!');
2013-04-20 22:39:17 +00:00
wattron(window->win, COLOUR_ROOMINFO);
wprintw(window->win, "Room subject: ");
wattroff(window->win, COLOUR_ROOMINFO);
wprintw(window->win, "%s\n", subject);
2012-11-10 03:30:27 +00:00
// currently in groupchat window
if (win_index == current_index) {
2012-11-10 03:30:27 +00:00
status_bar_active(win_index);
current_win_dirty = TRUE;
2012-11-10 03:30:27 +00:00
// not currenlty on groupchat window
} else {
status_bar_new(win_index);
}
}
2012-11-19 22:15:53 +00:00
void
2013-04-21 18:44:31 +00:00
ui_room_broadcast(const char * const room_jid, const char * const message)
2012-11-19 22:15:53 +00:00
{
int win_index = _find_prof_win_index(room_jid);
2013-04-20 22:39:17 +00:00
ProfWin *window = windows[win_index];
2012-11-19 22:15:53 +00:00
2013-04-21 18:48:56 +00:00
win_print_time(window, '!');
2013-04-20 22:39:17 +00:00
wattron(window->win, COLOUR_ROOMINFO);
wprintw(window->win, "Room message: ");
wattroff(window->win, COLOUR_ROOMINFO);
wprintw(window->win, "%s\n", message);
2012-11-19 22:15:53 +00:00
// currently in groupchat window
if (win_index == current_index) {
2012-11-19 22:15:53 +00:00
status_bar_active(win_index);
current_win_dirty = TRUE;
2012-11-19 22:15:53 +00:00
// not currenlty on groupchat window
} else {
status_bar_new(win_index);
}
}
void
2013-04-21 18:44:31 +00:00
ui_status(void)
{
2013-04-21 18:44:31 +00:00
char *recipient = ui_current_recipient();
PContact pcontact = roster_get_contact(recipient);
if (pcontact != NULL) {
2013-04-21 18:48:56 +00:00
win_show_contact(current, pcontact);
} else {
2013-04-21 18:44:31 +00:00
ui_current_print_line("Error getting contact info.");
}
}
void
2013-04-21 18:44:31 +00:00
ui_status_private(void)
{
2013-04-21 18:44:31 +00:00
Jid *jid = jid_create(ui_current_recipient());
PContact pcontact = muc_get_participant(jid->barejid, jid->resourcepart);
if (pcontact != NULL) {
2013-04-21 18:48:56 +00:00
win_show_contact(current, pcontact);
} else {
2013-04-21 18:44:31 +00:00
ui_current_print_line("Error getting contact info.");
}
jid_destroy(jid);
}
void
2013-04-21 18:44:31 +00:00
ui_status_room(const char * const contact)
{
2013-04-21 18:44:31 +00:00
PContact pcontact = muc_get_participant(ui_current_recipient(), contact);
if (pcontact != NULL) {
2013-04-21 18:48:56 +00:00
win_show_contact(current, pcontact);
} else {
2013-04-21 18:44:31 +00:00
ui_current_print_line("No such participant \"%s\" in room.", contact);
}
}
2013-04-21 19:17:06 +00:00
gint
ui_unread(void)
2012-11-26 00:57:41 +00:00
{
2013-04-21 19:17:06 +00:00
int i;
gint result = 0;
for (i = 0; i < NUM_WINS; i++) {
if (windows[i] != NULL) {
result += windows[i]->unread;
}
2012-11-26 00:57:41 +00:00
}
2013-04-21 19:17:06 +00:00
return result;
2012-11-26 00:57:41 +00:00
}
int
ui_win_unread(int index)
{
if (windows[index] != NULL) {
return windows[index]->unread;
} else {
return 0;
}
}
2013-04-21 16:30:04 +00:00
static void
_ui_draw_win_title(void)
{
char new_win_title[100];
GString *version_str = g_string_new("");
if (prefs_get_boolean(PREF_TITLEBARVERSION)) {
g_string_append(version_str, " ");
g_string_append(version_str, PACKAGE_VERSION);
if (strcmp(PACKAGE_STATUS, "development") == 0) {
g_string_append(version_str, "dev");
}
}
jabber_conn_status_t status = jabber_get_connection_status();
if (status == JABBER_CONNECTED) {
2013-05-21 21:00:42 +00:00
const char * const jid = jabber_get_fulljid();
2013-04-21 19:17:06 +00:00
gint unread = ui_unread();
2013-04-21 16:30:04 +00:00
if (unread != 0) {
snprintf(new_win_title, sizeof(new_win_title), "%c]0;%s%s (%d) - %s%c", '\033', "Profanity", version_str->str, unread, jid, '\007');
} else {
snprintf(new_win_title, sizeof(new_win_title), "%c]0;%s%s - %s%c", '\033', "Profanity", version_str->str, jid, '\007');
}
} else {
snprintf(new_win_title, sizeof(new_win_title), "%c]0;%s%s%c", '\033', "Profanity", version_str->str, '\007');
}
g_string_free(version_str, TRUE);
if (g_strcmp0(win_title, new_win_title) != 0) {
// print to x-window title bar
printf("%s", new_win_title);
if (win_title != NULL) {
free(win_title);
}
win_title = strdup(new_win_title);
}
}
2012-07-24 22:19:48 +00:00
static int
_find_prof_win_index(const char * const contact)
2012-02-13 00:53:10 +00:00
{
int i;
for (i = 1; i < NUM_WINS; i++) {
if ((windows[i] != NULL) && (strcmp(windows[i]->from, contact) == 0)) {
2012-02-13 00:53:10 +00:00
break;
}
}
2012-02-13 00:53:10 +00:00
2012-03-01 01:02:10 +00:00
return i;
2012-03-01 00:57:35 +00:00
}
2012-02-13 00:53:10 +00:00
2012-07-24 22:19:48 +00:00
static int
2012-11-12 23:05:22 +00:00
_new_prof_win(const char * const contact, win_type_t type)
2012-03-01 00:57:35 +00:00
{
int i;
for (i = 1; i < NUM_WINS; i++) {
if (windows[i] == NULL) {
2012-03-01 00:57:35 +00:00
break;
}
}
2012-03-01 00:57:35 +00:00
if (i != NUM_WINS) {
int cols = getmaxx(stdscr);
2013-04-21 18:48:56 +00:00
windows[i] = win_create(contact, cols, type);
return i;
} else {
return 0;
}
2012-02-13 00:53:10 +00:00
}
2012-07-24 22:19:48 +00:00
static void
_win_show_user(WINDOW *win, const char * const user, const int colour)
2012-02-26 18:35:40 +00:00
{
if (colour)
2012-11-21 00:21:58 +00:00
wattron(win, COLOUR_THEM);
else
2012-11-21 00:21:58 +00:00
wattron(win, COLOUR_ME);
2012-03-01 00:34:54 +00:00
wprintw(win, "%s: ", user);
2012-02-26 18:35:40 +00:00
if (colour)
2012-11-21 00:21:58 +00:00
wattroff(win, COLOUR_THEM);
else
2012-11-21 00:21:58 +00:00
wattroff(win, COLOUR_ME);
2012-02-26 18:35:40 +00:00
}
2012-07-24 22:19:48 +00:00
static void
_win_show_message(WINDOW *win, const char * const message)
2012-02-29 23:46:25 +00:00
{
waddstr(win, message);
wprintw(win, "\n");
2012-02-29 23:46:25 +00:00
}
2012-10-18 15:18:44 +00:00
static void
_win_show_error_msg(WINDOW *win, const char * const message)
{
2012-11-21 00:21:58 +00:00
wattron(win, COLOUR_ERROR);
2012-10-18 15:18:44 +00:00
wprintw(win, "%s\n", message);
2012-11-21 00:21:58 +00:00
wattroff(win, COLOUR_ERROR);
2012-10-18 15:18:44 +00:00
}
2012-07-24 22:19:48 +00:00
static void
_current_window_refresh(void)
2012-02-13 00:59:04 +00:00
{
2012-03-05 00:06:24 +00:00
int rows, cols;
getmaxyx(stdscr, rows, cols);
prefresh(current->win, current->y_pos, 0, 1, 0, rows-3, cols-1);
2012-02-13 00:59:04 +00:00
}
2012-07-24 22:19:48 +00:00
void
_win_resize_all(void)
2012-04-22 21:35:54 +00:00
{
int rows, cols;
getmaxyx(stdscr, rows, cols);
// only make the pads bigger, to avoid data loss on cropping
if (cols > max_cols) {
max_cols = cols;
int i;
for (i = 0; i < NUM_WINS; i++) {
if (windows[i] != NULL) {
wresize(windows[i]->win, PAD_SIZE, cols);
}
}
}
prefresh(current->win, current->y_pos, 0, 1, 0, rows-3, cols-1);
2012-04-22 21:35:54 +00:00
}
2012-07-24 22:19:48 +00:00
static void
2013-04-20 22:39:17 +00:00
_show_status_string(ProfWin *window, const char * const from,
2012-12-09 03:07:33 +00:00
const char * const show, const char * const status,
GDateTime *last_activity, const char * const pre,
2012-03-09 01:06:55 +00:00
const char * const default_show)
{
2013-04-20 22:39:17 +00:00
WINDOW *win = window->win;
2013-02-03 02:35:04 +00:00
if (!prefs_get_boolean(PREF_STATUSES))
return;
2013-04-21 18:48:56 +00:00
win_print_time(window, '-');
2012-08-19 00:17:48 +00:00
if (show != NULL) {
if (strcmp(show, "away") == 0) {
wattron(win, COLOUR_AWAY);
} else if (strcmp(show, "chat") == 0) {
wattron(win, COLOUR_CHAT);
} else if (strcmp(show, "dnd") == 0) {
wattron(win, COLOUR_DND);
} else if (strcmp(show, "xa") == 0) {
wattron(win, COLOUR_XA);
} else if (strcmp(show, "online") == 0) {
wattron(win, COLOUR_ONLINE);
} else {
wattron(win, COLOUR_OFFLINE);
2012-08-19 00:17:48 +00:00
}
} else if (strcmp(default_show, "online") == 0) {
2012-08-18 23:58:08 +00:00
wattron(win, COLOUR_ONLINE);
2012-03-01 01:37:09 +00:00
} else {
2012-08-18 23:58:08 +00:00
wattron(win, COLOUR_OFFLINE);
}
2012-03-01 01:37:09 +00:00
wprintw(win, "%s %s", pre, from);
if (show != NULL)
2012-03-01 01:37:09 +00:00
wprintw(win, " is %s", show);
else
2012-03-01 01:37:09 +00:00
wprintw(win, " is %s", default_show);
2012-12-09 03:07:33 +00:00
if (last_activity != NULL) {
GDateTime *now = g_date_time_new_now_local();
GTimeSpan span = g_date_time_difference(now, last_activity);
wprintw(win, ", idle ");
int hours = span / G_TIME_SPAN_HOUR;
span = span - hours * G_TIME_SPAN_HOUR;
if (hours > 0) {
wprintw(win, "%dh", hours);
}
int minutes = span / G_TIME_SPAN_MINUTE;
span = span - minutes * G_TIME_SPAN_MINUTE;
wprintw(win, "%dm", minutes);
int seconds = span / G_TIME_SPAN_SECOND;
wprintw(win, "%ds", seconds);
}
if (status != NULL)
2012-03-01 01:37:09 +00:00
wprintw(win, ", \"%s\"", status);
2012-03-01 01:37:09 +00:00
wprintw(win, "\n");
if (show != NULL) {
2012-08-19 00:17:48 +00:00
if (strcmp(show, "away") == 0) {
wattroff(win, COLOUR_AWAY);
} else if (strcmp(show, "chat") == 0) {
wattroff(win, COLOUR_CHAT);
} else if (strcmp(show, "dnd") == 0) {
wattroff(win, COLOUR_DND);
} else if (strcmp(show, "xa") == 0) {
wattroff(win, COLOUR_XA);
} else if (strcmp(show, "online") == 0) {
wattroff(win, COLOUR_ONLINE);
} else {
wattroff(win, COLOUR_OFFLINE);
2012-08-19 00:17:48 +00:00
}
} else if (strcmp(default_show, "online") == 0) {
2012-08-18 23:58:08 +00:00
wattroff(win, COLOUR_ONLINE);
2012-03-01 01:37:09 +00:00
} else {
2012-08-18 23:58:08 +00:00
wattroff(win, COLOUR_OFFLINE);
2012-03-01 01:37:09 +00:00
}
}
2012-07-24 22:19:48 +00:00
static void
2013-01-03 00:16:39 +00:00
_win_handle_switch(const wint_t * const ch)
2012-03-10 20:46:30 +00:00
{
if (*ch == KEY_F(1)) {
2012-11-26 00:57:41 +00:00
ui_switch_win(0);
2012-03-10 20:46:30 +00:00
} else if (*ch == KEY_F(2)) {
2012-11-26 00:57:41 +00:00
ui_switch_win(1);
2012-03-10 20:46:30 +00:00
} else if (*ch == KEY_F(3)) {
2012-11-26 00:57:41 +00:00
ui_switch_win(2);
2012-03-10 20:46:30 +00:00
} else if (*ch == KEY_F(4)) {
2012-11-26 00:57:41 +00:00
ui_switch_win(3);
2012-03-10 20:46:30 +00:00
} else if (*ch == KEY_F(5)) {
2012-11-26 00:57:41 +00:00
ui_switch_win(4);
2012-03-10 20:46:30 +00:00
} else if (*ch == KEY_F(6)) {
2012-11-26 00:57:41 +00:00
ui_switch_win(5);
2012-03-10 20:46:30 +00:00
} else if (*ch == KEY_F(7)) {
2012-11-26 00:57:41 +00:00
ui_switch_win(6);
2012-03-10 20:46:30 +00:00
} else if (*ch == KEY_F(8)) {
2012-11-26 00:57:41 +00:00
ui_switch_win(7);
2012-03-10 20:46:30 +00:00
} else if (*ch == KEY_F(9)) {
2012-11-26 00:57:41 +00:00
ui_switch_win(8);
2012-03-10 20:46:30 +00:00
} else if (*ch == KEY_F(10)) {
2012-11-26 00:57:41 +00:00
ui_switch_win(9);
2012-03-10 20:46:30 +00:00
}
}
2012-07-24 22:19:48 +00:00
static void
2013-01-03 00:16:39 +00:00
_win_handle_page(const wint_t * const ch)
2012-03-10 20:46:30 +00:00
{
int rows = getmaxy(stdscr);
int y = getcury(current->win);
2012-03-10 20:46:30 +00:00
int page_space = rows - 4;
int *page_start = &(current->y_pos);
2013-02-03 02:35:04 +00:00
if (prefs_get_boolean(PREF_MOUSE)) {
MEVENT mouse_event;
2012-11-20 01:53:30 +00:00
if (*ch == KEY_MOUSE) {
if (getmouse(&mouse_event) == OK) {
2012-11-25 17:37:04 +00:00
#ifdef PLATFORM_CYGWIN
if (mouse_event.bstate & BUTTON5_PRESSED) { // mouse wheel down
2012-11-25 17:37:04 +00:00
#else
if (mouse_event.bstate & BUTTON2_PRESSED) { // mouse wheel down
2012-11-25 17:37:04 +00:00
#endif
*page_start += 4;
2012-11-20 01:53:30 +00:00
// only got half a screen, show full screen
if ((y - (*page_start)) < page_space)
*page_start = y - page_space;
2012-11-20 01:53:30 +00:00
// went past end, show full screen
else if (*page_start >= y)
*page_start = y - page_space;
2012-11-20 01:53:30 +00:00
current->paged = 1;
current_win_dirty = TRUE;
} else if (mouse_event.bstate & BUTTON4_PRESSED) { // mouse wheel up
*page_start -= 4;
2012-11-20 01:53:30 +00:00
// went past beginning, show first page
if (*page_start < 0)
*page_start = 0;
2012-11-20 01:53:30 +00:00
current->paged = 1;
current_win_dirty = TRUE;
}
2012-11-20 01:53:30 +00:00
}
}
}
2012-11-20 01:53:30 +00:00
2012-03-10 20:46:30 +00:00
// page up
if (*ch == KEY_PPAGE) {
2012-03-10 20:46:30 +00:00
*page_start -= page_space;
2012-03-10 20:46:30 +00:00
// went past beginning, show first page
if (*page_start < 0)
*page_start = 0;
current->paged = 1;
current_win_dirty = TRUE;
2012-03-10 20:46:30 +00:00
// page down
} else if (*ch == KEY_NPAGE) {
*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;
current->paged = 1;
current_win_dirty = TRUE;
2012-03-10 20:46:30 +00:00
}
}
2012-10-14 21:36:29 +00:00
static void
_win_show_history(WINDOW *win, int win_index, const char * const contact)
{
if (!windows[win_index]->history_shown) {
2012-10-14 21:36:29 +00:00
GSList *history = NULL;
2013-05-21 21:00:42 +00:00
Jid *jid = jid_create(jabber_get_fulljid());
2013-01-29 23:01:15 +00:00
history = chat_log_get_previous(jid->barejid, contact, history);
jid_destroy(jid);
2012-10-14 21:36:29 +00:00
while (history != NULL) {
wprintw(win, "%s\n", history->data);
history = g_slist_next(history);
}
windows[win_index]->history_shown = 1;
2012-10-14 21:36:29 +00:00
g_slist_free_full(history, free);
}
}
void
_set_current(int index)
{
current_index = index;
current = windows[current_index];
}
gboolean
_tidy(void)
{
int gap = 1;
int filler = 1;
gboolean tidied = FALSE;
for (gap = 1; gap < NUM_WINS; gap++) {
// if a gap
if (!ui_win_exists(gap)) {
// find next used window and move into gap
for (filler = gap + 1; filler < NUM_WINS; filler++) {
if (ui_win_exists(filler)) {
windows[gap] = windows[filler];
if (windows[gap]->unread > 0) {
status_bar_new(gap);
} else {
status_bar_active(gap);
}
windows[filler] = NULL;
status_bar_inactive(filler);
tidied = TRUE;
break;
}
}
}
}
return tidied;
}