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