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

901 lines
23 KiB
C
Raw Normal View History

2012-02-20 20:07:38 +00:00
/*
* windows.c
*
* Copyright (C) 2012 James Booth <boothj5@gmail.com>
*
* This file is part of Profanity.
*
* Profanity is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Profanity is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "config.h"
2012-02-20 20:07:38 +00:00
#include <string.h>
#include <stdlib.h>
2012-05-04 00:00:01 +00:00
2012-02-05 23:08:15 +00:00
#include <ncurses.h>
2012-05-09 23:30:03 +00:00
#include <glib.h>
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-05-04 00:00:01 +00:00
2012-05-24 00:11:43 +00:00
#include "ui.h"
2012-02-09 00:48:17 +00:00
#include "util.h"
2012-05-04 00:00:01 +00:00
#include "contact.h"
#include "command.h"
#include "preferences.h"
2012-07-27 23:49:53 +00:00
#include "tinyurl.h"
2012-02-05 23:08:15 +00:00
2012-03-01 00:34:54 +00:00
#define CONS_WIN_TITLE "_cons"
2012-03-05 00:06:24 +00:00
#define PAD_SIZE 200
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
2012-03-01 01:02:10 +00:00
static struct prof_win _wins[NUM_WINS];
2012-03-01 00:40:51 +00:00
// the window currently being displayed
2012-03-01 00:34:54 +00:00
static int _curr_prof_win = 0;
2012-03-01 00:40:51 +00:00
// shortcut pointer to console window
2012-03-01 00:34:54 +00:00
static WINDOW * _cons_win = NULL;
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;
2012-02-12 22:09:07 +00:00
static void _create_windows(void);
static void _print_splash_logo(WINDOW *win);
2012-08-16 00:39:19 +00:00
static void _cons_show_basic_help(void);
2012-03-09 01:06:55 +00:00
static int _find_prof_win_index(const char * const contact);
static int _new_prof_win(const char * const contact);
static void _current_window_refresh(void);
static void _win_switch_if_active(const int i);
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_typing(WINDOW *win, const char * const short_from);
2012-03-09 01:06:55 +00:00
static void _win_show_message(WINDOW *win, const char * const message);
static void _show_status_string(WINDOW *win, const char * const from,
const char * const show, const char * const status, const char * const pre,
const char * const default_show);
static void _cons_show_typing(const char * const short_from);
2012-03-09 01:06:55 +00:00
static void _cons_show_incoming_message(const char * const short_from,
const int win_index);
2012-03-10 20:46:30 +00:00
static void _win_handle_switch(const int * const ch);
static void _win_handle_page(const int * const ch);
2012-04-22 21:35:54 +00:00
static void _win_resize_all(void);
2012-07-30 00:04:37 +00:00
#ifdef HAVE_LIBNOTIFY
static void _win_notify_message(char * short_from);
static void _win_notify_typing(char * short_from);
#endif
2012-02-05 23:29:09 +00:00
2012-07-24 22:19:48 +00:00
void
gui_init(void)
2012-02-05 23:29:09 +00:00
{
initscr();
cbreak();
keypad(stdscr, TRUE);
2012-02-18 21:02:51 +00:00
if (has_colors()) {
2012-04-04 08:51:30 +00:00
use_default_colors();
2012-02-18 21:02:51 +00:00
start_color();
2012-06-18 21:16:57 +00:00
init_pair(1, prefs_get_text(), prefs_get_bkgnd());
init_pair(2, prefs_get_online(), prefs_get_bkgnd());
init_pair(3, prefs_get_text(), prefs_get_bar());
init_pair(4, prefs_get_bar_draw(), prefs_get_bar());
init_pair(5, prefs_get_offline(), prefs_get_bkgnd());
2012-06-18 21:16:57 +00:00
init_pair(6, prefs_get_err(), prefs_get_bkgnd());
init_pair(7, prefs_get_inc(), prefs_get_bkgnd());
init_pair(8, prefs_get_bar_text(), prefs_get_bar());
2012-02-18 21:02:51 +00:00
}
2012-02-05 23:29:09 +00:00
refresh();
create_title_bar();
2012-02-12 22:20:21 +00:00
create_status_bar();
create_input_window();
2012-02-12 22:09:07 +00:00
_create_windows();
dirty = TRUE;
2012-02-07 00:08:59 +00:00
}
2012-07-24 22:19:48 +00:00
void
gui_refresh(void)
{
title_bar_refresh();
status_bar_refresh();
if (dirty) {
_current_window_refresh();
dirty = FALSE;
}
inp_put_back();
}
2012-07-24 22:19:48 +00:00
void
gui_close(void)
2012-02-07 00:08:59 +00:00
{
endwin();
}
2012-07-24 22:19:48 +00:00
void
gui_resize(const int ch, const char * const input, const int size)
2012-04-17 22:28:21 +00:00
{
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-07-24 22:19:48 +00:00
int
win_close_win(void)
2012-02-08 23:12:34 +00:00
{
2012-03-01 00:40:51 +00:00
if (win_in_chat()) {
// reset the chat win to unused
strcpy(_wins[_curr_prof_win].from, "");
wclear(_wins[_curr_prof_win].win);
2012-02-08 23:12:34 +00:00
2012-03-01 00:40:51 +00: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 23:12:34 +00:00
2012-03-01 00:40:51 +00:00
// success
return 1;
} else {
// didn't close anything
return 0;
}
2012-02-08 23:12:34 +00:00
}
2012-07-24 22:19:48 +00:00
int
win_in_chat(void)
2012-02-08 22:46:35 +00:00
{
2012-03-01 00:34:54 +00:00
return ((_curr_prof_win != 0) &&
(strcmp(_wins[_curr_prof_win].from, "") != 0));
2012-02-08 22:46:35 +00:00
}
2012-07-24 22:19:48 +00:00
char *
win_get_recipient(void)
2012-02-08 22:46:35 +00:00
{
2012-03-01 00:34:54 +00:00
struct prof_win current = _wins[_curr_prof_win];
char *recipient = (char *) malloc(sizeof(char) * (strlen(current.from) + 1));
strcpy(recipient, current.from);
return recipient;
2012-02-08 22:46:35 +00:00
}
void
win_show_typing(const char * const from)
{
char from_cpy[strlen(from) + 1];
strcpy(from_cpy, from);
char *short_from = strtok(from_cpy, "/");
int win_index = _find_prof_win_index(short_from);
// no chat window for user
if (win_index == NUM_WINS) {
_cons_show_typing(short_from);
// have chat window but not currently in it
} else if (win_index != _curr_prof_win) {
WINDOW *win = _wins[win_index].win;
_win_show_time(win);
_win_show_typing(win, short_from);
_cons_show_typing(short_from);
status_bar_new(win_index);
dirty = TRUE;
// in chat window with user
} else {
WINDOW *win = _wins[win_index].win;
_win_show_time(win);
_win_show_typing(win, short_from);
status_bar_active(win_index);
dirty = TRUE;
}
#ifdef HAVE_LIBNOTIFY
if (prefs_get_notify())
_win_notify_typing(short_from);
#endif
}
2012-07-24 22:19:48 +00:00
void
win_show_incomming_msg(const char * const from, const char * const message)
2012-02-26 18:26:38 +00:00
{
char from_cpy[strlen(from) + 1];
strcpy(from_cpy, from);
char *short_from = strtok(from_cpy, "/");
2012-03-01 00:57:35 +00:00
int win_index = _find_prof_win_index(short_from);
2012-03-01 01:02:10 +00:00
if (win_index == NUM_WINS)
2012-03-01 00:57:35 +00:00
win_index = _new_prof_win(short_from);
2012-03-01 00:34:54 +00:00
WINDOW *win = _wins[win_index].win;
2012-02-26 18:26:38 +00:00
_win_show_time(win);
2012-02-26 18:35:40 +00:00
_win_show_user(win, short_from, 1);
2012-03-01 00:34:54 +00:00
_win_show_message(win, message);
if (win_index == _curr_prof_win) {
status_bar_active(win_index);
dirty = TRUE;
} else {
status_bar_new(win_index);
_cons_show_incoming_message(short_from, win_index);
if (prefs_get_flash())
flash();
2012-06-28 22:29:46 +00:00
}
2012-04-24 00:11:39 +00:00
if (prefs_get_beep())
2012-04-24 00:24:54 +00:00
beep();
2012-07-30 00:04:37 +00:00
#ifdef HAVE_LIBNOTIFY
2012-06-28 22:45:37 +00:00
if (prefs_get_notify())
_win_notify_message(short_from);
#endif
2012-02-07 00:08:59 +00:00
}
2012-07-30 00:04:37 +00:00
#ifdef HAVE_LIBNOTIFY
2012-07-24 22:19:48 +00:00
static void
_win_notify_message(char * short_from)
{
notify_init("Profanity");
char message[strlen(short_from) + 1 + 10];
sprintf(message, "%s: message.", short_from);
// create a new notification
NotifyNotification *incoming;
incoming = notify_notification_new("Profanity", message, NULL);
// set the timeout of the notification to 10 secs
notify_notification_set_timeout(incoming, 10000);
// set the category so as to tell what kind it is
char category[30] = "Incoming message";
notify_notification_set_category(incoming, category);
// set the urgency level of the notification
notify_notification_set_urgency(incoming, NOTIFY_URGENCY_NORMAL);
GError *error = NULL;
notify_notification_show(incoming, &error);
}
static void
_win_notify_typing(char * short_from)
2012-06-28 22:29:46 +00:00
{
notify_init("Profanity");
char message[strlen(short_from) + 1 + 11];
sprintf(message, "%s: typing...", short_from);
2012-06-28 22:29:46 +00:00
// create a new notification
NotifyNotification *incoming;
incoming = notify_notification_new("Profanity", message, NULL);
2012-06-28 22:29:46 +00:00
2012-06-28 22:51:49 +00:00
// set the timeout of the notification to 10 secs
notify_notification_set_timeout(incoming, 10000);
2012-06-28 22:29:46 +00:00
// set the category so as to tell what kind it is
char category[30] = "Incoming message";
notify_notification_set_category(incoming, category);
// set the urgency level of the notification
2012-06-28 22:51:49 +00:00
notify_notification_set_urgency(incoming, NOTIFY_URGENCY_NORMAL);
2012-06-28 22:29:46 +00:00
GError *error = NULL;
notify_notification_show(incoming, &error);
}
#endif
2012-06-28 22:29:46 +00:00
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
{
2012-03-01 00:57:35 +00:00
int win_index = _find_prof_win_index(to);
2012-03-01 01:02:10 +00:00
if (win_index == NUM_WINS)
2012-03-01 00:57:35 +00:00
win_index = _new_prof_win(to);
2012-03-01 00:34:54 +00:00
WINDOW *win = _wins[win_index].win;
2012-02-26 18:26:38 +00:00
_win_show_time(win);
2012-02-26 18:35:40 +00:00
_win_show_user(win, from, 0);
2012-03-01 00:34:54 +00:00
_win_show_message(win, message);
2012-02-26 18:35:40 +00:00
2012-03-01 00:34:54 +00:00
status_bar_active(win_index);
if (win_index == _curr_prof_win) {
dirty = TRUE;
} else {
status_bar_new(win_index);
}
2012-02-07 00:37:42 +00:00
}
void
win_show(const char * const msg)
{
WINDOW *win = _wins[_curr_prof_win].win;
_win_show_time(win);
wprintw(win, "%s\n", msg);
dirty = TRUE;
}
void
win_bad_show(const char * const msg)
{
WINDOW *win = _wins[_curr_prof_win].win;
_win_show_time(win);
wattron(win, COLOR_PAIR(6));
wprintw(win, "%s\n", msg);
wattroff(win, COLOR_PAIR(6));
dirty = TRUE;
}
2012-07-24 22:19:48 +00:00
void
win_contact_online(const char * const from, const char * const show,
2012-03-09 01:06:55 +00:00
const char * const status)
{
2012-03-01 01:37:09 +00: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");
}
if (win_index == _curr_prof_win)
dirty = TRUE;
}
2012-07-24 22:19:48 +00:00
void
win_contact_offline(const char * const from, const char * const show,
2012-03-09 01:06:55 +00:00
const char * const status)
{
2012-03-01 01:37:09 +00: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");
}
if (win_index == _curr_prof_win)
dirty = TRUE;
}
2012-07-24 22:19:48 +00:00
void
win_disconnected(void)
{
int i;
// show message in all active chats
for (i = 1; i < NUM_WINS; i++) {
if (strcmp(_wins[i].from, "") != 0) {
WINDOW *win = _wins[_curr_prof_win].win;
_win_show_time(win);
wattron(win, COLOR_PAIR(6));
wprintw(win, "%s\n", "Lost connection.");
wattroff(win, COLOR_PAIR(6));
// if current win, set dirty
if (i == _curr_prof_win) {
dirty = TRUE;
}
}
}
}
2012-07-24 22:19:48 +00:00
void
cons_prefs(void)
2012-07-19 22:43:50 +00:00
{
cons_show("");
cons_show("Current preferences:");
cons_show("");
if (prefs_get_beep())
cons_show("Terminal beep : ON");
else
cons_show("Terminal beep : OFF");
if (prefs_get_flash())
cons_show("Terminal flash : ON");
else
cons_show("Terminal flash : OFF");
if (prefs_get_notify())
cons_show("Desktop notifications : ON");
else
cons_show("Desktop notifications : OFF");
if (prefs_get_typing())
cons_show("Typing notifications : ON");
else
cons_show("Typing notifications : OFF");
2012-07-19 22:43:50 +00:00
if (prefs_get_showsplash())
cons_show("Splash screen : ON");
else
cons_show("Splash screen : OFF");
if (prefs_get_chlog())
cons_show("Chat logging : ON");
else
cons_show("Chat logging : OFF");
2012-07-19 22:43:50 +00:00
cons_show("");
if (_curr_prof_win == 0)
dirty = TRUE;
}
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-05-28 22:40:11 +00:00
cons_show("Basic Commands:");
2012-03-11 00:39:13 +00:00
cons_show("");
GSList *basic_helpers = cmd_get_help_list_basic();
while (basic_helpers != NULL) {
struct cmd_help_t *help = (struct cmd_help_t *)basic_helpers->data;
char line[25 + 2 + strlen(help->short_help)];
sprintf(line, "%-25s: %s", help->usage, help->short_help);
cons_show(line);
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_basic_help();
2012-05-28 22:40:11 +00:00
cons_show("Settings:");
cons_show("");
GSList *settings_helpers = cmd_get_help_list_settings();
while (settings_helpers != NULL) {
struct cmd_help_t *help = (struct cmd_help_t *)settings_helpers->data;
char line[25 + 2 + strlen(help->short_help)];
sprintf(line, "%-25s: %s", help->usage, help->short_help);
cons_show(line);
settings_helpers = g_slist_next(settings_helpers);
}
2012-05-28 22:40:11 +00:00
cons_show("");
cons_show("Status changes:");
2012-05-28 22:40:11 +00:00
cons_show("");
GSList *status_helpers = cmd_get_help_list_status();
while (status_helpers != NULL) {
struct cmd_help_t *help = (struct cmd_help_t *)status_helpers->data;
char line[25 + 2 + strlen(help->short_help)];
sprintf(line, "%-25s: %s", help->usage, help->short_help);
cons_show(line);
status_helpers = g_slist_next(status_helpers);
}
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-07-17 23:29:07 +00: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.");
cons_show("TAB : Autocomplete command/recipient/login");
cons_show("PAGE UP, PAGE DOWN : Page the main window.");
2012-05-28 22:40:11 +00:00
cons_show("");
if (_curr_prof_win == 0)
dirty = TRUE;
2012-02-09 02:47:25 +00:00
}
2012-07-24 22:19:48 +00:00
void
cons_show_online_contacts(GSList *list)
2012-03-08 23:03:26 +00:00
{
_win_show_time(_cons_win);
wprintw(_cons_win, "Online contacts:\n");
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;
_win_show_time(_cons_win);
wattron(_cons_win, COLOR_PAIR(2));
2012-05-04 00:00:01 +00:00
wprintw(_cons_win, "%s", p_contact_name(contact));
if (p_contact_show(contact))
wprintw(_cons_win, " is %s", p_contact_show(contact));
if (p_contact_status(contact))
wprintw(_cons_win, ", \"%s\"", p_contact_status(contact));
2012-03-09 23:07:53 +00:00
wprintw(_cons_win, "\n");
wattroff(_cons_win, COLOR_PAIR(2));
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
cons_bad_show(const char * const msg)
2012-02-19 00:43:35 +00:00
{
2012-03-01 00:34:54 +00:00
_win_show_time(_cons_win);
wattron(_cons_win, COLOR_PAIR(6));
wprintw(_cons_win, "%s\n", msg);
wattroff(_cons_win, COLOR_PAIR(6));
if (_curr_prof_win == 0)
dirty = TRUE;
2012-02-19 00:43:35 +00:00
}
2012-07-24 22:19:48 +00:00
void
cons_show(const char * const msg)
2012-02-19 00:43:35 +00:00
{
2012-03-01 00:34:54 +00:00
_win_show_time(_cons_win);
wprintw(_cons_win, "%s\n", msg);
if (_curr_prof_win == 0)
dirty = TRUE;
2012-02-19 00:43:35 +00:00
}
2012-07-24 22:19:48 +00:00
void
cons_bad_command(const char * const cmd)
{
2012-03-01 00:34:54 +00:00
_win_show_time(_cons_win);
wprintw(_cons_win, "Unknown command: %s\n", cmd);
if (_curr_prof_win == 0)
dirty = TRUE;
2012-02-05 23:29:09 +00:00
}
2012-07-24 22:19:48 +00:00
void
win_handle_special_keys(const int * const ch)
2012-02-27 02:01:19 +00:00
{
2012-03-10 20:46:30 +00:00
_win_handle_switch(ch);
_win_handle_page(ch);
2012-02-27 02:01:19 +00:00
}
2012-07-24 22:19:48 +00:00
void
win_page_off(void)
2012-03-05 00:06:24 +00:00
{
int rows, cols;
getmaxyx(stdscr, rows, cols);
_wins[_curr_prof_win].paged = 0;
int y, x;
getyx(_wins[_curr_prof_win].win, y, x);
2012-03-05 00:06:24 +00:00
int size = rows - 3;
2012-03-05 00:06:24 +00: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;
dirty = TRUE;
2012-03-05 00:06:24 +00:00
}
2012-07-24 22:19:48 +00:00
static void
_create_windows(void)
{
int rows, cols;
getmaxyx(stdscr, rows, cols);
max_cols = cols;
// create the console window in 0
struct prof_win cons;
2012-03-01 00:34:54 +00:00
strcpy(cons.from, CONS_WIN_TITLE);
2012-03-05 00:06:24 +00:00
cons.win = newpad(PAD_SIZE, cols);
2012-06-18 22:06:17 +00:00
wbkgd(cons.win, COLOR_PAIR(1));
2012-03-05 00:06:24 +00:00
cons.y_pos = 0;
cons.paged = 0;
scrollok(cons.win, TRUE);
2012-02-09 00:48:17 +00:00
2012-02-12 22:09:07 +00:00
_wins[0] = cons;
2012-03-01 00:34:54 +00:00
_cons_win = _wins[0].win;
2012-06-18 22:54:49 +00:00
// wattrset(_cons_win, A_BOLD);
2012-03-01 00:34:54 +00:00
_win_show_time(_cons_win);
if (prefs_get_showsplash()) {
_print_splash_logo(_cons_win);
} else {
2012-07-19 23:39:21 +00:00
wprintw(_cons_win, "Welcome to Profanity, version %s\n", PACKAGE_VERSION);
_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);
2012-08-16 00:39:19 +00:00
wprintw(_cons_win, "Type '/help' to show all commands.\n");
_win_show_time(_cons_win);
wprintw(_cons_win, "Use page up and down keys to view.\n");
_win_show_time(_cons_win);
wprintw(_cons_win, "Use tab to autocomplete commands, logins, or usernames.\n");
_cons_show_basic_help();
}
2012-03-05 00:06:24 +00:00
prefresh(_cons_win, 0, 0, 1, 0, rows-3, cols-1);
dirty = TRUE;
// create the chat windows
int i;
2012-03-01 01:02:10 +00:00
for (i = 1; i < NUM_WINS; i++) {
struct prof_win chat;
strcpy(chat.from, "");
chat.win = newpad(PAD_SIZE, cols);
2012-06-18 22:06:17 +00:00
wbkgd(chat.win, COLOR_PAIR(1));
chat.y_pos = 0;
chat.paged = 0;
2012-06-18 22:54:49 +00:00
// wattrset(chat.win, A_BOLD);
scrollok(chat.win, TRUE);
2012-02-12 22:09:07 +00:00
_wins[i] = chat;
}
}
2012-02-13 00:53:10 +00:00
2012-07-24 22:19:48 +00:00
static void
_print_splash_logo(WINDOW *win)
{
wprintw(win, "Welcome to\n");
wattron(win, COLOR_PAIR(5));
wprintw(win, " ___ _ \n");
wprintw(win, " / __) (_)_ \n");
wprintw(win, " ____ ____ ___ | |__ ____ ____ _| |_ _ _ \n");
wprintw(win, "| _ \\ / ___) _ \\| __) _ | _ \\| | _) | | |\n");
wprintw(win, "| | | | | | |_| | | ( ( | | | | | | |_| |_| |\n");
wprintw(win, "| ||_/|_| \\___/|_| \\_||_|_| |_|_|\\___)__ |\n");
wprintw(win, "|_| (____/ \n");
wattroff(win, COLOR_PAIR(5));
}
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
{
// find the chat window for recipient
int i;
2012-03-01 01:02:10 +00:00
for (i = 1; i < NUM_WINS; i++)
2012-02-13 00:53:10 +00:00
if (strcmp(_wins[i].from, contact) == 0)
break;
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
_new_prof_win(const char * const contact)
2012-03-01 00:57:35 +00:00
{
int i;
// find the first unused one
2012-03-01 01:02:10 +00:00
for (i = 1; i < NUM_WINS; i++)
2012-03-01 00:57:35 +00:00
if (strcmp(_wins[i].from, "") == 0)
break;
// set it up
strcpy(_wins[i].from, contact);
wclear(_wins[i].win);
2012-02-13 01:05:11 +00:00
2012-02-18 21:23:26 +00:00
return i;
2012-02-13 00:53:10 +00:00
}
2012-07-24 22:19:48 +00:00
static void
_win_switch_if_active(const int i)
2012-02-27 02:01:19 +00:00
{
win_page_off();
2012-02-27 02:01:19 +00:00
if (strcmp(_wins[i].from, "") != 0) {
2012-03-01 00:34:54 +00:00
_curr_prof_win = i;
win_page_off();
2012-02-27 02:01:19 +00:00
if (i == 0) {
2012-02-27 02:01:19 +00:00
title_bar_title();
} else {
2012-02-27 02:01:19 +00:00
title_bar_show(_wins[i].from);
status_bar_active(i);
}
2012-02-27 02:01:19 +00:00
}
dirty = TRUE;
2012-02-27 02:01:19 +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
{
char tstmp[80];
get_time(tstmp);
2012-03-01 00:34:54 +00:00
wprintw(win, "%s - ", tstmp);
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-03-01 00:34:54 +00:00
wattron(win, COLOR_PAIR(2));
wprintw(win, "%s: ", user);
2012-02-26 18:35:40 +00:00
if (colour)
2012-03-01 00:34:54 +00:00
wattroff(win, COLOR_PAIR(2));
2012-02-26 18:35:40 +00:00
}
static void
_win_show_typing(WINDOW *win, const char * const short_from)
{
wprintw(win, "%s is typing...\n", short_from);
}
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-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);
WINDOW *current = _wins[_curr_prof_win].win;
prefresh(current, _wins[_curr_prof_win].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++) {
wresize(_wins[i].win, PAD_SIZE, cols);
}
}
2012-04-22 21:35:54 +00: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 22:19:48 +00:00
static void
_show_status_string(WINDOW *win, const char * const from,
2012-03-09 01:06:55 +00:00
const char * const show, const char * const status, const char * const pre,
const char * const default_show)
{
2012-03-01 01:37:09 +00:00
_win_show_time(win);
if (strcmp(default_show, "online") == 0) {
2012-03-01 00:34:54 +00:00
wattron(win, COLOR_PAIR(2));
2012-03-01 01:37:09 +00:00
} else {
2012-03-01 00:34:54 +00:00
wattron(win, COLOR_PAIR(5));
2012-06-18 22:54:49 +00:00
// wattroff(win, A_BOLD);
}
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);
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");
2012-03-01 01:37:09 +00:00
if (strcmp(default_show, "online") == 0) {
wattroff(win, COLOR_PAIR(2));
} else {
wattroff(win, COLOR_PAIR(5));
2012-06-18 22:54:49 +00:00
// wattron(win, A_BOLD);
2012-03-01 01:37:09 +00:00
}
}
static void
_cons_show_typing(const char * const short_from)
{
_win_show_time(_cons_win);
wattron(_cons_win, COLOR_PAIR(7));
wprintw(_cons_win, "!! %s is typing a message...\n", short_from);
wattroff(_cons_win, COLOR_PAIR(7));
}
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(_cons_win);
2012-06-18 21:16:57 +00:00
wattron(_cons_win, COLOR_PAIR(7));
wprintw(_cons_win, "<< incoming from %s (%d)\n", short_from, win_index + 1);
2012-06-18 21:16:57 +00:00
wattroff(_cons_win, COLOR_PAIR(7));
}
2012-07-24 22:19:48 +00:00
static void
_win_handle_switch(const int * const ch)
2012-03-10 20:46:30 +00: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 22:19:48 +00:00
static void
_win_handle_page(const int * const ch)
2012-03-10 20:46:30 +00:00
{
int rows, cols, y, x;
getmaxyx(stdscr, rows, cols);
getyx(_wins[_curr_prof_win].win, y, x);
int page_space = rows - 4;
int *page_start = &_wins[_curr_prof_win].y_pos;
// page up
if (*ch == KEY_PPAGE) {
*page_start -= page_space;
// went past beginning, show first page
if (*page_start < 0)
*page_start = 0;
_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;
_wins[_curr_prof_win].paged = 1;
dirty = TRUE;
}
}