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