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

2263 lines
59 KiB
C
Raw Normal View History

/*
2012-02-20 20:07:38 +00:00
* windows.c
*
* Copyright (C) 2012 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-05-04 00:00:01 +00:00
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>
2012-12-12 00:25:10 +00:00
2012-07-30 00:04:37 +00:00
#ifdef HAVE_LIBNOTIFY
2012-06-28 22:29:46 +00:00
#include <libnotify/notify.h>
#endif
2012-12-12 00:25:10 +00:00
#ifdef PLATFORM_CYGWIN
#include <windows.h>
#endif
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_log.h"
#include "chat_session.h"
2012-08-26 00:50:50 +00:00
#include "command.h"
2012-05-04 00:00:01 +00:00
#include "contact.h"
#include "contact_list.h"
#include "log.h"
2012-08-26 00:50:50 +00:00
#include "preferences.h"
2012-10-23 22:30:01 +00:00
#include "release.h"
2012-11-05 21:48:13 +00:00
#include "room_chat.h"
#include "theme.h"
2012-08-26 00:50:50 +00:00
#include "ui.h"
#include "window.h"
2012-02-05 23:08:15 +00:00
2012-03-01 00:34:54 +00:00
#define CONS_WIN_TITLE "_cons"
2012-03-01 01:02:10 +00:00
#define NUM_WINS 10
2012-03-01 00:34:54 +00:00
2012-03-01 00:40:51 +00:00
// holds console at index 0 and chat wins 1 through to 9
static ProfWin* windows[NUM_WINS];
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 int 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-02-12 22:09:07 +00:00
static void _create_windows(void);
2012-09-09 21:22:14 +00:00
static void _cons_splash_logo(void);
2012-08-16 00:39:19 +00:00
static void _cons_show_basic_help(void);
static void _cons_show_contact(PContact contact);
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);
2012-03-01 00:34:54 +00:00
static void _win_show_time(WINDOW *win);
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);
2012-10-18 15:18:44 +00:00
static void _win_show_error_msg(WINDOW *win, const char * const message);
static void _show_status_string(WINDOW *win, 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);
static void _cons_show_typing(const char * const short_from);
static void _cons_show_incoming_message(const char * const short_from,
2012-03-09 01:06:55 +00:00
const int win_index);
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 gint _win_get_unread(void);
static void _win_show_history(WINDOW *win, int win_index,
2012-10-14 21:36:29 +00:00
const char * const contact);
2012-10-23 23:59:18 +00:00
static gboolean _new_release(char *found_version);
static void _ui_draw_win_title(void);
2012-11-26 00:57:41 +00:00
static void _notify(const char * const message, int timeout,
2012-09-24 19:44:45 +00:00
const char * const category);
2012-11-26 00:57:41 +00:00
static void _notify_remind(gint unread);
static void _notify_message(const char * const short_from);
static void _notify_typing(const char * const from);
2012-02-05 23:29:09 +00:00
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);
mousemask(ALL_MOUSE_EVENTS, NULL);
2012-11-20 01:53:30 +00:00
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();
_create_windows();
2012-11-30 21:26:28 +00:00
#ifdef HAVE_LIBXSS
display = XOpenDisplay(0);
#endif
ui_idle_time = g_timer_new();
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 (dirty) {
_current_window_refresh();
dirty = FALSE;
}
inp_put_back();
}
static void
_ui_draw_win_title(void)
{
char new_win_title[100];
GString *version_str = g_string_new("");
if (prefs_get_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");
}
}
2012-11-29 20:11:46 +00:00
jabber_conn_status_t status = jabber_get_connection_status();
if (status == JABBER_CONNECTED) {
const char * const jid = jabber_get_jid();
gint unread = _win_get_unread();
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');
2012-11-29 20:11:46 +00:00
} else {
snprintf(new_win_title, sizeof(new_win_title), "%c]0;%s%s - %s%c", '\033', "Profanity", version_str->str, jid, '\007');
2012-11-29 20:11:46 +00:00
}
} else {
snprintf(new_win_title, sizeof(new_win_title), "%c]0;%s%s%c", '\033', "Profanity", version_str->str, '\007');
2012-11-29 20:11:46 +00:00
}
g_string_free(version_str, TRUE);
if (g_strcmp0(win_title, new_win_title) != 0) {
2013-01-05 00:38:50 +00:00
// print to x-window title bar
printf(new_win_title);
if (win_title != NULL) {
free(win_title);
}
win_title = strdup(new_win_title);
}
}
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;
2013-01-05 00:38:50 +00:00
// if we couldn't get a screensaverinfo, use profanity interaction idle time
// this may occur if compiled with libxss, but then run in a bare terminal
} else {
gdouble seconds_elapsed = g_timer_elapsed(ui_idle_time, NULL);
unsigned long ms_elapsed = seconds_elapsed * 1000.0;
return ms_elapsed;
}
2013-01-05 00:38:50 +00:00
// if not compiled with libxss, just use profanity interaction idle time
#else
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;
2012-11-30 21:26:28 +00:00
#endif
}
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
{
2012-09-24 19:51:10 +00:00
#ifdef HAVE_LIBNOTIFY
if (notify_is_initted()) {
notify_uninit();
}
#endif
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);
2012-04-17 22:28:21 +00:00
dirty = TRUE;
}
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;
}
2012-11-26 00:01:34 +00:00
void
ui_show_typing(const char * const from)
{
int win_index = _find_prof_win_index(from);
if (prefs_get_intype()) {
// no chat window for user
if (win_index == NUM_WINS) {
_cons_show_typing(from);
// have chat window but not currently in it
} else if (win_index != current_index) {
_cons_show_typing(from);
dirty = TRUE;
// in chat window with user
} else {
title_bar_set_typing(TRUE);
title_bar_draw();
status_bar_active(win_index);
dirty = TRUE;
}
}
if (prefs_get_notify_typing())
2012-11-26 00:57:41 +00:00
_notify_typing(from);
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)) {
jabber_send_gone(recipient);
} else if (chat_session_is_inactive(recipient) &&
!chat_session_get_sent(recipient)) {
jabber_send_inactive(recipient);
} else if (prefs_get_outtype() &&
chat_session_is_paused(recipient) &&
!chat_session_get_sent(recipient)) {
jabber_send_paused(recipient);
}
}
}
}
2012-07-24 22:19:48 +00:00
void
2012-11-26 00:57:41 +00:00
ui_show_incoming_msg(const char * const from, const char * const message,
GTimeVal *tv_stamp, gboolean priv)
2012-02-26 18:26:38 +00:00
{
win_type_t win_type;
if (priv) {
win_type = WIN_PRIVATE;
} else {
win_type = WIN_CHAT;
}
int win_index = _find_prof_win_index(from);
2012-03-01 01:02:10 +00:00
if (win_index == NUM_WINS)
win_index = _new_prof_win(from, win_type);
2012-03-01 00:34:54 +00:00
// no spare windows left
if (win_index == 0) {
if (tv_stamp == NULL) {
_win_show_time(console->win);
} 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 ", from);
wprintw(console->win, message + 4);
wprintw(console->win, "\n");
wattroff(console->win, COLOUR_THEM);
} else {
_win_show_user(console->win, from, 1);
_win_show_message(console->win, message);
}
cons_bad_show("Windows all used, close a window to respond.");
if (current_index == 0) {
dirty = TRUE;
} else {
status_bar_new(0);
}
// window found or created
} else {
WINDOW *win = windows[win_index]->win;
// currently viewing chat window with sender
if (win_index == current_index) {
if (tv_stamp == NULL) {
_win_show_time(win);
} else {
GDateTime *time = g_date_time_new_from_timeval_utc(tv_stamp);
gchar *date_fmt = g_date_time_format(time, "%H:%M:%S");
wattron(win, COLOUR_TIME);
wprintw(win, "%s - ", date_fmt);
wattroff(win, COLOUR_TIME);
g_date_time_unref(time);
g_free(date_fmt);
}
if (strncmp(message, "/me ", 4) == 0) {
wattron(win, COLOUR_THEM);
wprintw(win, "*%s ", from);
wprintw(win, message + 4);
wprintw(win, "\n");
wattroff(win, COLOUR_THEM);
} else {
_win_show_user(win, from, 1);
_win_show_message(win, message);
}
title_bar_set_typing(FALSE);
title_bar_draw();
status_bar_active(win_index);
dirty = TRUE;
// not currently viewing chat window with sender
} else {
status_bar_new(win_index);
_cons_show_incoming_message(from, win_index);
if (prefs_get_flash())
flash();
windows[win_index]->unread++;
if (prefs_get_chlog() && prefs_get_history()) {
_win_show_history(win, win_index, from);
}
if (tv_stamp == NULL) {
_win_show_time(win);
} else {
GDateTime *time = g_date_time_new_from_timeval_utc(tv_stamp);
gchar *date_fmt = g_date_time_format(time, "%H:%M:%S");
wattron(win, COLOUR_TIME);
wprintw(win, "%s - ", date_fmt);
wattroff(win, COLOUR_TIME);
g_date_time_unref(time);
g_free(date_fmt);
}
if (strncmp(message, "/me ", 4) == 0) {
wattron(win, COLOUR_THEM);
wprintw(win, "*%s ", from);
wprintw(win, message + 4);
wprintw(win, "\n");
wattroff(win, COLOUR_THEM);
} else {
_win_show_user(win, from, 1);
_win_show_message(win, message);
}
}
}
2012-04-24 00:11:39 +00:00
if (prefs_get_beep())
2012-04-24 00:24:54 +00:00
beep();
if (prefs_get_notify_message())
2012-11-26 00:57:41 +00:00
_notify_message(from);
2012-02-07 00:08:59 +00:00
}
2012-10-18 15:18:44 +00:00
void
2012-11-26 00:57:41 +00:00
ui_contact_online(const char * const from, const char * const show,
2012-12-09 03:07:33 +00:00
const char * const status, GDateTime *last_activity)
2012-10-18 15:18:44 +00:00
{
2012-12-09 03:07:33 +00:00
_show_status_string(console->win, from, show, status, last_activity, "++",
"online");
2012-10-18 15:18:44 +00:00
2012-11-26 00:57:41 +00:00
int win_index = _find_prof_win_index(from);
if (win_index != NUM_WINS) {
WINDOW *win = windows[win_index]->win;
2012-12-09 03:07:33 +00:00
_show_status_string(win, from, show, status, last_activity, "++",
"online");
2012-11-26 00:57:41 +00:00
}
2012-10-18 15:18:44 +00:00
2012-11-26 00:57:41 +00:00
if (win_index == current_index)
dirty = TRUE;
}
void
ui_contact_offline(const char * const from, const char * const show,
const char * const status)
{
2012-12-09 03:07:33 +00:00
_show_status_string(console->win, from, show, status, NULL, "--", "offline");
2012-11-26 00:57:41 +00:00
int win_index = _find_prof_win_index(from);
if (win_index != NUM_WINS) {
WINDOW *win = windows[win_index]->win;
2012-12-09 03:07:33 +00:00
_show_status_string(win, from, show, status, NULL, "--", "offline");
2012-11-26 00:57:41 +00:00
}
if (win_index == current_index)
dirty = TRUE;
}
void
ui_disconnected(void)
{
int i;
// show message in all active chats
for (i = 1; i < NUM_WINS; i++) {
if (windows[i] != NULL) {
WINDOW *win = windows[i]->win;
_win_show_time(win);
wattron(win, COLOUR_ERROR);
wprintw(win, "%s\n", "Lost connection.");
wattroff(win, COLOUR_ERROR);
// if current win, set dirty
if (i == current_index) {
dirty = TRUE;
}
}
2012-10-18 15:18:44 +00:00
}
}
2012-11-01 01:21:00 +00:00
void
2013-01-03 00:16:39 +00:00
ui_handle_special_keys(const wint_t * const ch)
2012-11-26 00:57:41 +00:00
{
_win_handle_switch(ch);
_win_handle_page(ch);
}
void
ui_switch_win(const int i)
{
win_current_page_off();
if (windows[i] != NULL) {
current_index = i;
current = windows[current_index];
win_current_page_off();
current->unread = 0;
if (i == 0) {
title_bar_title();
status_bar_active(0);
} else {
title_bar_set_recipient(current->from);
title_bar_draw();;
status_bar_active(i);
}
}
dirty = TRUE;
}
void
win_current_close(void)
{
window_free(current);
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();
dirty = TRUE;
}
int
win_current_is_chat(void)
{
return (current->type == WIN_CHAT);
}
int
win_current_is_groupchat(void)
{
return (current->type == WIN_MUC);
}
int
win_current_is_private(void)
{
return (current->type == WIN_PRIVATE);
}
char *
win_current_get_recipient(void)
{
return strdup(current->from);
}
void
2012-11-27 21:53:56 +00:00
win_current_show(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);
_win_show_time(current->win);
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
dirty = TRUE;
}
void
win_current_bad_show(const char * const msg)
{
WINDOW *win = current->win;
_win_show_time(win);
wattron(win, COLOUR_ERROR);
wprintw(win, "%s\n", msg);
wattroff(win, COLOUR_ERROR);
dirty = TRUE;
}
void
win_current_page_off(void)
{
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;
dirty = TRUE;
}
void
win_show_error_msg(const char * const from, const char *err_msg)
2012-11-01 01:21:00 +00:00
{
int win_index;
WINDOW *win;
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) {
win = windows[win_index]->win;
2012-11-01 01:21:00 +00:00
_win_show_time(win);
2012-11-26 00:57:41 +00:00
_win_show_error_msg(win, err_msg);
if (win_index == current_index) {
2012-11-01 01:21:00 +00:00
dirty = TRUE;
}
}
}
2012-11-11 12:00:21 +00:00
void
win_show_system_msg(const char * const from, const char *message)
{
int win_index;
WINDOW *win;
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);
dirty = TRUE;
}
win = windows[win_index]->win;
2012-11-11 12:00:21 +00:00
_win_show_time(win);
wprintw(win, "*%s %s\n", bare_jid, message);
// this is the current window
if (win_index == current_index) {
2012-11-11 12:00:21 +00:00
dirty = TRUE;
}
}
2012-11-26 00:57:41 +00:00
void
win_show_gone(const char * const from)
{
2012-11-26 00:57:41 +00:00
int win_index;
WINDOW *win;
2012-11-26 00:57:41 +00:00
if (from == NULL)
return;
2012-11-26 00:57:41 +00:00
win_index = _find_prof_win_index(from);
// chat window exists
if (win_index < NUM_WINS) {
win = windows[win_index]->win;
_win_show_time(win);
wattron(win, COLOUR_GONE);
wprintw(win, "*%s ", from);
wprintw(win, "has left the conversation.");
wprintw(win, "\n");
wattroff(win, COLOUR_GONE);
if (win_index == current_index) {
dirty = TRUE;
}
}
2012-06-28 22:29:46 +00:00
}
void
win_new_chat_win(const char * const to)
{
// if the contact is offline, show a message
PContact contact = contact_list_get_contact(to);
int win_index = _find_prof_win_index(to);
WINDOW *win = NULL;
// create new window
if (win_index == NUM_WINS) {
win_index = _new_prof_win(to, WIN_CHAT);
win = windows[win_index]->win;
if (prefs_get_chlog() && prefs_get_history()) {
_win_show_history(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);
2012-12-09 03:07:33 +00:00
_show_status_string(win, to, show, status, NULL, "--", "offline");
}
}
// use existing window
} else {
win = windows[win_index]->win;
}
ui_switch_win(win_index);
}
2012-07-24 22:19:48 +00:00
void
win_show_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 = contact_list_get_contact(to);
int win_index = _find_prof_win_index(to);
WINDOW *win = NULL;
// create new window
if (win_index == NUM_WINS) {
if (room_is_active(to)) {
win_index = _new_prof_win(to, WIN_PRIVATE);
} else {
win_index = _new_prof_win(to, WIN_CHAT);
}
win = windows[win_index]->win;
if (prefs_get_chlog() && prefs_get_history()) {
_win_show_history(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);
2012-12-09 03:07:33 +00:00
_show_status_string(win, to, show, status, NULL, "--", "offline");
2012-10-04 22:55:15 +00:00
}
}
// use existing window
} else {
win = windows[win_index]->win;
}
_win_show_time(win);
2012-10-28 02:52:52 +00:00
if (strncmp(message, "/me ", 4) == 0) {
2012-11-21 00:21:58 +00:00
wattron(win, COLOUR_ME);
2012-10-28 02:52:52 +00:00
wprintw(win, "*%s ", from);
wprintw(win, message + 4);
wprintw(win, "\n");
2012-11-21 00:21:58 +00:00
wattroff(win, COLOUR_ME);
2012-10-28 02:52:52 +00:00
} else {
2012-10-30 22:32:22 +00:00
_win_show_user(win, from, 0);
2012-10-28 02:52:52 +00:00
_win_show_message(win, message);
}
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
2012-11-10 18:32:33 +00:00
win_join_chat(const char * const room, const char * const nick)
2012-11-05 21:36:32 +00:00
{
2012-11-10 18:32:33 +00:00
int win_index = _find_prof_win_index(room);
2012-11-05 21:36:32 +00:00
// create new window
if (win_index == NUM_WINS) {
2012-11-12 23:05:22 +00:00
win_index = _new_prof_win(room, 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
2012-11-07 22:46:20 +00:00
win_show_room_roster(const char * const room)
2012-11-05 21:36:32 +00:00
{
2012-11-07 22:46:20 +00:00
int win_index = _find_prof_win_index(room);
WINDOW *win = windows[win_index]->win;
2012-11-05 21:36:32 +00:00
2012-11-08 00:05:32 +00:00
GList *roster = room_get_roster(room);
2012-11-07 22:46:20 +00:00
if ((roster == NULL) || (g_list_length(roster) == 0)) {
2012-11-21 00:21:58 +00:00
wattron(win, COLOUR_ROOMINFO);
wprintw(win, "You are alone!\n");
2012-11-21 00:21:58 +00:00
wattroff(win, COLOUR_ROOMINFO);
} else {
2012-11-21 00:21:58 +00:00
wattron(win, COLOUR_ROOMINFO);
2012-11-07 22:46:20 +00:00
wprintw(win, "Room occupants:\n");
2012-11-21 00:21:58 +00:00
wattroff(win, COLOUR_ROOMINFO);
wattron(win, COLOUR_ONLINE);
2012-11-07 22:46:20 +00:00
while (roster != NULL) {
PContact member = roster->data;
const char const *name = p_contact_jid(member);
const char const *show = p_contact_presence(member);
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);
}
wprintw(win, "%s", name);
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);
}
if (roster->next != NULL) {
wprintw(win, ", ");
}
roster = g_list_next(roster);
2012-11-07 22:46:20 +00:00
}
wprintw(win, "\n");
wattroff(win, COLOUR_ONLINE);
}
2012-11-05 21:36:32 +00:00
if (win_index == current_index)
2012-11-05 21:36:32 +00:00
dirty = TRUE;
}
2012-11-08 00:05:32 +00:00
void
win_show_room_member_offline(const char * const room, const char * const nick)
{
int win_index = _find_prof_win_index(room);
WINDOW *win = windows[win_index]->win;
2012-11-08 00:05:32 +00:00
_win_show_time(win);
wattron(win, COLOUR_OFFLINE);
wprintw(win, "-- %s has left the room.\n", nick);
wattroff(win, COLOUR_OFFLINE);
if (win_index == current_index)
2012-11-08 00:05:32 +00:00
dirty = TRUE;
}
void
2012-11-18 21:46:58 +00:00
win_show_room_member_online(const char * const room, const char * const nick,
const char * const show, const char * const status)
2012-11-08 00:05:32 +00:00
{
int win_index = _find_prof_win_index(room);
WINDOW *win = windows[win_index]->win;
2012-11-08 00:05:32 +00:00
_win_show_time(win);
wattron(win, COLOUR_ONLINE);
wprintw(win, "++ %s has joined the room.\n", nick);
wattroff(win, COLOUR_ONLINE);
if (win_index == current_index)
2012-11-08 00:05:32 +00:00
dirty = TRUE;
}
2012-11-18 21:46:58 +00:00
void
2012-11-19 00:26:31 +00:00
win_show_room_member_presence(const char * const room, const char * const nick,
const char * const show, const char * const status)
{
int win_index = _find_prof_win_index(room);
if (win_index != NUM_WINS) {
WINDOW *win = windows[win_index]->win;
2012-12-09 03:07:33 +00:00
_show_status_string(win, nick, show, status, NULL, "++", "online");
2012-11-19 00:26:31 +00:00
}
if (win_index == current_index)
2012-11-19 00:26:31 +00:00
dirty = TRUE;
}
void
2012-11-18 21:46:58 +00:00
win_show_room_member_nick_change(const char * const room,
const char * const old_nick, const char * const nick)
{
int win_index = _find_prof_win_index(room);
WINDOW *win = windows[win_index]->win;
2012-11-18 21:46:58 +00:00
_win_show_time(win);
2012-11-21 00:21:58 +00:00
wattron(win, COLOUR_THEM);
2012-11-18 21:46:58 +00:00
wprintw(win, "** %s is now known as %s\n", old_nick, nick);
2012-11-21 00:21:58 +00:00
wattroff(win, COLOUR_THEM);
2012-11-18 21:46:58 +00:00
if (win_index == current_index)
2012-11-18 21:46:58 +00:00
dirty = TRUE;
}
void
win_show_room_nick_change(const char * const room, const char * const nick)
{
int win_index = _find_prof_win_index(room);
WINDOW *win = windows[win_index]->win;
2012-11-18 21:46:58 +00:00
_win_show_time(win);
2012-11-21 00:21:58 +00:00
wattron(win, COLOUR_ME);
wprintw(win, "** You are now known as %s\n", nick);
2012-11-21 00:21:58 +00:00
wattroff(win, COLOUR_ME);
if (win_index == current_index)
dirty = TRUE;
2012-11-18 21:46:58 +00:00
}
2012-11-05 22:21:03 +00:00
void
win_show_room_history(const char * const room_jid, const char * const nick,
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);
wprintw(win, message + 4);
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)
2012-11-05 22:21:03 +00:00
dirty = TRUE;
}
2012-11-05 22:28:06 +00:00
void
win_show_room_message(const char * const room_jid, const char * const nick,
const char * const message)
{
int win_index = _find_prof_win_index(room_jid);
WINDOW *win = windows[win_index]->win;
2012-11-05 22:28:06 +00:00
_win_show_time(win);
2012-11-05 23:24:29 +00:00
if (strcmp(nick, room_get_nick_for_room(room_jid)) != 0) {
2012-11-10 04:18:34 +00:00
if (strncmp(message, "/me ", 4) == 0) {
2012-11-21 00:21:58 +00:00
wattron(win, COLOUR_THEM);
2012-11-10 04:18:34 +00:00
wprintw(win, "*%s ", nick);
wprintw(win, message + 4);
wprintw(win, "\n");
2012-11-21 00:21:58 +00:00
wattroff(win, COLOUR_THEM);
2012-11-10 04:18:34 +00:00
} else {
_win_show_user(win, nick, 1);
_win_show_message(win, message);
}
2012-11-05 23:24:29 +00:00
} else {
2012-11-10 04:18:34 +00:00
if (strncmp(message, "/me ", 4) == 0) {
2012-11-21 00:21:58 +00:00
wattron(win, COLOUR_ME);
2012-11-10 04:18:34 +00:00
wprintw(win, "*%s ", nick);
wprintw(win, message + 4);
wprintw(win, "\n");
2012-11-21 00:21:58 +00:00
wattroff(win, COLOUR_ME);
2012-11-10 04:18:34 +00:00
} else {
_win_show_user(win, nick, 0);
_win_show_message(win, message);
}
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);
2012-11-05 22:28:06 +00:00
dirty = TRUE;
// not currenlty on groupchat window
} else {
status_bar_new(win_index);
_cons_show_incoming_message(nick, win_index);
if (current_index == 0) {
dirty = TRUE;
}
2012-11-05 23:24:29 +00:00
if (strcmp(nick, room_get_nick_for_room(room_jid)) != 0) {
if (prefs_get_flash()) {
flash();
}
}
windows[win_index]->unread++;
}
2012-11-05 23:24:29 +00:00
if (strcmp(nick, room_get_nick_for_room(room_jid)) != 0) {
if (prefs_get_beep()) {
beep();
}
if (prefs_get_notify_message()) {
2012-11-26 00:57:41 +00:00
_notify_message(nick);
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
win_show_room_subject(const char * const room_jid, const char * const subject)
{
int win_index = _find_prof_win_index(room_jid);
WINDOW *win = windows[win_index]->win;
2012-11-10 03:30:27 +00:00
2012-11-21 00:21:58 +00:00
wattron(win, COLOUR_ROOMINFO);
2012-11-10 03:30:27 +00:00
wprintw(win, "Room subject: ");
2012-11-21 00:21:58 +00:00
wattroff(win, COLOUR_ROOMINFO);
2012-11-10 03:30:27 +00:00
wprintw(win, "%s\n", subject);
// currently in groupchat window
if (win_index == current_index) {
2012-11-10 03:30:27 +00:00
status_bar_active(win_index);
dirty = TRUE;
// not currenlty on groupchat window
} else {
status_bar_new(win_index);
}
}
2012-11-19 22:15:53 +00:00
void
win_show_room_broadcast(const char * const room_jid, const char * const message)
{
int win_index = _find_prof_win_index(room_jid);
WINDOW *win = windows[win_index]->win;
2012-11-19 22:15:53 +00:00
2012-11-21 00:21:58 +00:00
wattron(win, COLOUR_ROOMINFO);
2012-11-19 22:15:53 +00:00
wprintw(win, "Room message: ");
2012-11-21 00:21:58 +00:00
wattroff(win, COLOUR_ROOMINFO);
2012-11-19 22:15:53 +00:00
wprintw(win, "%s\n", message);
// currently in groupchat window
if (win_index == current_index) {
2012-11-19 22:15:53 +00:00
status_bar_active(win_index);
dirty = TRUE;
// not currenlty on groupchat window
} else {
status_bar_new(win_index);
}
}
void
2012-11-26 00:57:41 +00:00
cons_show_wins(void)
{
2012-11-26 00:57:41 +00:00
int i = 0;
int count = 0;
2012-11-26 00:57:41 +00:00
cons_show("");
cons_show("Active windows:");
_win_show_time(console->win);
wprintw(console->win, "1: Console\n");
2012-11-26 00:57:41 +00:00
for (i = 1; i < NUM_WINS; i++) {
if (windows[i] != NULL) {
count++;
}
}
2012-11-26 00:57:41 +00:00
if (count != 0) {
for (i = 1; i < NUM_WINS; i++) {
if (windows[i] != NULL) {
ProfWin *window = windows[i];
_win_show_time(console->win);
2012-11-26 00:57:41 +00:00
switch (window->type)
{
case WIN_CHAT:
wprintw(console->win, "%d: chat %s", i + 1, window->from);
PContact contact = contact_list_get_contact(window->from);
2012-03-01 01:37:09 +00:00
2012-11-26 00:57:41 +00:00
if (contact != NULL) {
if (p_contact_name(contact) != NULL) {
wprintw(console->win, " (%s)", p_contact_name(contact));
}
wprintw(console->win, " - %s", p_contact_presence(contact));
}
2012-11-26 00:57:41 +00:00
if (window->unread > 0) {
wprintw(console->win, ", %d unread", window->unread);
}
2012-11-26 00:57:41 +00:00
break;
2012-03-01 01:37:09 +00:00
2012-11-26 00:57:41 +00:00
case WIN_PRIVATE:
wprintw(console->win, "%d: private %s", i + 1, window->from);
2012-11-26 00:57:41 +00:00
if (window->unread > 0) {
wprintw(console->win, ", %d unread", window->unread);
}
break;
case WIN_MUC:
wprintw(console->win, "%d: room %s", i + 1, window->from);
if (window->unread > 0) {
wprintw(console->win, ", %d unread", window->unread);
}
break;
default:
break;
}
wprintw(console->win, "\n");
}
}
}
}
void
2012-11-26 00:57:41 +00:00
cons_show_status(const char * const contact)
{
PContact pcontact = contact_list_get_contact(contact);
if (pcontact != NULL) {
_cons_show_contact(pcontact);
} else {
cons_show("No such contact %s in roster.", contact);
}
}
2012-12-09 22:58:45 +00:00
void
cons_show_account(ProfAccount *account)
{
cons_show("%s account details:", account->name);
cons_show("jid : %s", account->jid);
if (account->enabled) {
cons_show("enabled : TRUE");
} else {
cons_show("enabled : FALSE");
}
if (account->server != NULL) {
cons_show("server : %s", account->server);
}
cons_show("");
}
2012-07-24 22:19:48 +00:00
void
cons_show_ui_prefs(void)
2012-07-19 22:43:50 +00:00
{
cons_show("UI preferences:");
2012-07-19 22:43:50 +00:00
cons_show("");
gchar *theme = prefs_get_theme();
if (theme == NULL) {
cons_show("Theme (/theme) : default");
} else {
cons_show("Theme (/theme) : %s", theme);
}
2012-11-22 01:49:50 +00:00
if (prefs_get_beep())
cons_show("Terminal beep (/beep) : ON");
2012-07-19 22:43:50 +00:00
else
cons_show("Terminal beep (/beep) : OFF");
2012-11-12 19:59:21 +00:00
if (prefs_get_flash())
cons_show("Terminal flash (/flash) : ON");
else
cons_show("Terminal flash (/flash) : OFF");
if (prefs_get_intype())
cons_show("Show typing (/intype) : ON");
else
cons_show("Show typing (/intype) : OFF");
2012-12-02 02:21:59 +00:00
if (prefs_get_splash())
cons_show("Splash screen (/splash) : ON");
else
2012-12-02 02:21:59 +00:00
cons_show("Splash screen (/splash) : OFF");
2012-10-14 17:26:08 +00:00
if (prefs_get_history())
cons_show("Chat history (/history) : ON");
2012-10-14 17:26:08 +00:00
else
cons_show("Chat history (/history) : OFF");
2012-10-14 17:26:08 +00:00
2012-10-24 00:35:36 +00:00
if (prefs_get_vercheck())
cons_show("Version checking (/vercheck) : ON");
else
cons_show("Version checking (/vercheck) : OFF");
}
void
cons_show_desktop_prefs(void)
{
cons_show("Desktop notification preferences:");
cons_show("");
if (prefs_get_notify_message())
cons_show("Messages (/notify message) : ON");
else
cons_show("Messages (/notify message) : OFF");
if (prefs_get_notify_typing())
cons_show("Composing (/notify typing) : ON");
2012-10-24 00:35:36 +00:00
else
cons_show("Composing (/notify typing) : OFF");
2012-10-24 00:35:36 +00:00
gint remind_period = prefs_get_notify_remind();
if (remind_period == 0) {
cons_show("Reminder period (/notify remind) : OFF");
} else if (remind_period == 1) {
cons_show("Reminder period (/notify remind) : 1 second");
} else {
cons_show("Reminder period (/notify remind) : %d seconds", remind_period);
}
}
void
cons_show_chat_prefs(void)
{
cons_show("Chat preferences:");
cons_show("");
if (prefs_get_states())
cons_show("Send chat states (/states) : ON");
else
cons_show("Send chat states (/states) : OFF");
if (prefs_get_outtype())
cons_show("Send composing (/outtype) : ON");
else
cons_show("Send composing (/outtype) : OFF");
gint gone_time = prefs_get_gone();
if (gone_time == 0) {
cons_show("Leave conversation (/gone) : OFF");
} else if (gone_time == 1) {
cons_show("Leave conversation (/gone) : 1 minute");
} else {
cons_show("Leave conversation (/gone) : %d minutes", gone_time);
}
}
void
cons_show_log_prefs(void)
{
cons_show("Logging preferences:");
cons_show("");
cons_show("Max log size (/log maxsize) : %d bytes", prefs_get_max_log_size());
if (prefs_get_chlog())
cons_show("Chat logging (/chlog) : ON");
else
cons_show("Chat logging (/chlog) : OFF");
}
void
2012-11-30 23:34:14 +00:00
cons_show_presence_prefs(void)
{
2012-11-30 23:34:14 +00:00
cons_show("Presence preferences:");
cons_show("");
2012-11-30 23:34:14 +00:00
cons_show("Priority (/priority) : %d", prefs_get_priority());
if (strcmp(prefs_get_autoaway_mode(), "off") == 0) {
cons_show("Autoaway (/autoaway mode) : OFF");
} else {
cons_show("Autoaway (/autoaway mode) : %s", prefs_get_autoaway_mode());
}
2012-12-02 02:21:59 +00:00
cons_show("Autoaway minutes (/autoaway time) : %d minutes", prefs_get_autoaway_time());
2012-11-30 23:34:14 +00:00
if ((prefs_get_autoaway_message() == NULL) ||
(strcmp(prefs_get_autoaway_message(), "") == 0)) {
cons_show("Autoaway message (/autoaway message) : OFF");
} else {
cons_show("Autoaway message (/autoaway message) : \"%s\"", prefs_get_autoaway_message());
}
if (prefs_get_autoaway_check()) {
cons_show("Autoaway check (/autoaway check) : ON");
} else {
cons_show("Autoaway check (/autoaway check) : OFF");
}
}
void
cons_show_connection_prefs(void)
{
cons_show("Connection preferences:");
cons_show("");
gint reconnect_interval = prefs_get_reconnect();
if (reconnect_interval == 0) {
cons_show("Reconnect interval (/reconnect) : OFF");
} else if (reconnect_interval == 1) {
cons_show("Reconnect interval (/reconnect) : 1 second");
} else {
cons_show("Reconnect interval (/reconnect) : %d seconds", reconnect_interval);
}
gint autoping_interval = prefs_get_autoping();
if (autoping_interval == 0) {
cons_show("Autoping interval (/autoping) : OFF");
} else if (autoping_interval == 1) {
cons_show("Autoping interval (/autoping) : 1 second");
} else {
cons_show("Autoping interval (/autoping) : %d seconds", autoping_interval);
}
}
2012-12-09 00:21:33 +00:00
void
cons_show_themes(GSList *themes)
{
cons_show("");
if (themes == NULL) {
cons_show("No available themes.");
} else {
cons_show("Available themes:");
while (themes != NULL) {
cons_show(themes->data);
themes = g_slist_next(themes);
}
}
}
void
cons_prefs(void)
{
cons_show("");
cons_show_ui_prefs();
cons_show("");
cons_show_desktop_prefs();
cons_show("");
cons_show_chat_prefs();
cons_show("");
cons_show_log_prefs();
cons_show("");
2012-11-30 23:34:14 +00:00
cons_show_presence_prefs();
cons_show("");
cons_show_connection_prefs();
2012-07-19 22:43:50 +00:00
cons_show("");
if (current_index == 0) {
2012-07-19 22:43:50 +00:00
dirty = TRUE;
} else {
status_bar_new(0);
}
2012-07-19 22:43:50 +00:00
}
2012-08-16 00:39:19 +00:00
static void
_cons_show_basic_help(void)
{
2012-03-11 00:39:13 +00:00
cons_show("");
2012-08-22 23:30:11 +00:00
GSList *basic_helpers = cmd_get_basic_help();
while (basic_helpers != NULL) {
struct cmd_help_t *help = (struct cmd_help_t *)basic_helpers->data;
cons_show("%-30s: %s", help->usage, help->short_help);
basic_helpers = g_slist_next(basic_helpers);
}
2012-05-28 22:40:11 +00:00
cons_show("");
2012-08-16 00:39:19 +00:00
}
void
cons_help(void)
{
cons_show("");
2012-11-11 23:57:02 +00:00
cons_show("Choose a help option:");
cons_show("");
2012-11-11 23:57:02 +00:00
cons_show("/help list - List all commands.");
2012-11-14 19:27:37 +00:00
cons_show("/help basic - Summary of basic usage commands.");
cons_show("/help presence - Summary of online status change commands.");
2012-11-11 23:57:02 +00:00
cons_show("/help settings - Summary of commands for changing Profanity settings.");
cons_show("/help navigation - How to navigate around Profanity.");
2012-11-11 23:57:02 +00:00
cons_show("/help [command] - Detailed help on a specific command.");
cons_show("");
if (current_index == 0) {
dirty = TRUE;
} else {
status_bar_new(0);
}
}
void
cons_basic_help(void)
2012-08-16 00:39:19 +00:00
{
2012-08-16 00:47:23 +00:00
cons_show("");
cons_show("Basic Commands:");
2012-08-16 00:39:19 +00:00
_cons_show_basic_help();
if (current_index == 0) {
dirty = TRUE;
} else {
status_bar_new(0);
}
}
void
cons_settings_help(void)
{
cons_show("");
2012-05-28 22:40:11 +00:00
cons_show("Settings:");
cons_show("");
2012-08-22 23:30:11 +00:00
GSList *settings_helpers = cmd_get_settings_help();
while (settings_helpers != NULL) {
struct cmd_help_t *help = (struct cmd_help_t *)settings_helpers->data;
2012-12-09 18:59:11 +00:00
cons_show("%-27s: %s", help->usage, help->short_help);
settings_helpers = g_slist_next(settings_helpers);
}
2012-10-22 23:00:10 +00:00
cons_show("");
if (current_index == 0) {
dirty = TRUE;
} else {
status_bar_new(0);
}
}
void
cons_presence_help(void)
{
2012-05-28 22:40:11 +00:00
cons_show("");
cons_show("Presence changes:");
2012-05-28 22:40:11 +00:00
cons_show("");
GSList *presence_helpers = cmd_get_presence_help();
while (presence_helpers != NULL) {
struct cmd_help_t *help = (struct cmd_help_t *)presence_helpers->data;
2012-10-03 21:19:46 +00:00
cons_show("%-25s: %s", help->usage, help->short_help);
presence_helpers = g_slist_next(presence_helpers);
}
cons_show("");
if (current_index == 0) {
dirty = TRUE;
} else {
status_bar_new(0);
}
}
void
cons_navigation_help(void)
{
2012-03-11 00:39:13 +00:00
cons_show("");
2012-06-19 00:21:02 +00:00
cons_show("Navigation:");
2012-03-11 00:39:13 +00:00
cons_show("");
2012-11-26 02:33:32 +00:00
cons_show("Alt-1 : This console window.");
cons_show("Alt-2..Alt-0 : Chat windows.");
2012-07-17 23:29:07 +00:00
cons_show("F1 : This console window.");
2012-11-26 02:33:32 +00:00
cons_show("F2..F10 : Chat windows.");
2012-07-17 23:29:07 +00:00
cons_show("UP, DOWN : Navigate input history.");
cons_show("LEFT, RIGHT, HOME, END : Edit current input.");
cons_show("ESC : Clear current input.");
2012-11-26 02:33:32 +00:00
cons_show("TAB : Autocomplete command/recipient/login.");
2012-07-17 23:29:07 +00:00
cons_show("PAGE UP, PAGE DOWN : Page the main window.");
2012-11-26 02:33:32 +00:00
cons_show("Mouse wheel : Scroll the main window.");
2012-05-28 22:40:11 +00:00
cons_show("");
if (current_index == 0) {
dirty = TRUE;
} else {
status_bar_new(0);
}
2012-02-09 02:47:25 +00:00
}
2012-07-24 22:19:48 +00:00
void
cons_show_contacts(GSList *list)
2012-03-08 23:03:26 +00:00
{
2012-05-09 23:30:03 +00:00
GSList *curr = list;
while(curr) {
2012-05-09 23:30:03 +00:00
PContact contact = curr->data;
2012-11-13 22:14:40 +00:00
if (strcmp(p_contact_subscription(contact), "none") != 0) {
_cons_show_contact(contact);
}
2012-05-09 23:30:03 +00:00
curr = g_slist_next(curr);
2012-03-08 23:03:26 +00:00
}
}
2012-07-24 22:19:48 +00:00
void
2012-11-10 01:39:42 +00:00
cons_bad_show(const char * const msg, ...)
2012-02-19 00:43:35 +00:00
{
2012-11-10 01:39:42 +00:00
va_list arg;
va_start(arg, msg);
GString *fmt_msg = g_string_new(NULL);
g_string_vprintf(fmt_msg, msg, arg);
_win_show_time(console->win);
wattron(console->win, COLOUR_ERROR);
wprintw(console->win, "%s\n", fmt_msg->str);
wattroff(console->win, COLOUR_ERROR);
2012-11-10 01:39:42 +00:00
g_string_free(fmt_msg, TRUE);
va_end(arg);
if (current_index == 0) {
dirty = TRUE;
} else {
status_bar_new(0);
}
2012-02-19 00:43:35 +00:00
}
2012-11-11 23:57:02 +00:00
void
cons_show_time(void)
{
_win_show_time(console->win);
2012-11-11 23:57:02 +00:00
}
2012-07-24 22:19:48 +00:00
void
2012-10-03 21:06:04 +00:00
cons_show(const char * const msg, ...)
2012-02-19 00:43:35 +00:00
{
2012-10-03 21:06:04 +00:00
va_list arg;
va_start(arg, msg);
GString *fmt_msg = g_string_new(NULL);
g_string_vprintf(fmt_msg, msg, arg);
_win_show_time(console->win);
wprintw(console->win, "%s\n", fmt_msg->str);
2012-10-03 21:06:04 +00:00
g_string_free(fmt_msg, TRUE);
va_end(arg);
if (current_index == 0) {
dirty = TRUE;
} else {
status_bar_new(0);
}
2012-02-19 00:43:35 +00:00
}
2012-11-11 23:57:02 +00:00
void
cons_show_word(const char * const word)
{
wprintw(console->win, "%s", word);
2012-11-11 23:57:02 +00:00
if (current_index == 0) {
2012-11-11 23:57:02 +00:00
dirty = TRUE;
} else {
status_bar_new(0);
}
2012-11-11 23:57:02 +00:00
}
2012-07-24 22:19:48 +00:00
void
cons_bad_command(const char * const cmd)
{
_win_show_time(console->win);
wprintw(console->win, "Unknown command: %s\n", cmd);
if (current_index == 0) {
dirty = TRUE;
} else {
status_bar_new(0);
}
2012-02-05 23:29:09 +00:00
}
void
cons_about(void)
{
int rows, cols;
getmaxyx(stdscr, rows, cols);
2012-12-02 02:21:59 +00:00
if (prefs_get_splash()) {
2012-09-09 21:22:14 +00:00
_cons_splash_logo();
} else {
_win_show_time(console->win);
2012-10-23 22:52:40 +00:00
2012-10-23 23:59:18 +00:00
if (strcmp(PACKAGE_STATUS, "development") == 0) {
wprintw(console->win, "Welcome to Profanity, version %sdev\n", PACKAGE_VERSION);
2012-10-23 22:52:40 +00:00
} else {
wprintw(console->win, "Welcome to Profanity, version %s\n", PACKAGE_VERSION);
2012-10-23 22:52:40 +00:00
}
}
2012-09-09 21:22:14 +00:00
_win_show_time(console->win);
wprintw(console->win, "Copyright (C) 2012 James Booth <%s>.\n", PACKAGE_BUGREPORT);
_win_show_time(console->win);
wprintw(console->win, "License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n");
_win_show_time(console->win);
wprintw(console->win, "\n");
_win_show_time(console->win);
wprintw(console->win, "This is free software; you are free to change and redistribute it.\n");
_win_show_time(console->win);
wprintw(console->win, "There is NO WARRANTY, to the extent permitted by law.\n");
_win_show_time(console->win);
wprintw(console->win, "\n");
_win_show_time(console->win);
wprintw(console->win, "Type '/help' to show complete help.\n");
_win_show_time(console->win);
wprintw(console->win, "\n");
2012-10-24 00:35:36 +00:00
if (prefs_get_vercheck()) {
cons_check_version(FALSE);
}
prefresh(console->win, 0, 0, 1, 0, rows-3, cols-1);
if (current_index == 0) {
dirty = TRUE;
} else {
status_bar_new(0);
}
2012-10-24 00:35:36 +00:00
}
2012-10-24 00:35:36 +00:00
void
cons_check_version(gboolean not_available_msg)
{
char *latest_release = release_get_latest();
if (latest_release != NULL) {
gboolean relase_valid = g_regex_match_simple("^\\d+\\.\\d+\\.\\d+$", latest_release, 0, 0);
if (relase_valid) {
if (_new_release(latest_release)) {
_win_show_time(console->win);
wprintw(console->win, "A new version of Profanity is available: %s", latest_release);
_win_show_time(console->win);
wprintw(console->win, "Check <http://www.profanity.im> for details.\n");
2012-10-24 00:35:36 +00:00
free(latest_release);
_win_show_time(console->win);
wprintw(console->win, "\n");
2012-10-24 00:35:36 +00:00
} else {
if (not_available_msg) {
cons_show("No new version available.");
cons_show("");
2012-10-23 23:59:18 +00:00
}
}
if (current_index == 0) {
dirty = TRUE;
} else {
status_bar_new(0);
}
}
}
}
2012-02-13 00:53:10 +00:00
2012-11-26 00:57:41 +00:00
void
notify_remind(void)
{
gint unread = _win_get_unread();
if (unread > 0) {
_notify_remind(unread);
}
}
static void
_notify(const char * const message, int timeout,
const char * const category)
{
2012-12-11 23:48:12 +00:00
#ifdef HAVE_LIBNOTIFY
2012-11-26 00:57:41 +00:00
gboolean notify_initted = notify_is_initted();
if (!notify_initted) {
notify_initted = notify_init("Profanity");
}
if (notify_initted) {
NotifyNotification *notification;
notification = notify_notification_new("Profanity", message, NULL);
notify_notification_set_timeout(notification, timeout);
notify_notification_set_category(notification, category);
notify_notification_set_urgency(notification, NOTIFY_URGENCY_NORMAL);
GError *error = NULL;
gboolean notify_success = notify_notification_show(notification, &error);
if (!notify_success) {
log_error("Error sending desktop notification:");
log_error(" -> Message : %s", message);
log_error(" -> Error : %s", error->message);
}
} else {
log_error("Libnotify initialisation error.");
}
2012-12-11 23:48:12 +00:00
#endif
2012-12-12 00:25:10 +00:00
#ifdef PLATFORM_CYGWIN
NOTIFYICONDATA nid;
nid.cbSize = sizeof(NOTIFYICONDATA);
//nid.hWnd = hWnd;
nid.uID = 100;
nid.uVersion = NOTIFYICON_VERSION;
//nid.uCallbackMessage = WM_MYMESSAGE;
nid.hIcon = LoadIcon(NULL, IDI_APPLICATION);
strcpy(nid.szTip, "Tray Icon");
nid.uFlags = NIF_MESSAGE | NIF_ICON | NIF_TIP;
Shell_NotifyIcon(NIM_ADD, &nid);
// For a Ballon Tip
nid.uFlags = NIF_INFO;
strcpy(nid.szInfoTitle, "Profanity"); // Title
2012-12-12 00:30:31 +00:00
strcpy(nid.szInfo, message); // Copy Tip
nid.uTimeout = timeout; // 3 Seconds
2012-12-12 00:25:10 +00:00
nid.dwInfoFlags = NIIF_INFO;
Shell_NotifyIcon(NIM_MODIFY, &nid);
#endif
2012-11-26 00:57:41 +00:00
}
static void
_notify_remind(gint unread)
{
char message[20];
if (unread == 1) {
sprintf(message, "1 unread message");
} else {
snprintf(message, sizeof(message), "%d unread messages", unread);
}
_notify(message, 5000, "Incoming message");
}
static void
_notify_message(const char * const short_from)
{
char message[strlen(short_from) + 1 + 10];
sprintf(message, "%s: message.", short_from);
_notify(message, 10000, "Incoming message");
}
static void
_notify_typing(const char * const from)
{
char message[strlen(from) + 1 + 11];
sprintf(message, "%s: typing...", from);
_notify(message, 10000, "Incoming message");
}
static void
_create_windows(void)
{
int cols = getmaxx(stdscr);
max_cols = cols;
windows[0] = window_create(CONS_WIN_TITLE, cols, WIN_CONSOLE);
console = windows[0];
current = console;
cons_about();
}
2012-10-23 23:59:18 +00:00
static gboolean
_new_release(char *found_version)
{
int curr_maj, curr_min, curr_patch, found_maj, found_min, found_patch;
int parse_curr = sscanf(PACKAGE_VERSION, "%d.%d.%d", &curr_maj, &curr_min,
&curr_patch);
int parse_found = sscanf(found_version, "%d.%d.%d", &found_maj, &found_min,
&found_patch);
if (parse_found == 3 && parse_curr == 3) {
if (found_maj > curr_maj) {
return TRUE;
} else if (found_maj == curr_maj && found_min > curr_min) {
return TRUE;
} else if (found_maj == curr_maj && found_min == curr_min
&& found_patch > curr_patch) {
return TRUE;
} else {
return FALSE;
}
} else {
return FALSE;
}
}
2012-07-24 22:19:48 +00:00
static void
2012-09-09 21:22:14 +00:00
_cons_splash_logo(void)
{
_win_show_time(console->win);
wprintw(console->win, "Welcome to\n");
_win_show_time(console->win);
wattron(console->win, COLOUR_SPLASH);
wprintw(console->win, " ___ _ \n");
wattroff(console->win, COLOUR_SPLASH);
_win_show_time(console->win);
wattron(console->win, COLOUR_SPLASH);
wprintw(console->win, " / __) (_)_ \n");
wattroff(console->win, COLOUR_SPLASH);
_win_show_time(console->win);
wattron(console->win, COLOUR_SPLASH);
wprintw(console->win, " ____ ____ ___ | |__ ____ ____ _| |_ _ _ \n");
wattroff(console->win, COLOUR_SPLASH);
_win_show_time(console->win);
wattron(console->win, COLOUR_SPLASH);
wprintw(console->win, "| _ \\ / ___) _ \\| __) _ | _ \\| | _) | | |\n");
wattroff(console->win, COLOUR_SPLASH);
_win_show_time(console->win);
wattron(console->win, COLOUR_SPLASH);
wprintw(console->win, "| | | | | | |_| | | ( ( | | | | | | |_| |_| |\n");
wattroff(console->win, COLOUR_SPLASH);
_win_show_time(console->win);
wattron(console->win, COLOUR_SPLASH);
wprintw(console->win, "| ||_/|_| \\___/|_| \\_||_|_| |_|_|\\___)__ |\n");
wattroff(console->win, COLOUR_SPLASH);
_win_show_time(console->win);
wattron(console->win, COLOUR_SPLASH);
wprintw(console->win, "|_| (____/ \n");
wattroff(console->win, COLOUR_SPLASH);
_win_show_time(console->win);
wprintw(console->win, "\n");
_win_show_time(console->win);
if (strcmp(PACKAGE_STATUS, "development") == 0) {
wprintw(console->win, "Version %sdev\n", PACKAGE_VERSION);
2012-10-23 22:52:40 +00:00
} else {
wprintw(console->win, "Version %s\n", PACKAGE_VERSION);
2012-10-23 22:52:40 +00:00
}
}
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);
windows[i] = window_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_time(WINDOW *win)
2012-02-26 18:35:40 +00:00
{
GDateTime *time = g_date_time_new_now_local();
gchar *date_fmt = g_date_time_format(time, "%H:%M:%S");
wattron(win, COLOUR_TIME);
wprintw(win, "%s - ", date_fmt);
wattroff(win, COLOUR_TIME);
g_date_time_unref(time);
g_free(date_fmt);
2012-02-26 18:35:40 +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
{
wprintw(win, "%s\n", message);
}
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
_show_status_string(WINDOW *win, 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)
{
_win_show_time(win);
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
}
}
static void
_cons_show_typing(const char * const short_from)
{
_win_show_time(console->win);
wattron(console->win, COLOUR_TYPING);
wprintw(console->win, "!! %s is typing a message...\n", short_from);
wattroff(console->win, COLOUR_TYPING);
}
2012-07-24 22:19:48 +00:00
static void
_cons_show_incoming_message(const char * const short_from, const int win_index)
{
_win_show_time(console->win);
wattron(console->win, COLOUR_INCOMING);
wprintw(console->win, "<< incoming from %s (%d)\n", short_from, win_index + 1);
wattroff(console->win, COLOUR_INCOMING);
}
static void
_cons_show_contact(PContact contact)
{
const char *jid = p_contact_jid(contact);
const char *name = p_contact_name(contact);
const char *presence = p_contact_presence(contact);
const char *status = p_contact_status(contact);
2012-12-09 03:07:33 +00:00
GDateTime *last_activity = p_contact_last_activity(contact);
_win_show_time(console->win);
2012-11-13 22:14:40 +00:00
if (strcmp(presence, "online") == 0) {
wattron(console->win, COLOUR_ONLINE);
2012-11-13 22:14:40 +00:00
} else if (strcmp(presence, "away") == 0) {
wattron(console->win, COLOUR_AWAY);
2012-11-13 22:14:40 +00:00
} else if (strcmp(presence, "chat") == 0) {
wattron(console->win, COLOUR_CHAT);
2012-11-13 22:14:40 +00:00
} else if (strcmp(presence, "dnd") == 0) {
wattron(console->win, COLOUR_DND);
2012-11-13 22:14:40 +00:00
} else if (strcmp(presence, "xa") == 0) {
wattron(console->win, COLOUR_XA);
2012-11-13 22:14:40 +00:00
} else {
wattron(console->win, COLOUR_OFFLINE);
2012-11-13 22:14:40 +00:00
}
wprintw(console->win, "%s", jid);
2012-11-13 22:14:40 +00:00
if (name != NULL) {
wprintw(console->win, " (%s)", name);
2012-11-13 22:14:40 +00:00
}
wprintw(console->win, " is %s", presence);
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(console->win, ", idle ");
int hours = span / G_TIME_SPAN_HOUR;
span = span - hours * G_TIME_SPAN_HOUR;
if (hours > 0) {
wprintw(console->win, "%dh", hours);
}
int minutes = span / G_TIME_SPAN_MINUTE;
span = span - minutes * G_TIME_SPAN_MINUTE;
wprintw(console->win, "%dm", minutes);
int seconds = span / G_TIME_SPAN_SECOND;
wprintw(console->win, "%ds", seconds);
}
2012-11-13 22:14:40 +00:00
if (status != NULL) {
wprintw(console->win, ", \"%s\"", p_contact_status(contact));
2012-11-13 22:14:40 +00:00
}
wprintw(console->win, "\n");
2012-11-13 22:14:40 +00:00
if (strcmp(presence, "online") == 0) {
wattroff(console->win, COLOUR_ONLINE);
2012-11-13 22:14:40 +00:00
} else if (strcmp(presence, "away") == 0) {
wattroff(console->win, COLOUR_AWAY);
2012-11-13 22:14:40 +00:00
} else if (strcmp(presence, "chat") == 0) {
wattroff(console->win, COLOUR_CHAT);
2012-11-13 22:14:40 +00:00
} else if (strcmp(presence, "dnd") == 0) {
wattroff(console->win, COLOUR_DND);
2012-11-13 22:14:40 +00:00
} else if (strcmp(presence, "xa") == 0) {
wattroff(console->win, COLOUR_XA);
2012-11-13 22:14:40 +00:00
} else {
wattroff(console->win, COLOUR_OFFLINE);
}
}
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);
2012-11-20 01:53:30 +00:00
MEVENT mouse_event;
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
#else
2012-11-20 01:53:30 +00:00
if (mouse_event.bstate & BUTTON2_PRESSED) { // mouse wheel down
2012-11-25 17:37:04 +00:00
#endif
2012-11-20 02:01:55 +00:00
*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;
// went past end, show full screen
else if (*page_start >= y)
*page_start = y - page_space;
2012-11-25 02:29:01 +00:00
current->paged = 1;
2012-11-20 01:53:30 +00:00
dirty = TRUE;
} else if (mouse_event.bstate & BUTTON4_PRESSED) { // mouse wheel up
2012-11-20 02:01:55 +00:00
*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-25 02:29:01 +00:00
current->paged = 1;
2012-11-20 01:53:30 +00:00
dirty = TRUE;
}
}
2012-03-10 20:46:30 +00:00
// page up
2012-11-20 01:53:30 +00:00
} else 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;
2012-03-10 20:46:30 +00:00
dirty = TRUE;
// 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;
2012-03-10 20:46:30 +00:00
dirty = TRUE;
}
}
static gint
_win_get_unread(void)
{
int i;
gint result = 0;
for (i = 0; i < NUM_WINS; i++) {
if (windows[i] != NULL) {
result += windows[i]->unread;
}
}
return result;
}
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;
history = chat_log_get_previous(jabber_get_jid(), contact, history);
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];
}