Blame


1 5e11c00c 2021-03-02 op /*
2 5e11c00c 2021-03-02 op * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 5e11c00c 2021-03-02 op *
4 5e11c00c 2021-03-02 op * Permission to use, copy, modify, and distribute this software for any
5 5e11c00c 2021-03-02 op * purpose with or without fee is hereby granted, provided that the above
6 5e11c00c 2021-03-02 op * copyright notice and this permission notice appear in all copies.
7 5e11c00c 2021-03-02 op *
8 5e11c00c 2021-03-02 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 5e11c00c 2021-03-02 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 5e11c00c 2021-03-02 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 5e11c00c 2021-03-02 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 5e11c00c 2021-03-02 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 5e11c00c 2021-03-02 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 5e11c00c 2021-03-02 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 5e11c00c 2021-03-02 op */
16 5e11c00c 2021-03-02 op
17 1d08c280 2021-03-06 op /*
18 1d08c280 2021-03-06 op * Ncurses UI for telescope.
19 1d08c280 2021-03-06 op *
20 1d08c280 2021-03-06 op * Text scrolling
21 1d08c280 2021-03-06 op * ==============
22 1d08c280 2021-03-06 op *
23 1d08c280 2021-03-06 op * ncurses allows you to scroll a window, but when a line goes out of
24 1d08c280 2021-03-06 op * the visible area it's forgotten. We keep a list of formatted lines
25 1d08c280 2021-03-06 op * (``visual lines'') that we know fits in the window, and draw them.
26 1d08c280 2021-03-06 op *
27 1d08c280 2021-03-06 op * This means that on every resize we have to clear our list of lines
28 1d08c280 2021-03-06 op * and re-render everything. A clever approach would be to do this
29 970deec6 2021-04-24 op * ``on-demand'', but it's still missing.
30 1d08c280 2021-03-06 op *
31 1d08c280 2021-03-06 op */
32 786e6deb 2021-07-21 op
33 786e6deb 2021-07-21 op #include "compat.h"
34 1d08c280 2021-03-06 op
35 bddc7bbd 2021-04-01 op #include <assert.h>
36 5e11c00c 2021-03-02 op #include <curses.h>
37 5e11c00c 2021-03-02 op #include <locale.h>
38 5e11c00c 2021-03-02 op #include <signal.h>
39 7953dd72 2021-03-07 op #include <stdarg.h>
40 eb259e66 2021-03-02 op #include <stdlib.h>
41 eb259e66 2021-03-02 op #include <string.h>
42 f832146f 2021-03-09 op #include <unistd.h>
43 5e11c00c 2021-03-02 op
44 e659558c 2021-07-13 op #include "defaults.h"
45 d1a0f2a3 2021-07-12 op #include "minibuffer.h"
46 1fce2e75 2021-08-14 op #include "session.h"
47 d1a0f2a3 2021-07-12 op #include "telescope.h"
48 d1a0f2a3 2021-07-12 op #include "ui.h"
49 5caf7d67 2021-07-12 op #include "utf8.h"
50 d1a0f2a3 2021-07-12 op
51 5e11c00c 2021-03-02 op static struct event stdioev, winchev;
52 5e11c00c 2021-03-02 op
53 0a805b02 2021-07-01 op static void restore_curs_x(struct buffer *);
54 9ca15951 2021-03-09 op
55 8947c1f2 2021-03-21 op static int readkey(void);
56 5e11c00c 2021-03-02 op static void dispatch_stdio(int, short, void*);
57 5e11c00c 2021-03-02 op static void handle_resize(int, short, void*);
58 a8a482c8 2021-05-17 op static void handle_resize_nodelay(int, short, void*);
59 32c6c75e 2021-07-15 op static void rearrange_windows(void);
60 6ca7e1b6 2021-07-16 op static void line_prefix_and_text(struct vline *, char *, size_t, const char **, const char **);
61 f3bcf8f2 2021-06-21 op static void print_vline(int, int, WINDOW*, struct vline*);
62 8af5e5ed 2021-03-08 op static void redraw_tabline(void);
63 0aef305d 2022-01-10 op static void redraw_window(WINDOW *, int, int, int, int, struct buffer *);
64 3b5f459e 2021-11-05 op static void redraw_download(void);
65 bddc7bbd 2021-04-01 op static void redraw_help(void);
66 e19f9a04 2021-03-11 op static void redraw_body(struct tab*);
67 8af5e5ed 2021-03-08 op static void redraw_modeline(struct tab*);
68 e9af06b9 2021-07-12 op static void redraw_minibuffer(void);
69 e9af06b9 2021-07-12 op static void do_redraw_echoarea(void);
70 e9af06b9 2021-07-12 op static void do_redraw_minibuffer(void);
71 b1e1e41a 2021-07-14 op static void do_redraw_minibuffer_compl(void);
72 55df859f 2021-07-12 op static void place_cursor(int);
73 5e11c00c 2021-03-02 op static void redraw_tab(struct tab*);
74 8af5e5ed 2021-03-08 op static void update_loading_anim(int, short, void*);
75 8af5e5ed 2021-03-08 op static void stop_loading_anim(struct tab*);
76 2ddbda6b 2021-07-17 op
77 32c6c75e 2021-07-15 op static int should_rearrange_windows;
78 56168aa8 2021-08-18 op static int show_tab_bar;
79 23f22c83 2021-07-13 op static int too_small;
80 72b18268 2021-06-19 op static int x_offset;
81 72b18268 2021-06-19 op
82 83dce83d 2021-07-17 op struct thiskey thiskey;
83 83dce83d 2021-07-17 op struct tab *current_tab;
84 9ca15951 2021-03-09 op
85 831deb20 2021-05-12 op static struct event resizeev;
86 831deb20 2021-05-12 op static struct timeval resize_timer = { 0, 250000 };
87 831deb20 2021-05-12 op
88 e5a2797f 2021-07-13 op static WINDOW *tabline, *body, *modeline, *echoarea, *minibuffer;
89 48e9d457 2021-03-06 op
90 2b2d2872 2021-06-20 op int body_lines, body_cols;
91 2b2d2872 2021-06-20 op
92 bddc7bbd 2021-04-01 op static WINDOW *help;
93 de278567 2021-07-21 op /* not static so we can see them from help.c */
94 de278567 2021-07-21 op struct buffer helpwin;
95 de278567 2021-07-21 op int help_lines, help_cols;
96 bddc7bbd 2021-04-01 op
97 3b5f459e 2021-11-05 op static WINDOW *download;
98 3b5f459e 2021-11-05 op /* not static so we can see them from download.c */
99 3b5f459e 2021-11-05 op struct buffer downloadwin;
100 3b5f459e 2021-11-05 op int download_lines;
101 84892515 2021-11-27 op int download_cols;
102 3b5f459e 2021-11-05 op
103 bddc7bbd 2021-04-01 op static int side_window;
104 65340174 2021-07-21 op static int in_side_window;
105 bddc7bbd 2021-04-01 op
106 8af5e5ed 2021-03-08 op static struct timeval loadingev_timer = { 0, 250000 };
107 48e9d457 2021-03-06 op
108 7c7d7bb7 2021-03-10 op static char keybuf[64];
109 9ca15951 2021-03-09 op
110 78894e73 2021-08-12 op /* XXX: don't forget to init these in main() */
111 9ca15951 2021-03-09 op struct kmap global_map,
112 fa3fd864 2021-03-10 op minibuffer_map,
113 9ca15951 2021-03-09 op *current_map,
114 9ca15951 2021-03-09 op *base_map;
115 9ca15951 2021-03-09 op
116 72b18268 2021-06-19 op static inline void
117 923f9ce5 2021-06-21 op update_x_offset(void)
118 72b18268 2021-06-19 op {
119 72b18268 2021-06-19 op if (olivetti_mode && fill_column < body_cols)
120 72b18268 2021-06-19 op x_offset = (body_cols - fill_column)/2;
121 72b18268 2021-06-19 op else
122 72b18268 2021-06-19 op x_offset = 0;
123 72b18268 2021-06-19 op }
124 65d9b3ca 2021-03-14 op
125 98411855 2021-06-23 op void
126 98411855 2021-06-23 op save_excursion(struct excursion *place, struct buffer *buffer)
127 98411855 2021-06-23 op {
128 98411855 2021-06-23 op place->curs_x = buffer->curs_x;
129 98411855 2021-06-23 op place->curs_y = buffer->curs_y;
130 98411855 2021-06-23 op place->line_off = buffer->line_off;
131 ca783de6 2021-07-18 op place->top_line = buffer->top_line;
132 98411855 2021-06-23 op place->current_line = buffer->current_line;
133 98411855 2021-06-23 op place->cpoff = buffer->cpoff;
134 98411855 2021-06-23 op }
135 98411855 2021-06-23 op
136 98411855 2021-06-23 op void
137 98411855 2021-06-23 op restore_excursion(struct excursion *place, struct buffer *buffer)
138 98411855 2021-06-23 op {
139 98411855 2021-06-23 op buffer->curs_x = place->curs_x;
140 98411855 2021-06-23 op buffer->curs_y = place->curs_y;
141 98411855 2021-06-23 op buffer->line_off = place->line_off;
142 ca783de6 2021-07-18 op buffer->top_line = place->top_line;
143 98411855 2021-06-23 op buffer->current_line = place->current_line;
144 98411855 2021-06-23 op buffer->cpoff = place->cpoff;
145 1d08c280 2021-03-06 op }
146 1d08c280 2021-03-06 op
147 0a805b02 2021-07-01 op static void
148 0a805b02 2021-07-01 op restore_curs_x(struct buffer *buffer)
149 48e9d457 2021-03-06 op {
150 452589f7 2021-03-16 op struct vline *vl;
151 bd644709 2021-07-18 op const char *prfx, *text;
152 452589f7 2021-03-16 op
153 46f6e974 2021-05-17 op vl = buffer->current_line;
154 452589f7 2021-03-16 op if (vl == NULL || vl->line == NULL)
155 46f6e974 2021-05-17 op buffer->curs_x = buffer->cpoff = 0;
156 bd644709 2021-07-18 op else if (vl->parent->data != NULL) {
157 bd644709 2021-07-18 op text = vl->parent->data;
158 bd644709 2021-07-18 op buffer->curs_x = utf8_snwidth(text + 1, buffer->cpoff) + 1;
159 bd644709 2021-07-18 op } else
160 46f6e974 2021-05-17 op buffer->curs_x = utf8_snwidth(vl->line, buffer->cpoff);
161 452589f7 2021-03-16 op
162 3b5f459e 2021-11-05 op /* small hack: don't olivetti-mode the download pane */
163 3b5f459e 2021-11-05 op if (buffer != &downloadwin)
164 3b5f459e 2021-11-05 op buffer->curs_x += x_offset;
165 72b18268 2021-06-19 op
166 47aec13e 2021-07-17 op if (vl == NULL)
167 47aec13e 2021-07-17 op return;
168 47aec13e 2021-07-17 op
169 47aec13e 2021-07-17 op if (vl->parent->data != NULL)
170 002b074d 2021-08-14 op buffer->curs_x += utf8_swidth_between(vl->parent->line,
171 002b074d 2021-08-14 op vl->parent->data);
172 47aec13e 2021-07-17 op else {
173 452589f7 2021-03-16 op prfx = line_prefixes[vl->parent->type].prfx1;
174 46f6e974 2021-05-17 op buffer->curs_x += utf8_swidth(prfx);
175 2ba66cea 2021-03-22 op }
176 9ca15951 2021-03-09 op }
177 9ca15951 2021-03-09 op
178 d5bdf203 2021-07-08 op void
179 870210fb 2021-03-26 op global_key_unbound(void)
180 870210fb 2021-03-26 op {
181 870210fb 2021-03-26 op message("%s is undefined", keybuf);
182 870210fb 2021-03-26 op }
183 870210fb 2021-03-26 op
184 2b2d2872 2021-06-20 op struct buffer *
185 46f6e974 2021-05-17 op current_buffer(void)
186 2ba66cea 2021-03-22 op {
187 2ba66cea 2021-03-22 op if (in_minibuffer)
188 46f6e974 2021-05-17 op return &ministate.buffer;
189 3b5f459e 2021-11-05 op if (in_side_window & SIDE_WINDOW_LEFT)
190 65340174 2021-07-21 op return &helpwin;
191 3b5f459e 2021-11-05 op if (in_side_window & SIDE_WINDOW_BOTTOM)
192 3b5f459e 2021-11-05 op return &downloadwin;
193 83dce83d 2021-07-17 op return &current_tab->buffer;
194 2ba66cea 2021-03-22 op }
195 2ba66cea 2021-03-22 op
196 8947c1f2 2021-03-21 op static int
197 8947c1f2 2021-03-21 op readkey(void)
198 5e11c00c 2021-03-02 op {
199 8947c1f2 2021-03-21 op uint32_t state = 0;
200 19f1448e 2021-03-08 op
201 8947c1f2 2021-03-21 op if ((thiskey.key = wgetch(body)) == ERR)
202 8947c1f2 2021-03-21 op return 0;
203 5e11c00c 2021-03-02 op
204 3f66a33e 2021-12-01 op thiskey.meta = thiskey.key == '\e';
205 8947c1f2 2021-03-21 op if (thiskey.meta) {
206 9ca15951 2021-03-09 op thiskey.key = wgetch(body);
207 3f66a33e 2021-12-01 op if (thiskey.key == ERR || thiskey.key == '\e') {
208 c314a314 2021-03-11 op thiskey.meta = 0;
209 3f66a33e 2021-12-01 op thiskey.key = '\e';
210 c314a314 2021-03-11 op }
211 8947c1f2 2021-03-21 op }
212 8947c1f2 2021-03-21 op
213 8947c1f2 2021-03-21 op thiskey.cp = 0;
214 63ecae6d 2021-08-14 op
215 63ecae6d 2021-08-14 op if ((unsigned int)thiskey.key >= UINT8_MAX)
216 63ecae6d 2021-08-14 op return 1;
217 63ecae6d 2021-08-14 op
218 63ecae6d 2021-08-14 op while (1) {
219 63ecae6d 2021-08-14 op if (!utf8_decode(&state, &thiskey.cp, (uint8_t)thiskey.key))
220 63ecae6d 2021-08-14 op break;
221 63ecae6d 2021-08-14 op if ((thiskey.key = wgetch(body)) == ERR) {
222 63ecae6d 2021-08-14 op message("Error decoding user input");
223 63ecae6d 2021-08-14 op return 0;
224 8947c1f2 2021-03-21 op }
225 8947c1f2 2021-03-21 op }
226 19f1448e 2021-03-08 op
227 8947c1f2 2021-03-21 op return 1;
228 8947c1f2 2021-03-21 op }
229 8947c1f2 2021-03-21 op
230 8947c1f2 2021-03-21 op static void
231 8947c1f2 2021-03-21 op dispatch_stdio(int fd, short ev, void *d)
232 8947c1f2 2021-03-21 op {
233 57668c86 2021-11-05 op int lk;
234 8947c1f2 2021-03-21 op const char *keyname;
235 8947c1f2 2021-03-21 op char tmp[5] = {0};
236 8947c1f2 2021-03-21 op
237 23f22c83 2021-07-13 op /* TODO: schedule a redraw? */
238 23f22c83 2021-07-13 op if (too_small)
239 23f22c83 2021-07-13 op return;
240 23f22c83 2021-07-13 op
241 8947c1f2 2021-03-21 op if (!readkey())
242 8947c1f2 2021-03-21 op return;
243 8947c1f2 2021-03-21 op
244 7c7d7bb7 2021-03-10 op if (keybuf[0] != '\0')
245 7c7d7bb7 2021-03-10 op strlcat(keybuf, " ", sizeof(keybuf));
246 7c7d7bb7 2021-03-10 op if (thiskey.meta)
247 7c7d7bb7 2021-03-10 op strlcat(keybuf, "M-", sizeof(keybuf));
248 8947c1f2 2021-03-21 op if (thiskey.cp != 0) {
249 8947c1f2 2021-03-21 op utf8_encode(thiskey.cp, tmp);
250 7c7d7bb7 2021-03-10 op strlcat(keybuf, tmp, sizeof(keybuf));
251 af29d739 2021-07-13 op } else if ((keyname = unkbd(thiskey.key)) != NULL) {
252 af29d739 2021-07-13 op strlcat(keybuf, keyname, sizeof(keybuf));
253 8947c1f2 2021-03-21 op } else {
254 af29d739 2021-07-13 op tmp[0] = thiskey.key;
255 af29d739 2021-07-13 op strlcat(keybuf, tmp, sizeof(keybuf));
256 7c7d7bb7 2021-03-10 op }
257 7c7d7bb7 2021-03-10 op
258 57668c86 2021-11-05 op lk = lookup_key(&current_map, &thiskey, current_buffer());
259 57668c86 2021-11-05 op if (lk == LK_UNBOUND) {
260 57668c86 2021-11-05 op if (current_map->unhandled_input != NULL)
261 57668c86 2021-11-05 op current_map->unhandled_input();
262 57668c86 2021-11-05 op else
263 57668c86 2021-11-05 op global_key_unbound();
264 eb259e66 2021-03-02 op }
265 57668c86 2021-11-05 op if (lk != LK_ADVANCED_MAP) {
266 57668c86 2021-11-05 op current_map = base_map;
267 57668c86 2021-11-05 op strlcpy(keybuf, "", sizeof(keybuf));
268 57668c86 2021-11-05 op }
269 1d08c280 2021-03-06 op
270 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT)
271 bddc7bbd 2021-04-01 op recompute_help();
272 bddc7bbd 2021-04-01 op
273 32c6c75e 2021-07-15 op if (should_rearrange_windows)
274 32c6c75e 2021-07-15 op rearrange_windows();
275 83dce83d 2021-07-17 op redraw_tab(current_tab);
276 a6d450c1 2021-03-06 op }
277 48e9d457 2021-03-06 op
278 a6d450c1 2021-03-06 op static void
279 5e11c00c 2021-03-02 op handle_resize(int sig, short ev, void *d)
280 831deb20 2021-05-12 op {
281 831deb20 2021-05-12 op if (event_pending(&resizeev, EV_TIMEOUT, NULL)) {
282 831deb20 2021-05-12 op event_del(&resizeev);
283 831deb20 2021-05-12 op }
284 a8a482c8 2021-05-17 op evtimer_set(&resizeev, handle_resize_nodelay, NULL);
285 831deb20 2021-05-12 op evtimer_add(&resizeev, &resize_timer);
286 831deb20 2021-05-12 op }
287 831deb20 2021-05-12 op
288 831deb20 2021-05-12 op static void
289 a8a482c8 2021-05-17 op handle_resize_nodelay(int s, short ev, void *d)
290 5e11c00c 2021-03-02 op {
291 5e11c00c 2021-03-02 op endwin();
292 5e11c00c 2021-03-02 op refresh();
293 5e11c00c 2021-03-02 op clear();
294 32c6c75e 2021-07-15 op
295 32c6c75e 2021-07-15 op rearrange_windows();
296 32c6c75e 2021-07-15 op }
297 32c6c75e 2021-07-15 op
298 56168aa8 2021-08-18 op static inline int
299 56168aa8 2021-08-18 op should_show_tab_bar(void)
300 56168aa8 2021-08-18 op {
301 56168aa8 2021-08-18 op if (tab_bar_show == -1)
302 56168aa8 2021-08-18 op return 0;
303 56168aa8 2021-08-18 op if (tab_bar_show == 0)
304 56168aa8 2021-08-18 op return 1;
305 56168aa8 2021-08-18 op
306 56168aa8 2021-08-18 op return TAILQ_NEXT(TAILQ_FIRST(&tabshead), tabs) != NULL;
307 56168aa8 2021-08-18 op }
308 56168aa8 2021-08-18 op
309 32c6c75e 2021-07-15 op static void
310 32c6c75e 2021-07-15 op rearrange_windows(void)
311 32c6c75e 2021-07-15 op {
312 32c6c75e 2021-07-15 op int lines;
313 3b5f459e 2021-11-05 op int minibuffer_lines;
314 5e11c00c 2021-03-02 op
315 32c6c75e 2021-07-15 op should_rearrange_windows = 0;
316 56168aa8 2021-08-18 op show_tab_bar = should_show_tab_bar();
317 32c6c75e 2021-07-15 op
318 b3884fbe 2021-07-13 op lines = LINES;
319 b3884fbe 2021-07-13 op
320 8b0779d1 2021-11-05 op /* 3 lines for the ui and 12 for the */
321 23f22c83 2021-07-13 op if ((too_small = lines < 15)) {
322 23f22c83 2021-07-13 op erase();
323 23f22c83 2021-07-13 op printw("Window too small.");
324 23f22c83 2021-07-13 op refresh();
325 23f22c83 2021-07-13 op return;
326 23f22c83 2021-07-13 op }
327 23f22c83 2021-07-13 op
328 48e9d457 2021-03-06 op /* move and resize the windows, in reverse order! */
329 48e9d457 2021-03-06 op
330 b1e1e41a 2021-07-14 op if (in_minibuffer == MB_COMPREAD) {
331 3b5f459e 2021-11-05 op minibuffer_lines = MIN(10, lines/2);
332 3b5f459e 2021-11-05 op mvwin(minibuffer, lines - minibuffer_lines, 0);
333 3b5f459e 2021-11-05 op wresize(minibuffer, minibuffer_lines, COLS);
334 3b5f459e 2021-11-05 op lines -= minibuffer_lines;
335 b1e1e41a 2021-07-14 op
336 b1e1e41a 2021-07-14 op wrap_page(&ministate.compl.buffer, COLS);
337 b1e1e41a 2021-07-14 op }
338 b1e1e41a 2021-07-14 op
339 b3884fbe 2021-07-13 op mvwin(echoarea, --lines, 0);
340 8a7f2683 2021-07-10 op wresize(echoarea, 1, COLS);
341 48e9d457 2021-03-06 op
342 b3884fbe 2021-07-13 op mvwin(modeline, --lines, 0);
343 48e9d457 2021-03-06 op wresize(modeline, 1, COLS);
344 48e9d457 2021-03-06 op
345 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM) {
346 3b5f459e 2021-11-05 op download_lines = MIN(5, lines/2);
347 84892515 2021-11-27 op download_cols = COLS;
348 3b5f459e 2021-11-05 op mvwin(download, lines - download_lines, 0);
349 84892515 2021-11-27 op wresize(download, download_lines, download_cols);
350 3b5f459e 2021-11-05 op lines -= download_lines;
351 3b5f459e 2021-11-05 op
352 84892515 2021-11-27 op wrap_page(&downloadwin, download_cols);
353 3b5f459e 2021-11-05 op }
354 3b5f459e 2021-11-05 op
355 56168aa8 2021-08-18 op body_lines = show_tab_bar ? --lines : lines;
356 bd9637e9 2021-03-06 op body_cols = COLS;
357 bddc7bbd 2021-04-01 op
358 56168aa8 2021-08-18 op /*
359 56168aa8 2021-08-18 op * Here we make the assumption that show_tab_bar is either 0
360 56168aa8 2021-08-18 op * or 1, and reuse that as argument to mvwin.
361 56168aa8 2021-08-18 op */
362 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT) {
363 bddc7bbd 2021-04-01 op help_cols = 0.3 * COLS;
364 b3884fbe 2021-07-13 op help_lines = lines;
365 56168aa8 2021-08-18 op mvwin(help, show_tab_bar, 0);
366 bddc7bbd 2021-04-01 op wresize(help, help_lines, help_cols);
367 48e9d457 2021-03-06 op
368 bddc7bbd 2021-04-01 op wrap_page(&helpwin, help_cols);
369 bddc7bbd 2021-04-01 op
370 bddc7bbd 2021-04-01 op body_cols = COLS - help_cols - 1;
371 56168aa8 2021-08-18 op mvwin(body, show_tab_bar, help_cols);
372 bddc7bbd 2021-04-01 op } else
373 56168aa8 2021-08-18 op mvwin(body, show_tab_bar, 0);
374 bddc7bbd 2021-04-01 op
375 72b18268 2021-06-19 op update_x_offset();
376 bddc7bbd 2021-04-01 op wresize(body, body_lines, body_cols);
377 bddc7bbd 2021-04-01 op
378 56168aa8 2021-08-18 op if (show_tab_bar)
379 56168aa8 2021-08-18 op wresize(tabline, 1, COLS);
380 48e9d457 2021-03-06 op
381 83dce83d 2021-07-17 op wrap_page(&current_tab->buffer, body_cols);
382 83dce83d 2021-07-17 op redraw_tab(current_tab);
383 eb259e66 2021-03-02 op }
384 94ec38e8 2021-06-29 op
385 6ca7e1b6 2021-07-16 op static void
386 6ca7e1b6 2021-07-16 op line_prefix_and_text(struct vline *vl, char *buf, size_t len,
387 6ca7e1b6 2021-07-16 op const char **prfx_ret, const char **text_ret)
388 6ca7e1b6 2021-07-16 op {
389 6ca7e1b6 2021-07-16 op int type, i, cont, width;
390 6ca7e1b6 2021-07-16 op char *space, *t;
391 6ca7e1b6 2021-07-16 op
392 6ca7e1b6 2021-07-16 op if ((*text_ret = vl->line) == NULL)
393 6ca7e1b6 2021-07-16 op *text_ret = "";
394 6ca7e1b6 2021-07-16 op
395 6ca7e1b6 2021-07-16 op cont = vl->flags & L_CONTINUATION;
396 6ca7e1b6 2021-07-16 op type = vl->parent->type;
397 55b0b036 2021-07-16 op if (!cont)
398 6ca7e1b6 2021-07-16 op *prfx_ret = line_prefixes[type].prfx1;
399 6ca7e1b6 2021-07-16 op else
400 6ca7e1b6 2021-07-16 op *prfx_ret = line_prefixes[type].prfx2;
401 6ca7e1b6 2021-07-16 op
402 6ca7e1b6 2021-07-16 op space = vl->parent->data;
403 6ca7e1b6 2021-07-16 op if (!emojify_link || type != LINE_LINK || space == NULL)
404 6ca7e1b6 2021-07-16 op return;
405 5e11c00c 2021-03-02 op
406 6ca7e1b6 2021-07-16 op if (cont) {
407 6ca7e1b6 2021-07-16 op memset(buf, 0, len);
408 6ca7e1b6 2021-07-16 op width = utf8_swidth_between(vl->parent->line, space);
409 6ca7e1b6 2021-07-16 op for (i = 0; i < width + 1; ++i)
410 6ca7e1b6 2021-07-16 op strlcat(buf, " ", len);
411 6ca7e1b6 2021-07-16 op } else {
412 6ca7e1b6 2021-07-16 op strlcpy(buf, *text_ret, len);
413 6ca7e1b6 2021-07-16 op if ((t = strchr(buf, ' ')) != NULL)
414 6ca7e1b6 2021-07-16 op *t = '\0';
415 6ca7e1b6 2021-07-16 op strlcat(buf, " ", len);
416 6ca7e1b6 2021-07-16 op
417 6ca7e1b6 2021-07-16 op /* skip the emoji */
418 95a8c791 2021-08-26 op *text_ret += (space - vl->parent->line) + 1;
419 6ca7e1b6 2021-07-16 op }
420 6ca7e1b6 2021-07-16 op
421 6ca7e1b6 2021-07-16 op *prfx_ret = buf;
422 6ca7e1b6 2021-07-16 op }
423 b3be07ea 2021-07-18 op
424 b3be07ea 2021-07-18 op static inline void
425 b3be07ea 2021-07-18 op print_vline_descr(int width, WINDOW *window, struct vline *vl)
426 b3be07ea 2021-07-18 op {
427 b3be07ea 2021-07-18 op int x, y, goal;
428 b3be07ea 2021-07-18 op
429 1577540c 2021-11-05 op switch (vl->parent->type) {
430 b8899faf 2021-11-05 op case LINE_COMPL:
431 b8899faf 2021-11-05 op case LINE_COMPL_CURRENT:
432 a7ce8d61 2021-11-05 op goal = width/2;
433 a7ce8d61 2021-11-05 op break;
434 1577540c 2021-11-05 op case LINE_DOWNLOAD:
435 1577540c 2021-11-05 op case LINE_DOWNLOAD_DONE:
436 a7ce8d61 2021-11-05 op goal = width/4;
437 455b4545 2021-11-05 op break;
438 455b4545 2021-11-05 op case LINE_HELP:
439 1577540c 2021-11-05 op goal = 8;
440 1577540c 2021-11-05 op break;
441 1577540c 2021-11-05 op default:
442 b8899faf 2021-11-05 op return;
443 1577540c 2021-11-05 op }
444 b8899faf 2021-11-05 op
445 b8899faf 2021-11-05 op if (vl->parent->alt == NULL)
446 b8899faf 2021-11-05 op return;
447 b8899faf 2021-11-05 op
448 b8899faf 2021-11-05 op (void)y;
449 b8899faf 2021-11-05 op getyx(window, y, x);
450 c6be26e4 2021-07-21 op
451 b3be07ea 2021-07-18 op if (goal <= x)
452 b3be07ea 2021-07-18 op wprintw(window, " ");
453 b3be07ea 2021-07-18 op for (; goal > x; ++x)
454 b3be07ea 2021-07-18 op wprintw(window, " ");
455 b3be07ea 2021-07-18 op
456 b3be07ea 2021-07-18 op wprintw(window, "%s", vl->parent->alt);
457 b3be07ea 2021-07-18 op }
458 b3be07ea 2021-07-18 op
459 fbadd395 2021-07-16 op /*
460 fbadd395 2021-07-16 op * Core part of the rendering. It prints a vline starting from the
461 fbadd395 2021-07-16 op * current cursor position. Printing a vline consists of skipping
462 fbadd395 2021-07-16 op * `off' columns (for olivetti-mode), print the correct prefix (which
463 fbadd395 2021-07-16 op * may be the emoji in case of emojified links-lines), printing the
464 fbadd395 2021-07-16 op * text itself, filling until width - off and filling off columns
465 fbadd395 2021-07-16 op * again.
466 fbadd395 2021-07-16 op */
467 754622a2 2021-03-15 op static void
468 f3bcf8f2 2021-06-21 op print_vline(int off, int width, WINDOW *window, struct vline *vl)
469 1d08c280 2021-03-06 op {
470 fbadd395 2021-07-16 op /*
471 fbadd395 2021-07-16 op * Believe me or not, I've seen emoji ten code points long!
472 fbadd395 2021-07-16 op * That means, to stay large, 4*10 bytes + NUL.
473 fbadd395 2021-07-16 op */
474 fbadd395 2021-07-16 op char emojibuf[41] = {0};
475 fbadd395 2021-07-16 op const char *text, *prfx;
476 2af29222 2021-06-24 op struct line_face *f;
477 6ca7e1b6 2021-07-16 op int i, left, x, y;
478 bd9637e9 2021-03-06 op
479 2af29222 2021-06-24 op f = &line_faces[vl->parent->type];
480 2af29222 2021-06-24 op
481 d89b86d6 2021-06-21 op /* unused, set by getyx */
482 f3bcf8f2 2021-06-21 op (void)y;
483 f3bcf8f2 2021-06-21 op
484 28cfdf8f 2022-01-10 op if (vl->parent->type == LINE_FRINGE && fringe_ignore_offset)
485 28cfdf8f 2022-01-10 op off = 0;
486 28cfdf8f 2022-01-10 op
487 6ca7e1b6 2021-07-16 op line_prefix_and_text(vl, emojibuf, sizeof(emojibuf), &prfx, &text);
488 768db5bb 2021-03-12 op
489 ab47e7d4 2021-06-24 op wattr_on(window, body_face.left, NULL);
490 f3bcf8f2 2021-06-21 op for (i = 0; i < off; i++)
491 f3bcf8f2 2021-06-21 op waddch(window, ' ');
492 ab47e7d4 2021-06-24 op wattr_off(window, body_face.left, NULL);
493 ab47e7d4 2021-06-24 op
494 2af29222 2021-06-24 op wattr_on(window, f->prefix, NULL);
495 6ca7e1b6 2021-07-16 op wprintw(window, "%s", prfx);
496 2af29222 2021-06-24 op wattr_off(window, f->prefix, NULL);
497 803ff456 2021-03-17 op
498 2af29222 2021-06-24 op wattr_on(window, f->text, NULL);
499 6ca7e1b6 2021-07-16 op wprintw(window, "%s", text);
500 b3be07ea 2021-07-18 op print_vline_descr(width, window, vl);
501 2af29222 2021-06-24 op wattr_off(window, f->text, NULL);
502 f3bcf8f2 2021-06-21 op
503 f3bcf8f2 2021-06-21 op getyx(window, y, x);
504 f3bcf8f2 2021-06-21 op
505 f3bcf8f2 2021-06-21 op left = width - x;
506 f3bcf8f2 2021-06-21 op
507 2af29222 2021-06-24 op wattr_on(window, f->trail, NULL);
508 04d32eda 2021-07-08 op for (i = 0; i < left - off; ++i)
509 f3bcf8f2 2021-06-21 op waddch(window, ' ');
510 2af29222 2021-06-24 op wattr_off(window, f->trail, NULL);
511 160abe04 2021-06-21 op
512 ab47e7d4 2021-06-24 op wattr_on(window, body_face.right, NULL);
513 160abe04 2021-06-21 op for (i = 0; i < off; i++)
514 160abe04 2021-06-21 op waddch(window, ' ');
515 ab47e7d4 2021-06-24 op wattr_off(window, body_face.right, NULL);
516 f3bcf8f2 2021-06-21 op
517 1d08c280 2021-03-06 op }
518 1d08c280 2021-03-06 op
519 1d08c280 2021-03-06 op static void
520 8af5e5ed 2021-03-08 op redraw_tabline(void)
521 8af5e5ed 2021-03-08 op {
522 7c7d7bb7 2021-03-10 op struct tab *tab;
523 8f127baa 2021-04-22 op size_t toskip, ots, tabwidth, space, x;
524 ce6d5335 2021-07-16 op int current, y, truncated, pair;
525 dc5df781 2021-03-13 op const char *title;
526 119f393c 2021-03-16 op char buf[25];
527 7c7d7bb7 2021-03-10 op
528 923f9ce5 2021-06-21 op x = 0;
529 923f9ce5 2021-06-21 op
530 923f9ce5 2021-06-21 op /* unused, but setted by a getyx */
531 923f9ce5 2021-06-21 op (void)y;
532 923f9ce5 2021-06-21 op
533 8f127baa 2021-04-22 op tabwidth = sizeof(buf)+1;
534 8f127baa 2021-04-22 op space = COLS-2;
535 8f127baa 2021-04-22 op
536 a636f50e 2021-03-16 op toskip = 0;
537 a636f50e 2021-03-16 op TAILQ_FOREACH(tab, &tabshead, tabs) {
538 a636f50e 2021-03-16 op toskip++;
539 83dce83d 2021-07-17 op if (tab == current_tab)
540 a636f50e 2021-03-16 op break;
541 a636f50e 2021-03-16 op }
542 8f127baa 2021-04-22 op
543 aa8228f3 2022-01-04 op if (toskip * tabwidth <= space)
544 8f127baa 2021-04-22 op toskip = 0;
545 8f127baa 2021-04-22 op else {
546 8f127baa 2021-04-22 op ots = toskip;
547 a636f50e 2021-03-16 op toskip--;
548 95a8c791 2021-08-26 op while (toskip != 0 &&
549 8f127baa 2021-04-22 op (ots - toskip+1) * tabwidth < space)
550 8f127baa 2021-04-22 op toskip--;
551 8f127baa 2021-04-22 op }
552 7c7d7bb7 2021-03-10 op
553 a636f50e 2021-03-16 op werase(tabline);
554 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.background, NULL);
555 a636f50e 2021-03-16 op wprintw(tabline, toskip == 0 ? " " : "<");
556 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.background, NULL);
557 a636f50e 2021-03-16 op
558 a636f50e 2021-03-16 op truncated = 0;
559 7c7d7bb7 2021-03-10 op TAILQ_FOREACH(tab, &tabshead, tabs) {
560 a636f50e 2021-03-16 op if (truncated)
561 a636f50e 2021-03-16 op break;
562 a636f50e 2021-03-16 op if (toskip != 0) {
563 a636f50e 2021-03-16 op toskip--;
564 a636f50e 2021-03-16 op continue;
565 a636f50e 2021-03-16 op }
566 a636f50e 2021-03-16 op
567 a636f50e 2021-03-16 op getyx(tabline, y, x);
568 a636f50e 2021-03-16 op if (x + sizeof(buf)+2 >= (size_t)COLS)
569 a636f50e 2021-03-16 op truncated = 1;
570 a636f50e 2021-03-16 op
571 83dce83d 2021-07-17 op current = tab == current_tab;
572 a329982b 2021-03-11 op
573 46f6e974 2021-05-17 op if (*(title = tab->buffer.page.title) == '\0')
574 2051e653 2021-03-13 op title = tab->hist_cur->h;
575 dc5df781 2021-03-13 op
576 e8a76665 2021-05-12 op if (tab->flags & TAB_URGENT)
577 e8a76665 2021-05-12 op strlcpy(buf, "!", sizeof(buf));
578 e8a76665 2021-05-12 op else
579 e8a76665 2021-05-12 op strlcpy(buf, " ", sizeof(buf));
580 e8a76665 2021-05-12 op
581 95a8c791 2021-08-26 op if (strlcat(buf, title, sizeof(buf)) >= sizeof(buf)) {
582 119f393c 2021-03-16 op /* truncation happens */
583 119f393c 2021-03-16 op strlcpy(&buf[sizeof(buf)-4], "...", 4);
584 119f393c 2021-03-16 op } else {
585 119f393c 2021-03-16 op /* pad with spaces */
586 119f393c 2021-03-16 op while (strlcat(buf, " ", sizeof(buf)) < sizeof(buf))
587 119f393c 2021-03-16 op /* nop */ ;
588 119f393c 2021-03-16 op }
589 119f393c 2021-03-16 op
590 ce6d5335 2021-07-16 op pair = current ? tab_face.current : tab_face.tab;
591 ce6d5335 2021-07-16 op wattr_on(tabline, pair, NULL);
592 119f393c 2021-03-16 op wprintw(tabline, "%s", buf);
593 ce6d5335 2021-07-16 op wattr_off(tabline, pair, NULL);
594 ce6d5335 2021-07-16 op
595 ce6d5335 2021-07-16 op wattr_on(tabline, tab_face.background, NULL);
596 119f393c 2021-03-16 op if (TAILQ_NEXT(tab, tabs) != NULL)
597 05bc942e 2021-07-23 op wprintw(tabline, "┃");
598 ce6d5335 2021-07-16 op wattr_off(tabline, tab_face.background, NULL);
599 7c7d7bb7 2021-03-10 op }
600 119f393c 2021-03-16 op
601 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.background, NULL);
602 8f127baa 2021-04-22 op for (; x < (size_t)COLS; ++x)
603 119f393c 2021-03-16 op waddch(tabline, ' ');
604 a636f50e 2021-03-16 op if (truncated)
605 a636f50e 2021-03-16 op mvwprintw(tabline, 0, COLS-1, ">");
606 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.background, NULL);
607 10346511 2021-03-17 op }
608 77dd24f4 2021-07-05 op
609 77dd24f4 2021-07-05 op /*
610 77dd24f4 2021-07-05 op * Compute the first visible line around vl. Try to search forward
611 77dd24f4 2021-07-05 op * until the end of the buffer; if a visible line is not found, search
612 77dd24f4 2021-07-05 op * backward. Return NULL if no viable line was found.
613 77dd24f4 2021-07-05 op */
614 e7b982f4 2021-07-14 op struct vline *
615 77dd24f4 2021-07-05 op adjust_line(struct vline *vl, struct buffer *buffer)
616 77dd24f4 2021-07-05 op {
617 77dd24f4 2021-07-05 op struct vline *t;
618 10346511 2021-03-17 op
619 b1e1e41a 2021-07-14 op if (vl == NULL)
620 b1e1e41a 2021-07-14 op return NULL;
621 b1e1e41a 2021-07-14 op
622 77dd24f4 2021-07-05 op if (!(vl->parent->flags & L_HIDDEN))
623 77dd24f4 2021-07-05 op return vl;
624 77dd24f4 2021-07-05 op
625 77dd24f4 2021-07-05 op /* search forward */
626 77dd24f4 2021-07-05 op for (t = vl;
627 77dd24f4 2021-07-05 op t != NULL && t->parent->flags & L_HIDDEN;
628 77dd24f4 2021-07-05 op t = TAILQ_NEXT(t, vlines))
629 77dd24f4 2021-07-05 op ; /* nop */
630 77dd24f4 2021-07-05 op
631 77dd24f4 2021-07-05 op if (t != NULL)
632 77dd24f4 2021-07-05 op return t;
633 77dd24f4 2021-07-05 op
634 77dd24f4 2021-07-05 op /* search backward */
635 77dd24f4 2021-07-05 op for (t = vl;
636 77dd24f4 2021-07-05 op t != NULL && t->parent->flags & L_HIDDEN;
637 77dd24f4 2021-07-05 op t = TAILQ_PREV(t, vhead, vlines))
638 77dd24f4 2021-07-05 op ; /* nop */
639 77dd24f4 2021-07-05 op
640 77dd24f4 2021-07-05 op return t;
641 77dd24f4 2021-07-05 op }
642 77dd24f4 2021-07-05 op
643 bddc7bbd 2021-04-01 op static void
644 002b074d 2021-08-14 op redraw_window(WINDOW *win, int off, int height, int width,
645 0aef305d 2022-01-10 op int show_fringe, struct buffer *buffer)
646 bddc7bbd 2021-04-01 op {
647 1a8f0d27 2021-07-20 op struct vline *vl;
648 0aef305d 2022-01-10 op int onscreen = 0, l = 0;
649 13e8b82f 2021-07-01 op
650 0a805b02 2021-07-01 op restore_curs_x(buffer);
651 a00b4c97 2021-06-20 op
652 a00b4c97 2021-06-20 op /*
653 0a805b02 2021-07-01 op * TODO: ignoring buffer->force_update and always
654 0a805b02 2021-07-01 op * re-rendering. In theory we can recompute the y position
655 0a805b02 2021-07-01 op * without a re-render, and optimize here. It's not the only
656 0a805b02 2021-07-01 op * optimisation possible here, wscrl wolud also be an
657 0a805b02 2021-07-01 op * interesting one.
658 a00b4c97 2021-06-20 op */
659 bddc7bbd 2021-04-01 op
660 2bfa414d 2021-07-01 op again:
661 bddc7bbd 2021-04-01 op werase(win);
662 2bfa414d 2021-07-01 op buffer->curs_y = 0;
663 a00b4c97 2021-06-20 op
664 46f6e974 2021-05-17 op if (TAILQ_EMPTY(&buffer->head))
665 77dd24f4 2021-07-05 op goto end;
666 77dd24f4 2021-07-05 op
667 b1e1e41a 2021-07-14 op if (buffer->top_line == NULL)
668 b1e1e41a 2021-07-14 op buffer->top_line = TAILQ_FIRST(&buffer->head);
669 b1e1e41a 2021-07-14 op
670 77dd24f4 2021-07-05 op buffer->top_line = adjust_line(buffer->top_line, buffer);
671 77dd24f4 2021-07-05 op if (buffer->top_line == NULL)
672 a00b4c97 2021-06-20 op goto end;
673 bddc7bbd 2021-04-01 op
674 77dd24f4 2021-07-05 op buffer->current_line = adjust_line(buffer->current_line, buffer);
675 77dd24f4 2021-07-05 op
676 94ec38e8 2021-06-29 op for (vl = buffer->top_line; vl != NULL; vl = TAILQ_NEXT(vl, vlines)) {
677 963c680c 2021-07-05 op if (vl->parent->flags & L_HIDDEN)
678 963c680c 2021-07-05 op continue;
679 963c680c 2021-07-05 op
680 f3bcf8f2 2021-06-21 op wmove(win, l, 0);
681 ec9aa106 2021-07-14 op print_vline(off, width, win, vl);
682 2bfa414d 2021-07-01 op
683 2bfa414d 2021-07-01 op if (vl == buffer->current_line)
684 2bfa414d 2021-07-01 op onscreen = 1;
685 2bfa414d 2021-07-01 op
686 2bfa414d 2021-07-01 op if (!onscreen)
687 2bfa414d 2021-07-01 op buffer->curs_y++;
688 2bfa414d 2021-07-01 op
689 bddc7bbd 2021-04-01 op l++;
690 bddc7bbd 2021-04-01 op if (l == height)
691 bddc7bbd 2021-04-01 op break;
692 2bfa414d 2021-07-01 op }
693 2bfa414d 2021-07-01 op
694 2bfa414d 2021-07-01 op if (!onscreen) {
695 2bfa414d 2021-07-01 op for (; vl != NULL; vl = TAILQ_NEXT(vl, vlines)) {
696 2bfa414d 2021-07-01 op if (vl == buffer->current_line)
697 2bfa414d 2021-07-01 op break;
698 963c680c 2021-07-05 op if (vl->parent->flags & L_HIDDEN)
699 963c680c 2021-07-05 op continue;
700 2bfa414d 2021-07-01 op buffer->line_off++;
701 2bfa414d 2021-07-01 op buffer->top_line = TAILQ_NEXT(buffer->top_line, vlines);
702 2bfa414d 2021-07-01 op }
703 2bfa414d 2021-07-01 op
704 e7b982f4 2021-07-14 op if (vl != NULL)
705 e7b982f4 2021-07-14 op goto again;
706 bddc7bbd 2021-04-01 op }
707 bddc7bbd 2021-04-01 op
708 2bfa414d 2021-07-01 op buffer->last_line_off = buffer->line_off;
709 2bfa414d 2021-07-01 op buffer->force_redraw = 0;
710 a00b4c97 2021-06-20 op end:
711 0aef305d 2022-01-10 op for (; show_fringe && l < height; l++)
712 28cfdf8f 2022-01-10 op print_vline(off, width, win, &fringe);
713 0aef305d 2022-01-10 op
714 46f6e974 2021-05-17 op wmove(win, buffer->curs_y, buffer->curs_x);
715 3b5f459e 2021-11-05 op }
716 3b5f459e 2021-11-05 op
717 3b5f459e 2021-11-05 op static void
718 3b5f459e 2021-11-05 op redraw_download(void)
719 3b5f459e 2021-11-05 op {
720 0aef305d 2022-01-10 op redraw_window(download, 0, download_lines, COLS, 0, &downloadwin);
721 bddc7bbd 2021-04-01 op }
722 bddc7bbd 2021-04-01 op
723 bddc7bbd 2021-04-01 op static void
724 bddc7bbd 2021-04-01 op redraw_help(void)
725 bddc7bbd 2021-04-01 op {
726 0aef305d 2022-01-10 op redraw_window(help, 0, help_lines, help_cols, 1, &helpwin);
727 bddc7bbd 2021-04-01 op }
728 bddc7bbd 2021-04-01 op
729 bddc7bbd 2021-04-01 op static void
730 bddc7bbd 2021-04-01 op redraw_body(struct tab *tab)
731 bddc7bbd 2021-04-01 op {
732 3323faaf 2021-06-21 op static struct tab *last_tab;
733 3323faaf 2021-06-21 op
734 3323faaf 2021-06-21 op if (last_tab != tab)
735 3323faaf 2021-06-21 op tab->buffer.force_redraw =1;
736 3323faaf 2021-06-21 op last_tab = tab;
737 3323faaf 2021-06-21 op
738 0aef305d 2022-01-10 op redraw_window(body, x_offset, body_lines, body_cols, 1, &tab->buffer);
739 bddc7bbd 2021-04-01 op }
740 bddc7bbd 2021-04-01 op
741 10346511 2021-03-17 op static inline char
742 10346511 2021-03-17 op trust_status_char(enum trust_state ts)
743 10346511 2021-03-17 op {
744 10346511 2021-03-17 op switch (ts) {
745 de278567 2021-07-21 op case TS_UNKNOWN: return '-';
746 10346511 2021-03-17 op case TS_UNTRUSTED: return '!';
747 a2fd3805 2021-07-06 op case TS_TEMP_TRUSTED: return '!';
748 10346511 2021-03-17 op case TS_TRUSTED: return 'v';
749 10346511 2021-03-17 op case TS_VERIFIED: return 'V';
750 923f9ce5 2021-06-21 op default: return 'X';
751 10346511 2021-03-17 op }
752 8af5e5ed 2021-03-08 op }
753 8af5e5ed 2021-03-08 op
754 8af5e5ed 2021-03-08 op static void
755 48e9d457 2021-03-06 op redraw_modeline(struct tab *tab)
756 1d08c280 2021-03-06 op {
757 65340174 2021-07-21 op struct buffer *buffer;
758 481340cc 2021-03-11 op double pct;
759 48e9d457 2021-03-06 op int x, y, max_x, max_y;
760 65340174 2021-07-21 op const char *mode;
761 8af5e5ed 2021-03-08 op const char *spin = "-\\|/";
762 1d08c280 2021-03-06 op
763 65340174 2021-07-21 op buffer = current_buffer();
764 65340174 2021-07-21 op mode = buffer->page.name;
765 65340174 2021-07-21 op
766 156f1501 2021-03-13 op werase(modeline);
767 ab47e7d4 2021-06-24 op wattr_on(modeline, modeline_face.background, NULL);
768 48e9d457 2021-03-06 op wmove(modeline, 0, 0);
769 1d08c280 2021-03-06 op
770 6fed00b0 2022-01-06 op wprintw(modeline, "-%c%c- %s ",
771 2ba66cea 2021-03-22 op spin[tab->loading_anim_step],
772 10346511 2021-03-17 op trust_status_char(tab->trust),
773 58c75fab 2021-03-16 op mode == NULL ? "(none)" : mode);
774 481340cc 2021-03-11 op
775 65340174 2021-07-21 op pct = (buffer->line_off + buffer->curs_y) * 100.0
776 65340174 2021-07-21 op / buffer->line_max;
777 65340174 2021-07-21 op
778 65340174 2021-07-21 op if (buffer->line_max <= (size_t)body_lines)
779 95a8c791 2021-08-26 op wprintw(modeline, "All ");
780 65340174 2021-07-21 op else if (buffer->line_off == 0)
781 95a8c791 2021-08-26 op wprintw(modeline, "Top ");
782 65340174 2021-07-21 op else if (buffer->line_off + body_lines >= buffer->line_max)
783 481340cc 2021-03-11 op wprintw(modeline, "Bottom ");
784 481340cc 2021-03-11 op else
785 481340cc 2021-03-11 op wprintw(modeline, "%.0f%% ", pct);
786 481340cc 2021-03-11 op
787 481340cc 2021-03-11 op wprintw(modeline, "%d/%d %s ",
788 65340174 2021-07-21 op buffer->line_off + buffer->curs_y,
789 65340174 2021-07-21 op buffer->line_max,
790 2051e653 2021-03-13 op tab->hist_cur->h);
791 481340cc 2021-03-11 op
792 48e9d457 2021-03-06 op getyx(modeline, y, x);
793 48e9d457 2021-03-06 op getmaxyx(modeline, max_y, max_x);
794 48e9d457 2021-03-06 op
795 48e9d457 2021-03-06 op (void)y;
796 48e9d457 2021-03-06 op (void)max_y;
797 48e9d457 2021-03-06 op
798 48e9d457 2021-03-06 op for (; x < max_x; ++x)
799 48e9d457 2021-03-06 op waddstr(modeline, "-");
800 d5493194 2021-06-15 op
801 ab47e7d4 2021-06-24 op wattr_off(modeline, modeline_face.background, NULL);
802 9ca15951 2021-03-09 op }
803 9ca15951 2021-03-09 op
804 9ca15951 2021-03-09 op static void
805 e9af06b9 2021-07-12 op redraw_minibuffer(void)
806 9ca15951 2021-03-09 op {
807 8a7f2683 2021-07-10 op wattr_on(echoarea, minibuffer_face.background, NULL);
808 8a7f2683 2021-07-10 op werase(echoarea);
809 17e5106b 2021-03-21 op
810 e9af06b9 2021-07-12 op if (in_minibuffer)
811 e9af06b9 2021-07-12 op do_redraw_minibuffer();
812 e9af06b9 2021-07-12 op else
813 e9af06b9 2021-07-12 op do_redraw_echoarea();
814 9cb0f9ce 2021-03-10 op
815 b1e1e41a 2021-07-14 op if (in_minibuffer == MB_COMPREAD)
816 b1e1e41a 2021-07-14 op do_redraw_minibuffer_compl();
817 b1e1e41a 2021-07-14 op
818 e9af06b9 2021-07-12 op wattr_off(echoarea, minibuffer_face.background, NULL);
819 e9af06b9 2021-07-12 op }
820 9cb0f9ce 2021-03-10 op
821 e9af06b9 2021-07-12 op static void
822 e9af06b9 2021-07-12 op do_redraw_echoarea(void)
823 e9af06b9 2021-07-12 op {
824 83dce83d 2021-07-17 op struct vline *vl;
825 9cb0f9ce 2021-03-10 op
826 17e5106b 2021-03-21 op if (ministate.curmesg != NULL)
827 95a8c791 2021-08-26 op wprintw(echoarea, "%s", ministate.curmesg);
828 e9af06b9 2021-07-12 op else if (*keybuf != '\0')
829 8a7f2683 2021-07-10 op waddstr(echoarea, keybuf);
830 e9af06b9 2021-07-12 op else {
831 e9af06b9 2021-07-12 op /* If nothing else, show the URL at point */
832 83dce83d 2021-07-17 op vl = current_tab->buffer.current_line;
833 83dce83d 2021-07-17 op if (vl != NULL && vl->parent->type == LINE_LINK)
834 83dce83d 2021-07-17 op waddstr(echoarea, vl->parent->alt);
835 8300dd3c 2021-03-18 op }
836 e9af06b9 2021-07-12 op }
837 91a72220 2021-03-13 op
838 e9af06b9 2021-07-12 op static void
839 e9af06b9 2021-07-12 op do_redraw_minibuffer(void)
840 e9af06b9 2021-07-12 op {
841 738a231a 2021-07-24 op struct buffer *cmplbuf, *buffer;
842 e9af06b9 2021-07-12 op size_t off_y, off_x = 0;
843 e9af06b9 2021-07-12 op const char *start, *c;
844 d5493194 2021-06-15 op
845 738a231a 2021-07-24 op cmplbuf = &ministate.compl.buffer;
846 738a231a 2021-07-24 op buffer = &ministate.buffer;
847 738a231a 2021-07-24 op (void)off_y; /* unused, set by getyx */
848 e9af06b9 2021-07-12 op
849 35965938 2021-07-15 op wmove(echoarea, 0, 0);
850 35965938 2021-07-15 op
851 35965938 2021-07-15 op if (in_minibuffer == MB_COMPREAD)
852 35965938 2021-07-15 op wprintw(echoarea, "(%2d) ",
853 738a231a 2021-07-24 op cmplbuf->line_max);
854 35965938 2021-07-15 op
855 35965938 2021-07-15 op wprintw(echoarea, "%s", ministate.prompt);
856 e9af06b9 2021-07-12 op if (ministate.hist_cur != NULL)
857 e9af06b9 2021-07-12 op wprintw(echoarea, "(%zu/%zu) ",
858 e9af06b9 2021-07-12 op ministate.hist_off + 1,
859 e9af06b9 2021-07-12 op ministate.history->len);
860 e9af06b9 2021-07-12 op
861 e9af06b9 2021-07-12 op getyx(echoarea, off_y, off_x);
862 e9af06b9 2021-07-12 op
863 e9af06b9 2021-07-12 op start = ministate.hist_cur != NULL
864 e9af06b9 2021-07-12 op ? ministate.hist_cur->h
865 e9af06b9 2021-07-12 op : ministate.buf;
866 738a231a 2021-07-24 op c = utf8_nth(buffer->current_line->line, buffer->cpoff);
867 e9af06b9 2021-07-12 op while (utf8_swidth_between(start, c) > (size_t)COLS/2) {
868 e9af06b9 2021-07-12 op start = utf8_next_cp(start);
869 e9af06b9 2021-07-12 op }
870 e9af06b9 2021-07-12 op
871 e9af06b9 2021-07-12 op waddstr(echoarea, start);
872 e9af06b9 2021-07-12 op
873 e9af06b9 2021-07-12 op if (ministate.curmesg != NULL)
874 e9af06b9 2021-07-12 op wprintw(echoarea, " [%s]", ministate.curmesg);
875 e9af06b9 2021-07-12 op
876 e9af06b9 2021-07-12 op wmove(echoarea, 0, off_x + utf8_swidth_between(start, c));
877 b1e1e41a 2021-07-14 op }
878 b1e1e41a 2021-07-14 op
879 b1e1e41a 2021-07-14 op static void
880 b1e1e41a 2021-07-14 op do_redraw_minibuffer_compl(void)
881 b1e1e41a 2021-07-14 op {
882 0aef305d 2022-01-10 op redraw_window(minibuffer, 0, 10, COLS, 1,
883 b1e1e41a 2021-07-14 op &ministate.compl.buffer);
884 55df859f 2021-07-12 op }
885 55df859f 2021-07-12 op
886 55df859f 2021-07-12 op /*
887 55df859f 2021-07-12 op * Place the cursor in the right ncurses window. If soft is 1, use
888 4ff12389 2021-07-12 op * wnoutrefresh (which shouldn't cause any I/O); otherwise use
889 55df859f 2021-07-12 op * wrefresh.
890 55df859f 2021-07-12 op */
891 55df859f 2021-07-12 op static void
892 55df859f 2021-07-12 op place_cursor(int soft)
893 55df859f 2021-07-12 op {
894 4ff12389 2021-07-12 op int (*touch)(WINDOW *);
895 55df859f 2021-07-12 op
896 55df859f 2021-07-12 op if (soft)
897 55df859f 2021-07-12 op touch = wnoutrefresh;
898 55df859f 2021-07-12 op else
899 55df859f 2021-07-12 op touch = wrefresh;
900 55df859f 2021-07-12 op
901 55df859f 2021-07-12 op if (in_minibuffer) {
902 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT)
903 65340174 2021-07-21 op touch(help);
904 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM)
905 3b5f459e 2021-11-05 op touch(download);
906 65340174 2021-07-21 op touch(body);
907 65340174 2021-07-21 op touch(echoarea);
908 3b5f459e 2021-11-05 op } else if (in_side_window & SIDE_WINDOW_LEFT) {
909 55df859f 2021-07-12 op touch(body);
910 55df859f 2021-07-12 op touch(echoarea);
911 3b5f459e 2021-11-05 op if (in_side_window & SIDE_WINDOW_BOTTOM)
912 3b5f459e 2021-11-05 op touch(download);
913 65340174 2021-07-21 op touch(help);
914 3b5f459e 2021-11-05 op } else if (in_side_window & SIDE_WINDOW_BOTTOM) {
915 3b5f459e 2021-11-05 op touch(body);
916 3b5f459e 2021-11-05 op touch(echoarea);
917 3b5f459e 2021-11-05 op if (in_side_window & SIDE_WINDOW_LEFT)
918 65340174 2021-07-21 op touch(help);
919 3b5f459e 2021-11-05 op touch(download);
920 3b5f459e 2021-11-05 op } else {
921 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT)
922 3b5f459e 2021-11-05 op touch(help);
923 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM)
924 3b5f459e 2021-11-05 op touch(download);
925 55df859f 2021-07-12 op touch(echoarea);
926 55df859f 2021-07-12 op touch(body);
927 55df859f 2021-07-12 op }
928 48e9d457 2021-03-06 op }
929 48e9d457 2021-03-06 op
930 48e9d457 2021-03-06 op static void
931 48e9d457 2021-03-06 op redraw_tab(struct tab *tab)
932 48e9d457 2021-03-06 op {
933 23f22c83 2021-07-13 op if (too_small)
934 23f22c83 2021-07-13 op return;
935 23f22c83 2021-07-13 op
936 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT) {
937 bddc7bbd 2021-04-01 op redraw_help();
938 bddc7bbd 2021-04-01 op wnoutrefresh(help);
939 bddc7bbd 2021-04-01 op }
940 bddc7bbd 2021-04-01 op
941 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM) {
942 3b5f459e 2021-11-05 op redraw_download();
943 3b5f459e 2021-11-05 op wnoutrefresh(download);
944 3b5f459e 2021-11-05 op }
945 3b5f459e 2021-11-05 op
946 56168aa8 2021-08-18 op if (show_tab_bar)
947 56168aa8 2021-08-18 op redraw_tabline();
948 56168aa8 2021-08-18 op
949 e19f9a04 2021-03-11 op redraw_body(tab);
950 e19f9a04 2021-03-11 op redraw_modeline(tab);
951 e9af06b9 2021-07-12 op redraw_minibuffer();
952 e19f9a04 2021-03-11 op
953 bddc7bbd 2021-04-01 op wnoutrefresh(tabline);
954 bddc7bbd 2021-04-01 op wnoutrefresh(modeline);
955 e19f9a04 2021-03-11 op
956 b1e1e41a 2021-07-14 op if (in_minibuffer == MB_COMPREAD)
957 b1e1e41a 2021-07-14 op wnoutrefresh(minibuffer);
958 b1e1e41a 2021-07-14 op
959 55df859f 2021-07-12 op place_cursor(1);
960 bddc7bbd 2021-04-01 op
961 bddc7bbd 2021-04-01 op doupdate();
962 9886bf97 2021-07-17 op
963 9886bf97 2021-07-17 op if (set_title)
964 47f9af78 2021-08-14 op dprintf(1, "\033]2;%s - Telescope\a",
965 9886bf97 2021-07-17 op current_tab->buffer.page.title);
966 e19f9a04 2021-03-11 op }
967 48e9d457 2021-03-06 op
968 7f963c41 2021-06-20 op void
969 8af5e5ed 2021-03-08 op start_loading_anim(struct tab *tab)
970 8af5e5ed 2021-03-08 op {
971 2ba66cea 2021-03-22 op if (tab->loading_anim)
972 8af5e5ed 2021-03-08 op return;
973 2ba66cea 2021-03-22 op tab->loading_anim = 1;
974 2ba66cea 2021-03-22 op evtimer_set(&tab->loadingev, update_loading_anim, tab);
975 2ba66cea 2021-03-22 op evtimer_add(&tab->loadingev, &loadingev_timer);
976 8af5e5ed 2021-03-08 op }
977 8af5e5ed 2021-03-08 op
978 8af5e5ed 2021-03-08 op static void
979 8af5e5ed 2021-03-08 op update_loading_anim(int fd, short ev, void *d)
980 8af5e5ed 2021-03-08 op {
981 8af5e5ed 2021-03-08 op struct tab *tab = d;
982 8af5e5ed 2021-03-08 op
983 2ba66cea 2021-03-22 op tab->loading_anim_step = (tab->loading_anim_step+1)%4;
984 9ca15951 2021-03-09 op
985 83dce83d 2021-07-17 op if (tab == current_tab) {
986 6347dcd0 2021-03-16 op redraw_modeline(tab);
987 6347dcd0 2021-03-16 op wrefresh(modeline);
988 6347dcd0 2021-03-16 op wrefresh(body);
989 6347dcd0 2021-03-16 op if (in_minibuffer)
990 8a7f2683 2021-07-10 op wrefresh(echoarea);
991 6347dcd0 2021-03-16 op }
992 8af5e5ed 2021-03-08 op
993 2ba66cea 2021-03-22 op evtimer_add(&tab->loadingev, &loadingev_timer);
994 8af5e5ed 2021-03-08 op }
995 8af5e5ed 2021-03-08 op
996 8af5e5ed 2021-03-08 op static void
997 8af5e5ed 2021-03-08 op stop_loading_anim(struct tab *tab)
998 8af5e5ed 2021-03-08 op {
999 2ba66cea 2021-03-22 op if (!tab->loading_anim)
1000 8af5e5ed 2021-03-08 op return;
1001 2ba66cea 2021-03-22 op evtimer_del(&tab->loadingev);
1002 2ba66cea 2021-03-22 op tab->loading_anim = 0;
1003 2ba66cea 2021-03-22 op tab->loading_anim_step = 0;
1004 3d8c2326 2021-03-18 op
1005 83dce83d 2021-07-17 op if (tab != current_tab)
1006 3d8c2326 2021-03-18 op return;
1007 43a1b8d0 2021-03-09 op
1008 43a1b8d0 2021-03-09 op redraw_modeline(tab);
1009 9ca15951 2021-03-09 op
1010 43a1b8d0 2021-03-09 op wrefresh(modeline);
1011 43a1b8d0 2021-03-09 op wrefresh(body);
1012 9ca15951 2021-03-09 op if (in_minibuffer)
1013 8a7f2683 2021-07-10 op wrefresh(echoarea);
1014 9ca15951 2021-03-09 op }
1015 9ca15951 2021-03-09 op
1016 1853ee50 2021-07-15 op int
1017 1853ee50 2021-07-15 op ui_print_colors(void)
1018 1853ee50 2021-07-15 op {
1019 1853ee50 2021-07-15 op int colors = 0, pairs = 0, can_change = 0;
1020 1853ee50 2021-07-15 op int columns = 16, lines, color, i, j;
1021 1853ee50 2021-07-15 op
1022 1853ee50 2021-07-15 op initscr();
1023 1853ee50 2021-07-15 op if (has_colors()) {
1024 1853ee50 2021-07-15 op start_color();
1025 1853ee50 2021-07-15 op use_default_colors();
1026 1853ee50 2021-07-15 op
1027 1853ee50 2021-07-15 op colors = COLORS;
1028 1853ee50 2021-07-15 op pairs = COLOR_PAIRS;
1029 1853ee50 2021-07-15 op can_change = can_change_color();
1030 1853ee50 2021-07-15 op }
1031 1853ee50 2021-07-15 op endwin();
1032 1853ee50 2021-07-15 op
1033 1853ee50 2021-07-15 op printf("Term info:\n");
1034 1853ee50 2021-07-15 op printf("TERM=%s COLORS=%d COLOR_PAIRS=%d can_change_colors=%d\n",
1035 1853ee50 2021-07-15 op getenv("TERM"), colors, pairs, can_change);
1036 1853ee50 2021-07-15 op printf("\n");
1037 1853ee50 2021-07-15 op
1038 1853ee50 2021-07-15 op if (colors == 0) {
1039 1853ee50 2021-07-15 op printf("No color support\n");
1040 1853ee50 2021-07-15 op return 0;
1041 1853ee50 2021-07-15 op }
1042 1853ee50 2021-07-15 op
1043 1853ee50 2021-07-15 op printf("Available colors:\n\n");
1044 1853ee50 2021-07-15 op lines = (colors - 1) / columns + 1;
1045 1853ee50 2021-07-15 op color = 0;
1046 1853ee50 2021-07-15 op for (i = 0; i < lines; ++i) {
1047 1853ee50 2021-07-15 op for (j = 0; j < columns; ++j, ++color) {
1048 1853ee50 2021-07-15 op printf("\033[0;38;5;%dm %03d", color, color);
1049 1853ee50 2021-07-15 op }
1050 1853ee50 2021-07-15 op printf("\n");
1051 1853ee50 2021-07-15 op }
1052 1853ee50 2021-07-15 op
1053 1853ee50 2021-07-15 op printf("\033[0m");
1054 1853ee50 2021-07-15 op fflush(stdout);
1055 1853ee50 2021-07-15 op return 0;
1056 5e11c00c 2021-03-02 op }
1057 5e11c00c 2021-03-02 op
1058 941b3761 2021-03-18 op int
1059 d2544989 2021-07-08 op ui_init()
1060 941b3761 2021-03-18 op {
1061 5e11c00c 2021-03-02 op setlocale(LC_ALL, "");
1062 4bc446b9 2021-07-21 op
1063 1fa16111 2021-08-12 op if (TAILQ_EMPTY(&global_map.m)) {
1064 1fa16111 2021-08-12 op fprintf(stderr, "no keys defined!\n");
1065 1fa16111 2021-08-12 op return 0;
1066 1fa16111 2021-08-12 op }
1067 1fa16111 2021-08-12 op
1068 4bc446b9 2021-07-21 op minibuffer_init();
1069 2ba66cea 2021-03-22 op
1070 3b5f459e 2021-11-05 op /* initialize download window */
1071 3b5f459e 2021-11-05 op TAILQ_INIT(&downloadwin.head);
1072 3b5f459e 2021-11-05 op TAILQ_INIT(&downloadwin.page.head);
1073 3b5f459e 2021-11-05 op
1074 bddc7bbd 2021-04-01 op /* initialize help window */
1075 bddc7bbd 2021-04-01 op TAILQ_INIT(&helpwin.head);
1076 78894e73 2021-08-12 op TAILQ_INIT(&helpwin.page.head);
1077 bddc7bbd 2021-04-01 op
1078 9ca15951 2021-03-09 op base_map = &global_map;
1079 f832146f 2021-03-09 op current_map = &global_map;
1080 f832146f 2021-03-09 op
1081 5e11c00c 2021-03-02 op initscr();
1082 74a2587f 2021-06-21 op
1083 74a2587f 2021-06-21 op if (enable_colors) {
1084 74a2587f 2021-06-21 op if (has_colors()) {
1085 74a2587f 2021-06-21 op start_color();
1086 160abe04 2021-06-21 op use_default_colors();
1087 f3bcf8f2 2021-06-21 op } else
1088 74a2587f 2021-06-21 op enable_colors = 0;
1089 f3bcf8f2 2021-06-21 op }
1090 74a2587f 2021-06-21 op
1091 42d61f50 2021-06-24 op config_apply_style();
1092 42d61f50 2021-06-24 op
1093 15e1b108 2021-03-02 op raw();
1094 5e11c00c 2021-03-02 op noecho();
1095 5e11c00c 2021-03-02 op nonl();
1096 5e11c00c 2021-03-02 op intrflush(stdscr, FALSE);
1097 5e11c00c 2021-03-02 op
1098 3cea4ff5 2021-08-18 op if ((tabline = newwin(1, 1, 0, 0)) == NULL)
1099 48e9d457 2021-03-06 op return 0;
1100 3cea4ff5 2021-08-18 op if ((body = newwin(1, 1, 0, 0)) == NULL)
1101 48e9d457 2021-03-06 op return 0;
1102 3cea4ff5 2021-08-18 op if ((modeline = newwin(1, 1, 0, 0)) == NULL)
1103 e5a2797f 2021-07-13 op return 0;
1104 3cea4ff5 2021-08-18 op if ((echoarea = newwin(1, 1, 0, 0)) == NULL)
1105 3cea4ff5 2021-08-18 op return 0;
1106 3cea4ff5 2021-08-18 op if ((minibuffer = newwin(1, 1, 0, 0)) == NULL)
1107 48e9d457 2021-03-06 op return 0;
1108 3b5f459e 2021-11-05 op if ((download = newwin(1, 1, 0, 0)) == NULL)
1109 3b5f459e 2021-11-05 op return 0;
1110 3cea4ff5 2021-08-18 op if ((help = newwin(1, 1, 0, 0)) == NULL)
1111 bddc7bbd 2021-04-01 op return 0;
1112 1d08c280 2021-03-06 op
1113 b598590d 2021-06-21 op wbkgd(body, body_face.body);
1114 1577540c 2021-11-05 op wbkgd(download, download_face.background);
1115 8a7f2683 2021-07-10 op wbkgd(echoarea, minibuffer_face.background);
1116 72b18268 2021-06-19 op
1117 72b18268 2021-06-19 op update_x_offset();
1118 48e9d457 2021-03-06 op
1119 43a1b8d0 2021-03-09 op keypad(body, TRUE);
1120 f3bcf8f2 2021-06-21 op scrollok(body, FALSE);
1121 48e9d457 2021-03-06 op
1122 5e11c00c 2021-03-02 op /* non-blocking input */
1123 48e9d457 2021-03-06 op wtimeout(body, 0);
1124 65340174 2021-07-21 op wtimeout(help, 0);
1125 5e11c00c 2021-03-02 op
1126 48e9d457 2021-03-06 op mvwprintw(body, 0, 0, "");
1127 5e11c00c 2021-03-02 op
1128 bb28f1c2 2021-12-30 op return 1;
1129 bb28f1c2 2021-12-30 op }
1130 bb28f1c2 2021-12-30 op
1131 bb28f1c2 2021-12-30 op void
1132 bb28f1c2 2021-12-30 op ui_main_loop(void)
1133 bb28f1c2 2021-12-30 op {
1134 db1e7fc6 2021-07-16 op evtimer_set(&resizeev, handle_resize, NULL);
1135 db1e7fc6 2021-07-16 op
1136 5e11c00c 2021-03-02 op event_set(&stdioev, 0, EV_READ | EV_PERSIST, dispatch_stdio, NULL);
1137 5e11c00c 2021-03-02 op event_add(&stdioev, NULL);
1138 5e11c00c 2021-03-02 op
1139 5e11c00c 2021-03-02 op signal_set(&winchev, SIGWINCH, handle_resize, NULL);
1140 5e11c00c 2021-03-02 op signal_add(&winchev, NULL);
1141 87e3e801 2021-07-17 op
1142 2ddbda6b 2021-07-17 op switch_to_tab(current_tab);
1143 3cea4ff5 2021-08-18 op rearrange_windows();
1144 5e11c00c 2021-03-02 op }
1145 5e11c00c 2021-03-02 op
1146 5e11c00c 2021-03-02 op void
1147 8af5e5ed 2021-03-08 op ui_on_tab_loaded(struct tab *tab)
1148 8af5e5ed 2021-03-08 op {
1149 8af5e5ed 2021-03-08 op stop_loading_anim(tab);
1150 2051e653 2021-03-13 op message("Loaded %s", tab->hist_cur->h);
1151 3d8c2326 2021-03-18 op
1152 56168aa8 2021-08-18 op if (show_tab_bar)
1153 56168aa8 2021-08-18 op redraw_tabline();
1154 56168aa8 2021-08-18 op
1155 3d8c2326 2021-03-18 op wrefresh(tabline);
1156 55df859f 2021-07-12 op place_cursor(0);
1157 8af5e5ed 2021-03-08 op }
1158 8af5e5ed 2021-03-08 op
1159 8af5e5ed 2021-03-08 op void
1160 5e11c00c 2021-03-02 op ui_on_tab_refresh(struct tab *tab)
1161 5e11c00c 2021-03-02 op {
1162 46f6e974 2021-05-17 op wrap_page(&tab->buffer, body_cols);
1163 83dce83d 2021-07-17 op if (tab == current_tab)
1164 3d8c2326 2021-03-18 op redraw_tab(tab);
1165 02a74b53 2021-07-01 op else
1166 e8a76665 2021-05-12 op tab->flags |= TAB_URGENT;
1167 fcd99a0d 2021-11-05 op }
1168 fcd99a0d 2021-11-05 op
1169 fcd99a0d 2021-11-05 op void
1170 fcd99a0d 2021-11-05 op ui_on_download_refresh(void)
1171 fcd99a0d 2021-11-05 op {
1172 fcd99a0d 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM) {
1173 4cb3882f 2021-11-27 op recompute_downloads();
1174 fcd99a0d 2021-11-05 op redraw_tab(current_tab);
1175 fcd99a0d 2021-11-05 op }
1176 5e11c00c 2021-03-02 op }
1177 5e11c00c 2021-03-02 op
1178 2b2d2872 2021-06-20 op const char *
1179 2b2d2872 2021-06-20 op ui_keyname(int k)
1180 2b2d2872 2021-06-20 op {
1181 2b2d2872 2021-06-20 op return keyname(k);
1182 2b2d2872 2021-06-20 op }
1183 2b2d2872 2021-06-20 op
1184 5e11c00c 2021-03-02 op void
1185 3b5f459e 2021-11-05 op ui_toggle_side_window(int kind)
1186 2b2d2872 2021-06-20 op {
1187 3b5f459e 2021-11-05 op if (in_side_window & kind)
1188 3b5f459e 2021-11-05 op ui_other_window();
1189 3b5f459e 2021-11-05 op
1190 3b5f459e 2021-11-05 op side_window ^= kind;
1191 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT)
1192 2b2d2872 2021-06-20 op recompute_help();
1193 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM)
1194 3b5f459e 2021-11-05 op recompute_downloads();
1195 960b01da 2021-06-20 op
1196 960b01da 2021-06-20 op /*
1197 960b01da 2021-06-20 op * ugly hack, but otherwise the window doesn't get updated
1198 32c6c75e 2021-07-15 op * until I call rearrange_windows a second time (e.g. via
1199 32c6c75e 2021-07-15 op * C-l). I will be happy to know why something like this is
1200 32c6c75e 2021-07-15 op * needed.
1201 960b01da 2021-06-20 op */
1202 32c6c75e 2021-07-15 op rearrange_windows();
1203 32c6c75e 2021-07-15 op rearrange_windows();
1204 2b2d2872 2021-06-20 op }
1205 2b2d2872 2021-06-20 op
1206 2b2d2872 2021-06-20 op void
1207 fcd99a0d 2021-11-05 op ui_show_downloads_pane(void)
1208 fcd99a0d 2021-11-05 op {
1209 fcd99a0d 2021-11-05 op if (!(side_window & SIDE_WINDOW_BOTTOM))
1210 fcd99a0d 2021-11-05 op ui_toggle_side_window(SIDE_WINDOW_BOTTOM);
1211 fcd99a0d 2021-11-05 op }
1212 fcd99a0d 2021-11-05 op
1213 fcd99a0d 2021-11-05 op void
1214 2b2d2872 2021-06-20 op ui_schedule_redraw(void)
1215 2b2d2872 2021-06-20 op {
1216 32c6c75e 2021-07-15 op should_rearrange_windows = 1;
1217 2b2d2872 2021-06-20 op }
1218 2b2d2872 2021-06-20 op
1219 2b2d2872 2021-06-20 op void
1220 9a28e7e5 2021-08-03 op ui_require_input(struct tab *tab, int hide, int proto)
1221 5cd2ebb1 2021-03-11 op {
1222 9a28e7e5 2021-08-03 op void (*fn)(void);
1223 9a28e7e5 2021-08-03 op
1224 9a28e7e5 2021-08-03 op if (proto == PROTO_GEMINI)
1225 9a28e7e5 2021-08-03 op fn = ir_select_gemini;
1226 9a28e7e5 2021-08-03 op else if (proto == PROTO_GOPHER)
1227 9a28e7e5 2021-08-03 op fn = ir_select_gopher;
1228 9a28e7e5 2021-08-03 op else
1229 9a28e7e5 2021-08-03 op abort();
1230 9a28e7e5 2021-08-03 op
1231 5cd2ebb1 2021-03-11 op /* TODO: hard-switching to another tab is ugly */
1232 5cd2ebb1 2021-03-11 op switch_to_tab(tab);
1233 5cd2ebb1 2021-03-11 op
1234 9a28e7e5 2021-08-03 op enter_minibuffer(sensible_self_insert, fn, exit_minibuffer,
1235 e5a2797f 2021-07-13 op &ir_history, NULL, NULL);
1236 5cd2ebb1 2021-03-11 op strlcpy(ministate.prompt, "Input required: ",
1237 5cd2ebb1 2021-03-11 op sizeof(ministate.prompt));
1238 5cd2ebb1 2021-03-11 op redraw_tab(tab);
1239 5cd2ebb1 2021-03-11 op }
1240 5cd2ebb1 2021-03-11 op
1241 5cd2ebb1 2021-03-11 op void
1242 4bc446b9 2021-07-21 op ui_after_message_hook(void)
1243 4bc446b9 2021-07-21 op {
1244 4bc446b9 2021-07-21 op redraw_minibuffer();
1245 4bc446b9 2021-07-21 op place_cursor(0);
1246 4bc446b9 2021-07-21 op }
1247 4bc446b9 2021-07-21 op
1248 4bc446b9 2021-07-21 op void
1249 a2fd3805 2021-07-06 op ui_yornp(const char *prompt, void (*fn)(int, struct tab *),
1250 a2fd3805 2021-07-06 op struct tab *data)
1251 5d1bac73 2021-03-25 op {
1252 84b88039 2021-07-12 op yornp(prompt, fn, data);
1253 83dce83d 2021-07-17 op redraw_tab(current_tab);
1254 5d1bac73 2021-03-25 op }
1255 5d1bac73 2021-03-25 op
1256 5d1bac73 2021-03-25 op void
1257 d1353324 2021-07-13 op ui_read(const char *prompt, void (*fn)(const char*, struct tab *),
1258 bb9912eb 2021-08-29 op struct tab *data, const char *input)
1259 de2a69bb 2021-05-17 op {
1260 4bc446b9 2021-07-21 op minibuffer_read(prompt, fn, data);
1261 bb9912eb 2021-08-29 op
1262 bb9912eb 2021-08-29 op if (input != NULL) {
1263 bb9912eb 2021-08-29 op strlcpy(ministate.buf, input, sizeof(ministate.buf));
1264 bb9912eb 2021-08-29 op cmd_move_end_of_line(&ministate.buffer);
1265 bb9912eb 2021-08-29 op }
1266 bb9912eb 2021-08-29 op
1267 83dce83d 2021-07-17 op redraw_tab(current_tab);
1268 8a3b5609 2021-07-15 op }
1269 8a3b5609 2021-07-15 op
1270 8a3b5609 2021-07-15 op void
1271 65340174 2021-07-21 op ui_other_window(void)
1272 65340174 2021-07-21 op {
1273 3b5f459e 2021-11-05 op if (in_side_window & SIDE_WINDOW_LEFT &&
1274 3b5f459e 2021-11-05 op side_window & SIDE_WINDOW_BOTTOM)
1275 3b5f459e 2021-11-05 op in_side_window = SIDE_WINDOW_BOTTOM;
1276 3b5f459e 2021-11-05 op else if (in_side_window)
1277 3b5f459e 2021-11-05 op in_side_window = 0;
1278 3b5f459e 2021-11-05 op else if (!in_side_window && side_window & SIDE_WINDOW_LEFT)
1279 3b5f459e 2021-11-05 op in_side_window = SIDE_WINDOW_LEFT;
1280 3b5f459e 2021-11-05 op else if (!in_side_window && side_window)
1281 3b5f459e 2021-11-05 op in_side_window = SIDE_WINDOW_BOTTOM;
1282 65340174 2021-07-21 op else
1283 65340174 2021-07-21 op message("No other window to select");
1284 65340174 2021-07-21 op }
1285 65340174 2021-07-21 op
1286 65340174 2021-07-21 op void
1287 8a3b5609 2021-07-15 op ui_suspend(void)
1288 8a3b5609 2021-07-15 op {
1289 8a3b5609 2021-07-15 op endwin();
1290 8a3b5609 2021-07-15 op
1291 4bac9926 2021-07-15 op kill(getpid(), SIGSTOP);
1292 8a3b5609 2021-07-15 op
1293 8a3b5609 2021-07-15 op refresh();
1294 8a3b5609 2021-07-15 op clear();
1295 8a3b5609 2021-07-15 op rearrange_windows();
1296 740f578b 2021-03-15 op }
1297 740f578b 2021-03-15 op
1298 740f578b 2021-03-15 op void
1299 5e11c00c 2021-03-02 op ui_end(void)
1300 5e11c00c 2021-03-02 op {
1301 5e11c00c 2021-03-02 op endwin();
1302 5e11c00c 2021-03-02 op }