1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00
profanity/src/ui/ui.h

213 lines
7.4 KiB
C
Raw Normal View History

/*
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-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>
#elif HAVE_NCURSES_H
#include <ncurses.h>
2012-09-08 11:51:09 -04:00
#endif
2012-05-27 15:36:31 -04:00
#include "contact.h"
2013-01-12 22:14:36 -05:00
#include "jid.h"
#include "ui/window.h"
2013-02-02 14:47:41 -05:00
#include "xmpp/xmpp.h"
2012-02-06 19:08:59 -05:00
#define INP_WIN_MAX 1000
#define NUM_WINS 10
// holds console at index 0 and chat wins 1 through to 9
ProfWin* windows[NUM_WINS];
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-11-26 19:17:35 -05:00
gboolean ui_windows_full(void);
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);
void ui_console_dirty(void);
void ui_close_connected_win(int index);
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);
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);
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);
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);
// 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
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);
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);
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);
void title_bar_set_status(contact_presence_t status);
void title_bar_set_recipient(const char * const from);
void title_bar_set_typing(gboolean is_typing);
void title_bar_draw(void);
2012-02-12 17:38:27 -05:00
// console window actions
ProfWin* cons_create(void);
void cons_show(const char * const msg, ...);
void cons_about(void);
2012-02-12 17:38:27 -05:00
void cons_help(void);
void cons_basic_help(void);
void cons_settings_help(void);
void cons_presence_help(void);
void cons_navigation_help(void);
2012-07-19 18:43:50 -04:00
void cons_prefs(void);
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);
void cons_show_error(const char * const cmd, ...);
2012-03-08 20:06:55 -05:00
void cons_highlight_show(const char * const cmd);
void cons_show_contacts(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);
void cons_show_info(PContact pcontact);
void cons_show_caps(const char * const contact, Resource *resource);
2012-12-08 19:21:33 -05:00
void cons_show_themes(GSList *themes);
void cons_show_login_success(ProfAccount *account);
void cons_show_software_version(const char * const jid,
const char * const presence, const char * const name,
const char * const version, const char * const os);
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-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);
void cons_show_room_invite(const char * const invitor, const char * const room,
const char * const reason);
void cons_check_version(gboolean not_available_msg);
2013-05-20 17:51:35 -04:00
void cons_show_typing(const char * const barejid);
void cons_show_incoming_message(const char * const short_from, const int win_index);
void cons_show_room_invites(GSList *invites);
void cons_show_received_subs(void);
void cons_show_sent_subs(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);
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);
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