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
|
|
|
*
|
|
|
|
* Copyright (C) 2012 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>
|
2012-09-08 11:51:09 -04:00
|
|
|
|
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
|
|
|
|
2012-08-25 20:50:50 -04:00
|
|
|
#include "jabber.h"
|
2012-02-06 19:08:59 -05:00
|
|
|
|
2012-07-09 18:48:53 -04:00
|
|
|
#define INP_WIN_MAX 1000
|
2012-11-22 19:19:29 -05:00
|
|
|
#define PAD_SIZE 1000
|
2012-07-09 18:48:53 -04:00
|
|
|
|
2012-11-12 18:05:22 -05:00
|
|
|
typedef enum {
|
|
|
|
WIN_UNUSED,
|
|
|
|
WIN_CONSOLE,
|
|
|
|
WIN_CHAT,
|
|
|
|
WIN_MUC,
|
|
|
|
WIN_PRIVATE
|
|
|
|
} win_type_t;
|
|
|
|
|
2012-02-08 17:26:43 -05:00
|
|
|
struct prof_win {
|
2012-02-08 17:46:35 -05:00
|
|
|
char from[100];
|
2012-02-08 17:26:43 -05:00
|
|
|
WINDOW *win;
|
2012-11-12 18:05:22 -05:00
|
|
|
win_type_t type;
|
2012-03-04 19:06:24 -05:00
|
|
|
int y_pos;
|
|
|
|
int paged;
|
2012-09-23 15:10:03 -04:00
|
|
|
int unread;
|
2012-10-13 23:10:03 -04:00
|
|
|
int history_shown;
|
2012-02-08 17:26:43 -05:00
|
|
|
};
|
|
|
|
|
2012-04-17 18:28:21 -04:00
|
|
|
// gui startup and shutdown, resize
|
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:01:34 -05:00
|
|
|
void ui_show_typing(const char * const from);
|
2012-11-25 19:57:41 -05: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 from, const char * const show,
|
2012-12-08 22:07:33 -05:00
|
|
|
const char * const status, GDateTime *last_activity);
|
2012-11-25 19:57:41 -05:00
|
|
|
void ui_contact_offline(const char * const from, const char * const show,
|
|
|
|
const char * const status);
|
|
|
|
void ui_disconnected(void);
|
2013-01-02 19:16:39 -05:00
|
|
|
void ui_handle_special_keys(const wint_t * const ch);
|
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);
|
2012-12-01 13:39:34 -05:00
|
|
|
unsigned long ui_get_idle_time(void);
|
|
|
|
void ui_reset_idle_time(void);
|
2012-02-12 17:09:07 -05:00
|
|
|
|
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);
|
2012-05-27 15:36:31 -04:00
|
|
|
void title_bar_set_status(jabber_presence_t status);
|
2012-08-16 16:43:52 -04:00
|
|
|
void title_bar_set_recipient(char *from);
|
|
|
|
void title_bar_set_typing(gboolean is_typing);
|
|
|
|
void title_bar_draw(void);
|
2012-02-12 17:38:27 -05:00
|
|
|
|
2012-11-25 19:01:34 -05:00
|
|
|
// current window actions
|
|
|
|
void win_current_close(void);
|
|
|
|
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 16:53:56 -05:00
|
|
|
void win_current_show(const char * const msg, ...);
|
2012-11-25 19:57:41 -05:00
|
|
|
void win_current_bad_show(const char * const msg);
|
|
|
|
void win_current_page_off(void);
|
2012-11-25 19:01:34 -05:00
|
|
|
|
2012-10-18 11:18:44 -04:00
|
|
|
void win_show_error_msg(const char * const from, const char *err_msg);
|
2012-11-25 19:57:41 -05:00
|
|
|
void win_show_gone(const char * const from);
|
2012-11-11 07:00:21 -05:00
|
|
|
void win_show_system_msg(const char * const from, const char *message);
|
2012-10-21 15:02:20 -04:00
|
|
|
void win_show_outgoing_msg(const char * const from, const char * const to,
|
2012-03-08 20:06:55 -05:00
|
|
|
const char * const message);
|
2012-11-29 19:19:03 -05:00
|
|
|
void win_new_chat_win(const char * const to);
|
2012-02-12 17:38:27 -05:00
|
|
|
|
2012-11-10 13:32:33 -05:00
|
|
|
void win_join_chat(const char * const room, const char * const nick);
|
2012-11-07 17:46:20 -05:00
|
|
|
void win_show_room_roster(const char * const room);
|
2012-11-05 17:21:03 -05: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 17:28:06 -05:00
|
|
|
void win_show_room_message(const char * const room_jid, const char * const nick,
|
|
|
|
const char * const message);
|
2012-11-09 22:30:27 -05:00
|
|
|
void win_show_room_subject(const char * const room_jid,
|
|
|
|
const char * const subject);
|
2012-11-19 17:15:53 -05:00
|
|
|
void win_show_room_broadcast(const char * const room_jid,
|
|
|
|
const char * const message);
|
2012-11-07 19:05:32 -05:00
|
|
|
void win_show_room_member_offline(const char * const room, const char * const nick);
|
2012-11-18 16:46:58 -05: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);
|
2012-11-18 17:49:01 -05:00
|
|
|
void win_show_room_nick_change(const char * const room, const char * const nick);
|
2012-11-18 19:26:31 -05:00
|
|
|
void win_show_room_member_presence(const char * const room,
|
|
|
|
const char * const nick, const char * const show, const char * const status);
|
2012-11-05 16:36:32 -05:00
|
|
|
|
2012-02-12 17:38:27 -05:00
|
|
|
// console window actions
|
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);
|
2012-03-08 20:06:55 -05:00
|
|
|
void cons_bad_command(const char * const cmd);
|
2012-10-03 17:06:04 -04:00
|
|
|
void cons_show(const char * const cmd, ...);
|
2012-11-11 18:57:02 -05:00
|
|
|
void cons_show_time(void);
|
|
|
|
void cons_show_word(const char * const word);
|
2012-11-09 20:39:42 -05:00
|
|
|
void cons_bad_show(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);
|
2012-10-23 20:35:36 -04:00
|
|
|
void cons_check_version(gboolean not_available_msg);
|
2012-11-25 19:01:34 -05:00
|
|
|
void cons_show_wins(void);
|
2012-11-25 19:57:41 -05:00
|
|
|
void cons_show_status(const char * const contact);
|
2012-12-08 19:21:33 -05:00
|
|
|
void cons_show_themes(GSList *themes);
|
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);
|
2012-02-08 18:49:46 -05:00
|
|
|
void inp_clear(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-11-23 20:57:24 -05:00
|
|
|
int inp_get_next_char(void);
|
2012-02-08 18:49:46 -05:00
|
|
|
|
2012-11-25 19:01:34 -05:00
|
|
|
void notify_remind(void);
|
2012-02-05 18:08:15 -05:00
|
|
|
#endif
|