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