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 ec9aa106 2021-07-14 op static void redraw_window(WINDOW*, 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 3b5f459e 2021-11-05 op
102 bddc7bbd 2021-04-01 op static int side_window;
103 65340174 2021-07-21 op static int in_side_window;
104 bddc7bbd 2021-04-01 op
105 8af5e5ed 2021-03-08 op static struct timeval loadingev_timer = { 0, 250000 };
106 48e9d457 2021-03-06 op
107 7c7d7bb7 2021-03-10 op static char keybuf[64];
108 9ca15951 2021-03-09 op
109 78894e73 2021-08-12 op /* XXX: don't forget to init these in main() */
110 9ca15951 2021-03-09 op struct kmap global_map,
111 fa3fd864 2021-03-10 op minibuffer_map,
112 9ca15951 2021-03-09 op *current_map,
113 9ca15951 2021-03-09 op *base_map;
114 9ca15951 2021-03-09 op
115 72b18268 2021-06-19 op static inline void
116 923f9ce5 2021-06-21 op update_x_offset(void)
117 72b18268 2021-06-19 op {
118 72b18268 2021-06-19 op if (olivetti_mode && fill_column < body_cols)
119 72b18268 2021-06-19 op x_offset = (body_cols - fill_column)/2;
120 72b18268 2021-06-19 op else
121 72b18268 2021-06-19 op x_offset = 0;
122 72b18268 2021-06-19 op }
123 65d9b3ca 2021-03-14 op
124 98411855 2021-06-23 op void
125 98411855 2021-06-23 op save_excursion(struct excursion *place, struct buffer *buffer)
126 98411855 2021-06-23 op {
127 98411855 2021-06-23 op place->curs_x = buffer->curs_x;
128 98411855 2021-06-23 op place->curs_y = buffer->curs_y;
129 98411855 2021-06-23 op place->line_off = buffer->line_off;
130 ca783de6 2021-07-18 op place->top_line = buffer->top_line;
131 98411855 2021-06-23 op place->current_line = buffer->current_line;
132 98411855 2021-06-23 op place->cpoff = buffer->cpoff;
133 98411855 2021-06-23 op }
134 98411855 2021-06-23 op
135 98411855 2021-06-23 op void
136 98411855 2021-06-23 op restore_excursion(struct excursion *place, struct buffer *buffer)
137 98411855 2021-06-23 op {
138 98411855 2021-06-23 op buffer->curs_x = place->curs_x;
139 98411855 2021-06-23 op buffer->curs_y = place->curs_y;
140 98411855 2021-06-23 op buffer->line_off = place->line_off;
141 ca783de6 2021-07-18 op buffer->top_line = place->top_line;
142 98411855 2021-06-23 op buffer->current_line = place->current_line;
143 98411855 2021-06-23 op buffer->cpoff = place->cpoff;
144 1d08c280 2021-03-06 op }
145 1d08c280 2021-03-06 op
146 0a805b02 2021-07-01 op static void
147 0a805b02 2021-07-01 op restore_curs_x(struct buffer *buffer)
148 48e9d457 2021-03-06 op {
149 452589f7 2021-03-16 op struct vline *vl;
150 bd644709 2021-07-18 op const char *prfx, *text;
151 452589f7 2021-03-16 op
152 46f6e974 2021-05-17 op vl = buffer->current_line;
153 452589f7 2021-03-16 op if (vl == NULL || vl->line == NULL)
154 46f6e974 2021-05-17 op buffer->curs_x = buffer->cpoff = 0;
155 bd644709 2021-07-18 op else if (vl->parent->data != NULL) {
156 bd644709 2021-07-18 op text = vl->parent->data;
157 bd644709 2021-07-18 op buffer->curs_x = utf8_snwidth(text + 1, buffer->cpoff) + 1;
158 bd644709 2021-07-18 op } else
159 46f6e974 2021-05-17 op buffer->curs_x = utf8_snwidth(vl->line, buffer->cpoff);
160 452589f7 2021-03-16 op
161 3b5f459e 2021-11-05 op /* small hack: don't olivetti-mode the download pane */
162 3b5f459e 2021-11-05 op if (buffer != &downloadwin)
163 3b5f459e 2021-11-05 op buffer->curs_x += x_offset;
164 72b18268 2021-06-19 op
165 47aec13e 2021-07-17 op if (vl == NULL)
166 47aec13e 2021-07-17 op return;
167 47aec13e 2021-07-17 op
168 47aec13e 2021-07-17 op if (vl->parent->data != NULL)
169 002b074d 2021-08-14 op buffer->curs_x += utf8_swidth_between(vl->parent->line,
170 002b074d 2021-08-14 op vl->parent->data);
171 47aec13e 2021-07-17 op else {
172 452589f7 2021-03-16 op prfx = line_prefixes[vl->parent->type].prfx1;
173 46f6e974 2021-05-17 op buffer->curs_x += utf8_swidth(prfx);
174 2ba66cea 2021-03-22 op }
175 9ca15951 2021-03-09 op }
176 9ca15951 2021-03-09 op
177 d5bdf203 2021-07-08 op void
178 870210fb 2021-03-26 op global_key_unbound(void)
179 870210fb 2021-03-26 op {
180 870210fb 2021-03-26 op message("%s is undefined", keybuf);
181 870210fb 2021-03-26 op }
182 870210fb 2021-03-26 op
183 2b2d2872 2021-06-20 op struct buffer *
184 46f6e974 2021-05-17 op current_buffer(void)
185 2ba66cea 2021-03-22 op {
186 2ba66cea 2021-03-22 op if (in_minibuffer)
187 46f6e974 2021-05-17 op return &ministate.buffer;
188 3b5f459e 2021-11-05 op if (in_side_window & SIDE_WINDOW_LEFT)
189 65340174 2021-07-21 op return &helpwin;
190 3b5f459e 2021-11-05 op if (in_side_window & SIDE_WINDOW_BOTTOM)
191 3b5f459e 2021-11-05 op return &downloadwin;
192 83dce83d 2021-07-17 op return &current_tab->buffer;
193 2ba66cea 2021-03-22 op }
194 2ba66cea 2021-03-22 op
195 8947c1f2 2021-03-21 op static int
196 8947c1f2 2021-03-21 op readkey(void)
197 5e11c00c 2021-03-02 op {
198 8947c1f2 2021-03-21 op uint32_t state = 0;
199 19f1448e 2021-03-08 op
200 8947c1f2 2021-03-21 op if ((thiskey.key = wgetch(body)) == ERR)
201 8947c1f2 2021-03-21 op return 0;
202 5e11c00c 2021-03-02 op
203 8947c1f2 2021-03-21 op thiskey.meta = thiskey.key == 27;
204 8947c1f2 2021-03-21 op if (thiskey.meta) {
205 9ca15951 2021-03-09 op thiskey.key = wgetch(body);
206 c314a314 2021-03-11 op if (thiskey.key == ERR || thiskey.key == 27) {
207 c314a314 2021-03-11 op thiskey.meta = 0;
208 9ca15951 2021-03-09 op thiskey.key = 27;
209 c314a314 2021-03-11 op }
210 8947c1f2 2021-03-21 op }
211 8947c1f2 2021-03-21 op
212 8947c1f2 2021-03-21 op thiskey.cp = 0;
213 63ecae6d 2021-08-14 op
214 63ecae6d 2021-08-14 op if ((unsigned int)thiskey.key >= UINT8_MAX)
215 63ecae6d 2021-08-14 op return 1;
216 63ecae6d 2021-08-14 op
217 63ecae6d 2021-08-14 op while (1) {
218 63ecae6d 2021-08-14 op if (!utf8_decode(&state, &thiskey.cp, (uint8_t)thiskey.key))
219 63ecae6d 2021-08-14 op break;
220 63ecae6d 2021-08-14 op if ((thiskey.key = wgetch(body)) == ERR) {
221 63ecae6d 2021-08-14 op message("Error decoding user input");
222 63ecae6d 2021-08-14 op return 0;
223 8947c1f2 2021-03-21 op }
224 8947c1f2 2021-03-21 op }
225 19f1448e 2021-03-08 op
226 8947c1f2 2021-03-21 op return 1;
227 8947c1f2 2021-03-21 op }
228 8947c1f2 2021-03-21 op
229 8947c1f2 2021-03-21 op static void
230 8947c1f2 2021-03-21 op dispatch_stdio(int fd, short ev, void *d)
231 8947c1f2 2021-03-21 op {
232 8947c1f2 2021-03-21 op struct keymap *k;
233 8947c1f2 2021-03-21 op const char *keyname;
234 8947c1f2 2021-03-21 op char tmp[5] = {0};
235 8947c1f2 2021-03-21 op
236 23f22c83 2021-07-13 op /* TODO: schedule a redraw? */
237 23f22c83 2021-07-13 op if (too_small)
238 23f22c83 2021-07-13 op return;
239 23f22c83 2021-07-13 op
240 8947c1f2 2021-03-21 op if (!readkey())
241 8947c1f2 2021-03-21 op return;
242 8947c1f2 2021-03-21 op
243 7c7d7bb7 2021-03-10 op if (keybuf[0] != '\0')
244 7c7d7bb7 2021-03-10 op strlcat(keybuf, " ", sizeof(keybuf));
245 7c7d7bb7 2021-03-10 op if (thiskey.meta)
246 7c7d7bb7 2021-03-10 op strlcat(keybuf, "M-", sizeof(keybuf));
247 8947c1f2 2021-03-21 op if (thiskey.cp != 0) {
248 8947c1f2 2021-03-21 op utf8_encode(thiskey.cp, tmp);
249 7c7d7bb7 2021-03-10 op strlcat(keybuf, tmp, sizeof(keybuf));
250 af29d739 2021-07-13 op } else if ((keyname = unkbd(thiskey.key)) != NULL) {
251 af29d739 2021-07-13 op strlcat(keybuf, keyname, sizeof(keybuf));
252 8947c1f2 2021-03-21 op } else {
253 af29d739 2021-07-13 op tmp[0] = thiskey.key;
254 af29d739 2021-07-13 op strlcat(keybuf, tmp, sizeof(keybuf));
255 7c7d7bb7 2021-03-10 op }
256 7c7d7bb7 2021-03-10 op
257 9ca15951 2021-03-09 op TAILQ_FOREACH(k, &current_map->m, keymaps) {
258 9ca15951 2021-03-09 op if (k->meta == thiskey.meta &&
259 9ca15951 2021-03-09 op k->key == thiskey.key) {
260 f832146f 2021-03-09 op if (k->fn == NULL)
261 f832146f 2021-03-09 op current_map = &k->map;
262 f832146f 2021-03-09 op else {
263 9ca15951 2021-03-09 op current_map = base_map;
264 7c7d7bb7 2021-03-10 op strlcpy(keybuf, "", sizeof(keybuf));
265 46f6e974 2021-05-17 op k->fn(current_buffer());
266 f832146f 2021-03-09 op }
267 1d08c280 2021-03-06 op goto done;
268 1d08c280 2021-03-06 op }
269 eb259e66 2021-03-02 op }
270 eb259e66 2021-03-02 op
271 7c7d7bb7 2021-03-10 op if (current_map->unhandled_input != NULL)
272 7c7d7bb7 2021-03-10 op current_map->unhandled_input();
273 d2399aef 2021-06-20 op else
274 7c7d7bb7 2021-03-10 op global_key_unbound();
275 7c7d7bb7 2021-03-10 op
276 7c7d7bb7 2021-03-10 op strlcpy(keybuf, "", sizeof(keybuf));
277 9ca15951 2021-03-09 op current_map = base_map;
278 1d08c280 2021-03-06 op
279 1d08c280 2021-03-06 op done:
280 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT)
281 bddc7bbd 2021-04-01 op recompute_help();
282 bddc7bbd 2021-04-01 op
283 32c6c75e 2021-07-15 op if (should_rearrange_windows)
284 32c6c75e 2021-07-15 op rearrange_windows();
285 83dce83d 2021-07-17 op redraw_tab(current_tab);
286 a6d450c1 2021-03-06 op }
287 48e9d457 2021-03-06 op
288 a6d450c1 2021-03-06 op static void
289 5e11c00c 2021-03-02 op handle_resize(int sig, short ev, void *d)
290 831deb20 2021-05-12 op {
291 831deb20 2021-05-12 op if (event_pending(&resizeev, EV_TIMEOUT, NULL)) {
292 831deb20 2021-05-12 op event_del(&resizeev);
293 831deb20 2021-05-12 op }
294 a8a482c8 2021-05-17 op evtimer_set(&resizeev, handle_resize_nodelay, NULL);
295 831deb20 2021-05-12 op evtimer_add(&resizeev, &resize_timer);
296 831deb20 2021-05-12 op }
297 831deb20 2021-05-12 op
298 831deb20 2021-05-12 op static void
299 a8a482c8 2021-05-17 op handle_resize_nodelay(int s, short ev, void *d)
300 5e11c00c 2021-03-02 op {
301 5e11c00c 2021-03-02 op endwin();
302 5e11c00c 2021-03-02 op refresh();
303 5e11c00c 2021-03-02 op clear();
304 32c6c75e 2021-07-15 op
305 32c6c75e 2021-07-15 op rearrange_windows();
306 32c6c75e 2021-07-15 op }
307 32c6c75e 2021-07-15 op
308 56168aa8 2021-08-18 op static inline int
309 56168aa8 2021-08-18 op should_show_tab_bar(void)
310 56168aa8 2021-08-18 op {
311 56168aa8 2021-08-18 op if (tab_bar_show == -1)
312 56168aa8 2021-08-18 op return 0;
313 56168aa8 2021-08-18 op if (tab_bar_show == 0)
314 56168aa8 2021-08-18 op return 1;
315 56168aa8 2021-08-18 op
316 56168aa8 2021-08-18 op return TAILQ_NEXT(TAILQ_FIRST(&tabshead), tabs) != NULL;
317 56168aa8 2021-08-18 op }
318 56168aa8 2021-08-18 op
319 32c6c75e 2021-07-15 op static void
320 32c6c75e 2021-07-15 op rearrange_windows(void)
321 32c6c75e 2021-07-15 op {
322 32c6c75e 2021-07-15 op int lines;
323 3b5f459e 2021-11-05 op int minibuffer_lines;
324 5e11c00c 2021-03-02 op
325 32c6c75e 2021-07-15 op should_rearrange_windows = 0;
326 56168aa8 2021-08-18 op show_tab_bar = should_show_tab_bar();
327 32c6c75e 2021-07-15 op
328 b3884fbe 2021-07-13 op lines = LINES;
329 b3884fbe 2021-07-13 op
330 8b0779d1 2021-11-05 op /* 3 lines for the ui and 12 for the */
331 23f22c83 2021-07-13 op if ((too_small = lines < 15)) {
332 23f22c83 2021-07-13 op erase();
333 23f22c83 2021-07-13 op printw("Window too small.");
334 23f22c83 2021-07-13 op refresh();
335 23f22c83 2021-07-13 op return;
336 23f22c83 2021-07-13 op }
337 23f22c83 2021-07-13 op
338 48e9d457 2021-03-06 op /* move and resize the windows, in reverse order! */
339 48e9d457 2021-03-06 op
340 b1e1e41a 2021-07-14 op if (in_minibuffer == MB_COMPREAD) {
341 3b5f459e 2021-11-05 op minibuffer_lines = MIN(10, lines/2);
342 3b5f459e 2021-11-05 op mvwin(minibuffer, lines - minibuffer_lines, 0);
343 3b5f459e 2021-11-05 op wresize(minibuffer, minibuffer_lines, COLS);
344 3b5f459e 2021-11-05 op lines -= minibuffer_lines;
345 b1e1e41a 2021-07-14 op
346 b1e1e41a 2021-07-14 op wrap_page(&ministate.compl.buffer, COLS);
347 b1e1e41a 2021-07-14 op }
348 b1e1e41a 2021-07-14 op
349 b3884fbe 2021-07-13 op mvwin(echoarea, --lines, 0);
350 8a7f2683 2021-07-10 op wresize(echoarea, 1, COLS);
351 48e9d457 2021-03-06 op
352 b3884fbe 2021-07-13 op mvwin(modeline, --lines, 0);
353 48e9d457 2021-03-06 op wresize(modeline, 1, COLS);
354 48e9d457 2021-03-06 op
355 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM) {
356 3b5f459e 2021-11-05 op download_lines = MIN(5, lines/2);
357 3b5f459e 2021-11-05 op mvwin(download, lines - download_lines, 0);
358 3b5f459e 2021-11-05 op wresize(download, download_lines, COLS);
359 3b5f459e 2021-11-05 op lines -= download_lines;
360 3b5f459e 2021-11-05 op
361 3b5f459e 2021-11-05 op wrap_page(&downloadwin, COLS);
362 3b5f459e 2021-11-05 op }
363 3b5f459e 2021-11-05 op
364 56168aa8 2021-08-18 op body_lines = show_tab_bar ? --lines : lines;
365 bd9637e9 2021-03-06 op body_cols = COLS;
366 bddc7bbd 2021-04-01 op
367 56168aa8 2021-08-18 op /*
368 56168aa8 2021-08-18 op * Here we make the assumption that show_tab_bar is either 0
369 56168aa8 2021-08-18 op * or 1, and reuse that as argument to mvwin.
370 56168aa8 2021-08-18 op */
371 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT) {
372 bddc7bbd 2021-04-01 op help_cols = 0.3 * COLS;
373 b3884fbe 2021-07-13 op help_lines = lines;
374 56168aa8 2021-08-18 op mvwin(help, show_tab_bar, 0);
375 bddc7bbd 2021-04-01 op wresize(help, help_lines, help_cols);
376 48e9d457 2021-03-06 op
377 bddc7bbd 2021-04-01 op wrap_page(&helpwin, help_cols);
378 bddc7bbd 2021-04-01 op
379 bddc7bbd 2021-04-01 op body_cols = COLS - help_cols - 1;
380 56168aa8 2021-08-18 op mvwin(body, show_tab_bar, help_cols);
381 bddc7bbd 2021-04-01 op } else
382 56168aa8 2021-08-18 op mvwin(body, show_tab_bar, 0);
383 bddc7bbd 2021-04-01 op
384 72b18268 2021-06-19 op update_x_offset();
385 bddc7bbd 2021-04-01 op wresize(body, body_lines, body_cols);
386 bddc7bbd 2021-04-01 op
387 56168aa8 2021-08-18 op if (show_tab_bar)
388 56168aa8 2021-08-18 op wresize(tabline, 1, COLS);
389 48e9d457 2021-03-06 op
390 83dce83d 2021-07-17 op wrap_page(&current_tab->buffer, body_cols);
391 83dce83d 2021-07-17 op redraw_tab(current_tab);
392 eb259e66 2021-03-02 op }
393 94ec38e8 2021-06-29 op
394 6ca7e1b6 2021-07-16 op static void
395 6ca7e1b6 2021-07-16 op line_prefix_and_text(struct vline *vl, char *buf, size_t len,
396 6ca7e1b6 2021-07-16 op const char **prfx_ret, const char **text_ret)
397 6ca7e1b6 2021-07-16 op {
398 6ca7e1b6 2021-07-16 op int type, i, cont, width;
399 6ca7e1b6 2021-07-16 op char *space, *t;
400 6ca7e1b6 2021-07-16 op
401 6ca7e1b6 2021-07-16 op if ((*text_ret = vl->line) == NULL)
402 6ca7e1b6 2021-07-16 op *text_ret = "";
403 6ca7e1b6 2021-07-16 op
404 6ca7e1b6 2021-07-16 op cont = vl->flags & L_CONTINUATION;
405 6ca7e1b6 2021-07-16 op type = vl->parent->type;
406 55b0b036 2021-07-16 op if (!cont)
407 6ca7e1b6 2021-07-16 op *prfx_ret = line_prefixes[type].prfx1;
408 6ca7e1b6 2021-07-16 op else
409 6ca7e1b6 2021-07-16 op *prfx_ret = line_prefixes[type].prfx2;
410 6ca7e1b6 2021-07-16 op
411 6ca7e1b6 2021-07-16 op space = vl->parent->data;
412 6ca7e1b6 2021-07-16 op if (!emojify_link || type != LINE_LINK || space == NULL)
413 6ca7e1b6 2021-07-16 op return;
414 5e11c00c 2021-03-02 op
415 6ca7e1b6 2021-07-16 op if (cont) {
416 6ca7e1b6 2021-07-16 op memset(buf, 0, len);
417 6ca7e1b6 2021-07-16 op width = utf8_swidth_between(vl->parent->line, space);
418 6ca7e1b6 2021-07-16 op for (i = 0; i < width + 1; ++i)
419 6ca7e1b6 2021-07-16 op strlcat(buf, " ", len);
420 6ca7e1b6 2021-07-16 op } else {
421 6ca7e1b6 2021-07-16 op strlcpy(buf, *text_ret, len);
422 6ca7e1b6 2021-07-16 op if ((t = strchr(buf, ' ')) != NULL)
423 6ca7e1b6 2021-07-16 op *t = '\0';
424 6ca7e1b6 2021-07-16 op strlcat(buf, " ", len);
425 6ca7e1b6 2021-07-16 op
426 6ca7e1b6 2021-07-16 op /* skip the emoji */
427 95a8c791 2021-08-26 op *text_ret += (space - vl->parent->line) + 1;
428 6ca7e1b6 2021-07-16 op }
429 6ca7e1b6 2021-07-16 op
430 6ca7e1b6 2021-07-16 op *prfx_ret = buf;
431 6ca7e1b6 2021-07-16 op }
432 b3be07ea 2021-07-18 op
433 b3be07ea 2021-07-18 op static inline void
434 b3be07ea 2021-07-18 op print_vline_descr(int width, WINDOW *window, struct vline *vl)
435 b3be07ea 2021-07-18 op {
436 b3be07ea 2021-07-18 op int x, y, goal;
437 b3be07ea 2021-07-18 op
438 b3be07ea 2021-07-18 op if (vl->parent->type != LINE_COMPL &&
439 c6be26e4 2021-07-21 op vl->parent->type != LINE_COMPL_CURRENT &&
440 c6be26e4 2021-07-21 op vl->parent->type != LINE_HELP)
441 b3be07ea 2021-07-18 op return;
442 6ca7e1b6 2021-07-16 op
443 b3be07ea 2021-07-18 op if (vl->parent->alt == NULL)
444 b3be07ea 2021-07-18 op return;
445 b3be07ea 2021-07-18 op
446 b3be07ea 2021-07-18 op (void)y;
447 b3be07ea 2021-07-18 op getyx(window, y, x);
448 b3be07ea 2021-07-18 op
449 c6be26e4 2021-07-21 op if (vl->parent->type == LINE_HELP)
450 c6be26e4 2021-07-21 op goal = 8;
451 c6be26e4 2021-07-21 op else
452 c6be26e4 2021-07-21 op goal = width/2;
453 c6be26e4 2021-07-21 op
454 b3be07ea 2021-07-18 op if (goal <= x)
455 b3be07ea 2021-07-18 op wprintw(window, " ");
456 b3be07ea 2021-07-18 op for (; goal > x; ++x)
457 b3be07ea 2021-07-18 op wprintw(window, " ");
458 b3be07ea 2021-07-18 op
459 b3be07ea 2021-07-18 op wprintw(window, "%s", vl->parent->alt);
460 b3be07ea 2021-07-18 op }
461 b3be07ea 2021-07-18 op
462 fbadd395 2021-07-16 op /*
463 fbadd395 2021-07-16 op * Core part of the rendering. It prints a vline starting from the
464 fbadd395 2021-07-16 op * current cursor position. Printing a vline consists of skipping
465 fbadd395 2021-07-16 op * `off' columns (for olivetti-mode), print the correct prefix (which
466 fbadd395 2021-07-16 op * may be the emoji in case of emojified links-lines), printing the
467 fbadd395 2021-07-16 op * text itself, filling until width - off and filling off columns
468 fbadd395 2021-07-16 op * again.
469 fbadd395 2021-07-16 op */
470 754622a2 2021-03-15 op static void
471 f3bcf8f2 2021-06-21 op print_vline(int off, int width, WINDOW *window, struct vline *vl)
472 1d08c280 2021-03-06 op {
473 fbadd395 2021-07-16 op /*
474 fbadd395 2021-07-16 op * Believe me or not, I've seen emoji ten code points long!
475 fbadd395 2021-07-16 op * That means, to stay large, 4*10 bytes + NUL.
476 fbadd395 2021-07-16 op */
477 fbadd395 2021-07-16 op char emojibuf[41] = {0};
478 fbadd395 2021-07-16 op const char *text, *prfx;
479 2af29222 2021-06-24 op struct line_face *f;
480 6ca7e1b6 2021-07-16 op int i, left, x, y;
481 bd9637e9 2021-03-06 op
482 2af29222 2021-06-24 op f = &line_faces[vl->parent->type];
483 2af29222 2021-06-24 op
484 d89b86d6 2021-06-21 op /* unused, set by getyx */
485 f3bcf8f2 2021-06-21 op (void)y;
486 f3bcf8f2 2021-06-21 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 8f127baa 2021-04-22 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 002b074d 2021-08-14 op struct buffer *buffer)
646 bddc7bbd 2021-04-01 op {
647 1a8f0d27 2021-07-20 op struct vline *vl;
648 2bfa414d 2021-07-01 op int l, onscreen;
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 bddc7bbd 2021-04-01 op l = 0;
677 2bfa414d 2021-07-01 op onscreen = 0;
678 94ec38e8 2021-06-29 op for (vl = buffer->top_line; vl != NULL; vl = TAILQ_NEXT(vl, vlines)) {
679 963c680c 2021-07-05 op if (vl->parent->flags & L_HIDDEN)
680 963c680c 2021-07-05 op continue;
681 963c680c 2021-07-05 op
682 f3bcf8f2 2021-06-21 op wmove(win, l, 0);
683 ec9aa106 2021-07-14 op print_vline(off, width, win, vl);
684 2bfa414d 2021-07-01 op
685 2bfa414d 2021-07-01 op if (vl == buffer->current_line)
686 2bfa414d 2021-07-01 op onscreen = 1;
687 2bfa414d 2021-07-01 op
688 2bfa414d 2021-07-01 op if (!onscreen)
689 2bfa414d 2021-07-01 op buffer->curs_y++;
690 2bfa414d 2021-07-01 op
691 bddc7bbd 2021-04-01 op l++;
692 bddc7bbd 2021-04-01 op if (l == height)
693 bddc7bbd 2021-04-01 op break;
694 2bfa414d 2021-07-01 op }
695 2bfa414d 2021-07-01 op
696 2bfa414d 2021-07-01 op if (!onscreen) {
697 2bfa414d 2021-07-01 op for (; vl != NULL; vl = TAILQ_NEXT(vl, vlines)) {
698 2bfa414d 2021-07-01 op if (vl == buffer->current_line)
699 2bfa414d 2021-07-01 op break;
700 963c680c 2021-07-05 op if (vl->parent->flags & L_HIDDEN)
701 963c680c 2021-07-05 op continue;
702 2bfa414d 2021-07-01 op buffer->line_off++;
703 2bfa414d 2021-07-01 op buffer->top_line = TAILQ_NEXT(buffer->top_line, vlines);
704 2bfa414d 2021-07-01 op }
705 2bfa414d 2021-07-01 op
706 e7b982f4 2021-07-14 op if (vl != NULL)
707 e7b982f4 2021-07-14 op goto again;
708 bddc7bbd 2021-04-01 op }
709 bddc7bbd 2021-04-01 op
710 2bfa414d 2021-07-01 op buffer->last_line_off = buffer->line_off;
711 2bfa414d 2021-07-01 op buffer->force_redraw = 0;
712 a00b4c97 2021-06-20 op end:
713 46f6e974 2021-05-17 op wmove(win, buffer->curs_y, buffer->curs_x);
714 3b5f459e 2021-11-05 op }
715 3b5f459e 2021-11-05 op
716 3b5f459e 2021-11-05 op static void
717 3b5f459e 2021-11-05 op redraw_download(void)
718 3b5f459e 2021-11-05 op {
719 3b5f459e 2021-11-05 op redraw_window(download, 0, download_lines, COLS, &downloadwin);
720 bddc7bbd 2021-04-01 op }
721 bddc7bbd 2021-04-01 op
722 bddc7bbd 2021-04-01 op static void
723 bddc7bbd 2021-04-01 op redraw_help(void)
724 bddc7bbd 2021-04-01 op {
725 ec9aa106 2021-07-14 op redraw_window(help, 0, help_lines, help_cols, &helpwin);
726 bddc7bbd 2021-04-01 op }
727 bddc7bbd 2021-04-01 op
728 bddc7bbd 2021-04-01 op static void
729 bddc7bbd 2021-04-01 op redraw_body(struct tab *tab)
730 bddc7bbd 2021-04-01 op {
731 3323faaf 2021-06-21 op static struct tab *last_tab;
732 3323faaf 2021-06-21 op
733 3323faaf 2021-06-21 op if (last_tab != tab)
734 3323faaf 2021-06-21 op tab->buffer.force_redraw =1;
735 3323faaf 2021-06-21 op last_tab = tab;
736 3323faaf 2021-06-21 op
737 ec9aa106 2021-07-14 op redraw_window(body, x_offset, body_lines, body_cols, &tab->buffer);
738 bddc7bbd 2021-04-01 op }
739 bddc7bbd 2021-04-01 op
740 10346511 2021-03-17 op static inline char
741 10346511 2021-03-17 op trust_status_char(enum trust_state ts)
742 10346511 2021-03-17 op {
743 10346511 2021-03-17 op switch (ts) {
744 de278567 2021-07-21 op case TS_UNKNOWN: return '-';
745 10346511 2021-03-17 op case TS_UNTRUSTED: return '!';
746 a2fd3805 2021-07-06 op case TS_TEMP_TRUSTED: return '!';
747 10346511 2021-03-17 op case TS_TRUSTED: return 'v';
748 10346511 2021-03-17 op case TS_VERIFIED: return 'V';
749 923f9ce5 2021-06-21 op default: return 'X';
750 10346511 2021-03-17 op }
751 8af5e5ed 2021-03-08 op }
752 8af5e5ed 2021-03-08 op
753 8af5e5ed 2021-03-08 op static void
754 48e9d457 2021-03-06 op redraw_modeline(struct tab *tab)
755 1d08c280 2021-03-06 op {
756 65340174 2021-07-21 op struct buffer *buffer;
757 481340cc 2021-03-11 op double pct;
758 48e9d457 2021-03-06 op int x, y, max_x, max_y;
759 65340174 2021-07-21 op const char *mode;
760 8af5e5ed 2021-03-08 op const char *spin = "-\\|/";
761 1d08c280 2021-03-06 op
762 65340174 2021-07-21 op buffer = current_buffer();
763 65340174 2021-07-21 op mode = buffer->page.name;
764 65340174 2021-07-21 op
765 156f1501 2021-03-13 op werase(modeline);
766 ab47e7d4 2021-06-24 op wattr_on(modeline, modeline_face.background, NULL);
767 48e9d457 2021-03-06 op wmove(modeline, 0, 0);
768 1d08c280 2021-03-06 op
769 10346511 2021-03-17 op wprintw(modeline, "-%c%c %s ",
770 2ba66cea 2021-03-22 op spin[tab->loading_anim_step],
771 10346511 2021-03-17 op trust_status_char(tab->trust),
772 58c75fab 2021-03-16 op mode == NULL ? "(none)" : mode);
773 481340cc 2021-03-11 op
774 65340174 2021-07-21 op pct = (buffer->line_off + buffer->curs_y) * 100.0
775 65340174 2021-07-21 op / buffer->line_max;
776 65340174 2021-07-21 op
777 65340174 2021-07-21 op if (buffer->line_max <= (size_t)body_lines)
778 95a8c791 2021-08-26 op wprintw(modeline, "All ");
779 65340174 2021-07-21 op else if (buffer->line_off == 0)
780 95a8c791 2021-08-26 op wprintw(modeline, "Top ");
781 65340174 2021-07-21 op else if (buffer->line_off + body_lines >= buffer->line_max)
782 481340cc 2021-03-11 op wprintw(modeline, "Bottom ");
783 481340cc 2021-03-11 op else
784 481340cc 2021-03-11 op wprintw(modeline, "%.0f%% ", pct);
785 481340cc 2021-03-11 op
786 481340cc 2021-03-11 op wprintw(modeline, "%d/%d %s ",
787 65340174 2021-07-21 op buffer->line_off + buffer->curs_y,
788 65340174 2021-07-21 op buffer->line_max,
789 2051e653 2021-03-13 op tab->hist_cur->h);
790 481340cc 2021-03-11 op
791 48e9d457 2021-03-06 op getyx(modeline, y, x);
792 48e9d457 2021-03-06 op getmaxyx(modeline, max_y, max_x);
793 48e9d457 2021-03-06 op
794 48e9d457 2021-03-06 op (void)y;
795 48e9d457 2021-03-06 op (void)max_y;
796 48e9d457 2021-03-06 op
797 48e9d457 2021-03-06 op for (; x < max_x; ++x)
798 48e9d457 2021-03-06 op waddstr(modeline, "-");
799 d5493194 2021-06-15 op
800 ab47e7d4 2021-06-24 op wattr_off(modeline, modeline_face.background, NULL);
801 9ca15951 2021-03-09 op }
802 9ca15951 2021-03-09 op
803 9ca15951 2021-03-09 op static void
804 e9af06b9 2021-07-12 op redraw_minibuffer(void)
805 9ca15951 2021-03-09 op {
806 8a7f2683 2021-07-10 op wattr_on(echoarea, minibuffer_face.background, NULL);
807 8a7f2683 2021-07-10 op werase(echoarea);
808 17e5106b 2021-03-21 op
809 e9af06b9 2021-07-12 op if (in_minibuffer)
810 e9af06b9 2021-07-12 op do_redraw_minibuffer();
811 e9af06b9 2021-07-12 op else
812 e9af06b9 2021-07-12 op do_redraw_echoarea();
813 9cb0f9ce 2021-03-10 op
814 b1e1e41a 2021-07-14 op if (in_minibuffer == MB_COMPREAD)
815 b1e1e41a 2021-07-14 op do_redraw_minibuffer_compl();
816 b1e1e41a 2021-07-14 op
817 e9af06b9 2021-07-12 op wattr_off(echoarea, minibuffer_face.background, NULL);
818 e9af06b9 2021-07-12 op }
819 9cb0f9ce 2021-03-10 op
820 e9af06b9 2021-07-12 op static void
821 e9af06b9 2021-07-12 op do_redraw_echoarea(void)
822 e9af06b9 2021-07-12 op {
823 83dce83d 2021-07-17 op struct vline *vl;
824 9cb0f9ce 2021-03-10 op
825 17e5106b 2021-03-21 op if (ministate.curmesg != NULL)
826 95a8c791 2021-08-26 op wprintw(echoarea, "%s", ministate.curmesg);
827 e9af06b9 2021-07-12 op else if (*keybuf != '\0')
828 8a7f2683 2021-07-10 op waddstr(echoarea, keybuf);
829 e9af06b9 2021-07-12 op else {
830 e9af06b9 2021-07-12 op /* If nothing else, show the URL at point */
831 83dce83d 2021-07-17 op vl = current_tab->buffer.current_line;
832 83dce83d 2021-07-17 op if (vl != NULL && vl->parent->type == LINE_LINK)
833 83dce83d 2021-07-17 op waddstr(echoarea, vl->parent->alt);
834 8300dd3c 2021-03-18 op }
835 e9af06b9 2021-07-12 op }
836 91a72220 2021-03-13 op
837 e9af06b9 2021-07-12 op static void
838 e9af06b9 2021-07-12 op do_redraw_minibuffer(void)
839 e9af06b9 2021-07-12 op {
840 738a231a 2021-07-24 op struct buffer *cmplbuf, *buffer;
841 e9af06b9 2021-07-12 op size_t off_y, off_x = 0;
842 e9af06b9 2021-07-12 op const char *start, *c;
843 d5493194 2021-06-15 op
844 738a231a 2021-07-24 op cmplbuf = &ministate.compl.buffer;
845 738a231a 2021-07-24 op buffer = &ministate.buffer;
846 738a231a 2021-07-24 op (void)off_y; /* unused, set by getyx */
847 e9af06b9 2021-07-12 op
848 35965938 2021-07-15 op wmove(echoarea, 0, 0);
849 35965938 2021-07-15 op
850 35965938 2021-07-15 op if (in_minibuffer == MB_COMPREAD)
851 35965938 2021-07-15 op wprintw(echoarea, "(%2d) ",
852 738a231a 2021-07-24 op cmplbuf->line_max);
853 35965938 2021-07-15 op
854 35965938 2021-07-15 op wprintw(echoarea, "%s", ministate.prompt);
855 e9af06b9 2021-07-12 op if (ministate.hist_cur != NULL)
856 e9af06b9 2021-07-12 op wprintw(echoarea, "(%zu/%zu) ",
857 e9af06b9 2021-07-12 op ministate.hist_off + 1,
858 e9af06b9 2021-07-12 op ministate.history->len);
859 e9af06b9 2021-07-12 op
860 e9af06b9 2021-07-12 op getyx(echoarea, off_y, off_x);
861 e9af06b9 2021-07-12 op
862 e9af06b9 2021-07-12 op start = ministate.hist_cur != NULL
863 e9af06b9 2021-07-12 op ? ministate.hist_cur->h
864 e9af06b9 2021-07-12 op : ministate.buf;
865 738a231a 2021-07-24 op c = utf8_nth(buffer->current_line->line, buffer->cpoff);
866 e9af06b9 2021-07-12 op while (utf8_swidth_between(start, c) > (size_t)COLS/2) {
867 e9af06b9 2021-07-12 op start = utf8_next_cp(start);
868 e9af06b9 2021-07-12 op }
869 e9af06b9 2021-07-12 op
870 e9af06b9 2021-07-12 op waddstr(echoarea, start);
871 e9af06b9 2021-07-12 op
872 e9af06b9 2021-07-12 op if (ministate.curmesg != NULL)
873 e9af06b9 2021-07-12 op wprintw(echoarea, " [%s]", ministate.curmesg);
874 e9af06b9 2021-07-12 op
875 e9af06b9 2021-07-12 op wmove(echoarea, 0, off_x + utf8_swidth_between(start, c));
876 b1e1e41a 2021-07-14 op }
877 b1e1e41a 2021-07-14 op
878 b1e1e41a 2021-07-14 op static void
879 b1e1e41a 2021-07-14 op do_redraw_minibuffer_compl(void)
880 b1e1e41a 2021-07-14 op {
881 bdb21d51 2021-07-21 op redraw_window(minibuffer, 0, 10, COLS,
882 b1e1e41a 2021-07-14 op &ministate.compl.buffer);
883 55df859f 2021-07-12 op }
884 55df859f 2021-07-12 op
885 55df859f 2021-07-12 op /*
886 55df859f 2021-07-12 op * Place the cursor in the right ncurses window. If soft is 1, use
887 4ff12389 2021-07-12 op * wnoutrefresh (which shouldn't cause any I/O); otherwise use
888 55df859f 2021-07-12 op * wrefresh.
889 55df859f 2021-07-12 op */
890 55df859f 2021-07-12 op static void
891 55df859f 2021-07-12 op place_cursor(int soft)
892 55df859f 2021-07-12 op {
893 4ff12389 2021-07-12 op int (*touch)(WINDOW *);
894 55df859f 2021-07-12 op
895 55df859f 2021-07-12 op if (soft)
896 55df859f 2021-07-12 op touch = wnoutrefresh;
897 55df859f 2021-07-12 op else
898 55df859f 2021-07-12 op touch = wrefresh;
899 55df859f 2021-07-12 op
900 55df859f 2021-07-12 op if (in_minibuffer) {
901 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT)
902 65340174 2021-07-21 op touch(help);
903 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM)
904 3b5f459e 2021-11-05 op touch(download);
905 65340174 2021-07-21 op touch(body);
906 65340174 2021-07-21 op touch(echoarea);
907 3b5f459e 2021-11-05 op } else if (in_side_window & SIDE_WINDOW_LEFT) {
908 55df859f 2021-07-12 op touch(body);
909 55df859f 2021-07-12 op touch(echoarea);
910 3b5f459e 2021-11-05 op if (in_side_window & SIDE_WINDOW_BOTTOM)
911 3b5f459e 2021-11-05 op touch(download);
912 65340174 2021-07-21 op touch(help);
913 3b5f459e 2021-11-05 op } else if (in_side_window & SIDE_WINDOW_BOTTOM) {
914 3b5f459e 2021-11-05 op touch(body);
915 3b5f459e 2021-11-05 op touch(echoarea);
916 3b5f459e 2021-11-05 op if (in_side_window & SIDE_WINDOW_LEFT)
917 65340174 2021-07-21 op touch(help);
918 3b5f459e 2021-11-05 op touch(download);
919 3b5f459e 2021-11-05 op } else {
920 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT)
921 3b5f459e 2021-11-05 op touch(help);
922 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM)
923 3b5f459e 2021-11-05 op touch(download);
924 55df859f 2021-07-12 op touch(echoarea);
925 55df859f 2021-07-12 op touch(body);
926 55df859f 2021-07-12 op }
927 48e9d457 2021-03-06 op }
928 48e9d457 2021-03-06 op
929 48e9d457 2021-03-06 op static void
930 48e9d457 2021-03-06 op redraw_tab(struct tab *tab)
931 48e9d457 2021-03-06 op {
932 23f22c83 2021-07-13 op if (too_small)
933 23f22c83 2021-07-13 op return;
934 23f22c83 2021-07-13 op
935 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT) {
936 bddc7bbd 2021-04-01 op redraw_help();
937 bddc7bbd 2021-04-01 op wnoutrefresh(help);
938 bddc7bbd 2021-04-01 op }
939 bddc7bbd 2021-04-01 op
940 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM) {
941 3b5f459e 2021-11-05 op redraw_download();
942 3b5f459e 2021-11-05 op wnoutrefresh(download);
943 3b5f459e 2021-11-05 op }
944 3b5f459e 2021-11-05 op
945 56168aa8 2021-08-18 op if (show_tab_bar)
946 56168aa8 2021-08-18 op redraw_tabline();
947 56168aa8 2021-08-18 op
948 e19f9a04 2021-03-11 op redraw_body(tab);
949 e19f9a04 2021-03-11 op redraw_modeline(tab);
950 e9af06b9 2021-07-12 op redraw_minibuffer();
951 e19f9a04 2021-03-11 op
952 bddc7bbd 2021-04-01 op wnoutrefresh(tabline);
953 bddc7bbd 2021-04-01 op wnoutrefresh(modeline);
954 e19f9a04 2021-03-11 op
955 b1e1e41a 2021-07-14 op if (in_minibuffer == MB_COMPREAD)
956 b1e1e41a 2021-07-14 op wnoutrefresh(minibuffer);
957 b1e1e41a 2021-07-14 op
958 55df859f 2021-07-12 op place_cursor(1);
959 bddc7bbd 2021-04-01 op
960 bddc7bbd 2021-04-01 op doupdate();
961 9886bf97 2021-07-17 op
962 9886bf97 2021-07-17 op if (set_title)
963 47f9af78 2021-08-14 op dprintf(1, "\033]2;%s - Telescope\a",
964 9886bf97 2021-07-17 op current_tab->buffer.page.title);
965 e19f9a04 2021-03-11 op }
966 48e9d457 2021-03-06 op
967 7f963c41 2021-06-20 op void
968 8af5e5ed 2021-03-08 op start_loading_anim(struct tab *tab)
969 8af5e5ed 2021-03-08 op {
970 2ba66cea 2021-03-22 op if (tab->loading_anim)
971 8af5e5ed 2021-03-08 op return;
972 2ba66cea 2021-03-22 op tab->loading_anim = 1;
973 2ba66cea 2021-03-22 op evtimer_set(&tab->loadingev, update_loading_anim, tab);
974 2ba66cea 2021-03-22 op evtimer_add(&tab->loadingev, &loadingev_timer);
975 8af5e5ed 2021-03-08 op }
976 8af5e5ed 2021-03-08 op
977 8af5e5ed 2021-03-08 op static void
978 8af5e5ed 2021-03-08 op update_loading_anim(int fd, short ev, void *d)
979 8af5e5ed 2021-03-08 op {
980 8af5e5ed 2021-03-08 op struct tab *tab = d;
981 8af5e5ed 2021-03-08 op
982 2ba66cea 2021-03-22 op tab->loading_anim_step = (tab->loading_anim_step+1)%4;
983 9ca15951 2021-03-09 op
984 83dce83d 2021-07-17 op if (tab == current_tab) {
985 6347dcd0 2021-03-16 op redraw_modeline(tab);
986 6347dcd0 2021-03-16 op wrefresh(modeline);
987 6347dcd0 2021-03-16 op wrefresh(body);
988 6347dcd0 2021-03-16 op if (in_minibuffer)
989 8a7f2683 2021-07-10 op wrefresh(echoarea);
990 6347dcd0 2021-03-16 op }
991 8af5e5ed 2021-03-08 op
992 2ba66cea 2021-03-22 op evtimer_add(&tab->loadingev, &loadingev_timer);
993 8af5e5ed 2021-03-08 op }
994 8af5e5ed 2021-03-08 op
995 8af5e5ed 2021-03-08 op static void
996 8af5e5ed 2021-03-08 op stop_loading_anim(struct tab *tab)
997 8af5e5ed 2021-03-08 op {
998 2ba66cea 2021-03-22 op if (!tab->loading_anim)
999 8af5e5ed 2021-03-08 op return;
1000 2ba66cea 2021-03-22 op evtimer_del(&tab->loadingev);
1001 2ba66cea 2021-03-22 op tab->loading_anim = 0;
1002 2ba66cea 2021-03-22 op tab->loading_anim_step = 0;
1003 3d8c2326 2021-03-18 op
1004 83dce83d 2021-07-17 op if (tab != current_tab)
1005 3d8c2326 2021-03-18 op return;
1006 43a1b8d0 2021-03-09 op
1007 43a1b8d0 2021-03-09 op redraw_modeline(tab);
1008 9ca15951 2021-03-09 op
1009 43a1b8d0 2021-03-09 op wrefresh(modeline);
1010 43a1b8d0 2021-03-09 op wrefresh(body);
1011 9ca15951 2021-03-09 op if (in_minibuffer)
1012 8a7f2683 2021-07-10 op wrefresh(echoarea);
1013 9ca15951 2021-03-09 op }
1014 9ca15951 2021-03-09 op
1015 1853ee50 2021-07-15 op int
1016 1853ee50 2021-07-15 op ui_print_colors(void)
1017 1853ee50 2021-07-15 op {
1018 1853ee50 2021-07-15 op int colors = 0, pairs = 0, can_change = 0;
1019 1853ee50 2021-07-15 op int columns = 16, lines, color, i, j;
1020 1853ee50 2021-07-15 op
1021 1853ee50 2021-07-15 op initscr();
1022 1853ee50 2021-07-15 op if (has_colors()) {
1023 1853ee50 2021-07-15 op start_color();
1024 1853ee50 2021-07-15 op use_default_colors();
1025 1853ee50 2021-07-15 op
1026 1853ee50 2021-07-15 op colors = COLORS;
1027 1853ee50 2021-07-15 op pairs = COLOR_PAIRS;
1028 1853ee50 2021-07-15 op can_change = can_change_color();
1029 1853ee50 2021-07-15 op }
1030 1853ee50 2021-07-15 op endwin();
1031 1853ee50 2021-07-15 op
1032 1853ee50 2021-07-15 op printf("Term info:\n");
1033 1853ee50 2021-07-15 op printf("TERM=%s COLORS=%d COLOR_PAIRS=%d can_change_colors=%d\n",
1034 1853ee50 2021-07-15 op getenv("TERM"), colors, pairs, can_change);
1035 1853ee50 2021-07-15 op printf("\n");
1036 1853ee50 2021-07-15 op
1037 1853ee50 2021-07-15 op if (colors == 0) {
1038 1853ee50 2021-07-15 op printf("No color support\n");
1039 1853ee50 2021-07-15 op return 0;
1040 1853ee50 2021-07-15 op }
1041 1853ee50 2021-07-15 op
1042 1853ee50 2021-07-15 op printf("Available colors:\n\n");
1043 1853ee50 2021-07-15 op lines = (colors - 1) / columns + 1;
1044 1853ee50 2021-07-15 op color = 0;
1045 1853ee50 2021-07-15 op for (i = 0; i < lines; ++i) {
1046 1853ee50 2021-07-15 op for (j = 0; j < columns; ++j, ++color) {
1047 1853ee50 2021-07-15 op printf("\033[0;38;5;%dm %03d", color, color);
1048 1853ee50 2021-07-15 op }
1049 1853ee50 2021-07-15 op printf("\n");
1050 1853ee50 2021-07-15 op }
1051 1853ee50 2021-07-15 op
1052 1853ee50 2021-07-15 op printf("\033[0m");
1053 1853ee50 2021-07-15 op fflush(stdout);
1054 1853ee50 2021-07-15 op return 0;
1055 5e11c00c 2021-03-02 op }
1056 5e11c00c 2021-03-02 op
1057 941b3761 2021-03-18 op int
1058 d2544989 2021-07-08 op ui_init()
1059 941b3761 2021-03-18 op {
1060 5e11c00c 2021-03-02 op setlocale(LC_ALL, "");
1061 4bc446b9 2021-07-21 op
1062 1fa16111 2021-08-12 op if (TAILQ_EMPTY(&global_map.m)) {
1063 1fa16111 2021-08-12 op fprintf(stderr, "no keys defined!\n");
1064 1fa16111 2021-08-12 op return 0;
1065 1fa16111 2021-08-12 op }
1066 1fa16111 2021-08-12 op
1067 4bc446b9 2021-07-21 op minibuffer_init();
1068 2ba66cea 2021-03-22 op
1069 3b5f459e 2021-11-05 op /* initialize download window */
1070 3b5f459e 2021-11-05 op TAILQ_INIT(&downloadwin.head);
1071 3b5f459e 2021-11-05 op TAILQ_INIT(&downloadwin.page.head);
1072 3b5f459e 2021-11-05 op
1073 bddc7bbd 2021-04-01 op /* initialize help window */
1074 bddc7bbd 2021-04-01 op TAILQ_INIT(&helpwin.head);
1075 78894e73 2021-08-12 op TAILQ_INIT(&helpwin.page.head);
1076 bddc7bbd 2021-04-01 op
1077 9ca15951 2021-03-09 op base_map = &global_map;
1078 f832146f 2021-03-09 op current_map = &global_map;
1079 f832146f 2021-03-09 op
1080 5e11c00c 2021-03-02 op initscr();
1081 74a2587f 2021-06-21 op
1082 74a2587f 2021-06-21 op if (enable_colors) {
1083 74a2587f 2021-06-21 op if (has_colors()) {
1084 74a2587f 2021-06-21 op start_color();
1085 160abe04 2021-06-21 op use_default_colors();
1086 f3bcf8f2 2021-06-21 op } else
1087 74a2587f 2021-06-21 op enable_colors = 0;
1088 f3bcf8f2 2021-06-21 op }
1089 74a2587f 2021-06-21 op
1090 42d61f50 2021-06-24 op config_apply_style();
1091 42d61f50 2021-06-24 op
1092 15e1b108 2021-03-02 op raw();
1093 5e11c00c 2021-03-02 op noecho();
1094 5e11c00c 2021-03-02 op nonl();
1095 5e11c00c 2021-03-02 op intrflush(stdscr, FALSE);
1096 5e11c00c 2021-03-02 op
1097 3cea4ff5 2021-08-18 op if ((tabline = newwin(1, 1, 0, 0)) == NULL)
1098 48e9d457 2021-03-06 op return 0;
1099 3cea4ff5 2021-08-18 op if ((body = newwin(1, 1, 0, 0)) == NULL)
1100 48e9d457 2021-03-06 op return 0;
1101 3cea4ff5 2021-08-18 op if ((modeline = newwin(1, 1, 0, 0)) == NULL)
1102 e5a2797f 2021-07-13 op return 0;
1103 3cea4ff5 2021-08-18 op if ((echoarea = newwin(1, 1, 0, 0)) == NULL)
1104 3cea4ff5 2021-08-18 op return 0;
1105 3cea4ff5 2021-08-18 op if ((minibuffer = newwin(1, 1, 0, 0)) == NULL)
1106 48e9d457 2021-03-06 op return 0;
1107 3b5f459e 2021-11-05 op if ((download = newwin(1, 1, 0, 0)) == NULL)
1108 3b5f459e 2021-11-05 op return 0;
1109 3cea4ff5 2021-08-18 op if ((help = newwin(1, 1, 0, 0)) == NULL)
1110 bddc7bbd 2021-04-01 op return 0;
1111 1d08c280 2021-03-06 op
1112 b598590d 2021-06-21 op wbkgd(body, body_face.body);
1113 8a7f2683 2021-07-10 op wbkgd(echoarea, minibuffer_face.background);
1114 72b18268 2021-06-19 op
1115 72b18268 2021-06-19 op update_x_offset();
1116 48e9d457 2021-03-06 op
1117 43a1b8d0 2021-03-09 op keypad(body, TRUE);
1118 f3bcf8f2 2021-06-21 op scrollok(body, FALSE);
1119 48e9d457 2021-03-06 op
1120 5e11c00c 2021-03-02 op /* non-blocking input */
1121 48e9d457 2021-03-06 op wtimeout(body, 0);
1122 65340174 2021-07-21 op wtimeout(help, 0);
1123 5e11c00c 2021-03-02 op
1124 48e9d457 2021-03-06 op mvwprintw(body, 0, 0, "");
1125 5e11c00c 2021-03-02 op
1126 db1e7fc6 2021-07-16 op evtimer_set(&resizeev, handle_resize, NULL);
1127 db1e7fc6 2021-07-16 op
1128 5e11c00c 2021-03-02 op event_set(&stdioev, 0, EV_READ | EV_PERSIST, dispatch_stdio, NULL);
1129 5e11c00c 2021-03-02 op event_add(&stdioev, NULL);
1130 5e11c00c 2021-03-02 op
1131 5e11c00c 2021-03-02 op signal_set(&winchev, SIGWINCH, handle_resize, NULL);
1132 5e11c00c 2021-03-02 op signal_add(&winchev, NULL);
1133 5e11c00c 2021-03-02 op
1134 1d08c280 2021-03-06 op return 1;
1135 87e3e801 2021-07-17 op }
1136 87e3e801 2021-07-17 op
1137 87e3e801 2021-07-17 op void
1138 2ddbda6b 2021-07-17 op ui_main_loop(void)
1139 87e3e801 2021-07-17 op {
1140 2ddbda6b 2021-07-17 op switch_to_tab(current_tab);
1141 3cea4ff5 2021-08-18 op rearrange_windows();
1142 2ddbda6b 2021-07-17 op
1143 2ddbda6b 2021-07-17 op event_dispatch();
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 5e11c00c 2021-03-02 op }
1168 5e11c00c 2021-03-02 op
1169 2b2d2872 2021-06-20 op const char *
1170 2b2d2872 2021-06-20 op ui_keyname(int k)
1171 2b2d2872 2021-06-20 op {
1172 2b2d2872 2021-06-20 op return keyname(k);
1173 2b2d2872 2021-06-20 op }
1174 2b2d2872 2021-06-20 op
1175 5e11c00c 2021-03-02 op void
1176 3b5f459e 2021-11-05 op ui_toggle_side_window(int kind)
1177 2b2d2872 2021-06-20 op {
1178 3b5f459e 2021-11-05 op if (in_side_window & kind)
1179 3b5f459e 2021-11-05 op ui_other_window();
1180 3b5f459e 2021-11-05 op
1181 3b5f459e 2021-11-05 op side_window ^= kind;
1182 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT)
1183 2b2d2872 2021-06-20 op recompute_help();
1184 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM)
1185 3b5f459e 2021-11-05 op recompute_downloads();
1186 960b01da 2021-06-20 op
1187 960b01da 2021-06-20 op /*
1188 960b01da 2021-06-20 op * ugly hack, but otherwise the window doesn't get updated
1189 32c6c75e 2021-07-15 op * until I call rearrange_windows a second time (e.g. via
1190 32c6c75e 2021-07-15 op * C-l). I will be happy to know why something like this is
1191 32c6c75e 2021-07-15 op * needed.
1192 960b01da 2021-06-20 op */
1193 32c6c75e 2021-07-15 op rearrange_windows();
1194 32c6c75e 2021-07-15 op rearrange_windows();
1195 2b2d2872 2021-06-20 op }
1196 2b2d2872 2021-06-20 op
1197 2b2d2872 2021-06-20 op void
1198 2b2d2872 2021-06-20 op ui_schedule_redraw(void)
1199 2b2d2872 2021-06-20 op {
1200 32c6c75e 2021-07-15 op should_rearrange_windows = 1;
1201 2b2d2872 2021-06-20 op }
1202 2b2d2872 2021-06-20 op
1203 2b2d2872 2021-06-20 op void
1204 9a28e7e5 2021-08-03 op ui_require_input(struct tab *tab, int hide, int proto)
1205 5cd2ebb1 2021-03-11 op {
1206 9a28e7e5 2021-08-03 op void (*fn)(void);
1207 9a28e7e5 2021-08-03 op
1208 9a28e7e5 2021-08-03 op if (proto == PROTO_GEMINI)
1209 9a28e7e5 2021-08-03 op fn = ir_select_gemini;
1210 9a28e7e5 2021-08-03 op else if (proto == PROTO_GOPHER)
1211 9a28e7e5 2021-08-03 op fn = ir_select_gopher;
1212 9a28e7e5 2021-08-03 op else
1213 9a28e7e5 2021-08-03 op abort();
1214 9a28e7e5 2021-08-03 op
1215 5cd2ebb1 2021-03-11 op /* TODO: hard-switching to another tab is ugly */
1216 5cd2ebb1 2021-03-11 op switch_to_tab(tab);
1217 5cd2ebb1 2021-03-11 op
1218 9a28e7e5 2021-08-03 op enter_minibuffer(sensible_self_insert, fn, exit_minibuffer,
1219 e5a2797f 2021-07-13 op &ir_history, NULL, NULL);
1220 5cd2ebb1 2021-03-11 op strlcpy(ministate.prompt, "Input required: ",
1221 5cd2ebb1 2021-03-11 op sizeof(ministate.prompt));
1222 5cd2ebb1 2021-03-11 op redraw_tab(tab);
1223 5cd2ebb1 2021-03-11 op }
1224 5cd2ebb1 2021-03-11 op
1225 5cd2ebb1 2021-03-11 op void
1226 4bc446b9 2021-07-21 op ui_after_message_hook(void)
1227 4bc446b9 2021-07-21 op {
1228 4bc446b9 2021-07-21 op redraw_minibuffer();
1229 4bc446b9 2021-07-21 op place_cursor(0);
1230 4bc446b9 2021-07-21 op }
1231 4bc446b9 2021-07-21 op
1232 4bc446b9 2021-07-21 op void
1233 a2fd3805 2021-07-06 op ui_yornp(const char *prompt, void (*fn)(int, struct tab *),
1234 a2fd3805 2021-07-06 op struct tab *data)
1235 5d1bac73 2021-03-25 op {
1236 84b88039 2021-07-12 op yornp(prompt, fn, data);
1237 83dce83d 2021-07-17 op redraw_tab(current_tab);
1238 5d1bac73 2021-03-25 op }
1239 5d1bac73 2021-03-25 op
1240 5d1bac73 2021-03-25 op void
1241 d1353324 2021-07-13 op ui_read(const char *prompt, void (*fn)(const char*, struct tab *),
1242 bb9912eb 2021-08-29 op struct tab *data, const char *input)
1243 de2a69bb 2021-05-17 op {
1244 4bc446b9 2021-07-21 op minibuffer_read(prompt, fn, data);
1245 bb9912eb 2021-08-29 op
1246 bb9912eb 2021-08-29 op if (input != NULL) {
1247 bb9912eb 2021-08-29 op strlcpy(ministate.buf, input, sizeof(ministate.buf));
1248 bb9912eb 2021-08-29 op cmd_move_end_of_line(&ministate.buffer);
1249 bb9912eb 2021-08-29 op }
1250 bb9912eb 2021-08-29 op
1251 83dce83d 2021-07-17 op redraw_tab(current_tab);
1252 8a3b5609 2021-07-15 op }
1253 8a3b5609 2021-07-15 op
1254 8a3b5609 2021-07-15 op void
1255 65340174 2021-07-21 op ui_other_window(void)
1256 65340174 2021-07-21 op {
1257 3b5f459e 2021-11-05 op if (in_side_window & SIDE_WINDOW_LEFT &&
1258 3b5f459e 2021-11-05 op side_window & SIDE_WINDOW_BOTTOM)
1259 3b5f459e 2021-11-05 op in_side_window = SIDE_WINDOW_BOTTOM;
1260 3b5f459e 2021-11-05 op else if (in_side_window)
1261 3b5f459e 2021-11-05 op in_side_window = 0;
1262 3b5f459e 2021-11-05 op else if (!in_side_window && side_window & SIDE_WINDOW_LEFT)
1263 3b5f459e 2021-11-05 op in_side_window = SIDE_WINDOW_LEFT;
1264 3b5f459e 2021-11-05 op else if (!in_side_window && side_window)
1265 3b5f459e 2021-11-05 op in_side_window = SIDE_WINDOW_BOTTOM;
1266 65340174 2021-07-21 op else
1267 65340174 2021-07-21 op message("No other window to select");
1268 65340174 2021-07-21 op }
1269 65340174 2021-07-21 op
1270 65340174 2021-07-21 op void
1271 8a3b5609 2021-07-15 op ui_suspend(void)
1272 8a3b5609 2021-07-15 op {
1273 8a3b5609 2021-07-15 op endwin();
1274 8a3b5609 2021-07-15 op
1275 4bac9926 2021-07-15 op kill(getpid(), SIGSTOP);
1276 8a3b5609 2021-07-15 op
1277 8a3b5609 2021-07-15 op refresh();
1278 8a3b5609 2021-07-15 op clear();
1279 8a3b5609 2021-07-15 op rearrange_windows();
1280 740f578b 2021-03-15 op }
1281 740f578b 2021-03-15 op
1282 740f578b 2021-03-15 op void
1283 5e11c00c 2021-03-02 op ui_end(void)
1284 5e11c00c 2021-03-02 op {
1285 5e11c00c 2021-03-02 op endwin();
1286 5e11c00c 2021-03-02 op }