2012-10-21 15:02:20 -04:00
|
|
|
/*
|
2012-02-20 15:07:38 -05:00
|
|
|
* windows.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 James Booth <boothj5@gmail.com>
|
2012-10-21 15:02:20 -04:00
|
|
|
*
|
2012-02-20 15:07:38 -05:00
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Profanity is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2012-08-25 20:50:50 -04:00
|
|
|
|
2012-07-01 19:58:35 -04:00
|
|
|
#include "config.h"
|
2012-02-20 15:07:38 -05:00
|
|
|
|
2012-09-10 18:11:24 -04:00
|
|
|
#include <stdlib.h>
|
2012-02-08 17:26:43 -05:00
|
|
|
#include <string.h>
|
2012-05-03 20:00:01 -04:00
|
|
|
|
2012-05-09 19:30:03 -04:00
|
|
|
#include <glib.h>
|
2012-07-29 20:04:37 -04:00
|
|
|
#ifdef HAVE_LIBNOTIFY
|
2012-06-28 18:29:46 -04:00
|
|
|
#include <libnotify/notify.h>
|
2012-07-01 19:58:35 -04:00
|
|
|
#endif
|
2012-09-08 11:51:09 -04:00
|
|
|
#ifdef HAVE_NCURSES_H
|
2012-08-25 20:50:50 -04:00
|
|
|
#include <ncurses.h>
|
2012-09-08 11:51:09 -04:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NCURSES_NCURSES_H
|
|
|
|
#include <ncurses/ncurses.h>
|
|
|
|
#endif
|
2012-05-03 20:00:01 -04:00
|
|
|
|
2012-10-13 23:10:03 -04:00
|
|
|
#include "chat_log.h"
|
2012-11-08 17:39:38 -05:00
|
|
|
#include "chat_session.h"
|
2012-08-25 20:50:50 -04:00
|
|
|
#include "command.h"
|
2012-05-03 20:00:01 -04:00
|
|
|
#include "contact.h"
|
2012-10-04 18:18:48 -04:00
|
|
|
#include "contact_list.h"
|
2012-08-21 19:30:24 -04:00
|
|
|
#include "log.h"
|
2012-08-25 20:50:50 -04:00
|
|
|
#include "preferences.h"
|
2012-10-23 18:30:01 -04:00
|
|
|
#include "release.h"
|
2012-11-05 16:48:13 -05:00
|
|
|
#include "room_chat.h"
|
2012-11-21 16:24:10 -05:00
|
|
|
#include "theme.h"
|
2012-08-25 20:50:50 -04:00
|
|
|
#include "ui.h"
|
2012-02-05 18:08:15 -05:00
|
|
|
|
2012-02-29 19:34:54 -05:00
|
|
|
#define CONS_WIN_TITLE "_cons"
|
2012-10-14 12:26:35 -04:00
|
|
|
#define PAD_SIZE 1000
|
2012-02-29 20:02:10 -05:00
|
|
|
#define NUM_WINS 10
|
2012-02-29 19:34:54 -05:00
|
|
|
|
2012-02-29 19:40:51 -05:00
|
|
|
// holds console at index 0 and chat wins 1 through to 9
|
2012-02-29 20:02:10 -05:00
|
|
|
static struct prof_win _wins[NUM_WINS];
|
2012-02-29 19:40:51 -05:00
|
|
|
|
|
|
|
// the window currently being displayed
|
2012-02-29 19:34:54 -05:00
|
|
|
static int _curr_prof_win = 0;
|
2012-02-29 19:40:51 -05:00
|
|
|
|
|
|
|
// shortcut pointer to console window
|
2012-02-29 19:34:54 -05:00
|
|
|
static WINDOW * _cons_win = NULL;
|
2012-02-05 18:08:15 -05:00
|
|
|
|
2012-03-05 20:04:45 -05:00
|
|
|
// current window state
|
|
|
|
static int dirty;
|
|
|
|
|
2012-04-22 20:03:11 -04:00
|
|
|
// max columns for main windows, never resize below
|
|
|
|
static int max_cols = 0;
|
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
static void _create_windows(void);
|
2012-09-09 17:22:14 -04:00
|
|
|
static void _cons_splash_logo(void);
|
2012-08-15 20:39:19 -04:00
|
|
|
static void _cons_show_basic_help(void);
|
2012-11-13 17:08:46 -05:00
|
|
|
static void _cons_show_contact(PContact contact);
|
2012-03-08 20:06:55 -05:00
|
|
|
static int _find_prof_win_index(const char * const contact);
|
2012-11-12 18:05:22 -05:00
|
|
|
static int _new_prof_win(const char * const contact, win_type_t type);
|
2012-03-08 20:06:55 -05:00
|
|
|
static void _current_window_refresh(void);
|
|
|
|
static void _win_switch_if_active(const int i);
|
2012-02-29 19:34:54 -05:00
|
|
|
static void _win_show_time(WINDOW *win);
|
2012-03-08 20:06:55 -05: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 11:18:44 -04:00
|
|
|
static void _win_show_error_msg(WINDOW *win, const char * const message);
|
2012-10-21 15:02:20 -04:00
|
|
|
static void _show_status_string(WINDOW *win, const char * const from,
|
|
|
|
const char * const show, const char * const status, const char * const pre,
|
2012-03-08 20:06:55 -05:00
|
|
|
const char * const default_show);
|
2012-08-15 19:50:32 -04:00
|
|
|
static void _cons_show_typing(const char * const short_from);
|
2012-10-21 15:02:20 -04:00
|
|
|
static void _cons_show_incoming_message(const char * const short_from,
|
2012-03-08 20:06:55 -05:00
|
|
|
const int win_index);
|
2012-03-10 15:46:30 -05:00
|
|
|
static void _win_handle_switch(const int * const ch);
|
|
|
|
static void _win_handle_page(const int * const ch);
|
2012-04-22 17:35:54 -04:00
|
|
|
static void _win_resize_all(void);
|
2012-09-23 15:52:47 -04:00
|
|
|
static gint _win_get_unread(void);
|
2012-10-21 15:02:20 -04:00
|
|
|
static void _win_show_history(WINDOW *win, int win_index,
|
2012-10-14 17:36:29 -04:00
|
|
|
const char * const contact);
|
2012-10-23 19:59:18 -04:00
|
|
|
static gboolean _new_release(char *found_version);
|
2012-07-01 19:58:35 -04:00
|
|
|
|
2012-07-29 20:04:37 -04:00
|
|
|
#ifdef HAVE_LIBNOTIFY
|
2012-10-21 15:02:20 -04:00
|
|
|
static void _win_notify(const char * const message, int timeout,
|
2012-09-24 15:44:45 -04:00
|
|
|
const char * const category);
|
2012-09-23 15:52:47 -04:00
|
|
|
static void _win_notify_remind(gint unread);
|
2012-11-05 17:49:40 -05:00
|
|
|
static void _win_notify_message(const char * const short_from);
|
2012-11-13 16:14:43 -05:00
|
|
|
static void _win_notify_typing(const char * const from);
|
2012-07-01 19:58:35 -04:00
|
|
|
#endif
|
2012-02-05 18:29:09 -05:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
gui_init(void)
|
2012-02-05 18:29:09 -05:00
|
|
|
{
|
2012-08-25 19:54:18 -04:00
|
|
|
log_info("Initialising UI");
|
2012-02-05 18:29:09 -05:00
|
|
|
initscr();
|
|
|
|
cbreak();
|
|
|
|
keypad(stdscr, TRUE);
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
if (has_colors()) {
|
2012-04-04 04:51:30 -04:00
|
|
|
use_default_colors();
|
2012-02-18 16:02:51 -05:00
|
|
|
start_color();
|
2012-06-18 17:16:57 -04:00
|
|
|
|
2012-11-20 19:21:58 -05:00
|
|
|
// main text
|
2012-11-21 16:24:10 -05:00
|
|
|
init_pair(1, theme_get_maintext(), theme_get_bkgnd());
|
|
|
|
init_pair(2, theme_get_splashtext(), theme_get_bkgnd());
|
|
|
|
init_pair(3, theme_get_error(), theme_get_bkgnd());
|
|
|
|
init_pair(4, theme_get_incoming(), theme_get_bkgnd());
|
2012-11-20 19:21:58 -05:00
|
|
|
|
|
|
|
// title bar
|
2012-11-21 16:24:10 -05:00
|
|
|
init_pair(10, theme_get_titlebartext(), theme_get_titlebar());
|
|
|
|
init_pair(11, theme_get_titlebarbrackets(), theme_get_titlebar());
|
2012-11-20 19:21:58 -05:00
|
|
|
|
|
|
|
// status bar
|
2012-11-21 16:24:10 -05:00
|
|
|
init_pair(20, theme_get_statusbartext(), theme_get_statusbar());
|
|
|
|
init_pair(21, theme_get_statusbarbrackets(), theme_get_statusbar());
|
|
|
|
init_pair(22, theme_get_statusbaractive(), theme_get_statusbar());
|
|
|
|
init_pair(23, theme_get_statusbarnew(), theme_get_statusbar());
|
2012-11-20 19:21:58 -05:00
|
|
|
|
|
|
|
// chat
|
2012-11-21 16:24:10 -05:00
|
|
|
init_pair(30, theme_get_me(), theme_get_bkgnd());
|
|
|
|
init_pair(31, theme_get_them(), theme_get_bkgnd());
|
2012-11-20 19:21:58 -05:00
|
|
|
|
|
|
|
// room chat
|
2012-11-21 16:24:10 -05:00
|
|
|
init_pair(40, theme_get_roominfo(), theme_get_bkgnd());
|
2012-11-20 19:21:58 -05:00
|
|
|
|
|
|
|
// statuses
|
2012-11-21 16:24:10 -05:00
|
|
|
init_pair(50, theme_get_online(), theme_get_bkgnd());
|
|
|
|
init_pair(51, theme_get_offline(), theme_get_bkgnd());
|
|
|
|
init_pair(52, theme_get_away(), theme_get_bkgnd());
|
|
|
|
init_pair(53, theme_get_chat(), theme_get_bkgnd());
|
|
|
|
init_pair(54, theme_get_dnd(), theme_get_bkgnd());
|
|
|
|
init_pair(55, theme_get_xa(), theme_get_bkgnd());
|
2012-11-20 19:21:58 -05:00
|
|
|
|
|
|
|
// states
|
2012-11-21 16:24:10 -05:00
|
|
|
init_pair(60, theme_get_typing(), theme_get_bkgnd());
|
|
|
|
init_pair(61, theme_get_gone(), theme_get_bkgnd());
|
2012-02-18 16:02:51 -05:00
|
|
|
}
|
2012-02-05 18:29:09 -05:00
|
|
|
|
|
|
|
refresh();
|
|
|
|
|
|
|
|
create_title_bar();
|
2012-02-12 17:20:21 -05:00
|
|
|
create_status_bar();
|
2012-02-07 17:59:47 -05:00
|
|
|
create_input_window();
|
2012-02-12 17:09:07 -05:00
|
|
|
_create_windows();
|
2012-03-05 20:04:45 -05:00
|
|
|
|
|
|
|
dirty = TRUE;
|
2012-02-06 19:08:59 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
gui_refresh(void)
|
2012-02-12 20:25:47 -05:00
|
|
|
{
|
|
|
|
title_bar_refresh();
|
|
|
|
status_bar_refresh();
|
2012-03-05 20:04:45 -05:00
|
|
|
|
|
|
|
if (dirty) {
|
|
|
|
_current_window_refresh();
|
|
|
|
dirty = FALSE;
|
|
|
|
}
|
|
|
|
|
2012-02-12 20:25:47 -05:00
|
|
|
inp_put_back();
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
gui_close(void)
|
2012-02-06 19:08:59 -05:00
|
|
|
{
|
2012-09-24 15:51:10 -04:00
|
|
|
#ifdef HAVE_LIBNOTIFY
|
|
|
|
if (notify_is_initted()) {
|
|
|
|
notify_uninit();
|
|
|
|
}
|
|
|
|
#endif
|
2012-02-06 19:08:59 -05:00
|
|
|
endwin();
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
gui_resize(const int ch, const char * const input, const int size)
|
2012-04-17 18:28:21 -04:00
|
|
|
{
|
2012-08-25 19:54:18 -04:00
|
|
|
log_info("Resizing UI");
|
2012-04-19 20:48:42 -04:00
|
|
|
title_bar_resize();
|
2012-04-21 20:25:19 -04:00
|
|
|
status_bar_resize();
|
2012-04-22 17:35:54 -04:00
|
|
|
_win_resize_all();
|
2012-04-22 15:59:36 -04:00
|
|
|
inp_win_resize(input, size);
|
2012-04-17 18:28:21 -04:00
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
|
2012-10-31 17:30:58 -04:00
|
|
|
void
|
2012-07-24 18:19:48 -04:00
|
|
|
win_close_win(void)
|
2012-02-08 18:12:34 -05:00
|
|
|
{
|
2012-10-31 17:30:58 -04:00
|
|
|
// reset the chat win to unused
|
|
|
|
strcpy(_wins[_curr_prof_win].from, "");
|
|
|
|
wclear(_wins[_curr_prof_win].win);
|
|
|
|
_wins[_curr_prof_win].history_shown = 0;
|
2012-11-12 18:05:22 -05:00
|
|
|
_wins[_curr_prof_win].type = WIN_UNUSED;
|
2012-10-31 17:30:58 -04:00
|
|
|
|
|
|
|
// set it as inactive in the status bar
|
|
|
|
status_bar_inactive(_curr_prof_win);
|
|
|
|
|
|
|
|
// go back to console window
|
|
|
|
_curr_prof_win = 0;
|
|
|
|
title_bar_title();
|
|
|
|
|
|
|
|
dirty = TRUE;
|
2012-02-08 18:12:34 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
int
|
|
|
|
win_in_chat(void)
|
2012-02-08 17:46:35 -05:00
|
|
|
{
|
2012-11-12 18:05:22 -05:00
|
|
|
return (_wins[_curr_prof_win].type == WIN_CHAT);
|
2012-02-08 17:46:35 -05:00
|
|
|
}
|
|
|
|
|
2012-11-05 16:48:13 -05:00
|
|
|
int
|
|
|
|
win_in_groupchat(void)
|
|
|
|
{
|
2012-11-12 18:05:22 -05:00
|
|
|
return (_wins[_curr_prof_win].type == WIN_MUC);
|
2012-11-05 16:48:13 -05:00
|
|
|
}
|
|
|
|
|
2012-11-13 19:39:34 -05:00
|
|
|
int
|
|
|
|
win_in_private_chat(void)
|
|
|
|
{
|
|
|
|
return (_wins[_curr_prof_win].type == WIN_PRIVATE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
win_show_wins(void)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
for (i = 1; i < NUM_WINS; i++) {
|
|
|
|
if (_wins[i].type != WIN_UNUSED) {
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cons_show("");
|
|
|
|
|
|
|
|
if (count == 0) {
|
|
|
|
cons_show("No active windows.");
|
|
|
|
} else if (count == 1) {
|
|
|
|
cons_show("1 active window:");
|
|
|
|
} else {
|
|
|
|
cons_show("%d active windows:", count);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count != 0) {
|
|
|
|
for (i = 1; i < NUM_WINS; i++) {
|
|
|
|
if (_wins[i].type != WIN_UNUSED) {
|
|
|
|
_win_show_time(_cons_win);
|
|
|
|
|
|
|
|
switch (_wins[i].type)
|
|
|
|
{
|
|
|
|
case WIN_CHAT:
|
2012-11-14 16:18:47 -05:00
|
|
|
wprintw(_cons_win, "%d: chat %s", i + 1, _wins[i].from);
|
2012-11-13 20:16:07 -05:00
|
|
|
PContact contact = contact_list_get_contact(_wins[i].from);
|
2012-11-19 18:15:42 -05:00
|
|
|
|
|
|
|
if (contact != NULL) {
|
|
|
|
if (p_contact_name(contact) != NULL) {
|
|
|
|
wprintw(_cons_win, " (%s)", p_contact_name(contact));
|
|
|
|
}
|
|
|
|
wprintw(_cons_win, " - %s", p_contact_presence(contact));
|
2012-11-13 20:16:07 -05:00
|
|
|
}
|
2012-11-19 18:15:42 -05:00
|
|
|
|
2012-11-14 16:18:47 -05:00
|
|
|
if (_wins[i].unread > 0) {
|
|
|
|
wprintw(_cons_win, ", %d unread", _wins[i].unread);
|
|
|
|
}
|
2012-11-19 18:15:42 -05:00
|
|
|
|
2012-11-13 19:39:34 -05:00
|
|
|
break;
|
2012-11-19 18:15:42 -05:00
|
|
|
|
2012-11-13 19:39:34 -05:00
|
|
|
case WIN_PRIVATE:
|
2012-11-14 16:18:47 -05:00
|
|
|
wprintw(_cons_win, "%d: private %s", i + 1, _wins[i].from);
|
2012-11-19 18:15:42 -05:00
|
|
|
|
2012-11-13 20:29:32 -05:00
|
|
|
if (_wins[i].unread > 0) {
|
2012-11-14 16:18:47 -05:00
|
|
|
wprintw(_cons_win, ", %d unread", _wins[i].unread);
|
2012-11-13 20:29:32 -05:00
|
|
|
}
|
2012-11-19 18:15:42 -05:00
|
|
|
|
2012-11-13 19:39:34 -05:00
|
|
|
break;
|
2012-11-19 18:15:42 -05:00
|
|
|
|
2012-11-13 19:39:34 -05:00
|
|
|
case WIN_MUC:
|
2012-11-14 16:18:47 -05:00
|
|
|
wprintw(_cons_win, "%d: room %s", i + 1, _wins[i].from);
|
2012-11-19 18:15:42 -05:00
|
|
|
|
2012-11-13 20:29:32 -05:00
|
|
|
if (_wins[i].unread > 0) {
|
2012-11-14 16:18:47 -05:00
|
|
|
wprintw(_cons_win, ", %d unread", _wins[i].unread);
|
2012-11-13 20:29:32 -05:00
|
|
|
}
|
2012-11-19 18:15:42 -05:00
|
|
|
|
2012-11-13 19:39:34 -05:00
|
|
|
break;
|
2012-11-19 18:15:42 -05:00
|
|
|
|
2012-11-13 19:39:34 -05:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2012-11-13 20:16:07 -05:00
|
|
|
|
|
|
|
wprintw(_cons_win, "\n");
|
2012-11-13 19:39:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
char *
|
|
|
|
win_get_recipient(void)
|
2012-02-08 17:46:35 -05:00
|
|
|
{
|
2012-02-29 19:34:54 -05:00
|
|
|
struct prof_win current = _wins[_curr_prof_win];
|
|
|
|
char *recipient = (char *) malloc(sizeof(char) * (strlen(current.from) + 1));
|
|
|
|
strcpy(recipient, current.from);
|
2012-02-19 15:57:46 -05:00
|
|
|
return recipient;
|
2012-02-08 17:46:35 -05:00
|
|
|
}
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
void
|
2012-08-15 19:50:32 -04:00
|
|
|
win_show_typing(const char * const from)
|
|
|
|
{
|
2012-11-13 16:14:43 -05:00
|
|
|
int win_index = _find_prof_win_index(from);
|
2012-08-15 19:50:32 -04:00
|
|
|
|
2012-10-27 19:33:20 -04:00
|
|
|
if (prefs_get_intype()) {
|
|
|
|
// no chat window for user
|
|
|
|
if (win_index == NUM_WINS) {
|
2012-11-13 16:14:43 -05:00
|
|
|
_cons_show_typing(from);
|
2012-10-27 19:33:20 -04:00
|
|
|
|
|
|
|
// have chat window but not currently in it
|
|
|
|
} else if (win_index != _curr_prof_win) {
|
2012-11-13 16:14:43 -05:00
|
|
|
_cons_show_typing(from);
|
2012-10-27 19:33:20 -04:00
|
|
|
dirty = TRUE;
|
2012-08-15 19:50:32 -04:00
|
|
|
|
2012-10-27 19:33:20 -04:00
|
|
|
// in chat window with user
|
|
|
|
} else {
|
|
|
|
title_bar_set_typing(TRUE);
|
|
|
|
title_bar_draw();
|
2012-08-15 19:50:32 -04:00
|
|
|
|
2012-10-27 19:33:20 -04:00
|
|
|
status_bar_active(win_index);
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
}
|
2012-08-15 19:50:32 -04:00
|
|
|
|
|
|
|
#ifdef HAVE_LIBNOTIFY
|
2012-10-27 17:05:08 -04:00
|
|
|
if (prefs_get_notify_typing())
|
2012-11-13 16:14:43 -05:00
|
|
|
_win_notify_typing(from);
|
2012-08-15 19:50:32 -04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-09-23 15:52:47 -04:00
|
|
|
void
|
|
|
|
win_remind(void)
|
2012-09-23 15:10:03 -04:00
|
|
|
{
|
2012-09-23 15:52:47 -04:00
|
|
|
#ifdef HAVE_LIBNOTIFY
|
|
|
|
gint unread = _win_get_unread();
|
|
|
|
if (unread > 0) {
|
|
|
|
_win_notify_remind(unread);
|
2012-09-23 15:10:03 -04:00
|
|
|
}
|
2012-09-23 15:52:47 -04:00
|
|
|
#endif
|
2012-09-23 15:10:03 -04:00
|
|
|
}
|
|
|
|
|
2012-11-08 17:39:38 -05:00
|
|
|
void
|
|
|
|
win_activity(void)
|
|
|
|
{
|
2012-11-12 18:05:22 -05:00
|
|
|
if (win_in_chat()) {
|
2012-11-08 17:39:38 -05:00
|
|
|
char *recipient = win_get_recipient();
|
|
|
|
chat_session_set_composing(recipient);
|
|
|
|
if (!chat_session_get_sent(recipient) ||
|
|
|
|
chat_session_is_paused(recipient)) {
|
|
|
|
jabber_send_composing(recipient);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
win_no_activity(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
// loop through regular chat windows and update states
|
|
|
|
for (i = 1; i < NUM_WINS; i++) {
|
2012-11-12 18:05:22 -05:00
|
|
|
if (_wins[i].type == WIN_CHAT) {
|
2012-11-08 17:39:38 -05:00
|
|
|
char *recipient = _wins[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 18:19:48 -04:00
|
|
|
void
|
2012-11-08 17:14:41 -05:00
|
|
|
win_show_incomming_msg(const char * const from, const char * const message,
|
2012-11-13 19:04:08 -05:00
|
|
|
GTimeVal *tv_stamp, gboolean priv)
|
2012-02-26 13:26:38 -05:00
|
|
|
{
|
2012-11-13 19:04:08 -05:00
|
|
|
win_type_t win_type;
|
|
|
|
if (priv) {
|
|
|
|
win_type = WIN_PRIVATE;
|
|
|
|
} else {
|
|
|
|
win_type = WIN_CHAT;
|
|
|
|
}
|
|
|
|
|
2012-11-12 18:26:09 -05:00
|
|
|
int win_index = _find_prof_win_index(from);
|
2012-02-29 20:02:10 -05:00
|
|
|
if (win_index == NUM_WINS)
|
2012-11-13 19:04:08 -05:00
|
|
|
win_index = _new_prof_win(from, win_type);
|
2012-02-29 19:34:54 -05:00
|
|
|
|
|
|
|
WINDOW *win = _wins[win_index].win;
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-09-23 15:10:03 -04:00
|
|
|
// currently viewing chat window with sender
|
2012-04-19 18:32:44 -04:00
|
|
|
if (win_index == _curr_prof_win) {
|
2012-11-08 17:14:41 -05:00
|
|
|
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");
|
|
|
|
wprintw(win, "%s - ", date_fmt);
|
|
|
|
g_date_time_unref(time);
|
|
|
|
g_free(date_fmt);
|
|
|
|
}
|
2012-10-27 22:40:04 -04:00
|
|
|
|
|
|
|
if (strncmp(message, "/me ", 4) == 0) {
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(win, COLOUR_THEM);
|
2012-11-12 18:26:09 -05:00
|
|
|
wprintw(win, "*%s ", from);
|
2012-10-27 22:40:04 -04:00
|
|
|
wprintw(win, message + 4);
|
|
|
|
wprintw(win, "\n");
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(win, COLOUR_THEM);
|
2012-10-27 22:40:04 -04:00
|
|
|
} else {
|
2012-11-12 18:26:09 -05:00
|
|
|
_win_show_user(win, from, 1);
|
2012-10-27 22:40:04 -04:00
|
|
|
_win_show_message(win, message);
|
|
|
|
}
|
2012-08-16 16:43:52 -04:00
|
|
|
title_bar_set_typing(FALSE);
|
|
|
|
title_bar_draw();
|
2012-04-19 18:32:44 -04:00
|
|
|
status_bar_active(win_index);
|
2012-03-05 20:04:45 -05:00
|
|
|
dirty = TRUE;
|
2012-09-23 15:10:03 -04:00
|
|
|
|
|
|
|
// not currently viewing chat window with sender
|
2012-04-19 18:32:44 -04:00
|
|
|
} else {
|
|
|
|
status_bar_new(win_index);
|
2012-11-12 18:26:09 -05:00
|
|
|
_cons_show_incoming_message(from, win_index);
|
2012-06-28 18:18:52 -04:00
|
|
|
if (prefs_get_flash())
|
|
|
|
flash();
|
2012-09-23 15:10:03 -04:00
|
|
|
|
|
|
|
_wins[win_index].unread++;
|
2012-10-14 13:26:08 -04:00
|
|
|
if (prefs_get_chlog() && prefs_get_history()) {
|
2012-11-12 18:26:09 -05:00
|
|
|
_win_show_history(win, win_index, from);
|
2012-10-13 23:10:03 -04:00
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-11-08 17:14:41 -05:00
|
|
|
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");
|
|
|
|
wprintw(win, "%s - ", date_fmt);
|
|
|
|
g_date_time_unref(time);
|
|
|
|
g_free(date_fmt);
|
|
|
|
}
|
|
|
|
|
2012-10-27 22:40:04 -04:00
|
|
|
if (strncmp(message, "/me ", 4) == 0) {
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(win, COLOUR_THEM);
|
2012-11-12 18:26:09 -05:00
|
|
|
wprintw(win, "*%s ", from);
|
2012-10-27 22:40:04 -04:00
|
|
|
wprintw(win, message + 4);
|
|
|
|
wprintw(win, "\n");
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(win, COLOUR_THEM);
|
2012-10-27 22:40:04 -04:00
|
|
|
} else {
|
2012-11-12 18:26:09 -05:00
|
|
|
_win_show_user(win, from, 1);
|
2012-10-27 22:40:04 -04:00
|
|
|
_win_show_message(win, message);
|
|
|
|
}
|
2012-04-19 18:32:44 -04:00
|
|
|
}
|
2012-04-23 20:11:39 -04:00
|
|
|
|
2012-05-10 04:55:55 -04:00
|
|
|
if (prefs_get_beep())
|
2012-04-23 20:24:54 -04:00
|
|
|
beep();
|
2012-07-29 20:04:37 -04:00
|
|
|
#ifdef HAVE_LIBNOTIFY
|
2012-10-27 17:05:08 -04:00
|
|
|
if (prefs_get_notify_message())
|
2012-11-12 18:26:09 -05:00
|
|
|
_win_notify_message(from);
|
2012-07-01 19:58:35 -04:00
|
|
|
#endif
|
2012-02-06 19:08:59 -05:00
|
|
|
}
|
|
|
|
|
2012-10-18 11:18:44 -04:00
|
|
|
void
|
|
|
|
win_show_error_msg(const char * const from, const char *err_msg)
|
|
|
|
{
|
|
|
|
int win_index;
|
|
|
|
WINDOW *win;
|
|
|
|
|
|
|
|
if (from == NULL || err_msg == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
win_index = _find_prof_win_index(from);
|
|
|
|
// chat window exists
|
|
|
|
if (win_index < NUM_WINS) {
|
|
|
|
win = _wins[win_index].win;
|
|
|
|
_win_show_time(win);
|
|
|
|
_win_show_error_msg(win, err_msg);
|
2012-10-18 11:24:09 -04:00
|
|
|
if (win_index == _curr_prof_win) {
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
2012-10-18 11:18:44 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-31 21:21:00 -04:00
|
|
|
void
|
|
|
|
win_show_gone(const char * const from)
|
|
|
|
{
|
|
|
|
int win_index;
|
|
|
|
WINDOW *win;
|
|
|
|
|
|
|
|
if (from == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
win_index = _find_prof_win_index(from);
|
|
|
|
// chat window exists
|
|
|
|
if (win_index < NUM_WINS) {
|
|
|
|
win = _wins[win_index].win;
|
|
|
|
_win_show_time(win);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(win, COLOUR_GONE);
|
2012-10-31 21:21:00 -04:00
|
|
|
wprintw(win, "*%s ", from);
|
|
|
|
wprintw(win, "has left the conversation.");
|
|
|
|
wprintw(win, "\n");
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(win, COLOUR_GONE);
|
2012-10-31 21:21:00 -04:00
|
|
|
if (win_index == _curr_prof_win) {
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-11 07:00:21 -05: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 18:05:22 -05:00
|
|
|
win_index = _new_prof_win(bare_jid, WIN_CHAT);
|
2012-11-11 07:00:21 -05:00
|
|
|
status_bar_active(win_index);
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
win = _wins[win_index].win;
|
|
|
|
|
|
|
|
_win_show_time(win);
|
|
|
|
wprintw(win, "*%s %s\n", bare_jid, message);
|
|
|
|
|
|
|
|
// this is the current window
|
|
|
|
if (win_index == _curr_prof_win) {
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 20:04:37 -04:00
|
|
|
#ifdef HAVE_LIBNOTIFY
|
2012-09-23 15:52:47 -04:00
|
|
|
static void
|
2012-10-21 15:02:20 -04:00
|
|
|
_win_notify(const char * const message, int timeout,
|
2012-09-24 15:44:45 -04:00
|
|
|
const char * const category)
|
2012-09-23 15:52:47 -04:00
|
|
|
{
|
2012-09-24 15:51:10 -04: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;
|
2012-09-24 16:03:05 -04:00
|
|
|
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);
|
|
|
|
}
|
2012-09-24 15:51:10 -04:00
|
|
|
} else {
|
|
|
|
log_error("Libnotify initialisation error.");
|
|
|
|
}
|
2012-09-24 15:44:45 -04:00
|
|
|
}
|
2012-09-23 15:52:47 -04:00
|
|
|
|
2012-09-24 15:44:45 -04:00
|
|
|
static void
|
|
|
|
_win_notify_remind(gint unread)
|
|
|
|
{
|
2012-09-23 15:52:47 -04:00
|
|
|
char message[20];
|
|
|
|
if (unread == 1) {
|
|
|
|
sprintf(message, "1 unread message");
|
|
|
|
} else {
|
2012-11-16 07:07:31 -05:00
|
|
|
snprintf(message, sizeof(message), "%d unread messages", unread);
|
2012-09-23 15:52:47 -04:00
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-09-24 15:44:45 -04:00
|
|
|
_win_notify(message, 5000, "Incoming message");
|
2012-09-23 15:52:47 -04:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
2012-11-05 17:49:40 -05:00
|
|
|
_win_notify_message(const char * const short_from)
|
2012-08-15 19:50:32 -04:00
|
|
|
{
|
|
|
|
char message[strlen(short_from) + 1 + 10];
|
|
|
|
sprintf(message, "%s: message.", short_from);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
|
|
|
_win_notify(message, 10000, "Incoming message");
|
2012-08-15 19:50:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-11-13 16:14:43 -05:00
|
|
|
_win_notify_typing(const char * const from)
|
2012-06-28 18:29:46 -04:00
|
|
|
{
|
2012-11-13 16:14:43 -05:00
|
|
|
char message[strlen(from) + 1 + 11];
|
|
|
|
sprintf(message, "%s: typing...", from);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-09-24 15:44:45 -04:00
|
|
|
_win_notify(message, 10000, "Incoming message");
|
2012-06-28 18:29:46 -04:00
|
|
|
}
|
2012-07-01 19:58:35 -04:00
|
|
|
#endif
|
2012-06-28 18:29:46 -04:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
2012-10-21 15:02:20 -04:00
|
|
|
win_show_outgoing_msg(const char * const from, const char * const to,
|
2012-03-08 20:06:55 -05:00
|
|
|
const char * const message)
|
2012-02-06 19:37:42 -05:00
|
|
|
{
|
2012-10-04 18:18:48 -04:00
|
|
|
// if the contact is offline, show a message
|
|
|
|
PContact contact = contact_list_get_contact(to);
|
2012-10-17 05:55:48 -04:00
|
|
|
int win_index = _find_prof_win_index(to);
|
|
|
|
WINDOW *win = NULL;
|
|
|
|
|
|
|
|
// create new window
|
|
|
|
if (win_index == NUM_WINS) {
|
2012-11-13 19:39:34 -05:00
|
|
|
|
|
|
|
if (room_is_active(to)) {
|
|
|
|
win_index = _new_prof_win(to, WIN_PRIVATE);
|
|
|
|
} else {
|
|
|
|
win_index = _new_prof_win(to, WIN_CHAT);
|
|
|
|
}
|
|
|
|
|
2012-10-17 05:55:48 -04:00
|
|
|
win = _wins[win_index].win;
|
|
|
|
|
|
|
|
if (prefs_get_chlog() && prefs_get_history()) {
|
|
|
|
_win_show_history(win, win_index, to);
|
|
|
|
}
|
2012-10-04 18:55:15 -04:00
|
|
|
|
2012-10-18 03:20:53 -04:00
|
|
|
if (contact != NULL) {
|
2012-10-28 16:52:30 -04:00
|
|
|
if (strcmp(p_contact_presence(contact), "offline") == 0) {
|
|
|
|
const char const *show = p_contact_presence(contact);
|
2012-10-04 18:55:15 -04:00
|
|
|
const char const *status = p_contact_status(contact);
|
|
|
|
_show_status_string(win, to, show, status, "--", "offline");
|
|
|
|
}
|
2012-10-04 18:33:38 -04:00
|
|
|
}
|
|
|
|
|
2012-10-17 05:55:48 -04:00
|
|
|
// use existing window
|
|
|
|
} else {
|
|
|
|
win = _wins[win_index].win;
|
2012-10-04 18:18:48 -04:00
|
|
|
}
|
2012-10-17 05:55:48 -04:00
|
|
|
|
|
|
|
_win_show_time(win);
|
2012-10-27 22:52:52 -04:00
|
|
|
if (strncmp(message, "/me ", 4) == 0) {
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(win, COLOUR_ME);
|
2012-10-27 22:52:52 -04:00
|
|
|
wprintw(win, "*%s ", from);
|
|
|
|
wprintw(win, message + 4);
|
|
|
|
wprintw(win, "\n");
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(win, COLOUR_ME);
|
2012-10-27 22:52:52 -04:00
|
|
|
} else {
|
2012-10-30 18:32:22 -04:00
|
|
|
_win_show_user(win, from, 0);
|
2012-10-27 22:52:52 -04:00
|
|
|
_win_show_message(win, message);
|
|
|
|
}
|
2012-10-17 05:55:48 -04:00
|
|
|
_win_switch_if_active(win_index);
|
2012-02-06 19:37:42 -05:00
|
|
|
}
|
|
|
|
|
2012-11-05 16:36:32 -05:00
|
|
|
void
|
2012-11-10 13:32:33 -05:00
|
|
|
win_join_chat(const char * const room, const char * const nick)
|
2012-11-05 16:36:32 -05:00
|
|
|
{
|
2012-11-10 13:32:33 -05:00
|
|
|
int win_index = _find_prof_win_index(room);
|
2012-11-05 16:36:32 -05:00
|
|
|
|
|
|
|
// create new window
|
|
|
|
if (win_index == NUM_WINS) {
|
2012-11-12 18:05:22 -05:00
|
|
|
win_index = _new_prof_win(room, WIN_MUC);
|
2012-11-05 16:36:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
_win_switch_if_active(win_index);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-11-07 17:46:20 -05:00
|
|
|
win_show_room_roster(const char * const room)
|
2012-11-05 16:36:32 -05:00
|
|
|
{
|
2012-11-07 17:46:20 -05:00
|
|
|
int win_index = _find_prof_win_index(room);
|
2012-11-05 16:36:32 -05:00
|
|
|
WINDOW *win = _wins[win_index].win;
|
|
|
|
|
2012-11-07 19:05:32 -05:00
|
|
|
GList *roster = room_get_roster(room);
|
2012-11-07 17:46:20 -05:00
|
|
|
|
2012-11-07 19:22:15 -05:00
|
|
|
if ((roster == NULL) || (g_list_length(roster) == 0)) {
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(win, COLOUR_ROOMINFO);
|
2012-11-07 19:22:15 -05:00
|
|
|
wprintw(win, "You are alone!\n");
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(win, COLOUR_ROOMINFO);
|
2012-11-07 19:22:15 -05:00
|
|
|
} else {
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(win, COLOUR_ROOMINFO);
|
2012-11-07 17:46:20 -05:00
|
|
|
wprintw(win, "Room occupants:\n");
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(win, COLOUR_ROOMINFO);
|
2012-11-07 19:22:15 -05:00
|
|
|
wattron(win, COLOUR_ONLINE);
|
2012-11-07 17:46:20 -05:00
|
|
|
|
2012-11-07 19:22:15 -05:00
|
|
|
while (roster != NULL) {
|
|
|
|
wprintw(win, "%s", roster->data);
|
|
|
|
if (roster->next != NULL) {
|
|
|
|
wprintw(win, ", ");
|
|
|
|
}
|
|
|
|
roster = g_list_next(roster);
|
2012-11-07 17:46:20 -05:00
|
|
|
}
|
|
|
|
|
2012-11-07 19:22:15 -05:00
|
|
|
wprintw(win, "\n");
|
|
|
|
wattroff(win, COLOUR_ONLINE);
|
|
|
|
}
|
2012-11-05 16:36:32 -05:00
|
|
|
|
|
|
|
if (win_index == _curr_prof_win)
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
|
2012-11-07 19:05:32 -05: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 = _wins[win_index].win;
|
|
|
|
|
|
|
|
_win_show_time(win);
|
|
|
|
wattron(win, COLOUR_OFFLINE);
|
|
|
|
wprintw(win, "-- %s has left the room.\n", nick);
|
|
|
|
wattroff(win, COLOUR_OFFLINE);
|
|
|
|
|
|
|
|
if (win_index == _curr_prof_win)
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-11-18 16:46:58 -05:00
|
|
|
win_show_room_member_online(const char * const room, const char * const nick,
|
|
|
|
const char * const show, const char * const status)
|
2012-11-07 19:05:32 -05:00
|
|
|
{
|
|
|
|
int win_index = _find_prof_win_index(room);
|
|
|
|
WINDOW *win = _wins[win_index].win;
|
|
|
|
|
|
|
|
_win_show_time(win);
|
|
|
|
wattron(win, COLOUR_ONLINE);
|
|
|
|
wprintw(win, "++ %s has joined the room.\n", nick);
|
|
|
|
wattroff(win, COLOUR_ONLINE);
|
|
|
|
|
|
|
|
if (win_index == _curr_prof_win)
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
|
2012-11-18 16:46:58 -05:00
|
|
|
void
|
2012-11-18 19:26:31 -05: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 = _wins[win_index].win;
|
|
|
|
_show_status_string(win, nick, show, status, "++", "online");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (win_index == _curr_prof_win)
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-11-18 16:46:58 -05: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 = _wins[win_index].win;
|
|
|
|
|
|
|
|
_win_show_time(win);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(win, COLOUR_THEM);
|
2012-11-18 16:46:58 -05:00
|
|
|
wprintw(win, "** %s is now known as %s\n", old_nick, nick);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(win, COLOUR_THEM);
|
2012-11-18 16:46:58 -05:00
|
|
|
|
|
|
|
if (win_index == _curr_prof_win)
|
|
|
|
dirty = TRUE;
|
2012-11-18 17:49:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
win_show_room_nick_change(const char * const room, const char * const nick)
|
|
|
|
{
|
|
|
|
int win_index = _find_prof_win_index(room);
|
|
|
|
WINDOW *win = _wins[win_index].win;
|
2012-11-18 16:46:58 -05:00
|
|
|
|
2012-11-18 17:49:01 -05:00
|
|
|
_win_show_time(win);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(win, COLOUR_ME);
|
2012-11-18 17:49:01 -05:00
|
|
|
wprintw(win, "** You are now known as %s\n", nick);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(win, COLOUR_ME);
|
2012-11-18 17:49:01 -05:00
|
|
|
|
|
|
|
if (win_index == _curr_prof_win)
|
|
|
|
dirty = TRUE;
|
2012-11-18 16:46:58 -05:00
|
|
|
}
|
|
|
|
|
2012-11-05 17:21:03 -05: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 = _wins[win_index].win;
|
|
|
|
|
|
|
|
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-09 23:18:34 -05: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 17:21:03 -05:00
|
|
|
|
|
|
|
if (win_index == _curr_prof_win)
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
|
2012-11-05 17:28:06 -05: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 = _wins[win_index].win;
|
|
|
|
|
|
|
|
_win_show_time(win);
|
2012-11-05 18:24:29 -05:00
|
|
|
if (strcmp(nick, room_get_nick_for_room(room_jid)) != 0) {
|
2012-11-09 23:18:34 -05:00
|
|
|
if (strncmp(message, "/me ", 4) == 0) {
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(win, COLOUR_THEM);
|
2012-11-09 23:18:34 -05:00
|
|
|
wprintw(win, "*%s ", nick);
|
|
|
|
wprintw(win, message + 4);
|
|
|
|
wprintw(win, "\n");
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(win, COLOUR_THEM);
|
2012-11-09 23:18:34 -05:00
|
|
|
} else {
|
|
|
|
_win_show_user(win, nick, 1);
|
|
|
|
_win_show_message(win, message);
|
|
|
|
}
|
|
|
|
|
2012-11-05 18:24:29 -05:00
|
|
|
} else {
|
2012-11-09 23:18:34 -05:00
|
|
|
if (strncmp(message, "/me ", 4) == 0) {
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(win, COLOUR_ME);
|
2012-11-09 23:18:34 -05:00
|
|
|
wprintw(win, "*%s ", nick);
|
|
|
|
wprintw(win, message + 4);
|
|
|
|
wprintw(win, "\n");
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(win, COLOUR_ME);
|
2012-11-09 23:18:34 -05:00
|
|
|
} else {
|
|
|
|
_win_show_user(win, nick, 0);
|
|
|
|
_win_show_message(win, message);
|
|
|
|
}
|
2012-11-05 18:24:29 -05:00
|
|
|
}
|
2012-11-05 17:28:06 -05:00
|
|
|
|
2012-11-05 17:49:40 -05:00
|
|
|
// currently in groupchat window
|
|
|
|
if (win_index == _curr_prof_win) {
|
|
|
|
status_bar_active(win_index);
|
2012-11-05 17:28:06 -05:00
|
|
|
dirty = TRUE;
|
2012-11-05 17:49:40 -05:00
|
|
|
|
|
|
|
// not currenlty on groupchat window
|
|
|
|
} else {
|
|
|
|
status_bar_new(win_index);
|
|
|
|
_cons_show_incoming_message(nick, win_index);
|
|
|
|
if (_curr_prof_win == 0) {
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
|
2012-11-05 18:24:29 -05:00
|
|
|
if (strcmp(nick, room_get_nick_for_room(room_jid)) != 0) {
|
|
|
|
if (prefs_get_flash()) {
|
|
|
|
flash();
|
|
|
|
}
|
|
|
|
}
|
2012-11-05 17:49:40 -05:00
|
|
|
|
|
|
|
_wins[win_index].unread++;
|
|
|
|
}
|
|
|
|
|
2012-11-05 18:24:29 -05:00
|
|
|
if (strcmp(nick, room_get_nick_for_room(room_jid)) != 0) {
|
|
|
|
if (prefs_get_beep()) {
|
|
|
|
beep();
|
|
|
|
}
|
2012-11-05 17:49:40 -05:00
|
|
|
#ifdef HAVE_LIBNOTIFY
|
2012-11-05 18:24:29 -05:00
|
|
|
if (prefs_get_notify_message()) {
|
|
|
|
_win_notify_message(nick);
|
|
|
|
}
|
2012-11-05 17:49:40 -05:00
|
|
|
#endif
|
2012-11-05 18:24:29 -05:00
|
|
|
}
|
2012-11-05 17:28:06 -05:00
|
|
|
}
|
|
|
|
|
2012-11-09 22:30:27 -05: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 = _wins[win_index].win;
|
|
|
|
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(win, COLOUR_ROOMINFO);
|
2012-11-09 22:30:27 -05:00
|
|
|
wprintw(win, "Room subject: ");
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(win, COLOUR_ROOMINFO);
|
2012-11-09 22:30:27 -05:00
|
|
|
wprintw(win, "%s\n", subject);
|
|
|
|
|
|
|
|
// currently in groupchat window
|
|
|
|
if (win_index == _curr_prof_win) {
|
|
|
|
status_bar_active(win_index);
|
|
|
|
dirty = TRUE;
|
|
|
|
|
|
|
|
// not currenlty on groupchat window
|
|
|
|
} else {
|
|
|
|
status_bar_new(win_index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-19 17:15:53 -05: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 = _wins[win_index].win;
|
|
|
|
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(win, COLOUR_ROOMINFO);
|
2012-11-19 17:15:53 -05:00
|
|
|
wprintw(win, "Room message: ");
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(win, COLOUR_ROOMINFO);
|
2012-11-19 17:15:53 -05:00
|
|
|
wprintw(win, "%s\n", message);
|
|
|
|
|
|
|
|
// currently in groupchat window
|
|
|
|
if (win_index == _curr_prof_win) {
|
|
|
|
status_bar_active(win_index);
|
|
|
|
dirty = TRUE;
|
|
|
|
|
|
|
|
// not currenlty on groupchat window
|
|
|
|
} else {
|
|
|
|
status_bar_new(win_index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 16:47:30 -04:00
|
|
|
void
|
|
|
|
win_show(const char * const msg)
|
|
|
|
{
|
|
|
|
WINDOW *win = _wins[_curr_prof_win].win;
|
|
|
|
_win_show_time(win);
|
2012-10-21 15:02:20 -04:00
|
|
|
wprintw(win, "%s\n", msg);
|
2012-07-29 16:47:30 -04:00
|
|
|
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
win_bad_show(const char * const msg)
|
|
|
|
{
|
|
|
|
WINDOW *win = _wins[_curr_prof_win].win;
|
|
|
|
_win_show_time(win);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(win, COLOUR_ERROR);
|
2012-07-29 16:47:30 -04:00
|
|
|
wprintw(win, "%s\n", msg);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(win, COLOUR_ERROR);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-07-29 16:47:30 -04:00
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
2012-10-21 15:02:20 -04:00
|
|
|
win_contact_online(const char * const from, const char * const show,
|
2012-03-08 20:06:55 -05:00
|
|
|
const char * const status)
|
2012-02-27 20:10:46 -05:00
|
|
|
{
|
2012-02-29 20:37:09 -05:00
|
|
|
_show_status_string(_cons_win, from, show, status, "++", "online");
|
|
|
|
|
|
|
|
int win_index = _find_prof_win_index(from);
|
|
|
|
if (win_index != NUM_WINS) {
|
|
|
|
WINDOW *win = _wins[win_index].win;
|
|
|
|
_show_status_string(win, from, show, status, "++", "online");
|
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-03-05 20:04:45 -05:00
|
|
|
if (win_index == _curr_prof_win)
|
|
|
|
dirty = TRUE;
|
2012-02-27 20:10:46 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
2012-10-21 15:02:20 -04:00
|
|
|
win_contact_offline(const char * const from, const char * const show,
|
2012-03-08 20:06:55 -05:00
|
|
|
const char * const status)
|
2012-02-27 20:10:46 -05:00
|
|
|
{
|
2012-02-29 20:37:09 -05:00
|
|
|
_show_status_string(_cons_win, from, show, status, "--", "offline");
|
|
|
|
|
|
|
|
int win_index = _find_prof_win_index(from);
|
|
|
|
if (win_index != NUM_WINS) {
|
|
|
|
WINDOW *win = _wins[win_index].win;
|
|
|
|
_show_status_string(win, from, show, status, "--", "offline");
|
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-03-05 20:04:45 -05:00
|
|
|
if (win_index == _curr_prof_win)
|
|
|
|
dirty = TRUE;
|
2012-02-27 20:10:46 -05:00
|
|
|
}
|
|
|
|
|
2012-11-13 17:08:46 -05:00
|
|
|
void
|
|
|
|
win_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-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
win_disconnected(void)
|
2012-04-19 16:03:48 -04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
// show message in all active chats
|
|
|
|
for (i = 1; i < NUM_WINS; i++) {
|
|
|
|
if (strcmp(_wins[i].from, "") != 0) {
|
2012-11-19 18:15:42 -05:00
|
|
|
WINDOW *win = _wins[i].win;
|
2012-04-19 16:03:48 -04:00
|
|
|
_win_show_time(win);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(win, COLOUR_ERROR);
|
2012-04-19 16:03:48 -04:00
|
|
|
wprintw(win, "%s\n", "Lost connection.");
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(win, COLOUR_ERROR);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-04-19 16:03:48 -04:00
|
|
|
// if current win, set dirty
|
|
|
|
if (i == _curr_prof_win) {
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
cons_prefs(void)
|
2012-07-19 18:43:50 -04:00
|
|
|
{
|
|
|
|
cons_show("");
|
|
|
|
cons_show("Current preferences:");
|
|
|
|
cons_show("");
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-07-19 18:43:50 -04:00
|
|
|
if (prefs_get_beep())
|
2012-10-27 19:33:20 -04:00
|
|
|
cons_show("Terminal beep : ON");
|
2012-07-19 18:43:50 -04:00
|
|
|
else
|
2012-10-27 19:33:20 -04:00
|
|
|
cons_show("Terminal beep : OFF");
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-07-19 18:43:50 -04:00
|
|
|
if (prefs_get_flash())
|
2012-10-27 19:33:20 -04:00
|
|
|
cons_show("Terminal flash : ON");
|
2012-07-19 18:43:50 -04:00
|
|
|
else
|
2012-10-27 19:33:20 -04:00
|
|
|
cons_show("Terminal flash : OFF");
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-10-27 19:33:20 -04:00
|
|
|
if (prefs_get_intype())
|
|
|
|
cons_show("Show typing : ON");
|
2012-07-19 18:43:50 -04:00
|
|
|
else
|
2012-10-27 19:33:20 -04:00
|
|
|
cons_show("Show typing : OFF");
|
2012-08-15 19:50:32 -04:00
|
|
|
|
2012-07-19 18:43:50 -04:00
|
|
|
if (prefs_get_showsplash())
|
2012-10-27 19:33:20 -04:00
|
|
|
cons_show("Splash screen : ON");
|
2012-07-19 18:43:50 -04:00
|
|
|
else
|
2012-10-27 19:33:20 -04:00
|
|
|
cons_show("Splash screen : OFF");
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-11-12 14:59:21 -05:00
|
|
|
cons_show("Max log size : %d bytes", prefs_get_max_log_size());
|
|
|
|
|
2012-07-22 18:11:10 -04:00
|
|
|
if (prefs_get_chlog())
|
2012-10-27 19:33:20 -04:00
|
|
|
cons_show("Chat logging : ON");
|
2012-07-22 18:11:10 -04:00
|
|
|
else
|
2012-10-27 19:33:20 -04:00
|
|
|
cons_show("Chat logging : OFF");
|
2012-09-23 17:24:31 -04:00
|
|
|
|
2012-10-31 17:41:00 -04:00
|
|
|
if (prefs_get_states())
|
|
|
|
cons_show("Send chat states : ON");
|
|
|
|
else
|
|
|
|
cons_show("Send chat states : OFF");
|
|
|
|
|
2012-10-31 20:12:35 -04:00
|
|
|
if (prefs_get_outtype())
|
|
|
|
cons_show("Send typing notifications : ON");
|
|
|
|
else
|
|
|
|
cons_show("Send typing notifications : OFF");
|
|
|
|
|
2012-10-14 13:26:08 -04:00
|
|
|
if (prefs_get_history())
|
2012-10-27 19:33:20 -04:00
|
|
|
cons_show("Chat history : ON");
|
2012-10-14 13:26:08 -04:00
|
|
|
else
|
2012-10-27 19:33:20 -04:00
|
|
|
cons_show("Chat history : OFF");
|
2012-10-14 13:26:08 -04:00
|
|
|
|
2012-10-23 20:35:36 -04:00
|
|
|
if (prefs_get_vercheck())
|
2012-10-27 19:33:20 -04:00
|
|
|
cons_show("Version checking : ON");
|
|
|
|
else
|
|
|
|
cons_show("Version checking : OFF");
|
|
|
|
|
|
|
|
if (prefs_get_notify_message())
|
|
|
|
cons_show("Message notifications : ON");
|
|
|
|
else
|
|
|
|
cons_show("Message notifications : OFF");
|
|
|
|
|
|
|
|
if (prefs_get_notify_typing())
|
|
|
|
cons_show("Typing notifications : ON");
|
2012-10-23 20:35:36 -04:00
|
|
|
else
|
2012-10-27 19:33:20 -04:00
|
|
|
cons_show("Typing notifications : OFF");
|
2012-10-23 20:35:36 -04:00
|
|
|
|
2012-10-27 17:05:08 -04:00
|
|
|
gint remind_period = prefs_get_notify_remind();
|
2012-10-03 17:23:22 -04:00
|
|
|
if (remind_period == 0) {
|
2012-10-27 19:33:20 -04:00
|
|
|
cons_show("Reminder notification period : OFF");
|
2012-10-03 17:23:22 -04:00
|
|
|
} else if (remind_period == 1) {
|
2012-10-27 19:33:20 -04:00
|
|
|
cons_show("Reminder notification period : 1 second");
|
2012-10-03 17:23:22 -04:00
|
|
|
} else {
|
2012-10-27 19:33:20 -04:00
|
|
|
cons_show("Reminder notification period : %d seconds", remind_period);
|
2012-10-03 17:23:22 -04:00
|
|
|
}
|
2012-07-22 18:11:10 -04:00
|
|
|
|
2012-11-13 05:51:28 -05:00
|
|
|
cons_show("Priority : %d", prefs_get_priority());
|
|
|
|
|
2012-07-19 18:43:50 -04:00
|
|
|
cons_show("");
|
|
|
|
|
|
|
|
if (_curr_prof_win == 0)
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
|
2012-08-15 20:39:19 -04:00
|
|
|
static void
|
|
|
|
_cons_show_basic_help(void)
|
2012-02-07 17:59:47 -05:00
|
|
|
{
|
2012-03-10 19:39:13 -05:00
|
|
|
cons_show("");
|
2012-08-14 17:06:27 -04:00
|
|
|
|
2012-08-22 19:30:11 -04:00
|
|
|
GSList *basic_helpers = cmd_get_basic_help();
|
2012-08-14 17:06:27 -04:00
|
|
|
while (basic_helpers != NULL) {
|
|
|
|
struct cmd_help_t *help = (struct cmd_help_t *)basic_helpers->data;
|
2012-11-11 14:32:42 -05:00
|
|
|
cons_show("%-30s: %s", help->usage, help->short_help);
|
2012-08-14 17:06:27 -04:00
|
|
|
basic_helpers = g_slist_next(basic_helpers);
|
|
|
|
}
|
|
|
|
|
2012-05-28 18:40:11 -04:00
|
|
|
cons_show("");
|
2012-08-15 20:39:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cons_help(void)
|
2012-10-22 18:58:47 -04:00
|
|
|
{
|
|
|
|
cons_show("");
|
2012-11-11 18:57:02 -05:00
|
|
|
cons_show("Choose a help option:");
|
2012-10-22 18:58:47 -04:00
|
|
|
cons_show("");
|
2012-11-11 18:57:02 -05:00
|
|
|
cons_show("/help list - List all commands.");
|
2012-11-14 14:27:37 -05:00
|
|
|
cons_show("/help basic - Summary of basic usage commands.");
|
2012-11-13 17:24:37 -05:00
|
|
|
cons_show("/help presence - Summary of online status change commands.");
|
2012-11-11 18:57:02 -05:00
|
|
|
cons_show("/help settings - Summary of commands for changing Profanity settings.");
|
2012-10-22 18:58:47 -04:00
|
|
|
cons_show("/help navigation - How to navigate around Profanity.");
|
2012-11-11 18:57:02 -05:00
|
|
|
cons_show("/help [command] - Detailed help on a specific command.");
|
2012-10-22 18:58:47 -04:00
|
|
|
cons_show("");
|
|
|
|
|
|
|
|
if (_curr_prof_win == 0)
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cons_basic_help(void)
|
2012-08-15 20:39:19 -04:00
|
|
|
{
|
2012-08-15 20:47:23 -04:00
|
|
|
cons_show("");
|
|
|
|
cons_show("Basic Commands:");
|
2012-08-15 20:39:19 -04:00
|
|
|
_cons_show_basic_help();
|
|
|
|
|
2012-10-22 18:58:47 -04:00
|
|
|
if (_curr_prof_win == 0)
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cons_settings_help(void)
|
|
|
|
{
|
|
|
|
cons_show("");
|
2012-05-28 18:40:11 -04:00
|
|
|
cons_show("Settings:");
|
|
|
|
cons_show("");
|
2012-08-14 17:06:27 -04:00
|
|
|
|
2012-08-22 19:30:11 -04:00
|
|
|
GSList *settings_helpers = cmd_get_settings_help();
|
2012-08-14 17:06:27 -04:00
|
|
|
while (settings_helpers != NULL) {
|
|
|
|
struct cmd_help_t *help = (struct cmd_help_t *)settings_helpers->data;
|
2012-10-03 17:19:46 -04:00
|
|
|
cons_show("%-25s: %s", help->usage, help->short_help);
|
2012-08-14 17:06:27 -04:00
|
|
|
settings_helpers = g_slist_next(settings_helpers);
|
|
|
|
}
|
2012-10-22 19:00:10 -04:00
|
|
|
|
2012-10-22 18:58:47 -04:00
|
|
|
cons_show("");
|
|
|
|
|
|
|
|
if (_curr_prof_win == 0)
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
2012-08-14 17:06:27 -04:00
|
|
|
|
2012-10-22 18:58:47 -04:00
|
|
|
void
|
2012-11-13 17:24:37 -05:00
|
|
|
cons_presence_help(void)
|
2012-10-22 18:58:47 -04:00
|
|
|
{
|
2012-05-28 18:40:11 -04:00
|
|
|
cons_show("");
|
2012-11-13 17:24:37 -05:00
|
|
|
cons_show("Presence changes:");
|
2012-05-28 18:40:11 -04:00
|
|
|
cons_show("");
|
2012-08-14 17:06:27 -04:00
|
|
|
|
2012-11-13 17:24:37 -05:00
|
|
|
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 17:19:46 -04:00
|
|
|
cons_show("%-25s: %s", help->usage, help->short_help);
|
2012-11-13 17:24:37 -05:00
|
|
|
presence_helpers = g_slist_next(presence_helpers);
|
2012-08-14 17:06:27 -04:00
|
|
|
}
|
|
|
|
|
2012-10-22 18:58:47 -04:00
|
|
|
cons_show("");
|
|
|
|
|
|
|
|
if (_curr_prof_win == 0)
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cons_navigation_help(void)
|
|
|
|
{
|
2012-03-10 19:39:13 -05:00
|
|
|
cons_show("");
|
2012-06-18 20:21:02 -04:00
|
|
|
cons_show("Navigation:");
|
2012-03-10 19:39:13 -05:00
|
|
|
cons_show("");
|
2012-07-17 19:29:07 -04:00
|
|
|
cons_show("F1 : This console window.");
|
|
|
|
cons_show("F2-F10 : Chat windows.");
|
|
|
|
cons_show("UP, DOWN : Navigate input history.");
|
|
|
|
cons_show("LEFT, RIGHT, HOME, END : Edit current input.");
|
2012-10-22 19:18:28 -04:00
|
|
|
cons_show("ESC : Clear current input.");
|
2012-07-17 19:29:07 -04:00
|
|
|
cons_show("TAB : Autocomplete command/recipient/login");
|
|
|
|
cons_show("PAGE UP, PAGE DOWN : Page the main window.");
|
2012-05-28 18:40:11 -04:00
|
|
|
cons_show("");
|
2012-03-05 20:04:45 -05:00
|
|
|
|
|
|
|
if (_curr_prof_win == 0)
|
|
|
|
dirty = TRUE;
|
2012-02-08 21:47:25 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
2012-10-04 17:48:41 -04:00
|
|
|
cons_show_contacts(GSList *list)
|
2012-03-08 18:03:26 -05:00
|
|
|
{
|
2012-05-09 19:30:03 -04:00
|
|
|
GSList *curr = list;
|
2012-03-19 20:05:33 -04:00
|
|
|
|
|
|
|
while(curr) {
|
2012-05-09 19:30:03 -04:00
|
|
|
PContact contact = curr->data;
|
2012-11-13 17:14:40 -05:00
|
|
|
if (strcmp(p_contact_subscription(contact), "none") != 0) {
|
|
|
|
_cons_show_contact(contact);
|
|
|
|
}
|
2012-05-09 19:30:03 -04:00
|
|
|
curr = g_slist_next(curr);
|
2012-03-08 18:03:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
2012-11-09 20:39:42 -05:00
|
|
|
cons_bad_show(const char * const msg, ...)
|
2012-02-18 19:43:35 -05:00
|
|
|
{
|
2012-11-09 20:39:42 -05:00
|
|
|
va_list arg;
|
|
|
|
va_start(arg, msg);
|
|
|
|
GString *fmt_msg = g_string_new(NULL);
|
|
|
|
g_string_vprintf(fmt_msg, msg, arg);
|
2012-02-29 19:34:54 -05:00
|
|
|
_win_show_time(_cons_win);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(_cons_win, COLOUR_ERROR);
|
2012-11-09 20:39:42 -05:00
|
|
|
wprintw(_cons_win, "%s\n", fmt_msg->str);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(_cons_win, COLOUR_ERROR);
|
2012-11-09 20:39:42 -05:00
|
|
|
g_string_free(fmt_msg, TRUE);
|
|
|
|
va_end(arg);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-03-05 20:04:45 -05:00
|
|
|
if (_curr_prof_win == 0)
|
|
|
|
dirty = TRUE;
|
2012-02-18 19:43:35 -05:00
|
|
|
}
|
|
|
|
|
2012-11-11 18:57:02 -05:00
|
|
|
void
|
|
|
|
cons_show_time(void)
|
|
|
|
{
|
|
|
|
_win_show_time(_cons_win);
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
2012-10-03 17:06:04 -04:00
|
|
|
cons_show(const char * const msg, ...)
|
2012-02-18 19:43:35 -05:00
|
|
|
{
|
2012-10-03 17:06:04 -04:00
|
|
|
va_list arg;
|
|
|
|
va_start(arg, msg);
|
|
|
|
GString *fmt_msg = g_string_new(NULL);
|
|
|
|
g_string_vprintf(fmt_msg, msg, arg);
|
2012-02-29 19:34:54 -05:00
|
|
|
_win_show_time(_cons_win);
|
2012-10-21 15:02:20 -04:00
|
|
|
wprintw(_cons_win, "%s\n", fmt_msg->str);
|
2012-10-03 17:06:04 -04:00
|
|
|
g_string_free(fmt_msg, TRUE);
|
|
|
|
va_end(arg);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-03-05 20:04:45 -05:00
|
|
|
if (_curr_prof_win == 0)
|
|
|
|
dirty = TRUE;
|
2012-02-18 19:43:35 -05:00
|
|
|
}
|
|
|
|
|
2012-11-11 18:57:02 -05:00
|
|
|
void
|
|
|
|
cons_show_word(const char * const word)
|
|
|
|
{
|
|
|
|
wprintw(_cons_win, "%s", word);
|
|
|
|
|
|
|
|
if (_curr_prof_win == 0)
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
cons_bad_command(const char * const cmd)
|
2012-02-07 17:59:47 -05:00
|
|
|
{
|
2012-02-29 19:34:54 -05:00
|
|
|
_win_show_time(_cons_win);
|
|
|
|
wprintw(_cons_win, "Unknown command: %s\n", cmd);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-03-05 20:04:45 -05:00
|
|
|
if (_curr_prof_win == 0)
|
|
|
|
dirty = TRUE;
|
2012-02-05 18:29:09 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
win_handle_special_keys(const int * const ch)
|
2012-02-26 21:01:19 -05:00
|
|
|
{
|
2012-03-10 15:46:30 -05:00
|
|
|
_win_handle_switch(ch);
|
|
|
|
_win_handle_page(ch);
|
2012-02-26 21:01:19 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
win_page_off(void)
|
2012-03-04 19:06:24 -05:00
|
|
|
{
|
2012-09-10 17:57:42 -04:00
|
|
|
int rows = getmaxy(stdscr);
|
2012-03-04 19:35:05 -05:00
|
|
|
_wins[_curr_prof_win].paged = 0;
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-09-10 17:57:42 -04:00
|
|
|
int y = getcury(_wins[_curr_prof_win].win);
|
2012-03-04 19:06:24 -05:00
|
|
|
|
2012-03-04 19:35:05 -05:00
|
|
|
int size = rows - 3;
|
2012-03-04 19:06:24 -05:00
|
|
|
|
2012-03-04 19:35:05 -05:00
|
|
|
_wins[_curr_prof_win].y_pos = y - (size - 1);
|
|
|
|
if (_wins[_curr_prof_win].y_pos < 0)
|
|
|
|
_wins[_curr_prof_win].y_pos = 0;
|
2012-03-05 20:04:45 -05:00
|
|
|
|
|
|
|
dirty = TRUE;
|
2012-03-04 19:06:24 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
|
|
|
_create_windows(void)
|
2012-02-07 17:59:47 -05:00
|
|
|
{
|
2012-10-22 19:18:28 -04:00
|
|
|
int cols = getmaxx(stdscr);
|
2012-04-22 20:03:11 -04:00
|
|
|
max_cols = cols;
|
2012-02-07 17:59:47 -05:00
|
|
|
|
2012-02-08 17:26:43 -05:00
|
|
|
// create the console window in 0
|
|
|
|
struct prof_win cons;
|
2012-02-29 19:34:54 -05:00
|
|
|
strcpy(cons.from, CONS_WIN_TITLE);
|
2012-03-04 19:06:24 -05:00
|
|
|
cons.win = newpad(PAD_SIZE, cols);
|
2012-08-18 19:58:08 -04:00
|
|
|
wbkgd(cons.win, COLOUR_TEXT);
|
2012-03-04 19:06:24 -05:00
|
|
|
cons.y_pos = 0;
|
|
|
|
cons.paged = 0;
|
2012-09-23 15:10:03 -04:00
|
|
|
cons.unread = 0;
|
2012-10-13 23:10:03 -04:00
|
|
|
cons.history_shown = 0;
|
2012-11-12 18:05:22 -05:00
|
|
|
cons.type = WIN_CONSOLE;
|
2012-02-08 17:26:43 -05:00
|
|
|
scrollok(cons.win, TRUE);
|
2012-02-08 19:48:17 -05:00
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
_wins[0] = cons;
|
2012-10-22 19:18:28 -04:00
|
|
|
|
|
|
|
cons_about();
|
|
|
|
|
|
|
|
// create the chat windows
|
|
|
|
int i;
|
|
|
|
for (i = 1; i < NUM_WINS; i++) {
|
|
|
|
struct prof_win chat;
|
|
|
|
strcpy(chat.from, "");
|
|
|
|
chat.win = newpad(PAD_SIZE, cols);
|
|
|
|
wbkgd(chat.win, COLOUR_TEXT);
|
|
|
|
chat.y_pos = 0;
|
|
|
|
chat.paged = 0;
|
|
|
|
chat.unread = 0;
|
|
|
|
chat.history_shown = 0;
|
2012-11-12 18:05:22 -05:00
|
|
|
chat.type = WIN_UNUSED;
|
2012-10-22 19:18:28 -04:00
|
|
|
scrollok(chat.win, TRUE);
|
|
|
|
_wins[i] = chat;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cons_about(void)
|
|
|
|
{
|
|
|
|
int rows, cols;
|
|
|
|
getmaxyx(stdscr, rows, cols);
|
|
|
|
|
2012-02-29 19:34:54 -05:00
|
|
|
_cons_win = _wins[0].win;
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-06-04 11:15:12 -04:00
|
|
|
if (prefs_get_showsplash()) {
|
2012-09-09 17:22:14 -04:00
|
|
|
_cons_splash_logo();
|
2012-06-04 11:15:12 -04:00
|
|
|
} else {
|
2012-07-19 19:39:21 -04:00
|
|
|
_win_show_time(_cons_win);
|
2012-10-23 18:52:40 -04:00
|
|
|
|
2012-10-23 19:59:18 -04:00
|
|
|
if (strcmp(PACKAGE_STATUS, "development") == 0) {
|
2012-10-23 18:52:40 -04:00
|
|
|
wprintw(_cons_win, "Welcome to Profanity, version %sdev\n", PACKAGE_VERSION);
|
|
|
|
} else {
|
|
|
|
wprintw(_cons_win, "Welcome to Profanity, version %s\n", PACKAGE_VERSION);
|
|
|
|
}
|
2012-06-04 11:15:12 -04:00
|
|
|
}
|
2012-09-09 17:22:14 -04:00
|
|
|
|
|
|
|
_win_show_time(_cons_win);
|
|
|
|
wprintw(_cons_win, "Copyright (C) 2012 James Booth <%s>.\n", PACKAGE_BUGREPORT);
|
|
|
|
_win_show_time(_cons_win);
|
|
|
|
wprintw(_cons_win, "License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n");
|
|
|
|
_win_show_time(_cons_win);
|
|
|
|
wprintw(_cons_win, "\n");
|
|
|
|
_win_show_time(_cons_win);
|
|
|
|
wprintw(_cons_win, "This is free software; you are free to change and redistribute it.\n");
|
|
|
|
_win_show_time(_cons_win);
|
|
|
|
wprintw(_cons_win, "There is NO WARRANTY, to the extent permitted by law.\n");
|
|
|
|
_win_show_time(_cons_win);
|
|
|
|
wprintw(_cons_win, "\n");
|
|
|
|
_win_show_time(_cons_win);
|
|
|
|
wprintw(_cons_win, "Type '/help' to show complete help.\n");
|
|
|
|
_win_show_time(_cons_win);
|
|
|
|
wprintw(_cons_win, "\n");
|
2012-10-23 19:18:32 -04:00
|
|
|
|
2012-10-23 20:35:36 -04:00
|
|
|
if (prefs_get_vercheck()) {
|
|
|
|
cons_check_version(FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
prefresh(_cons_win, 0, 0, 1, 0, rows-3, cols-1);
|
2012-10-23 19:18:32 -04:00
|
|
|
|
2012-10-23 20:35:36 -04:00
|
|
|
dirty = TRUE;
|
|
|
|
}
|
2012-10-23 19:18:32 -04:00
|
|
|
|
2012-10-23 20:35:36 -04: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(_cons_win);
|
|
|
|
wprintw(_cons_win, "A new version of Profanity is available: %s", latest_release);
|
|
|
|
_win_show_time(_cons_win);
|
2012-11-05 19:59:38 -05:00
|
|
|
wprintw(_cons_win, "Check <http://www.profanity.im> for details.\n");
|
2012-10-23 20:35:36 -04:00
|
|
|
free(latest_release);
|
|
|
|
_win_show_time(_cons_win);
|
|
|
|
wprintw(_cons_win, "\n");
|
|
|
|
} else {
|
|
|
|
if (not_available_msg) {
|
|
|
|
cons_show("No new version available.");
|
|
|
|
cons_show("");
|
2012-10-23 19:59:18 -04:00
|
|
|
}
|
2012-10-23 19:18:32 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-02-07 17:59:47 -05:00
|
|
|
}
|
2012-02-12 19:53:10 -05:00
|
|
|
|
2012-10-23 19:59:18 -04: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 18:19:48 -04:00
|
|
|
static void
|
2012-09-09 17:22:14 -04:00
|
|
|
_cons_splash_logo(void)
|
2012-06-04 11:15:12 -04:00
|
|
|
{
|
2012-09-09 17:22:14 -04:00
|
|
|
_win_show_time(_cons_win);
|
|
|
|
wprintw(_cons_win, "Welcome to\n");
|
|
|
|
|
|
|
|
_win_show_time(_cons_win);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(_cons_win, COLOUR_SPLASH);
|
2012-09-09 17:22:14 -04:00
|
|
|
wprintw(_cons_win, " ___ _ \n");
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(_cons_win, COLOUR_SPLASH);
|
2012-09-09 17:22:14 -04:00
|
|
|
|
|
|
|
_win_show_time(_cons_win);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(_cons_win, COLOUR_SPLASH);
|
2012-09-09 17:22:14 -04:00
|
|
|
wprintw(_cons_win, " / __) (_)_ \n");
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(_cons_win, COLOUR_SPLASH);
|
2012-09-09 17:22:14 -04:00
|
|
|
|
|
|
|
_win_show_time(_cons_win);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(_cons_win, COLOUR_SPLASH);
|
2012-09-09 17:22:14 -04:00
|
|
|
wprintw(_cons_win, " ____ ____ ___ | |__ ____ ____ _| |_ _ _ \n");
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(_cons_win, COLOUR_SPLASH);
|
2012-09-09 17:22:14 -04:00
|
|
|
|
|
|
|
_win_show_time(_cons_win);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(_cons_win, COLOUR_SPLASH);
|
2012-09-09 17:22:14 -04:00
|
|
|
wprintw(_cons_win, "| _ \\ / ___) _ \\| __) _ | _ \\| | _) | | |\n");
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(_cons_win, COLOUR_SPLASH);
|
2012-09-09 17:22:14 -04:00
|
|
|
|
|
|
|
_win_show_time(_cons_win);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(_cons_win, COLOUR_SPLASH);
|
2012-09-09 17:22:14 -04:00
|
|
|
wprintw(_cons_win, "| | | | | | |_| | | ( ( | | | | | | |_| |_| |\n");
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(_cons_win, COLOUR_SPLASH);
|
2012-09-09 17:22:14 -04:00
|
|
|
|
|
|
|
_win_show_time(_cons_win);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(_cons_win, COLOUR_SPLASH);
|
2012-09-09 17:22:14 -04:00
|
|
|
wprintw(_cons_win, "| ||_/|_| \\___/|_| \\_||_|_| |_|_|\\___)__ |\n");
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(_cons_win, COLOUR_SPLASH);
|
2012-09-09 17:22:14 -04:00
|
|
|
|
|
|
|
_win_show_time(_cons_win);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(_cons_win, COLOUR_SPLASH);
|
2012-09-09 17:22:14 -04:00
|
|
|
wprintw(_cons_win, "|_| (____/ \n");
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(_cons_win, COLOUR_SPLASH);
|
2012-09-09 17:22:14 -04:00
|
|
|
|
|
|
|
_win_show_time(_cons_win);
|
|
|
|
wprintw(_cons_win, "\n");
|
|
|
|
_win_show_time(_cons_win);
|
2012-10-27 12:30:30 -04:00
|
|
|
if (strcmp(PACKAGE_STATUS, "development") == 0) {
|
2012-10-23 18:52:40 -04:00
|
|
|
wprintw(_cons_win, "Version %sdev\n", PACKAGE_VERSION);
|
|
|
|
} else {
|
|
|
|
wprintw(_cons_win, "Version %s\n", PACKAGE_VERSION);
|
|
|
|
}
|
2012-06-04 11:15:12 -04:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static int
|
|
|
|
_find_prof_win_index(const char * const contact)
|
2012-02-12 19:53:10 -05:00
|
|
|
{
|
|
|
|
// find the chat window for recipient
|
|
|
|
int i;
|
2012-02-29 20:02:10 -05:00
|
|
|
for (i = 1; i < NUM_WINS; i++)
|
2012-02-12 19:53:10 -05:00
|
|
|
if (strcmp(_wins[i].from, contact) == 0)
|
|
|
|
break;
|
|
|
|
|
2012-02-29 20:02:10 -05:00
|
|
|
return i;
|
2012-02-29 19:57:35 -05:00
|
|
|
}
|
2012-02-12 19:53:10 -05:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static int
|
2012-11-12 18:05:22 -05:00
|
|
|
_new_prof_win(const char * const contact, win_type_t type)
|
2012-02-29 19:57:35 -05:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
// find the first unused one
|
2012-02-29 20:02:10 -05:00
|
|
|
for (i = 1; i < NUM_WINS; i++)
|
2012-02-29 19:57:35 -05:00
|
|
|
if (strcmp(_wins[i].from, "") == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
// set it up
|
|
|
|
strcpy(_wins[i].from, contact);
|
|
|
|
wclear(_wins[i].win);
|
2012-11-12 18:05:22 -05:00
|
|
|
_wins[i].type = type;
|
2012-02-12 20:05:11 -05:00
|
|
|
|
2012-02-18 16:23:26 -05:00
|
|
|
return i;
|
2012-02-12 19:53:10 -05:00
|
|
|
}
|
2012-07-24 18:19:48 -04:00
|
|
|
|
|
|
|
static void
|
|
|
|
_win_switch_if_active(const int i)
|
2012-02-26 21:01:19 -05:00
|
|
|
{
|
2012-03-04 19:35:05 -05:00
|
|
|
win_page_off();
|
2012-02-26 21:01:19 -05:00
|
|
|
if (strcmp(_wins[i].from, "") != 0) {
|
2012-02-29 19:34:54 -05:00
|
|
|
_curr_prof_win = i;
|
2012-03-04 19:35:05 -05:00
|
|
|
win_page_off();
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-09-23 15:10:03 -04:00
|
|
|
_wins[i].unread = 0;
|
2012-02-26 21:01:19 -05:00
|
|
|
|
2012-04-19 18:32:44 -04:00
|
|
|
if (i == 0) {
|
2012-02-26 21:01:19 -05:00
|
|
|
title_bar_title();
|
2012-04-19 18:32:44 -04:00
|
|
|
} else {
|
2012-08-16 16:43:52 -04:00
|
|
|
title_bar_set_recipient(_wins[i].from);
|
|
|
|
title_bar_draw();;
|
2012-04-19 18:32:44 -04:00
|
|
|
status_bar_active(i);
|
|
|
|
}
|
2012-02-26 21:01:19 -05:00
|
|
|
}
|
2012-03-05 20:04:45 -05:00
|
|
|
|
|
|
|
dirty = TRUE;
|
2012-02-26 21:01:19 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
|
|
|
_win_show_time(WINDOW *win)
|
2012-02-26 13:35:40 -05:00
|
|
|
{
|
2012-10-21 15:02:20 -04:00
|
|
|
GDateTime *time = g_date_time_new_now_local();
|
2012-10-08 18:00:39 -04:00
|
|
|
gchar *date_fmt = g_date_time_format(time, "%H:%M:%S");
|
2012-08-26 17:36:00 -04:00
|
|
|
wprintw(win, "%s - ", date_fmt);
|
|
|
|
g_date_time_unref(time);
|
2012-09-23 14:26:07 -04:00
|
|
|
g_free(date_fmt);
|
2012-02-26 13:35:40 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
|
|
|
_win_show_user(WINDOW *win, const char * const user, const int colour)
|
2012-02-26 13:35:40 -05:00
|
|
|
{
|
|
|
|
if (colour)
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(win, COLOUR_THEM);
|
2012-10-13 23:10:03 -04:00
|
|
|
else
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(win, COLOUR_ME);
|
2012-02-29 19:34:54 -05:00
|
|
|
wprintw(win, "%s: ", user);
|
2012-02-26 13:35:40 -05:00
|
|
|
if (colour)
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(win, COLOUR_THEM);
|
2012-10-13 23:10:03 -04:00
|
|
|
else
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(win, COLOUR_ME);
|
2012-02-26 13:35:40 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
|
|
|
_win_show_message(WINDOW *win, const char * const message)
|
2012-02-29 18:46:25 -05:00
|
|
|
{
|
|
|
|
wprintw(win, "%s\n", message);
|
|
|
|
}
|
|
|
|
|
2012-10-18 11:18:44 -04:00
|
|
|
static void
|
|
|
|
_win_show_error_msg(WINDOW *win, const char * const message)
|
|
|
|
{
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(win, COLOUR_ERROR);
|
2012-10-18 11:18:44 -04:00
|
|
|
wprintw(win, "%s\n", message);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(win, COLOUR_ERROR);
|
2012-10-18 11:18:44 -04:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
|
|
|
_current_window_refresh(void)
|
2012-02-12 19:59:04 -05:00
|
|
|
{
|
2012-03-04 19:06:24 -05:00
|
|
|
int rows, cols;
|
|
|
|
getmaxyx(stdscr, rows, cols);
|
2012-03-04 19:35:05 -05:00
|
|
|
|
|
|
|
WINDOW *current = _wins[_curr_prof_win].win;
|
|
|
|
prefresh(current, _wins[_curr_prof_win].y_pos, 0, 1, 0, rows-3, cols-1);
|
2012-02-12 19:59:04 -05:00
|
|
|
}
|
2012-02-29 18:54:48 -05:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
_win_resize_all(void)
|
2012-04-22 17:35:54 -04:00
|
|
|
{
|
|
|
|
int rows, cols;
|
|
|
|
getmaxyx(stdscr, rows, cols);
|
|
|
|
|
2012-04-22 20:03:11 -04:00
|
|
|
// 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++) {
|
|
|
|
wresize(_wins[i].win, PAD_SIZE, cols);
|
|
|
|
}
|
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-04-22 17:35:54 -04:00
|
|
|
WINDOW *current = _wins[_curr_prof_win].win;
|
|
|
|
prefresh(current, _wins[_curr_prof_win].y_pos, 0, 1, 0, rows-3, cols-1);
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
2012-10-21 15:02:20 -04:00
|
|
|
_show_status_string(WINDOW *win, const char * const from,
|
|
|
|
const char * const show, const char * const status, const char * const pre,
|
2012-03-08 20:06:55 -05:00
|
|
|
const char * const default_show)
|
2012-02-29 18:54:48 -05:00
|
|
|
{
|
2012-10-21 15:02:20 -04:00
|
|
|
_win_show_time(win);
|
|
|
|
|
2012-08-18 20:17:48 -04: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);
|
2012-10-04 18:38:01 -04:00
|
|
|
} else if (strcmp(show, "online") == 0) {
|
|
|
|
wattron(win, COLOUR_ONLINE);
|
|
|
|
} else {
|
|
|
|
wattron(win, COLOUR_OFFLINE);
|
2012-08-18 20:17:48 -04:00
|
|
|
}
|
|
|
|
} else if (strcmp(default_show, "online") == 0) {
|
2012-08-18 19:58:08 -04:00
|
|
|
wattron(win, COLOUR_ONLINE);
|
2012-02-29 20:37:09 -05:00
|
|
|
} else {
|
2012-08-18 19:58:08 -04:00
|
|
|
wattron(win, COLOUR_OFFLINE);
|
2012-02-29 18:54:48 -05:00
|
|
|
}
|
|
|
|
|
2012-02-29 20:37:09 -05:00
|
|
|
wprintw(win, "%s %s", pre, from);
|
2012-02-29 18:54:48 -05:00
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
if (show != NULL)
|
2012-02-29 20:37:09 -05:00
|
|
|
wprintw(win, " is %s", show);
|
2012-02-29 18:54:48 -05:00
|
|
|
else
|
2012-02-29 20:37:09 -05:00
|
|
|
wprintw(win, " is %s", default_show);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-02-29 18:54:48 -05:00
|
|
|
if (status != NULL)
|
2012-02-29 20:37:09 -05:00
|
|
|
wprintw(win, ", \"%s\"", status);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-02-29 20:37:09 -05:00
|
|
|
wprintw(win, "\n");
|
2012-10-21 15:02:20 -04:00
|
|
|
|
|
|
|
if (show != NULL) {
|
2012-08-18 20:17:48 -04: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);
|
2012-10-04 18:38:01 -04:00
|
|
|
} else if (strcmp(show, "online") == 0) {
|
|
|
|
wattroff(win, COLOUR_ONLINE);
|
|
|
|
} else {
|
|
|
|
wattroff(win, COLOUR_OFFLINE);
|
2012-08-18 20:17:48 -04:00
|
|
|
}
|
|
|
|
} else if (strcmp(default_show, "online") == 0) {
|
2012-08-18 19:58:08 -04:00
|
|
|
wattroff(win, COLOUR_ONLINE);
|
2012-02-29 20:37:09 -05:00
|
|
|
} else {
|
2012-08-18 19:58:08 -04:00
|
|
|
wattroff(win, COLOUR_OFFLINE);
|
2012-02-29 20:37:09 -05:00
|
|
|
}
|
2012-02-29 18:54:48 -05:00
|
|
|
}
|
|
|
|
|
2012-08-15 19:50:32 -04:00
|
|
|
static void
|
|
|
|
_cons_show_typing(const char * const short_from)
|
|
|
|
{
|
|
|
|
_win_show_time(_cons_win);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(_cons_win, COLOUR_TYPING);
|
2012-08-15 19:50:32 -04:00
|
|
|
wprintw(_cons_win, "!! %s is typing a message...\n", short_from);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(_cons_win, COLOUR_TYPING);
|
2012-08-15 19:50:32 -04:00
|
|
|
}
|
2012-03-05 21:15:07 -05:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
|
|
|
_cons_show_incoming_message(const char * const short_from, const int win_index)
|
2012-03-05 21:15:07 -05:00
|
|
|
{
|
|
|
|
_win_show_time(_cons_win);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattron(_cons_win, COLOUR_INCOMING);
|
2012-03-05 21:15:07 -05:00
|
|
|
wprintw(_cons_win, "<< incoming from %s (%d)\n", short_from, win_index + 1);
|
2012-11-20 19:21:58 -05:00
|
|
|
wattroff(_cons_win, COLOUR_INCOMING);
|
2012-03-05 21:15:07 -05:00
|
|
|
}
|
|
|
|
|
2012-11-13 17:08:46 -05:00
|
|
|
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-11-13 17:14:40 -05:00
|
|
|
_win_show_time(_cons_win);
|
2012-11-13 17:08:46 -05:00
|
|
|
|
2012-11-13 17:14:40 -05:00
|
|
|
if (strcmp(presence, "online") == 0) {
|
|
|
|
wattron(_cons_win, COLOUR_ONLINE);
|
|
|
|
} else if (strcmp(presence, "away") == 0) {
|
|
|
|
wattron(_cons_win, COLOUR_AWAY);
|
|
|
|
} else if (strcmp(presence, "chat") == 0) {
|
|
|
|
wattron(_cons_win, COLOUR_CHAT);
|
|
|
|
} else if (strcmp(presence, "dnd") == 0) {
|
|
|
|
wattron(_cons_win, COLOUR_DND);
|
|
|
|
} else if (strcmp(presence, "xa") == 0) {
|
|
|
|
wattron(_cons_win, COLOUR_XA);
|
|
|
|
} else {
|
|
|
|
wattron(_cons_win, COLOUR_OFFLINE);
|
|
|
|
}
|
2012-11-13 17:08:46 -05:00
|
|
|
|
2012-11-13 17:14:40 -05:00
|
|
|
wprintw(_cons_win, "%s", jid);
|
2012-11-13 17:08:46 -05:00
|
|
|
|
2012-11-13 17:14:40 -05:00
|
|
|
if (name != NULL) {
|
|
|
|
wprintw(_cons_win, " (%s)", name);
|
|
|
|
}
|
2012-11-13 17:08:46 -05:00
|
|
|
|
2012-11-13 17:14:40 -05:00
|
|
|
wprintw(_cons_win, " is %s", presence);
|
2012-11-13 17:08:46 -05:00
|
|
|
|
2012-11-13 17:14:40 -05:00
|
|
|
if (status != NULL) {
|
|
|
|
wprintw(_cons_win, ", \"%s\"", p_contact_status(contact));
|
|
|
|
}
|
2012-11-13 17:08:46 -05:00
|
|
|
|
2012-11-13 17:14:40 -05:00
|
|
|
wprintw(_cons_win, "\n");
|
|
|
|
|
|
|
|
if (strcmp(presence, "online") == 0) {
|
|
|
|
wattroff(_cons_win, COLOUR_ONLINE);
|
|
|
|
} else if (strcmp(presence, "away") == 0) {
|
|
|
|
wattroff(_cons_win, COLOUR_AWAY);
|
|
|
|
} else if (strcmp(presence, "chat") == 0) {
|
|
|
|
wattroff(_cons_win, COLOUR_CHAT);
|
|
|
|
} else if (strcmp(presence, "dnd") == 0) {
|
|
|
|
wattroff(_cons_win, COLOUR_DND);
|
|
|
|
} else if (strcmp(presence, "xa") == 0) {
|
|
|
|
wattroff(_cons_win, COLOUR_XA);
|
|
|
|
} else {
|
|
|
|
wattroff(_cons_win, COLOUR_OFFLINE);
|
2012-11-13 17:08:46 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
|
|
|
_win_handle_switch(const int * const ch)
|
2012-03-10 15:46:30 -05:00
|
|
|
{
|
|
|
|
if (*ch == KEY_F(1)) {
|
|
|
|
_win_switch_if_active(0);
|
|
|
|
} else if (*ch == KEY_F(2)) {
|
|
|
|
_win_switch_if_active(1);
|
|
|
|
} else if (*ch == KEY_F(3)) {
|
|
|
|
_win_switch_if_active(2);
|
|
|
|
} else if (*ch == KEY_F(4)) {
|
|
|
|
_win_switch_if_active(3);
|
|
|
|
} else if (*ch == KEY_F(5)) {
|
|
|
|
_win_switch_if_active(4);
|
|
|
|
} else if (*ch == KEY_F(6)) {
|
|
|
|
_win_switch_if_active(5);
|
|
|
|
} else if (*ch == KEY_F(7)) {
|
|
|
|
_win_switch_if_active(6);
|
|
|
|
} else if (*ch == KEY_F(8)) {
|
|
|
|
_win_switch_if_active(7);
|
|
|
|
} else if (*ch == KEY_F(9)) {
|
|
|
|
_win_switch_if_active(8);
|
|
|
|
} else if (*ch == KEY_F(10)) {
|
|
|
|
_win_switch_if_active(9);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
|
|
|
_win_handle_page(const int * const ch)
|
2012-03-10 15:46:30 -05:00
|
|
|
{
|
2012-09-10 17:57:42 -04:00
|
|
|
int rows = getmaxy(stdscr);
|
|
|
|
int y = getcury(_wins[_curr_prof_win].win);
|
2012-03-10 15:46:30 -05:00
|
|
|
|
|
|
|
int page_space = rows - 4;
|
|
|
|
int *page_start = &_wins[_curr_prof_win].y_pos;
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-03-10 15:46:30 -05:00
|
|
|
// page up
|
|
|
|
if (*ch == KEY_PPAGE) {
|
|
|
|
*page_start -= page_space;
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-03-10 15:46:30 -05:00
|
|
|
// went past beginning, show first page
|
|
|
|
if (*page_start < 0)
|
|
|
|
*page_start = 0;
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-03-10 15:46:30 -05:00
|
|
|
_wins[_curr_prof_win].paged = 1;
|
|
|
|
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;
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-03-10 15:46:30 -05:00
|
|
|
_wins[_curr_prof_win].paged = 1;
|
|
|
|
dirty = TRUE;
|
|
|
|
}
|
|
|
|
}
|
2012-09-23 15:52:47 -04:00
|
|
|
|
|
|
|
static gint
|
|
|
|
_win_get_unread(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
gint result = 0;
|
|
|
|
for (i = 0; i < NUM_WINS; i++) {
|
|
|
|
result += _wins[i].unread;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-10-14 17:36:29 -04:00
|
|
|
static void
|
|
|
|
_win_show_history(WINDOW *win, int win_index, const char * const contact)
|
|
|
|
{
|
|
|
|
if (!_wins[win_index].history_shown) {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
_wins[win_index].history_shown = 1;
|
|
|
|
|
|
|
|
g_slist_free_full(history, free);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|