2012-10-21 20:02:20 +01:00
|
|
|
/*
|
2012-05-24 01:11:43 +01:00
|
|
|
* ui.h
|
2012-02-20 20:07:38 +00:00
|
|
|
*
|
2013-01-11 02:05:29 +00:00
|
|
|
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
2012-10-21 20:02:20 +01:00
|
|
|
*
|
2012-02-20 20:07:38 +00:00
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Profanity is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-11-08 22:51:49 +00:00
|
|
|
#ifndef UI_H
|
|
|
|
#define UI_H
|
2012-02-05 23:08:15 +00:00
|
|
|
|
2012-09-08 16:51:09 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2013-01-03 00:16:39 +00:00
|
|
|
#include <wchar.h>
|
|
|
|
|
2012-08-26 01:50:50 +01:00
|
|
|
#include <glib.h>
|
2013-01-02 20:27:37 +00:00
|
|
|
#ifdef HAVE_NCURSESW_NCURSES_H
|
|
|
|
#include <ncursesw/ncurses.h>
|
2013-01-04 00:35:54 +00:00
|
|
|
#elif HAVE_NCURSES_H
|
|
|
|
#include <ncurses.h>
|
2012-09-08 16:51:09 +01:00
|
|
|
#endif
|
2012-05-27 20:36:31 +01:00
|
|
|
|
2013-01-21 23:48:57 +00:00
|
|
|
#include "contact.h"
|
2013-01-13 03:14:36 +00:00
|
|
|
#include "jid.h"
|
2013-04-21 00:21:30 +01:00
|
|
|
#include "ui/window.h"
|
2013-02-02 19:47:41 +00:00
|
|
|
#include "xmpp/xmpp.h"
|
2012-02-07 00:08:59 +00:00
|
|
|
|
2012-07-09 23:48:53 +01:00
|
|
|
#define INP_WIN_MAX 1000
|
2013-04-21 00:32:31 +01:00
|
|
|
#define NUM_WINS 10
|
|
|
|
|
|
|
|
// holds console at index 0 and chat wins 1 through to 9
|
|
|
|
ProfWin* windows[NUM_WINS];
|
2012-02-08 22:26:43 +00:00
|
|
|
|
2013-04-21 19:44:31 +01:00
|
|
|
// ui startup and control
|
2012-11-26 00:01:34 +00:00
|
|
|
void ui_init(void);
|
|
|
|
void ui_load_colours(void);
|
|
|
|
void ui_refresh(void);
|
|
|
|
void ui_close(void);
|
|
|
|
void ui_resize(const int ch, const char * const input,
|
2012-04-17 23:28:21 +01:00
|
|
|
const int size);
|
2012-11-26 00:57:41 +00:00
|
|
|
void ui_idle(void);
|
2013-02-02 23:52:47 +00:00
|
|
|
void ui_handle_special_keys(const wint_t * const ch, const char * const inp,
|
|
|
|
const int size);
|
2012-11-26 00:57:41 +00:00
|
|
|
void ui_switch_win(const int i);
|
2012-11-27 00:17:35 +00:00
|
|
|
gboolean ui_windows_full(void);
|
2012-12-01 18:39:34 +00:00
|
|
|
unsigned long ui_get_idle_time(void);
|
|
|
|
void ui_reset_idle_time(void);
|
2013-04-21 19:44:31 +01:00
|
|
|
void ui_new_chat_win(const char * const to);
|
|
|
|
void ui_print_error_from_recipient(const char * const from, const char *err_msg);
|
|
|
|
void ui_print_system_msg_from_recipient(const char * const from, const char *message);
|
2013-04-21 20:17:06 +01:00
|
|
|
gint ui_unread(void);
|
2013-04-22 21:11:08 +01:00
|
|
|
void ui_console_dirty(void);
|
2013-05-17 00:33:00 +01:00
|
|
|
void ui_close_connected_win(int index);
|
2013-04-21 19:44:31 +01:00
|
|
|
|
|
|
|
// current window actions
|
|
|
|
void ui_close_current(void);
|
|
|
|
void ui_clear_current(void);
|
|
|
|
win_type_t ui_current_win_type(void);
|
2013-05-12 22:57:36 +01:00
|
|
|
int ui_current_win_index(void);
|
2013-04-21 19:44:31 +01:00
|
|
|
char* ui_current_recipient(void);
|
|
|
|
void ui_current_print_line(const char * const msg, ...);
|
|
|
|
void ui_current_error_line(const char * const msg);
|
|
|
|
void ui_current_page_off(void);
|
2013-05-12 22:57:36 +01:00
|
|
|
|
|
|
|
win_type_t ui_win_type(int index);
|
|
|
|
char * ui_recipient(int index);
|
|
|
|
void ui_close_win(int index);
|
|
|
|
gboolean ui_win_exists(int index);
|
2013-05-16 22:34:05 +01:00
|
|
|
int ui_win_unread(int index);
|
2013-04-21 19:44:31 +01:00
|
|
|
|
|
|
|
// ui events
|
|
|
|
void ui_contact_typing(const char * const from);
|
|
|
|
void ui_incoming_msg(const char * const from, const char * const message,
|
|
|
|
GTimeVal *tv_stamp, gboolean priv);
|
|
|
|
void ui_contact_online(const char * const barejid, const char * const resource,
|
|
|
|
const char * const show, const char * const status, GDateTime *last_activity);
|
|
|
|
void ui_contact_offline(const char * const from, const char * const show,
|
|
|
|
const char * const status);
|
|
|
|
void ui_disconnected(void);
|
2013-05-20 22:51:35 +01:00
|
|
|
void ui_recipient_gone(const char * const barejid);
|
2013-04-21 19:44:31 +01:00
|
|
|
void ui_outgoing_msg(const char * const from, const char * const to,
|
|
|
|
const char * const message);
|
|
|
|
void ui_room_join(Jid *jid);
|
|
|
|
void ui_room_roster(const char * const room, GList *roster, const char * const presence);
|
|
|
|
void ui_room_history(const char * const room_jid, const char * const nick,
|
|
|
|
GTimeVal tv_stamp, const char * const message);
|
|
|
|
void ui_room_message(const char * const room_jid, const char * const nick,
|
|
|
|
const char * const message);
|
|
|
|
void ui_room_subject(const char * const room_jid,
|
|
|
|
const char * const subject);
|
|
|
|
void ui_room_broadcast(const char * const room_jid,
|
|
|
|
const char * const message);
|
|
|
|
void ui_room_member_offline(const char * const room, const char * const nick);
|
|
|
|
void ui_room_member_online(const char * const room,
|
|
|
|
const char * const nick, const char * const show, const char * const status);
|
|
|
|
void ui_room_member_nick_change(const char * const room,
|
|
|
|
const char * const old_nick, const char * const nick);
|
|
|
|
void ui_room_nick_change(const char * const room, const char * const nick);
|
|
|
|
void ui_room_member_presence(const char * const room,
|
|
|
|
const char * const nick, const char * const show, const char * const status);
|
2013-06-02 00:20:22 +01:00
|
|
|
void ui_roster_add(const char * const barejid, const char * const name);
|
2013-06-02 00:24:22 +01:00
|
|
|
void ui_roster_remove(const char * const barejid);
|
2013-06-23 16:35:13 +01:00
|
|
|
void ui_contact_already_in_group(const char * const contact, const char * const group);
|
|
|
|
void ui_contact_not_in_group(const char * const contact, const char * const group);
|
2013-04-21 19:44:31 +01:00
|
|
|
|
|
|
|
// contact status functions
|
|
|
|
void ui_status_room(const char * const contact);
|
|
|
|
void ui_status(void);
|
|
|
|
void ui_status_private(void);
|
2012-02-12 22:09:07 +00:00
|
|
|
|
2013-05-05 02:31:04 +01:00
|
|
|
void ui_create_duck_win(void);
|
|
|
|
void ui_open_duck_win(void);
|
|
|
|
void ui_duck(const char * const query);
|
|
|
|
void ui_duck_result(const char * const result);
|
|
|
|
gboolean ui_duck_exists(void);
|
|
|
|
|
2013-05-17 00:33:00 +01:00
|
|
|
void ui_tidy_wins(void);
|
|
|
|
void ui_prune_wins(void);
|
|
|
|
|
2012-02-08 23:49:46 +00:00
|
|
|
// create windows
|
|
|
|
void create_title_bar(void);
|
2012-02-12 22:20:21 +00:00
|
|
|
void create_status_bar(void);
|
2012-02-08 23:49:46 +00:00
|
|
|
void create_input_window(void);
|
|
|
|
|
2012-02-12 22:38:27 +00:00
|
|
|
// title bar actions
|
2012-02-12 22:44:00 +00:00
|
|
|
void title_bar_refresh(void);
|
2012-04-20 01:48:42 +01:00
|
|
|
void title_bar_resize(void);
|
2012-03-09 01:06:55 +00:00
|
|
|
void title_bar_show(const char * const title);
|
2012-02-19 00:23:45 +00:00
|
|
|
void title_bar_title(void);
|
2013-02-10 17:13:19 +00:00
|
|
|
void title_bar_set_status(contact_presence_t status);
|
2013-05-19 03:45:27 +01:00
|
|
|
void title_bar_set_recipient(const char * const from);
|
2012-08-16 21:43:52 +01:00
|
|
|
void title_bar_set_typing(gboolean is_typing);
|
|
|
|
void title_bar_draw(void);
|
2012-02-12 22:38:27 +00:00
|
|
|
|
|
|
|
// console window actions
|
2013-04-21 00:21:30 +01:00
|
|
|
ProfWin* cons_create(void);
|
|
|
|
void cons_show(const char * const msg, ...);
|
2012-10-23 00:18:28 +01:00
|
|
|
void cons_about(void);
|
2012-02-12 22:38:27 +00:00
|
|
|
void cons_help(void);
|
2012-10-22 23:58:47 +01:00
|
|
|
void cons_basic_help(void);
|
|
|
|
void cons_settings_help(void);
|
2012-11-13 22:24:37 +00:00
|
|
|
void cons_presence_help(void);
|
2012-10-22 23:58:47 +01:00
|
|
|
void cons_navigation_help(void);
|
2012-07-19 23:43:50 +01:00
|
|
|
void cons_prefs(void);
|
2012-11-29 23:14:56 +00:00
|
|
|
void cons_show_ui_prefs(void);
|
|
|
|
void cons_show_desktop_prefs(void);
|
|
|
|
void cons_show_chat_prefs(void);
|
|
|
|
void cons_show_log_prefs(void);
|
2012-11-30 23:34:14 +00:00
|
|
|
void cons_show_presence_prefs(void);
|
|
|
|
void cons_show_connection_prefs(void);
|
2012-12-09 22:58:45 +00:00
|
|
|
void cons_show_account(ProfAccount *account);
|
2013-01-30 00:56:14 +00:00
|
|
|
void cons_debug(const char * const msg, ...);
|
2012-11-11 23:57:02 +00:00
|
|
|
void cons_show_time(void);
|
|
|
|
void cons_show_word(const char * const word);
|
2013-04-21 02:49:23 +01:00
|
|
|
void cons_show_error(const char * const cmd, ...);
|
2012-03-09 01:06:55 +00:00
|
|
|
void cons_highlight_show(const char * const cmd);
|
2012-10-04 22:48:41 +01:00
|
|
|
void cons_show_contacts(GSList * list);
|
2013-06-01 23:27:46 +01:00
|
|
|
void cons_show_roster(GSList * list);
|
2013-06-02 02:48:20 +01:00
|
|
|
void cons_show_roster_group(const char * const group, GSList * list);
|
2012-11-26 00:01:34 +00:00
|
|
|
void cons_show_wins(void);
|
2013-05-20 22:51:35 +01:00
|
|
|
void cons_show_status(const char * const barejid);
|
2013-01-21 23:48:57 +00:00
|
|
|
void cons_show_info(PContact pcontact);
|
2013-02-17 16:39:37 +00:00
|
|
|
void cons_show_caps(const char * const contact, Resource *resource);
|
2012-12-09 00:21:33 +00:00
|
|
|
void cons_show_themes(GSList *themes);
|
2013-01-31 00:40:27 +00:00
|
|
|
void cons_show_login_success(ProfAccount *account);
|
2013-02-17 16:39:37 +00:00
|
|
|
void cons_show_software_version(const char * const jid,
|
|
|
|
const char * const presence, const char * const name,
|
2013-02-17 02:10:56 +00:00
|
|
|
const char * const version, const char * const os);
|
2013-02-18 22:07:17 +00:00
|
|
|
void cons_show_account_list(gchar **accounts);
|
2013-03-14 22:03:38 +00:00
|
|
|
void cons_show_room_list(GSList *room, const char * const conference_node);
|
2013-03-14 22:18:21 +00:00
|
|
|
void cons_show_disco_items(GSList *items, const char * const jid);
|
2013-03-14 23:41:36 +00:00
|
|
|
void cons_show_disco_info(const char *from, GSList *identities, GSList *features);
|
2013-03-24 21:46:00 +00:00
|
|
|
void cons_show_room_invite(const char * const invitor, const char * const room,
|
|
|
|
const char * const reason);
|
2013-04-21 00:21:30 +01:00
|
|
|
void cons_check_version(gboolean not_available_msg);
|
2013-05-20 22:51:35 +01:00
|
|
|
void cons_show_typing(const char * const barejid);
|
2013-04-21 01:47:57 +01:00
|
|
|
void cons_show_incoming_message(const char * const short_from, const int win_index);
|
2013-04-24 23:50:47 +01:00
|
|
|
void cons_show_room_invites(GSList *invites);
|
2013-04-27 23:13:52 +01:00
|
|
|
void cons_show_received_subs(void);
|
|
|
|
void cons_show_sent_subs(void);
|
2013-05-30 22:48:56 +01:00
|
|
|
void cons_alert(void);
|
2012-02-12 22:38:27 +00:00
|
|
|
|
2012-02-12 22:20:21 +00:00
|
|
|
// status bar actions
|
2012-02-12 22:34:31 +00:00
|
|
|
void status_bar_refresh(void);
|
2012-04-22 01:25:19 +01:00
|
|
|
void status_bar_resize(void);
|
2012-02-12 22:20:21 +00:00
|
|
|
void status_bar_clear(void);
|
2012-11-19 23:15:42 +00:00
|
|
|
void status_bar_clear_message(void);
|
2012-02-12 22:20:21 +00:00
|
|
|
void status_bar_get_password(void);
|
2012-03-09 01:06:55 +00:00
|
|
|
void status_bar_print_message(const char * const msg);
|
|
|
|
void status_bar_inactive(const int win);
|
|
|
|
void status_bar_active(const int win);
|
2012-04-19 23:32:44 +01:00
|
|
|
void status_bar_new(const int win);
|
2012-02-12 22:20:21 +00:00
|
|
|
void status_bar_update_time(void);
|
2012-02-08 23:49:46 +00:00
|
|
|
|
|
|
|
// input window actions
|
2013-01-03 00:16:39 +00:00
|
|
|
wint_t inp_get_char(char *input, int *size);
|
2013-01-06 01:06:12 +00:00
|
|
|
void inp_win_reset(void);
|
2012-04-22 20:59:36 +01:00
|
|
|
void inp_win_resize(const char * input, const int size);
|
2012-02-10 00:28:39 +00:00
|
|
|
void inp_put_back(void);
|
2012-02-08 23:49:46 +00:00
|
|
|
void inp_non_block(void);
|
2012-02-17 00:42:41 +00:00
|
|
|
void inp_block(void);
|
2012-02-08 23:49:46 +00:00
|
|
|
void inp_get_password(char *passwd);
|
2012-10-28 01:08:04 +01:00
|
|
|
void inp_replace_input(char *input, const char * const new_input, int *size);
|
2012-02-08 23:49:46 +00:00
|
|
|
|
2012-02-05 23:08:15 +00:00
|
|
|
#endif
|