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