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