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