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