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 1577540c 2021-11-05 op vl->parent->type != LINE_HELP &&
441 1577540c 2021-11-05 op vl->parent->type != LINE_DOWNLOAD &&
442 1577540c 2021-11-05 op vl->parent->type != LINE_DOWNLOAD_DONE &&
443 1577540c 2021-11-05 op vl->parent->type != LINE_DOWNLOAD_INFO)
444 b3be07ea 2021-07-18 op return;
445 6ca7e1b6 2021-07-16 op
446 b3be07ea 2021-07-18 op if (vl->parent->alt == NULL)
447 b3be07ea 2021-07-18 op return;
448 b3be07ea 2021-07-18 op
449 b3be07ea 2021-07-18 op (void)y;
450 b3be07ea 2021-07-18 op getyx(window, y, x);
451 b3be07ea 2021-07-18 op
452 1577540c 2021-11-05 op switch (vl->parent->type) {
453 1577540c 2021-11-05 op case LINE_HELP:
454 1577540c 2021-11-05 op case LINE_DOWNLOAD:
455 1577540c 2021-11-05 op case LINE_DOWNLOAD_DONE:
456 1577540c 2021-11-05 op case LINE_DOWNLOAD_INFO:
457 1577540c 2021-11-05 op goal = 8;
458 1577540c 2021-11-05 op break;
459 1577540c 2021-11-05 op default:
460 c6be26e4 2021-07-21 op goal = width/2;
461 1577540c 2021-11-05 op }
462 c6be26e4 2021-07-21 op
463 b3be07ea 2021-07-18 op if (goal <= x)
464 b3be07ea 2021-07-18 op wprintw(window, " ");
465 b3be07ea 2021-07-18 op for (; goal > x; ++x)
466 b3be07ea 2021-07-18 op wprintw(window, " ");
467 b3be07ea 2021-07-18 op
468 b3be07ea 2021-07-18 op wprintw(window, "%s", vl->parent->alt);
469 b3be07ea 2021-07-18 op }
470 b3be07ea 2021-07-18 op
471 fbadd395 2021-07-16 op /*
472 fbadd395 2021-07-16 op * Core part of the rendering. It prints a vline starting from the
473 fbadd395 2021-07-16 op * current cursor position. Printing a vline consists of skipping
474 fbadd395 2021-07-16 op * `off' columns (for olivetti-mode), print the correct prefix (which
475 fbadd395 2021-07-16 op * may be the emoji in case of emojified links-lines), printing the
476 fbadd395 2021-07-16 op * text itself, filling until width - off and filling off columns
477 fbadd395 2021-07-16 op * again.
478 fbadd395 2021-07-16 op */
479 754622a2 2021-03-15 op static void
480 f3bcf8f2 2021-06-21 op print_vline(int off, int width, WINDOW *window, struct vline *vl)
481 1d08c280 2021-03-06 op {
482 fbadd395 2021-07-16 op /*
483 fbadd395 2021-07-16 op * Believe me or not, I've seen emoji ten code points long!
484 fbadd395 2021-07-16 op * That means, to stay large, 4*10 bytes + NUL.
485 fbadd395 2021-07-16 op */
486 fbadd395 2021-07-16 op char emojibuf[41] = {0};
487 fbadd395 2021-07-16 op const char *text, *prfx;
488 2af29222 2021-06-24 op struct line_face *f;
489 6ca7e1b6 2021-07-16 op int i, left, x, y;
490 bd9637e9 2021-03-06 op
491 2af29222 2021-06-24 op f = &line_faces[vl->parent->type];
492 2af29222 2021-06-24 op
493 d89b86d6 2021-06-21 op /* unused, set by getyx */
494 f3bcf8f2 2021-06-21 op (void)y;
495 f3bcf8f2 2021-06-21 op
496 6ca7e1b6 2021-07-16 op line_prefix_and_text(vl, emojibuf, sizeof(emojibuf), &prfx, &text);
497 768db5bb 2021-03-12 op
498 ab47e7d4 2021-06-24 op wattr_on(window, body_face.left, NULL);
499 f3bcf8f2 2021-06-21 op for (i = 0; i < off; i++)
500 f3bcf8f2 2021-06-21 op waddch(window, ' ');
501 ab47e7d4 2021-06-24 op wattr_off(window, body_face.left, NULL);
502 ab47e7d4 2021-06-24 op
503 2af29222 2021-06-24 op wattr_on(window, f->prefix, NULL);
504 6ca7e1b6 2021-07-16 op wprintw(window, "%s", prfx);
505 2af29222 2021-06-24 op wattr_off(window, f->prefix, NULL);
506 803ff456 2021-03-17 op
507 2af29222 2021-06-24 op wattr_on(window, f->text, NULL);
508 6ca7e1b6 2021-07-16 op wprintw(window, "%s", text);
509 b3be07ea 2021-07-18 op print_vline_descr(width, window, vl);
510 2af29222 2021-06-24 op wattr_off(window, f->text, NULL);
511 f3bcf8f2 2021-06-21 op
512 f3bcf8f2 2021-06-21 op getyx(window, y, x);
513 f3bcf8f2 2021-06-21 op
514 f3bcf8f2 2021-06-21 op left = width - x;
515 f3bcf8f2 2021-06-21 op
516 2af29222 2021-06-24 op wattr_on(window, f->trail, NULL);
517 04d32eda 2021-07-08 op for (i = 0; i < left - off; ++i)
518 f3bcf8f2 2021-06-21 op waddch(window, ' ');
519 2af29222 2021-06-24 op wattr_off(window, f->trail, NULL);
520 160abe04 2021-06-21 op
521 ab47e7d4 2021-06-24 op wattr_on(window, body_face.right, NULL);
522 160abe04 2021-06-21 op for (i = 0; i < off; i++)
523 160abe04 2021-06-21 op waddch(window, ' ');
524 ab47e7d4 2021-06-24 op wattr_off(window, body_face.right, NULL);
525 f3bcf8f2 2021-06-21 op
526 1d08c280 2021-03-06 op }
527 1d08c280 2021-03-06 op
528 1d08c280 2021-03-06 op static void
529 8af5e5ed 2021-03-08 op redraw_tabline(void)
530 8af5e5ed 2021-03-08 op {
531 7c7d7bb7 2021-03-10 op struct tab *tab;
532 8f127baa 2021-04-22 op size_t toskip, ots, tabwidth, space, x;
533 ce6d5335 2021-07-16 op int current, y, truncated, pair;
534 dc5df781 2021-03-13 op const char *title;
535 119f393c 2021-03-16 op char buf[25];
536 7c7d7bb7 2021-03-10 op
537 923f9ce5 2021-06-21 op x = 0;
538 923f9ce5 2021-06-21 op
539 923f9ce5 2021-06-21 op /* unused, but setted by a getyx */
540 923f9ce5 2021-06-21 op (void)y;
541 923f9ce5 2021-06-21 op
542 8f127baa 2021-04-22 op tabwidth = sizeof(buf)+1;
543 8f127baa 2021-04-22 op space = COLS-2;
544 8f127baa 2021-04-22 op
545 a636f50e 2021-03-16 op toskip = 0;
546 a636f50e 2021-03-16 op TAILQ_FOREACH(tab, &tabshead, tabs) {
547 a636f50e 2021-03-16 op toskip++;
548 83dce83d 2021-07-17 op if (tab == current_tab)
549 a636f50e 2021-03-16 op break;
550 a636f50e 2021-03-16 op }
551 8f127baa 2021-04-22 op
552 8f127baa 2021-04-22 op if (toskip * tabwidth < space)
553 8f127baa 2021-04-22 op toskip = 0;
554 8f127baa 2021-04-22 op else {
555 8f127baa 2021-04-22 op ots = toskip;
556 a636f50e 2021-03-16 op toskip--;
557 95a8c791 2021-08-26 op while (toskip != 0 &&
558 8f127baa 2021-04-22 op (ots - toskip+1) * tabwidth < space)
559 8f127baa 2021-04-22 op toskip--;
560 8f127baa 2021-04-22 op }
561 7c7d7bb7 2021-03-10 op
562 a636f50e 2021-03-16 op werase(tabline);
563 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.background, NULL);
564 a636f50e 2021-03-16 op wprintw(tabline, toskip == 0 ? " " : "<");
565 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.background, NULL);
566 a636f50e 2021-03-16 op
567 a636f50e 2021-03-16 op truncated = 0;
568 7c7d7bb7 2021-03-10 op TAILQ_FOREACH(tab, &tabshead, tabs) {
569 a636f50e 2021-03-16 op if (truncated)
570 a636f50e 2021-03-16 op break;
571 a636f50e 2021-03-16 op if (toskip != 0) {
572 a636f50e 2021-03-16 op toskip--;
573 a636f50e 2021-03-16 op continue;
574 a636f50e 2021-03-16 op }
575 a636f50e 2021-03-16 op
576 a636f50e 2021-03-16 op getyx(tabline, y, x);
577 a636f50e 2021-03-16 op if (x + sizeof(buf)+2 >= (size_t)COLS)
578 a636f50e 2021-03-16 op truncated = 1;
579 a636f50e 2021-03-16 op
580 83dce83d 2021-07-17 op current = tab == current_tab;
581 a329982b 2021-03-11 op
582 46f6e974 2021-05-17 op if (*(title = tab->buffer.page.title) == '\0')
583 2051e653 2021-03-13 op title = tab->hist_cur->h;
584 dc5df781 2021-03-13 op
585 e8a76665 2021-05-12 op if (tab->flags & TAB_URGENT)
586 e8a76665 2021-05-12 op strlcpy(buf, "!", sizeof(buf));
587 e8a76665 2021-05-12 op else
588 e8a76665 2021-05-12 op strlcpy(buf, " ", sizeof(buf));
589 e8a76665 2021-05-12 op
590 95a8c791 2021-08-26 op if (strlcat(buf, title, sizeof(buf)) >= sizeof(buf)) {
591 119f393c 2021-03-16 op /* truncation happens */
592 119f393c 2021-03-16 op strlcpy(&buf[sizeof(buf)-4], "...", 4);
593 119f393c 2021-03-16 op } else {
594 119f393c 2021-03-16 op /* pad with spaces */
595 119f393c 2021-03-16 op while (strlcat(buf, " ", sizeof(buf)) < sizeof(buf))
596 119f393c 2021-03-16 op /* nop */ ;
597 119f393c 2021-03-16 op }
598 119f393c 2021-03-16 op
599 ce6d5335 2021-07-16 op pair = current ? tab_face.current : tab_face.tab;
600 ce6d5335 2021-07-16 op wattr_on(tabline, pair, NULL);
601 119f393c 2021-03-16 op wprintw(tabline, "%s", buf);
602 ce6d5335 2021-07-16 op wattr_off(tabline, pair, NULL);
603 ce6d5335 2021-07-16 op
604 ce6d5335 2021-07-16 op wattr_on(tabline, tab_face.background, NULL);
605 119f393c 2021-03-16 op if (TAILQ_NEXT(tab, tabs) != NULL)
606 05bc942e 2021-07-23 op wprintw(tabline, "┃");
607 ce6d5335 2021-07-16 op wattr_off(tabline, tab_face.background, NULL);
608 7c7d7bb7 2021-03-10 op }
609 119f393c 2021-03-16 op
610 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.background, NULL);
611 8f127baa 2021-04-22 op for (; x < (size_t)COLS; ++x)
612 119f393c 2021-03-16 op waddch(tabline, ' ');
613 a636f50e 2021-03-16 op if (truncated)
614 a636f50e 2021-03-16 op mvwprintw(tabline, 0, COLS-1, ">");
615 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.background, NULL);
616 10346511 2021-03-17 op }
617 77dd24f4 2021-07-05 op
618 77dd24f4 2021-07-05 op /*
619 77dd24f4 2021-07-05 op * Compute the first visible line around vl. Try to search forward
620 77dd24f4 2021-07-05 op * until the end of the buffer; if a visible line is not found, search
621 77dd24f4 2021-07-05 op * backward. Return NULL if no viable line was found.
622 77dd24f4 2021-07-05 op */
623 e7b982f4 2021-07-14 op struct vline *
624 77dd24f4 2021-07-05 op adjust_line(struct vline *vl, struct buffer *buffer)
625 77dd24f4 2021-07-05 op {
626 77dd24f4 2021-07-05 op struct vline *t;
627 10346511 2021-03-17 op
628 b1e1e41a 2021-07-14 op if (vl == NULL)
629 b1e1e41a 2021-07-14 op return NULL;
630 b1e1e41a 2021-07-14 op
631 77dd24f4 2021-07-05 op if (!(vl->parent->flags & L_HIDDEN))
632 77dd24f4 2021-07-05 op return vl;
633 77dd24f4 2021-07-05 op
634 77dd24f4 2021-07-05 op /* search forward */
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_NEXT(t, vlines))
638 77dd24f4 2021-07-05 op ; /* nop */
639 77dd24f4 2021-07-05 op
640 77dd24f4 2021-07-05 op if (t != NULL)
641 77dd24f4 2021-07-05 op return t;
642 77dd24f4 2021-07-05 op
643 77dd24f4 2021-07-05 op /* search backward */
644 77dd24f4 2021-07-05 op for (t = vl;
645 77dd24f4 2021-07-05 op t != NULL && t->parent->flags & L_HIDDEN;
646 77dd24f4 2021-07-05 op t = TAILQ_PREV(t, vhead, vlines))
647 77dd24f4 2021-07-05 op ; /* nop */
648 77dd24f4 2021-07-05 op
649 77dd24f4 2021-07-05 op return t;
650 77dd24f4 2021-07-05 op }
651 77dd24f4 2021-07-05 op
652 bddc7bbd 2021-04-01 op static void
653 002b074d 2021-08-14 op redraw_window(WINDOW *win, int off, int height, int width,
654 002b074d 2021-08-14 op struct buffer *buffer)
655 bddc7bbd 2021-04-01 op {
656 1a8f0d27 2021-07-20 op struct vline *vl;
657 2bfa414d 2021-07-01 op int l, onscreen;
658 13e8b82f 2021-07-01 op
659 0a805b02 2021-07-01 op restore_curs_x(buffer);
660 a00b4c97 2021-06-20 op
661 a00b4c97 2021-06-20 op /*
662 0a805b02 2021-07-01 op * TODO: ignoring buffer->force_update and always
663 0a805b02 2021-07-01 op * re-rendering. In theory we can recompute the y position
664 0a805b02 2021-07-01 op * without a re-render, and optimize here. It's not the only
665 0a805b02 2021-07-01 op * optimisation possible here, wscrl wolud also be an
666 0a805b02 2021-07-01 op * interesting one.
667 a00b4c97 2021-06-20 op */
668 bddc7bbd 2021-04-01 op
669 2bfa414d 2021-07-01 op again:
670 bddc7bbd 2021-04-01 op werase(win);
671 2bfa414d 2021-07-01 op buffer->curs_y = 0;
672 a00b4c97 2021-06-20 op
673 46f6e974 2021-05-17 op if (TAILQ_EMPTY(&buffer->head))
674 77dd24f4 2021-07-05 op goto end;
675 77dd24f4 2021-07-05 op
676 b1e1e41a 2021-07-14 op if (buffer->top_line == NULL)
677 b1e1e41a 2021-07-14 op buffer->top_line = TAILQ_FIRST(&buffer->head);
678 b1e1e41a 2021-07-14 op
679 77dd24f4 2021-07-05 op buffer->top_line = adjust_line(buffer->top_line, buffer);
680 77dd24f4 2021-07-05 op if (buffer->top_line == NULL)
681 a00b4c97 2021-06-20 op goto end;
682 bddc7bbd 2021-04-01 op
683 77dd24f4 2021-07-05 op buffer->current_line = adjust_line(buffer->current_line, buffer);
684 77dd24f4 2021-07-05 op
685 bddc7bbd 2021-04-01 op l = 0;
686 2bfa414d 2021-07-01 op onscreen = 0;
687 94ec38e8 2021-06-29 op for (vl = buffer->top_line; vl != NULL; vl = TAILQ_NEXT(vl, vlines)) {
688 963c680c 2021-07-05 op if (vl->parent->flags & L_HIDDEN)
689 963c680c 2021-07-05 op continue;
690 963c680c 2021-07-05 op
691 f3bcf8f2 2021-06-21 op wmove(win, l, 0);
692 ec9aa106 2021-07-14 op print_vline(off, width, win, vl);
693 2bfa414d 2021-07-01 op
694 2bfa414d 2021-07-01 op if (vl == buffer->current_line)
695 2bfa414d 2021-07-01 op onscreen = 1;
696 2bfa414d 2021-07-01 op
697 2bfa414d 2021-07-01 op if (!onscreen)
698 2bfa414d 2021-07-01 op buffer->curs_y++;
699 2bfa414d 2021-07-01 op
700 bddc7bbd 2021-04-01 op l++;
701 bddc7bbd 2021-04-01 op if (l == height)
702 bddc7bbd 2021-04-01 op break;
703 2bfa414d 2021-07-01 op }
704 2bfa414d 2021-07-01 op
705 2bfa414d 2021-07-01 op if (!onscreen) {
706 2bfa414d 2021-07-01 op for (; vl != NULL; vl = TAILQ_NEXT(vl, vlines)) {
707 2bfa414d 2021-07-01 op if (vl == buffer->current_line)
708 2bfa414d 2021-07-01 op break;
709 963c680c 2021-07-05 op if (vl->parent->flags & L_HIDDEN)
710 963c680c 2021-07-05 op continue;
711 2bfa414d 2021-07-01 op buffer->line_off++;
712 2bfa414d 2021-07-01 op buffer->top_line = TAILQ_NEXT(buffer->top_line, vlines);
713 2bfa414d 2021-07-01 op }
714 2bfa414d 2021-07-01 op
715 e7b982f4 2021-07-14 op if (vl != NULL)
716 e7b982f4 2021-07-14 op goto again;
717 bddc7bbd 2021-04-01 op }
718 bddc7bbd 2021-04-01 op
719 2bfa414d 2021-07-01 op buffer->last_line_off = buffer->line_off;
720 2bfa414d 2021-07-01 op buffer->force_redraw = 0;
721 a00b4c97 2021-06-20 op end:
722 46f6e974 2021-05-17 op wmove(win, buffer->curs_y, buffer->curs_x);
723 3b5f459e 2021-11-05 op }
724 3b5f459e 2021-11-05 op
725 3b5f459e 2021-11-05 op static void
726 3b5f459e 2021-11-05 op redraw_download(void)
727 3b5f459e 2021-11-05 op {
728 3b5f459e 2021-11-05 op redraw_window(download, 0, download_lines, COLS, &downloadwin);
729 bddc7bbd 2021-04-01 op }
730 bddc7bbd 2021-04-01 op
731 bddc7bbd 2021-04-01 op static void
732 bddc7bbd 2021-04-01 op redraw_help(void)
733 bddc7bbd 2021-04-01 op {
734 ec9aa106 2021-07-14 op redraw_window(help, 0, help_lines, help_cols, &helpwin);
735 bddc7bbd 2021-04-01 op }
736 bddc7bbd 2021-04-01 op
737 bddc7bbd 2021-04-01 op static void
738 bddc7bbd 2021-04-01 op redraw_body(struct tab *tab)
739 bddc7bbd 2021-04-01 op {
740 3323faaf 2021-06-21 op static struct tab *last_tab;
741 3323faaf 2021-06-21 op
742 3323faaf 2021-06-21 op if (last_tab != tab)
743 3323faaf 2021-06-21 op tab->buffer.force_redraw =1;
744 3323faaf 2021-06-21 op last_tab = tab;
745 3323faaf 2021-06-21 op
746 ec9aa106 2021-07-14 op redraw_window(body, x_offset, body_lines, body_cols, &tab->buffer);
747 bddc7bbd 2021-04-01 op }
748 bddc7bbd 2021-04-01 op
749 10346511 2021-03-17 op static inline char
750 10346511 2021-03-17 op trust_status_char(enum trust_state ts)
751 10346511 2021-03-17 op {
752 10346511 2021-03-17 op switch (ts) {
753 de278567 2021-07-21 op case TS_UNKNOWN: return '-';
754 10346511 2021-03-17 op case TS_UNTRUSTED: return '!';
755 a2fd3805 2021-07-06 op case TS_TEMP_TRUSTED: return '!';
756 10346511 2021-03-17 op case TS_TRUSTED: return 'v';
757 10346511 2021-03-17 op case TS_VERIFIED: return 'V';
758 923f9ce5 2021-06-21 op default: return 'X';
759 10346511 2021-03-17 op }
760 8af5e5ed 2021-03-08 op }
761 8af5e5ed 2021-03-08 op
762 8af5e5ed 2021-03-08 op static void
763 48e9d457 2021-03-06 op redraw_modeline(struct tab *tab)
764 1d08c280 2021-03-06 op {
765 65340174 2021-07-21 op struct buffer *buffer;
766 481340cc 2021-03-11 op double pct;
767 48e9d457 2021-03-06 op int x, y, max_x, max_y;
768 65340174 2021-07-21 op const char *mode;
769 8af5e5ed 2021-03-08 op const char *spin = "-\\|/";
770 1d08c280 2021-03-06 op
771 65340174 2021-07-21 op buffer = current_buffer();
772 65340174 2021-07-21 op mode = buffer->page.name;
773 65340174 2021-07-21 op
774 156f1501 2021-03-13 op werase(modeline);
775 ab47e7d4 2021-06-24 op wattr_on(modeline, modeline_face.background, NULL);
776 48e9d457 2021-03-06 op wmove(modeline, 0, 0);
777 1d08c280 2021-03-06 op
778 10346511 2021-03-17 op wprintw(modeline, "-%c%c %s ",
779 2ba66cea 2021-03-22 op spin[tab->loading_anim_step],
780 10346511 2021-03-17 op trust_status_char(tab->trust),
781 58c75fab 2021-03-16 op mode == NULL ? "(none)" : mode);
782 481340cc 2021-03-11 op
783 65340174 2021-07-21 op pct = (buffer->line_off + buffer->curs_y) * 100.0
784 65340174 2021-07-21 op / buffer->line_max;
785 65340174 2021-07-21 op
786 65340174 2021-07-21 op if (buffer->line_max <= (size_t)body_lines)
787 95a8c791 2021-08-26 op wprintw(modeline, "All ");
788 65340174 2021-07-21 op else if (buffer->line_off == 0)
789 95a8c791 2021-08-26 op wprintw(modeline, "Top ");
790 65340174 2021-07-21 op else if (buffer->line_off + body_lines >= buffer->line_max)
791 481340cc 2021-03-11 op wprintw(modeline, "Bottom ");
792 481340cc 2021-03-11 op else
793 481340cc 2021-03-11 op wprintw(modeline, "%.0f%% ", pct);
794 481340cc 2021-03-11 op
795 481340cc 2021-03-11 op wprintw(modeline, "%d/%d %s ",
796 65340174 2021-07-21 op buffer->line_off + buffer->curs_y,
797 65340174 2021-07-21 op buffer->line_max,
798 2051e653 2021-03-13 op tab->hist_cur->h);
799 481340cc 2021-03-11 op
800 48e9d457 2021-03-06 op getyx(modeline, y, x);
801 48e9d457 2021-03-06 op getmaxyx(modeline, max_y, max_x);
802 48e9d457 2021-03-06 op
803 48e9d457 2021-03-06 op (void)y;
804 48e9d457 2021-03-06 op (void)max_y;
805 48e9d457 2021-03-06 op
806 48e9d457 2021-03-06 op for (; x < max_x; ++x)
807 48e9d457 2021-03-06 op waddstr(modeline, "-");
808 d5493194 2021-06-15 op
809 ab47e7d4 2021-06-24 op wattr_off(modeline, modeline_face.background, NULL);
810 9ca15951 2021-03-09 op }
811 9ca15951 2021-03-09 op
812 9ca15951 2021-03-09 op static void
813 e9af06b9 2021-07-12 op redraw_minibuffer(void)
814 9ca15951 2021-03-09 op {
815 8a7f2683 2021-07-10 op wattr_on(echoarea, minibuffer_face.background, NULL);
816 8a7f2683 2021-07-10 op werase(echoarea);
817 17e5106b 2021-03-21 op
818 e9af06b9 2021-07-12 op if (in_minibuffer)
819 e9af06b9 2021-07-12 op do_redraw_minibuffer();
820 e9af06b9 2021-07-12 op else
821 e9af06b9 2021-07-12 op do_redraw_echoarea();
822 9cb0f9ce 2021-03-10 op
823 b1e1e41a 2021-07-14 op if (in_minibuffer == MB_COMPREAD)
824 b1e1e41a 2021-07-14 op do_redraw_minibuffer_compl();
825 b1e1e41a 2021-07-14 op
826 e9af06b9 2021-07-12 op wattr_off(echoarea, minibuffer_face.background, NULL);
827 e9af06b9 2021-07-12 op }
828 9cb0f9ce 2021-03-10 op
829 e9af06b9 2021-07-12 op static void
830 e9af06b9 2021-07-12 op do_redraw_echoarea(void)
831 e9af06b9 2021-07-12 op {
832 83dce83d 2021-07-17 op struct vline *vl;
833 9cb0f9ce 2021-03-10 op
834 17e5106b 2021-03-21 op if (ministate.curmesg != NULL)
835 95a8c791 2021-08-26 op wprintw(echoarea, "%s", ministate.curmesg);
836 e9af06b9 2021-07-12 op else if (*keybuf != '\0')
837 8a7f2683 2021-07-10 op waddstr(echoarea, keybuf);
838 e9af06b9 2021-07-12 op else {
839 e9af06b9 2021-07-12 op /* If nothing else, show the URL at point */
840 83dce83d 2021-07-17 op vl = current_tab->buffer.current_line;
841 83dce83d 2021-07-17 op if (vl != NULL && vl->parent->type == LINE_LINK)
842 83dce83d 2021-07-17 op waddstr(echoarea, vl->parent->alt);
843 8300dd3c 2021-03-18 op }
844 e9af06b9 2021-07-12 op }
845 91a72220 2021-03-13 op
846 e9af06b9 2021-07-12 op static void
847 e9af06b9 2021-07-12 op do_redraw_minibuffer(void)
848 e9af06b9 2021-07-12 op {
849 738a231a 2021-07-24 op struct buffer *cmplbuf, *buffer;
850 e9af06b9 2021-07-12 op size_t off_y, off_x = 0;
851 e9af06b9 2021-07-12 op const char *start, *c;
852 d5493194 2021-06-15 op
853 738a231a 2021-07-24 op cmplbuf = &ministate.compl.buffer;
854 738a231a 2021-07-24 op buffer = &ministate.buffer;
855 738a231a 2021-07-24 op (void)off_y; /* unused, set by getyx */
856 e9af06b9 2021-07-12 op
857 35965938 2021-07-15 op wmove(echoarea, 0, 0);
858 35965938 2021-07-15 op
859 35965938 2021-07-15 op if (in_minibuffer == MB_COMPREAD)
860 35965938 2021-07-15 op wprintw(echoarea, "(%2d) ",
861 738a231a 2021-07-24 op cmplbuf->line_max);
862 35965938 2021-07-15 op
863 35965938 2021-07-15 op wprintw(echoarea, "%s", ministate.prompt);
864 e9af06b9 2021-07-12 op if (ministate.hist_cur != NULL)
865 e9af06b9 2021-07-12 op wprintw(echoarea, "(%zu/%zu) ",
866 e9af06b9 2021-07-12 op ministate.hist_off + 1,
867 e9af06b9 2021-07-12 op ministate.history->len);
868 e9af06b9 2021-07-12 op
869 e9af06b9 2021-07-12 op getyx(echoarea, off_y, off_x);
870 e9af06b9 2021-07-12 op
871 e9af06b9 2021-07-12 op start = ministate.hist_cur != NULL
872 e9af06b9 2021-07-12 op ? ministate.hist_cur->h
873 e9af06b9 2021-07-12 op : ministate.buf;
874 738a231a 2021-07-24 op c = utf8_nth(buffer->current_line->line, buffer->cpoff);
875 e9af06b9 2021-07-12 op while (utf8_swidth_between(start, c) > (size_t)COLS/2) {
876 e9af06b9 2021-07-12 op start = utf8_next_cp(start);
877 e9af06b9 2021-07-12 op }
878 e9af06b9 2021-07-12 op
879 e9af06b9 2021-07-12 op waddstr(echoarea, start);
880 e9af06b9 2021-07-12 op
881 e9af06b9 2021-07-12 op if (ministate.curmesg != NULL)
882 e9af06b9 2021-07-12 op wprintw(echoarea, " [%s]", ministate.curmesg);
883 e9af06b9 2021-07-12 op
884 e9af06b9 2021-07-12 op wmove(echoarea, 0, off_x + utf8_swidth_between(start, c));
885 b1e1e41a 2021-07-14 op }
886 b1e1e41a 2021-07-14 op
887 b1e1e41a 2021-07-14 op static void
888 b1e1e41a 2021-07-14 op do_redraw_minibuffer_compl(void)
889 b1e1e41a 2021-07-14 op {
890 bdb21d51 2021-07-21 op redraw_window(minibuffer, 0, 10, COLS,
891 b1e1e41a 2021-07-14 op &ministate.compl.buffer);
892 55df859f 2021-07-12 op }
893 55df859f 2021-07-12 op
894 55df859f 2021-07-12 op /*
895 55df859f 2021-07-12 op * Place the cursor in the right ncurses window. If soft is 1, use
896 4ff12389 2021-07-12 op * wnoutrefresh (which shouldn't cause any I/O); otherwise use
897 55df859f 2021-07-12 op * wrefresh.
898 55df859f 2021-07-12 op */
899 55df859f 2021-07-12 op static void
900 55df859f 2021-07-12 op place_cursor(int soft)
901 55df859f 2021-07-12 op {
902 4ff12389 2021-07-12 op int (*touch)(WINDOW *);
903 55df859f 2021-07-12 op
904 55df859f 2021-07-12 op if (soft)
905 55df859f 2021-07-12 op touch = wnoutrefresh;
906 55df859f 2021-07-12 op else
907 55df859f 2021-07-12 op touch = wrefresh;
908 55df859f 2021-07-12 op
909 55df859f 2021-07-12 op if (in_minibuffer) {
910 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT)
911 65340174 2021-07-21 op touch(help);
912 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM)
913 3b5f459e 2021-11-05 op touch(download);
914 65340174 2021-07-21 op touch(body);
915 65340174 2021-07-21 op touch(echoarea);
916 3b5f459e 2021-11-05 op } else if (in_side_window & SIDE_WINDOW_LEFT) {
917 55df859f 2021-07-12 op touch(body);
918 55df859f 2021-07-12 op touch(echoarea);
919 3b5f459e 2021-11-05 op if (in_side_window & SIDE_WINDOW_BOTTOM)
920 3b5f459e 2021-11-05 op touch(download);
921 65340174 2021-07-21 op touch(help);
922 3b5f459e 2021-11-05 op } else if (in_side_window & SIDE_WINDOW_BOTTOM) {
923 3b5f459e 2021-11-05 op touch(body);
924 3b5f459e 2021-11-05 op touch(echoarea);
925 3b5f459e 2021-11-05 op if (in_side_window & SIDE_WINDOW_LEFT)
926 65340174 2021-07-21 op touch(help);
927 3b5f459e 2021-11-05 op touch(download);
928 3b5f459e 2021-11-05 op } else {
929 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT)
930 3b5f459e 2021-11-05 op touch(help);
931 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM)
932 3b5f459e 2021-11-05 op touch(download);
933 55df859f 2021-07-12 op touch(echoarea);
934 55df859f 2021-07-12 op touch(body);
935 55df859f 2021-07-12 op }
936 48e9d457 2021-03-06 op }
937 48e9d457 2021-03-06 op
938 48e9d457 2021-03-06 op static void
939 48e9d457 2021-03-06 op redraw_tab(struct tab *tab)
940 48e9d457 2021-03-06 op {
941 23f22c83 2021-07-13 op if (too_small)
942 23f22c83 2021-07-13 op return;
943 23f22c83 2021-07-13 op
944 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT) {
945 bddc7bbd 2021-04-01 op redraw_help();
946 bddc7bbd 2021-04-01 op wnoutrefresh(help);
947 bddc7bbd 2021-04-01 op }
948 bddc7bbd 2021-04-01 op
949 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM) {
950 3b5f459e 2021-11-05 op redraw_download();
951 3b5f459e 2021-11-05 op wnoutrefresh(download);
952 3b5f459e 2021-11-05 op }
953 3b5f459e 2021-11-05 op
954 56168aa8 2021-08-18 op if (show_tab_bar)
955 56168aa8 2021-08-18 op redraw_tabline();
956 56168aa8 2021-08-18 op
957 e19f9a04 2021-03-11 op redraw_body(tab);
958 e19f9a04 2021-03-11 op redraw_modeline(tab);
959 e9af06b9 2021-07-12 op redraw_minibuffer();
960 e19f9a04 2021-03-11 op
961 bddc7bbd 2021-04-01 op wnoutrefresh(tabline);
962 bddc7bbd 2021-04-01 op wnoutrefresh(modeline);
963 e19f9a04 2021-03-11 op
964 b1e1e41a 2021-07-14 op if (in_minibuffer == MB_COMPREAD)
965 b1e1e41a 2021-07-14 op wnoutrefresh(minibuffer);
966 b1e1e41a 2021-07-14 op
967 55df859f 2021-07-12 op place_cursor(1);
968 bddc7bbd 2021-04-01 op
969 bddc7bbd 2021-04-01 op doupdate();
970 9886bf97 2021-07-17 op
971 9886bf97 2021-07-17 op if (set_title)
972 47f9af78 2021-08-14 op dprintf(1, "\033]2;%s - Telescope\a",
973 9886bf97 2021-07-17 op current_tab->buffer.page.title);
974 e19f9a04 2021-03-11 op }
975 48e9d457 2021-03-06 op
976 7f963c41 2021-06-20 op void
977 8af5e5ed 2021-03-08 op start_loading_anim(struct tab *tab)
978 8af5e5ed 2021-03-08 op {
979 2ba66cea 2021-03-22 op if (tab->loading_anim)
980 8af5e5ed 2021-03-08 op return;
981 2ba66cea 2021-03-22 op tab->loading_anim = 1;
982 2ba66cea 2021-03-22 op evtimer_set(&tab->loadingev, update_loading_anim, tab);
983 2ba66cea 2021-03-22 op evtimer_add(&tab->loadingev, &loadingev_timer);
984 8af5e5ed 2021-03-08 op }
985 8af5e5ed 2021-03-08 op
986 8af5e5ed 2021-03-08 op static void
987 8af5e5ed 2021-03-08 op update_loading_anim(int fd, short ev, void *d)
988 8af5e5ed 2021-03-08 op {
989 8af5e5ed 2021-03-08 op struct tab *tab = d;
990 8af5e5ed 2021-03-08 op
991 2ba66cea 2021-03-22 op tab->loading_anim_step = (tab->loading_anim_step+1)%4;
992 9ca15951 2021-03-09 op
993 83dce83d 2021-07-17 op if (tab == current_tab) {
994 6347dcd0 2021-03-16 op redraw_modeline(tab);
995 6347dcd0 2021-03-16 op wrefresh(modeline);
996 6347dcd0 2021-03-16 op wrefresh(body);
997 6347dcd0 2021-03-16 op if (in_minibuffer)
998 8a7f2683 2021-07-10 op wrefresh(echoarea);
999 6347dcd0 2021-03-16 op }
1000 8af5e5ed 2021-03-08 op
1001 2ba66cea 2021-03-22 op evtimer_add(&tab->loadingev, &loadingev_timer);
1002 8af5e5ed 2021-03-08 op }
1003 8af5e5ed 2021-03-08 op
1004 8af5e5ed 2021-03-08 op static void
1005 8af5e5ed 2021-03-08 op stop_loading_anim(struct tab *tab)
1006 8af5e5ed 2021-03-08 op {
1007 2ba66cea 2021-03-22 op if (!tab->loading_anim)
1008 8af5e5ed 2021-03-08 op return;
1009 2ba66cea 2021-03-22 op evtimer_del(&tab->loadingev);
1010 2ba66cea 2021-03-22 op tab->loading_anim = 0;
1011 2ba66cea 2021-03-22 op tab->loading_anim_step = 0;
1012 3d8c2326 2021-03-18 op
1013 83dce83d 2021-07-17 op if (tab != current_tab)
1014 3d8c2326 2021-03-18 op return;
1015 43a1b8d0 2021-03-09 op
1016 43a1b8d0 2021-03-09 op redraw_modeline(tab);
1017 9ca15951 2021-03-09 op
1018 43a1b8d0 2021-03-09 op wrefresh(modeline);
1019 43a1b8d0 2021-03-09 op wrefresh(body);
1020 9ca15951 2021-03-09 op if (in_minibuffer)
1021 8a7f2683 2021-07-10 op wrefresh(echoarea);
1022 9ca15951 2021-03-09 op }
1023 9ca15951 2021-03-09 op
1024 1853ee50 2021-07-15 op int
1025 1853ee50 2021-07-15 op ui_print_colors(void)
1026 1853ee50 2021-07-15 op {
1027 1853ee50 2021-07-15 op int colors = 0, pairs = 0, can_change = 0;
1028 1853ee50 2021-07-15 op int columns = 16, lines, color, i, j;
1029 1853ee50 2021-07-15 op
1030 1853ee50 2021-07-15 op initscr();
1031 1853ee50 2021-07-15 op if (has_colors()) {
1032 1853ee50 2021-07-15 op start_color();
1033 1853ee50 2021-07-15 op use_default_colors();
1034 1853ee50 2021-07-15 op
1035 1853ee50 2021-07-15 op colors = COLORS;
1036 1853ee50 2021-07-15 op pairs = COLOR_PAIRS;
1037 1853ee50 2021-07-15 op can_change = can_change_color();
1038 1853ee50 2021-07-15 op }
1039 1853ee50 2021-07-15 op endwin();
1040 1853ee50 2021-07-15 op
1041 1853ee50 2021-07-15 op printf("Term info:\n");
1042 1853ee50 2021-07-15 op printf("TERM=%s COLORS=%d COLOR_PAIRS=%d can_change_colors=%d\n",
1043 1853ee50 2021-07-15 op getenv("TERM"), colors, pairs, can_change);
1044 1853ee50 2021-07-15 op printf("\n");
1045 1853ee50 2021-07-15 op
1046 1853ee50 2021-07-15 op if (colors == 0) {
1047 1853ee50 2021-07-15 op printf("No color support\n");
1048 1853ee50 2021-07-15 op return 0;
1049 1853ee50 2021-07-15 op }
1050 1853ee50 2021-07-15 op
1051 1853ee50 2021-07-15 op printf("Available colors:\n\n");
1052 1853ee50 2021-07-15 op lines = (colors - 1) / columns + 1;
1053 1853ee50 2021-07-15 op color = 0;
1054 1853ee50 2021-07-15 op for (i = 0; i < lines; ++i) {
1055 1853ee50 2021-07-15 op for (j = 0; j < columns; ++j, ++color) {
1056 1853ee50 2021-07-15 op printf("\033[0;38;5;%dm %03d", color, color);
1057 1853ee50 2021-07-15 op }
1058 1853ee50 2021-07-15 op printf("\n");
1059 1853ee50 2021-07-15 op }
1060 1853ee50 2021-07-15 op
1061 1853ee50 2021-07-15 op printf("\033[0m");
1062 1853ee50 2021-07-15 op fflush(stdout);
1063 1853ee50 2021-07-15 op return 0;
1064 5e11c00c 2021-03-02 op }
1065 5e11c00c 2021-03-02 op
1066 941b3761 2021-03-18 op int
1067 d2544989 2021-07-08 op ui_init()
1068 941b3761 2021-03-18 op {
1069 5e11c00c 2021-03-02 op setlocale(LC_ALL, "");
1070 4bc446b9 2021-07-21 op
1071 1fa16111 2021-08-12 op if (TAILQ_EMPTY(&global_map.m)) {
1072 1fa16111 2021-08-12 op fprintf(stderr, "no keys defined!\n");
1073 1fa16111 2021-08-12 op return 0;
1074 1fa16111 2021-08-12 op }
1075 1fa16111 2021-08-12 op
1076 4bc446b9 2021-07-21 op minibuffer_init();
1077 2ba66cea 2021-03-22 op
1078 3b5f459e 2021-11-05 op /* initialize download window */
1079 3b5f459e 2021-11-05 op TAILQ_INIT(&downloadwin.head);
1080 3b5f459e 2021-11-05 op TAILQ_INIT(&downloadwin.page.head);
1081 3b5f459e 2021-11-05 op
1082 bddc7bbd 2021-04-01 op /* initialize help window */
1083 bddc7bbd 2021-04-01 op TAILQ_INIT(&helpwin.head);
1084 78894e73 2021-08-12 op TAILQ_INIT(&helpwin.page.head);
1085 bddc7bbd 2021-04-01 op
1086 9ca15951 2021-03-09 op base_map = &global_map;
1087 f832146f 2021-03-09 op current_map = &global_map;
1088 f832146f 2021-03-09 op
1089 5e11c00c 2021-03-02 op initscr();
1090 74a2587f 2021-06-21 op
1091 74a2587f 2021-06-21 op if (enable_colors) {
1092 74a2587f 2021-06-21 op if (has_colors()) {
1093 74a2587f 2021-06-21 op start_color();
1094 160abe04 2021-06-21 op use_default_colors();
1095 f3bcf8f2 2021-06-21 op } else
1096 74a2587f 2021-06-21 op enable_colors = 0;
1097 f3bcf8f2 2021-06-21 op }
1098 74a2587f 2021-06-21 op
1099 42d61f50 2021-06-24 op config_apply_style();
1100 42d61f50 2021-06-24 op
1101 15e1b108 2021-03-02 op raw();
1102 5e11c00c 2021-03-02 op noecho();
1103 5e11c00c 2021-03-02 op nonl();
1104 5e11c00c 2021-03-02 op intrflush(stdscr, FALSE);
1105 5e11c00c 2021-03-02 op
1106 3cea4ff5 2021-08-18 op if ((tabline = newwin(1, 1, 0, 0)) == NULL)
1107 48e9d457 2021-03-06 op return 0;
1108 3cea4ff5 2021-08-18 op if ((body = newwin(1, 1, 0, 0)) == NULL)
1109 48e9d457 2021-03-06 op return 0;
1110 3cea4ff5 2021-08-18 op if ((modeline = newwin(1, 1, 0, 0)) == NULL)
1111 e5a2797f 2021-07-13 op return 0;
1112 3cea4ff5 2021-08-18 op if ((echoarea = newwin(1, 1, 0, 0)) == NULL)
1113 3cea4ff5 2021-08-18 op return 0;
1114 3cea4ff5 2021-08-18 op if ((minibuffer = newwin(1, 1, 0, 0)) == NULL)
1115 48e9d457 2021-03-06 op return 0;
1116 3b5f459e 2021-11-05 op if ((download = newwin(1, 1, 0, 0)) == NULL)
1117 3b5f459e 2021-11-05 op return 0;
1118 3cea4ff5 2021-08-18 op if ((help = newwin(1, 1, 0, 0)) == NULL)
1119 bddc7bbd 2021-04-01 op return 0;
1120 1d08c280 2021-03-06 op
1121 b598590d 2021-06-21 op wbkgd(body, body_face.body);
1122 1577540c 2021-11-05 op wbkgd(download, download_face.background);
1123 8a7f2683 2021-07-10 op wbkgd(echoarea, minibuffer_face.background);
1124 72b18268 2021-06-19 op
1125 72b18268 2021-06-19 op update_x_offset();
1126 48e9d457 2021-03-06 op
1127 43a1b8d0 2021-03-09 op keypad(body, TRUE);
1128 f3bcf8f2 2021-06-21 op scrollok(body, FALSE);
1129 48e9d457 2021-03-06 op
1130 5e11c00c 2021-03-02 op /* non-blocking input */
1131 48e9d457 2021-03-06 op wtimeout(body, 0);
1132 65340174 2021-07-21 op wtimeout(help, 0);
1133 5e11c00c 2021-03-02 op
1134 48e9d457 2021-03-06 op mvwprintw(body, 0, 0, "");
1135 5e11c00c 2021-03-02 op
1136 db1e7fc6 2021-07-16 op evtimer_set(&resizeev, handle_resize, NULL);
1137 db1e7fc6 2021-07-16 op
1138 5e11c00c 2021-03-02 op event_set(&stdioev, 0, EV_READ | EV_PERSIST, dispatch_stdio, NULL);
1139 5e11c00c 2021-03-02 op event_add(&stdioev, NULL);
1140 5e11c00c 2021-03-02 op
1141 5e11c00c 2021-03-02 op signal_set(&winchev, SIGWINCH, handle_resize, NULL);
1142 5e11c00c 2021-03-02 op signal_add(&winchev, NULL);
1143 5e11c00c 2021-03-02 op
1144 1d08c280 2021-03-06 op return 1;
1145 87e3e801 2021-07-17 op }
1146 87e3e801 2021-07-17 op
1147 87e3e801 2021-07-17 op void
1148 2ddbda6b 2021-07-17 op ui_main_loop(void)
1149 87e3e801 2021-07-17 op {
1150 2ddbda6b 2021-07-17 op switch_to_tab(current_tab);
1151 3cea4ff5 2021-08-18 op rearrange_windows();
1152 2ddbda6b 2021-07-17 op
1153 2ddbda6b 2021-07-17 op event_dispatch();
1154 5e11c00c 2021-03-02 op }
1155 5e11c00c 2021-03-02 op
1156 5e11c00c 2021-03-02 op void
1157 8af5e5ed 2021-03-08 op ui_on_tab_loaded(struct tab *tab)
1158 8af5e5ed 2021-03-08 op {
1159 8af5e5ed 2021-03-08 op stop_loading_anim(tab);
1160 2051e653 2021-03-13 op message("Loaded %s", tab->hist_cur->h);
1161 3d8c2326 2021-03-18 op
1162 56168aa8 2021-08-18 op if (show_tab_bar)
1163 56168aa8 2021-08-18 op redraw_tabline();
1164 56168aa8 2021-08-18 op
1165 3d8c2326 2021-03-18 op wrefresh(tabline);
1166 55df859f 2021-07-12 op place_cursor(0);
1167 8af5e5ed 2021-03-08 op }
1168 8af5e5ed 2021-03-08 op
1169 8af5e5ed 2021-03-08 op void
1170 5e11c00c 2021-03-02 op ui_on_tab_refresh(struct tab *tab)
1171 5e11c00c 2021-03-02 op {
1172 46f6e974 2021-05-17 op wrap_page(&tab->buffer, body_cols);
1173 83dce83d 2021-07-17 op if (tab == current_tab)
1174 3d8c2326 2021-03-18 op redraw_tab(tab);
1175 02a74b53 2021-07-01 op else
1176 e8a76665 2021-05-12 op tab->flags |= TAB_URGENT;
1177 5e11c00c 2021-03-02 op }
1178 5e11c00c 2021-03-02 op
1179 2b2d2872 2021-06-20 op const char *
1180 2b2d2872 2021-06-20 op ui_keyname(int k)
1181 2b2d2872 2021-06-20 op {
1182 2b2d2872 2021-06-20 op return keyname(k);
1183 2b2d2872 2021-06-20 op }
1184 2b2d2872 2021-06-20 op
1185 5e11c00c 2021-03-02 op void
1186 3b5f459e 2021-11-05 op ui_toggle_side_window(int kind)
1187 2b2d2872 2021-06-20 op {
1188 3b5f459e 2021-11-05 op if (in_side_window & kind)
1189 3b5f459e 2021-11-05 op ui_other_window();
1190 3b5f459e 2021-11-05 op
1191 3b5f459e 2021-11-05 op side_window ^= kind;
1192 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT)
1193 2b2d2872 2021-06-20 op recompute_help();
1194 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM)
1195 3b5f459e 2021-11-05 op recompute_downloads();
1196 960b01da 2021-06-20 op
1197 960b01da 2021-06-20 op /*
1198 960b01da 2021-06-20 op * ugly hack, but otherwise the window doesn't get updated
1199 32c6c75e 2021-07-15 op * until I call rearrange_windows a second time (e.g. via
1200 32c6c75e 2021-07-15 op * C-l). I will be happy to know why something like this is
1201 32c6c75e 2021-07-15 op * needed.
1202 960b01da 2021-06-20 op */
1203 32c6c75e 2021-07-15 op rearrange_windows();
1204 32c6c75e 2021-07-15 op rearrange_windows();
1205 2b2d2872 2021-06-20 op }
1206 2b2d2872 2021-06-20 op
1207 2b2d2872 2021-06-20 op void
1208 2b2d2872 2021-06-20 op ui_schedule_redraw(void)
1209 2b2d2872 2021-06-20 op {
1210 32c6c75e 2021-07-15 op should_rearrange_windows = 1;
1211 2b2d2872 2021-06-20 op }
1212 2b2d2872 2021-06-20 op
1213 2b2d2872 2021-06-20 op void
1214 9a28e7e5 2021-08-03 op ui_require_input(struct tab *tab, int hide, int proto)
1215 5cd2ebb1 2021-03-11 op {
1216 9a28e7e5 2021-08-03 op void (*fn)(void);
1217 9a28e7e5 2021-08-03 op
1218 9a28e7e5 2021-08-03 op if (proto == PROTO_GEMINI)
1219 9a28e7e5 2021-08-03 op fn = ir_select_gemini;
1220 9a28e7e5 2021-08-03 op else if (proto == PROTO_GOPHER)
1221 9a28e7e5 2021-08-03 op fn = ir_select_gopher;
1222 9a28e7e5 2021-08-03 op else
1223 9a28e7e5 2021-08-03 op abort();
1224 9a28e7e5 2021-08-03 op
1225 5cd2ebb1 2021-03-11 op /* TODO: hard-switching to another tab is ugly */
1226 5cd2ebb1 2021-03-11 op switch_to_tab(tab);
1227 5cd2ebb1 2021-03-11 op
1228 9a28e7e5 2021-08-03 op enter_minibuffer(sensible_self_insert, fn, exit_minibuffer,
1229 e5a2797f 2021-07-13 op &ir_history, NULL, NULL);
1230 5cd2ebb1 2021-03-11 op strlcpy(ministate.prompt, "Input required: ",
1231 5cd2ebb1 2021-03-11 op sizeof(ministate.prompt));
1232 5cd2ebb1 2021-03-11 op redraw_tab(tab);
1233 5cd2ebb1 2021-03-11 op }
1234 5cd2ebb1 2021-03-11 op
1235 5cd2ebb1 2021-03-11 op void
1236 4bc446b9 2021-07-21 op ui_after_message_hook(void)
1237 4bc446b9 2021-07-21 op {
1238 4bc446b9 2021-07-21 op redraw_minibuffer();
1239 4bc446b9 2021-07-21 op place_cursor(0);
1240 4bc446b9 2021-07-21 op }
1241 4bc446b9 2021-07-21 op
1242 4bc446b9 2021-07-21 op void
1243 a2fd3805 2021-07-06 op ui_yornp(const char *prompt, void (*fn)(int, struct tab *),
1244 a2fd3805 2021-07-06 op struct tab *data)
1245 5d1bac73 2021-03-25 op {
1246 84b88039 2021-07-12 op yornp(prompt, fn, data);
1247 83dce83d 2021-07-17 op redraw_tab(current_tab);
1248 5d1bac73 2021-03-25 op }
1249 5d1bac73 2021-03-25 op
1250 5d1bac73 2021-03-25 op void
1251 d1353324 2021-07-13 op ui_read(const char *prompt, void (*fn)(const char*, struct tab *),
1252 bb9912eb 2021-08-29 op struct tab *data, const char *input)
1253 de2a69bb 2021-05-17 op {
1254 4bc446b9 2021-07-21 op minibuffer_read(prompt, fn, data);
1255 bb9912eb 2021-08-29 op
1256 bb9912eb 2021-08-29 op if (input != NULL) {
1257 bb9912eb 2021-08-29 op strlcpy(ministate.buf, input, sizeof(ministate.buf));
1258 bb9912eb 2021-08-29 op cmd_move_end_of_line(&ministate.buffer);
1259 bb9912eb 2021-08-29 op }
1260 bb9912eb 2021-08-29 op
1261 83dce83d 2021-07-17 op redraw_tab(current_tab);
1262 8a3b5609 2021-07-15 op }
1263 8a3b5609 2021-07-15 op
1264 8a3b5609 2021-07-15 op void
1265 65340174 2021-07-21 op ui_other_window(void)
1266 65340174 2021-07-21 op {
1267 3b5f459e 2021-11-05 op if (in_side_window & SIDE_WINDOW_LEFT &&
1268 3b5f459e 2021-11-05 op side_window & SIDE_WINDOW_BOTTOM)
1269 3b5f459e 2021-11-05 op in_side_window = SIDE_WINDOW_BOTTOM;
1270 3b5f459e 2021-11-05 op else if (in_side_window)
1271 3b5f459e 2021-11-05 op in_side_window = 0;
1272 3b5f459e 2021-11-05 op else if (!in_side_window && side_window & SIDE_WINDOW_LEFT)
1273 3b5f459e 2021-11-05 op in_side_window = SIDE_WINDOW_LEFT;
1274 3b5f459e 2021-11-05 op else if (!in_side_window && side_window)
1275 3b5f459e 2021-11-05 op in_side_window = SIDE_WINDOW_BOTTOM;
1276 65340174 2021-07-21 op else
1277 65340174 2021-07-21 op message("No other window to select");
1278 65340174 2021-07-21 op }
1279 65340174 2021-07-21 op
1280 65340174 2021-07-21 op void
1281 8a3b5609 2021-07-15 op ui_suspend(void)
1282 8a3b5609 2021-07-15 op {
1283 8a3b5609 2021-07-15 op endwin();
1284 8a3b5609 2021-07-15 op
1285 4bac9926 2021-07-15 op kill(getpid(), SIGSTOP);
1286 8a3b5609 2021-07-15 op
1287 8a3b5609 2021-07-15 op refresh();
1288 8a3b5609 2021-07-15 op clear();
1289 8a3b5609 2021-07-15 op rearrange_windows();
1290 740f578b 2021-03-15 op }
1291 740f578b 2021-03-15 op
1292 740f578b 2021-03-15 op void
1293 5e11c00c 2021-03-02 op ui_end(void)
1294 5e11c00c 2021-03-02 op {
1295 5e11c00c 2021-03-02 op endwin();
1296 5e11c00c 2021-03-02 op }