Blame


1 5e11c00c 2021-03-02 op /*
2 5e11c00c 2021-03-02 op * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 5e11c00c 2021-03-02 op *
4 5e11c00c 2021-03-02 op * Permission to use, copy, modify, and distribute this software for any
5 5e11c00c 2021-03-02 op * purpose with or without fee is hereby granted, provided that the above
6 5e11c00c 2021-03-02 op * copyright notice and this permission notice appear in all copies.
7 5e11c00c 2021-03-02 op *
8 5e11c00c 2021-03-02 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 5e11c00c 2021-03-02 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 5e11c00c 2021-03-02 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 5e11c00c 2021-03-02 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 5e11c00c 2021-03-02 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 5e11c00c 2021-03-02 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 5e11c00c 2021-03-02 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 5e11c00c 2021-03-02 op */
16 5e11c00c 2021-03-02 op
17 1d08c280 2021-03-06 op /*
18 1d08c280 2021-03-06 op * Ncurses UI for telescope.
19 1d08c280 2021-03-06 op *
20 1d08c280 2021-03-06 op * Text scrolling
21 1d08c280 2021-03-06 op * ==============
22 1d08c280 2021-03-06 op *
23 1d08c280 2021-03-06 op * ncurses allows you to scroll a window, but when a line goes out of
24 1d08c280 2021-03-06 op * the visible area it's forgotten. We keep a list of formatted lines
25 1d08c280 2021-03-06 op * (``visual lines'') that we know fits in the window, and draw them.
26 1d08c280 2021-03-06 op *
27 1d08c280 2021-03-06 op * This means that on every resize we have to clear our list of lines
28 1d08c280 2021-03-06 op * and re-render everything. A clever approach would be to do this
29 970deec6 2021-04-24 op * ``on-demand'', but it's still missing.
30 1d08c280 2021-03-06 op *
31 1d08c280 2021-03-06 op */
32 1d08c280 2021-03-06 op
33 bddc7bbd 2021-04-01 op #include <assert.h>
34 5e11c00c 2021-03-02 op #include <curses.h>
35 5e11c00c 2021-03-02 op #include <event.h>
36 5e11c00c 2021-03-02 op #include <locale.h>
37 5e11c00c 2021-03-02 op #include <signal.h>
38 7953dd72 2021-03-07 op #include <stdarg.h>
39 eb259e66 2021-03-02 op #include <stdlib.h>
40 eb259e66 2021-03-02 op #include <string.h>
41 f832146f 2021-03-09 op #include <unistd.h>
42 5e11c00c 2021-03-02 op
43 e659558c 2021-07-13 op #include "defaults.h"
44 d1a0f2a3 2021-07-12 op #include "minibuffer.h"
45 d1a0f2a3 2021-07-12 op #include "telescope.h"
46 d1a0f2a3 2021-07-12 op #include "ui.h"
47 5caf7d67 2021-07-12 op #include "utf8.h"
48 d1a0f2a3 2021-07-12 op
49 5e11c00c 2021-03-02 op static struct event stdioev, winchev;
50 5e11c00c 2021-03-02 op
51 0a805b02 2021-07-01 op static void restore_curs_x(struct buffer *);
52 9ca15951 2021-03-09 op
53 46f6e974 2021-05-17 op static struct vline *nth_line(struct buffer*, size_t);
54 8947c1f2 2021-03-21 op static int readkey(void);
55 5e11c00c 2021-03-02 op static void dispatch_stdio(int, short, void*);
56 8a7f2683 2021-07-10 op static void handle_clear_echoarea(int, short, void*);
57 5e11c00c 2021-03-02 op static void handle_resize(int, short, void*);
58 a8a482c8 2021-05-17 op static void handle_resize_nodelay(int, short, void*);
59 46f6e974 2021-05-17 op static int wrap_page(struct buffer*, int);
60 f3bcf8f2 2021-06-21 op static void print_vline(int, int, WINDOW*, struct vline*);
61 8af5e5ed 2021-03-08 op static void redraw_tabline(void);
62 f3bcf8f2 2021-06-21 op static void redraw_window(WINDOW*, int, int, struct buffer*);
63 bddc7bbd 2021-04-01 op static void redraw_help(void);
64 e19f9a04 2021-03-11 op static void redraw_body(struct tab*);
65 8af5e5ed 2021-03-08 op static void redraw_modeline(struct tab*);
66 e9af06b9 2021-07-12 op static void redraw_minibuffer(void);
67 e9af06b9 2021-07-12 op static void do_redraw_echoarea(void);
68 e9af06b9 2021-07-12 op static void do_redraw_minibuffer(void);
69 55df859f 2021-07-12 op static void place_cursor(int);
70 5e11c00c 2021-03-02 op static void redraw_tab(struct tab*);
71 bddc7bbd 2021-04-01 op static void emit_help_item(char*, void*);
72 bddc7bbd 2021-04-01 op static void rec_compute_help(struct kmap*, char*, size_t);
73 bddc7bbd 2021-04-01 op static void recompute_help(void);
74 8af5e5ed 2021-03-08 op static void update_loading_anim(int, short, void*);
75 8af5e5ed 2021-03-08 op static void stop_loading_anim(struct tab*);
76 5e11c00c 2021-03-02 op
77 23f22c83 2021-07-13 op static int too_small;
78 72b18268 2021-06-19 op static int x_offset;
79 72b18268 2021-06-19 op
80 2b2d2872 2021-06-20 op struct thiskey thiskey;
81 9ca15951 2021-03-09 op
82 831deb20 2021-05-12 op static struct event resizeev;
83 831deb20 2021-05-12 op static struct timeval resize_timer = { 0, 250000 };
84 831deb20 2021-05-12 op
85 e5a2797f 2021-07-13 op static WINDOW *tabline, *body, *modeline, *echoarea, *minibuffer;
86 48e9d457 2021-03-06 op
87 2b2d2872 2021-06-20 op int body_lines, body_cols;
88 2b2d2872 2021-06-20 op
89 bddc7bbd 2021-04-01 op static WINDOW *help;
90 46f6e974 2021-05-17 op static struct buffer helpwin;
91 bddc7bbd 2021-04-01 op static int help_lines, help_cols;
92 bddc7bbd 2021-04-01 op
93 bddc7bbd 2021-04-01 op static int side_window;
94 bddc7bbd 2021-04-01 op
95 8a7f2683 2021-07-10 op static struct event clechoev;
96 8a7f2683 2021-07-10 op static struct timeval clechoev_timer = { 5, 0 };
97 8af5e5ed 2021-03-08 op static struct timeval loadingev_timer = { 0, 250000 };
98 48e9d457 2021-03-06 op
99 bcb0b073 2021-03-07 op static uint32_t tab_counter;
100 bcb0b073 2021-03-07 op
101 7c7d7bb7 2021-03-10 op static char keybuf[64];
102 9ca15951 2021-03-09 op
103 9ca15951 2021-03-09 op struct kmap global_map,
104 fa3fd864 2021-03-10 op minibuffer_map,
105 9ca15951 2021-03-09 op *current_map,
106 9ca15951 2021-03-09 op *base_map;
107 9ca15951 2021-03-09 op
108 2b2d2872 2021-06-20 op int in_minibuffer;
109 9ca15951 2021-03-09 op
110 72b18268 2021-06-19 op static inline void
111 923f9ce5 2021-06-21 op update_x_offset(void)
112 72b18268 2021-06-19 op {
113 72b18268 2021-06-19 op if (olivetti_mode && fill_column < body_cols)
114 72b18268 2021-06-19 op x_offset = (body_cols - fill_column)/2;
115 72b18268 2021-06-19 op else
116 72b18268 2021-06-19 op x_offset = 0;
117 72b18268 2021-06-19 op }
118 65d9b3ca 2021-03-14 op
119 98411855 2021-06-23 op void
120 98411855 2021-06-23 op save_excursion(struct excursion *place, struct buffer *buffer)
121 98411855 2021-06-23 op {
122 98411855 2021-06-23 op place->curs_x = buffer->curs_x;
123 98411855 2021-06-23 op place->curs_y = buffer->curs_y;
124 98411855 2021-06-23 op place->line_off = buffer->line_off;
125 98411855 2021-06-23 op place->current_line = buffer->current_line;
126 98411855 2021-06-23 op place->cpoff = buffer->cpoff;
127 98411855 2021-06-23 op }
128 98411855 2021-06-23 op
129 98411855 2021-06-23 op void
130 98411855 2021-06-23 op restore_excursion(struct excursion *place, struct buffer *buffer)
131 98411855 2021-06-23 op {
132 98411855 2021-06-23 op buffer->curs_x = place->curs_x;
133 98411855 2021-06-23 op buffer->curs_y = place->curs_y;
134 98411855 2021-06-23 op buffer->line_off = place->line_off;
135 98411855 2021-06-23 op buffer->current_line = place->current_line;
136 98411855 2021-06-23 op buffer->cpoff = place->cpoff;
137 1d08c280 2021-03-06 op }
138 1d08c280 2021-03-06 op
139 0a805b02 2021-07-01 op static void
140 0a805b02 2021-07-01 op restore_curs_x(struct buffer *buffer)
141 48e9d457 2021-03-06 op {
142 452589f7 2021-03-16 op struct vline *vl;
143 452589f7 2021-03-16 op const char *prfx;
144 452589f7 2021-03-16 op
145 46f6e974 2021-05-17 op vl = buffer->current_line;
146 452589f7 2021-03-16 op if (vl == NULL || vl->line == NULL)
147 46f6e974 2021-05-17 op buffer->curs_x = buffer->cpoff = 0;
148 452589f7 2021-03-16 op else
149 46f6e974 2021-05-17 op buffer->curs_x = utf8_snwidth(vl->line, buffer->cpoff);
150 452589f7 2021-03-16 op
151 72b18268 2021-06-19 op buffer->curs_x += x_offset;
152 72b18268 2021-06-19 op
153 452589f7 2021-03-16 op if (vl != NULL) {
154 452589f7 2021-03-16 op prfx = line_prefixes[vl->parent->type].prfx1;
155 46f6e974 2021-05-17 op buffer->curs_x += utf8_swidth(prfx);
156 2ba66cea 2021-03-22 op }
157 9ca15951 2021-03-09 op }
158 9ca15951 2021-03-09 op
159 d5bdf203 2021-07-08 op void
160 870210fb 2021-03-26 op global_key_unbound(void)
161 870210fb 2021-03-26 op {
162 870210fb 2021-03-26 op message("%s is undefined", keybuf);
163 870210fb 2021-03-26 op }
164 870210fb 2021-03-26 op
165 9a25f829 2021-03-14 op static struct vline *
166 46f6e974 2021-05-17 op nth_line(struct buffer *buffer, size_t n)
167 48e9d457 2021-03-06 op {
168 9a25f829 2021-03-14 op struct vline *vl;
169 48e9d457 2021-03-06 op size_t i;
170 48e9d457 2021-03-06 op
171 48e9d457 2021-03-06 op i = 0;
172 46f6e974 2021-05-17 op TAILQ_FOREACH(vl, &buffer->head, vlines) {
173 48e9d457 2021-03-06 op if (i == n)
174 9a25f829 2021-03-14 op return vl;
175 48e9d457 2021-03-06 op i++;
176 48e9d457 2021-03-06 op }
177 48e9d457 2021-03-06 op
178 48e9d457 2021-03-06 op /* unreachable */
179 48e9d457 2021-03-06 op abort();
180 48e9d457 2021-03-06 op }
181 48e9d457 2021-03-06 op
182 2b2d2872 2021-06-20 op struct tab *
183 5e11c00c 2021-03-02 op current_tab(void)
184 5e11c00c 2021-03-02 op {
185 5e11c00c 2021-03-02 op struct tab *t;
186 5e11c00c 2021-03-02 op
187 5e11c00c 2021-03-02 op TAILQ_FOREACH(t, &tabshead, tabs) {
188 5e11c00c 2021-03-02 op if (t->flags & TAB_CURRENT)
189 5e11c00c 2021-03-02 op return t;
190 5e11c00c 2021-03-02 op }
191 5e11c00c 2021-03-02 op
192 5e11c00c 2021-03-02 op /* unreachable */
193 5e11c00c 2021-03-02 op abort();
194 5e11c00c 2021-03-02 op }
195 5e11c00c 2021-03-02 op
196 2b2d2872 2021-06-20 op struct buffer *
197 46f6e974 2021-05-17 op current_buffer(void)
198 2ba66cea 2021-03-22 op {
199 2ba66cea 2021-03-22 op if (in_minibuffer)
200 46f6e974 2021-05-17 op return &ministate.buffer;
201 46f6e974 2021-05-17 op return &current_tab()->buffer;
202 2ba66cea 2021-03-22 op }
203 2ba66cea 2021-03-22 op
204 8947c1f2 2021-03-21 op static int
205 8947c1f2 2021-03-21 op readkey(void)
206 5e11c00c 2021-03-02 op {
207 8947c1f2 2021-03-21 op uint32_t state = 0;
208 19f1448e 2021-03-08 op
209 8947c1f2 2021-03-21 op if ((thiskey.key = wgetch(body)) == ERR)
210 8947c1f2 2021-03-21 op return 0;
211 5e11c00c 2021-03-02 op
212 8947c1f2 2021-03-21 op thiskey.meta = thiskey.key == 27;
213 8947c1f2 2021-03-21 op if (thiskey.meta) {
214 9ca15951 2021-03-09 op thiskey.key = wgetch(body);
215 c314a314 2021-03-11 op if (thiskey.key == ERR || thiskey.key == 27) {
216 c314a314 2021-03-11 op thiskey.meta = 0;
217 9ca15951 2021-03-09 op thiskey.key = 27;
218 c314a314 2021-03-11 op }
219 8947c1f2 2021-03-21 op }
220 8947c1f2 2021-03-21 op
221 8947c1f2 2021-03-21 op thiskey.cp = 0;
222 8947c1f2 2021-03-21 op if ((unsigned int)thiskey.key < UINT8_MAX) {
223 8947c1f2 2021-03-21 op while (1) {
224 8947c1f2 2021-03-21 op if (!utf8_decode(&state, &thiskey.cp, (uint8_t)thiskey.key))
225 8947c1f2 2021-03-21 op break;
226 8947c1f2 2021-03-21 op if ((thiskey.key = wgetch(body)) == ERR) {
227 8947c1f2 2021-03-21 op message("Error decoding user input");
228 8947c1f2 2021-03-21 op return 0;
229 8947c1f2 2021-03-21 op }
230 8947c1f2 2021-03-21 op }
231 8947c1f2 2021-03-21 op }
232 19f1448e 2021-03-08 op
233 8947c1f2 2021-03-21 op return 1;
234 8947c1f2 2021-03-21 op }
235 8947c1f2 2021-03-21 op
236 8947c1f2 2021-03-21 op static void
237 8947c1f2 2021-03-21 op dispatch_stdio(int fd, short ev, void *d)
238 8947c1f2 2021-03-21 op {
239 8947c1f2 2021-03-21 op struct keymap *k;
240 8947c1f2 2021-03-21 op const char *keyname;
241 8947c1f2 2021-03-21 op char tmp[5] = {0};
242 8947c1f2 2021-03-21 op
243 23f22c83 2021-07-13 op /* TODO: schedule a redraw? */
244 23f22c83 2021-07-13 op if (too_small)
245 23f22c83 2021-07-13 op return;
246 23f22c83 2021-07-13 op
247 8947c1f2 2021-03-21 op if (!readkey())
248 8947c1f2 2021-03-21 op return;
249 8947c1f2 2021-03-21 op
250 7c7d7bb7 2021-03-10 op if (keybuf[0] != '\0')
251 7c7d7bb7 2021-03-10 op strlcat(keybuf, " ", sizeof(keybuf));
252 7c7d7bb7 2021-03-10 op if (thiskey.meta)
253 7c7d7bb7 2021-03-10 op strlcat(keybuf, "M-", sizeof(keybuf));
254 8947c1f2 2021-03-21 op if (thiskey.cp != 0) {
255 8947c1f2 2021-03-21 op utf8_encode(thiskey.cp, tmp);
256 7c7d7bb7 2021-03-10 op strlcat(keybuf, tmp, sizeof(keybuf));
257 af29d739 2021-07-13 op } else if ((keyname = unkbd(thiskey.key)) != NULL) {
258 af29d739 2021-07-13 op strlcat(keybuf, keyname, sizeof(keybuf));
259 8947c1f2 2021-03-21 op } else {
260 af29d739 2021-07-13 op tmp[0] = thiskey.key;
261 af29d739 2021-07-13 op strlcat(keybuf, tmp, sizeof(keybuf));
262 7c7d7bb7 2021-03-10 op }
263 7c7d7bb7 2021-03-10 op
264 9ca15951 2021-03-09 op TAILQ_FOREACH(k, &current_map->m, keymaps) {
265 9ca15951 2021-03-09 op if (k->meta == thiskey.meta &&
266 9ca15951 2021-03-09 op k->key == thiskey.key) {
267 f832146f 2021-03-09 op if (k->fn == NULL)
268 f832146f 2021-03-09 op current_map = &k->map;
269 f832146f 2021-03-09 op else {
270 9ca15951 2021-03-09 op current_map = base_map;
271 7c7d7bb7 2021-03-10 op strlcpy(keybuf, "", sizeof(keybuf));
272 46f6e974 2021-05-17 op k->fn(current_buffer());
273 f832146f 2021-03-09 op }
274 1d08c280 2021-03-06 op goto done;
275 1d08c280 2021-03-06 op }
276 eb259e66 2021-03-02 op }
277 eb259e66 2021-03-02 op
278 7c7d7bb7 2021-03-10 op if (current_map->unhandled_input != NULL)
279 7c7d7bb7 2021-03-10 op current_map->unhandled_input();
280 d2399aef 2021-06-20 op else
281 7c7d7bb7 2021-03-10 op global_key_unbound();
282 7c7d7bb7 2021-03-10 op
283 7c7d7bb7 2021-03-10 op strlcpy(keybuf, "", sizeof(keybuf));
284 9ca15951 2021-03-09 op current_map = base_map;
285 1d08c280 2021-03-06 op
286 1d08c280 2021-03-06 op done:
287 bddc7bbd 2021-04-01 op if (side_window)
288 bddc7bbd 2021-04-01 op recompute_help();
289 bddc7bbd 2021-04-01 op
290 179f0f58 2021-03-11 op redraw_tab(current_tab());
291 a6d450c1 2021-03-06 op }
292 48e9d457 2021-03-06 op
293 a6d450c1 2021-03-06 op static void
294 8a7f2683 2021-07-10 op handle_clear_echoarea(int fd, short ev, void *d)
295 a6d450c1 2021-03-06 op {
296 9cb0f9ce 2021-03-10 op free(ministate.curmesg);
297 9cb0f9ce 2021-03-10 op ministate.curmesg = NULL;
298 9cb0f9ce 2021-03-10 op
299 e9af06b9 2021-07-12 op redraw_minibuffer();
300 55df859f 2021-07-12 op place_cursor(0);
301 5e11c00c 2021-03-02 op }
302 5e11c00c 2021-03-02 op
303 5e11c00c 2021-03-02 op static void
304 5e11c00c 2021-03-02 op handle_resize(int sig, short ev, void *d)
305 831deb20 2021-05-12 op {
306 831deb20 2021-05-12 op if (event_pending(&resizeev, EV_TIMEOUT, NULL)) {
307 831deb20 2021-05-12 op event_del(&resizeev);
308 831deb20 2021-05-12 op }
309 a8a482c8 2021-05-17 op evtimer_set(&resizeev, handle_resize_nodelay, NULL);
310 831deb20 2021-05-12 op evtimer_add(&resizeev, &resize_timer);
311 831deb20 2021-05-12 op }
312 831deb20 2021-05-12 op
313 831deb20 2021-05-12 op static void
314 a8a482c8 2021-05-17 op handle_resize_nodelay(int s, short ev, void *d)
315 5e11c00c 2021-03-02 op {
316 1d08c280 2021-03-06 op struct tab *tab;
317 b3884fbe 2021-07-13 op int lines;
318 1d08c280 2021-03-06 op
319 5e11c00c 2021-03-02 op endwin();
320 5e11c00c 2021-03-02 op refresh();
321 5e11c00c 2021-03-02 op clear();
322 5e11c00c 2021-03-02 op
323 b3884fbe 2021-07-13 op lines = LINES;
324 b3884fbe 2021-07-13 op
325 23f22c83 2021-07-13 op if ((too_small = lines < 15)) {
326 23f22c83 2021-07-13 op erase();
327 23f22c83 2021-07-13 op printw("Window too small.");
328 23f22c83 2021-07-13 op refresh();
329 23f22c83 2021-07-13 op return;
330 23f22c83 2021-07-13 op }
331 23f22c83 2021-07-13 op
332 48e9d457 2021-03-06 op /* move and resize the windows, in reverse order! */
333 48e9d457 2021-03-06 op
334 b3884fbe 2021-07-13 op mvwin(echoarea, --lines, 0);
335 8a7f2683 2021-07-10 op wresize(echoarea, 1, COLS);
336 48e9d457 2021-03-06 op
337 b3884fbe 2021-07-13 op mvwin(modeline, --lines, 0);
338 48e9d457 2021-03-06 op wresize(modeline, 1, COLS);
339 48e9d457 2021-03-06 op
340 b3884fbe 2021-07-13 op body_lines = --lines;
341 bd9637e9 2021-03-06 op body_cols = COLS;
342 bddc7bbd 2021-04-01 op
343 bddc7bbd 2021-04-01 op if (side_window) {
344 bddc7bbd 2021-04-01 op help_cols = 0.3 * COLS;
345 b3884fbe 2021-07-13 op help_lines = lines;
346 bddc7bbd 2021-04-01 op mvwin(help, 1, 0);
347 bddc7bbd 2021-04-01 op wresize(help, help_lines, help_cols);
348 48e9d457 2021-03-06 op
349 bddc7bbd 2021-04-01 op wrap_page(&helpwin, help_cols);
350 bddc7bbd 2021-04-01 op
351 bddc7bbd 2021-04-01 op body_cols = COLS - help_cols - 1;
352 bddc7bbd 2021-04-01 op mvwin(body, 1, help_cols);
353 bddc7bbd 2021-04-01 op } else
354 bddc7bbd 2021-04-01 op mvwin(body, 1, 0);
355 bddc7bbd 2021-04-01 op
356 72b18268 2021-06-19 op update_x_offset();
357 bddc7bbd 2021-04-01 op wresize(body, body_lines, body_cols);
358 bddc7bbd 2021-04-01 op
359 48e9d457 2021-03-06 op wresize(tabline, 1, COLS);
360 48e9d457 2021-03-06 op
361 1d08c280 2021-03-06 op tab = current_tab();
362 1d08c280 2021-03-06 op
363 46f6e974 2021-05-17 op wrap_page(&tab->buffer, body_cols);
364 1d08c280 2021-03-06 op redraw_tab(tab);
365 eb259e66 2021-03-02 op }
366 eb259e66 2021-03-02 op
367 1d08c280 2021-03-06 op static int
368 46f6e974 2021-05-17 op wrap_page(struct buffer *buffer, int width)
369 1d08c280 2021-03-06 op {
370 452589f7 2021-03-16 op struct line *l;
371 2bfa414d 2021-07-01 op const struct line *top_orig, *orig;
372 d511dc85 2021-03-16 op struct vline *vl;
373 72b18268 2021-06-19 op int pre_width;
374 452589f7 2021-03-16 op const char *prfx;
375 452589f7 2021-03-16 op
376 2bfa414d 2021-07-01 op top_orig = buffer->top_line == NULL ? NULL : buffer->top_line->parent;
377 94ec38e8 2021-06-29 op orig = buffer->current_line == NULL ? NULL : buffer->current_line->parent;
378 94ec38e8 2021-06-29 op
379 94ec38e8 2021-06-29 op buffer->top_line = NULL;
380 46f6e974 2021-05-17 op buffer->current_line = NULL;
381 452589f7 2021-03-16 op
382 a00b4c97 2021-06-20 op buffer->force_redraw = 1;
383 46f6e974 2021-05-17 op buffer->curs_y = 0;
384 46f6e974 2021-05-17 op buffer->line_off = 0;
385 1d08c280 2021-03-06 op
386 46f6e974 2021-05-17 op empty_vlist(buffer);
387 1d08c280 2021-03-06 op
388 46f6e974 2021-05-17 op TAILQ_FOREACH(l, &buffer->page.head, lines) {
389 0d568960 2021-03-11 op prfx = line_prefixes[l->type].prfx1;
390 5e11c00c 2021-03-02 op switch (l->type) {
391 5e11c00c 2021-03-02 op case LINE_TEXT:
392 5e11c00c 2021-03-02 op case LINE_LINK:
393 5e11c00c 2021-03-02 op case LINE_TITLE_1:
394 5e11c00c 2021-03-02 op case LINE_TITLE_2:
395 5e11c00c 2021-03-02 op case LINE_TITLE_3:
396 5e11c00c 2021-03-02 op case LINE_ITEM:
397 5e11c00c 2021-03-02 op case LINE_QUOTE:
398 5e11c00c 2021-03-02 op case LINE_PRE_START:
399 5e11c00c 2021-03-02 op case LINE_PRE_END:
400 1a99965e 2021-06-19 op wrap_text(buffer, prfx, l, MIN(fill_column, width));
401 5e11c00c 2021-03-02 op break;
402 5e11c00c 2021-03-02 op case LINE_PRE_CONTENT:
403 72b18268 2021-06-19 op if (olivetti_mode)
404 72b18268 2021-06-19 op pre_width = MIN(fill_column, width);
405 72b18268 2021-06-19 op else
406 72b18268 2021-06-19 op pre_width = width;
407 72b18268 2021-06-19 op hardwrap_text(buffer, l, pre_width);
408 5e11c00c 2021-03-02 op break;
409 452589f7 2021-03-16 op }
410 452589f7 2021-03-16 op
411 2bfa414d 2021-07-01 op if (top_orig == l && buffer->top_line == NULL) {
412 46f6e974 2021-05-17 op buffer->line_off = buffer->line_max-1;
413 2bfa414d 2021-07-01 op buffer->top_line = TAILQ_LAST(&buffer->head, vhead);
414 2bfa414d 2021-07-01 op
415 2bfa414d 2021-07-01 op while (1) {
416 2bfa414d 2021-07-01 op vl = TAILQ_PREV(buffer->top_line, vhead, vlines);
417 2bfa414d 2021-07-01 op if (vl == NULL || vl->parent != orig)
418 2bfa414d 2021-07-01 op break;
419 2bfa414d 2021-07-01 op buffer->top_line = vl;
420 2bfa414d 2021-07-01 op buffer->line_off--;
421 2bfa414d 2021-07-01 op }
422 2bfa414d 2021-07-01 op }
423 2bfa414d 2021-07-01 op
424 2bfa414d 2021-07-01 op if (orig == l && buffer->current_line == NULL) {
425 46f6e974 2021-05-17 op buffer->current_line = TAILQ_LAST(&buffer->head, vhead);
426 d511dc85 2021-03-16 op
427 d511dc85 2021-03-16 op while (1) {
428 46f6e974 2021-05-17 op vl = TAILQ_PREV(buffer->current_line, vhead, vlines);
429 d511dc85 2021-03-16 op if (vl == NULL || vl->parent != orig)
430 d511dc85 2021-03-16 op break;
431 46f6e974 2021-05-17 op buffer->current_line = vl;
432 d511dc85 2021-03-16 op }
433 5e11c00c 2021-03-02 op }
434 5e11c00c 2021-03-02 op }
435 452589f7 2021-03-16 op
436 46f6e974 2021-05-17 op if (buffer->current_line == NULL)
437 46f6e974 2021-05-17 op buffer->current_line = TAILQ_FIRST(&buffer->head);
438 452589f7 2021-03-16 op
439 2bfa414d 2021-07-01 op if (buffer->top_line == NULL)
440 2bfa414d 2021-07-01 op buffer->top_line = buffer->current_line;
441 94ec38e8 2021-06-29 op
442 1d08c280 2021-03-06 op return 1;
443 1d08c280 2021-03-06 op }
444 5e11c00c 2021-03-02 op
445 754622a2 2021-03-15 op static void
446 f3bcf8f2 2021-06-21 op print_vline(int off, int width, WINDOW *window, struct vline *vl)
447 1d08c280 2021-03-06 op {
448 2af29222 2021-06-24 op const char *text;
449 768db5bb 2021-03-12 op const char *prfx;
450 2af29222 2021-06-24 op struct line_face *f;
451 f3bcf8f2 2021-06-21 op int i, left, x, y;
452 bd9637e9 2021-03-06 op
453 2af29222 2021-06-24 op f = &line_faces[vl->parent->type];
454 2af29222 2021-06-24 op
455 d89b86d6 2021-06-21 op /* unused, set by getyx */
456 f3bcf8f2 2021-06-21 op (void)y;
457 f3bcf8f2 2021-06-21 op
458 9a25f829 2021-03-14 op if (!vl->flags)
459 9a25f829 2021-03-14 op prfx = line_prefixes[vl->parent->type].prfx1;
460 768db5bb 2021-03-12 op else
461 9a25f829 2021-03-14 op prfx = line_prefixes[vl->parent->type].prfx2;
462 768db5bb 2021-03-12 op
463 2af29222 2021-06-24 op text = vl->line;
464 bd9637e9 2021-03-06 op if (text == NULL)
465 bd9637e9 2021-03-06 op text = "";
466 bd9637e9 2021-03-06 op
467 ab47e7d4 2021-06-24 op wattr_on(window, body_face.left, NULL);
468 f3bcf8f2 2021-06-21 op for (i = 0; i < off; i++)
469 f3bcf8f2 2021-06-21 op waddch(window, ' ');
470 ab47e7d4 2021-06-24 op wattr_off(window, body_face.left, NULL);
471 ab47e7d4 2021-06-24 op
472 2af29222 2021-06-24 op wattr_on(window, f->prefix, NULL);
473 bddc7bbd 2021-04-01 op wprintw(window, "%s", prfx);
474 2af29222 2021-06-24 op wattr_off(window, f->prefix, NULL);
475 803ff456 2021-03-17 op
476 2af29222 2021-06-24 op wattr_on(window, f->text, NULL);
477 bddc7bbd 2021-04-01 op wprintw(window, "%s", text);
478 2af29222 2021-06-24 op wattr_off(window, f->text, NULL);
479 f3bcf8f2 2021-06-21 op
480 f3bcf8f2 2021-06-21 op getyx(window, y, x);
481 f3bcf8f2 2021-06-21 op
482 f3bcf8f2 2021-06-21 op left = width - x;
483 f3bcf8f2 2021-06-21 op
484 2af29222 2021-06-24 op wattr_on(window, f->trail, NULL);
485 04d32eda 2021-07-08 op for (i = 0; i < left - off; ++i)
486 f3bcf8f2 2021-06-21 op waddch(window, ' ');
487 2af29222 2021-06-24 op wattr_off(window, f->trail, NULL);
488 160abe04 2021-06-21 op
489 ab47e7d4 2021-06-24 op wattr_on(window, body_face.right, NULL);
490 160abe04 2021-06-21 op for (i = 0; i < off; i++)
491 160abe04 2021-06-21 op waddch(window, ' ');
492 ab47e7d4 2021-06-24 op wattr_off(window, body_face.right, NULL);
493 f3bcf8f2 2021-06-21 op
494 1d08c280 2021-03-06 op }
495 1d08c280 2021-03-06 op
496 1d08c280 2021-03-06 op static void
497 8af5e5ed 2021-03-08 op redraw_tabline(void)
498 8af5e5ed 2021-03-08 op {
499 7c7d7bb7 2021-03-10 op struct tab *tab;
500 8f127baa 2021-04-22 op size_t toskip, ots, tabwidth, space, x;
501 8f127baa 2021-04-22 op int current, y, truncated;
502 dc5df781 2021-03-13 op const char *title;
503 119f393c 2021-03-16 op char buf[25];
504 7c7d7bb7 2021-03-10 op
505 923f9ce5 2021-06-21 op x = 0;
506 923f9ce5 2021-06-21 op
507 923f9ce5 2021-06-21 op /* unused, but setted by a getyx */
508 923f9ce5 2021-06-21 op (void)y;
509 923f9ce5 2021-06-21 op
510 8f127baa 2021-04-22 op tabwidth = sizeof(buf)+1;
511 8f127baa 2021-04-22 op space = COLS-2;
512 8f127baa 2021-04-22 op
513 a636f50e 2021-03-16 op toskip = 0;
514 a636f50e 2021-03-16 op TAILQ_FOREACH(tab, &tabshead, tabs) {
515 a636f50e 2021-03-16 op toskip++;
516 a636f50e 2021-03-16 op if (tab->flags & TAB_CURRENT)
517 a636f50e 2021-03-16 op break;
518 a636f50e 2021-03-16 op }
519 8f127baa 2021-04-22 op
520 8f127baa 2021-04-22 op if (toskip * tabwidth < space)
521 8f127baa 2021-04-22 op toskip = 0;
522 8f127baa 2021-04-22 op else {
523 8f127baa 2021-04-22 op ots = toskip;
524 a636f50e 2021-03-16 op toskip--;
525 8f127baa 2021-04-22 op while (toskip != 0 &&
526 8f127baa 2021-04-22 op (ots - toskip+1) * tabwidth < space)
527 8f127baa 2021-04-22 op toskip--;
528 8f127baa 2021-04-22 op }
529 7c7d7bb7 2021-03-10 op
530 a636f50e 2021-03-16 op werase(tabline);
531 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.background, NULL);
532 a636f50e 2021-03-16 op wprintw(tabline, toskip == 0 ? " " : "<");
533 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.background, NULL);
534 a636f50e 2021-03-16 op
535 a636f50e 2021-03-16 op truncated = 0;
536 7c7d7bb7 2021-03-10 op TAILQ_FOREACH(tab, &tabshead, tabs) {
537 a636f50e 2021-03-16 op if (truncated)
538 a636f50e 2021-03-16 op break;
539 a636f50e 2021-03-16 op if (toskip != 0) {
540 a636f50e 2021-03-16 op toskip--;
541 a636f50e 2021-03-16 op continue;
542 a636f50e 2021-03-16 op }
543 a636f50e 2021-03-16 op
544 a636f50e 2021-03-16 op getyx(tabline, y, x);
545 a636f50e 2021-03-16 op if (x + sizeof(buf)+2 >= (size_t)COLS)
546 a636f50e 2021-03-16 op truncated = 1;
547 a636f50e 2021-03-16 op
548 7c7d7bb7 2021-03-10 op current = tab->flags & TAB_CURRENT;
549 a329982b 2021-03-11 op
550 46f6e974 2021-05-17 op if (*(title = tab->buffer.page.title) == '\0')
551 2051e653 2021-03-13 op title = tab->hist_cur->h;
552 dc5df781 2021-03-13 op
553 e8a76665 2021-05-12 op if (tab->flags & TAB_URGENT)
554 e8a76665 2021-05-12 op strlcpy(buf, "!", sizeof(buf));
555 e8a76665 2021-05-12 op else
556 e8a76665 2021-05-12 op strlcpy(buf, " ", sizeof(buf));
557 e8a76665 2021-05-12 op
558 119f393c 2021-03-16 op if (strlcat(buf, title, sizeof(buf)) >= sizeof(buf)) {
559 119f393c 2021-03-16 op /* truncation happens */
560 119f393c 2021-03-16 op strlcpy(&buf[sizeof(buf)-4], "...", 4);
561 119f393c 2021-03-16 op } else {
562 119f393c 2021-03-16 op /* pad with spaces */
563 119f393c 2021-03-16 op while (strlcat(buf, " ", sizeof(buf)) < sizeof(buf))
564 119f393c 2021-03-16 op /* nop */ ;
565 119f393c 2021-03-16 op }
566 a329982b 2021-03-11 op
567 a329982b 2021-03-11 op if (current)
568 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.current, NULL);
569 cb6c7aa0 2021-03-16 op else
570 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.tab, NULL);
571 119f393c 2021-03-16 op
572 119f393c 2021-03-16 op wprintw(tabline, "%s", buf);
573 119f393c 2021-03-16 op if (TAILQ_NEXT(tab, tabs) != NULL)
574 119f393c 2021-03-16 op wprintw(tabline, " ");
575 cb6c7aa0 2021-03-16 op
576 cb6c7aa0 2021-03-16 op if (current)
577 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.current, NULL);
578 cb6c7aa0 2021-03-16 op else
579 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.tab, NULL);
580 7c7d7bb7 2021-03-10 op }
581 119f393c 2021-03-16 op
582 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.background, NULL);
583 8f127baa 2021-04-22 op for (; x < (size_t)COLS; ++x)
584 119f393c 2021-03-16 op waddch(tabline, ' ');
585 a636f50e 2021-03-16 op if (truncated)
586 a636f50e 2021-03-16 op mvwprintw(tabline, 0, COLS-1, ">");
587 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.background, NULL);
588 10346511 2021-03-17 op }
589 77dd24f4 2021-07-05 op
590 77dd24f4 2021-07-05 op /*
591 77dd24f4 2021-07-05 op * Compute the first visible line around vl. Try to search forward
592 77dd24f4 2021-07-05 op * until the end of the buffer; if a visible line is not found, search
593 77dd24f4 2021-07-05 op * backward. Return NULL if no viable line was found.
594 77dd24f4 2021-07-05 op */
595 77dd24f4 2021-07-05 op static inline struct vline *
596 77dd24f4 2021-07-05 op adjust_line(struct vline *vl, struct buffer *buffer)
597 77dd24f4 2021-07-05 op {
598 77dd24f4 2021-07-05 op struct vline *t;
599 10346511 2021-03-17 op
600 77dd24f4 2021-07-05 op if (!(vl->parent->flags & L_HIDDEN))
601 77dd24f4 2021-07-05 op return vl;
602 77dd24f4 2021-07-05 op
603 77dd24f4 2021-07-05 op /* search forward */
604 77dd24f4 2021-07-05 op for (t = vl;
605 77dd24f4 2021-07-05 op t != NULL && t->parent->flags & L_HIDDEN;
606 77dd24f4 2021-07-05 op t = TAILQ_NEXT(t, vlines))
607 77dd24f4 2021-07-05 op ; /* nop */
608 77dd24f4 2021-07-05 op
609 77dd24f4 2021-07-05 op if (t != NULL)
610 77dd24f4 2021-07-05 op return t;
611 77dd24f4 2021-07-05 op
612 77dd24f4 2021-07-05 op /* search backward */
613 77dd24f4 2021-07-05 op for (t = vl;
614 77dd24f4 2021-07-05 op t != NULL && t->parent->flags & L_HIDDEN;
615 77dd24f4 2021-07-05 op t = TAILQ_PREV(t, vhead, vlines))
616 77dd24f4 2021-07-05 op ; /* nop */
617 77dd24f4 2021-07-05 op
618 77dd24f4 2021-07-05 op return t;
619 77dd24f4 2021-07-05 op }
620 77dd24f4 2021-07-05 op
621 bddc7bbd 2021-04-01 op static void
622 f3bcf8f2 2021-06-21 op redraw_window(WINDOW *win, int height, int width, struct buffer *buffer)
623 bddc7bbd 2021-04-01 op {
624 2bfa414d 2021-07-01 op struct vline *vl;
625 2bfa414d 2021-07-01 op int l, onscreen;
626 13e8b82f 2021-07-01 op
627 0a805b02 2021-07-01 op restore_curs_x(buffer);
628 a00b4c97 2021-06-20 op
629 a00b4c97 2021-06-20 op /*
630 0a805b02 2021-07-01 op * TODO: ignoring buffer->force_update and always
631 0a805b02 2021-07-01 op * re-rendering. In theory we can recompute the y position
632 0a805b02 2021-07-01 op * without a re-render, and optimize here. It's not the only
633 0a805b02 2021-07-01 op * optimisation possible here, wscrl wolud also be an
634 0a805b02 2021-07-01 op * interesting one.
635 a00b4c97 2021-06-20 op */
636 bddc7bbd 2021-04-01 op
637 2bfa414d 2021-07-01 op again:
638 bddc7bbd 2021-04-01 op werase(win);
639 2bfa414d 2021-07-01 op buffer->curs_y = 0;
640 a00b4c97 2021-06-20 op
641 46f6e974 2021-05-17 op if (TAILQ_EMPTY(&buffer->head))
642 77dd24f4 2021-07-05 op goto end;
643 77dd24f4 2021-07-05 op
644 77dd24f4 2021-07-05 op buffer->top_line = adjust_line(buffer->top_line, buffer);
645 77dd24f4 2021-07-05 op if (buffer->top_line == NULL)
646 a00b4c97 2021-06-20 op goto end;
647 bddc7bbd 2021-04-01 op
648 77dd24f4 2021-07-05 op buffer->current_line = adjust_line(buffer->current_line, buffer);
649 77dd24f4 2021-07-05 op
650 bddc7bbd 2021-04-01 op l = 0;
651 2bfa414d 2021-07-01 op onscreen = 0;
652 94ec38e8 2021-06-29 op for (vl = buffer->top_line; vl != NULL; vl = TAILQ_NEXT(vl, vlines)) {
653 963c680c 2021-07-05 op if (vl->parent->flags & L_HIDDEN)
654 963c680c 2021-07-05 op continue;
655 963c680c 2021-07-05 op
656 f3bcf8f2 2021-06-21 op wmove(win, l, 0);
657 f3bcf8f2 2021-06-21 op print_vline(x_offset, width, win, vl);
658 2bfa414d 2021-07-01 op
659 2bfa414d 2021-07-01 op if (vl == buffer->current_line)
660 2bfa414d 2021-07-01 op onscreen = 1;
661 2bfa414d 2021-07-01 op
662 2bfa414d 2021-07-01 op if (!onscreen)
663 2bfa414d 2021-07-01 op buffer->curs_y++;
664 2bfa414d 2021-07-01 op
665 bddc7bbd 2021-04-01 op l++;
666 bddc7bbd 2021-04-01 op if (l == height)
667 bddc7bbd 2021-04-01 op break;
668 2bfa414d 2021-07-01 op }
669 2bfa414d 2021-07-01 op
670 2bfa414d 2021-07-01 op if (!onscreen) {
671 2bfa414d 2021-07-01 op for (; vl != NULL; vl = TAILQ_NEXT(vl, vlines)) {
672 2bfa414d 2021-07-01 op if (vl == buffer->current_line)
673 2bfa414d 2021-07-01 op break;
674 963c680c 2021-07-05 op if (vl->parent->flags & L_HIDDEN)
675 963c680c 2021-07-05 op continue;
676 2bfa414d 2021-07-01 op buffer->line_off++;
677 2bfa414d 2021-07-01 op buffer->top_line = TAILQ_NEXT(buffer->top_line, vlines);
678 2bfa414d 2021-07-01 op }
679 2bfa414d 2021-07-01 op
680 2bfa414d 2021-07-01 op goto again;
681 bddc7bbd 2021-04-01 op }
682 bddc7bbd 2021-04-01 op
683 2bfa414d 2021-07-01 op buffer->last_line_off = buffer->line_off;
684 2bfa414d 2021-07-01 op buffer->force_redraw = 0;
685 a00b4c97 2021-06-20 op end:
686 46f6e974 2021-05-17 op wmove(win, buffer->curs_y, buffer->curs_x);
687 bddc7bbd 2021-04-01 op }
688 bddc7bbd 2021-04-01 op
689 bddc7bbd 2021-04-01 op static void
690 bddc7bbd 2021-04-01 op redraw_help(void)
691 bddc7bbd 2021-04-01 op {
692 f3bcf8f2 2021-06-21 op redraw_window(help, help_lines, help_cols, &helpwin);
693 bddc7bbd 2021-04-01 op }
694 bddc7bbd 2021-04-01 op
695 bddc7bbd 2021-04-01 op static void
696 bddc7bbd 2021-04-01 op redraw_body(struct tab *tab)
697 bddc7bbd 2021-04-01 op {
698 3323faaf 2021-06-21 op static struct tab *last_tab;
699 3323faaf 2021-06-21 op
700 3323faaf 2021-06-21 op if (last_tab != tab)
701 3323faaf 2021-06-21 op tab->buffer.force_redraw =1;
702 3323faaf 2021-06-21 op last_tab = tab;
703 3323faaf 2021-06-21 op
704 f3bcf8f2 2021-06-21 op redraw_window(body, body_lines, body_cols, &tab->buffer);
705 bddc7bbd 2021-04-01 op }
706 bddc7bbd 2021-04-01 op
707 10346511 2021-03-17 op static inline char
708 10346511 2021-03-17 op trust_status_char(enum trust_state ts)
709 10346511 2021-03-17 op {
710 10346511 2021-03-17 op switch (ts) {
711 10346511 2021-03-17 op case TS_UNKNOWN: return 'u';
712 10346511 2021-03-17 op case TS_UNTRUSTED: return '!';
713 a2fd3805 2021-07-06 op case TS_TEMP_TRUSTED: return '!';
714 10346511 2021-03-17 op case TS_TRUSTED: return 'v';
715 10346511 2021-03-17 op case TS_VERIFIED: return 'V';
716 923f9ce5 2021-06-21 op default: return 'X';
717 10346511 2021-03-17 op }
718 8af5e5ed 2021-03-08 op }
719 8af5e5ed 2021-03-08 op
720 8af5e5ed 2021-03-08 op static void
721 48e9d457 2021-03-06 op redraw_modeline(struct tab *tab)
722 1d08c280 2021-03-06 op {
723 481340cc 2021-03-11 op double pct;
724 48e9d457 2021-03-06 op int x, y, max_x, max_y;
725 46f6e974 2021-05-17 op const char *mode = tab->buffer.page.name;
726 8af5e5ed 2021-03-08 op const char *spin = "-\\|/";
727 1d08c280 2021-03-06 op
728 156f1501 2021-03-13 op werase(modeline);
729 ab47e7d4 2021-06-24 op wattr_on(modeline, modeline_face.background, NULL);
730 48e9d457 2021-03-06 op wmove(modeline, 0, 0);
731 1d08c280 2021-03-06 op
732 10346511 2021-03-17 op wprintw(modeline, "-%c%c %s ",
733 2ba66cea 2021-03-22 op spin[tab->loading_anim_step],
734 10346511 2021-03-17 op trust_status_char(tab->trust),
735 58c75fab 2021-03-16 op mode == NULL ? "(none)" : mode);
736 481340cc 2021-03-11 op
737 46f6e974 2021-05-17 op pct = (tab->buffer.line_off + tab->buffer.curs_y) * 100.0 / tab->buffer.line_max;
738 481340cc 2021-03-11 op
739 46f6e974 2021-05-17 op if (tab->buffer.line_max <= (size_t)body_lines)
740 481340cc 2021-03-11 op wprintw(modeline, "All ");
741 46f6e974 2021-05-17 op else if (tab->buffer.line_off == 0)
742 481340cc 2021-03-11 op wprintw(modeline, "Top ");
743 46f6e974 2021-05-17 op else if (tab->buffer.line_off + body_lines >= tab->buffer.line_max)
744 481340cc 2021-03-11 op wprintw(modeline, "Bottom ");
745 481340cc 2021-03-11 op else
746 481340cc 2021-03-11 op wprintw(modeline, "%.0f%% ", pct);
747 481340cc 2021-03-11 op
748 481340cc 2021-03-11 op wprintw(modeline, "%d/%d %s ",
749 46f6e974 2021-05-17 op tab->buffer.line_off + tab->buffer.curs_y,
750 46f6e974 2021-05-17 op tab->buffer.line_max,
751 2051e653 2021-03-13 op tab->hist_cur->h);
752 481340cc 2021-03-11 op
753 48e9d457 2021-03-06 op getyx(modeline, y, x);
754 48e9d457 2021-03-06 op getmaxyx(modeline, max_y, max_x);
755 48e9d457 2021-03-06 op
756 48e9d457 2021-03-06 op (void)y;
757 48e9d457 2021-03-06 op (void)max_y;
758 48e9d457 2021-03-06 op
759 48e9d457 2021-03-06 op for (; x < max_x; ++x)
760 48e9d457 2021-03-06 op waddstr(modeline, "-");
761 d5493194 2021-06-15 op
762 ab47e7d4 2021-06-24 op wattr_off(modeline, modeline_face.background, NULL);
763 9ca15951 2021-03-09 op }
764 9ca15951 2021-03-09 op
765 9ca15951 2021-03-09 op static void
766 e9af06b9 2021-07-12 op redraw_minibuffer(void)
767 9ca15951 2021-03-09 op {
768 8a7f2683 2021-07-10 op wattr_on(echoarea, minibuffer_face.background, NULL);
769 8a7f2683 2021-07-10 op werase(echoarea);
770 17e5106b 2021-03-21 op
771 e9af06b9 2021-07-12 op if (in_minibuffer)
772 e9af06b9 2021-07-12 op do_redraw_minibuffer();
773 e9af06b9 2021-07-12 op else
774 e9af06b9 2021-07-12 op do_redraw_echoarea();
775 9cb0f9ce 2021-03-10 op
776 e9af06b9 2021-07-12 op wattr_off(echoarea, minibuffer_face.background, NULL);
777 e9af06b9 2021-07-12 op }
778 9cb0f9ce 2021-03-10 op
779 e9af06b9 2021-07-12 op static void
780 e9af06b9 2021-07-12 op do_redraw_echoarea(void)
781 e9af06b9 2021-07-12 op {
782 e9af06b9 2021-07-12 op struct tab *tab;
783 9cb0f9ce 2021-03-10 op
784 17e5106b 2021-03-21 op if (ministate.curmesg != NULL)
785 e9af06b9 2021-07-12 op wprintw(echoarea, "%s", ministate.curmesg);
786 e9af06b9 2021-07-12 op else if (*keybuf != '\0')
787 8a7f2683 2021-07-10 op waddstr(echoarea, keybuf);
788 e9af06b9 2021-07-12 op else {
789 e9af06b9 2021-07-12 op /* If nothing else, show the URL at point */
790 8300dd3c 2021-03-18 op tab = current_tab();
791 46f6e974 2021-05-17 op if (tab->buffer.current_line != NULL &&
792 46f6e974 2021-05-17 op tab->buffer.current_line->parent->type == LINE_LINK)
793 8a7f2683 2021-07-10 op waddstr(echoarea, tab->buffer.current_line->parent->alt);
794 8300dd3c 2021-03-18 op }
795 e9af06b9 2021-07-12 op }
796 91a72220 2021-03-13 op
797 e9af06b9 2021-07-12 op static void
798 e9af06b9 2021-07-12 op do_redraw_minibuffer(void)
799 e9af06b9 2021-07-12 op {
800 e9af06b9 2021-07-12 op size_t off_y, off_x = 0;
801 e9af06b9 2021-07-12 op const char *start, *c;
802 d5493194 2021-06-15 op
803 e9af06b9 2021-07-12 op /* unused, set by getyx */
804 e9af06b9 2021-07-12 op (void)off_y;
805 e9af06b9 2021-07-12 op
806 e9af06b9 2021-07-12 op mvwprintw(echoarea, 0, 0, "%s", ministate.prompt);
807 e9af06b9 2021-07-12 op if (ministate.hist_cur != NULL)
808 e9af06b9 2021-07-12 op wprintw(echoarea, "(%zu/%zu) ",
809 e9af06b9 2021-07-12 op ministate.hist_off + 1,
810 e9af06b9 2021-07-12 op ministate.history->len);
811 e9af06b9 2021-07-12 op
812 e9af06b9 2021-07-12 op getyx(echoarea, off_y, off_x);
813 e9af06b9 2021-07-12 op
814 e9af06b9 2021-07-12 op start = ministate.hist_cur != NULL
815 e9af06b9 2021-07-12 op ? ministate.hist_cur->h
816 e9af06b9 2021-07-12 op : ministate.buf;
817 e9af06b9 2021-07-12 op c = utf8_nth(ministate.buffer.current_line->line,
818 e9af06b9 2021-07-12 op ministate.buffer.cpoff);
819 e9af06b9 2021-07-12 op while (utf8_swidth_between(start, c) > (size_t)COLS/2) {
820 e9af06b9 2021-07-12 op start = utf8_next_cp(start);
821 e9af06b9 2021-07-12 op }
822 e9af06b9 2021-07-12 op
823 e9af06b9 2021-07-12 op waddstr(echoarea, start);
824 e9af06b9 2021-07-12 op
825 e9af06b9 2021-07-12 op if (ministate.curmesg != NULL)
826 e9af06b9 2021-07-12 op wprintw(echoarea, " [%s]", ministate.curmesg);
827 e9af06b9 2021-07-12 op
828 e9af06b9 2021-07-12 op wmove(echoarea, 0, off_x + utf8_swidth_between(start, c));
829 55df859f 2021-07-12 op }
830 55df859f 2021-07-12 op
831 55df859f 2021-07-12 op /*
832 55df859f 2021-07-12 op * Place the cursor in the right ncurses window. If soft is 1, use
833 4ff12389 2021-07-12 op * wnoutrefresh (which shouldn't cause any I/O); otherwise use
834 55df859f 2021-07-12 op * wrefresh.
835 55df859f 2021-07-12 op */
836 55df859f 2021-07-12 op static void
837 55df859f 2021-07-12 op place_cursor(int soft)
838 55df859f 2021-07-12 op {
839 4ff12389 2021-07-12 op int (*touch)(WINDOW *);
840 55df859f 2021-07-12 op
841 55df859f 2021-07-12 op if (soft)
842 55df859f 2021-07-12 op touch = wnoutrefresh;
843 55df859f 2021-07-12 op else
844 55df859f 2021-07-12 op touch = wrefresh;
845 55df859f 2021-07-12 op
846 55df859f 2021-07-12 op if (in_minibuffer) {
847 55df859f 2021-07-12 op touch(body);
848 55df859f 2021-07-12 op touch(echoarea);
849 55df859f 2021-07-12 op } else {
850 55df859f 2021-07-12 op touch(echoarea);
851 55df859f 2021-07-12 op touch(body);
852 55df859f 2021-07-12 op }
853 48e9d457 2021-03-06 op }
854 48e9d457 2021-03-06 op
855 48e9d457 2021-03-06 op static void
856 48e9d457 2021-03-06 op redraw_tab(struct tab *tab)
857 48e9d457 2021-03-06 op {
858 23f22c83 2021-07-13 op if (too_small)
859 23f22c83 2021-07-13 op return;
860 23f22c83 2021-07-13 op
861 bddc7bbd 2021-04-01 op if (side_window) {
862 bddc7bbd 2021-04-01 op redraw_help();
863 bddc7bbd 2021-04-01 op wnoutrefresh(help);
864 bddc7bbd 2021-04-01 op }
865 bddc7bbd 2021-04-01 op
866 e19f9a04 2021-03-11 op redraw_tabline();
867 e19f9a04 2021-03-11 op redraw_body(tab);
868 e19f9a04 2021-03-11 op redraw_modeline(tab);
869 e9af06b9 2021-07-12 op redraw_minibuffer();
870 e19f9a04 2021-03-11 op
871 bddc7bbd 2021-04-01 op wnoutrefresh(tabline);
872 bddc7bbd 2021-04-01 op wnoutrefresh(modeline);
873 e19f9a04 2021-03-11 op
874 55df859f 2021-07-12 op place_cursor(1);
875 bddc7bbd 2021-04-01 op
876 bddc7bbd 2021-04-01 op doupdate();
877 e19f9a04 2021-03-11 op }
878 e19f9a04 2021-03-11 op
879 e19f9a04 2021-03-11 op static void
880 bddc7bbd 2021-04-01 op emit_help_item(char *prfx, void *fn)
881 e19f9a04 2021-03-11 op {
882 bddc7bbd 2021-04-01 op struct line *l;
883 a3666ed5 2021-06-25 op struct cmd *cmd;
884 48e9d457 2021-03-06 op
885 bddc7bbd 2021-04-01 op for (cmd = cmds; cmd->cmd != NULL; ++cmd) {
886 bddc7bbd 2021-04-01 op if (fn == cmd->fn)
887 bddc7bbd 2021-04-01 op break;
888 bddc7bbd 2021-04-01 op }
889 bddc7bbd 2021-04-01 op assert(cmd != NULL);
890 48e9d457 2021-03-06 op
891 bddc7bbd 2021-04-01 op if ((l = calloc(1, sizeof(*l))) == NULL)
892 bddc7bbd 2021-04-01 op abort();
893 48e9d457 2021-03-06 op
894 bddc7bbd 2021-04-01 op l->type = LINE_TEXT;
895 bddc7bbd 2021-04-01 op l->alt = NULL;
896 bddc7bbd 2021-04-01 op
897 bddc7bbd 2021-04-01 op asprintf(&l->line, "%s %s", prfx, cmd->cmd);
898 bddc7bbd 2021-04-01 op
899 bddc7bbd 2021-04-01 op if (TAILQ_EMPTY(&helpwin.page.head))
900 bddc7bbd 2021-04-01 op TAILQ_INSERT_HEAD(&helpwin.page.head, l, lines);
901 bddc7bbd 2021-04-01 op else
902 bddc7bbd 2021-04-01 op TAILQ_INSERT_TAIL(&helpwin.page.head, l, lines);
903 bddc7bbd 2021-04-01 op }
904 bddc7bbd 2021-04-01 op
905 bddc7bbd 2021-04-01 op static void
906 bddc7bbd 2021-04-01 op rec_compute_help(struct kmap *keymap, char *prfx, size_t len)
907 bddc7bbd 2021-04-01 op {
908 bddc7bbd 2021-04-01 op struct keymap *k;
909 bddc7bbd 2021-04-01 op char p[32];
910 bddc7bbd 2021-04-01 op const char *kn;
911 bddc7bbd 2021-04-01 op
912 bddc7bbd 2021-04-01 op TAILQ_FOREACH(k, &keymap->m, keymaps) {
913 bddc7bbd 2021-04-01 op strlcpy(p, prfx, sizeof(p));
914 bddc7bbd 2021-04-01 op if (*p != '\0')
915 bddc7bbd 2021-04-01 op strlcat(p, " ", sizeof(p));
916 bddc7bbd 2021-04-01 op if (k->meta)
917 bddc7bbd 2021-04-01 op strlcat(p, "M-", sizeof(p));
918 bddc7bbd 2021-04-01 op if ((kn = unkbd(k->key)) != NULL)
919 bddc7bbd 2021-04-01 op strlcat(p, kn, sizeof(p));
920 bddc7bbd 2021-04-01 op else
921 bddc7bbd 2021-04-01 op strlcat(p, keyname(k->key), sizeof(p));
922 bddc7bbd 2021-04-01 op
923 bddc7bbd 2021-04-01 op if (k->fn == NULL)
924 bddc7bbd 2021-04-01 op rec_compute_help(&k->map, p, sizeof(p));
925 bddc7bbd 2021-04-01 op else
926 bddc7bbd 2021-04-01 op emit_help_item(p, k->fn);
927 9ca15951 2021-03-09 op }
928 bddc7bbd 2021-04-01 op }
929 174b3cdf 2021-03-21 op
930 bddc7bbd 2021-04-01 op static void
931 bddc7bbd 2021-04-01 op recompute_help(void)
932 bddc7bbd 2021-04-01 op {
933 bddc7bbd 2021-04-01 op char p[32] = { 0 };
934 bddc7bbd 2021-04-01 op
935 bddc7bbd 2021-04-01 op empty_vlist(&helpwin);
936 bddc7bbd 2021-04-01 op empty_linelist(&helpwin);
937 bddc7bbd 2021-04-01 op rec_compute_help(current_map, p, sizeof(p));
938 bddc7bbd 2021-04-01 op wrap_page(&helpwin, help_cols);
939 7953dd72 2021-03-07 op }
940 7953dd72 2021-03-07 op
941 7f963c41 2021-06-20 op void
942 740f578b 2021-03-15 op vmessage(const char *fmt, va_list ap)
943 7953dd72 2021-03-07 op {
944 8a7f2683 2021-07-10 op if (evtimer_pending(&clechoev, NULL))
945 8a7f2683 2021-07-10 op evtimer_del(&clechoev);
946 bf992581 2021-03-12 op
947 bf992581 2021-03-12 op free(ministate.curmesg);
948 2b2d2872 2021-06-20 op ministate.curmesg = NULL;
949 7953dd72 2021-03-07 op
950 2b2d2872 2021-06-20 op if (fmt != NULL) {
951 8a7f2683 2021-07-10 op evtimer_set(&clechoev, handle_clear_echoarea, NULL);
952 8a7f2683 2021-07-10 op evtimer_add(&clechoev, &clechoev_timer);
953 9cb0f9ce 2021-03-10 op
954 2b2d2872 2021-06-20 op /* TODO: what to do if the allocation fails here? */
955 2b2d2872 2021-06-20 op if (vasprintf(&ministate.curmesg, fmt, ap) == -1)
956 2b2d2872 2021-06-20 op ministate.curmesg = NULL;
957 2b2d2872 2021-06-20 op }
958 2b2d2872 2021-06-20 op
959 e9af06b9 2021-07-12 op redraw_minibuffer();
960 55df859f 2021-07-12 op place_cursor(0);
961 bcb0b073 2021-03-07 op }
962 bcb0b073 2021-03-07 op
963 7f963c41 2021-06-20 op void
964 740f578b 2021-03-15 op message(const char *fmt, ...)
965 740f578b 2021-03-15 op {
966 740f578b 2021-03-15 op va_list ap;
967 740f578b 2021-03-15 op
968 740f578b 2021-03-15 op va_start(ap, fmt);
969 740f578b 2021-03-15 op vmessage(fmt, ap);
970 740f578b 2021-03-15 op va_end(ap);
971 740f578b 2021-03-15 op }
972 740f578b 2021-03-15 op
973 2b2d2872 2021-06-20 op void
974 8af5e5ed 2021-03-08 op start_loading_anim(struct tab *tab)
975 8af5e5ed 2021-03-08 op {
976 2ba66cea 2021-03-22 op if (tab->loading_anim)
977 8af5e5ed 2021-03-08 op return;
978 2ba66cea 2021-03-22 op tab->loading_anim = 1;
979 2ba66cea 2021-03-22 op evtimer_set(&tab->loadingev, update_loading_anim, tab);
980 2ba66cea 2021-03-22 op evtimer_add(&tab->loadingev, &loadingev_timer);
981 8af5e5ed 2021-03-08 op }
982 8af5e5ed 2021-03-08 op
983 8af5e5ed 2021-03-08 op static void
984 8af5e5ed 2021-03-08 op update_loading_anim(int fd, short ev, void *d)
985 8af5e5ed 2021-03-08 op {
986 8af5e5ed 2021-03-08 op struct tab *tab = d;
987 8af5e5ed 2021-03-08 op
988 2ba66cea 2021-03-22 op tab->loading_anim_step = (tab->loading_anim_step+1)%4;
989 9ca15951 2021-03-09 op
990 6347dcd0 2021-03-16 op if (tab->flags & TAB_CURRENT) {
991 6347dcd0 2021-03-16 op redraw_modeline(tab);
992 6347dcd0 2021-03-16 op wrefresh(modeline);
993 6347dcd0 2021-03-16 op wrefresh(body);
994 6347dcd0 2021-03-16 op if (in_minibuffer)
995 8a7f2683 2021-07-10 op wrefresh(echoarea);
996 6347dcd0 2021-03-16 op }
997 8af5e5ed 2021-03-08 op
998 2ba66cea 2021-03-22 op evtimer_add(&tab->loadingev, &loadingev_timer);
999 8af5e5ed 2021-03-08 op }
1000 8af5e5ed 2021-03-08 op
1001 8af5e5ed 2021-03-08 op static void
1002 8af5e5ed 2021-03-08 op stop_loading_anim(struct tab *tab)
1003 8af5e5ed 2021-03-08 op {
1004 2ba66cea 2021-03-22 op if (!tab->loading_anim)
1005 8af5e5ed 2021-03-08 op return;
1006 2ba66cea 2021-03-22 op evtimer_del(&tab->loadingev);
1007 2ba66cea 2021-03-22 op tab->loading_anim = 0;
1008 2ba66cea 2021-03-22 op tab->loading_anim_step = 0;
1009 3d8c2326 2021-03-18 op
1010 3d8c2326 2021-03-18 op if (!(tab->flags & TAB_CURRENT))
1011 3d8c2326 2021-03-18 op return;
1012 43a1b8d0 2021-03-09 op
1013 43a1b8d0 2021-03-09 op redraw_modeline(tab);
1014 9ca15951 2021-03-09 op
1015 43a1b8d0 2021-03-09 op wrefresh(modeline);
1016 43a1b8d0 2021-03-09 op wrefresh(body);
1017 9ca15951 2021-03-09 op if (in_minibuffer)
1018 8a7f2683 2021-07-10 op wrefresh(echoarea);
1019 8af5e5ed 2021-03-08 op }
1020 8af5e5ed 2021-03-08 op
1021 2b2d2872 2021-06-20 op void
1022 43a1b8d0 2021-03-09 op load_url_in_tab(struct tab *tab, const char *url)
1023 8af5e5ed 2021-03-08 op {
1024 8af5e5ed 2021-03-08 op message("Loading %s...", url);
1025 8af5e5ed 2021-03-08 op start_loading_anim(tab);
1026 8af5e5ed 2021-03-08 op load_url(tab, url);
1027 43a1b8d0 2021-03-09 op
1028 46f6e974 2021-05-17 op tab->buffer.curs_x = 0;
1029 46f6e974 2021-05-17 op tab->buffer.curs_y = 0;
1030 43a1b8d0 2021-03-09 op redraw_tab(tab);
1031 9ca15951 2021-03-09 op }
1032 9ca15951 2021-03-09 op
1033 2b2d2872 2021-06-20 op void
1034 5cd2ebb1 2021-03-11 op switch_to_tab(struct tab *tab)
1035 5cd2ebb1 2021-03-11 op {
1036 5cd2ebb1 2021-03-11 op struct tab *t;
1037 5cd2ebb1 2021-03-11 op
1038 5cd2ebb1 2021-03-11 op TAILQ_FOREACH(t, &tabshead, tabs) {
1039 5cd2ebb1 2021-03-11 op t->flags &= ~TAB_CURRENT;
1040 5cd2ebb1 2021-03-11 op }
1041 5cd2ebb1 2021-03-11 op
1042 5cd2ebb1 2021-03-11 op tab->flags |= TAB_CURRENT;
1043 cf25a90f 2021-06-11 op tab->flags &= ~TAB_URGENT;
1044 2eef3403 2021-04-22 op }
1045 2eef3403 2021-04-22 op
1046 2eef3403 2021-04-22 op unsigned int
1047 2eef3403 2021-04-22 op tab_new_id(void)
1048 2eef3403 2021-04-22 op {
1049 2eef3403 2021-04-22 op return tab_counter++;
1050 5cd2ebb1 2021-03-11 op }
1051 5cd2ebb1 2021-03-11 op
1052 2b2d2872 2021-06-20 op struct tab *
1053 1b81bc33 2021-03-15 op new_tab(const char *url)
1054 bcb0b073 2021-03-07 op {
1055 754622a2 2021-03-15 op struct tab *tab;
1056 bcb0b073 2021-03-07 op
1057 71105afa 2021-03-16 op if ((tab = calloc(1, sizeof(*tab))) == NULL) {
1058 71105afa 2021-03-16 op event_loopbreak();
1059 71105afa 2021-03-16 op return NULL;
1060 71105afa 2021-03-16 op }
1061 de2a69bb 2021-05-17 op tab->fd = -1;
1062 bcb0b073 2021-03-07 op
1063 2051e653 2021-03-13 op TAILQ_INIT(&tab->hist.head);
1064 2051e653 2021-03-13 op
1065 46f6e974 2021-05-17 op TAILQ_INIT(&tab->buffer.head);
1066 bcb0b073 2021-03-07 op
1067 2eef3403 2021-04-22 op tab->id = tab_new_id();
1068 5cd2ebb1 2021-03-11 op switch_to_tab(tab);
1069 bcb0b073 2021-03-07 op
1070 bcb0b073 2021-03-07 op if (TAILQ_EMPTY(&tabshead))
1071 bcb0b073 2021-03-07 op TAILQ_INSERT_HEAD(&tabshead, tab, tabs);
1072 bcb0b073 2021-03-07 op else
1073 bcb0b073 2021-03-07 op TAILQ_INSERT_TAIL(&tabshead, tab, tabs);
1074 bcb0b073 2021-03-07 op
1075 43a1b8d0 2021-03-09 op load_url_in_tab(tab, url);
1076 b1df9b71 2021-03-12 op return tab;
1077 5e11c00c 2021-03-02 op }
1078 5e11c00c 2021-03-02 op
1079 941b3761 2021-03-18 op int
1080 d2544989 2021-07-08 op ui_init()
1081 941b3761 2021-03-18 op {
1082 5e11c00c 2021-03-02 op setlocale(LC_ALL, "");
1083 5e11c00c 2021-03-02 op
1084 22268e11 2021-03-11 op TAILQ_INIT(&eecmd_history.head);
1085 22268e11 2021-03-11 op TAILQ_INIT(&ir_history.head);
1086 22268e11 2021-03-11 op TAILQ_INIT(&lu_history.head);
1087 22268e11 2021-03-11 op
1088 2ba66cea 2021-03-22 op ministate.line.type = LINE_TEXT;
1089 2ba66cea 2021-03-22 op ministate.vline.parent = &ministate.line;
1090 46f6e974 2021-05-17 op ministate.buffer.current_line = &ministate.vline;
1091 2ba66cea 2021-03-22 op
1092 bddc7bbd 2021-04-01 op /* initialize help window */
1093 bddc7bbd 2021-04-01 op TAILQ_INIT(&helpwin.head);
1094 bddc7bbd 2021-04-01 op
1095 9ca15951 2021-03-09 op base_map = &global_map;
1096 f832146f 2021-03-09 op current_map = &global_map;
1097 f832146f 2021-03-09 op
1098 5e11c00c 2021-03-02 op initscr();
1099 74a2587f 2021-06-21 op
1100 74a2587f 2021-06-21 op if (enable_colors) {
1101 74a2587f 2021-06-21 op if (has_colors()) {
1102 74a2587f 2021-06-21 op start_color();
1103 160abe04 2021-06-21 op use_default_colors();
1104 f3bcf8f2 2021-06-21 op } else
1105 74a2587f 2021-06-21 op enable_colors = 0;
1106 f3bcf8f2 2021-06-21 op }
1107 74a2587f 2021-06-21 op
1108 42d61f50 2021-06-24 op config_apply_style();
1109 42d61f50 2021-06-24 op
1110 15e1b108 2021-03-02 op raw();
1111 5e11c00c 2021-03-02 op noecho();
1112 5e11c00c 2021-03-02 op nonl();
1113 5e11c00c 2021-03-02 op intrflush(stdscr, FALSE);
1114 5e11c00c 2021-03-02 op
1115 48e9d457 2021-03-06 op if ((tabline = newwin(1, COLS, 0, 0)) == NULL)
1116 48e9d457 2021-03-06 op return 0;
1117 48e9d457 2021-03-06 op if ((body = newwin(LINES - 3, COLS, 1, 0)) == NULL)
1118 48e9d457 2021-03-06 op return 0;
1119 48e9d457 2021-03-06 op if ((modeline = newwin(1, COLS, LINES-2, 0)) == NULL)
1120 48e9d457 2021-03-06 op return 0;
1121 8a7f2683 2021-07-10 op if ((echoarea = newwin(1, COLS, LINES-1, 0)) == NULL)
1122 e5a2797f 2021-07-13 op return 0;
1123 e5a2797f 2021-07-13 op if ((minibuffer = newwin(1, COLS, LINES-1, 0)) == NULL)
1124 48e9d457 2021-03-06 op return 0;
1125 bddc7bbd 2021-04-01 op if ((help = newwin(1, 1, 1, 0)) == NULL)
1126 bddc7bbd 2021-04-01 op return 0;
1127 1d08c280 2021-03-06 op
1128 48e9d457 2021-03-06 op body_lines = LINES-3;
1129 48e9d457 2021-03-06 op body_cols = COLS;
1130 33d904b6 2021-06-22 op
1131 b598590d 2021-06-21 op wbkgd(body, body_face.body);
1132 8a7f2683 2021-07-10 op wbkgd(echoarea, minibuffer_face.background);
1133 72b18268 2021-06-19 op
1134 72b18268 2021-06-19 op update_x_offset();
1135 48e9d457 2021-03-06 op
1136 43a1b8d0 2021-03-09 op keypad(body, TRUE);
1137 f3bcf8f2 2021-06-21 op scrollok(body, FALSE);
1138 48e9d457 2021-03-06 op
1139 5e11c00c 2021-03-02 op /* non-blocking input */
1140 48e9d457 2021-03-06 op wtimeout(body, 0);
1141 5e11c00c 2021-03-02 op
1142 48e9d457 2021-03-06 op mvwprintw(body, 0, 0, "");
1143 5e11c00c 2021-03-02 op
1144 5e11c00c 2021-03-02 op event_set(&stdioev, 0, EV_READ | EV_PERSIST, dispatch_stdio, NULL);
1145 5e11c00c 2021-03-02 op event_add(&stdioev, NULL);
1146 5e11c00c 2021-03-02 op
1147 5e11c00c 2021-03-02 op signal_set(&winchev, SIGWINCH, handle_resize, NULL);
1148 5e11c00c 2021-03-02 op signal_add(&winchev, NULL);
1149 5e11c00c 2021-03-02 op
1150 1d08c280 2021-03-06 op return 1;
1151 5e11c00c 2021-03-02 op }
1152 5e11c00c 2021-03-02 op
1153 5e11c00c 2021-03-02 op void
1154 8af5e5ed 2021-03-08 op ui_on_tab_loaded(struct tab *tab)
1155 8af5e5ed 2021-03-08 op {
1156 8af5e5ed 2021-03-08 op stop_loading_anim(tab);
1157 2051e653 2021-03-13 op message("Loaded %s", tab->hist_cur->h);
1158 3d8c2326 2021-03-18 op
1159 3d8c2326 2021-03-18 op redraw_tabline();
1160 3d8c2326 2021-03-18 op wrefresh(tabline);
1161 55df859f 2021-07-12 op place_cursor(0);
1162 8af5e5ed 2021-03-08 op }
1163 8af5e5ed 2021-03-08 op
1164 8af5e5ed 2021-03-08 op void
1165 5e11c00c 2021-03-02 op ui_on_tab_refresh(struct tab *tab)
1166 5e11c00c 2021-03-02 op {
1167 46f6e974 2021-05-17 op wrap_page(&tab->buffer, body_cols);
1168 02a74b53 2021-07-01 op if (tab->flags & TAB_CURRENT)
1169 3d8c2326 2021-03-18 op redraw_tab(tab);
1170 02a74b53 2021-07-01 op else
1171 e8a76665 2021-05-12 op tab->flags |= TAB_URGENT;
1172 5e11c00c 2021-03-02 op }
1173 5e11c00c 2021-03-02 op
1174 2b2d2872 2021-06-20 op const char *
1175 2b2d2872 2021-06-20 op ui_keyname(int k)
1176 2b2d2872 2021-06-20 op {
1177 2b2d2872 2021-06-20 op return keyname(k);
1178 2b2d2872 2021-06-20 op }
1179 2b2d2872 2021-06-20 op
1180 5e11c00c 2021-03-02 op void
1181 2b2d2872 2021-06-20 op ui_toggle_side_window(void)
1182 2b2d2872 2021-06-20 op {
1183 2b2d2872 2021-06-20 op side_window = !side_window;
1184 2b2d2872 2021-06-20 op if (side_window)
1185 2b2d2872 2021-06-20 op recompute_help();
1186 960b01da 2021-06-20 op
1187 960b01da 2021-06-20 op /*
1188 960b01da 2021-06-20 op * ugly hack, but otherwise the window doesn't get updated
1189 960b01da 2021-06-20 op * until I call handle_resize a second time (i.e. C-l). I
1190 960b01da 2021-06-20 op * will be happy to know why something like this is needed.
1191 960b01da 2021-06-20 op */
1192 960b01da 2021-06-20 op handle_resize_nodelay(0, 0, NULL);
1193 960b01da 2021-06-20 op handle_resize_nodelay(0, 0, NULL);
1194 2b2d2872 2021-06-20 op }
1195 2b2d2872 2021-06-20 op
1196 2b2d2872 2021-06-20 op void
1197 2b2d2872 2021-06-20 op ui_schedule_redraw(void)
1198 2b2d2872 2021-06-20 op {
1199 2b2d2872 2021-06-20 op handle_resize_nodelay(0, 0, NULL);
1200 2b2d2872 2021-06-20 op }
1201 2b2d2872 2021-06-20 op
1202 2b2d2872 2021-06-20 op void
1203 5cd2ebb1 2021-03-11 op ui_require_input(struct tab *tab, int hide)
1204 5cd2ebb1 2021-03-11 op {
1205 5cd2ebb1 2021-03-11 op /* TODO: hard-switching to another tab is ugly */
1206 5cd2ebb1 2021-03-11 op switch_to_tab(tab);
1207 5cd2ebb1 2021-03-11 op
1208 22268e11 2021-03-11 op enter_minibuffer(ir_self_insert, ir_select, exit_minibuffer,
1209 e5a2797f 2021-07-13 op &ir_history, NULL, NULL);
1210 5cd2ebb1 2021-03-11 op strlcpy(ministate.prompt, "Input required: ",
1211 5cd2ebb1 2021-03-11 op sizeof(ministate.prompt));
1212 5cd2ebb1 2021-03-11 op redraw_tab(tab);
1213 5cd2ebb1 2021-03-11 op }
1214 5cd2ebb1 2021-03-11 op
1215 5cd2ebb1 2021-03-11 op void
1216 a2fd3805 2021-07-06 op ui_yornp(const char *prompt, void (*fn)(int, struct tab *),
1217 a2fd3805 2021-07-06 op struct tab *data)
1218 5d1bac73 2021-03-25 op {
1219 84b88039 2021-07-12 op yornp(prompt, fn, data);
1220 5d1bac73 2021-03-25 op redraw_tab(current_tab());
1221 5d1bac73 2021-03-25 op }
1222 5d1bac73 2021-03-25 op
1223 5d1bac73 2021-03-25 op void
1224 d1353324 2021-07-13 op ui_read(const char *prompt, void (*fn)(const char*, struct tab *),
1225 d1353324 2021-07-13 op struct tab *data)
1226 de2a69bb 2021-05-17 op {
1227 e5a2797f 2021-07-13 op completing_read(prompt, fn, data, NULL, NULL);
1228 de2a69bb 2021-05-17 op redraw_tab(current_tab());
1229 740f578b 2021-03-15 op }
1230 740f578b 2021-03-15 op
1231 740f578b 2021-03-15 op void
1232 5e11c00c 2021-03-02 op ui_end(void)
1233 5e11c00c 2021-03-02 op {
1234 5e11c00c 2021-03-02 op endwin();
1235 5e11c00c 2021-03-02 op }