2 * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 extern int body_lines;
23 extern struct kmap global_map, minibuffer_map, *current_map, *base_map;
28 struct vline *current_line;
29 struct vline *top_line;
81 PPATCH_HUNK_HDR_TRAIL,
107 PDOWNLOAD_DONE_TRAIL,
111 PDOWNLOAD_INFO_TRAIL,
124 extern struct thiskey thiskey;
126 extern struct tab *current_tab;
128 extern struct buffer helpwin;
129 extern int help_lines, help_cols;
131 extern struct buffer downloadwin;
132 extern int download_lines;
133 extern int download_cols;
135 void get_scroll_position(struct tab *, size_t *, size_t *);
136 void save_excursion(struct excursion *, struct buffer *);
137 void restore_excursion(struct excursion *, struct buffer *);
138 void global_key_unbound(void);
139 struct buffer *current_buffer(void);
140 struct vline *adjust_line(struct vline *, struct buffer *);
141 void start_loading_anim(struct tab *);
144 void ui_main_loop(void);
145 void ui_on_tab_loaded(struct tab *);
146 void ui_on_tab_refresh(struct tab *);
147 void ui_force_tab_refresh(struct tab *);
148 void ui_on_download_refresh(void);
149 void ui_prompt_download_cmd(struct download *);
150 void ui_remotely_open_link(const char *);
151 const char *ui_keyname(int);
152 void ui_toggle_side_window(int);
153 void ui_show_downloads_pane(void);
154 void ui_schedule_redraw(void);
155 void ui_after_message_hook(void);
156 void ui_require_input(struct tab *, int, void (*)(const char *));
157 void ui_yornp(const char *, void (*)(int, void *), void *);
158 void ui_read(const char *, void (*)(const char *, struct tab *), struct tab *, const char *);
159 void ui_other_window(void);
160 void ui_suspend(void);
161 void ui_resume(void);