2012-11-22 19:19:29 -05:00
|
|
|
/*
|
|
|
|
* window.h
|
2019-11-13 06:11:05 -05:00
|
|
|
* vim: expandtab:ts=4:sts=4:sw=4
|
2012-11-22 19:19:29 -05:00
|
|
|
*
|
2019-01-22 05:31:45 -05:00
|
|
|
* Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com>
|
2023-01-10 04:37:25 -05:00
|
|
|
* Copyright (C) 2019 - 2023 Michael Vetter <jubalh@iodoru.org>
|
2012-11-22 19:19:29 -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
|
2016-07-23 20:14:49 -04:00
|
|
|
* along with Profanity. If not, see <https://www.gnu.org/licenses/>.
|
2012-11-22 19:19:29 -05:00
|
|
|
*
|
2014-08-24 15:57:39 -04:00
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link the code of portions of this program with the OpenSSL library under
|
|
|
|
* certain conditions as described in each individual source file, and
|
|
|
|
* distribute linked combinations including the two.
|
|
|
|
*
|
|
|
|
* You must obey the GNU General Public License in all respects for all of the
|
|
|
|
* code used other than OpenSSL. If you modify file(s) with this exception, you
|
|
|
|
* may extend this exception to your version of the file(s), but you are not
|
|
|
|
* obligated to do so. If you do not wish to do so, delete this exception
|
|
|
|
* statement from your version. If you delete this exception statement from all
|
|
|
|
* source files in the program, then also delete it here.
|
|
|
|
*
|
2012-11-22 19:19:29 -05:00
|
|
|
*/
|
|
|
|
|
2013-12-14 10:34:17 -05:00
|
|
|
#ifndef UI_WINDOW_H
|
|
|
|
#define UI_WINDOW_H
|
2012-11-25 18:29:02 -05:00
|
|
|
|
2016-03-31 16:05:02 -04:00
|
|
|
#include "config.h"
|
2013-08-20 18:08:21 -04:00
|
|
|
|
2015-01-14 19:14:12 -05:00
|
|
|
#include <wchar.h>
|
|
|
|
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_NCURSESW_NCURSES_H
|
2015-06-15 12:11:11 -04:00
|
|
|
#include <ncursesw/ncurses.h>
|
2016-03-31 16:05:02 -04:00
|
|
|
#elif HAVE_NCURSES_H
|
2015-06-15 12:11:11 -04:00
|
|
|
#include <ncurses.h>
|
2020-09-04 06:55:20 -04:00
|
|
|
#elif HAVE_CURSES_H
|
|
|
|
#include <curses.h>
|
2015-06-15 12:11:11 -04:00
|
|
|
#endif
|
|
|
|
|
2016-07-24 10:43:51 -04:00
|
|
|
#include "ui/ui.h"
|
2020-07-07 07:53:30 -04:00
|
|
|
#include "ui/buffer.h"
|
|
|
|
#include "xmpp/xmpp.h"
|
2016-07-24 10:43:51 -04:00
|
|
|
#include "xmpp/chat_state.h"
|
|
|
|
#include "xmpp/contact.h"
|
|
|
|
#include "xmpp/muc.h"
|
|
|
|
|
2023-12-04 09:56:50 -05:00
|
|
|
#define PAD_SIZE 10000
|
2022-10-22 10:09:39 -04:00
|
|
|
#define LOADING_MESSAGE "Loading older messages…"
|
2013-04-20 19:21:30 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
void win_move_to_end(ProfWin* window);
|
|
|
|
void win_show_status_string(ProfWin* window, const char* const from,
|
|
|
|
const char* const show, const char* const status,
|
|
|
|
GDateTime* last_activity, const char* const pre,
|
|
|
|
const char* const default_show);
|
2016-10-15 15:07:33 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
void win_print_them(ProfWin* window, theme_item_t theme_item, const char* const show_char, int flags, const char* const them);
|
|
|
|
void win_print_incoming(ProfWin* window, const char* const from, ProfMessage* message);
|
|
|
|
void win_print_outgoing(ProfWin* window, const char* show_char, const char* const id, const char* const replace_id, const char* const message);
|
|
|
|
void win_print_outgoing_with_receipt(ProfWin* window, const char* show_char, const char* const from, const char* const message, char* id, const char* const replace_id);
|
|
|
|
void win_println_incoming_muc_msg(ProfWin* window, char* show_char, int flags, const ProfMessage* const message);
|
|
|
|
void win_print_outgoing_muc_msg(ProfWin* window, char* show_char, const char* const me, const char* const id, const char* const replace_id, const char* const message);
|
|
|
|
void win_print_history(ProfWin* window, const ProfMessage* const message);
|
2022-07-03 14:29:36 -04:00
|
|
|
void win_print_old_history(ProfWin* window, const ProfMessage* const message);
|
2016-10-11 18:40:15 -04:00
|
|
|
|
2023-03-09 15:16:42 -05:00
|
|
|
void win_print_http_transfer(ProfWin* window, const char* const message, char* id);
|
2016-10-11 18:40:15 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
void win_newline(ProfWin* window);
|
|
|
|
void win_redraw(ProfWin* window);
|
2022-07-05 04:12:29 -04:00
|
|
|
void win_print_loading_history(ProfWin* window);
|
2014-11-15 17:26:43 -05:00
|
|
|
int win_roster_cols(void);
|
2014-11-15 17:59:13 -05:00
|
|
|
int win_occpuants_cols(void);
|
2020-07-07 08:18:57 -04:00
|
|
|
void win_sub_print(WINDOW* win, char* msg, gboolean newline, gboolean wrap, int indent);
|
|
|
|
void win_sub_newline_lazy(WINDOW* win);
|
|
|
|
void win_mark_received(ProfWin* window, const char* const id);
|
|
|
|
void win_update_entry_message(ProfWin* window, const char* const id, const char* const message);
|
2012-11-25 18:29:02 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
gboolean win_has_active_subwin(ProfWin* window);
|
2014-12-15 20:39:47 -05:00
|
|
|
|
2023-11-13 06:40:27 -05:00
|
|
|
void win_page_up(ProfWin* window, int scroll_size);
|
|
|
|
void win_page_down(ProfWin* window, int scroll_size);
|
2020-07-07 08:18:57 -04:00
|
|
|
void win_sub_page_down(ProfWin* window);
|
|
|
|
void win_sub_page_up(ProfWin* window);
|
2015-01-31 17:00:22 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
void win_insert_last_read_position_marker(ProfWin* window, char* id);
|
|
|
|
void win_remove_entry_message(ProfWin* window, const char* const id);
|
2019-12-13 06:05:24 -05:00
|
|
|
|
2022-03-20 18:10:07 -04:00
|
|
|
char* win_quote_autocomplete(ProfWin* window, const char* const input, gboolean previous);
|
|
|
|
|
2023-11-03 06:27:30 -04:00
|
|
|
char* get_show_char(prof_enc_t encryption_mode);
|
2023-11-06 14:56:48 -05:00
|
|
|
char* get_enc_char(prof_enc_t enc_mode, const char* alt);
|
2023-11-03 06:27:30 -04:00
|
|
|
|
2012-11-25 18:29:02 -05:00
|
|
|
#endif
|