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

1788 lines
47 KiB
C
Raw Normal View History

/*
2013-04-21 16:33:12 +00:00
* core.c
2012-02-20 20:07:38 +00:00
*
2014-03-09 01:18:19 +00:00
* Copyright (C) 2012 - 2014 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
#ifdef HAVE_GIT_VERSION
#include "gitversion.h"
#endif
#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"
#include "roster_list.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"
2014-02-12 22:19:21 +00:00
#include "otr/otr.h"
2013-02-02 20:55:58 +00:00
#include "ui/ui.h"
#include "ui/window.h"
#include "ui/windows.h"
#include "xmpp/xmpp.h"
2012-02-05 23:08:15 +00:00
static char *win_title;
2012-11-30 21:26:28 +00:00
#ifdef HAVE_LIBXSS
static Display *display;
#endif
static GTimer *ui_idle_time;
2012-03-09 01:06:55 +00:00
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);
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);
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);
static void
_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();
status_bar_active(1);
create_input_window();
wins_init();
2013-04-20 20:42:39 +00:00
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();
wins_update_virtual_current();
}
static void
_ui_update_screen(void)
{
_ui_draw_win_title();
title_bar_update_virtual();
status_bar_update_virtual();
inp_put_back();
doupdate();
}
static 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;
}
static void
_ui_reset_idle_time(void)
{
g_timer_start(ui_idle_time);
}
2012-11-30 21:26:28 +00:00
static void
_ui_close(void)
2012-02-07 00:08:59 +00:00
{
2013-04-21 19:17:06 +00:00
notifier_uninit();
2013-08-26 16:47:29 +00:00
wins_destroy();
2012-02-07 00:08:59 +00:00
endwin();
}
static void
_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();
wins_resize_all();
2012-04-22 19:59:36 +00:00
inp_win_resize(input, size);
wins_update_virtual_current();
2012-04-17 22:28:21 +00:00
}
static void
_ui_load_colours(void)
2012-11-26 00:01:34 +00:00
{
if (has_colors()) {
use_default_colors();
start_color();
theme_init_colours();
}
}
static gboolean
_ui_win_exists(int index)
{
ProfWin *window = wins_get_by_num(index);
return (window != NULL);
}
static gboolean
_ui_duck_exists(void)
{
return wins_duck_exists();
}
static void
_ui_contact_typing(const char * const barejid)
2012-11-26 00:01:34 +00:00
{
ProfWin *window = wins_get_by_recipient(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 (window == NULL) {
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 (!wins_is_current(window)) {
2013-05-20 21:51:35 +00:00
cons_show_typing(barejid);
wins_update_virtual_current();
2012-11-26 00:01:34 +00:00
// in chat window with user
} else {
title_bar_set_typing(TRUE);
int num = wins_get_num(window);
status_bar_active(num);
wins_update_virtual_current();
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
}
static GSList *
_ui_get_recipients(void)
{
GSList *recipients = wins_get_chat_recipients();
return recipients;
}
static void
_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 = NULL;
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);
}
}
ProfWin *window = wins_get_by_recipient(from);
if (window == NULL) {
window = wins_new(from, win_type);
#ifdef HAVE_LIBOTR
if (otr_is_secure(from)) {
window->is_otr = TRUE;
}
#endif
win_created = TRUE;
}
2012-03-01 00:34:54 +00:00
int num = wins_get_num(window);
// currently viewing chat window with sender
if (wins_is_current(window)) {
win_print_incoming_message(window, tv_stamp, display_from, message);
title_bar_set_typing(FALSE);
status_bar_active(num);
wins_update_virtual_current();
// not currently viewing chat window with sender
} else {
status_bar_new(num);
cons_show_incoming_message(display_from, num);
if (prefs_get_boolean(PREF_FLASH))
flash();
window->unread++;
if (prefs_get_boolean(PREF_CHLOG) && prefs_get_boolean(PREF_HISTORY)) {
_win_show_history(window->win, num, from);
}
// show users status first, when receiving message via delayed delivery
if ((tv_stamp != NULL) && (win_created)) {
PContact pcontact = roster_get_contact(from);
if (pcontact != NULL) {
2013-10-06 22:22:46 +00:00
win_show_contact(window, pcontact);
}
}
win_print_incoming_message(window, tv_stamp, display_from, message);
}
2012-04-24 00:11:39 +00:00
int ui_index = num;
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(display_from);
ProfWin *current = wins_get_current();
if (!current->paged) {
win_move_to_end(current);
win_update_virtual(current);
}
2012-02-07 00:08:59 +00:00
}
static 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);
}
}
static void
_ui_roster_remove(const char * const barejid)
{
cons_show("Roster item removed: %s", barejid);
}
static void
_ui_contact_already_in_group(const char * const contact, const char * const group)
{
cons_show("%s already in group %s", contact, group);
}
static 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);
}
static void
_ui_group_added(const char * const contact, const char * const group)
{
cons_show("%s added to group %s", contact, group);
}
static void
_ui_group_removed(const char * const contact, const char * const group)
{
cons_show("%s removed from group %s", contact, group);
}
2014-01-26 18:30:34 +00:00
static void
2014-01-26 22:50:22 +00:00
_ui_handle_recipient_not_found(const char * const recipient, const char * const err_msg)
2014-01-26 18:30:34 +00:00
{
2014-01-26 22:50:22 +00:00
ProfWin *win = wins_get_by_recipient(recipient);
2014-01-26 18:30:34 +00:00
GString *msg = g_string_new("");
// no window for intended recipient, show message in current and console
if (win == NULL) {
2014-01-26 22:50:22 +00:00
g_string_printf(msg, "Recipient %s not found: %s", recipient, err_msg);
cons_show_error(msg->str);
// intended recipient was invalid chat room
} else if (win->type == WIN_MUC) {
2014-01-26 22:50:22 +00:00
g_string_printf(msg, "Room %s not found: %s", recipient, err_msg);
cons_show_error(msg->str);
win_print_line(win, '!', COLOUR_ERROR, msg->str);
2014-01-26 18:30:34 +00:00
// unknown chat recipient
} else {
2014-01-26 22:50:22 +00:00
g_string_printf(msg, "Recipient %s not found: %s", recipient, err_msg);
cons_show_error(msg->str);
win_print_line(win, '!', COLOUR_ERROR, msg->str);
2014-01-26 18:30:34 +00:00
}
wins_update_virtual_current();
2014-01-26 18:30:34 +00:00
g_string_free(msg, TRUE);
}
2014-01-27 22:09:16 +00:00
static void
_ui_handle_recipient_error(const char * const recipient, const char * const err_msg)
{
ProfWin *win = wins_get_by_recipient(recipient);
GString *msg = g_string_new("");
g_string_printf(msg, "Error from %s: %s", recipient, err_msg);
// always show in console
cons_show_error(msg->str);
// show in window if exists for recipient
if (win != NULL) {
win_print_line(win, '!', COLOUR_ERROR, msg->str);
}
wins_update_virtual_current();
2014-01-27 22:09:16 +00:00
g_string_free(msg, TRUE);
}
static void
_ui_handle_error(const char * const err_msg)
{
GString *msg = g_string_new("");
g_string_printf(msg, "Error %s", err_msg);
cons_show_error(msg->str);
wins_update_virtual_current();
2014-01-27 22:09:16 +00:00
g_string_free(msg, TRUE);
}
static void
_ui_disconnected(void)
2012-11-26 00:57:41 +00:00
{
wins_lost_connection();
title_bar_set_presence(CONTACT_OFFLINE);
status_bar_clear_message();
status_bar_update_virtual();
2012-10-18 15:18:44 +00:00
}
static void
_ui_handle_special_keys(const wint_t * const ch, const char * const inp,
2013-02-02 23:52:47 +00:00
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
}
static 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)) {
#ifdef HAVE_LIBOTR
ProfWin *window = wins_get_by_num(index);
if (window->is_otr) {
otr_end_session(window->from);
}
#endif
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);
}
}
}
}
static int
_ui_close_all_wins(void)
2013-08-26 17:06:33 +00:00
{
int count = 0;
2013-08-26 17:06:33 +00:00
jabber_conn_status_t conn_status = jabber_get_connection_status();
GList *win_nums = wins_get_nums();
GList *curr = win_nums;
while (curr != NULL) {
int num = GPOINTER_TO_INT(curr->data);
if (num != 1) {
2013-08-26 17:06:33 +00:00
if (conn_status == JABBER_CONNECTED) {
ui_close_connected_win(num);
2013-08-26 17:06:33 +00:00
}
ui_close_win(num);
2013-08-26 17:06:33 +00:00
count++;
}
curr = g_list_next(curr);
2013-08-26 17:06:33 +00:00
}
g_list_free(curr);
g_list_free(win_nums);
2013-08-26 17:06:33 +00:00
return count;
}
static int
_ui_close_read_wins(void)
2013-08-26 17:06:33 +00:00
{
int count = 0;
2013-08-26 17:06:33 +00:00
jabber_conn_status_t conn_status = jabber_get_connection_status();
GList *win_nums = wins_get_nums();
GList *curr = win_nums;
while (curr != NULL) {
int num = GPOINTER_TO_INT(curr->data);
if ((num != 1) && (ui_win_unread(num) == 0)) {
2013-08-26 17:06:33 +00:00
if (conn_status == JABBER_CONNECTED) {
ui_close_connected_win(num);
2013-08-26 17:06:33 +00:00
}
ui_close_win(num);
2013-08-26 17:06:33 +00:00
count++;
}
curr = g_list_next(curr);
2013-08-26 17:06:33 +00:00
}
g_list_free(curr);
g_list_free(win_nums);
2013-08-26 17:06:33 +00:00
return count;
}
2014-01-11 18:06:46 +00:00
GString *
_get_recipient_string(ProfWin *window)
{
GString *result = g_string_new("");
PContact contact = roster_get_contact(window->from);
if (contact != NULL) {
if (p_contact_name(contact) != NULL) {
g_string_append(result, p_contact_name(contact));
} else {
g_string_append(result, window->from);
}
} else {
g_string_append(result, window->from);
}
return result;
}
static gboolean
_ui_switch_win(const int i)
2012-11-26 00:57:41 +00:00
{
if (ui_win_exists(i)) {
ui_current_page_off();
ProfWin *new_current = wins_get_by_num(i);
wins_set_current_by_num(i);
2013-04-21 18:44:31 +00:00
ui_current_page_off();
2012-11-26 00:57:41 +00:00
new_current->unread = 0;
2012-11-26 00:57:41 +00:00
if (i == 1) {
title_bar_console();
2013-10-02 22:33:48 +00:00
status_bar_current(1);
status_bar_active(1);
2012-11-26 00:57:41 +00:00
} else {
2014-01-11 18:06:46 +00:00
GString *recipient_str = _get_recipient_string(new_current);
title_bar_set_recipient(recipient_str->str);
g_string_free(recipient_str, TRUE);
2013-10-02 22:33:48 +00:00
status_bar_current(i);
2012-11-26 00:57:41 +00:00
status_bar_active(i);
}
wins_update_virtual_current();
return TRUE;
} else {
return FALSE;
2012-11-26 00:57:41 +00:00
}
}
2014-02-16 02:22:29 +00:00
static void
_ui_current_update_virtual(void)
2014-02-16 02:22:29 +00:00
{
ui_switch_win(wins_get_current_num());
}
static void
_ui_next_win(void)
{
ui_current_page_off();
ProfWin *new_current = wins_get_next();
int i = wins_get_num(new_current);
wins_set_current_by_num(i);
ui_current_page_off();
new_current->unread = 0;
if (i == 1) {
title_bar_console();
2013-10-02 22:33:48 +00:00
status_bar_current(1);
status_bar_active(1);
} else {
2014-01-11 18:06:46 +00:00
GString *recipient_str = _get_recipient_string(new_current);
title_bar_set_recipient(recipient_str->str);
g_string_free(recipient_str, TRUE);
2013-10-02 22:33:48 +00:00
status_bar_current(i);
status_bar_active(i);
}
wins_update_virtual_current();
}
static void
2014-01-12 01:20:22 +00:00
_ui_gone_secure(const char * const recipient, gboolean trusted)
{
ProfWin *window = wins_get_by_recipient(recipient);
if (window != NULL) {
window->is_otr = TRUE;
2014-01-12 01:20:22 +00:00
window->is_trusted = trusted;
if (trusted) {
win_vprint_line(window, '!', COLOUR_OTR_STARTED_TRUSTED, "OTR session started (trusted).");
} else {
win_vprint_line(window, '!', COLOUR_OTR_STARTED_UNTRUSTED, "OTR session started (untrusted).");
}
if (wins_is_current(window)) {
GString *recipient_str = _get_recipient_string(window);
title_bar_set_recipient(recipient_str->str);
g_string_free(recipient_str, TRUE);
wins_update_virtual_current();
}
}
}
static void
_ui_gone_insecure(const char * const recipient)
{
ProfWin *window = wins_get_by_recipient(recipient);
if (window != NULL) {
window->is_otr = FALSE;
2014-01-12 01:20:22 +00:00
window->is_trusted = FALSE;
win_vprint_line(window, '!', COLOUR_OTR_ENDED, "OTR session ended.");
if (wins_is_current(window)) {
GString *recipient_str = _get_recipient_string(window);
title_bar_set_recipient(recipient_str->str);
g_string_free(recipient_str, TRUE);
wins_update_virtual_current();
}
}
}
2014-01-12 01:20:22 +00:00
static void
_ui_trust(const char * const recipient)
{
ProfWin *window = wins_get_by_recipient(recipient);
if (window != NULL) {
window->is_otr = TRUE;
window->is_trusted = TRUE;
win_vprint_line(window, '!', COLOUR_OTR_TRUSTED, "OTR session trusted.");
2014-01-12 01:20:22 +00:00
if (wins_is_current(window)) {
GString *recipient_str = _get_recipient_string(window);
title_bar_set_recipient(recipient_str->str);
g_string_free(recipient_str, TRUE);
wins_update_virtual_current();
2014-01-12 01:20:22 +00:00
}
}
}
static void
_ui_untrust(const char * const recipient)
{
ProfWin *window = wins_get_by_recipient(recipient);
if (window != NULL) {
window->is_otr = TRUE;
window->is_trusted = FALSE;
win_vprint_line(window, '!', COLOUR_OTR_UNTRUSTED, "OTR session untrusted.");
2014-01-12 01:20:22 +00:00
if (wins_is_current(window)) {
GString *recipient_str = _get_recipient_string(window);
title_bar_set_recipient(recipient_str->str);
g_string_free(recipient_str, TRUE);
wins_update_virtual_current();
2014-01-12 01:20:22 +00:00
}
}
}
static void
_ui_previous_win(void)
{
ui_current_page_off();
ProfWin *new_current = wins_get_previous();
int i = wins_get_num(new_current);
wins_set_current_by_num(i);
ui_current_page_off();
new_current->unread = 0;
if (i == 1) {
title_bar_console();
2013-10-02 22:33:48 +00:00
status_bar_current(1);
status_bar_active(1);
} else {
2014-01-11 18:06:46 +00:00
GString *recipient_str = _get_recipient_string(new_current);
title_bar_set_recipient(recipient_str->str);
g_string_free(recipient_str, TRUE);
2013-10-02 22:33:48 +00:00
status_bar_current(i);
status_bar_active(i);
}
wins_update_virtual_current();
}
static void
_ui_clear_current(void)
{
wins_clear_current();
}
static void
_ui_close_current(void)
2012-11-26 00:57:41 +00:00
{
int current_index = wins_get_current_num();
2012-11-26 00:57:41 +00:00
status_bar_inactive(current_index);
wins_close_current();
title_bar_console();
2013-10-02 22:33:48 +00:00
status_bar_current(1);
status_bar_active(1);
2012-11-26 00:57:41 +00:00
}
static void
_ui_close_win(int index)
{
wins_close_by_num(index);
title_bar_console();
2013-10-02 22:33:48 +00:00
status_bar_current(1);
status_bar_active(1);
wins_update_virtual_current();
}
static void
_ui_tidy_wins(void)
{
gboolean tidied = wins_tidy();
if (tidied) {
cons_show("Windows tidied.");
} else {
cons_show("No tidy needed.");
}
}
static void
_ui_prune_wins(void)
{
jabber_conn_status_t conn_status = jabber_get_connection_status();
gboolean pruned = FALSE;
GSList *recipients = wins_get_prune_recipients();
if (recipients != NULL) {
pruned = TRUE;
}
GSList *curr = recipients;
while (curr != NULL) {
char *recipient = curr->data;
if (conn_status == JABBER_CONNECTED) {
if (prefs_get_boolean(PREF_STATES)) {
// 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);
}
}
}
ProfWin *window = wins_get_by_recipient(recipient);
int num = wins_get_num(window);
ui_close_win(num);
curr = g_slist_next(curr);
}
if (recipients != NULL) {
g_slist_free(recipients);
}
wins_tidy();
if (pruned) {
cons_show("Windows pruned.");
} else {
cons_show("No prune needed.");
}
}
static win_type_t
_ui_current_win_type(void)
2013-01-11 01:05:59 +00:00
{
ProfWin *current = wins_get_current();
return current->type;
2012-11-26 00:57:41 +00:00
}
static gboolean
_ui_current_win_is_otr(void)
{
ProfWin *current = wins_get_current();
return current->is_otr;
}
static void
_ui_current_set_otr(gboolean value)
{
ProfWin *current = wins_get_current();
current->is_otr = value;
}
static int
_ui_current_win_index(void)
{
return wins_get_current_num();
}
static win_type_t
_ui_win_type(int index)
{
ProfWin *window = wins_get_by_num(index);
return window->type;
}
static char *
_ui_recipient(int index)
{
ProfWin *window = wins_get_by_num(index);
return window->from;
}
static char *
_ui_current_recipient(void)
2012-11-26 00:57:41 +00:00
{
ProfWin *current = wins_get_current();
return current->from;
2012-11-26 00:57:41 +00:00
}
static void
_ui_current_print_line(const char * const msg, ...)
2012-11-26 00:57:41 +00:00
{
ProfWin *current = wins_get_current();
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);
win_print_line(current, '-', 0, fmt_msg->str);
2012-11-27 21:53:56 +00:00
va_end(arg);
g_string_free(fmt_msg, TRUE);
win_update_virtual(current);
2012-11-26 00:57:41 +00:00
}
2014-01-16 23:16:37 +00:00
static void
_ui_current_print_formatted_line(const char show_char, int attrs, const char * const msg, ...)
{
ProfWin *current = wins_get_current();
va_list arg;
va_start(arg, msg);
GString *fmt_msg = g_string_new(NULL);
g_string_vprintf(fmt_msg, msg, arg);
win_print_line(current, show_char, attrs, fmt_msg->str);
va_end(arg);
g_string_free(fmt_msg, TRUE);
win_update_virtual(current);
2014-01-16 23:16:37 +00:00
}
static void
_ui_current_error_line(const char * const msg)
2012-11-26 00:57:41 +00:00
{
ProfWin *current = wins_get_current();
2013-10-06 22:22:46 +00:00
win_print_line(current, '-', COLOUR_ERROR, msg);
win_update_virtual(current);
2012-11-26 00:57:41 +00:00
}
static void
_ui_current_page_off(void)
2012-11-26 00:57:41 +00:00
{
ProfWin *current = wins_get_current();
win_move_to_end(current);
win_update_virtual(current);
2012-11-26 00:57:41 +00:00
}
static void
_ui_print_system_msg_from_recipient(const char * const from, const char *message)
2012-11-11 12:00:21 +00:00
{
int num = 0;
2012-11-11 12:00:21 +00:00
if (from == NULL || message == NULL)
return;
2014-04-02 20:01:20 +00:00
Jid *jid = jid_create(from);
2012-11-11 12:00:21 +00:00
2014-04-02 20:01:20 +00:00
ProfWin *window = wins_get_by_recipient(jid->barejid);
if (window == NULL) {
2014-04-02 20:01:20 +00:00
window = wins_new(jid->barejid, WIN_CHAT);
if (window != NULL) {
num = wins_get_num(window);
status_bar_active(num);
} else {
num = 0;
window = wins_get_console();
status_bar_active(1);
}
2012-11-11 12:00:21 +00:00
}
2013-10-06 22:22:46 +00:00
win_print_time(window, '-');
2014-04-02 20:01:20 +00:00
wprintw(window->win, "*%s %s\n", jid->barejid, message);
2012-11-11 12:00:21 +00:00
// this is the current window
if (wins_is_current(window)) {
wins_update_virtual_current();
2012-11-11 12:00:21 +00:00
}
2014-04-02 20:01:20 +00:00
jid_destroy(jid);
2012-11-11 12:00:21 +00:00
}
static void
_ui_recipient_gone(const char * const barejid)
{
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;
}
ProfWin *window = wins_get_by_recipient(barejid);
if (window != NULL) {
win_vprint_line(window, '!', COLOUR_GONE, "<- %s has left the conversation.", display_usr);
if (wins_is_current(window)) {
wins_update_virtual_current();
2012-11-26 00:57:41 +00:00
}
}
2012-06-28 22:29:46 +00:00
}
static void
_ui_new_chat_win(const char * const to)
{
// if the contact is offline, show a message
PContact contact = roster_get_contact(to);
ProfWin *window = wins_get_by_recipient(to);
int num = 0;
// create new window
if (window == NULL) {
Jid *jid = jid_create(to);
if (muc_room_is_active(jid->barejid)) {
window = wins_new(to, WIN_PRIVATE);
} else {
window = wins_new(to, WIN_CHAT);
}
jid_destroy(jid);
num = wins_get_num(window);
2013-02-03 02:35:04 +00:00
if (prefs_get_boolean(PREF_CHLOG) && prefs_get_boolean(PREF_HISTORY)) {
_win_show_history(window->win, num, 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);
win_show_status_string(window, to, show, status, NULL, "--", "offline");
}
}
} else {
num = wins_get_num(window);
}
ui_switch_win(num);
}
static void
_ui_create_duck_win(void)
{
ProfWin *window = wins_new("DuckDuckGo search", WIN_DUCK);
int num = wins_get_num(window);
ui_switch_win(num);
2013-10-07 00:08:46 +00:00
win_print_line(window, '-', 0, "Type ':help' to find out more.");
}
static void
_ui_open_duck_win(void)
{
ProfWin *window = wins_get_by_recipient("DuckDuckGo search");
if (window != NULL) {
int num = wins_get_num(window);
ui_switch_win(num);
}
}
static void
_ui_duck(const char * const query)
{
ProfWin *window = wins_get_by_recipient("DuckDuckGo search");
if (window != NULL) {
2013-10-06 22:22:46 +00:00
win_print_time(window, '-');
wprintw(window->win, "\n");
2013-10-06 22:22:46 +00:00
win_print_time(window, '-');
wattron(window->win, COLOUR_ME);
wprintw(window->win, "Query : ");
wattroff(window->win, COLOUR_ME);
wprintw(window->win, query);
wprintw(window->win, "\n");
}
}
static void
_ui_duck_result(const char * const result)
{
ProfWin *window = wins_get_by_recipient("DuckDuckGo search");
if (window != NULL) {
2013-10-06 22:22:46 +00:00
win_print_time(window, '-');
wattron(window->win, COLOUR_THEM);
wprintw(window->win, "Result : ");
wattroff(window->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(window->win, "\n");
2013-10-06 22:22:46 +00:00
win_print_time(window, '-');
} 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(window->win, string);
2013-05-06 00:22:34 +00:00
g_free(string);
}
}
2013-05-06 00:09:10 +00:00
offset++;
}
wprintw(window->win, "\n");
}
}
static void
_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
{
PContact contact = roster_get_contact(to);
ProfWin *window = wins_get_by_recipient(to);
int num = 0;
// create new window
if (window == NULL) {
2013-01-13 03:14:36 +00:00
Jid *jid = jid_create(to);
if (muc_room_is_active(jid->barejid)) {
window = wins_new(to, WIN_PRIVATE);
} else {
window = wins_new(to, WIN_CHAT);
#ifdef HAVE_LIBOTR
if (otr_is_secure(to)) {
window->is_otr = TRUE;
}
#endif
}
2013-01-13 03:14:36 +00:00
jid_destroy(jid);
num = wins_get_num(window);
2013-02-03 02:35:04 +00:00
if (prefs_get_boolean(PREF_CHLOG) && prefs_get_boolean(PREF_HISTORY)) {
_win_show_history(window->win, num, 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 *show = p_contact_presence(contact);
const char *status = p_contact_status(contact);
win_show_status_string(window, to, show, status, NULL, "--", "offline");
2012-10-04 22:55:15 +00:00
}
}
// use existing window
} else {
num = wins_get_num(window);
}
2013-10-06 22:22:46 +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
}
ui_switch_win(num);
2012-02-07 00:37:42 +00:00
}
static void
2014-03-08 21:10:23 +00:00
_ui_room_join(char *room)
2012-11-05 21:36:32 +00:00
{
2014-03-08 21:10:23 +00:00
ProfWin *window = wins_get_by_recipient(room);
int num = 0;
2012-11-05 21:36:32 +00:00
// create new window
if (window == NULL) {
2014-03-08 21:10:23 +00:00
window = wins_new(room, WIN_MUC);
2012-11-05 21:36:32 +00:00
}
num = wins_get_num(window);
ui_switch_win(num);
2012-11-05 21:36:32 +00:00
}
static void
_ui_room_roster(const char * const room, GList *roster, const char * const presence)
2012-11-05 21:36:32 +00:00
{
ProfWin *window = wins_get_by_recipient(room);
2012-11-05 21:36:32 +00:00
2013-10-06 22:22:46 +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;
const char *nick = p_contact_barejid(member);
const char *show = p_contact_presence(member);
2013-10-06 22:22:46 +00:00
win_presence_colour_on(window, show);
2013-04-20 22:39:17 +00:00
wprintw(window->win, "%s", nick);
2013-10-06 22:22:46 +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 (wins_is_current(window)) {
wins_update_virtual_current();
}
2012-11-05 21:36:32 +00:00
}
static void
_ui_room_member_offline(const char * const room, const char * const nick)
2012-11-08 00:05:32 +00:00
{
ProfWin *window = wins_get_by_recipient(room);
2012-11-08 00:05:32 +00:00
2013-10-06 22:22:46 +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 (wins_is_current(window)) {
wins_update_virtual_current();
}
2012-11-08 00:05:32 +00:00
}
static void
_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
{
ProfWin *window = wins_get_by_recipient(room);
2012-11-08 00:05:32 +00:00
2013-10-06 22:22:46 +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 (wins_is_current(window)) {
wins_update_virtual_current();
}
2012-11-08 00:05:32 +00:00
}
static void
_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)
{
ProfWin *window = wins_get_by_recipient(room);
if (window != NULL) {
win_show_status_string(window, nick, show, status, NULL, "++", "online");
2012-11-19 00:26:31 +00:00
}
if (wins_is_current(window)) {
wins_update_virtual_current();
}
2012-11-19 00:26:31 +00:00
}
static void
_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)
{
ProfWin *window = wins_get_by_recipient(room);
2012-11-18 21:46:58 +00:00
2013-10-06 22:22:46 +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 (wins_is_current(window)) {
wins_update_virtual_current();
}
}
static void
_ui_room_nick_change(const char * const room, const char * const nick)
{
ProfWin *window = wins_get_by_recipient(room);
2012-11-18 21:46:58 +00:00
2013-10-06 22:22:46 +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 (wins_is_current(window)) {
wins_update_virtual_current();
}
2012-11-18 21:46:58 +00:00
}
static void
_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)
{
ProfWin *window = wins_get_by_recipient(room_jid);
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(window->win, "%s - ", date_fmt);
2012-11-05 22:21:03 +00:00
g_date_time_unref(time);
g_free(date_fmt);
2012-11-10 04:18:34 +00:00
if (strncmp(message, "/me ", 4) == 0) {
wprintw(window->win, "*%s ", nick);
waddstr(window->win, message + 4);
wprintw(window->win, "\n");
2012-11-10 04:18:34 +00:00
} else {
wprintw(window->win, "%s: ", nick);
_win_show_message(window->win, message);
2012-11-10 04:18:34 +00:00
}
2012-11-05 22:21:03 +00:00
if (wins_is_current(window)) {
wins_update_virtual_current();
}
2012-11-05 22:21:03 +00:00
}
static void
_ui_room_message(const char * const room_jid, const char * const nick,
2012-11-05 22:28:06 +00:00
const char * const message)
{
ProfWin *window = wins_get_by_recipient(room_jid);
int num = wins_get_num(window);
2012-11-05 22:28:06 +00:00
2013-10-06 22:22:46 +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 (wins_is_current(window)) {
status_bar_active(num);
wins_update_virtual_current();
// not currenlty on groupchat window
} else {
status_bar_new(num);
cons_show_incoming_message(nick, num);
if (wins_get_current_num() == 0) {
wins_update_virtual_current();
}
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();
}
}
window->unread++;
}
int ui_index = num;
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
}
}
ProfWin *current = wins_get_current();
if (!current->paged) {
win_move_to_end(current);
win_update_virtual(current);
}
2012-11-05 22:28:06 +00:00
}
static void
_ui_room_subject(const char * const room_jid, const char * const subject)
2012-11-10 03:30:27 +00:00
{
ProfWin *window = wins_get_by_recipient(room_jid);
int num = wins_get_num(window);
2012-11-10 03:30:27 +00:00
2013-10-06 22:22:46 +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 (wins_is_current(window)) {
status_bar_active(num);
wins_update_virtual_current();
2012-11-10 03:30:27 +00:00
// not currenlty on groupchat window
} else {
status_bar_new(num);
2012-11-10 03:30:27 +00:00
}
}
static void
_ui_room_broadcast(const char * const room_jid, const char * const message)
2012-11-19 22:15:53 +00:00
{
ProfWin *window = wins_get_by_recipient(room_jid);
int num = wins_get_num(window);
2012-11-19 22:15:53 +00:00
2013-10-06 22:22:46 +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 (wins_is_current(window)) {
status_bar_active(num);
wins_update_virtual_current();
2012-11-19 22:15:53 +00:00
// not currenlty on groupchat window
} else {
status_bar_new(num);
2012-11-19 22:15:53 +00:00
}
}
static void
_ui_status(void)
{
2013-04-21 18:44:31 +00:00
char *recipient = ui_current_recipient();
PContact pcontact = roster_get_contact(recipient);
ProfWin *current = wins_get_current();
if (pcontact != NULL) {
2013-10-06 22:22:46 +00:00
win_show_contact(current, pcontact);
} else {
win_print_line(current, '-', 0, "Error getting contact info.");
}
}
static void
_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);
ProfWin *current = wins_get_current();
if (pcontact != NULL) {
2013-10-06 22:22:46 +00:00
win_show_contact(current, pcontact);
} else {
win_print_line(current, '-', 0, "Error getting contact info.");
}
jid_destroy(jid);
}
static void
_ui_status_room(const char * const contact)
{
2013-04-21 18:44:31 +00:00
PContact pcontact = muc_get_participant(ui_current_recipient(), contact);
ProfWin *current = wins_get_current();
if (pcontact != NULL) {
2013-10-06 22:22:46 +00:00
win_show_contact(current, pcontact);
} else {
win_vprint_line(current, '-', 0, "No such participant \"%s\" in room.", contact);
}
}
static gint
_ui_unread(void)
2012-11-26 00:57:41 +00:00
{
return wins_get_total_unread();
2012-11-26 00:57:41 +00:00
}
static int
_ui_win_unread(int index)
{
ProfWin *window = wins_get_by_num(index);
if (window != NULL) {
return window->unread;
} else {
return 0;
}
}
static char *
_ui_ask_password(void)
2013-12-15 19:38:23 +00:00
{
char *passwd = malloc(sizeof(char) * (MAX_PASSWORD_SIZE + 1));
status_bar_get_password();
status_bar_update_virtual();
2013-12-15 19:38:23 +00:00
inp_block();
inp_get_password(passwd);
inp_non_block();
return passwd;
}
2014-01-19 18:31:02 +00:00
static void
_ui_chat_win_contact_online(PContact contact, Resource *resource, GDateTime *last_activity)
{
const char *show = string_from_resource_presence(resource->presence);
char *display_str = p_contact_create_display_string(contact, resource->name);
const char *barejid = p_contact_barejid(contact);
ProfWin *window = wins_get_by_recipient(barejid);
if (window != NULL) {
win_show_status_string(window, display_str, show, resource->status,
last_activity, "++", "online");
if (wins_is_current(window)) {
wins_update_virtual_current();
2014-01-19 18:31:02 +00:00
ui_current_page_off();
}
}
free(display_str);
}
static void
_ui_chat_win_contact_offline(PContact contact, char *resource, char *status)
{
char *display_str = p_contact_create_display_string(contact, resource);
const char *barejid = p_contact_barejid(contact);
ProfWin *window = wins_get_by_recipient(barejid);
if (window != NULL) {
win_show_status_string(window, display_str, "offline", status, NULL, "--",
"offline");
if (wins_is_current(window)) {
wins_update_virtual_current();
2014-01-19 18:31:02 +00:00
ui_current_page_off();
}
}
free(display_str);
}
2014-04-03 20:13:59 +00:00
static void
_ui_clear_win_title(void)
{
printf("\033]0;\007");
}
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) {
#ifdef HAVE_GIT_VERSION
g_string_append(version_str, "dev.");
g_string_append(version_str, PROF_GIT_BRANCH);
g_string_append(version_str, ".");
g_string_append(version_str, PROF_GIT_REVISION);
#else
2013-04-21 16:30:04 +00:00
g_string_append(version_str, "dev");
#endif
2013-04-21 16:30:04 +00:00
}
}
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) {
2013-10-07 00:35:20 +00:00
snprintf(new_win_title, sizeof(new_win_title),
"%c]0;%s%s (%d) - %s%c", '\033', "Profanity", version_str->str,
unread, jid, '\007');
2013-04-21 16:30:04 +00:00
} else {
2013-10-07 00:35:20 +00:00
snprintf(new_win_title, sizeof(new_win_title),
"%c]0;%s%s - %s%c", '\033', "Profanity", version_str->str, jid,
'\007');
2013-04-21 16:30:04 +00:00
}
} else {
2013-10-07 00:35:20 +00:00
snprintf(new_win_title, sizeof(new_win_title), "%c]0;%s%s%c", '\033',
"Profanity", version_str->str, '\007');
2013-04-21 16:30:04 +00:00
}
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 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-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(1);
2013-08-31 22:00:46 +00:00
} else if (*ch == KEY_F(2)) {
2012-11-26 00:57:41 +00:00
ui_switch_win(2);
2013-08-31 22:00:46 +00:00
} else if (*ch == KEY_F(3)) {
2012-11-26 00:57:41 +00:00
ui_switch_win(3);
2013-08-31 22:00:46 +00:00
} else if (*ch == KEY_F(4)) {
2012-11-26 00:57:41 +00:00
ui_switch_win(4);
2013-08-31 22:00:46 +00:00
} else if (*ch == KEY_F(5)) {
2012-11-26 00:57:41 +00:00
ui_switch_win(5);
2013-08-31 22:00:46 +00:00
} else if (*ch == KEY_F(6)) {
2012-11-26 00:57:41 +00:00
ui_switch_win(6);
2013-08-31 22:00:46 +00:00
} else if (*ch == KEY_F(7)) {
2012-11-26 00:57:41 +00:00
ui_switch_win(7);
2013-08-31 22:00:46 +00:00
} else if (*ch == KEY_F(8)) {
2012-11-26 00:57:41 +00:00
ui_switch_win(8);
2013-08-31 22:00:46 +00:00
} else if (*ch == KEY_F(9)) {
2012-11-26 00:57:41 +00:00
ui_switch_win(9);
2013-08-31 22:00:46 +00:00
} else if (*ch == KEY_F(10)) {
ui_switch_win(0);
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
{
ProfWin *current = wins_get_current();
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;
wins_update_virtual_current();
} 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;
wins_update_virtual_current();
}
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;
wins_update_virtual_current();
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;
wins_update_virtual_current();
2012-03-10 20:46:30 +00:00
}
// switch off page if last line visible
if ((y-1) - *page_start == page_space) {
current->paged = 0;
}
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)
{
ProfWin *window = wins_get_by_num(win_index);
if (!window->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);
}
window->history_shown = 1;
2012-10-14 21:36:29 +00:00
g_slist_free_full(history, free);
}
}
2013-12-22 23:54:22 +00:00
void
ui_init_module(void)
{
ui_init = _ui_init;
ui_update_screen = _ui_update_screen;
2013-12-22 23:54:22 +00:00
ui_get_idle_time = _ui_get_idle_time;
ui_reset_idle_time = _ui_reset_idle_time;
ui_close = _ui_close;
ui_resize = _ui_resize;
ui_load_colours = _ui_load_colours;
ui_win_exists = _ui_win_exists;
ui_duck_exists = _ui_duck_exists;
ui_contact_typing = _ui_contact_typing;
ui_get_recipients = _ui_get_recipients;
ui_incoming_msg = _ui_incoming_msg;
ui_roster_add = _ui_roster_add;
ui_roster_remove = _ui_roster_remove;
ui_contact_already_in_group = _ui_contact_already_in_group;
ui_contact_not_in_group = _ui_contact_not_in_group;
ui_group_added = _ui_group_added;
ui_group_removed = _ui_group_removed;
ui_disconnected = _ui_disconnected;
ui_handle_special_keys = _ui_handle_special_keys;
ui_close_connected_win = _ui_close_connected_win;
ui_close_all_wins = _ui_close_all_wins;
ui_close_read_wins = _ui_close_read_wins;
ui_switch_win = _ui_switch_win;
ui_next_win = _ui_next_win;
ui_previous_win = _ui_previous_win;
ui_clear_current = _ui_clear_current;
ui_close_current = _ui_close_current;
ui_close_win = _ui_close_win;
ui_tidy_wins = _ui_tidy_wins;
ui_prune_wins = _ui_prune_wins;
ui_current_win_type = _ui_current_win_type;
ui_current_win_index = _ui_current_win_index;
ui_win_type = _ui_win_type;
ui_recipient = _ui_recipient;
ui_current_recipient = _ui_current_recipient;
ui_current_print_line = _ui_current_print_line;
2014-01-16 23:16:37 +00:00
ui_current_print_formatted_line = _ui_current_print_formatted_line;
2013-12-22 23:54:22 +00:00
ui_current_error_line = _ui_current_error_line;
ui_current_page_off = _ui_current_page_off;
ui_print_system_msg_from_recipient = _ui_print_system_msg_from_recipient;
ui_recipient_gone = _ui_recipient_gone;
ui_new_chat_win = _ui_new_chat_win;
ui_create_duck_win = _ui_create_duck_win;
ui_open_duck_win = _ui_open_duck_win;
ui_duck = _ui_duck;
ui_duck_result = _ui_duck_result;
ui_outgoing_msg = _ui_outgoing_msg;
ui_room_join = _ui_room_join;
ui_room_roster = _ui_room_roster;
ui_room_member_offline = _ui_room_member_offline;
ui_room_member_online = _ui_room_member_online;
ui_room_member_presence = _ui_room_member_presence;
ui_room_member_nick_change = _ui_room_member_nick_change;
ui_room_nick_change = _ui_room_nick_change;
ui_room_history = _ui_room_history;
ui_room_message = _ui_room_message;
ui_room_subject = _ui_room_subject;
ui_room_broadcast = _ui_room_broadcast;
ui_status = _ui_status;
ui_status_private = _ui_status_private;
ui_status_room = _ui_status_room;
ui_unread = _ui_unread;
ui_win_unread = _ui_win_unread;
ui_ask_password = _ui_ask_password;
ui_current_win_is_otr = _ui_current_win_is_otr;
ui_current_set_otr = _ui_current_set_otr;
ui_gone_secure = _ui_gone_secure;
ui_gone_insecure = _ui_gone_insecure;
2014-01-12 01:20:22 +00:00
ui_trust = _ui_trust;
ui_untrust = _ui_untrust;
2014-01-19 18:31:02 +00:00
ui_chat_win_contact_online = _ui_chat_win_contact_online;
ui_chat_win_contact_offline = _ui_chat_win_contact_offline;
2014-01-26 18:30:34 +00:00
ui_handle_recipient_not_found = _ui_handle_recipient_not_found;
2014-01-27 22:09:16 +00:00
ui_handle_recipient_error = _ui_handle_recipient_error;
ui_handle_error = _ui_handle_error;
ui_current_update_virtual = _ui_current_update_virtual;
2014-04-03 20:13:59 +00:00
ui_clear_win_title = _ui_clear_win_title;
2013-12-22 23:54:22 +00:00
}