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