2012-02-20 15:07:38 -05: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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-02-08 17:26:43 -05:00
|
|
|
#include <string.h>
|
2012-02-19 15:57:46 -05:00
|
|
|
#include <stdlib.h>
|
2012-02-05 18:08:15 -05:00
|
|
|
#include <ncurses.h>
|
|
|
|
#include "windows.h"
|
2012-02-08 19:48:17 -05:00
|
|
|
#include "util.h"
|
2012-02-05 18:08:15 -05:00
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
static struct prof_win _wins[10];
|
|
|
|
static int _curr_win = 0;
|
2012-02-05 18:08:15 -05:00
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
static void _create_windows(void);
|
2012-02-18 16:23:26 -05:00
|
|
|
static int _find_win(char *contact);
|
2012-02-12 20:25:47 -05:00
|
|
|
static void _current_window_refresh();
|
2012-02-26 21:01:19 -05:00
|
|
|
static void _win_switch_if_active(int i);
|
2012-02-26 13:26:38 -05:00
|
|
|
static void _win_show_time(int win);
|
2012-02-26 13:35:40 -05:00
|
|
|
static void _win_show_user(int win, char *user, int colour);
|
2012-02-05 18:29:09 -05:00
|
|
|
|
2012-02-06 19:08:59 -05:00
|
|
|
void gui_init(void)
|
2012-02-05 18:29:09 -05:00
|
|
|
{
|
|
|
|
initscr();
|
|
|
|
cbreak();
|
|
|
|
keypad(stdscr, TRUE);
|
|
|
|
|
2012-02-18 16:02:51 -05:00
|
|
|
if (has_colors()) {
|
|
|
|
start_color();
|
|
|
|
|
|
|
|
init_pair(1, COLOR_WHITE, COLOR_BLACK);
|
|
|
|
init_pair(2, COLOR_GREEN, COLOR_BLACK);
|
|
|
|
init_pair(3, COLOR_WHITE, COLOR_BLUE);
|
|
|
|
init_pair(4, COLOR_CYAN, COLOR_BLUE);
|
2012-02-18 16:46:29 -05:00
|
|
|
init_pair(5, COLOR_CYAN, COLOR_BLACK);
|
2012-02-18 19:43:35 -05:00
|
|
|
init_pair(6, COLOR_RED, COLOR_BLACK);
|
2012-02-27 17:53:31 -05:00
|
|
|
init_pair(7, COLOR_MAGENTA, COLOR_BLACK);
|
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-02-06 19:08:59 -05:00
|
|
|
}
|
|
|
|
|
2012-02-12 20:25:47 -05:00
|
|
|
void gui_refresh(void)
|
|
|
|
{
|
|
|
|
title_bar_refresh();
|
|
|
|
status_bar_refresh();
|
|
|
|
_current_window_refresh();
|
|
|
|
inp_put_back();
|
|
|
|
}
|
|
|
|
|
2012-02-06 19:08:59 -05:00
|
|
|
void gui_close(void)
|
|
|
|
{
|
|
|
|
endwin();
|
|
|
|
}
|
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
void win_close_win(void)
|
2012-02-08 18:12:34 -05:00
|
|
|
{
|
|
|
|
// reset the chat win to unused
|
2012-02-12 17:09:07 -05:00
|
|
|
strcpy(_wins[_curr_win].from, "");
|
|
|
|
wclear(_wins[_curr_win].win);
|
2012-02-08 18:12:34 -05:00
|
|
|
|
|
|
|
// set it as inactive in the status bar
|
2012-02-12 17:20:21 -05:00
|
|
|
status_bar_inactive(_curr_win);
|
2012-02-08 18:12:34 -05:00
|
|
|
|
|
|
|
// go back to console window
|
2012-02-12 19:28:26 -05:00
|
|
|
_curr_win = 0;
|
2012-02-18 19:23:45 -05:00
|
|
|
title_bar_title();
|
2012-02-08 18:12:34 -05:00
|
|
|
}
|
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
int win_in_chat(void)
|
2012-02-08 17:46:35 -05:00
|
|
|
{
|
2012-02-12 17:09:07 -05:00
|
|
|
return ((_curr_win != 0) && (strcmp(_wins[_curr_win].from, "") != 0));
|
2012-02-08 17:46:35 -05:00
|
|
|
}
|
|
|
|
|
2012-02-19 15:57:46 -05:00
|
|
|
char *win_get_recipient(void)
|
2012-02-08 17:46:35 -05:00
|
|
|
{
|
2012-02-19 15:57:46 -05:00
|
|
|
char *recipient = (char *) malloc(sizeof(char) * (strlen(_wins[_curr_win].from) + 1));
|
2012-02-12 17:09:07 -05:00
|
|
|
strcpy(recipient, _wins[_curr_win].from);
|
2012-02-19 15:57:46 -05:00
|
|
|
return recipient;
|
2012-02-08 17:46:35 -05:00
|
|
|
}
|
|
|
|
|
2012-02-26 13:26:38 -05:00
|
|
|
void win_show_incomming_msg(char *from, char *message)
|
|
|
|
{
|
|
|
|
char from_cpy[strlen(from) + 1];
|
|
|
|
strcpy(from_cpy, from);
|
|
|
|
char *short_from = strtok(from_cpy, "/");
|
|
|
|
|
|
|
|
int win = _find_win(short_from);
|
|
|
|
_win_show_time(win);
|
2012-02-26 13:35:40 -05:00
|
|
|
_win_show_user(win, short_from, 1);
|
2012-02-18 16:46:29 -05:00
|
|
|
wprintw(_wins[win].win, "%s\n", message);
|
|
|
|
|
2012-02-18 16:23:26 -05:00
|
|
|
status_bar_active(win);
|
2012-02-06 19:08:59 -05:00
|
|
|
}
|
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
void win_show_outgoing_msg(char *from, char *to, char *message)
|
2012-02-06 19:37:42 -05:00
|
|
|
{
|
2012-02-18 16:23:26 -05:00
|
|
|
int win = _find_win(to);
|
2012-02-26 13:26:38 -05:00
|
|
|
_win_show_time(win);
|
2012-02-26 13:35:40 -05:00
|
|
|
_win_show_user(win, from, 0);
|
2012-02-18 16:46:29 -05:00
|
|
|
wprintw(_wins[win].win, "%s\n", message);
|
2012-02-26 13:35:40 -05:00
|
|
|
|
2012-02-18 16:23:26 -05:00
|
|
|
status_bar_active(win);
|
2012-02-06 19:37:42 -05:00
|
|
|
}
|
|
|
|
|
2012-02-12 17:23:51 -05:00
|
|
|
void cons_help(void)
|
2012-02-07 17:59:47 -05:00
|
|
|
{
|
2012-02-26 14:07:40 -05:00
|
|
|
_win_show_time(0);
|
2012-02-18 19:43:35 -05:00
|
|
|
wattron(_wins[0].win, A_BOLD);
|
|
|
|
wprintw(_wins[0].win, "Help:\n");
|
|
|
|
wattroff(_wins[0].win, A_BOLD);
|
|
|
|
|
2012-02-26 14:07:40 -05:00
|
|
|
cons_show(" Commands:");
|
|
|
|
cons_show(" /help : This help.");
|
|
|
|
cons_show(" /connect user@host : Login to jabber.");
|
|
|
|
cons_show(" /who : Get roster.");
|
|
|
|
cons_show(" /close : Close a chat window.");
|
|
|
|
cons_show(" /msg user@host mesg : Send mesg to user.");
|
|
|
|
cons_show(" /quit : Quit Profanity.");
|
|
|
|
cons_show(" Shortcuts:");
|
|
|
|
cons_show(" F1 : This console window.");
|
|
|
|
cons_show(" F2-10 : Chat windows.");
|
2012-02-08 21:47:25 -05:00
|
|
|
}
|
|
|
|
|
2012-02-18 19:43:35 -05:00
|
|
|
void cons_good_show(char *msg)
|
|
|
|
{
|
2012-02-26 14:07:40 -05:00
|
|
|
_win_show_time(0);
|
2012-02-18 19:43:35 -05:00
|
|
|
wattron(_wins[0].win, A_BOLD);
|
|
|
|
wattron(_wins[0].win, COLOR_PAIR(2));
|
|
|
|
wprintw(_wins[0].win, "%s\n", msg);
|
|
|
|
wattroff(_wins[0].win, A_BOLD);
|
|
|
|
wattroff(_wins[0].win, COLOR_PAIR(2));
|
|
|
|
}
|
|
|
|
|
|
|
|
void cons_bad_show(char *msg)
|
|
|
|
{
|
2012-02-26 14:07:40 -05:00
|
|
|
_win_show_time(0);
|
2012-02-18 19:43:35 -05:00
|
|
|
wattron(_wins[0].win, A_BOLD);
|
|
|
|
wattron(_wins[0].win, COLOR_PAIR(6));
|
|
|
|
wprintw(_wins[0].win, "%s\n", msg);
|
|
|
|
wattroff(_wins[0].win, A_BOLD);
|
|
|
|
wattroff(_wins[0].win, COLOR_PAIR(6));
|
|
|
|
}
|
|
|
|
|
2012-02-26 14:07:40 -05:00
|
|
|
void cons_show(char *msg)
|
|
|
|
{
|
|
|
|
_win_show_time(0);
|
|
|
|
wprintw(_wins[0].win, "%s\n", msg);
|
|
|
|
}
|
|
|
|
|
2012-02-18 19:43:35 -05:00
|
|
|
void cons_highlight_show(char *msg)
|
|
|
|
{
|
2012-02-26 14:07:40 -05:00
|
|
|
_win_show_time(0);
|
2012-02-18 19:43:35 -05:00
|
|
|
wattron(_wins[0].win, A_BOLD);
|
|
|
|
wprintw(_wins[0].win, "%s\n", msg);
|
|
|
|
wattroff(_wins[0].win, A_BOLD);
|
|
|
|
}
|
|
|
|
|
2012-02-12 17:23:51 -05:00
|
|
|
void cons_bad_command(char *cmd)
|
2012-02-07 17:59:47 -05:00
|
|
|
{
|
2012-02-26 14:07:40 -05:00
|
|
|
_win_show_time(0);
|
|
|
|
wprintw(_wins[0].win, "Unknown command: %s\n", cmd);
|
2012-02-05 18:29:09 -05:00
|
|
|
}
|
|
|
|
|
2012-02-18 17:51:08 -05:00
|
|
|
void cons_bad_connect(void)
|
|
|
|
{
|
2012-02-26 14:07:40 -05:00
|
|
|
cons_show("Usage: /connect user@host");
|
2012-02-18 17:51:08 -05:00
|
|
|
}
|
|
|
|
|
2012-02-19 20:42:29 -05:00
|
|
|
void cons_not_disconnected(void)
|
|
|
|
{
|
2012-02-26 14:07:40 -05:00
|
|
|
cons_show("You are either connected already, or a login is in process.");
|
2012-02-19 20:42:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void cons_not_connected(void)
|
|
|
|
{
|
2012-02-26 14:07:40 -05:00
|
|
|
cons_show("You are not currently connected.");
|
2012-02-19 20:42:29 -05:00
|
|
|
}
|
|
|
|
|
2012-02-18 19:17:36 -05:00
|
|
|
void cons_bad_message(void)
|
|
|
|
{
|
2012-02-26 14:07:40 -05:00
|
|
|
cons_show("Usage: /msg user@host message");
|
2012-02-18 19:17:36 -05:00
|
|
|
}
|
|
|
|
|
2012-02-27 17:53:31 -05:00
|
|
|
void cons_show_contact_online(char *from, char *show, char *status)
|
|
|
|
{
|
|
|
|
_win_show_time(0);
|
|
|
|
wattron(_wins[0].win, COLOR_PAIR(2));
|
|
|
|
|
|
|
|
if (status != NULL)
|
|
|
|
wprintw(_wins[0].win, "+ %s is %s, \"%s\"\n", from, show, status);
|
|
|
|
else
|
|
|
|
wprintw(_wins[0].win, "+ %s is %s\n", from, show);
|
|
|
|
|
|
|
|
wattroff(_wins[0].win, COLOR_PAIR(2));
|
|
|
|
}
|
|
|
|
|
|
|
|
void cons_show_contact_offline(char *from, char *show, char *status)
|
|
|
|
{
|
|
|
|
_win_show_time(0);
|
|
|
|
wattron(_wins[0].win, COLOR_PAIR(7));
|
|
|
|
|
|
|
|
if (status != NULL)
|
|
|
|
wprintw(_wins[0].win, "- %s is %s, \"%s\"\n", from, show, status);
|
|
|
|
else
|
|
|
|
wprintw(_wins[0].win, "- %s is %s\n", from, show);
|
|
|
|
|
|
|
|
wattroff(_wins[0].win, COLOR_PAIR(7));
|
|
|
|
}
|
|
|
|
|
2012-02-26 21:01:19 -05:00
|
|
|
void win_handle_switch(int *ch)
|
|
|
|
{
|
|
|
|
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-02-12 17:09:07 -05:00
|
|
|
static void _create_windows(void)
|
2012-02-07 17:59:47 -05:00
|
|
|
{
|
|
|
|
int rows, cols;
|
|
|
|
getmaxyx(stdscr, rows, cols);
|
|
|
|
|
2012-02-08 17:26:43 -05:00
|
|
|
// create the console window in 0
|
|
|
|
struct prof_win cons;
|
|
|
|
strcpy(cons.from, "_cons");
|
|
|
|
cons.win = newwin(rows-3, cols, 1, 0);
|
|
|
|
scrollok(cons.win, TRUE);
|
2012-02-08 19:48:17 -05:00
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
_wins[0] = cons;
|
2012-02-26 14:07:40 -05:00
|
|
|
_win_show_time(0);
|
|
|
|
wattron(_wins[0].win, A_BOLD);
|
|
|
|
wprintw(_wins[0].win, "Welcome to Profanity.\n");
|
|
|
|
wattroff(_wins[0].win, A_BOLD);
|
|
|
|
touchwin(_wins[0].win);
|
|
|
|
wrefresh(_wins[0].win);
|
2012-02-08 17:26:43 -05:00
|
|
|
|
|
|
|
// create the chat windows
|
|
|
|
int i;
|
|
|
|
for (i = 1; i < 10; i++) {
|
|
|
|
struct prof_win chat;
|
|
|
|
strcpy(chat.from, "");
|
|
|
|
chat.win = newwin(rows-3, cols, 1, 0);
|
|
|
|
scrollok(chat.win, TRUE);
|
2012-02-12 17:09:07 -05:00
|
|
|
_wins[i] = chat;
|
2012-02-08 17:26:43 -05:00
|
|
|
}
|
2012-02-07 17:59:47 -05:00
|
|
|
}
|
2012-02-12 19:53:10 -05:00
|
|
|
|
2012-02-18 16:23:26 -05:00
|
|
|
static int _find_win(char *contact)
|
2012-02-12 19:53:10 -05:00
|
|
|
{
|
|
|
|
// find the chat window for recipient
|
|
|
|
int i;
|
|
|
|
for (i = 1; i < 10; i++)
|
|
|
|
if (strcmp(_wins[i].from, contact) == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
// if we didn't find a window
|
|
|
|
if (i == 10) {
|
|
|
|
// find the first unused one
|
|
|
|
for (i = 1; i < 10; i++)
|
|
|
|
if (strcmp(_wins[i].from, "") == 0)
|
|
|
|
break;
|
|
|
|
|
2012-02-12 20:05:11 -05:00
|
|
|
// set it up
|
2012-02-12 19:53:10 -05:00
|
|
|
strcpy(_wins[i].from, contact);
|
|
|
|
wclear(_wins[i].win);
|
|
|
|
}
|
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-02-26 21:01:19 -05:00
|
|
|
static void _win_switch_if_active(int i)
|
|
|
|
{
|
|
|
|
if (strcmp(_wins[i].from, "") != 0) {
|
|
|
|
_curr_win = i;
|
|
|
|
|
|
|
|
if (i == 0)
|
|
|
|
title_bar_title();
|
|
|
|
else
|
|
|
|
title_bar_show(_wins[i].from);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-26 13:35:40 -05:00
|
|
|
static void _win_show_time(int win)
|
|
|
|
{
|
|
|
|
char tstmp[80];
|
|
|
|
get_time(tstmp);
|
|
|
|
wattron(_wins[win].win, COLOR_PAIR(5));
|
|
|
|
wprintw(_wins[win].win, " [");
|
|
|
|
wattroff(_wins[win].win, COLOR_PAIR(5));
|
|
|
|
|
|
|
|
wprintw(_wins[win].win, "%s", tstmp);
|
|
|
|
|
|
|
|
wattron(_wins[win].win, COLOR_PAIR(5));
|
|
|
|
wprintw(_wins[win].win, "] ");
|
|
|
|
wattroff(_wins[win].win, COLOR_PAIR(5));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _win_show_user(int win, char *user, int colour)
|
|
|
|
{
|
|
|
|
wattron(_wins[win].win, A_DIM);
|
|
|
|
wprintw(_wins[win].win, "<");
|
|
|
|
wattroff(_wins[win].win, A_DIM);
|
|
|
|
|
|
|
|
if (colour)
|
|
|
|
wattron(_wins[win].win, COLOR_PAIR(2));
|
|
|
|
wattron(_wins[win].win, A_BOLD);
|
|
|
|
wprintw(_wins[win].win, "%s", user);
|
|
|
|
if (colour)
|
|
|
|
wattroff(_wins[win].win, COLOR_PAIR(2));
|
|
|
|
wattroff(_wins[win].win, A_BOLD);
|
|
|
|
|
|
|
|
wattron(_wins[win].win, A_DIM);
|
|
|
|
wprintw(_wins[win].win, "> ");
|
|
|
|
wattroff(_wins[win].win, A_DIM);
|
|
|
|
}
|
|
|
|
|
2012-02-12 20:25:47 -05:00
|
|
|
static void _current_window_refresh()
|
2012-02-12 19:59:04 -05:00
|
|
|
{
|
2012-02-12 20:25:47 -05:00
|
|
|
touchwin(_wins[_curr_win].win);
|
|
|
|
wrefresh(_wins[_curr_win].win);
|
2012-02-12 19:59:04 -05:00
|
|
|
}
|