2012-10-21 15:02:20 -04:00
|
|
|
/*
|
2012-05-23 20:11:43 -04:00
|
|
|
* ui.h
|
2012-02-20 15:07:38 -05:00
|
|
|
*
|
2013-01-10 21:05:29 -05:00
|
|
|
* Copyright (C) 2012, 2013 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-11-08 17:51:49 -05:00
|
|
|
#ifndef UI_H
|
|
|
|
#define UI_H
|
2012-02-05 18:08:15 -05:00
|
|
|
|
2012-09-08 11:51:09 -04:00
|
|
|
#include "config.h"
|
|
|
|
|
2013-01-02 19:16:39 -05:00
|
|
|
#include <wchar.h>
|
|
|
|
|
2012-08-25 20:50:50 -04:00
|
|
|
#include <glib.h>
|
2013-01-02 15:27:37 -05:00
|
|
|
#ifdef HAVE_NCURSESW_NCURSES_H
|
|
|
|
#include <ncursesw/ncurses.h>
|
2013-01-03 19:35:54 -05:00
|
|
|
#elif HAVE_NCURSES_H
|
|
|
|
#include <ncurses.h>
|
2012-09-08 11:51:09 -04:00
|
|
|
#endif
|
2012-05-27 15:36:31 -04:00
|
|
|
|
2013-01-21 18:48:57 -05:00
|
|
|
#include "contact.h"
|
2013-01-12 22:14:36 -05:00
|
|
|
#include "jid.h"
|
2013-04-20 19:21:30 -04:00
|
|
|
#include "ui/window.h"
|
2013-02-02 14:47:41 -05:00
|
|
|
#include "xmpp/xmpp.h"
|
2012-02-06 19:08:59 -05:00
|
|
|
|
2012-07-09 18:48:53 -04:00
|
|
|
#define INP_WIN_MAX 1000
|
2012-02-08 17:26:43 -05:00
|
|
|
|
2013-04-21 14:44:31 -04:00
|
|
|
// ui startup and control
|
2012-11-25 19:01:34 -05: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 18:28:21 -04:00
|
|
|
const int size);
|
2012-11-25 19:57:41 -05:00
|
|
|
void ui_idle(void);
|
2013-02-02 18:52:47 -05:00
|
|
|
void ui_handle_special_keys(const wint_t * const ch, const char * const inp,
|
|
|
|
const int size);
|
2012-11-25 19:57:41 -05:00
|
|
|
void ui_switch_win(const int i);
|
2012-12-01 13:39:34 -05:00
|
|
|
unsigned long ui_get_idle_time(void);
|
|
|
|
void ui_reset_idle_time(void);
|
2013-04-21 14:44:31 -04: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 15:17:06 -04:00
|
|
|
gint ui_unread(void);
|
2013-05-16 19:33:00 -04:00
|
|
|
void ui_close_connected_win(int index);
|
2013-08-26 13:06:33 -04:00
|
|
|
int ui_close_all_wins(void);
|
|
|
|
int ui_close_read_wins(void);
|
2013-04-21 14:44:31 -04: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 17:57:36 -04:00
|
|
|
int ui_current_win_index(void);
|
2013-04-21 14:44:31 -04: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 17:57:36 -04: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 17:34:05 -04:00
|
|
|
int ui_win_unread(int index);
|
2013-04-21 14:44:31 -04: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 17:51:35 -04:00
|
|
|
void ui_recipient_gone(const char * const barejid);
|
2013-04-21 14:44:31 -04: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-01 19:20:22 -04:00
|
|
|
void ui_roster_add(const char * const barejid, const char * const name);
|
2013-06-01 19:24:22 -04:00
|
|
|
void ui_roster_remove(const char * const barejid);
|
2013-06-23 11:35:13 -04: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-06-23 12:38:30 -04:00
|
|
|
void ui_group_added(const char * const contact, const char * const group);
|
|
|
|
void ui_group_removed(const char * const contact, const char * const group);
|
2013-04-21 14:44:31 -04:00
|
|
|
|
|
|
|
// contact status functions
|
|
|
|
void ui_status_room(const char * const contact);
|
|
|
|
void ui_status(void);
|
|
|
|
void ui_status_private(void);
|
2012-02-12 17:09:07 -05:00
|
|
|
|
2013-05-04 21:31:04 -04: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-16 19:33:00 -04:00
|
|
|
void ui_tidy_wins(void);
|
|
|
|
void ui_prune_wins(void);
|
|
|
|
|
2012-02-08 18:49:46 -05:00
|
|
|
// create windows
|
|
|
|
void create_title_bar(void);
|
2012-02-12 17:20:21 -05:00
|
|
|
void create_status_bar(void);
|
2012-02-08 18:49:46 -05:00
|
|
|
void create_input_window(void);
|
|
|
|
|
2012-02-12 17:38:27 -05:00
|
|
|
// title bar actions
|
2012-02-12 17:44:00 -05:00
|
|
|
void title_bar_refresh(void);
|
2012-04-19 20:48:42 -04:00
|
|
|
void title_bar_resize(void);
|
2012-03-08 20:06:55 -05:00
|
|
|
void title_bar_show(const char * const title);
|
2012-02-18 19:23:45 -05:00
|
|
|
void title_bar_title(void);
|
2013-02-10 12:13:19 -05:00
|
|
|
void title_bar_set_status(contact_presence_t status);
|
2013-05-18 22:45:27 -04:00
|
|
|
void title_bar_set_recipient(const char * const from);
|
2012-08-16 16:43:52 -04:00
|
|
|
void title_bar_set_typing(gboolean is_typing);
|
|
|
|
void title_bar_draw(void);
|
2012-02-12 17:38:27 -05:00
|
|
|
|
|
|
|
// console window actions
|
2013-04-20 19:21:30 -04:00
|
|
|
void cons_show(const char * const msg, ...);
|
2012-10-22 19:18:28 -04:00
|
|
|
void cons_about(void);
|
2012-02-12 17:38:27 -05:00
|
|
|
void cons_help(void);
|
2012-10-22 18:58:47 -04:00
|
|
|
void cons_basic_help(void);
|
|
|
|
void cons_settings_help(void);
|
2012-11-13 17:24:37 -05:00
|
|
|
void cons_presence_help(void);
|
2012-10-22 18:58:47 -04:00
|
|
|
void cons_navigation_help(void);
|
2012-07-19 18:43:50 -04:00
|
|
|
void cons_prefs(void);
|
2012-11-29 18:14:56 -05: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 18:34:14 -05:00
|
|
|
void cons_show_presence_prefs(void);
|
|
|
|
void cons_show_connection_prefs(void);
|
2012-12-09 17:58:45 -05:00
|
|
|
void cons_show_account(ProfAccount *account);
|
2013-01-29 19:56:14 -05:00
|
|
|
void cons_debug(const char * const msg, ...);
|
2012-11-11 18:57:02 -05:00
|
|
|
void cons_show_time(void);
|
|
|
|
void cons_show_word(const char * const word);
|
2013-04-20 21:49:23 -04:00
|
|
|
void cons_show_error(const char * const cmd, ...);
|
2012-03-08 20:06:55 -05:00
|
|
|
void cons_highlight_show(const char * const cmd);
|
2012-10-04 17:48:41 -04:00
|
|
|
void cons_show_contacts(GSList * list);
|
2013-06-01 18:27:46 -04:00
|
|
|
void cons_show_roster(GSList * list);
|
2013-06-01 21:48:20 -04:00
|
|
|
void cons_show_roster_group(const char * const group, GSList * list);
|
2012-11-25 19:01:34 -05:00
|
|
|
void cons_show_wins(void);
|
2013-05-20 17:51:35 -04:00
|
|
|
void cons_show_status(const char * const barejid);
|
2013-01-21 18:48:57 -05:00
|
|
|
void cons_show_info(PContact pcontact);
|
2013-02-17 11:39:37 -05:00
|
|
|
void cons_show_caps(const char * const contact, Resource *resource);
|
2012-12-08 19:21:33 -05:00
|
|
|
void cons_show_themes(GSList *themes);
|
2013-01-30 19:40:27 -05:00
|
|
|
void cons_show_login_success(ProfAccount *account);
|
2013-02-17 11:39:37 -05:00
|
|
|
void cons_show_software_version(const char * const jid,
|
|
|
|
const char * const presence, const char * const name,
|
2013-02-16 21:10:56 -05:00
|
|
|
const char * const version, const char * const os);
|
2013-02-18 17:07:17 -05:00
|
|
|
void cons_show_account_list(gchar **accounts);
|
2013-03-14 18:03:38 -04:00
|
|
|
void cons_show_room_list(GSList *room, const char * const conference_node);
|
2013-07-14 16:58:02 -04:00
|
|
|
void cons_show_bookmarks(const GList *list);
|
2013-03-14 18:18:21 -04:00
|
|
|
void cons_show_disco_items(GSList *items, const char * const jid);
|
2013-03-14 19:41:36 -04:00
|
|
|
void cons_show_disco_info(const char *from, GSList *identities, GSList *features);
|
2013-03-24 17:46:00 -04:00
|
|
|
void cons_show_room_invite(const char * const invitor, const char * const room,
|
|
|
|
const char * const reason);
|
2013-04-20 19:21:30 -04:00
|
|
|
void cons_check_version(gboolean not_available_msg);
|
2013-05-20 17:51:35 -04:00
|
|
|
void cons_show_typing(const char * const barejid);
|
2013-04-20 20:47:57 -04:00
|
|
|
void cons_show_incoming_message(const char * const short_from, const int win_index);
|
2013-04-24 18:50:47 -04:00
|
|
|
void cons_show_room_invites(GSList *invites);
|
2013-04-27 18:13:52 -04:00
|
|
|
void cons_show_received_subs(void);
|
|
|
|
void cons_show_sent_subs(void);
|
2013-05-30 17:48:56 -04:00
|
|
|
void cons_alert(void);
|
2013-06-25 18:38:06 -04:00
|
|
|
void cons_theme_setting(void);
|
|
|
|
void cons_beep_setting(void);
|
|
|
|
void cons_flash_setting(void);
|
|
|
|
void cons_splash_setting(void);
|
|
|
|
void cons_vercheck_setting(void);
|
|
|
|
void cons_mouse_setting(void);
|
|
|
|
void cons_statuses_setting(void);
|
|
|
|
void cons_titlebar_setting(void);
|
|
|
|
void cons_notify_setting(void);
|
|
|
|
void cons_show_desktop_prefs(void);
|
|
|
|
void cons_states_setting(void);
|
|
|
|
void cons_outtype_setting(void);
|
|
|
|
void cons_intype_setting(void);
|
|
|
|
void cons_gone_setting(void);
|
|
|
|
void cons_history_setting(void);
|
|
|
|
void cons_log_setting(void);
|
|
|
|
void cons_chlog_setting(void);
|
|
|
|
void cons_grlog_setting(void);
|
|
|
|
void cons_autoaway_setting(void);
|
|
|
|
void cons_reconnect_setting(void);
|
|
|
|
void cons_autoping_setting(void);
|
|
|
|
void cons_priority_setting(void);
|
2012-02-12 17:38:27 -05:00
|
|
|
|
2012-02-12 17:20:21 -05:00
|
|
|
// status bar actions
|
2012-02-12 17:34:31 -05:00
|
|
|
void status_bar_refresh(void);
|
2012-04-21 20:25:19 -04:00
|
|
|
void status_bar_resize(void);
|
2012-02-12 17:20:21 -05:00
|
|
|
void status_bar_clear(void);
|
2012-11-19 18:15:42 -05:00
|
|
|
void status_bar_clear_message(void);
|
2012-02-12 17:20:21 -05:00
|
|
|
void status_bar_get_password(void);
|
2012-03-08 20:06:55 -05: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 18:32:44 -04:00
|
|
|
void status_bar_new(const int win);
|
2012-02-12 17:20:21 -05:00
|
|
|
void status_bar_update_time(void);
|
2012-02-08 18:49:46 -05:00
|
|
|
|
|
|
|
// input window actions
|
2013-01-02 19:16:39 -05:00
|
|
|
wint_t inp_get_char(char *input, int *size);
|
2013-01-05 20:06:12 -05:00
|
|
|
void inp_win_reset(void);
|
2012-04-22 15:59:36 -04:00
|
|
|
void inp_win_resize(const char * input, const int size);
|
2012-02-09 19:28:39 -05:00
|
|
|
void inp_put_back(void);
|
2012-02-08 18:49:46 -05:00
|
|
|
void inp_non_block(void);
|
2012-02-16 19:42:41 -05:00
|
|
|
void inp_block(void);
|
2012-02-08 18:49:46 -05:00
|
|
|
void inp_get_password(char *passwd);
|
2012-10-27 20:08:04 -04:00
|
|
|
void inp_replace_input(char *input, const char * const new_input, int *size);
|
2012-02-08 18:49:46 -05:00
|
|
|
|
2012-02-05 18:08:15 -05:00
|
|
|
#endif
|