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 ec9aa106 2021-07-14 op static void redraw_window(WINDOW*, int, 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 ec9aa106 2021-07-14 op wrap_one(buffer, prfx, l, width);
421 ec9aa106 2021-07-14 op break;
422 452589f7 2021-03-16 op }
423 452589f7 2021-03-16 op
424 2bfa414d 2021-07-01 op if (top_orig == l && buffer->top_line == NULL) {
425 46f6e974 2021-05-17 op buffer->line_off = buffer->line_max-1;
426 2bfa414d 2021-07-01 op buffer->top_line = TAILQ_LAST(&buffer->head, vhead);
427 2bfa414d 2021-07-01 op
428 2bfa414d 2021-07-01 op while (1) {
429 2bfa414d 2021-07-01 op vl = TAILQ_PREV(buffer->top_line, vhead, vlines);
430 2bfa414d 2021-07-01 op if (vl == NULL || vl->parent != orig)
431 2bfa414d 2021-07-01 op break;
432 2bfa414d 2021-07-01 op buffer->top_line = vl;
433 2bfa414d 2021-07-01 op buffer->line_off--;
434 2bfa414d 2021-07-01 op }
435 2bfa414d 2021-07-01 op }
436 2bfa414d 2021-07-01 op
437 2bfa414d 2021-07-01 op if (orig == l && buffer->current_line == NULL) {
438 46f6e974 2021-05-17 op buffer->current_line = TAILQ_LAST(&buffer->head, vhead);
439 d511dc85 2021-03-16 op
440 d511dc85 2021-03-16 op while (1) {
441 46f6e974 2021-05-17 op vl = TAILQ_PREV(buffer->current_line, vhead, vlines);
442 d511dc85 2021-03-16 op if (vl == NULL || vl->parent != orig)
443 d511dc85 2021-03-16 op break;
444 46f6e974 2021-05-17 op buffer->current_line = vl;
445 d511dc85 2021-03-16 op }
446 5e11c00c 2021-03-02 op }
447 5e11c00c 2021-03-02 op }
448 452589f7 2021-03-16 op
449 46f6e974 2021-05-17 op if (buffer->current_line == NULL)
450 46f6e974 2021-05-17 op buffer->current_line = TAILQ_FIRST(&buffer->head);
451 452589f7 2021-03-16 op
452 2bfa414d 2021-07-01 op if (buffer->top_line == NULL)
453 2bfa414d 2021-07-01 op buffer->top_line = buffer->current_line;
454 94ec38e8 2021-06-29 op
455 1d08c280 2021-03-06 op return 1;
456 1d08c280 2021-03-06 op }
457 5e11c00c 2021-03-02 op
458 754622a2 2021-03-15 op static void
459 f3bcf8f2 2021-06-21 op print_vline(int off, int width, WINDOW *window, struct vline *vl)
460 1d08c280 2021-03-06 op {
461 2af29222 2021-06-24 op const char *text;
462 768db5bb 2021-03-12 op const char *prfx;
463 2af29222 2021-06-24 op struct line_face *f;
464 f3bcf8f2 2021-06-21 op int i, left, x, y;
465 bd9637e9 2021-03-06 op
466 2af29222 2021-06-24 op f = &line_faces[vl->parent->type];
467 2af29222 2021-06-24 op
468 d89b86d6 2021-06-21 op /* unused, set by getyx */
469 f3bcf8f2 2021-06-21 op (void)y;
470 f3bcf8f2 2021-06-21 op
471 9a25f829 2021-03-14 op if (!vl->flags)
472 9a25f829 2021-03-14 op prfx = line_prefixes[vl->parent->type].prfx1;
473 768db5bb 2021-03-12 op else
474 9a25f829 2021-03-14 op prfx = line_prefixes[vl->parent->type].prfx2;
475 768db5bb 2021-03-12 op
476 2af29222 2021-06-24 op text = vl->line;
477 bd9637e9 2021-03-06 op if (text == NULL)
478 bd9637e9 2021-03-06 op text = "";
479 bd9637e9 2021-03-06 op
480 ab47e7d4 2021-06-24 op wattr_on(window, body_face.left, NULL);
481 f3bcf8f2 2021-06-21 op for (i = 0; i < off; i++)
482 f3bcf8f2 2021-06-21 op waddch(window, ' ');
483 ab47e7d4 2021-06-24 op wattr_off(window, body_face.left, NULL);
484 ab47e7d4 2021-06-24 op
485 2af29222 2021-06-24 op wattr_on(window, f->prefix, NULL);
486 bddc7bbd 2021-04-01 op wprintw(window, "%s", prfx);
487 2af29222 2021-06-24 op wattr_off(window, f->prefix, NULL);
488 803ff456 2021-03-17 op
489 2af29222 2021-06-24 op wattr_on(window, f->text, NULL);
490 bddc7bbd 2021-04-01 op wprintw(window, "%s", text);
491 2af29222 2021-06-24 op wattr_off(window, f->text, NULL);
492 f3bcf8f2 2021-06-21 op
493 f3bcf8f2 2021-06-21 op getyx(window, y, x);
494 f3bcf8f2 2021-06-21 op
495 f3bcf8f2 2021-06-21 op left = width - x;
496 f3bcf8f2 2021-06-21 op
497 2af29222 2021-06-24 op wattr_on(window, f->trail, NULL);
498 04d32eda 2021-07-08 op for (i = 0; i < left - off; ++i)
499 f3bcf8f2 2021-06-21 op waddch(window, ' ');
500 2af29222 2021-06-24 op wattr_off(window, f->trail, NULL);
501 160abe04 2021-06-21 op
502 ab47e7d4 2021-06-24 op wattr_on(window, body_face.right, NULL);
503 160abe04 2021-06-21 op for (i = 0; i < off; i++)
504 160abe04 2021-06-21 op waddch(window, ' ');
505 ab47e7d4 2021-06-24 op wattr_off(window, body_face.right, NULL);
506 f3bcf8f2 2021-06-21 op
507 1d08c280 2021-03-06 op }
508 1d08c280 2021-03-06 op
509 1d08c280 2021-03-06 op static void
510 8af5e5ed 2021-03-08 op redraw_tabline(void)
511 8af5e5ed 2021-03-08 op {
512 7c7d7bb7 2021-03-10 op struct tab *tab;
513 8f127baa 2021-04-22 op size_t toskip, ots, tabwidth, space, x;
514 8f127baa 2021-04-22 op int current, y, truncated;
515 dc5df781 2021-03-13 op const char *title;
516 119f393c 2021-03-16 op char buf[25];
517 7c7d7bb7 2021-03-10 op
518 923f9ce5 2021-06-21 op x = 0;
519 923f9ce5 2021-06-21 op
520 923f9ce5 2021-06-21 op /* unused, but setted by a getyx */
521 923f9ce5 2021-06-21 op (void)y;
522 923f9ce5 2021-06-21 op
523 8f127baa 2021-04-22 op tabwidth = sizeof(buf)+1;
524 8f127baa 2021-04-22 op space = COLS-2;
525 8f127baa 2021-04-22 op
526 a636f50e 2021-03-16 op toskip = 0;
527 a636f50e 2021-03-16 op TAILQ_FOREACH(tab, &tabshead, tabs) {
528 a636f50e 2021-03-16 op toskip++;
529 a636f50e 2021-03-16 op if (tab->flags & TAB_CURRENT)
530 a636f50e 2021-03-16 op break;
531 a636f50e 2021-03-16 op }
532 8f127baa 2021-04-22 op
533 8f127baa 2021-04-22 op if (toskip * tabwidth < space)
534 8f127baa 2021-04-22 op toskip = 0;
535 8f127baa 2021-04-22 op else {
536 8f127baa 2021-04-22 op ots = toskip;
537 a636f50e 2021-03-16 op toskip--;
538 8f127baa 2021-04-22 op while (toskip != 0 &&
539 8f127baa 2021-04-22 op (ots - toskip+1) * tabwidth < space)
540 8f127baa 2021-04-22 op toskip--;
541 8f127baa 2021-04-22 op }
542 7c7d7bb7 2021-03-10 op
543 a636f50e 2021-03-16 op werase(tabline);
544 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.background, NULL);
545 a636f50e 2021-03-16 op wprintw(tabline, toskip == 0 ? " " : "<");
546 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.background, NULL);
547 a636f50e 2021-03-16 op
548 a636f50e 2021-03-16 op truncated = 0;
549 7c7d7bb7 2021-03-10 op TAILQ_FOREACH(tab, &tabshead, tabs) {
550 a636f50e 2021-03-16 op if (truncated)
551 a636f50e 2021-03-16 op break;
552 a636f50e 2021-03-16 op if (toskip != 0) {
553 a636f50e 2021-03-16 op toskip--;
554 a636f50e 2021-03-16 op continue;
555 a636f50e 2021-03-16 op }
556 a636f50e 2021-03-16 op
557 a636f50e 2021-03-16 op getyx(tabline, y, x);
558 a636f50e 2021-03-16 op if (x + sizeof(buf)+2 >= (size_t)COLS)
559 a636f50e 2021-03-16 op truncated = 1;
560 a636f50e 2021-03-16 op
561 7c7d7bb7 2021-03-10 op current = tab->flags & TAB_CURRENT;
562 a329982b 2021-03-11 op
563 46f6e974 2021-05-17 op if (*(title = tab->buffer.page.title) == '\0')
564 2051e653 2021-03-13 op title = tab->hist_cur->h;
565 dc5df781 2021-03-13 op
566 e8a76665 2021-05-12 op if (tab->flags & TAB_URGENT)
567 e8a76665 2021-05-12 op strlcpy(buf, "!", sizeof(buf));
568 e8a76665 2021-05-12 op else
569 e8a76665 2021-05-12 op strlcpy(buf, " ", sizeof(buf));
570 e8a76665 2021-05-12 op
571 119f393c 2021-03-16 op if (strlcat(buf, title, sizeof(buf)) >= sizeof(buf)) {
572 119f393c 2021-03-16 op /* truncation happens */
573 119f393c 2021-03-16 op strlcpy(&buf[sizeof(buf)-4], "...", 4);
574 119f393c 2021-03-16 op } else {
575 119f393c 2021-03-16 op /* pad with spaces */
576 119f393c 2021-03-16 op while (strlcat(buf, " ", sizeof(buf)) < sizeof(buf))
577 119f393c 2021-03-16 op /* nop */ ;
578 119f393c 2021-03-16 op }
579 a329982b 2021-03-11 op
580 a329982b 2021-03-11 op if (current)
581 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.current, NULL);
582 cb6c7aa0 2021-03-16 op else
583 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.tab, NULL);
584 119f393c 2021-03-16 op
585 119f393c 2021-03-16 op wprintw(tabline, "%s", buf);
586 119f393c 2021-03-16 op if (TAILQ_NEXT(tab, tabs) != NULL)
587 119f393c 2021-03-16 op wprintw(tabline, " ");
588 cb6c7aa0 2021-03-16 op
589 cb6c7aa0 2021-03-16 op if (current)
590 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.current, NULL);
591 cb6c7aa0 2021-03-16 op else
592 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.tab, NULL);
593 7c7d7bb7 2021-03-10 op }
594 119f393c 2021-03-16 op
595 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.background, NULL);
596 8f127baa 2021-04-22 op for (; x < (size_t)COLS; ++x)
597 119f393c 2021-03-16 op waddch(tabline, ' ');
598 a636f50e 2021-03-16 op if (truncated)
599 a636f50e 2021-03-16 op mvwprintw(tabline, 0, COLS-1, ">");
600 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.background, NULL);
601 10346511 2021-03-17 op }
602 77dd24f4 2021-07-05 op
603 77dd24f4 2021-07-05 op /*
604 77dd24f4 2021-07-05 op * Compute the first visible line around vl. Try to search forward
605 77dd24f4 2021-07-05 op * until the end of the buffer; if a visible line is not found, search
606 77dd24f4 2021-07-05 op * backward. Return NULL if no viable line was found.
607 77dd24f4 2021-07-05 op */
608 e7b982f4 2021-07-14 op struct vline *
609 77dd24f4 2021-07-05 op adjust_line(struct vline *vl, struct buffer *buffer)
610 77dd24f4 2021-07-05 op {
611 77dd24f4 2021-07-05 op struct vline *t;
612 10346511 2021-03-17 op
613 b1e1e41a 2021-07-14 op if (vl == NULL)
614 b1e1e41a 2021-07-14 op return NULL;
615 b1e1e41a 2021-07-14 op
616 77dd24f4 2021-07-05 op if (!(vl->parent->flags & L_HIDDEN))
617 77dd24f4 2021-07-05 op return vl;
618 77dd24f4 2021-07-05 op
619 77dd24f4 2021-07-05 op /* search forward */
620 77dd24f4 2021-07-05 op for (t = vl;
621 77dd24f4 2021-07-05 op t != NULL && t->parent->flags & L_HIDDEN;
622 77dd24f4 2021-07-05 op t = TAILQ_NEXT(t, vlines))
623 77dd24f4 2021-07-05 op ; /* nop */
624 77dd24f4 2021-07-05 op
625 77dd24f4 2021-07-05 op if (t != NULL)
626 77dd24f4 2021-07-05 op return t;
627 77dd24f4 2021-07-05 op
628 77dd24f4 2021-07-05 op /* search backward */
629 77dd24f4 2021-07-05 op for (t = vl;
630 77dd24f4 2021-07-05 op t != NULL && t->parent->flags & L_HIDDEN;
631 77dd24f4 2021-07-05 op t = TAILQ_PREV(t, vhead, vlines))
632 77dd24f4 2021-07-05 op ; /* nop */
633 77dd24f4 2021-07-05 op
634 77dd24f4 2021-07-05 op return t;
635 77dd24f4 2021-07-05 op }
636 77dd24f4 2021-07-05 op
637 bddc7bbd 2021-04-01 op static void
638 ec9aa106 2021-07-14 op redraw_window(WINDOW *win, int off, int height, int width, struct buffer *buffer)
639 bddc7bbd 2021-04-01 op {
640 2bfa414d 2021-07-01 op struct vline *vl;
641 2bfa414d 2021-07-01 op int l, onscreen;
642 13e8b82f 2021-07-01 op
643 0a805b02 2021-07-01 op restore_curs_x(buffer);
644 a00b4c97 2021-06-20 op
645 a00b4c97 2021-06-20 op /*
646 0a805b02 2021-07-01 op * TODO: ignoring buffer->force_update and always
647 0a805b02 2021-07-01 op * re-rendering. In theory we can recompute the y position
648 0a805b02 2021-07-01 op * without a re-render, and optimize here. It's not the only
649 0a805b02 2021-07-01 op * optimisation possible here, wscrl wolud also be an
650 0a805b02 2021-07-01 op * interesting one.
651 a00b4c97 2021-06-20 op */
652 bddc7bbd 2021-04-01 op
653 2bfa414d 2021-07-01 op again:
654 bddc7bbd 2021-04-01 op werase(win);
655 2bfa414d 2021-07-01 op buffer->curs_y = 0;
656 a00b4c97 2021-06-20 op
657 46f6e974 2021-05-17 op if (TAILQ_EMPTY(&buffer->head))
658 77dd24f4 2021-07-05 op goto end;
659 77dd24f4 2021-07-05 op
660 b1e1e41a 2021-07-14 op if (buffer->top_line == NULL)
661 b1e1e41a 2021-07-14 op buffer->top_line = TAILQ_FIRST(&buffer->head);
662 b1e1e41a 2021-07-14 op
663 77dd24f4 2021-07-05 op buffer->top_line = adjust_line(buffer->top_line, buffer);
664 77dd24f4 2021-07-05 op if (buffer->top_line == NULL)
665 a00b4c97 2021-06-20 op goto end;
666 bddc7bbd 2021-04-01 op
667 77dd24f4 2021-07-05 op buffer->current_line = adjust_line(buffer->current_line, buffer);
668 77dd24f4 2021-07-05 op
669 bddc7bbd 2021-04-01 op l = 0;
670 2bfa414d 2021-07-01 op onscreen = 0;
671 94ec38e8 2021-06-29 op for (vl = buffer->top_line; vl != NULL; vl = TAILQ_NEXT(vl, vlines)) {
672 963c680c 2021-07-05 op if (vl->parent->flags & L_HIDDEN)
673 963c680c 2021-07-05 op continue;
674 963c680c 2021-07-05 op
675 f3bcf8f2 2021-06-21 op wmove(win, l, 0);
676 ec9aa106 2021-07-14 op print_vline(off, width, win, vl);
677 2bfa414d 2021-07-01 op
678 2bfa414d 2021-07-01 op if (vl == buffer->current_line)
679 2bfa414d 2021-07-01 op onscreen = 1;
680 2bfa414d 2021-07-01 op
681 2bfa414d 2021-07-01 op if (!onscreen)
682 2bfa414d 2021-07-01 op buffer->curs_y++;
683 2bfa414d 2021-07-01 op
684 bddc7bbd 2021-04-01 op l++;
685 bddc7bbd 2021-04-01 op if (l == height)
686 bddc7bbd 2021-04-01 op break;
687 2bfa414d 2021-07-01 op }
688 2bfa414d 2021-07-01 op
689 2bfa414d 2021-07-01 op if (!onscreen) {
690 2bfa414d 2021-07-01 op for (; vl != NULL; vl = TAILQ_NEXT(vl, vlines)) {
691 2bfa414d 2021-07-01 op if (vl == buffer->current_line)
692 2bfa414d 2021-07-01 op break;
693 963c680c 2021-07-05 op if (vl->parent->flags & L_HIDDEN)
694 963c680c 2021-07-05 op continue;
695 2bfa414d 2021-07-01 op buffer->line_off++;
696 2bfa414d 2021-07-01 op buffer->top_line = TAILQ_NEXT(buffer->top_line, vlines);
697 2bfa414d 2021-07-01 op }
698 2bfa414d 2021-07-01 op
699 e7b982f4 2021-07-14 op if (vl != NULL)
700 e7b982f4 2021-07-14 op goto again;
701 bddc7bbd 2021-04-01 op }
702 bddc7bbd 2021-04-01 op
703 2bfa414d 2021-07-01 op buffer->last_line_off = buffer->line_off;
704 2bfa414d 2021-07-01 op buffer->force_redraw = 0;
705 a00b4c97 2021-06-20 op end:
706 46f6e974 2021-05-17 op wmove(win, buffer->curs_y, buffer->curs_x);
707 bddc7bbd 2021-04-01 op }
708 bddc7bbd 2021-04-01 op
709 bddc7bbd 2021-04-01 op static void
710 bddc7bbd 2021-04-01 op redraw_help(void)
711 bddc7bbd 2021-04-01 op {
712 ec9aa106 2021-07-14 op redraw_window(help, 0, help_lines, help_cols, &helpwin);
713 bddc7bbd 2021-04-01 op }
714 bddc7bbd 2021-04-01 op
715 bddc7bbd 2021-04-01 op static void
716 bddc7bbd 2021-04-01 op redraw_body(struct tab *tab)
717 bddc7bbd 2021-04-01 op {
718 3323faaf 2021-06-21 op static struct tab *last_tab;
719 3323faaf 2021-06-21 op
720 3323faaf 2021-06-21 op if (last_tab != tab)
721 3323faaf 2021-06-21 op tab->buffer.force_redraw =1;
722 3323faaf 2021-06-21 op last_tab = tab;
723 3323faaf 2021-06-21 op
724 ec9aa106 2021-07-14 op redraw_window(body, x_offset, body_lines, body_cols, &tab->buffer);
725 bddc7bbd 2021-04-01 op }
726 bddc7bbd 2021-04-01 op
727 10346511 2021-03-17 op static inline char
728 10346511 2021-03-17 op trust_status_char(enum trust_state ts)
729 10346511 2021-03-17 op {
730 10346511 2021-03-17 op switch (ts) {
731 10346511 2021-03-17 op case TS_UNKNOWN: return 'u';
732 10346511 2021-03-17 op case TS_UNTRUSTED: return '!';
733 a2fd3805 2021-07-06 op case TS_TEMP_TRUSTED: return '!';
734 10346511 2021-03-17 op case TS_TRUSTED: return 'v';
735 10346511 2021-03-17 op case TS_VERIFIED: return 'V';
736 923f9ce5 2021-06-21 op default: return 'X';
737 10346511 2021-03-17 op }
738 8af5e5ed 2021-03-08 op }
739 8af5e5ed 2021-03-08 op
740 8af5e5ed 2021-03-08 op static void
741 48e9d457 2021-03-06 op redraw_modeline(struct tab *tab)
742 1d08c280 2021-03-06 op {
743 481340cc 2021-03-11 op double pct;
744 48e9d457 2021-03-06 op int x, y, max_x, max_y;
745 46f6e974 2021-05-17 op const char *mode = tab->buffer.page.name;
746 8af5e5ed 2021-03-08 op const char *spin = "-\\|/";
747 1d08c280 2021-03-06 op
748 156f1501 2021-03-13 op werase(modeline);
749 ab47e7d4 2021-06-24 op wattr_on(modeline, modeline_face.background, NULL);
750 48e9d457 2021-03-06 op wmove(modeline, 0, 0);
751 1d08c280 2021-03-06 op
752 10346511 2021-03-17 op wprintw(modeline, "-%c%c %s ",
753 2ba66cea 2021-03-22 op spin[tab->loading_anim_step],
754 10346511 2021-03-17 op trust_status_char(tab->trust),
755 58c75fab 2021-03-16 op mode == NULL ? "(none)" : mode);
756 481340cc 2021-03-11 op
757 99a9e11d 2021-07-14 op pct = (tab->buffer.line_off + tab->buffer.curs_y) * 100.0
758 99a9e11d 2021-07-14 op / tab->buffer.line_max;
759 481340cc 2021-03-11 op
760 46f6e974 2021-05-17 op if (tab->buffer.line_max <= (size_t)body_lines)
761 481340cc 2021-03-11 op wprintw(modeline, "All ");
762 46f6e974 2021-05-17 op else if (tab->buffer.line_off == 0)
763 481340cc 2021-03-11 op wprintw(modeline, "Top ");
764 46f6e974 2021-05-17 op else if (tab->buffer.line_off + body_lines >= tab->buffer.line_max)
765 481340cc 2021-03-11 op wprintw(modeline, "Bottom ");
766 481340cc 2021-03-11 op else
767 481340cc 2021-03-11 op wprintw(modeline, "%.0f%% ", pct);
768 481340cc 2021-03-11 op
769 481340cc 2021-03-11 op wprintw(modeline, "%d/%d %s ",
770 46f6e974 2021-05-17 op tab->buffer.line_off + tab->buffer.curs_y,
771 46f6e974 2021-05-17 op tab->buffer.line_max,
772 2051e653 2021-03-13 op tab->hist_cur->h);
773 481340cc 2021-03-11 op
774 48e9d457 2021-03-06 op getyx(modeline, y, x);
775 48e9d457 2021-03-06 op getmaxyx(modeline, max_y, max_x);
776 48e9d457 2021-03-06 op
777 48e9d457 2021-03-06 op (void)y;
778 48e9d457 2021-03-06 op (void)max_y;
779 48e9d457 2021-03-06 op
780 48e9d457 2021-03-06 op for (; x < max_x; ++x)
781 48e9d457 2021-03-06 op waddstr(modeline, "-");
782 d5493194 2021-06-15 op
783 ab47e7d4 2021-06-24 op wattr_off(modeline, modeline_face.background, NULL);
784 9ca15951 2021-03-09 op }
785 9ca15951 2021-03-09 op
786 9ca15951 2021-03-09 op static void
787 e9af06b9 2021-07-12 op redraw_minibuffer(void)
788 9ca15951 2021-03-09 op {
789 8a7f2683 2021-07-10 op wattr_on(echoarea, minibuffer_face.background, NULL);
790 8a7f2683 2021-07-10 op werase(echoarea);
791 17e5106b 2021-03-21 op
792 e9af06b9 2021-07-12 op if (in_minibuffer)
793 e9af06b9 2021-07-12 op do_redraw_minibuffer();
794 e9af06b9 2021-07-12 op else
795 e9af06b9 2021-07-12 op do_redraw_echoarea();
796 9cb0f9ce 2021-03-10 op
797 b1e1e41a 2021-07-14 op if (in_minibuffer == MB_COMPREAD)
798 b1e1e41a 2021-07-14 op do_redraw_minibuffer_compl();
799 b1e1e41a 2021-07-14 op
800 e9af06b9 2021-07-12 op wattr_off(echoarea, minibuffer_face.background, NULL);
801 e9af06b9 2021-07-12 op }
802 9cb0f9ce 2021-03-10 op
803 e9af06b9 2021-07-12 op static void
804 e9af06b9 2021-07-12 op do_redraw_echoarea(void)
805 e9af06b9 2021-07-12 op {
806 e9af06b9 2021-07-12 op struct tab *tab;
807 9cb0f9ce 2021-03-10 op
808 17e5106b 2021-03-21 op if (ministate.curmesg != NULL)
809 e9af06b9 2021-07-12 op wprintw(echoarea, "%s", ministate.curmesg);
810 e9af06b9 2021-07-12 op else if (*keybuf != '\0')
811 8a7f2683 2021-07-10 op waddstr(echoarea, keybuf);
812 e9af06b9 2021-07-12 op else {
813 e9af06b9 2021-07-12 op /* If nothing else, show the URL at point */
814 8300dd3c 2021-03-18 op tab = current_tab();
815 46f6e974 2021-05-17 op if (tab->buffer.current_line != NULL &&
816 46f6e974 2021-05-17 op tab->buffer.current_line->parent->type == LINE_LINK)
817 e9beee55 2021-07-14 op waddstr(echoarea,
818 e9beee55 2021-07-14 op tab->buffer.current_line->parent->meta.alt);
819 8300dd3c 2021-03-18 op }
820 e9af06b9 2021-07-12 op }
821 91a72220 2021-03-13 op
822 e9af06b9 2021-07-12 op static void
823 e9af06b9 2021-07-12 op do_redraw_minibuffer(void)
824 e9af06b9 2021-07-12 op {
825 e9af06b9 2021-07-12 op size_t off_y, off_x = 0;
826 e9af06b9 2021-07-12 op const char *start, *c;
827 d5493194 2021-06-15 op
828 e9af06b9 2021-07-12 op /* unused, set by getyx */
829 e9af06b9 2021-07-12 op (void)off_y;
830 e9af06b9 2021-07-12 op
831 e9af06b9 2021-07-12 op mvwprintw(echoarea, 0, 0, "%s", ministate.prompt);
832 e9af06b9 2021-07-12 op if (ministate.hist_cur != NULL)
833 e9af06b9 2021-07-12 op wprintw(echoarea, "(%zu/%zu) ",
834 e9af06b9 2021-07-12 op ministate.hist_off + 1,
835 e9af06b9 2021-07-12 op ministate.history->len);
836 e9af06b9 2021-07-12 op
837 e9af06b9 2021-07-12 op getyx(echoarea, off_y, off_x);
838 e9af06b9 2021-07-12 op
839 e9af06b9 2021-07-12 op start = ministate.hist_cur != NULL
840 e9af06b9 2021-07-12 op ? ministate.hist_cur->h
841 e9af06b9 2021-07-12 op : ministate.buf;
842 e9af06b9 2021-07-12 op c = utf8_nth(ministate.buffer.current_line->line,
843 e9af06b9 2021-07-12 op ministate.buffer.cpoff);
844 e9af06b9 2021-07-12 op while (utf8_swidth_between(start, c) > (size_t)COLS/2) {
845 e9af06b9 2021-07-12 op start = utf8_next_cp(start);
846 e9af06b9 2021-07-12 op }
847 e9af06b9 2021-07-12 op
848 e9af06b9 2021-07-12 op waddstr(echoarea, start);
849 e9af06b9 2021-07-12 op
850 e9af06b9 2021-07-12 op if (ministate.curmesg != NULL)
851 e9af06b9 2021-07-12 op wprintw(echoarea, " [%s]", ministate.curmesg);
852 e9af06b9 2021-07-12 op
853 e9af06b9 2021-07-12 op wmove(echoarea, 0, off_x + utf8_swidth_between(start, c));
854 b1e1e41a 2021-07-14 op }
855 b1e1e41a 2021-07-14 op
856 b1e1e41a 2021-07-14 op static void
857 b1e1e41a 2021-07-14 op do_redraw_minibuffer_compl(void)
858 b1e1e41a 2021-07-14 op {
859 ec9aa106 2021-07-14 op redraw_window(minibuffer, 0, 10, body_cols,
860 b1e1e41a 2021-07-14 op &ministate.compl.buffer);
861 55df859f 2021-07-12 op }
862 55df859f 2021-07-12 op
863 55df859f 2021-07-12 op /*
864 55df859f 2021-07-12 op * Place the cursor in the right ncurses window. If soft is 1, use
865 4ff12389 2021-07-12 op * wnoutrefresh (which shouldn't cause any I/O); otherwise use
866 55df859f 2021-07-12 op * wrefresh.
867 55df859f 2021-07-12 op */
868 55df859f 2021-07-12 op static void
869 55df859f 2021-07-12 op place_cursor(int soft)
870 55df859f 2021-07-12 op {
871 4ff12389 2021-07-12 op int (*touch)(WINDOW *);
872 55df859f 2021-07-12 op
873 55df859f 2021-07-12 op if (soft)
874 55df859f 2021-07-12 op touch = wnoutrefresh;
875 55df859f 2021-07-12 op else
876 55df859f 2021-07-12 op touch = wrefresh;
877 55df859f 2021-07-12 op
878 55df859f 2021-07-12 op if (in_minibuffer) {
879 55df859f 2021-07-12 op touch(body);
880 55df859f 2021-07-12 op touch(echoarea);
881 55df859f 2021-07-12 op } else {
882 55df859f 2021-07-12 op touch(echoarea);
883 55df859f 2021-07-12 op touch(body);
884 55df859f 2021-07-12 op }
885 48e9d457 2021-03-06 op }
886 48e9d457 2021-03-06 op
887 48e9d457 2021-03-06 op static void
888 48e9d457 2021-03-06 op redraw_tab(struct tab *tab)
889 48e9d457 2021-03-06 op {
890 23f22c83 2021-07-13 op if (too_small)
891 23f22c83 2021-07-13 op return;
892 23f22c83 2021-07-13 op
893 bddc7bbd 2021-04-01 op if (side_window) {
894 bddc7bbd 2021-04-01 op redraw_help();
895 bddc7bbd 2021-04-01 op wnoutrefresh(help);
896 bddc7bbd 2021-04-01 op }
897 bddc7bbd 2021-04-01 op
898 e19f9a04 2021-03-11 op redraw_tabline();
899 e19f9a04 2021-03-11 op redraw_body(tab);
900 e19f9a04 2021-03-11 op redraw_modeline(tab);
901 e9af06b9 2021-07-12 op redraw_minibuffer();
902 e19f9a04 2021-03-11 op
903 bddc7bbd 2021-04-01 op wnoutrefresh(tabline);
904 bddc7bbd 2021-04-01 op wnoutrefresh(modeline);
905 e19f9a04 2021-03-11 op
906 b1e1e41a 2021-07-14 op if (in_minibuffer == MB_COMPREAD)
907 b1e1e41a 2021-07-14 op wnoutrefresh(minibuffer);
908 b1e1e41a 2021-07-14 op
909 55df859f 2021-07-12 op place_cursor(1);
910 bddc7bbd 2021-04-01 op
911 bddc7bbd 2021-04-01 op doupdate();
912 e19f9a04 2021-03-11 op }
913 e19f9a04 2021-03-11 op
914 e19f9a04 2021-03-11 op static void
915 bddc7bbd 2021-04-01 op emit_help_item(char *prfx, void *fn)
916 e19f9a04 2021-03-11 op {
917 bddc7bbd 2021-04-01 op struct line *l;
918 a3666ed5 2021-06-25 op struct cmd *cmd;
919 48e9d457 2021-03-06 op
920 bddc7bbd 2021-04-01 op for (cmd = cmds; cmd->cmd != NULL; ++cmd) {
921 bddc7bbd 2021-04-01 op if (fn == cmd->fn)
922 bddc7bbd 2021-04-01 op break;
923 bddc7bbd 2021-04-01 op }
924 bddc7bbd 2021-04-01 op assert(cmd != NULL);
925 48e9d457 2021-03-06 op
926 bddc7bbd 2021-04-01 op if ((l = calloc(1, sizeof(*l))) == NULL)
927 bddc7bbd 2021-04-01 op abort();
928 48e9d457 2021-03-06 op
929 bddc7bbd 2021-04-01 op l->type = LINE_TEXT;
930 e9beee55 2021-07-14 op l->meta.alt = NULL;
931 bddc7bbd 2021-04-01 op
932 bddc7bbd 2021-04-01 op asprintf(&l->line, "%s %s", prfx, cmd->cmd);
933 bddc7bbd 2021-04-01 op
934 bddc7bbd 2021-04-01 op if (TAILQ_EMPTY(&helpwin.page.head))
935 bddc7bbd 2021-04-01 op TAILQ_INSERT_HEAD(&helpwin.page.head, l, lines);
936 bddc7bbd 2021-04-01 op else
937 bddc7bbd 2021-04-01 op TAILQ_INSERT_TAIL(&helpwin.page.head, l, lines);
938 bddc7bbd 2021-04-01 op }
939 bddc7bbd 2021-04-01 op
940 bddc7bbd 2021-04-01 op static void
941 bddc7bbd 2021-04-01 op rec_compute_help(struct kmap *keymap, char *prfx, size_t len)
942 bddc7bbd 2021-04-01 op {
943 bddc7bbd 2021-04-01 op struct keymap *k;
944 bddc7bbd 2021-04-01 op char p[32];
945 bddc7bbd 2021-04-01 op const char *kn;
946 bddc7bbd 2021-04-01 op
947 bddc7bbd 2021-04-01 op TAILQ_FOREACH(k, &keymap->m, keymaps) {
948 bddc7bbd 2021-04-01 op strlcpy(p, prfx, sizeof(p));
949 bddc7bbd 2021-04-01 op if (*p != '\0')
950 bddc7bbd 2021-04-01 op strlcat(p, " ", sizeof(p));
951 bddc7bbd 2021-04-01 op if (k->meta)
952 bddc7bbd 2021-04-01 op strlcat(p, "M-", sizeof(p));
953 bddc7bbd 2021-04-01 op if ((kn = unkbd(k->key)) != NULL)
954 bddc7bbd 2021-04-01 op strlcat(p, kn, sizeof(p));
955 bddc7bbd 2021-04-01 op else
956 bddc7bbd 2021-04-01 op strlcat(p, keyname(k->key), sizeof(p));
957 bddc7bbd 2021-04-01 op
958 bddc7bbd 2021-04-01 op if (k->fn == NULL)
959 bddc7bbd 2021-04-01 op rec_compute_help(&k->map, p, sizeof(p));
960 bddc7bbd 2021-04-01 op else
961 bddc7bbd 2021-04-01 op emit_help_item(p, k->fn);
962 9ca15951 2021-03-09 op }
963 bddc7bbd 2021-04-01 op }
964 174b3cdf 2021-03-21 op
965 bddc7bbd 2021-04-01 op static void
966 bddc7bbd 2021-04-01 op recompute_help(void)
967 bddc7bbd 2021-04-01 op {
968 bddc7bbd 2021-04-01 op char p[32] = { 0 };
969 bddc7bbd 2021-04-01 op
970 bddc7bbd 2021-04-01 op empty_vlist(&helpwin);
971 bddc7bbd 2021-04-01 op empty_linelist(&helpwin);
972 bddc7bbd 2021-04-01 op rec_compute_help(current_map, p, sizeof(p));
973 bddc7bbd 2021-04-01 op wrap_page(&helpwin, help_cols);
974 7953dd72 2021-03-07 op }
975 7953dd72 2021-03-07 op
976 7f963c41 2021-06-20 op void
977 740f578b 2021-03-15 op vmessage(const char *fmt, va_list ap)
978 7953dd72 2021-03-07 op {
979 8a7f2683 2021-07-10 op if (evtimer_pending(&clechoev, NULL))
980 8a7f2683 2021-07-10 op evtimer_del(&clechoev);
981 bf992581 2021-03-12 op
982 bf992581 2021-03-12 op free(ministate.curmesg);
983 2b2d2872 2021-06-20 op ministate.curmesg = NULL;
984 7953dd72 2021-03-07 op
985 2b2d2872 2021-06-20 op if (fmt != NULL) {
986 8a7f2683 2021-07-10 op evtimer_set(&clechoev, handle_clear_echoarea, NULL);
987 8a7f2683 2021-07-10 op evtimer_add(&clechoev, &clechoev_timer);
988 9cb0f9ce 2021-03-10 op
989 2b2d2872 2021-06-20 op /* TODO: what to do if the allocation fails here? */
990 2b2d2872 2021-06-20 op if (vasprintf(&ministate.curmesg, fmt, ap) == -1)
991 2b2d2872 2021-06-20 op ministate.curmesg = NULL;
992 2b2d2872 2021-06-20 op }
993 2b2d2872 2021-06-20 op
994 e9af06b9 2021-07-12 op redraw_minibuffer();
995 55df859f 2021-07-12 op place_cursor(0);
996 bcb0b073 2021-03-07 op }
997 bcb0b073 2021-03-07 op
998 7f963c41 2021-06-20 op void
999 740f578b 2021-03-15 op message(const char *fmt, ...)
1000 740f578b 2021-03-15 op {
1001 740f578b 2021-03-15 op va_list ap;
1002 740f578b 2021-03-15 op
1003 740f578b 2021-03-15 op va_start(ap, fmt);
1004 740f578b 2021-03-15 op vmessage(fmt, ap);
1005 740f578b 2021-03-15 op va_end(ap);
1006 740f578b 2021-03-15 op }
1007 740f578b 2021-03-15 op
1008 2b2d2872 2021-06-20 op void
1009 8af5e5ed 2021-03-08 op start_loading_anim(struct tab *tab)
1010 8af5e5ed 2021-03-08 op {
1011 2ba66cea 2021-03-22 op if (tab->loading_anim)
1012 8af5e5ed 2021-03-08 op return;
1013 2ba66cea 2021-03-22 op tab->loading_anim = 1;
1014 2ba66cea 2021-03-22 op evtimer_set(&tab->loadingev, update_loading_anim, tab);
1015 2ba66cea 2021-03-22 op evtimer_add(&tab->loadingev, &loadingev_timer);
1016 8af5e5ed 2021-03-08 op }
1017 8af5e5ed 2021-03-08 op
1018 8af5e5ed 2021-03-08 op static void
1019 8af5e5ed 2021-03-08 op update_loading_anim(int fd, short ev, void *d)
1020 8af5e5ed 2021-03-08 op {
1021 8af5e5ed 2021-03-08 op struct tab *tab = d;
1022 8af5e5ed 2021-03-08 op
1023 2ba66cea 2021-03-22 op tab->loading_anim_step = (tab->loading_anim_step+1)%4;
1024 9ca15951 2021-03-09 op
1025 6347dcd0 2021-03-16 op if (tab->flags & TAB_CURRENT) {
1026 6347dcd0 2021-03-16 op redraw_modeline(tab);
1027 6347dcd0 2021-03-16 op wrefresh(modeline);
1028 6347dcd0 2021-03-16 op wrefresh(body);
1029 6347dcd0 2021-03-16 op if (in_minibuffer)
1030 8a7f2683 2021-07-10 op wrefresh(echoarea);
1031 6347dcd0 2021-03-16 op }
1032 8af5e5ed 2021-03-08 op
1033 2ba66cea 2021-03-22 op evtimer_add(&tab->loadingev, &loadingev_timer);
1034 8af5e5ed 2021-03-08 op }
1035 8af5e5ed 2021-03-08 op
1036 8af5e5ed 2021-03-08 op static void
1037 8af5e5ed 2021-03-08 op stop_loading_anim(struct tab *tab)
1038 8af5e5ed 2021-03-08 op {
1039 2ba66cea 2021-03-22 op if (!tab->loading_anim)
1040 8af5e5ed 2021-03-08 op return;
1041 2ba66cea 2021-03-22 op evtimer_del(&tab->loadingev);
1042 2ba66cea 2021-03-22 op tab->loading_anim = 0;
1043 2ba66cea 2021-03-22 op tab->loading_anim_step = 0;
1044 3d8c2326 2021-03-18 op
1045 3d8c2326 2021-03-18 op if (!(tab->flags & TAB_CURRENT))
1046 3d8c2326 2021-03-18 op return;
1047 43a1b8d0 2021-03-09 op
1048 43a1b8d0 2021-03-09 op redraw_modeline(tab);
1049 9ca15951 2021-03-09 op
1050 43a1b8d0 2021-03-09 op wrefresh(modeline);
1051 43a1b8d0 2021-03-09 op wrefresh(body);
1052 9ca15951 2021-03-09 op if (in_minibuffer)
1053 8a7f2683 2021-07-10 op wrefresh(echoarea);
1054 8af5e5ed 2021-03-08 op }
1055 8af5e5ed 2021-03-08 op
1056 2b2d2872 2021-06-20 op void
1057 43a1b8d0 2021-03-09 op load_url_in_tab(struct tab *tab, const char *url)
1058 8af5e5ed 2021-03-08 op {
1059 8af5e5ed 2021-03-08 op message("Loading %s...", url);
1060 8af5e5ed 2021-03-08 op start_loading_anim(tab);
1061 8af5e5ed 2021-03-08 op load_url(tab, url);
1062 43a1b8d0 2021-03-09 op
1063 46f6e974 2021-05-17 op tab->buffer.curs_x = 0;
1064 46f6e974 2021-05-17 op tab->buffer.curs_y = 0;
1065 43a1b8d0 2021-03-09 op redraw_tab(tab);
1066 9ca15951 2021-03-09 op }
1067 9ca15951 2021-03-09 op
1068 2b2d2872 2021-06-20 op void
1069 5cd2ebb1 2021-03-11 op switch_to_tab(struct tab *tab)
1070 5cd2ebb1 2021-03-11 op {
1071 5cd2ebb1 2021-03-11 op struct tab *t;
1072 5cd2ebb1 2021-03-11 op
1073 5cd2ebb1 2021-03-11 op TAILQ_FOREACH(t, &tabshead, tabs) {
1074 5cd2ebb1 2021-03-11 op t->flags &= ~TAB_CURRENT;
1075 5cd2ebb1 2021-03-11 op }
1076 5cd2ebb1 2021-03-11 op
1077 5cd2ebb1 2021-03-11 op tab->flags |= TAB_CURRENT;
1078 cf25a90f 2021-06-11 op tab->flags &= ~TAB_URGENT;
1079 2eef3403 2021-04-22 op }
1080 2eef3403 2021-04-22 op
1081 2eef3403 2021-04-22 op unsigned int
1082 2eef3403 2021-04-22 op tab_new_id(void)
1083 2eef3403 2021-04-22 op {
1084 2eef3403 2021-04-22 op return tab_counter++;
1085 5cd2ebb1 2021-03-11 op }
1086 5cd2ebb1 2021-03-11 op
1087 2b2d2872 2021-06-20 op struct tab *
1088 1b81bc33 2021-03-15 op new_tab(const char *url)
1089 bcb0b073 2021-03-07 op {
1090 754622a2 2021-03-15 op struct tab *tab;
1091 bcb0b073 2021-03-07 op
1092 71105afa 2021-03-16 op if ((tab = calloc(1, sizeof(*tab))) == NULL) {
1093 71105afa 2021-03-16 op event_loopbreak();
1094 71105afa 2021-03-16 op return NULL;
1095 71105afa 2021-03-16 op }
1096 de2a69bb 2021-05-17 op tab->fd = -1;
1097 bcb0b073 2021-03-07 op
1098 2051e653 2021-03-13 op TAILQ_INIT(&tab->hist.head);
1099 2051e653 2021-03-13 op
1100 46f6e974 2021-05-17 op TAILQ_INIT(&tab->buffer.head);
1101 bcb0b073 2021-03-07 op
1102 2eef3403 2021-04-22 op tab->id = tab_new_id();
1103 5cd2ebb1 2021-03-11 op switch_to_tab(tab);
1104 bcb0b073 2021-03-07 op
1105 bcb0b073 2021-03-07 op if (TAILQ_EMPTY(&tabshead))
1106 bcb0b073 2021-03-07 op TAILQ_INSERT_HEAD(&tabshead, tab, tabs);
1107 bcb0b073 2021-03-07 op else
1108 bcb0b073 2021-03-07 op TAILQ_INSERT_TAIL(&tabshead, tab, tabs);
1109 bcb0b073 2021-03-07 op
1110 43a1b8d0 2021-03-09 op load_url_in_tab(tab, url);
1111 b1df9b71 2021-03-12 op return tab;
1112 5e11c00c 2021-03-02 op }
1113 5e11c00c 2021-03-02 op
1114 941b3761 2021-03-18 op int
1115 d2544989 2021-07-08 op ui_init()
1116 941b3761 2021-03-18 op {
1117 5e11c00c 2021-03-02 op setlocale(LC_ALL, "");
1118 5e11c00c 2021-03-02 op
1119 22268e11 2021-03-11 op TAILQ_INIT(&eecmd_history.head);
1120 22268e11 2021-03-11 op TAILQ_INIT(&ir_history.head);
1121 22268e11 2021-03-11 op TAILQ_INIT(&lu_history.head);
1122 22268e11 2021-03-11 op
1123 2ba66cea 2021-03-22 op ministate.line.type = LINE_TEXT;
1124 2ba66cea 2021-03-22 op ministate.vline.parent = &ministate.line;
1125 46f6e974 2021-05-17 op ministate.buffer.current_line = &ministate.vline;
1126 2ba66cea 2021-03-22 op
1127 bddc7bbd 2021-04-01 op /* initialize help window */
1128 bddc7bbd 2021-04-01 op TAILQ_INIT(&helpwin.head);
1129 bddc7bbd 2021-04-01 op
1130 9ca15951 2021-03-09 op base_map = &global_map;
1131 f832146f 2021-03-09 op current_map = &global_map;
1132 f832146f 2021-03-09 op
1133 5e11c00c 2021-03-02 op initscr();
1134 74a2587f 2021-06-21 op
1135 74a2587f 2021-06-21 op if (enable_colors) {
1136 74a2587f 2021-06-21 op if (has_colors()) {
1137 74a2587f 2021-06-21 op start_color();
1138 160abe04 2021-06-21 op use_default_colors();
1139 f3bcf8f2 2021-06-21 op } else
1140 74a2587f 2021-06-21 op enable_colors = 0;
1141 f3bcf8f2 2021-06-21 op }
1142 74a2587f 2021-06-21 op
1143 42d61f50 2021-06-24 op config_apply_style();
1144 42d61f50 2021-06-24 op
1145 15e1b108 2021-03-02 op raw();
1146 5e11c00c 2021-03-02 op noecho();
1147 5e11c00c 2021-03-02 op nonl();
1148 5e11c00c 2021-03-02 op intrflush(stdscr, FALSE);
1149 5e11c00c 2021-03-02 op
1150 48e9d457 2021-03-06 op if ((tabline = newwin(1, COLS, 0, 0)) == NULL)
1151 48e9d457 2021-03-06 op return 0;
1152 48e9d457 2021-03-06 op if ((body = newwin(LINES - 3, COLS, 1, 0)) == NULL)
1153 48e9d457 2021-03-06 op return 0;
1154 48e9d457 2021-03-06 op if ((modeline = newwin(1, COLS, LINES-2, 0)) == NULL)
1155 48e9d457 2021-03-06 op return 0;
1156 8a7f2683 2021-07-10 op if ((echoarea = newwin(1, COLS, LINES-1, 0)) == NULL)
1157 e5a2797f 2021-07-13 op return 0;
1158 e5a2797f 2021-07-13 op if ((minibuffer = newwin(1, COLS, LINES-1, 0)) == NULL)
1159 48e9d457 2021-03-06 op return 0;
1160 bddc7bbd 2021-04-01 op if ((help = newwin(1, 1, 1, 0)) == NULL)
1161 bddc7bbd 2021-04-01 op return 0;
1162 1d08c280 2021-03-06 op
1163 48e9d457 2021-03-06 op body_lines = LINES-3;
1164 48e9d457 2021-03-06 op body_cols = COLS;
1165 33d904b6 2021-06-22 op
1166 b598590d 2021-06-21 op wbkgd(body, body_face.body);
1167 8a7f2683 2021-07-10 op wbkgd(echoarea, minibuffer_face.background);
1168 72b18268 2021-06-19 op
1169 72b18268 2021-06-19 op update_x_offset();
1170 48e9d457 2021-03-06 op
1171 43a1b8d0 2021-03-09 op keypad(body, TRUE);
1172 f3bcf8f2 2021-06-21 op scrollok(body, FALSE);
1173 48e9d457 2021-03-06 op
1174 5e11c00c 2021-03-02 op /* non-blocking input */
1175 48e9d457 2021-03-06 op wtimeout(body, 0);
1176 5e11c00c 2021-03-02 op
1177 48e9d457 2021-03-06 op mvwprintw(body, 0, 0, "");
1178 5e11c00c 2021-03-02 op
1179 5e11c00c 2021-03-02 op event_set(&stdioev, 0, EV_READ | EV_PERSIST, dispatch_stdio, NULL);
1180 5e11c00c 2021-03-02 op event_add(&stdioev, NULL);
1181 5e11c00c 2021-03-02 op
1182 5e11c00c 2021-03-02 op signal_set(&winchev, SIGWINCH, handle_resize, NULL);
1183 5e11c00c 2021-03-02 op signal_add(&winchev, NULL);
1184 5e11c00c 2021-03-02 op
1185 1d08c280 2021-03-06 op return 1;
1186 5e11c00c 2021-03-02 op }
1187 5e11c00c 2021-03-02 op
1188 5e11c00c 2021-03-02 op void
1189 8af5e5ed 2021-03-08 op ui_on_tab_loaded(struct tab *tab)
1190 8af5e5ed 2021-03-08 op {
1191 8af5e5ed 2021-03-08 op stop_loading_anim(tab);
1192 2051e653 2021-03-13 op message("Loaded %s", tab->hist_cur->h);
1193 3d8c2326 2021-03-18 op
1194 3d8c2326 2021-03-18 op redraw_tabline();
1195 3d8c2326 2021-03-18 op wrefresh(tabline);
1196 55df859f 2021-07-12 op place_cursor(0);
1197 8af5e5ed 2021-03-08 op }
1198 8af5e5ed 2021-03-08 op
1199 8af5e5ed 2021-03-08 op void
1200 5e11c00c 2021-03-02 op ui_on_tab_refresh(struct tab *tab)
1201 5e11c00c 2021-03-02 op {
1202 46f6e974 2021-05-17 op wrap_page(&tab->buffer, body_cols);
1203 02a74b53 2021-07-01 op if (tab->flags & TAB_CURRENT)
1204 3d8c2326 2021-03-18 op redraw_tab(tab);
1205 02a74b53 2021-07-01 op else
1206 e8a76665 2021-05-12 op tab->flags |= TAB_URGENT;
1207 5e11c00c 2021-03-02 op }
1208 5e11c00c 2021-03-02 op
1209 2b2d2872 2021-06-20 op const char *
1210 2b2d2872 2021-06-20 op ui_keyname(int k)
1211 2b2d2872 2021-06-20 op {
1212 2b2d2872 2021-06-20 op return keyname(k);
1213 2b2d2872 2021-06-20 op }
1214 2b2d2872 2021-06-20 op
1215 5e11c00c 2021-03-02 op void
1216 2b2d2872 2021-06-20 op ui_toggle_side_window(void)
1217 2b2d2872 2021-06-20 op {
1218 2b2d2872 2021-06-20 op side_window = !side_window;
1219 2b2d2872 2021-06-20 op if (side_window)
1220 2b2d2872 2021-06-20 op recompute_help();
1221 960b01da 2021-06-20 op
1222 960b01da 2021-06-20 op /*
1223 960b01da 2021-06-20 op * ugly hack, but otherwise the window doesn't get updated
1224 960b01da 2021-06-20 op * until I call handle_resize a second time (i.e. C-l). I
1225 960b01da 2021-06-20 op * will be happy to know why something like this is needed.
1226 960b01da 2021-06-20 op */
1227 960b01da 2021-06-20 op handle_resize_nodelay(0, 0, NULL);
1228 960b01da 2021-06-20 op handle_resize_nodelay(0, 0, NULL);
1229 2b2d2872 2021-06-20 op }
1230 2b2d2872 2021-06-20 op
1231 2b2d2872 2021-06-20 op void
1232 2b2d2872 2021-06-20 op ui_schedule_redraw(void)
1233 2b2d2872 2021-06-20 op {
1234 b1e1e41a 2021-07-14 op struct timeval tv = {0, 0};
1235 b1e1e41a 2021-07-14 op
1236 b1e1e41a 2021-07-14 op if (event_pending(&resizeev, EV_TIMEOUT, NULL))
1237 b1e1e41a 2021-07-14 op event_del(&resizeev);
1238 b1e1e41a 2021-07-14 op
1239 b1e1e41a 2021-07-14 op evtimer_set(&resizeev, handle_resize_nodelay, NULL);
1240 b1e1e41a 2021-07-14 op evtimer_add(&resizeev, &tv);
1241 2b2d2872 2021-06-20 op }
1242 2b2d2872 2021-06-20 op
1243 2b2d2872 2021-06-20 op void
1244 5cd2ebb1 2021-03-11 op ui_require_input(struct tab *tab, int hide)
1245 5cd2ebb1 2021-03-11 op {
1246 5cd2ebb1 2021-03-11 op /* TODO: hard-switching to another tab is ugly */
1247 5cd2ebb1 2021-03-11 op switch_to_tab(tab);
1248 5cd2ebb1 2021-03-11 op
1249 22268e11 2021-03-11 op enter_minibuffer(ir_self_insert, ir_select, exit_minibuffer,
1250 e5a2797f 2021-07-13 op &ir_history, NULL, NULL);
1251 5cd2ebb1 2021-03-11 op strlcpy(ministate.prompt, "Input required: ",
1252 5cd2ebb1 2021-03-11 op sizeof(ministate.prompt));
1253 5cd2ebb1 2021-03-11 op redraw_tab(tab);
1254 5cd2ebb1 2021-03-11 op }
1255 5cd2ebb1 2021-03-11 op
1256 5cd2ebb1 2021-03-11 op void
1257 a2fd3805 2021-07-06 op ui_yornp(const char *prompt, void (*fn)(int, struct tab *),
1258 a2fd3805 2021-07-06 op struct tab *data)
1259 5d1bac73 2021-03-25 op {
1260 84b88039 2021-07-12 op yornp(prompt, fn, data);
1261 5d1bac73 2021-03-25 op redraw_tab(current_tab());
1262 5d1bac73 2021-03-25 op }
1263 5d1bac73 2021-03-25 op
1264 5d1bac73 2021-03-25 op void
1265 d1353324 2021-07-13 op ui_read(const char *prompt, void (*fn)(const char*, struct tab *),
1266 d1353324 2021-07-13 op struct tab *data)
1267 de2a69bb 2021-05-17 op {
1268 b1e1e41a 2021-07-14 op completing_read(prompt, fn, data);
1269 de2a69bb 2021-05-17 op redraw_tab(current_tab());
1270 740f578b 2021-03-15 op }
1271 740f578b 2021-03-15 op
1272 740f578b 2021-03-15 op void
1273 5e11c00c 2021-03-02 op ui_end(void)
1274 5e11c00c 2021-03-02 op {
1275 5e11c00c 2021-03-02 op endwin();
1276 5e11c00c 2021-03-02 op }