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