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