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