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