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