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