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