1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00
profanity/src/ui/ui.h

206 lines
7.0 KiB
C
Raw Normal View History

/*
2012-05-24 00:11:43 +00: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-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 15:51:09 +00:00
#include "config.h"
2013-01-03 00:16:39 +00:00
#include <wchar.h>
2012-08-26 00:50:50 +00:00
#include <glib.h>
2013-01-02 20:27:37 +00:00
#ifdef HAVE_NCURSESW_NCURSES_H
#include <ncursesw/ncurses.h>
#elif HAVE_NCURSES_H
#include <ncurses.h>
2012-09-08 15:51:09 +00:00
#endif
2012-05-27 19:36:31 +00:00
#include "contact.h"
2013-01-13 03:14:36 +00:00
#include "jid.h"
2013-02-02 19:47:41 +00:00
#include "xmpp/xmpp.h"
2012-02-07 00:08:59 +00:00
#define INP_WIN_MAX 1000
#define PAD_SIZE 1000
2012-11-12 23:05:22 +00:00
typedef enum {
WIN_UNUSED,
WIN_CONSOLE,
WIN_CHAT,
WIN_MUC,
WIN_PRIVATE
} win_type_t;
struct prof_win {
2012-02-08 22:46:35 +00:00
char from[100];
WINDOW *win;
2012-11-12 23:05:22 +00:00
win_type_t type;
2012-03-05 00:06:24 +00:00
int y_pos;
int paged;
int unread;
int history_shown;
};
2012-04-17 22:28:21 +00:00
// gui startup and shutdown, resize
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 22:28:21 +00:00
const int size);
2012-11-26 00:01:34 +00:00
void ui_show_typing(const char * const from);
2012-11-26 00:57:41 +00:00
void ui_idle(void);
void ui_show_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);
2012-11-26 00:57:41 +00:00
void ui_contact_offline(const char * const from, const char * const show,
const char * const status);
void ui_disconnected(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);
unsigned long ui_get_idle_time(void);
void ui_reset_idle_time(void);
2012-02-12 22:09:07 +00:00
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);
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);
void title_bar_set_status(contact_presence_t status);
void title_bar_set_recipient(char *from);
void title_bar_set_typing(gboolean is_typing);
void title_bar_draw(void);
2012-02-12 22:38:27 +00:00
2012-11-26 00:01:34 +00:00
// current window actions
void win_current_close(void);
void win_current_clear(void);
2013-01-11 01:05:59 +00:00
int win_current_is_console(void);
2012-11-26 00:01:34 +00:00
int win_current_is_chat(void);
int win_current_is_groupchat(void);
int win_current_is_private(void);
char* win_current_get_recipient(void);
2012-11-27 21:53:56 +00:00
void win_current_show(const char * const msg, ...);
2012-11-26 00:57:41 +00:00
void win_current_bad_show(const char * const msg);
void win_current_page_off(void);
2012-11-26 00:01:34 +00:00
2012-10-18 15:18:44 +00:00
void win_show_error_msg(const char * const from, const char *err_msg);
2012-11-26 00:57:41 +00:00
void win_show_gone(const char * const from);
2012-11-11 12:00:21 +00:00
void win_show_system_msg(const char * const from, const char *message);
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);
void win_new_chat_win(const char * const to);
2012-02-12 22:38:27 +00:00
2013-01-13 03:14:36 +00:00
void win_join_chat(Jid *jid);
2013-01-15 23:17:07 +00:00
void win_show_room_roster(const char * const room, GList *roster, const char * const presence);
2012-11-05 22:21:03 +00:00
void win_show_room_history(const char * const room_jid, const char * const nick,
GTimeVal tv_stamp, const char * const message);
2012-11-05 22:28:06 +00:00
void win_show_room_message(const char * const room_jid, const char * const nick,
const char * const message);
2012-11-10 03:30:27 +00:00
void win_show_room_subject(const char * const room_jid,
const char * const subject);
2012-11-19 22:15:53 +00:00
void win_show_room_broadcast(const char * const room_jid,
const char * const message);
2012-11-08 00:05:32 +00:00
void win_show_room_member_offline(const char * const room, const char * const nick);
2012-11-18 21:46:58 +00:00
void win_show_room_member_online(const char * const room,
const char * const nick, const char * const show, const char * const status);
void win_show_room_member_nick_change(const char * const room,
const char * const old_nick, const char * const nick);
void win_show_room_nick_change(const char * const room, const char * const nick);
2012-11-19 00:26:31 +00:00
void win_show_room_member_presence(const char * const room,
const char * const nick, const char * const show, const char * const status);
void win_room_show_status(const char * const contact);
2013-01-20 03:32:51 +00:00
void win_room_show_info(const char * const contact);
void win_show_status(void);
void win_private_show_status(void);
2012-11-05 21:36:32 +00:00
2012-02-12 22:38:27 +00:00
// console window actions
void cons_about(void);
2012-02-12 22:38:27 +00: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 22:43:50 +00: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 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);
2012-03-09 01:06:55 +00:00
void cons_bad_command(const char * const cmd);
2012-10-03 21:06:04 +00:00
void cons_show(const char * const cmd, ...);
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);
2012-11-10 01:39:42 +00:00
void cons_bad_show(const char * const cmd, ...);
2012-03-09 01:06:55 +00:00
void cons_highlight_show(const char * const cmd);
void cons_show_contacts(GSList * list);
2012-10-24 00:35:36 +00:00
void cons_check_version(gboolean not_available_msg);
2012-11-26 00:01:34 +00:00
void cons_show_wins(void);
2012-11-26 00:57:41 +00:00
void cons_show_status(const char * const contact);
void cons_show_info(PContact pcontact);
void cons_show_caps(const char * const contact, Resource *resource);
2012-12-09 00:21:33 +00: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 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);
void cons_show_room_invite(const char * const invitor, const char * const room,
const char * const reason);
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 00:25:19 +00: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);
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);
void inp_win_reset(void);
2012-04-22 19:59:36 +00: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 00:08:04 +00:00
void inp_replace_input(char *input, const char * const new_input, int *size);
2012-02-08 23:49:46 +00:00
2012-11-26 00:01:34 +00:00
void notify_remind(void);
2012-02-05 23:08:15 +00:00
#endif