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