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