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