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>
|
2020-02-13 05:12:15 -05:00
|
|
|
* Copyright (C) 2019 - 2020 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>
|
|
|
|
#endif
|
|
|
|
|
2016-07-24 10:43:51 -04:00
|
|
|
#include "ui/ui.h"
|
|
|
|
#include "ui/buffer.h"
|
|
|
|
#include "xmpp/xmpp.h"
|
|
|
|
#include "xmpp/chat_state.h"
|
|
|
|
#include "xmpp/contact.h"
|
|
|
|
#include "xmpp/muc.h"
|
|
|
|
|
2013-04-20 19:21:30 -04:00
|
|
|
#define PAD_SIZE 1000
|
|
|
|
|
2014-03-31 16:44:34 -04:00
|
|
|
void win_move_to_end(ProfWin *window);
|
2015-10-25 19:31:11 -04:00
|
|
|
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
|
|
|
|
2019-06-17 00:23:40 -04:00
|
|
|
void win_print_them(ProfWin *window, theme_item_t theme_item, char ch, int flags, const char *const them);
|
2020-02-13 05:09:55 -05:00
|
|
|
void win_println_incoming_muc_msg(ProfWin *window, char ch, int flags, const char *const them, const char *const id, const char *const replace_id, const char *const message, ...);
|
2020-02-12 08:06:00 -05:00
|
|
|
void win_print_outgoing_muc_msg(ProfWin *window, char ch, const char *const me, const char *const id, const char *const replace_id, const char *const message, ...);
|
2016-10-15 17:12:07 -04:00
|
|
|
|
2020-02-11 09:26:58 -05:00
|
|
|
void win_print_outgoing(ProfWin *window, const char ch, const char *const id, const char *const replace_id, const char *const message, ...);
|
2019-06-19 00:43:10 -04:00
|
|
|
void win_print_incoming(ProfWin *window, const char *const from, ProfMessage *message);
|
2016-10-15 15:55:45 -04:00
|
|
|
void win_print_history(ProfWin *window, GDateTime *timestamp, const char *const message, ...);
|
2016-10-11 18:40:15 -04:00
|
|
|
|
|
|
|
void win_print_http_upload(ProfWin *window, const char *const message, char *url);
|
|
|
|
|
2020-02-13 06:24:12 -05:00
|
|
|
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);
|
2016-10-11 18:40:15 -04:00
|
|
|
|
2015-03-14 10:16:50 -04:00
|
|
|
void win_newline(ProfWin *window);
|
2014-06-29 09:04:23 -04:00
|
|
|
void win_redraw(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);
|
2015-11-21 20:39:20 -05:00
|
|
|
void win_sub_print(WINDOW *win, char *msg, gboolean newline, gboolean wrap, int indent);
|
2015-11-21 19:54:40 -05:00
|
|
|
void win_sub_newline_lazy(WINDOW *win);
|
2015-10-25 19:31:11 -04:00
|
|
|
void win_mark_received(ProfWin *window, const char *const id);
|
2016-04-11 14:13:18 -04:00
|
|
|
void win_update_entry_message(ProfWin *window, const char *const id, const char *const message);
|
2012-11-25 18:29:02 -05:00
|
|
|
|
2014-12-15 20:39:47 -05:00
|
|
|
gboolean win_has_active_subwin(ProfWin *window);
|
|
|
|
|
2015-01-31 17:00:22 -05:00
|
|
|
void win_page_up(ProfWin *window);
|
|
|
|
void win_page_down(ProfWin *window);
|
|
|
|
void win_sub_page_down(ProfWin *window);
|
|
|
|
void win_sub_page_up(ProfWin *window);
|
|
|
|
|
2019-12-13 06:05:24 -05:00
|
|
|
void win_insert_last_read_position_marker(ProfWin *window, char* id);
|
|
|
|
void win_remove_entry_message(ProfWin *window, const char *const id);
|
|
|
|
|
2012-11-25 18:29:02 -05:00
|
|
|
#endif
|