Blame


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