Blame


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