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