Blame


1 5e11c00c 2021-03-02 op /*
2 d35e18b3 2024-02-04 op * Copyright (c) 2021, 2024 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 d252d87c 2024-02-05 op #include "cmd.h"
45 e659558c 2021-07-13 op #include "defaults.h"
46 65c49665 2024-01-23 op #include "hist.h"
47 f7db6d13 2024-02-06 op #include "keymap.h"
48 d1a0f2a3 2021-07-12 op #include "minibuffer.h"
49 1fce2e75 2021-08-14 op #include "session.h"
50 d1a0f2a3 2021-07-12 op #include "telescope.h"
51 d1a0f2a3 2021-07-12 op #include "ui.h"
52 5caf7d67 2021-07-12 op #include "utf8.h"
53 d1a0f2a3 2021-07-12 op
54 5e11c00c 2021-03-02 op static struct event stdioev, winchev;
55 5e11c00c 2021-03-02 op
56 e795e935 2022-01-18 op static void set_scroll_position(struct tab *, size_t, size_t);
57 e795e935 2022-01-18 op
58 0a805b02 2021-07-01 op static void restore_curs_x(struct buffer *);
59 9ca15951 2021-03-09 op
60 8947c1f2 2021-03-21 op static int readkey(void);
61 5e11c00c 2021-03-02 op static void dispatch_stdio(int, short, void*);
62 5e11c00c 2021-03-02 op static void handle_resize(int, short, void*);
63 a8a482c8 2021-05-17 op static void handle_resize_nodelay(int, short, void*);
64 0e7b2e99 2022-05-05 op static void handle_download_refresh(int, short, void *);
65 32c6c75e 2021-07-15 op static void rearrange_windows(void);
66 bd4a08a7 2022-11-07 op static void line_prefix_and_text(struct vline *, char *, size_t, const char **, const char **, int *);
67 f3bcf8f2 2021-06-21 op static void print_vline(int, int, WINDOW*, struct vline*);
68 8af5e5ed 2021-03-08 op static void redraw_tabline(void);
69 0aef305d 2022-01-10 op static void redraw_window(WINDOW *, int, int, int, int, struct buffer *);
70 3b5f459e 2021-11-05 op static void redraw_download(void);
71 bddc7bbd 2021-04-01 op static void redraw_help(void);
72 e19f9a04 2021-03-11 op static void redraw_body(struct tab*);
73 8af5e5ed 2021-03-08 op static void redraw_modeline(struct tab*);
74 e9af06b9 2021-07-12 op static void redraw_minibuffer(void);
75 e9af06b9 2021-07-12 op static void do_redraw_echoarea(void);
76 e9af06b9 2021-07-12 op static void do_redraw_minibuffer(void);
77 b1e1e41a 2021-07-14 op static void do_redraw_minibuffer_compl(void);
78 55df859f 2021-07-12 op static void place_cursor(int);
79 5e11c00c 2021-03-02 op static void redraw_tab(struct tab*);
80 8af5e5ed 2021-03-08 op static void update_loading_anim(int, short, void*);
81 8af5e5ed 2021-03-08 op static void stop_loading_anim(struct tab*);
82 2ddbda6b 2021-07-17 op
83 32c6c75e 2021-07-15 op static int should_rearrange_windows;
84 56168aa8 2021-08-18 op static int show_tab_bar;
85 23f22c83 2021-07-13 op static int too_small;
86 72b18268 2021-06-19 op static int x_offset;
87 72b18268 2021-06-19 op
88 83dce83d 2021-07-17 op struct thiskey thiskey;
89 83dce83d 2021-07-17 op struct tab *current_tab;
90 9ca15951 2021-03-09 op
91 831deb20 2021-05-12 op static struct event resizeev;
92 831deb20 2021-05-12 op static struct timeval resize_timer = { 0, 250000 };
93 831deb20 2021-05-12 op
94 0e7b2e99 2022-05-05 op static struct event download_refreshev;
95 0e7b2e99 2022-05-05 op static struct timeval download_refresh_timer = { 0, 250000 };
96 0e7b2e99 2022-05-05 op
97 e5a2797f 2021-07-13 op static WINDOW *tabline, *body, *modeline, *echoarea, *minibuffer;
98 48e9d457 2021-03-06 op
99 2b2d2872 2021-06-20 op int body_lines, body_cols;
100 2b2d2872 2021-06-20 op
101 bddc7bbd 2021-04-01 op static WINDOW *help;
102 de278567 2021-07-21 op /* not static so we can see them from help.c */
103 de278567 2021-07-21 op struct buffer helpwin;
104 de278567 2021-07-21 op int help_lines, help_cols;
105 bddc7bbd 2021-04-01 op
106 3b5f459e 2021-11-05 op static WINDOW *download;
107 3b5f459e 2021-11-05 op /* not static so we can see them from download.c */
108 3b5f459e 2021-11-05 op struct buffer downloadwin;
109 3b5f459e 2021-11-05 op int download_lines;
110 84892515 2021-11-27 op int download_cols;
111 3b5f459e 2021-11-05 op
112 bddc7bbd 2021-04-01 op static int side_window;
113 65340174 2021-07-21 op static int in_side_window;
114 bddc7bbd 2021-04-01 op
115 8af5e5ed 2021-03-08 op static struct timeval loadingev_timer = { 0, 250000 };
116 48e9d457 2021-03-06 op
117 7c7d7bb7 2021-03-10 op static char keybuf[64];
118 9ca15951 2021-03-09 op
119 78894e73 2021-08-12 op /* XXX: don't forget to init these in main() */
120 9ca15951 2021-03-09 op struct kmap global_map,
121 fa3fd864 2021-03-10 op minibuffer_map,
122 9ca15951 2021-03-09 op *current_map,
123 9ca15951 2021-03-09 op *base_map;
124 9ca15951 2021-03-09 op
125 72b18268 2021-06-19 op static inline void
126 923f9ce5 2021-06-21 op update_x_offset(void)
127 72b18268 2021-06-19 op {
128 72b18268 2021-06-19 op if (olivetti_mode && fill_column < body_cols)
129 72b18268 2021-06-19 op x_offset = (body_cols - fill_column)/2;
130 72b18268 2021-06-19 op else
131 72b18268 2021-06-19 op x_offset = 0;
132 72b18268 2021-06-19 op }
133 65d9b3ca 2021-03-14 op
134 e795e935 2022-01-18 op static void
135 e795e935 2022-01-18 op set_scroll_position(struct tab *tab, size_t top, size_t cur)
136 e795e935 2022-01-18 op {
137 e795e935 2022-01-18 op struct line *last;
138 e795e935 2022-01-18 op struct vline *vl;
139 e795e935 2022-01-18 op size_t i = 0;
140 6d5348f3 2022-01-21 op int topfound = 0;
141 e795e935 2022-01-18 op
142 e795e935 2022-01-18 op last = TAILQ_FIRST(&tab->buffer.page.head);
143 e795e935 2022-01-18 op TAILQ_FOREACH(vl, &tab->buffer.head, vlines) {
144 e795e935 2022-01-18 op if (last != vl->parent) {
145 e795e935 2022-01-18 op last = vl->parent;
146 e795e935 2022-01-18 op i++;
147 e795e935 2022-01-18 op }
148 e795e935 2022-01-18 op
149 e795e935 2022-01-18 op if (!topfound && i == top) {
150 e795e935 2022-01-18 op topfound = 1;
151 e795e935 2022-01-18 op tab->buffer.top_line = vl;
152 e795e935 2022-01-18 op }
153 e795e935 2022-01-18 op
154 6d5348f3 2022-01-21 op if (i == cur) {
155 e795e935 2022-01-18 op tab->buffer.current_line = vl;
156 e795e935 2022-01-18 op return;
157 e795e935 2022-01-18 op }
158 e795e935 2022-01-18 op }
159 e795e935 2022-01-18 op
160 6d5348f3 2022-01-21 op if (!topfound)
161 e795e935 2022-01-18 op tab->buffer.top_line = TAILQ_FIRST(&tab->buffer.head);
162 2ef8fcae 2022-01-21 op
163 6d5348f3 2022-01-21 op tab->buffer.current_line = tab->buffer.top_line;
164 e795e935 2022-01-18 op }
165 e795e935 2022-01-18 op
166 98411855 2021-06-23 op void
167 e795e935 2022-01-18 op get_scroll_position(struct tab *tab, size_t *top, size_t *cur)
168 e795e935 2022-01-18 op {
169 e795e935 2022-01-18 op struct line *l;
170 e795e935 2022-01-18 op int topfound = 0;
171 e795e935 2022-01-18 op
172 e795e935 2022-01-18 op *top = 0;
173 e795e935 2022-01-18 op *cur = 0;
174 e795e935 2022-01-18 op
175 e795e935 2022-01-18 op if (tab->buffer.top_line == NULL ||
176 e795e935 2022-01-18 op tab->buffer.current_line == NULL)
177 e795e935 2022-01-18 op return;
178 e795e935 2022-01-18 op
179 e795e935 2022-01-18 op TAILQ_FOREACH(l, &tab->buffer.page.head, lines) {
180 e795e935 2022-01-18 op if (tab->buffer.top_line->parent == l)
181 e795e935 2022-01-18 op topfound = 1;
182 e795e935 2022-01-18 op if (tab->buffer.current_line->parent == l)
183 e795e935 2022-01-18 op return;
184 e795e935 2022-01-18 op
185 e795e935 2022-01-18 op if (!topfound)
186 e795e935 2022-01-18 op (*top)++;
187 e795e935 2022-01-18 op (*cur)++;
188 e795e935 2022-01-18 op }
189 e795e935 2022-01-18 op }
190 e795e935 2022-01-18 op
191 e795e935 2022-01-18 op void
192 98411855 2021-06-23 op save_excursion(struct excursion *place, struct buffer *buffer)
193 98411855 2021-06-23 op {
194 98411855 2021-06-23 op place->curs_x = buffer->curs_x;
195 98411855 2021-06-23 op place->curs_y = buffer->curs_y;
196 98411855 2021-06-23 op place->line_off = buffer->line_off;
197 ca783de6 2021-07-18 op place->top_line = buffer->top_line;
198 98411855 2021-06-23 op place->current_line = buffer->current_line;
199 98411855 2021-06-23 op place->cpoff = buffer->cpoff;
200 98411855 2021-06-23 op }
201 98411855 2021-06-23 op
202 98411855 2021-06-23 op void
203 98411855 2021-06-23 op restore_excursion(struct excursion *place, struct buffer *buffer)
204 98411855 2021-06-23 op {
205 98411855 2021-06-23 op buffer->curs_x = place->curs_x;
206 98411855 2021-06-23 op buffer->curs_y = place->curs_y;
207 98411855 2021-06-23 op buffer->line_off = place->line_off;
208 ca783de6 2021-07-18 op buffer->top_line = place->top_line;
209 98411855 2021-06-23 op buffer->current_line = place->current_line;
210 98411855 2021-06-23 op buffer->cpoff = place->cpoff;
211 1d08c280 2021-03-06 op }
212 1d08c280 2021-03-06 op
213 0a805b02 2021-07-01 op static void
214 0a805b02 2021-07-01 op restore_curs_x(struct buffer *buffer)
215 48e9d457 2021-03-06 op {
216 452589f7 2021-03-16 op struct vline *vl;
217 bd644709 2021-07-18 op const char *prfx, *text;
218 452589f7 2021-03-16 op
219 46f6e974 2021-05-17 op vl = buffer->current_line;
220 bd4a08a7 2022-11-07 op if (vl == NULL || vl->len == 0)
221 46f6e974 2021-05-17 op buffer->curs_x = buffer->cpoff = 0;
222 bd644709 2021-07-18 op else if (vl->parent->data != NULL) {
223 bd644709 2021-07-18 op text = vl->parent->data;
224 bd644709 2021-07-18 op buffer->curs_x = utf8_snwidth(text + 1, buffer->cpoff) + 1;
225 bd4a08a7 2022-11-07 op } else {
226 bd4a08a7 2022-11-07 op text = vl->parent->line + vl->from;
227 bd4a08a7 2022-11-07 op buffer->curs_x = utf8_snwidth(text, buffer->cpoff);
228 bd4a08a7 2022-11-07 op }
229 452589f7 2021-03-16 op
230 3b5f459e 2021-11-05 op /* small hack: don't olivetti-mode the download pane */
231 3b5f459e 2021-11-05 op if (buffer != &downloadwin)
232 3b5f459e 2021-11-05 op buffer->curs_x += x_offset;
233 72b18268 2021-06-19 op
234 47aec13e 2021-07-17 op if (vl == NULL)
235 47aec13e 2021-07-17 op return;
236 47aec13e 2021-07-17 op
237 47aec13e 2021-07-17 op if (vl->parent->data != NULL)
238 002b074d 2021-08-14 op buffer->curs_x += utf8_swidth_between(vl->parent->line,
239 002b074d 2021-08-14 op vl->parent->data);
240 47aec13e 2021-07-17 op else {
241 452589f7 2021-03-16 op prfx = line_prefixes[vl->parent->type].prfx1;
242 46f6e974 2021-05-17 op buffer->curs_x += utf8_swidth(prfx);
243 2ba66cea 2021-03-22 op }
244 9ca15951 2021-03-09 op }
245 9ca15951 2021-03-09 op
246 d5bdf203 2021-07-08 op void
247 870210fb 2021-03-26 op global_key_unbound(void)
248 870210fb 2021-03-26 op {
249 870210fb 2021-03-26 op message("%s is undefined", keybuf);
250 870210fb 2021-03-26 op }
251 870210fb 2021-03-26 op
252 2b2d2872 2021-06-20 op struct buffer *
253 46f6e974 2021-05-17 op current_buffer(void)
254 2ba66cea 2021-03-22 op {
255 2ba66cea 2021-03-22 op if (in_minibuffer)
256 46f6e974 2021-05-17 op return &ministate.buffer;
257 3b5f459e 2021-11-05 op if (in_side_window & SIDE_WINDOW_LEFT)
258 65340174 2021-07-21 op return &helpwin;
259 3b5f459e 2021-11-05 op if (in_side_window & SIDE_WINDOW_BOTTOM)
260 3b5f459e 2021-11-05 op return &downloadwin;
261 83dce83d 2021-07-17 op return &current_tab->buffer;
262 2ba66cea 2021-03-22 op }
263 2ba66cea 2021-03-22 op
264 8947c1f2 2021-03-21 op static int
265 8947c1f2 2021-03-21 op readkey(void)
266 5e11c00c 2021-03-02 op {
267 8947c1f2 2021-03-21 op uint32_t state = 0;
268 19f1448e 2021-03-08 op
269 8947c1f2 2021-03-21 op if ((thiskey.key = wgetch(body)) == ERR)
270 8947c1f2 2021-03-21 op return 0;
271 5e11c00c 2021-03-02 op
272 3f66a33e 2021-12-01 op thiskey.meta = thiskey.key == '\e';
273 8947c1f2 2021-03-21 op if (thiskey.meta) {
274 9ca15951 2021-03-09 op thiskey.key = wgetch(body);
275 3f66a33e 2021-12-01 op if (thiskey.key == ERR || thiskey.key == '\e') {
276 c314a314 2021-03-11 op thiskey.meta = 0;
277 3f66a33e 2021-12-01 op thiskey.key = '\e';
278 c314a314 2021-03-11 op }
279 8947c1f2 2021-03-21 op }
280 8947c1f2 2021-03-21 op
281 8947c1f2 2021-03-21 op thiskey.cp = 0;
282 63ecae6d 2021-08-14 op
283 63ecae6d 2021-08-14 op if ((unsigned int)thiskey.key >= UINT8_MAX)
284 63ecae6d 2021-08-14 op return 1;
285 63ecae6d 2021-08-14 op
286 63ecae6d 2021-08-14 op while (1) {
287 63ecae6d 2021-08-14 op if (!utf8_decode(&state, &thiskey.cp, (uint8_t)thiskey.key))
288 63ecae6d 2021-08-14 op break;
289 63ecae6d 2021-08-14 op if ((thiskey.key = wgetch(body)) == ERR) {
290 63ecae6d 2021-08-14 op message("Error decoding user input");
291 63ecae6d 2021-08-14 op return 0;
292 8947c1f2 2021-03-21 op }
293 8947c1f2 2021-03-21 op }
294 19f1448e 2021-03-08 op
295 8947c1f2 2021-03-21 op return 1;
296 8947c1f2 2021-03-21 op }
297 8947c1f2 2021-03-21 op
298 8947c1f2 2021-03-21 op static void
299 8947c1f2 2021-03-21 op dispatch_stdio(int fd, short ev, void *d)
300 8947c1f2 2021-03-21 op {
301 57668c86 2021-11-05 op int lk;
302 8947c1f2 2021-03-21 op const char *keyname;
303 8947c1f2 2021-03-21 op char tmp[5] = {0};
304 8947c1f2 2021-03-21 op
305 23f22c83 2021-07-13 op /* TODO: schedule a redraw? */
306 23f22c83 2021-07-13 op if (too_small)
307 23f22c83 2021-07-13 op return;
308 23f22c83 2021-07-13 op
309 8947c1f2 2021-03-21 op if (!readkey())
310 8947c1f2 2021-03-21 op return;
311 8947c1f2 2021-03-21 op
312 7c7d7bb7 2021-03-10 op if (keybuf[0] != '\0')
313 7c7d7bb7 2021-03-10 op strlcat(keybuf, " ", sizeof(keybuf));
314 7c7d7bb7 2021-03-10 op if (thiskey.meta)
315 7c7d7bb7 2021-03-10 op strlcat(keybuf, "M-", sizeof(keybuf));
316 8947c1f2 2021-03-21 op if (thiskey.cp != 0) {
317 8947c1f2 2021-03-21 op utf8_encode(thiskey.cp, tmp);
318 7c7d7bb7 2021-03-10 op strlcat(keybuf, tmp, sizeof(keybuf));
319 af29d739 2021-07-13 op } else if ((keyname = unkbd(thiskey.key)) != NULL) {
320 af29d739 2021-07-13 op strlcat(keybuf, keyname, sizeof(keybuf));
321 8947c1f2 2021-03-21 op } else {
322 af29d739 2021-07-13 op tmp[0] = thiskey.key;
323 af29d739 2021-07-13 op strlcat(keybuf, tmp, sizeof(keybuf));
324 7c7d7bb7 2021-03-10 op }
325 7c7d7bb7 2021-03-10 op
326 57668c86 2021-11-05 op lk = lookup_key(&current_map, &thiskey, current_buffer());
327 57668c86 2021-11-05 op if (lk == LK_UNBOUND) {
328 57668c86 2021-11-05 op if (current_map->unhandled_input != NULL)
329 57668c86 2021-11-05 op current_map->unhandled_input();
330 57668c86 2021-11-05 op else
331 57668c86 2021-11-05 op global_key_unbound();
332 eb259e66 2021-03-02 op }
333 57668c86 2021-11-05 op if (lk != LK_ADVANCED_MAP) {
334 57668c86 2021-11-05 op current_map = base_map;
335 57668c86 2021-11-05 op strlcpy(keybuf, "", sizeof(keybuf));
336 57668c86 2021-11-05 op }
337 1d08c280 2021-03-06 op
338 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT)
339 bddc7bbd 2021-04-01 op recompute_help();
340 bddc7bbd 2021-04-01 op
341 32c6c75e 2021-07-15 op if (should_rearrange_windows)
342 32c6c75e 2021-07-15 op rearrange_windows();
343 83dce83d 2021-07-17 op redraw_tab(current_tab);
344 a6d450c1 2021-03-06 op }
345 48e9d457 2021-03-06 op
346 a6d450c1 2021-03-06 op static void
347 5e11c00c 2021-03-02 op handle_resize(int sig, short ev, void *d)
348 831deb20 2021-05-12 op {
349 831deb20 2021-05-12 op if (event_pending(&resizeev, EV_TIMEOUT, NULL)) {
350 831deb20 2021-05-12 op event_del(&resizeev);
351 831deb20 2021-05-12 op }
352 a8a482c8 2021-05-17 op evtimer_set(&resizeev, handle_resize_nodelay, NULL);
353 831deb20 2021-05-12 op evtimer_add(&resizeev, &resize_timer);
354 831deb20 2021-05-12 op }
355 831deb20 2021-05-12 op
356 831deb20 2021-05-12 op static void
357 a8a482c8 2021-05-17 op handle_resize_nodelay(int s, short ev, void *d)
358 5e11c00c 2021-03-02 op {
359 5e11c00c 2021-03-02 op endwin();
360 5e11c00c 2021-03-02 op refresh();
361 5e11c00c 2021-03-02 op clear();
362 32c6c75e 2021-07-15 op
363 32c6c75e 2021-07-15 op rearrange_windows();
364 32c6c75e 2021-07-15 op }
365 32c6c75e 2021-07-15 op
366 0e7b2e99 2022-05-05 op static void
367 0e7b2e99 2022-05-05 op handle_download_refresh(int s, short v, void *d)
368 0e7b2e99 2022-05-05 op {
369 0e7b2e99 2022-05-05 op if (side_window & SIDE_WINDOW_BOTTOM) {
370 0e7b2e99 2022-05-05 op recompute_downloads();
371 0e7b2e99 2022-05-05 op redraw_tab(current_tab);
372 0e7b2e99 2022-05-05 op }
373 0e7b2e99 2022-05-05 op }
374 0e7b2e99 2022-05-05 op
375 56168aa8 2021-08-18 op static inline int
376 56168aa8 2021-08-18 op should_show_tab_bar(void)
377 56168aa8 2021-08-18 op {
378 56168aa8 2021-08-18 op if (tab_bar_show == -1)
379 56168aa8 2021-08-18 op return 0;
380 56168aa8 2021-08-18 op if (tab_bar_show == 0)
381 56168aa8 2021-08-18 op return 1;
382 56168aa8 2021-08-18 op
383 56168aa8 2021-08-18 op return TAILQ_NEXT(TAILQ_FIRST(&tabshead), tabs) != NULL;
384 56168aa8 2021-08-18 op }
385 56168aa8 2021-08-18 op
386 32c6c75e 2021-07-15 op static void
387 32c6c75e 2021-07-15 op rearrange_windows(void)
388 32c6c75e 2021-07-15 op {
389 32c6c75e 2021-07-15 op int lines;
390 3b5f459e 2021-11-05 op int minibuffer_lines;
391 5e11c00c 2021-03-02 op
392 32c6c75e 2021-07-15 op should_rearrange_windows = 0;
393 56168aa8 2021-08-18 op show_tab_bar = should_show_tab_bar();
394 32c6c75e 2021-07-15 op
395 b3884fbe 2021-07-13 op lines = LINES;
396 b3884fbe 2021-07-13 op
397 45929003 2024-01-13 op /* 3 lines for the ui and 12 for the body and minibuffer */
398 23f22c83 2021-07-13 op if ((too_small = lines < 15)) {
399 23f22c83 2021-07-13 op erase();
400 23f22c83 2021-07-13 op printw("Window too small.");
401 23f22c83 2021-07-13 op refresh();
402 23f22c83 2021-07-13 op return;
403 23f22c83 2021-07-13 op }
404 23f22c83 2021-07-13 op
405 48e9d457 2021-03-06 op /* move and resize the windows, in reverse order! */
406 48e9d457 2021-03-06 op
407 b1e1e41a 2021-07-14 op if (in_minibuffer == MB_COMPREAD) {
408 3b5f459e 2021-11-05 op minibuffer_lines = MIN(10, lines/2);
409 3b5f459e 2021-11-05 op mvwin(minibuffer, lines - minibuffer_lines, 0);
410 3b5f459e 2021-11-05 op wresize(minibuffer, minibuffer_lines, COLS);
411 3b5f459e 2021-11-05 op lines -= minibuffer_lines;
412 b1e1e41a 2021-07-14 op
413 b1e1e41a 2021-07-14 op wrap_page(&ministate.compl.buffer, COLS);
414 b1e1e41a 2021-07-14 op }
415 b1e1e41a 2021-07-14 op
416 b3884fbe 2021-07-13 op mvwin(echoarea, --lines, 0);
417 8a7f2683 2021-07-10 op wresize(echoarea, 1, COLS);
418 48e9d457 2021-03-06 op
419 b3884fbe 2021-07-13 op mvwin(modeline, --lines, 0);
420 48e9d457 2021-03-06 op wresize(modeline, 1, COLS);
421 48e9d457 2021-03-06 op
422 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM) {
423 3b5f459e 2021-11-05 op download_lines = MIN(5, lines/2);
424 84892515 2021-11-27 op download_cols = COLS;
425 3b5f459e 2021-11-05 op mvwin(download, lines - download_lines, 0);
426 84892515 2021-11-27 op wresize(download, download_lines, download_cols);
427 3b5f459e 2021-11-05 op lines -= download_lines;
428 3b5f459e 2021-11-05 op
429 84892515 2021-11-27 op wrap_page(&downloadwin, download_cols);
430 3b5f459e 2021-11-05 op }
431 3b5f459e 2021-11-05 op
432 56168aa8 2021-08-18 op body_lines = show_tab_bar ? --lines : lines;
433 bd9637e9 2021-03-06 op body_cols = COLS;
434 bddc7bbd 2021-04-01 op
435 56168aa8 2021-08-18 op /*
436 56168aa8 2021-08-18 op * Here we make the assumption that show_tab_bar is either 0
437 56168aa8 2021-08-18 op * or 1, and reuse that as argument to mvwin.
438 56168aa8 2021-08-18 op */
439 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT) {
440 bddc7bbd 2021-04-01 op help_cols = 0.3 * COLS;
441 b3884fbe 2021-07-13 op help_lines = lines;
442 56168aa8 2021-08-18 op mvwin(help, show_tab_bar, 0);
443 bddc7bbd 2021-04-01 op wresize(help, help_lines, help_cols);
444 48e9d457 2021-03-06 op
445 bddc7bbd 2021-04-01 op wrap_page(&helpwin, help_cols);
446 bddc7bbd 2021-04-01 op
447 bddc7bbd 2021-04-01 op body_cols = COLS - help_cols - 1;
448 56168aa8 2021-08-18 op mvwin(body, show_tab_bar, help_cols);
449 bddc7bbd 2021-04-01 op } else
450 56168aa8 2021-08-18 op mvwin(body, show_tab_bar, 0);
451 bddc7bbd 2021-04-01 op
452 72b18268 2021-06-19 op update_x_offset();
453 bddc7bbd 2021-04-01 op wresize(body, body_lines, body_cols);
454 bddc7bbd 2021-04-01 op
455 56168aa8 2021-08-18 op if (show_tab_bar)
456 56168aa8 2021-08-18 op wresize(tabline, 1, COLS);
457 48e9d457 2021-03-06 op
458 83dce83d 2021-07-17 op wrap_page(&current_tab->buffer, body_cols);
459 83dce83d 2021-07-17 op redraw_tab(current_tab);
460 eb259e66 2021-03-02 op }
461 94ec38e8 2021-06-29 op
462 6ca7e1b6 2021-07-16 op static void
463 6ca7e1b6 2021-07-16 op line_prefix_and_text(struct vline *vl, char *buf, size_t len,
464 bd4a08a7 2022-11-07 op const char **prfx_ret, const char **text_ret, int *text_len)
465 6ca7e1b6 2021-07-16 op {
466 fd29e873 2024-01-13 op int type, cont;
467 fd29e873 2024-01-13 op size_t i, width;
468 6ca7e1b6 2021-07-16 op char *space, *t;
469 6ca7e1b6 2021-07-16 op
470 bd4a08a7 2022-11-07 op if (vl->len == 0) {
471 6ca7e1b6 2021-07-16 op *text_ret = "";
472 bd4a08a7 2022-11-07 op *text_len = 0;
473 bd4a08a7 2022-11-07 op }
474 6ca7e1b6 2021-07-16 op
475 6ca7e1b6 2021-07-16 op cont = vl->flags & L_CONTINUATION;
476 6ca7e1b6 2021-07-16 op type = vl->parent->type;
477 55b0b036 2021-07-16 op if (!cont)
478 6ca7e1b6 2021-07-16 op *prfx_ret = line_prefixes[type].prfx1;
479 6ca7e1b6 2021-07-16 op else
480 6ca7e1b6 2021-07-16 op *prfx_ret = line_prefixes[type].prfx2;
481 6ca7e1b6 2021-07-16 op
482 6ca7e1b6 2021-07-16 op space = vl->parent->data;
483 5ab1e3c1 2024-01-13 op *text_ret = vl->parent->line + vl->from;
484 5ab1e3c1 2024-01-13 op *text_len = MIN(INT_MAX, vl->len);
485 bd4a08a7 2022-11-07 op if (!emojify_link || type != LINE_LINK || space == NULL) {
486 6ca7e1b6 2021-07-16 op return;
487 bd4a08a7 2022-11-07 op }
488 5e11c00c 2021-03-02 op
489 6ca7e1b6 2021-07-16 op if (cont) {
490 6ca7e1b6 2021-07-16 op memset(buf, 0, len);
491 6ca7e1b6 2021-07-16 op width = utf8_swidth_between(vl->parent->line, space);
492 fd29e873 2024-01-13 op for (i = 0; i < width + 1 && i < len - 1; ++i)
493 fd29e873 2024-01-13 op buf[i] = ' ';
494 6ca7e1b6 2021-07-16 op } else {
495 5ab1e3c1 2024-01-13 op strlcpy(buf, vl->parent->line, len);
496 6ca7e1b6 2021-07-16 op if ((t = strchr(buf, ' ')) != NULL)
497 6ca7e1b6 2021-07-16 op *t = '\0';
498 6ca7e1b6 2021-07-16 op strlcat(buf, " ", len);
499 6ca7e1b6 2021-07-16 op }
500 6ca7e1b6 2021-07-16 op
501 6ca7e1b6 2021-07-16 op *prfx_ret = buf;
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 6b630429 2024-02-05 op if (text)
581 6b630429 2024-02-05 op wprintw(window, "%.*s", textlen, text);
582 b3be07ea 2021-07-18 op print_vline_descr(width, window, vl);
583 2af29222 2021-06-24 op wattr_off(window, f->text, NULL);
584 f3bcf8f2 2021-06-21 op
585 f3bcf8f2 2021-06-21 op getyx(window, y, x);
586 f3bcf8f2 2021-06-21 op
587 f3bcf8f2 2021-06-21 op left = width - x;
588 f3bcf8f2 2021-06-21 op
589 2af29222 2021-06-24 op wattr_on(window, f->trail, NULL);
590 04d32eda 2021-07-08 op for (i = 0; i < left - off; ++i)
591 f3bcf8f2 2021-06-21 op waddch(window, ' ');
592 2af29222 2021-06-24 op wattr_off(window, f->trail, NULL);
593 160abe04 2021-06-21 op
594 ab47e7d4 2021-06-24 op wattr_on(window, body_face.right, NULL);
595 160abe04 2021-06-21 op for (i = 0; i < off; i++)
596 160abe04 2021-06-21 op waddch(window, ' ');
597 ab47e7d4 2021-06-24 op wattr_off(window, body_face.right, NULL);
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 65c49665 2024-01-23 op title = hist_cur(tab->hist);
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 d35e18b3 2024-02-04 op wprintw(modeline, "-%c%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 d35e18b3 2024-02-04 op tab->client_cert ? 'C' : '-',
855 58c75fab 2021-03-16 op mode == NULL ? "(none)" : mode);
856 481340cc 2021-03-11 op
857 65340174 2021-07-21 op pct = (buffer->line_off + buffer->curs_y) * 100.0
858 65340174 2021-07-21 op / buffer->line_max;
859 65340174 2021-07-21 op
860 65340174 2021-07-21 op if (buffer->line_max <= (size_t)body_lines)
861 95a8c791 2021-08-26 op wprintw(modeline, "All ");
862 65340174 2021-07-21 op else if (buffer->line_off == 0)
863 95a8c791 2021-08-26 op wprintw(modeline, "Top ");
864 65340174 2021-07-21 op else if (buffer->line_off + body_lines >= buffer->line_max)
865 481340cc 2021-03-11 op wprintw(modeline, "Bottom ");
866 481340cc 2021-03-11 op else
867 481340cc 2021-03-11 op wprintw(modeline, "%.0f%% ", pct);
868 481340cc 2021-03-11 op
869 77e9591f 2022-01-13 op wprintw(modeline, "%zu/%zu %s ",
870 65340174 2021-07-21 op buffer->line_off + buffer->curs_y,
871 65340174 2021-07-21 op buffer->line_max,
872 65c49665 2024-01-23 op hist_cur(tab->hist));
873 481340cc 2021-03-11 op
874 48e9d457 2021-03-06 op getyx(modeline, y, x);
875 48e9d457 2021-03-06 op getmaxyx(modeline, max_y, max_x);
876 48e9d457 2021-03-06 op
877 48e9d457 2021-03-06 op (void)y;
878 48e9d457 2021-03-06 op (void)max_y;
879 48e9d457 2021-03-06 op
880 48e9d457 2021-03-06 op for (; x < max_x; ++x)
881 48e9d457 2021-03-06 op waddstr(modeline, "-");
882 d5493194 2021-06-15 op
883 ab47e7d4 2021-06-24 op wattr_off(modeline, modeline_face.background, NULL);
884 9ca15951 2021-03-09 op }
885 9ca15951 2021-03-09 op
886 9ca15951 2021-03-09 op static void
887 e9af06b9 2021-07-12 op redraw_minibuffer(void)
888 9ca15951 2021-03-09 op {
889 8a7f2683 2021-07-10 op wattr_on(echoarea, minibuffer_face.background, NULL);
890 8a7f2683 2021-07-10 op werase(echoarea);
891 17e5106b 2021-03-21 op
892 e9af06b9 2021-07-12 op if (in_minibuffer)
893 e9af06b9 2021-07-12 op do_redraw_minibuffer();
894 e9af06b9 2021-07-12 op else
895 e9af06b9 2021-07-12 op do_redraw_echoarea();
896 9cb0f9ce 2021-03-10 op
897 b1e1e41a 2021-07-14 op if (in_minibuffer == MB_COMPREAD)
898 b1e1e41a 2021-07-14 op do_redraw_minibuffer_compl();
899 b1e1e41a 2021-07-14 op
900 e9af06b9 2021-07-12 op wattr_off(echoarea, minibuffer_face.background, NULL);
901 e9af06b9 2021-07-12 op }
902 9cb0f9ce 2021-03-10 op
903 e9af06b9 2021-07-12 op static void
904 e9af06b9 2021-07-12 op do_redraw_echoarea(void)
905 e9af06b9 2021-07-12 op {
906 83dce83d 2021-07-17 op struct vline *vl;
907 9cb0f9ce 2021-03-10 op
908 17e5106b 2021-03-21 op if (ministate.curmesg != NULL)
909 95a8c791 2021-08-26 op wprintw(echoarea, "%s", ministate.curmesg);
910 e9af06b9 2021-07-12 op else if (*keybuf != '\0')
911 8a7f2683 2021-07-10 op waddstr(echoarea, keybuf);
912 e9af06b9 2021-07-12 op else {
913 e9af06b9 2021-07-12 op /* If nothing else, show the URL at point */
914 83dce83d 2021-07-17 op vl = current_tab->buffer.current_line;
915 83dce83d 2021-07-17 op if (vl != NULL && vl->parent->type == LINE_LINK)
916 83dce83d 2021-07-17 op waddstr(echoarea, vl->parent->alt);
917 8300dd3c 2021-03-18 op }
918 e9af06b9 2021-07-12 op }
919 91a72220 2021-03-13 op
920 e9af06b9 2021-07-12 op static void
921 e9af06b9 2021-07-12 op do_redraw_minibuffer(void)
922 e9af06b9 2021-07-12 op {
923 738a231a 2021-07-24 op struct buffer *cmplbuf, *buffer;
924 e9af06b9 2021-07-12 op size_t off_y, off_x = 0;
925 e9af06b9 2021-07-12 op const char *start, *c;
926 bd4a08a7 2022-11-07 op char *line;
927 d5493194 2021-06-15 op
928 738a231a 2021-07-24 op cmplbuf = &ministate.compl.buffer;
929 738a231a 2021-07-24 op buffer = &ministate.buffer;
930 738a231a 2021-07-24 op (void)off_y; /* unused, set by getyx */
931 e9af06b9 2021-07-12 op
932 35965938 2021-07-15 op wmove(echoarea, 0, 0);
933 35965938 2021-07-15 op
934 35965938 2021-07-15 op if (in_minibuffer == MB_COMPREAD)
935 77e9591f 2022-01-13 op wprintw(echoarea, "(%2zu) ",
936 738a231a 2021-07-24 op cmplbuf->line_max);
937 35965938 2021-07-15 op
938 35965938 2021-07-15 op wprintw(echoarea, "%s", ministate.prompt);
939 65c49665 2024-01-23 op if (!ministate.editing)
940 e9af06b9 2021-07-12 op wprintw(echoarea, "(%zu/%zu) ",
941 65c49665 2024-01-23 op hist_off(ministate.hist) + 1,
942 65c49665 2024-01-23 op hist_size(ministate.hist));
943 e9af06b9 2021-07-12 op
944 e9af06b9 2021-07-12 op getyx(echoarea, off_y, off_x);
945 e9af06b9 2021-07-12 op
946 65c49665 2024-01-23 op start = ministate.buf;
947 65c49665 2024-01-23 op if (!ministate.editing)
948 65c49665 2024-01-23 op start = hist_cur(ministate.hist);
949 bd4a08a7 2022-11-07 op line = buffer->current_line->parent->line + buffer->current_line->from;
950 bd4a08a7 2022-11-07 op c = utf8_nth(line, buffer->cpoff);
951 e9af06b9 2021-07-12 op while (utf8_swidth_between(start, c) > (size_t)COLS/2) {
952 e9af06b9 2021-07-12 op start = utf8_next_cp(start);
953 e9af06b9 2021-07-12 op }
954 e9af06b9 2021-07-12 op
955 e9af06b9 2021-07-12 op waddstr(echoarea, start);
956 e9af06b9 2021-07-12 op
957 e9af06b9 2021-07-12 op if (ministate.curmesg != NULL)
958 e9af06b9 2021-07-12 op wprintw(echoarea, " [%s]", ministate.curmesg);
959 e9af06b9 2021-07-12 op
960 e9af06b9 2021-07-12 op wmove(echoarea, 0, off_x + utf8_swidth_between(start, c));
961 b1e1e41a 2021-07-14 op }
962 b1e1e41a 2021-07-14 op
963 b1e1e41a 2021-07-14 op static void
964 b1e1e41a 2021-07-14 op do_redraw_minibuffer_compl(void)
965 b1e1e41a 2021-07-14 op {
966 0aef305d 2022-01-10 op redraw_window(minibuffer, 0, 10, COLS, 1,
967 b1e1e41a 2021-07-14 op &ministate.compl.buffer);
968 55df859f 2021-07-12 op }
969 55df859f 2021-07-12 op
970 55df859f 2021-07-12 op /*
971 55df859f 2021-07-12 op * Place the cursor in the right ncurses window. If soft is 1, use
972 4ff12389 2021-07-12 op * wnoutrefresh (which shouldn't cause any I/O); otherwise use
973 55df859f 2021-07-12 op * wrefresh.
974 55df859f 2021-07-12 op */
975 55df859f 2021-07-12 op static void
976 55df859f 2021-07-12 op place_cursor(int soft)
977 55df859f 2021-07-12 op {
978 4ff12389 2021-07-12 op int (*touch)(WINDOW *);
979 55df859f 2021-07-12 op
980 55df859f 2021-07-12 op if (soft)
981 55df859f 2021-07-12 op touch = wnoutrefresh;
982 55df859f 2021-07-12 op else
983 55df859f 2021-07-12 op touch = wrefresh;
984 55df859f 2021-07-12 op
985 55df859f 2021-07-12 op if (in_minibuffer) {
986 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT)
987 65340174 2021-07-21 op touch(help);
988 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM)
989 3b5f459e 2021-11-05 op touch(download);
990 65340174 2021-07-21 op touch(body);
991 65340174 2021-07-21 op touch(echoarea);
992 3b5f459e 2021-11-05 op } else if (in_side_window & SIDE_WINDOW_LEFT) {
993 55df859f 2021-07-12 op touch(body);
994 55df859f 2021-07-12 op touch(echoarea);
995 3b5f459e 2021-11-05 op if (in_side_window & SIDE_WINDOW_BOTTOM)
996 3b5f459e 2021-11-05 op touch(download);
997 65340174 2021-07-21 op touch(help);
998 3b5f459e 2021-11-05 op } else if (in_side_window & SIDE_WINDOW_BOTTOM) {
999 3b5f459e 2021-11-05 op touch(body);
1000 3b5f459e 2021-11-05 op touch(echoarea);
1001 3b5f459e 2021-11-05 op if (in_side_window & SIDE_WINDOW_LEFT)
1002 65340174 2021-07-21 op touch(help);
1003 3b5f459e 2021-11-05 op touch(download);
1004 3b5f459e 2021-11-05 op } else {
1005 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT)
1006 3b5f459e 2021-11-05 op touch(help);
1007 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM)
1008 3b5f459e 2021-11-05 op touch(download);
1009 55df859f 2021-07-12 op touch(echoarea);
1010 55df859f 2021-07-12 op touch(body);
1011 55df859f 2021-07-12 op }
1012 48e9d457 2021-03-06 op }
1013 48e9d457 2021-03-06 op
1014 48e9d457 2021-03-06 op static void
1015 48e9d457 2021-03-06 op redraw_tab(struct tab *tab)
1016 48e9d457 2021-03-06 op {
1017 23f22c83 2021-07-13 op if (too_small)
1018 23f22c83 2021-07-13 op return;
1019 23f22c83 2021-07-13 op
1020 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT) {
1021 bddc7bbd 2021-04-01 op redraw_help();
1022 bddc7bbd 2021-04-01 op wnoutrefresh(help);
1023 bddc7bbd 2021-04-01 op }
1024 bddc7bbd 2021-04-01 op
1025 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM) {
1026 3b5f459e 2021-11-05 op redraw_download();
1027 3b5f459e 2021-11-05 op wnoutrefresh(download);
1028 3b5f459e 2021-11-05 op }
1029 3b5f459e 2021-11-05 op
1030 56168aa8 2021-08-18 op if (show_tab_bar)
1031 56168aa8 2021-08-18 op redraw_tabline();
1032 56168aa8 2021-08-18 op
1033 e19f9a04 2021-03-11 op redraw_body(tab);
1034 e19f9a04 2021-03-11 op redraw_modeline(tab);
1035 e9af06b9 2021-07-12 op redraw_minibuffer();
1036 e19f9a04 2021-03-11 op
1037 bddc7bbd 2021-04-01 op wnoutrefresh(tabline);
1038 bddc7bbd 2021-04-01 op wnoutrefresh(modeline);
1039 e19f9a04 2021-03-11 op
1040 b1e1e41a 2021-07-14 op if (in_minibuffer == MB_COMPREAD)
1041 b1e1e41a 2021-07-14 op wnoutrefresh(minibuffer);
1042 b1e1e41a 2021-07-14 op
1043 55df859f 2021-07-12 op place_cursor(1);
1044 bddc7bbd 2021-04-01 op
1045 bddc7bbd 2021-04-01 op doupdate();
1046 9886bf97 2021-07-17 op
1047 9886bf97 2021-07-17 op if (set_title)
1048 47f9af78 2021-08-14 op dprintf(1, "\033]2;%s - Telescope\a",
1049 9886bf97 2021-07-17 op current_tab->buffer.page.title);
1050 e19f9a04 2021-03-11 op }
1051 48e9d457 2021-03-06 op
1052 7f963c41 2021-06-20 op void
1053 8af5e5ed 2021-03-08 op start_loading_anim(struct tab *tab)
1054 8af5e5ed 2021-03-08 op {
1055 2ba66cea 2021-03-22 op if (tab->loading_anim)
1056 8af5e5ed 2021-03-08 op return;
1057 2ba66cea 2021-03-22 op tab->loading_anim = 1;
1058 2ba66cea 2021-03-22 op evtimer_set(&tab->loadingev, update_loading_anim, tab);
1059 2ba66cea 2021-03-22 op evtimer_add(&tab->loadingev, &loadingev_timer);
1060 8af5e5ed 2021-03-08 op }
1061 8af5e5ed 2021-03-08 op
1062 8af5e5ed 2021-03-08 op static void
1063 8af5e5ed 2021-03-08 op update_loading_anim(int fd, short ev, void *d)
1064 8af5e5ed 2021-03-08 op {
1065 8af5e5ed 2021-03-08 op struct tab *tab = d;
1066 8af5e5ed 2021-03-08 op
1067 2ba66cea 2021-03-22 op tab->loading_anim_step = (tab->loading_anim_step+1)%4;
1068 9ca15951 2021-03-09 op
1069 83dce83d 2021-07-17 op if (tab == current_tab) {
1070 6347dcd0 2021-03-16 op redraw_modeline(tab);
1071 6347dcd0 2021-03-16 op wrefresh(modeline);
1072 6347dcd0 2021-03-16 op wrefresh(body);
1073 6347dcd0 2021-03-16 op if (in_minibuffer)
1074 8a7f2683 2021-07-10 op wrefresh(echoarea);
1075 6347dcd0 2021-03-16 op }
1076 8af5e5ed 2021-03-08 op
1077 2ba66cea 2021-03-22 op evtimer_add(&tab->loadingev, &loadingev_timer);
1078 8af5e5ed 2021-03-08 op }
1079 8af5e5ed 2021-03-08 op
1080 8af5e5ed 2021-03-08 op static void
1081 8af5e5ed 2021-03-08 op stop_loading_anim(struct tab *tab)
1082 8af5e5ed 2021-03-08 op {
1083 2ba66cea 2021-03-22 op if (!tab->loading_anim)
1084 8af5e5ed 2021-03-08 op return;
1085 2ba66cea 2021-03-22 op evtimer_del(&tab->loadingev);
1086 2ba66cea 2021-03-22 op tab->loading_anim = 0;
1087 2ba66cea 2021-03-22 op tab->loading_anim_step = 0;
1088 3d8c2326 2021-03-18 op
1089 83dce83d 2021-07-17 op if (tab != current_tab)
1090 3d8c2326 2021-03-18 op return;
1091 43a1b8d0 2021-03-09 op
1092 43a1b8d0 2021-03-09 op redraw_modeline(tab);
1093 9ca15951 2021-03-09 op
1094 43a1b8d0 2021-03-09 op wrefresh(modeline);
1095 43a1b8d0 2021-03-09 op wrefresh(body);
1096 9ca15951 2021-03-09 op if (in_minibuffer)
1097 8a7f2683 2021-07-10 op wrefresh(echoarea);
1098 5e11c00c 2021-03-02 op }
1099 5e11c00c 2021-03-02 op
1100 941b3761 2021-03-18 op int
1101 ad8e93f5 2024-01-13 op ui_init(void)
1102 941b3761 2021-03-18 op {
1103 5e11c00c 2021-03-02 op setlocale(LC_ALL, "");
1104 4bc446b9 2021-07-21 op
1105 1fa16111 2021-08-12 op if (TAILQ_EMPTY(&global_map.m)) {
1106 1fa16111 2021-08-12 op fprintf(stderr, "no keys defined!\n");
1107 1fa16111 2021-08-12 op return 0;
1108 1fa16111 2021-08-12 op }
1109 1fa16111 2021-08-12 op
1110 4bc446b9 2021-07-21 op minibuffer_init();
1111 2ba66cea 2021-03-22 op
1112 3b5f459e 2021-11-05 op /* initialize download window */
1113 3b5f459e 2021-11-05 op TAILQ_INIT(&downloadwin.head);
1114 3b5f459e 2021-11-05 op TAILQ_INIT(&downloadwin.page.head);
1115 3b5f459e 2021-11-05 op
1116 bddc7bbd 2021-04-01 op /* initialize help window */
1117 bddc7bbd 2021-04-01 op TAILQ_INIT(&helpwin.head);
1118 78894e73 2021-08-12 op TAILQ_INIT(&helpwin.page.head);
1119 bddc7bbd 2021-04-01 op
1120 9ca15951 2021-03-09 op base_map = &global_map;
1121 f832146f 2021-03-09 op current_map = &global_map;
1122 f832146f 2021-03-09 op
1123 5e11c00c 2021-03-02 op initscr();
1124 74a2587f 2021-06-21 op
1125 74a2587f 2021-06-21 op if (enable_colors) {
1126 74a2587f 2021-06-21 op if (has_colors()) {
1127 74a2587f 2021-06-21 op start_color();
1128 160abe04 2021-06-21 op use_default_colors();
1129 f3bcf8f2 2021-06-21 op } else
1130 74a2587f 2021-06-21 op enable_colors = 0;
1131 f3bcf8f2 2021-06-21 op }
1132 74a2587f 2021-06-21 op
1133 42d61f50 2021-06-24 op config_apply_style();
1134 42d61f50 2021-06-24 op
1135 15e1b108 2021-03-02 op raw();
1136 5e11c00c 2021-03-02 op noecho();
1137 5e11c00c 2021-03-02 op nonl();
1138 5e11c00c 2021-03-02 op intrflush(stdscr, FALSE);
1139 5e11c00c 2021-03-02 op
1140 3cea4ff5 2021-08-18 op if ((tabline = newwin(1, 1, 0, 0)) == NULL)
1141 48e9d457 2021-03-06 op return 0;
1142 3cea4ff5 2021-08-18 op if ((body = newwin(1, 1, 0, 0)) == NULL)
1143 48e9d457 2021-03-06 op return 0;
1144 3cea4ff5 2021-08-18 op if ((modeline = newwin(1, 1, 0, 0)) == NULL)
1145 e5a2797f 2021-07-13 op return 0;
1146 3cea4ff5 2021-08-18 op if ((echoarea = newwin(1, 1, 0, 0)) == NULL)
1147 3cea4ff5 2021-08-18 op return 0;
1148 3cea4ff5 2021-08-18 op if ((minibuffer = newwin(1, 1, 0, 0)) == NULL)
1149 48e9d457 2021-03-06 op return 0;
1150 3b5f459e 2021-11-05 op if ((download = newwin(1, 1, 0, 0)) == NULL)
1151 3b5f459e 2021-11-05 op return 0;
1152 3cea4ff5 2021-08-18 op if ((help = newwin(1, 1, 0, 0)) == NULL)
1153 bddc7bbd 2021-04-01 op return 0;
1154 1d08c280 2021-03-06 op
1155 b598590d 2021-06-21 op wbkgd(body, body_face.body);
1156 1577540c 2021-11-05 op wbkgd(download, download_face.background);
1157 8a7f2683 2021-07-10 op wbkgd(echoarea, minibuffer_face.background);
1158 72b18268 2021-06-19 op
1159 72b18268 2021-06-19 op update_x_offset();
1160 48e9d457 2021-03-06 op
1161 43a1b8d0 2021-03-09 op keypad(body, TRUE);
1162 f3bcf8f2 2021-06-21 op scrollok(body, FALSE);
1163 48e9d457 2021-03-06 op
1164 5e11c00c 2021-03-02 op /* non-blocking input */
1165 48e9d457 2021-03-06 op wtimeout(body, 0);
1166 65340174 2021-07-21 op wtimeout(help, 0);
1167 5e11c00c 2021-03-02 op
1168 48e9d457 2021-03-06 op mvwprintw(body, 0, 0, "");
1169 5e11c00c 2021-03-02 op
1170 bb28f1c2 2021-12-30 op return 1;
1171 bb28f1c2 2021-12-30 op }
1172 bb28f1c2 2021-12-30 op
1173 bb28f1c2 2021-12-30 op void
1174 bb28f1c2 2021-12-30 op ui_main_loop(void)
1175 bb28f1c2 2021-12-30 op {
1176 db1e7fc6 2021-07-16 op evtimer_set(&resizeev, handle_resize, NULL);
1177 0e7b2e99 2022-05-05 op evtimer_set(&download_refreshev, handle_download_refresh, NULL);
1178 db1e7fc6 2021-07-16 op
1179 5e11c00c 2021-03-02 op event_set(&stdioev, 0, EV_READ | EV_PERSIST, dispatch_stdio, NULL);
1180 5e11c00c 2021-03-02 op event_add(&stdioev, NULL);
1181 5e11c00c 2021-03-02 op
1182 5e11c00c 2021-03-02 op signal_set(&winchev, SIGWINCH, handle_resize, NULL);
1183 5e11c00c 2021-03-02 op signal_add(&winchev, NULL);
1184 87e3e801 2021-07-17 op
1185 2ddbda6b 2021-07-17 op switch_to_tab(current_tab);
1186 3cea4ff5 2021-08-18 op rearrange_windows();
1187 f63b8f73 2022-04-24 op
1188 f63b8f73 2022-04-24 op event_dispatch();
1189 5e11c00c 2021-03-02 op }
1190 5e11c00c 2021-03-02 op
1191 5e11c00c 2021-03-02 op void
1192 8af5e5ed 2021-03-08 op ui_on_tab_loaded(struct tab *tab)
1193 8af5e5ed 2021-03-08 op {
1194 65c49665 2024-01-23 op size_t line_off, curr_off;
1195 65c49665 2024-01-23 op
1196 8af5e5ed 2021-03-08 op stop_loading_anim(tab);
1197 65c49665 2024-01-23 op message("Loaded %s", hist_cur(tab->hist));
1198 3d8c2326 2021-03-18 op
1199 65c49665 2024-01-23 op hist_cur_offs(tab->hist, &line_off, &curr_off);
1200 65c49665 2024-01-23 op if (curr_off != 0 &&
1201 638823f8 2022-01-18 op tab->buffer.current_line == TAILQ_FIRST(&tab->buffer.head)) {
1202 65c49665 2024-01-23 op set_scroll_position(tab, line_off, curr_off);
1203 e795e935 2022-01-18 op redraw_tab(tab);
1204 e795e935 2022-01-18 op return;
1205 e795e935 2022-01-18 op }
1206 e795e935 2022-01-18 op
1207 56168aa8 2021-08-18 op if (show_tab_bar)
1208 56168aa8 2021-08-18 op redraw_tabline();
1209 56168aa8 2021-08-18 op
1210 3d8c2326 2021-03-18 op wrefresh(tabline);
1211 55df859f 2021-07-12 op place_cursor(0);
1212 8af5e5ed 2021-03-08 op }
1213 8af5e5ed 2021-03-08 op
1214 8af5e5ed 2021-03-08 op void
1215 5e11c00c 2021-03-02 op ui_on_tab_refresh(struct tab *tab)
1216 5e11c00c 2021-03-02 op {
1217 46f6e974 2021-05-17 op wrap_page(&tab->buffer, body_cols);
1218 83dce83d 2021-07-17 op if (tab == current_tab)
1219 3d8c2326 2021-03-18 op redraw_tab(tab);
1220 02a74b53 2021-07-01 op else
1221 e8a76665 2021-05-12 op tab->flags |= TAB_URGENT;
1222 fcd99a0d 2021-11-05 op }
1223 fcd99a0d 2021-11-05 op
1224 fcd99a0d 2021-11-05 op void
1225 fcd99a0d 2021-11-05 op ui_on_download_refresh(void)
1226 fcd99a0d 2021-11-05 op {
1227 0e7b2e99 2022-05-05 op if (event_pending(&download_refreshev, EV_TIMEOUT, NULL))
1228 0e7b2e99 2022-05-05 op return;
1229 0e7b2e99 2022-05-05 op
1230 0e7b2e99 2022-05-05 op evtimer_set(&download_refreshev, handle_download_refresh, NULL);
1231 0e7b2e99 2022-05-05 op evtimer_add(&download_refreshev, &download_refresh_timer);
1232 5e11c00c 2021-03-02 op }
1233 5e11c00c 2021-03-02 op
1234 0a987358 2022-02-24 op void
1235 0a987358 2022-02-24 op ui_remotely_open_link(const char *uri)
1236 0a987358 2022-02-24 op {
1237 0a987358 2022-02-24 op new_tab(uri, NULL, NULL);
1238 0a987358 2022-02-24 op ui_on_tab_refresh(current_tab);
1239 0a987358 2022-02-24 op
1240 0a987358 2022-02-24 op /* ring the bell */
1241 0a987358 2022-02-24 op printf("\a");
1242 0a987358 2022-02-24 op fflush(stdout);
1243 0a987358 2022-02-24 op }
1244 0a987358 2022-02-24 op
1245 2b2d2872 2021-06-20 op const char *
1246 2b2d2872 2021-06-20 op ui_keyname(int k)
1247 2b2d2872 2021-06-20 op {
1248 2b2d2872 2021-06-20 op return keyname(k);
1249 2b2d2872 2021-06-20 op }
1250 2b2d2872 2021-06-20 op
1251 5e11c00c 2021-03-02 op void
1252 3b5f459e 2021-11-05 op ui_toggle_side_window(int kind)
1253 2b2d2872 2021-06-20 op {
1254 3b5f459e 2021-11-05 op if (in_side_window & kind)
1255 3b5f459e 2021-11-05 op ui_other_window();
1256 3b5f459e 2021-11-05 op
1257 3b5f459e 2021-11-05 op side_window ^= kind;
1258 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_LEFT)
1259 2b2d2872 2021-06-20 op recompute_help();
1260 3b5f459e 2021-11-05 op if (side_window & SIDE_WINDOW_BOTTOM)
1261 3b5f459e 2021-11-05 op recompute_downloads();
1262 960b01da 2021-06-20 op
1263 960b01da 2021-06-20 op /*
1264 960b01da 2021-06-20 op * ugly hack, but otherwise the window doesn't get updated
1265 32c6c75e 2021-07-15 op * until I call rearrange_windows a second time (e.g. via
1266 32c6c75e 2021-07-15 op * C-l). I will be happy to know why something like this is
1267 32c6c75e 2021-07-15 op * needed.
1268 960b01da 2021-06-20 op */
1269 32c6c75e 2021-07-15 op rearrange_windows();
1270 32c6c75e 2021-07-15 op rearrange_windows();
1271 2b2d2872 2021-06-20 op }
1272 2b2d2872 2021-06-20 op
1273 2b2d2872 2021-06-20 op void
1274 fcd99a0d 2021-11-05 op ui_show_downloads_pane(void)
1275 fcd99a0d 2021-11-05 op {
1276 fcd99a0d 2021-11-05 op if (!(side_window & SIDE_WINDOW_BOTTOM))
1277 fcd99a0d 2021-11-05 op ui_toggle_side_window(SIDE_WINDOW_BOTTOM);
1278 fcd99a0d 2021-11-05 op }
1279 fcd99a0d 2021-11-05 op
1280 fcd99a0d 2021-11-05 op void
1281 2b2d2872 2021-06-20 op ui_schedule_redraw(void)
1282 2b2d2872 2021-06-20 op {
1283 32c6c75e 2021-07-15 op should_rearrange_windows = 1;
1284 2b2d2872 2021-06-20 op }
1285 2b2d2872 2021-06-20 op
1286 2b2d2872 2021-06-20 op void
1287 693188cb 2022-02-07 op ui_require_input(struct tab *tab, int hide, void (*fn)(void))
1288 5cd2ebb1 2021-03-11 op {
1289 5cd2ebb1 2021-03-11 op /* TODO: hard-switching to another tab is ugly */
1290 5cd2ebb1 2021-03-11 op switch_to_tab(tab);
1291 5cd2ebb1 2021-03-11 op
1292 9a28e7e5 2021-08-03 op enter_minibuffer(sensible_self_insert, fn, exit_minibuffer,
1293 65c49665 2024-01-23 op ir_history, NULL, NULL, 0);
1294 5cd2ebb1 2021-03-11 op strlcpy(ministate.prompt, "Input required: ",
1295 5cd2ebb1 2021-03-11 op sizeof(ministate.prompt));
1296 5cd2ebb1 2021-03-11 op redraw_tab(tab);
1297 5cd2ebb1 2021-03-11 op }
1298 5cd2ebb1 2021-03-11 op
1299 5cd2ebb1 2021-03-11 op void
1300 4bc446b9 2021-07-21 op ui_after_message_hook(void)
1301 4bc446b9 2021-07-21 op {
1302 4bc446b9 2021-07-21 op redraw_minibuffer();
1303 4bc446b9 2021-07-21 op place_cursor(0);
1304 4bc446b9 2021-07-21 op }
1305 4bc446b9 2021-07-21 op
1306 4bc446b9 2021-07-21 op void
1307 a2fd3805 2021-07-06 op ui_yornp(const char *prompt, void (*fn)(int, struct tab *),
1308 a2fd3805 2021-07-06 op struct tab *data)
1309 5d1bac73 2021-03-25 op {
1310 84b88039 2021-07-12 op yornp(prompt, fn, data);
1311 83dce83d 2021-07-17 op redraw_tab(current_tab);
1312 5d1bac73 2021-03-25 op }
1313 5d1bac73 2021-03-25 op
1314 5d1bac73 2021-03-25 op void
1315 d1353324 2021-07-13 op ui_read(const char *prompt, void (*fn)(const char*, struct tab *),
1316 bb9912eb 2021-08-29 op struct tab *data, const char *input)
1317 de2a69bb 2021-05-17 op {
1318 4bc446b9 2021-07-21 op minibuffer_read(prompt, fn, data);
1319 bb9912eb 2021-08-29 op
1320 bb9912eb 2021-08-29 op if (input != NULL) {
1321 bb9912eb 2021-08-29 op strlcpy(ministate.buf, input, sizeof(ministate.buf));
1322 bb9912eb 2021-08-29 op cmd_move_end_of_line(&ministate.buffer);
1323 bb9912eb 2021-08-29 op }
1324 bb9912eb 2021-08-29 op
1325 83dce83d 2021-07-17 op redraw_tab(current_tab);
1326 8a3b5609 2021-07-15 op }
1327 8a3b5609 2021-07-15 op
1328 8a3b5609 2021-07-15 op void
1329 65340174 2021-07-21 op ui_other_window(void)
1330 65340174 2021-07-21 op {
1331 3b5f459e 2021-11-05 op if (in_side_window & SIDE_WINDOW_LEFT &&
1332 3b5f459e 2021-11-05 op side_window & SIDE_WINDOW_BOTTOM)
1333 3b5f459e 2021-11-05 op in_side_window = SIDE_WINDOW_BOTTOM;
1334 3b5f459e 2021-11-05 op else if (in_side_window)
1335 3b5f459e 2021-11-05 op in_side_window = 0;
1336 3b5f459e 2021-11-05 op else if (!in_side_window && side_window & SIDE_WINDOW_LEFT)
1337 3b5f459e 2021-11-05 op in_side_window = SIDE_WINDOW_LEFT;
1338 3b5f459e 2021-11-05 op else if (!in_side_window && side_window)
1339 3b5f459e 2021-11-05 op in_side_window = SIDE_WINDOW_BOTTOM;
1340 65340174 2021-07-21 op else
1341 65340174 2021-07-21 op message("No other window to select");
1342 65340174 2021-07-21 op }
1343 65340174 2021-07-21 op
1344 65340174 2021-07-21 op void
1345 8a3b5609 2021-07-15 op ui_suspend(void)
1346 8a3b5609 2021-07-15 op {
1347 8a3b5609 2021-07-15 op endwin();
1348 8a3b5609 2021-07-15 op
1349 4bac9926 2021-07-15 op kill(getpid(), SIGSTOP);
1350 8a3b5609 2021-07-15 op
1351 8a3b5609 2021-07-15 op refresh();
1352 8a3b5609 2021-07-15 op clear();
1353 8a3b5609 2021-07-15 op rearrange_windows();
1354 740f578b 2021-03-15 op }
1355 740f578b 2021-03-15 op
1356 740f578b 2021-03-15 op void
1357 5e11c00c 2021-03-02 op ui_end(void)
1358 5e11c00c 2021-03-02 op {
1359 5e11c00c 2021-03-02 op endwin();
1360 5e11c00c 2021-03-02 op }