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 e2226342 2021-05-12 op #include "telescope.h"
34 5e11c00c 2021-03-02 op
35 bddc7bbd 2021-04-01 op #include <assert.h>
36 5e11c00c 2021-03-02 op #include <curses.h>
37 5e11c00c 2021-03-02 op #include <event.h>
38 c92e529c 2021-06-15 op #include <limits.h>
39 5e11c00c 2021-03-02 op #include <locale.h>
40 5e11c00c 2021-03-02 op #include <signal.h>
41 7953dd72 2021-03-07 op #include <stdarg.h>
42 eb259e66 2021-03-02 op #include <stdlib.h>
43 eb259e66 2021-03-02 op #include <string.h>
44 f832146f 2021-03-09 op #include <unistd.h>
45 5e11c00c 2021-03-02 op
46 5e11c00c 2021-03-02 op static struct event stdioev, winchev;
47 5e11c00c 2021-03-02 op
48 870210fb 2021-03-26 op static void global_key_unbound(void);
49 22268e11 2021-03-11 op static void minibuffer_hist_save_entry(void);
50 5cd2ebb1 2021-03-11 op static void minibuffer_self_insert(void);
51 5d1bac73 2021-03-25 op static void yornp_self_insert(void);
52 5d1bac73 2021-03-25 op static void yornp_abort(void);
53 de2a69bb 2021-05-17 op static void read_self_insert(void);
54 de2a69bb 2021-05-17 op static void read_abort(void);
55 de2a69bb 2021-05-17 op static void read_select(void);
56 9ca15951 2021-03-09 op
57 46f6e974 2021-05-17 op static struct vline *nth_line(struct buffer*, size_t);
58 46f6e974 2021-05-17 op static struct buffer *current_buffer(void);
59 8947c1f2 2021-03-21 op static int readkey(void);
60 5e11c00c 2021-03-02 op static void dispatch_stdio(int, short, void*);
61 a6d450c1 2021-03-06 op static void handle_clear_minibuf(int, short, void*);
62 5e11c00c 2021-03-02 op static void handle_resize(int, short, void*);
63 a8a482c8 2021-05-17 op static void handle_resize_nodelay(int, short, void*);
64 46f6e974 2021-05-17 op static int wrap_page(struct buffer*, int);
65 f3bcf8f2 2021-06-21 op static void print_vline(int, int, WINDOW*, struct vline*);
66 8af5e5ed 2021-03-08 op static void redraw_tabline(void);
67 f3bcf8f2 2021-06-21 op static void redraw_window(WINDOW*, int, int, struct buffer*);
68 bddc7bbd 2021-04-01 op static void redraw_help(void);
69 e19f9a04 2021-03-11 op static void redraw_body(struct tab*);
70 8af5e5ed 2021-03-08 op static void redraw_modeline(struct tab*);
71 9ca15951 2021-03-09 op static void redraw_minibuffer(void);
72 5e11c00c 2021-03-02 op static void redraw_tab(struct tab*);
73 bddc7bbd 2021-04-01 op static void emit_help_item(char*, void*);
74 bddc7bbd 2021-04-01 op static void rec_compute_help(struct kmap*, char*, size_t);
75 bddc7bbd 2021-04-01 op static void recompute_help(void);
76 8af5e5ed 2021-03-08 op static void update_loading_anim(int, short, void*);
77 8af5e5ed 2021-03-08 op static void stop_loading_anim(struct tab*);
78 c7107cec 2021-04-01 op static void session_new_tab_cb(const char*);
79 941b3761 2021-03-18 op static void usage(void);
80 5e11c00c 2021-03-02 op
81 72b18268 2021-06-19 op static int x_offset;
82 72b18268 2021-06-19 op
83 2b2d2872 2021-06-20 op struct thiskey thiskey;
84 9ca15951 2021-03-09 op
85 831deb20 2021-05-12 op static struct event resizeev;
86 831deb20 2021-05-12 op static struct timeval resize_timer = { 0, 250000 };
87 831deb20 2021-05-12 op
88 48e9d457 2021-03-06 op static WINDOW *tabline, *body, *modeline, *minibuf;
89 48e9d457 2021-03-06 op
90 2b2d2872 2021-06-20 op int body_lines, body_cols;
91 2b2d2872 2021-06-20 op
92 bddc7bbd 2021-04-01 op static WINDOW *help;
93 46f6e974 2021-05-17 op static struct buffer helpwin;
94 bddc7bbd 2021-04-01 op static int help_lines, help_cols;
95 bddc7bbd 2021-04-01 op
96 bddc7bbd 2021-04-01 op static int side_window;
97 bddc7bbd 2021-04-01 op
98 48e9d457 2021-03-06 op static struct event clminibufev;
99 a6d450c1 2021-03-06 op static struct timeval clminibufev_timer = { 5, 0 };
100 8af5e5ed 2021-03-08 op static struct timeval loadingev_timer = { 0, 250000 };
101 48e9d457 2021-03-06 op
102 bcb0b073 2021-03-07 op static uint32_t tab_counter;
103 bcb0b073 2021-03-07 op
104 7c7d7bb7 2021-03-10 op static char keybuf[64];
105 9ca15951 2021-03-09 op
106 b3575139 2021-04-01 op static void (*yornp_cb)(int, unsigned int);
107 b3575139 2021-04-01 op static unsigned int yornp_data;
108 5d1bac73 2021-03-25 op
109 de2a69bb 2021-05-17 op static void (*read_cb)(const char*, unsigned int);
110 de2a69bb 2021-05-17 op static unsigned int read_data;
111 de2a69bb 2021-05-17 op
112 9ca15951 2021-03-09 op struct kmap global_map,
113 fa3fd864 2021-03-10 op minibuffer_map,
114 9ca15951 2021-03-09 op *current_map,
115 9ca15951 2021-03-09 op *base_map;
116 9ca15951 2021-03-09 op
117 2b2d2872 2021-06-20 op struct histhead eecmd_history,
118 22268e11 2021-03-11 op ir_history,
119 de2a69bb 2021-05-17 op lu_history,
120 de2a69bb 2021-05-17 op read_history;
121 22268e11 2021-03-11 op
122 2b2d2872 2021-06-20 op int in_minibuffer;
123 9ca15951 2021-03-09 op
124 2b2d2872 2021-06-20 op struct ministate ministate;
125 72b18268 2021-06-19 op
126 72b18268 2021-06-19 op static inline void
127 923f9ce5 2021-06-21 op update_x_offset(void)
128 72b18268 2021-06-19 op {
129 72b18268 2021-06-19 op if (olivetti_mode && fill_column < body_cols)
130 72b18268 2021-06-19 op x_offset = (body_cols - fill_column)/2;
131 72b18268 2021-06-19 op else
132 72b18268 2021-06-19 op x_offset = 0;
133 72b18268 2021-06-19 op }
134 65d9b3ca 2021-03-14 op
135 98411855 2021-06-23 op void
136 98411855 2021-06-23 op save_excursion(struct excursion *place, struct buffer *buffer)
137 98411855 2021-06-23 op {
138 98411855 2021-06-23 op place->curs_x = buffer->curs_x;
139 98411855 2021-06-23 op place->curs_y = buffer->curs_y;
140 98411855 2021-06-23 op place->line_off = buffer->line_off;
141 98411855 2021-06-23 op place->current_line = buffer->current_line;
142 98411855 2021-06-23 op place->cpoff = buffer->cpoff;
143 98411855 2021-06-23 op }
144 98411855 2021-06-23 op
145 98411855 2021-06-23 op void
146 98411855 2021-06-23 op restore_excursion(struct excursion *place, struct buffer *buffer)
147 98411855 2021-06-23 op {
148 98411855 2021-06-23 op buffer->curs_x = place->curs_x;
149 98411855 2021-06-23 op buffer->curs_y = place->curs_y;
150 98411855 2021-06-23 op buffer->line_off = place->line_off;
151 98411855 2021-06-23 op buffer->current_line = place->current_line;
152 98411855 2021-06-23 op buffer->cpoff = place->cpoff;
153 1d08c280 2021-03-06 op }
154 1d08c280 2021-03-06 op
155 2b2d2872 2021-06-20 op void
156 46f6e974 2021-05-17 op restore_cursor(struct buffer *buffer)
157 48e9d457 2021-03-06 op {
158 452589f7 2021-03-16 op struct vline *vl;
159 452589f7 2021-03-16 op const char *prfx;
160 452589f7 2021-03-16 op
161 46f6e974 2021-05-17 op vl = buffer->current_line;
162 452589f7 2021-03-16 op if (vl == NULL || vl->line == NULL)
163 46f6e974 2021-05-17 op buffer->curs_x = buffer->cpoff = 0;
164 452589f7 2021-03-16 op else
165 46f6e974 2021-05-17 op buffer->curs_x = utf8_snwidth(vl->line, buffer->cpoff);
166 452589f7 2021-03-16 op
167 72b18268 2021-06-19 op buffer->curs_x += x_offset;
168 72b18268 2021-06-19 op
169 452589f7 2021-03-16 op if (vl != NULL) {
170 452589f7 2021-03-16 op prfx = line_prefixes[vl->parent->type].prfx1;
171 46f6e974 2021-05-17 op buffer->curs_x += utf8_swidth(prfx);
172 2ba66cea 2021-03-22 op }
173 9ca15951 2021-03-09 op }
174 9ca15951 2021-03-09 op
175 22268e11 2021-03-11 op static void
176 870210fb 2021-03-26 op global_key_unbound(void)
177 870210fb 2021-03-26 op {
178 870210fb 2021-03-26 op message("%s is undefined", keybuf);
179 870210fb 2021-03-26 op }
180 870210fb 2021-03-26 op
181 870210fb 2021-03-26 op static void
182 22268e11 2021-03-11 op minibuffer_hist_save_entry(void)
183 22268e11 2021-03-11 op {
184 3148eeac 2021-03-13 op struct hist *hist;
185 22268e11 2021-03-11 op
186 22268e11 2021-03-11 op if (ministate.history == NULL)
187 22268e11 2021-03-11 op return;
188 22268e11 2021-03-11 op
189 22268e11 2021-03-11 op if ((hist = calloc(1, sizeof(*hist))) == NULL)
190 22268e11 2021-03-11 op abort();
191 22268e11 2021-03-11 op
192 22268e11 2021-03-11 op strlcpy(hist->h, ministate.buf, sizeof(hist->h));
193 22268e11 2021-03-11 op
194 22268e11 2021-03-11 op if (TAILQ_EMPTY(&ministate.history->head))
195 22268e11 2021-03-11 op TAILQ_INSERT_HEAD(&ministate.history->head, hist, entries);
196 22268e11 2021-03-11 op else
197 22268e11 2021-03-11 op TAILQ_INSERT_TAIL(&ministate.history->head, hist, entries);
198 22268e11 2021-03-11 op ministate.history->len++;
199 22268e11 2021-03-11 op }
200 22268e11 2021-03-11 op
201 22268e11 2021-03-11 op /*
202 22268e11 2021-03-11 op * taint the minibuffer cache: if we're currently showing a history
203 22268e11 2021-03-11 op * element, copy that to the current buf and reset the "history
204 22268e11 2021-03-11 op * navigation" thing.
205 22268e11 2021-03-11 op */
206 2b2d2872 2021-06-20 op void
207 22268e11 2021-03-11 op minibuffer_taint_hist(void)
208 22268e11 2021-03-11 op {
209 22268e11 2021-03-11 op if (ministate.hist_cur == NULL)
210 22268e11 2021-03-11 op return;
211 22268e11 2021-03-11 op
212 22268e11 2021-03-11 op strlcpy(ministate.buf, ministate.hist_cur->h, sizeof(ministate.buf));
213 22268e11 2021-03-11 op ministate.hist_cur = NULL;
214 22268e11 2021-03-11 op }
215 22268e11 2021-03-11 op
216 22268e11 2021-03-11 op static void
217 5cd2ebb1 2021-03-11 op minibuffer_self_insert(void)
218 9ca15951 2021-03-09 op {
219 2ba66cea 2021-03-22 op char *c, tmp[5] = {0};
220 17e5106b 2021-03-21 op size_t len;
221 17e5106b 2021-03-21 op
222 22268e11 2021-03-11 op minibuffer_taint_hist();
223 22268e11 2021-03-11 op
224 17e5106b 2021-03-21 op if (thiskey.cp == 0)
225 9ca15951 2021-03-09 op return;
226 9ca15951 2021-03-09 op
227 17e5106b 2021-03-21 op len = utf8_encode(thiskey.cp, tmp);
228 46f6e974 2021-05-17 op c = utf8_nth(ministate.buffer.current_line->line, ministate.buffer.cpoff);
229 2ba66cea 2021-03-22 op if (c + len > ministate.buf + sizeof(ministate.buf) - 1)
230 17e5106b 2021-03-21 op return;
231 9ca15951 2021-03-09 op
232 2ba66cea 2021-03-22 op memmove(c + len, c, strlen(c)+1);
233 2ba66cea 2021-03-22 op memcpy(c, tmp, len);
234 46f6e974 2021-05-17 op ministate.buffer.cpoff++;
235 b360ebb3 2021-03-10 op }
236 b360ebb3 2021-03-10 op
237 2b2d2872 2021-06-20 op void
238 5cd2ebb1 2021-03-11 op eecmd_self_insert(void)
239 5cd2ebb1 2021-03-11 op {
240 17e5106b 2021-03-21 op if (thiskey.meta || unicode_isspace(thiskey.cp) ||
241 17e5106b 2021-03-21 op !unicode_isgraph(thiskey.cp)) {
242 5cd2ebb1 2021-03-11 op global_key_unbound();
243 5cd2ebb1 2021-03-11 op return;
244 5cd2ebb1 2021-03-11 op }
245 5cd2ebb1 2021-03-11 op
246 5cd2ebb1 2021-03-11 op minibuffer_self_insert();
247 5cd2ebb1 2021-03-11 op }
248 5cd2ebb1 2021-03-11 op
249 2b2d2872 2021-06-20 op void
250 b360ebb3 2021-03-10 op eecmd_select(void)
251 b360ebb3 2021-03-10 op {
252 a3666ed5 2021-06-25 op struct cmd *cmd;
253 870210fb 2021-03-26 op
254 870210fb 2021-03-26 op for (cmd = cmds; cmd->cmd != NULL; ++cmd) {
255 870210fb 2021-03-26 op if (!strcmp(cmd->cmd, ministate.buf)) {
256 2fe98292 2021-03-26 op exit_minibuffer();
257 2fe98292 2021-03-26 op minibuffer_hist_save_entry();
258 46f6e974 2021-05-17 op cmd->fn(current_buffer());
259 870210fb 2021-03-26 op return;
260 870210fb 2021-03-26 op }
261 870210fb 2021-03-26 op }
262 870210fb 2021-03-26 op
263 2fe98292 2021-03-26 op message("No match");
264 5cd2ebb1 2021-03-11 op }
265 5cd2ebb1 2021-03-11 op
266 2b2d2872 2021-06-20 op void
267 5cd2ebb1 2021-03-11 op ir_self_insert(void)
268 5cd2ebb1 2021-03-11 op {
269 5cd2ebb1 2021-03-11 op minibuffer_self_insert();
270 5cd2ebb1 2021-03-11 op }
271 5cd2ebb1 2021-03-11 op
272 2b2d2872 2021-06-20 op void
273 5cd2ebb1 2021-03-11 op ir_select(void)
274 5cd2ebb1 2021-03-11 op {
275 5cd2ebb1 2021-03-11 op char buf[1025] = {0};
276 31f1a758 2021-04-22 op struct phos_uri uri;
277 5cd2ebb1 2021-03-11 op struct tab *tab;
278 5cd2ebb1 2021-03-11 op
279 5cd2ebb1 2021-03-11 op tab = current_tab();
280 5cd2ebb1 2021-03-11 op
281 5cd2ebb1 2021-03-11 op exit_minibuffer();
282 22268e11 2021-03-11 op minibuffer_hist_save_entry();
283 5cd2ebb1 2021-03-11 op
284 5cd2ebb1 2021-03-11 op /* a bit ugly but... */
285 31f1a758 2021-04-22 op memcpy(&uri, &tab->uri, sizeof(tab->uri));
286 f7a80b3c 2021-04-24 op phos_uri_set_query(&uri, ministate.buf);
287 31f1a758 2021-04-22 op phos_serialize_uri(&uri, buf, sizeof(buf));
288 5cd2ebb1 2021-03-11 op load_url_in_tab(tab, buf);
289 5cd2ebb1 2021-03-11 op }
290 5cd2ebb1 2021-03-11 op
291 2b2d2872 2021-06-20 op void
292 5cd2ebb1 2021-03-11 op lu_self_insert(void)
293 5cd2ebb1 2021-03-11 op {
294 17e5106b 2021-03-21 op if (thiskey.meta || unicode_isspace(thiskey.key) ||
295 17e5106b 2021-03-21 op !unicode_isgraph(thiskey.key)) {
296 5cd2ebb1 2021-03-11 op global_key_unbound();
297 5cd2ebb1 2021-03-11 op return;
298 5cd2ebb1 2021-03-11 op }
299 5cd2ebb1 2021-03-11 op
300 5cd2ebb1 2021-03-11 op minibuffer_self_insert();
301 5cd2ebb1 2021-03-11 op }
302 5cd2ebb1 2021-03-11 op
303 2b2d2872 2021-06-20 op void
304 5cd2ebb1 2021-03-11 op lu_select(void)
305 5cd2ebb1 2021-03-11 op {
306 5cd2ebb1 2021-03-11 op exit_minibuffer();
307 22268e11 2021-03-11 op minibuffer_hist_save_entry();
308 5cd2ebb1 2021-03-11 op load_url_in_tab(current_tab(), ministate.buf);
309 740f578b 2021-03-15 op }
310 740f578b 2021-03-15 op
311 2b2d2872 2021-06-20 op void
312 740f578b 2021-03-15 op bp_select(void)
313 740f578b 2021-03-15 op {
314 740f578b 2021-03-15 op exit_minibuffer();
315 740f578b 2021-03-15 op if (*ministate.buf != '\0')
316 740f578b 2021-03-15 op add_to_bookmarks(ministate.buf);
317 740f578b 2021-03-15 op else
318 740f578b 2021-03-15 op message("Abort.");
319 5d1bac73 2021-03-25 op }
320 5d1bac73 2021-03-25 op
321 5d1bac73 2021-03-25 op static void
322 5d1bac73 2021-03-25 op yornp_self_insert(void)
323 5d1bac73 2021-03-25 op {
324 5d1bac73 2021-03-25 op if (thiskey.key != 'y' && thiskey.key != 'n') {
325 5d1bac73 2021-03-25 op message("Please answer y or n");
326 5d1bac73 2021-03-25 op return;
327 5d1bac73 2021-03-25 op }
328 5d1bac73 2021-03-25 op
329 5d1bac73 2021-03-25 op exit_minibuffer();
330 fef9de8f 2021-04-25 op yornp_cb(thiskey.key == 'y', yornp_data);
331 5d1bac73 2021-03-25 op }
332 5d1bac73 2021-03-25 op
333 5d1bac73 2021-03-25 op static void
334 5d1bac73 2021-03-25 op yornp_abort(void)
335 5d1bac73 2021-03-25 op {
336 5d1bac73 2021-03-25 op exit_minibuffer();
337 fef9de8f 2021-04-25 op yornp_cb(0, yornp_data);
338 de2a69bb 2021-05-17 op }
339 de2a69bb 2021-05-17 op
340 de2a69bb 2021-05-17 op static void
341 de2a69bb 2021-05-17 op read_self_insert(void)
342 de2a69bb 2021-05-17 op {
343 de2a69bb 2021-05-17 op if (thiskey.meta || !unicode_isgraph(thiskey.cp)) {
344 de2a69bb 2021-05-17 op global_key_unbound();
345 de2a69bb 2021-05-17 op return;
346 de2a69bb 2021-05-17 op }
347 de2a69bb 2021-05-17 op
348 de2a69bb 2021-05-17 op minibuffer_self_insert();
349 de2a69bb 2021-05-17 op }
350 de2a69bb 2021-05-17 op
351 de2a69bb 2021-05-17 op static void
352 de2a69bb 2021-05-17 op read_abort(void)
353 de2a69bb 2021-05-17 op {
354 de2a69bb 2021-05-17 op exit_minibuffer();
355 de2a69bb 2021-05-17 op read_cb(NULL, read_data);
356 de2a69bb 2021-05-17 op }
357 de2a69bb 2021-05-17 op
358 de2a69bb 2021-05-17 op static void
359 de2a69bb 2021-05-17 op read_select(void)
360 de2a69bb 2021-05-17 op {
361 de2a69bb 2021-05-17 op exit_minibuffer();
362 de2a69bb 2021-05-17 op minibuffer_hist_save_entry();
363 de2a69bb 2021-05-17 op read_cb(ministate.buf, read_data);
364 2a4ad912 2021-03-08 op }
365 2a4ad912 2021-03-08 op
366 9a25f829 2021-03-14 op static struct vline *
367 46f6e974 2021-05-17 op nth_line(struct buffer *buffer, size_t n)
368 48e9d457 2021-03-06 op {
369 9a25f829 2021-03-14 op struct vline *vl;
370 48e9d457 2021-03-06 op size_t i;
371 48e9d457 2021-03-06 op
372 48e9d457 2021-03-06 op i = 0;
373 46f6e974 2021-05-17 op TAILQ_FOREACH(vl, &buffer->head, vlines) {
374 48e9d457 2021-03-06 op if (i == n)
375 9a25f829 2021-03-14 op return vl;
376 48e9d457 2021-03-06 op i++;
377 48e9d457 2021-03-06 op }
378 48e9d457 2021-03-06 op
379 48e9d457 2021-03-06 op /* unreachable */
380 48e9d457 2021-03-06 op abort();
381 48e9d457 2021-03-06 op }
382 48e9d457 2021-03-06 op
383 2b2d2872 2021-06-20 op struct tab *
384 5e11c00c 2021-03-02 op current_tab(void)
385 5e11c00c 2021-03-02 op {
386 5e11c00c 2021-03-02 op struct tab *t;
387 5e11c00c 2021-03-02 op
388 5e11c00c 2021-03-02 op TAILQ_FOREACH(t, &tabshead, tabs) {
389 5e11c00c 2021-03-02 op if (t->flags & TAB_CURRENT)
390 5e11c00c 2021-03-02 op return t;
391 5e11c00c 2021-03-02 op }
392 5e11c00c 2021-03-02 op
393 5e11c00c 2021-03-02 op /* unreachable */
394 5e11c00c 2021-03-02 op abort();
395 5e11c00c 2021-03-02 op }
396 5e11c00c 2021-03-02 op
397 2b2d2872 2021-06-20 op struct buffer *
398 46f6e974 2021-05-17 op current_buffer(void)
399 2ba66cea 2021-03-22 op {
400 2ba66cea 2021-03-22 op if (in_minibuffer)
401 46f6e974 2021-05-17 op return &ministate.buffer;
402 46f6e974 2021-05-17 op return &current_tab()->buffer;
403 2ba66cea 2021-03-22 op }
404 2ba66cea 2021-03-22 op
405 8947c1f2 2021-03-21 op static int
406 8947c1f2 2021-03-21 op readkey(void)
407 5e11c00c 2021-03-02 op {
408 8947c1f2 2021-03-21 op uint32_t state = 0;
409 19f1448e 2021-03-08 op
410 8947c1f2 2021-03-21 op if ((thiskey.key = wgetch(body)) == ERR)
411 8947c1f2 2021-03-21 op return 0;
412 5e11c00c 2021-03-02 op
413 8947c1f2 2021-03-21 op thiskey.meta = thiskey.key == 27;
414 8947c1f2 2021-03-21 op if (thiskey.meta) {
415 9ca15951 2021-03-09 op thiskey.key = wgetch(body);
416 c314a314 2021-03-11 op if (thiskey.key == ERR || thiskey.key == 27) {
417 c314a314 2021-03-11 op thiskey.meta = 0;
418 9ca15951 2021-03-09 op thiskey.key = 27;
419 c314a314 2021-03-11 op }
420 8947c1f2 2021-03-21 op }
421 8947c1f2 2021-03-21 op
422 8947c1f2 2021-03-21 op thiskey.cp = 0;
423 8947c1f2 2021-03-21 op if ((unsigned int)thiskey.key < UINT8_MAX) {
424 8947c1f2 2021-03-21 op while (1) {
425 8947c1f2 2021-03-21 op if (!utf8_decode(&state, &thiskey.cp, (uint8_t)thiskey.key))
426 8947c1f2 2021-03-21 op break;
427 8947c1f2 2021-03-21 op if ((thiskey.key = wgetch(body)) == ERR) {
428 8947c1f2 2021-03-21 op message("Error decoding user input");
429 8947c1f2 2021-03-21 op return 0;
430 8947c1f2 2021-03-21 op }
431 8947c1f2 2021-03-21 op }
432 8947c1f2 2021-03-21 op }
433 19f1448e 2021-03-08 op
434 8947c1f2 2021-03-21 op return 1;
435 8947c1f2 2021-03-21 op }
436 8947c1f2 2021-03-21 op
437 8947c1f2 2021-03-21 op static void
438 8947c1f2 2021-03-21 op dispatch_stdio(int fd, short ev, void *d)
439 8947c1f2 2021-03-21 op {
440 8947c1f2 2021-03-21 op struct keymap *k;
441 8947c1f2 2021-03-21 op const char *keyname;
442 8947c1f2 2021-03-21 op char tmp[5] = {0};
443 8947c1f2 2021-03-21 op
444 8947c1f2 2021-03-21 op if (!readkey())
445 8947c1f2 2021-03-21 op return;
446 8947c1f2 2021-03-21 op
447 7c7d7bb7 2021-03-10 op if (keybuf[0] != '\0')
448 7c7d7bb7 2021-03-10 op strlcat(keybuf, " ", sizeof(keybuf));
449 7c7d7bb7 2021-03-10 op if (thiskey.meta)
450 7c7d7bb7 2021-03-10 op strlcat(keybuf, "M-", sizeof(keybuf));
451 8947c1f2 2021-03-21 op if (thiskey.cp != 0) {
452 8947c1f2 2021-03-21 op utf8_encode(thiskey.cp, tmp);
453 7c7d7bb7 2021-03-10 op strlcat(keybuf, tmp, sizeof(keybuf));
454 8947c1f2 2021-03-21 op } else {
455 8947c1f2 2021-03-21 op if ((keyname = unkbd(thiskey.key)) != NULL)
456 8947c1f2 2021-03-21 op strlcat(keybuf, keyname, sizeof(keybuf));
457 8947c1f2 2021-03-21 op else {
458 8947c1f2 2021-03-21 op tmp[0] = thiskey.key;
459 8947c1f2 2021-03-21 op strlcat(keybuf, tmp, sizeof(keybuf));
460 8947c1f2 2021-03-21 op }
461 7c7d7bb7 2021-03-10 op }
462 7c7d7bb7 2021-03-10 op
463 9ca15951 2021-03-09 op TAILQ_FOREACH(k, &current_map->m, keymaps) {
464 9ca15951 2021-03-09 op if (k->meta == thiskey.meta &&
465 9ca15951 2021-03-09 op k->key == thiskey.key) {
466 f832146f 2021-03-09 op if (k->fn == NULL)
467 f832146f 2021-03-09 op current_map = &k->map;
468 f832146f 2021-03-09 op else {
469 9ca15951 2021-03-09 op current_map = base_map;
470 7c7d7bb7 2021-03-10 op strlcpy(keybuf, "", sizeof(keybuf));
471 46f6e974 2021-05-17 op k->fn(current_buffer());
472 f832146f 2021-03-09 op }
473 1d08c280 2021-03-06 op goto done;
474 1d08c280 2021-03-06 op }
475 eb259e66 2021-03-02 op }
476 eb259e66 2021-03-02 op
477 7c7d7bb7 2021-03-10 op if (current_map->unhandled_input != NULL)
478 7c7d7bb7 2021-03-10 op current_map->unhandled_input();
479 d2399aef 2021-06-20 op else
480 7c7d7bb7 2021-03-10 op global_key_unbound();
481 7c7d7bb7 2021-03-10 op
482 7c7d7bb7 2021-03-10 op strlcpy(keybuf, "", sizeof(keybuf));
483 9ca15951 2021-03-09 op current_map = base_map;
484 1d08c280 2021-03-06 op
485 1d08c280 2021-03-06 op done:
486 bddc7bbd 2021-04-01 op if (side_window)
487 bddc7bbd 2021-04-01 op recompute_help();
488 bddc7bbd 2021-04-01 op
489 179f0f58 2021-03-11 op redraw_tab(current_tab());
490 a6d450c1 2021-03-06 op }
491 48e9d457 2021-03-06 op
492 a6d450c1 2021-03-06 op static void
493 a6d450c1 2021-03-06 op handle_clear_minibuf(int fd, short ev, void *d)
494 a6d450c1 2021-03-06 op {
495 9cb0f9ce 2021-03-10 op free(ministate.curmesg);
496 9cb0f9ce 2021-03-10 op ministate.curmesg = NULL;
497 9cb0f9ce 2021-03-10 op
498 9cb0f9ce 2021-03-10 op redraw_minibuffer();
499 9cb0f9ce 2021-03-10 op if (in_minibuffer) {
500 9cb0f9ce 2021-03-10 op wrefresh(body);
501 9cb0f9ce 2021-03-10 op wrefresh(minibuf);
502 9cb0f9ce 2021-03-10 op } else {
503 9cb0f9ce 2021-03-10 op wrefresh(minibuf);
504 9cb0f9ce 2021-03-10 op wrefresh(body);
505 9cb0f9ce 2021-03-10 op }
506 5e11c00c 2021-03-02 op }
507 5e11c00c 2021-03-02 op
508 5e11c00c 2021-03-02 op static void
509 5e11c00c 2021-03-02 op handle_resize(int sig, short ev, void *d)
510 831deb20 2021-05-12 op {
511 831deb20 2021-05-12 op if (event_pending(&resizeev, EV_TIMEOUT, NULL)) {
512 831deb20 2021-05-12 op event_del(&resizeev);
513 831deb20 2021-05-12 op }
514 a8a482c8 2021-05-17 op evtimer_set(&resizeev, handle_resize_nodelay, NULL);
515 831deb20 2021-05-12 op evtimer_add(&resizeev, &resize_timer);
516 831deb20 2021-05-12 op }
517 831deb20 2021-05-12 op
518 831deb20 2021-05-12 op static void
519 a8a482c8 2021-05-17 op handle_resize_nodelay(int s, short ev, void *d)
520 5e11c00c 2021-03-02 op {
521 1d08c280 2021-03-06 op struct tab *tab;
522 1d08c280 2021-03-06 op
523 5e11c00c 2021-03-02 op endwin();
524 5e11c00c 2021-03-02 op refresh();
525 5e11c00c 2021-03-02 op clear();
526 5e11c00c 2021-03-02 op
527 48e9d457 2021-03-06 op /* move and resize the windows, in reverse order! */
528 48e9d457 2021-03-06 op
529 b1738d2e 2021-03-06 op mvwin(minibuf, LINES-1, 0);
530 48e9d457 2021-03-06 op wresize(minibuf, 1, COLS);
531 48e9d457 2021-03-06 op
532 48e9d457 2021-03-06 op mvwin(modeline, LINES-2, 0);
533 48e9d457 2021-03-06 op wresize(modeline, 1, COLS);
534 48e9d457 2021-03-06 op
535 48e9d457 2021-03-06 op body_lines = LINES-3;
536 bd9637e9 2021-03-06 op body_cols = COLS;
537 bddc7bbd 2021-04-01 op
538 bddc7bbd 2021-04-01 op if (side_window) {
539 bddc7bbd 2021-04-01 op help_cols = 0.3 * COLS;
540 bddc7bbd 2021-04-01 op help_lines = LINES-3;
541 bddc7bbd 2021-04-01 op mvwin(help, 1, 0);
542 bddc7bbd 2021-04-01 op wresize(help, help_lines, help_cols);
543 48e9d457 2021-03-06 op
544 bddc7bbd 2021-04-01 op wrap_page(&helpwin, help_cols);
545 bddc7bbd 2021-04-01 op
546 bddc7bbd 2021-04-01 op body_cols = COLS - help_cols - 1;
547 bddc7bbd 2021-04-01 op mvwin(body, 1, help_cols);
548 bddc7bbd 2021-04-01 op } else
549 bddc7bbd 2021-04-01 op mvwin(body, 1, 0);
550 bddc7bbd 2021-04-01 op
551 72b18268 2021-06-19 op update_x_offset();
552 bddc7bbd 2021-04-01 op wresize(body, body_lines, body_cols);
553 bddc7bbd 2021-04-01 op
554 48e9d457 2021-03-06 op wresize(tabline, 1, COLS);
555 48e9d457 2021-03-06 op
556 1d08c280 2021-03-06 op tab = current_tab();
557 1d08c280 2021-03-06 op
558 46f6e974 2021-05-17 op wrap_page(&tab->buffer, body_cols);
559 1d08c280 2021-03-06 op redraw_tab(tab);
560 eb259e66 2021-03-02 op }
561 eb259e66 2021-03-02 op
562 1d08c280 2021-03-06 op static int
563 46f6e974 2021-05-17 op wrap_page(struct buffer *buffer, int width)
564 1d08c280 2021-03-06 op {
565 452589f7 2021-03-16 op struct line *l;
566 452589f7 2021-03-16 op const struct line *orig;
567 d511dc85 2021-03-16 op struct vline *vl;
568 72b18268 2021-06-19 op int pre_width;
569 452589f7 2021-03-16 op const char *prfx;
570 452589f7 2021-03-16 op
571 46f6e974 2021-05-17 op orig = buffer->current_line == NULL
572 452589f7 2021-03-16 op ? NULL
573 46f6e974 2021-05-17 op : buffer->current_line->parent;
574 46f6e974 2021-05-17 op buffer->current_line = NULL;
575 452589f7 2021-03-16 op
576 a00b4c97 2021-06-20 op buffer->force_redraw = 1;
577 46f6e974 2021-05-17 op buffer->curs_y = 0;
578 46f6e974 2021-05-17 op buffer->line_off = 0;
579 1d08c280 2021-03-06 op
580 46f6e974 2021-05-17 op empty_vlist(buffer);
581 1d08c280 2021-03-06 op
582 46f6e974 2021-05-17 op TAILQ_FOREACH(l, &buffer->page.head, lines) {
583 0d568960 2021-03-11 op prfx = line_prefixes[l->type].prfx1;
584 5e11c00c 2021-03-02 op switch (l->type) {
585 5e11c00c 2021-03-02 op case LINE_TEXT:
586 5e11c00c 2021-03-02 op case LINE_LINK:
587 5e11c00c 2021-03-02 op case LINE_TITLE_1:
588 5e11c00c 2021-03-02 op case LINE_TITLE_2:
589 5e11c00c 2021-03-02 op case LINE_TITLE_3:
590 5e11c00c 2021-03-02 op case LINE_ITEM:
591 5e11c00c 2021-03-02 op case LINE_QUOTE:
592 5e11c00c 2021-03-02 op case LINE_PRE_START:
593 5e11c00c 2021-03-02 op case LINE_PRE_END:
594 1a99965e 2021-06-19 op wrap_text(buffer, prfx, l, MIN(fill_column, width));
595 5e11c00c 2021-03-02 op break;
596 5e11c00c 2021-03-02 op case LINE_PRE_CONTENT:
597 72b18268 2021-06-19 op if (olivetti_mode)
598 72b18268 2021-06-19 op pre_width = MIN(fill_column, width);
599 72b18268 2021-06-19 op else
600 72b18268 2021-06-19 op pre_width = width;
601 72b18268 2021-06-19 op hardwrap_text(buffer, l, pre_width);
602 5e11c00c 2021-03-02 op break;
603 452589f7 2021-03-16 op }
604 452589f7 2021-03-16 op
605 46f6e974 2021-05-17 op if (orig == l && buffer->current_line == NULL) {
606 46f6e974 2021-05-17 op buffer->line_off = buffer->line_max-1;
607 46f6e974 2021-05-17 op buffer->current_line = TAILQ_LAST(&buffer->head, vhead);
608 d511dc85 2021-03-16 op
609 d511dc85 2021-03-16 op while (1) {
610 46f6e974 2021-05-17 op vl = TAILQ_PREV(buffer->current_line, vhead, vlines);
611 d511dc85 2021-03-16 op if (vl == NULL || vl->parent != orig)
612 d511dc85 2021-03-16 op break;
613 46f6e974 2021-05-17 op buffer->current_line = vl;
614 46f6e974 2021-05-17 op buffer->line_off--;
615 d511dc85 2021-03-16 op }
616 5e11c00c 2021-03-02 op }
617 5e11c00c 2021-03-02 op }
618 452589f7 2021-03-16 op
619 46f6e974 2021-05-17 op if (buffer->current_line == NULL)
620 46f6e974 2021-05-17 op buffer->current_line = TAILQ_FIRST(&buffer->head);
621 452589f7 2021-03-16 op
622 1d08c280 2021-03-06 op return 1;
623 1d08c280 2021-03-06 op }
624 5e11c00c 2021-03-02 op
625 754622a2 2021-03-15 op static void
626 f3bcf8f2 2021-06-21 op print_vline(int off, int width, WINDOW *window, struct vline *vl)
627 1d08c280 2021-03-06 op {
628 2af29222 2021-06-24 op const char *text;
629 768db5bb 2021-03-12 op const char *prfx;
630 2af29222 2021-06-24 op struct line_face *f;
631 f3bcf8f2 2021-06-21 op int i, left, x, y;
632 bd9637e9 2021-03-06 op
633 2af29222 2021-06-24 op f = &line_faces[vl->parent->type];
634 2af29222 2021-06-24 op
635 d89b86d6 2021-06-21 op /* unused, set by getyx */
636 f3bcf8f2 2021-06-21 op (void)y;
637 f3bcf8f2 2021-06-21 op
638 9a25f829 2021-03-14 op if (!vl->flags)
639 9a25f829 2021-03-14 op prfx = line_prefixes[vl->parent->type].prfx1;
640 768db5bb 2021-03-12 op else
641 9a25f829 2021-03-14 op prfx = line_prefixes[vl->parent->type].prfx2;
642 768db5bb 2021-03-12 op
643 2af29222 2021-06-24 op text = vl->line;
644 bd9637e9 2021-03-06 op if (text == NULL)
645 bd9637e9 2021-03-06 op text = "";
646 bd9637e9 2021-03-06 op
647 ab47e7d4 2021-06-24 op wattr_on(window, body_face.left, NULL);
648 f3bcf8f2 2021-06-21 op for (i = 0; i < off; i++)
649 f3bcf8f2 2021-06-21 op waddch(window, ' ');
650 ab47e7d4 2021-06-24 op wattr_off(window, body_face.left, NULL);
651 ab47e7d4 2021-06-24 op
652 2af29222 2021-06-24 op wattr_on(window, f->prefix, NULL);
653 bddc7bbd 2021-04-01 op wprintw(window, "%s", prfx);
654 2af29222 2021-06-24 op wattr_off(window, f->prefix, NULL);
655 803ff456 2021-03-17 op
656 2af29222 2021-06-24 op wattr_on(window, f->text, NULL);
657 bddc7bbd 2021-04-01 op wprintw(window, "%s", text);
658 2af29222 2021-06-24 op wattr_off(window, f->text, NULL);
659 f3bcf8f2 2021-06-21 op
660 f3bcf8f2 2021-06-21 op getyx(window, y, x);
661 f3bcf8f2 2021-06-21 op
662 f3bcf8f2 2021-06-21 op left = width - x;
663 f3bcf8f2 2021-06-21 op
664 2af29222 2021-06-24 op wattr_on(window, f->trail, NULL);
665 d89b86d6 2021-06-21 op for (i = 0; i < left - off - 1; ++i)
666 f3bcf8f2 2021-06-21 op waddch(window, ' ');
667 2af29222 2021-06-24 op wattr_off(window, f->trail, NULL);
668 160abe04 2021-06-21 op
669 ab47e7d4 2021-06-24 op wattr_on(window, body_face.right, NULL);
670 160abe04 2021-06-21 op for (i = 0; i < off; i++)
671 160abe04 2021-06-21 op waddch(window, ' ');
672 ab47e7d4 2021-06-24 op wattr_off(window, body_face.right, NULL);
673 f3bcf8f2 2021-06-21 op
674 1d08c280 2021-03-06 op }
675 1d08c280 2021-03-06 op
676 1d08c280 2021-03-06 op static void
677 8af5e5ed 2021-03-08 op redraw_tabline(void)
678 8af5e5ed 2021-03-08 op {
679 7c7d7bb7 2021-03-10 op struct tab *tab;
680 8f127baa 2021-04-22 op size_t toskip, ots, tabwidth, space, x;
681 8f127baa 2021-04-22 op int current, y, truncated;
682 dc5df781 2021-03-13 op const char *title;
683 119f393c 2021-03-16 op char buf[25];
684 7c7d7bb7 2021-03-10 op
685 923f9ce5 2021-06-21 op x = 0;
686 923f9ce5 2021-06-21 op
687 923f9ce5 2021-06-21 op /* unused, but setted by a getyx */
688 923f9ce5 2021-06-21 op (void)y;
689 923f9ce5 2021-06-21 op
690 8f127baa 2021-04-22 op tabwidth = sizeof(buf)+1;
691 8f127baa 2021-04-22 op space = COLS-2;
692 8f127baa 2021-04-22 op
693 a636f50e 2021-03-16 op toskip = 0;
694 a636f50e 2021-03-16 op TAILQ_FOREACH(tab, &tabshead, tabs) {
695 a636f50e 2021-03-16 op toskip++;
696 a636f50e 2021-03-16 op if (tab->flags & TAB_CURRENT)
697 a636f50e 2021-03-16 op break;
698 a636f50e 2021-03-16 op }
699 8f127baa 2021-04-22 op
700 8f127baa 2021-04-22 op if (toskip * tabwidth < space)
701 8f127baa 2021-04-22 op toskip = 0;
702 8f127baa 2021-04-22 op else {
703 8f127baa 2021-04-22 op ots = toskip;
704 a636f50e 2021-03-16 op toskip--;
705 8f127baa 2021-04-22 op while (toskip != 0 &&
706 8f127baa 2021-04-22 op (ots - toskip+1) * tabwidth < space)
707 8f127baa 2021-04-22 op toskip--;
708 8f127baa 2021-04-22 op }
709 7c7d7bb7 2021-03-10 op
710 a636f50e 2021-03-16 op werase(tabline);
711 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.background, NULL);
712 a636f50e 2021-03-16 op wprintw(tabline, toskip == 0 ? " " : "<");
713 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.background, NULL);
714 a636f50e 2021-03-16 op
715 a636f50e 2021-03-16 op truncated = 0;
716 7c7d7bb7 2021-03-10 op TAILQ_FOREACH(tab, &tabshead, tabs) {
717 a636f50e 2021-03-16 op if (truncated)
718 a636f50e 2021-03-16 op break;
719 a636f50e 2021-03-16 op if (toskip != 0) {
720 a636f50e 2021-03-16 op toskip--;
721 a636f50e 2021-03-16 op continue;
722 a636f50e 2021-03-16 op }
723 a636f50e 2021-03-16 op
724 a636f50e 2021-03-16 op getyx(tabline, y, x);
725 a636f50e 2021-03-16 op if (x + sizeof(buf)+2 >= (size_t)COLS)
726 a636f50e 2021-03-16 op truncated = 1;
727 a636f50e 2021-03-16 op
728 7c7d7bb7 2021-03-10 op current = tab->flags & TAB_CURRENT;
729 a329982b 2021-03-11 op
730 46f6e974 2021-05-17 op if (*(title = tab->buffer.page.title) == '\0')
731 2051e653 2021-03-13 op title = tab->hist_cur->h;
732 dc5df781 2021-03-13 op
733 e8a76665 2021-05-12 op if (tab->flags & TAB_URGENT)
734 e8a76665 2021-05-12 op strlcpy(buf, "!", sizeof(buf));
735 e8a76665 2021-05-12 op else
736 e8a76665 2021-05-12 op strlcpy(buf, " ", sizeof(buf));
737 e8a76665 2021-05-12 op
738 119f393c 2021-03-16 op if (strlcat(buf, title, sizeof(buf)) >= sizeof(buf)) {
739 119f393c 2021-03-16 op /* truncation happens */
740 119f393c 2021-03-16 op strlcpy(&buf[sizeof(buf)-4], "...", 4);
741 119f393c 2021-03-16 op } else {
742 119f393c 2021-03-16 op /* pad with spaces */
743 119f393c 2021-03-16 op while (strlcat(buf, " ", sizeof(buf)) < sizeof(buf))
744 119f393c 2021-03-16 op /* nop */ ;
745 119f393c 2021-03-16 op }
746 a329982b 2021-03-11 op
747 a329982b 2021-03-11 op if (current)
748 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.current, NULL);
749 cb6c7aa0 2021-03-16 op else
750 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.tab, NULL);
751 119f393c 2021-03-16 op
752 119f393c 2021-03-16 op wprintw(tabline, "%s", buf);
753 119f393c 2021-03-16 op if (TAILQ_NEXT(tab, tabs) != NULL)
754 119f393c 2021-03-16 op wprintw(tabline, " ");
755 cb6c7aa0 2021-03-16 op
756 cb6c7aa0 2021-03-16 op if (current)
757 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.current, NULL);
758 cb6c7aa0 2021-03-16 op else
759 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.tab, NULL);
760 7c7d7bb7 2021-03-10 op }
761 119f393c 2021-03-16 op
762 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.background, NULL);
763 8f127baa 2021-04-22 op for (; x < (size_t)COLS; ++x)
764 119f393c 2021-03-16 op waddch(tabline, ' ');
765 a636f50e 2021-03-16 op if (truncated)
766 a636f50e 2021-03-16 op mvwprintw(tabline, 0, COLS-1, ">");
767 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.background, NULL);
768 10346511 2021-03-17 op }
769 10346511 2021-03-17 op
770 bddc7bbd 2021-04-01 op static void
771 f3bcf8f2 2021-06-21 op redraw_window(WINDOW *win, int height, int width, struct buffer *buffer)
772 bddc7bbd 2021-04-01 op {
773 bddc7bbd 2021-04-01 op struct vline *vl;
774 bddc7bbd 2021-04-01 op int l;
775 a00b4c97 2021-06-20 op
776 a00b4c97 2021-06-20 op /*
777 a00b4c97 2021-06-20 op * Don't bother redraw the body if nothing changed. Cursor
778 a00b4c97 2021-06-20 op * movements count as "nothing changed" if it hasn't produced
779 a00b4c97 2021-06-20 op * a scroll. Ensure that wmove is called though!
780 a00b4c97 2021-06-20 op */
781 a00b4c97 2021-06-20 op if (!buffer->force_redraw &&
782 a00b4c97 2021-06-20 op buffer->last_line_off == buffer->line_off)
783 a00b4c97 2021-06-20 op goto end;
784 bddc7bbd 2021-04-01 op
785 bddc7bbd 2021-04-01 op werase(win);
786 bddc7bbd 2021-04-01 op
787 46f6e974 2021-05-17 op buffer->line_off = MIN(buffer->line_max-1, buffer->line_off);
788 a00b4c97 2021-06-20 op buffer->force_redraw = 0;
789 a00b4c97 2021-06-20 op buffer->last_line_off = buffer->line_off;
790 a00b4c97 2021-06-20 op
791 46f6e974 2021-05-17 op if (TAILQ_EMPTY(&buffer->head))
792 a00b4c97 2021-06-20 op goto end;
793 bddc7bbd 2021-04-01 op
794 bddc7bbd 2021-04-01 op l = 0;
795 46f6e974 2021-05-17 op vl = nth_line(buffer, buffer->line_off);
796 bddc7bbd 2021-04-01 op for (; vl != NULL; vl = TAILQ_NEXT(vl, vlines)) {
797 f3bcf8f2 2021-06-21 op wmove(win, l, 0);
798 f3bcf8f2 2021-06-21 op print_vline(x_offset, width, win, vl);
799 bddc7bbd 2021-04-01 op l++;
800 bddc7bbd 2021-04-01 op if (l == height)
801 bddc7bbd 2021-04-01 op break;
802 bddc7bbd 2021-04-01 op }
803 bddc7bbd 2021-04-01 op
804 a00b4c97 2021-06-20 op end:
805 46f6e974 2021-05-17 op wmove(win, buffer->curs_y, buffer->curs_x);
806 bddc7bbd 2021-04-01 op }
807 bddc7bbd 2021-04-01 op
808 bddc7bbd 2021-04-01 op static void
809 bddc7bbd 2021-04-01 op redraw_help(void)
810 bddc7bbd 2021-04-01 op {
811 f3bcf8f2 2021-06-21 op redraw_window(help, help_lines, help_cols, &helpwin);
812 bddc7bbd 2021-04-01 op }
813 bddc7bbd 2021-04-01 op
814 bddc7bbd 2021-04-01 op static void
815 bddc7bbd 2021-04-01 op redraw_body(struct tab *tab)
816 bddc7bbd 2021-04-01 op {
817 3323faaf 2021-06-21 op static struct tab *last_tab;
818 3323faaf 2021-06-21 op
819 3323faaf 2021-06-21 op if (last_tab != tab)
820 3323faaf 2021-06-21 op tab->buffer.force_redraw =1;
821 3323faaf 2021-06-21 op last_tab = tab;
822 3323faaf 2021-06-21 op
823 f3bcf8f2 2021-06-21 op redraw_window(body, body_lines, body_cols, &tab->buffer);
824 bddc7bbd 2021-04-01 op }
825 bddc7bbd 2021-04-01 op
826 10346511 2021-03-17 op static inline char
827 10346511 2021-03-17 op trust_status_char(enum trust_state ts)
828 10346511 2021-03-17 op {
829 10346511 2021-03-17 op switch (ts) {
830 10346511 2021-03-17 op case TS_UNKNOWN: return 'u';
831 10346511 2021-03-17 op case TS_UNTRUSTED: return '!';
832 10346511 2021-03-17 op case TS_TRUSTED: return 'v';
833 10346511 2021-03-17 op case TS_VERIFIED: return 'V';
834 923f9ce5 2021-06-21 op default: return 'X';
835 10346511 2021-03-17 op }
836 8af5e5ed 2021-03-08 op }
837 8af5e5ed 2021-03-08 op
838 8af5e5ed 2021-03-08 op static void
839 48e9d457 2021-03-06 op redraw_modeline(struct tab *tab)
840 1d08c280 2021-03-06 op {
841 481340cc 2021-03-11 op double pct;
842 48e9d457 2021-03-06 op int x, y, max_x, max_y;
843 46f6e974 2021-05-17 op const char *mode = tab->buffer.page.name;
844 8af5e5ed 2021-03-08 op const char *spin = "-\\|/";
845 1d08c280 2021-03-06 op
846 156f1501 2021-03-13 op werase(modeline);
847 ab47e7d4 2021-06-24 op wattr_on(modeline, modeline_face.background, NULL);
848 48e9d457 2021-03-06 op wmove(modeline, 0, 0);
849 1d08c280 2021-03-06 op
850 10346511 2021-03-17 op wprintw(modeline, "-%c%c %s ",
851 2ba66cea 2021-03-22 op spin[tab->loading_anim_step],
852 10346511 2021-03-17 op trust_status_char(tab->trust),
853 58c75fab 2021-03-16 op mode == NULL ? "(none)" : mode);
854 481340cc 2021-03-11 op
855 46f6e974 2021-05-17 op pct = (tab->buffer.line_off + tab->buffer.curs_y) * 100.0 / tab->buffer.line_max;
856 481340cc 2021-03-11 op
857 46f6e974 2021-05-17 op if (tab->buffer.line_max <= (size_t)body_lines)
858 481340cc 2021-03-11 op wprintw(modeline, "All ");
859 46f6e974 2021-05-17 op else if (tab->buffer.line_off == 0)
860 481340cc 2021-03-11 op wprintw(modeline, "Top ");
861 46f6e974 2021-05-17 op else if (tab->buffer.line_off + body_lines >= tab->buffer.line_max)
862 481340cc 2021-03-11 op wprintw(modeline, "Bottom ");
863 481340cc 2021-03-11 op else
864 481340cc 2021-03-11 op wprintw(modeline, "%.0f%% ", pct);
865 481340cc 2021-03-11 op
866 481340cc 2021-03-11 op wprintw(modeline, "%d/%d %s ",
867 46f6e974 2021-05-17 op tab->buffer.line_off + tab->buffer.curs_y,
868 46f6e974 2021-05-17 op tab->buffer.line_max,
869 2051e653 2021-03-13 op tab->hist_cur->h);
870 481340cc 2021-03-11 op
871 48e9d457 2021-03-06 op getyx(modeline, y, x);
872 48e9d457 2021-03-06 op getmaxyx(modeline, max_y, max_x);
873 48e9d457 2021-03-06 op
874 48e9d457 2021-03-06 op (void)y;
875 48e9d457 2021-03-06 op (void)max_y;
876 48e9d457 2021-03-06 op
877 48e9d457 2021-03-06 op for (; x < max_x; ++x)
878 48e9d457 2021-03-06 op waddstr(modeline, "-");
879 d5493194 2021-06-15 op
880 ab47e7d4 2021-06-24 op wattr_off(modeline, modeline_face.background, NULL);
881 9ca15951 2021-03-09 op }
882 9ca15951 2021-03-09 op
883 9ca15951 2021-03-09 op static void
884 9ca15951 2021-03-09 op redraw_minibuffer(void)
885 9ca15951 2021-03-09 op {
886 8300dd3c 2021-03-18 op struct tab *tab;
887 17e5106b 2021-03-21 op size_t off_y, off_x = 0;
888 923f9ce5 2021-06-21 op char *start = NULL, *c = NULL;
889 923f9ce5 2021-06-21 op
890 923f9ce5 2021-06-21 op /* unused, but set by getyx */
891 923f9ce5 2021-06-21 op (void)off_y;
892 9ca15951 2021-03-09 op
893 ab47e7d4 2021-06-24 op wattr_on(minibuf, minibuffer_face.background, NULL);
894 156f1501 2021-03-13 op werase(minibuf);
895 17e5106b 2021-03-21 op
896 22268e11 2021-03-11 op if (in_minibuffer) {
897 22268e11 2021-03-11 op mvwprintw(minibuf, 0, 0, "%s", ministate.prompt);
898 22268e11 2021-03-11 op if (ministate.hist_cur != NULL)
899 22268e11 2021-03-11 op wprintw(minibuf, "(%zu/%zu) ",
900 22268e11 2021-03-11 op ministate.hist_off + 1,
901 22268e11 2021-03-11 op ministate.history->len);
902 9ca15951 2021-03-09 op
903 22268e11 2021-03-11 op getyx(minibuf, off_y, off_x);
904 9cb0f9ce 2021-03-10 op
905 17e5106b 2021-03-21 op start = ministate.hist_cur != NULL
906 17e5106b 2021-03-21 op ? ministate.hist_cur->h
907 17e5106b 2021-03-21 op : ministate.buf;
908 46f6e974 2021-05-17 op c = utf8_nth(ministate.buffer.current_line->line,
909 46f6e974 2021-05-17 op ministate.buffer.cpoff);
910 2ba66cea 2021-03-22 op while (utf8_swidth_between(start, c) > (size_t)COLS/2) {
911 17e5106b 2021-03-21 op start = utf8_next_cp(start);
912 22268e11 2021-03-11 op }
913 9cb0f9ce 2021-03-10 op
914 17e5106b 2021-03-21 op waddstr(minibuf, start);
915 22268e11 2021-03-11 op }
916 9cb0f9ce 2021-03-10 op
917 17e5106b 2021-03-21 op if (ministate.curmesg != NULL)
918 17e5106b 2021-03-21 op wprintw(minibuf, in_minibuffer ? " [%s]" : "%s",
919 17e5106b 2021-03-21 op ministate.curmesg);
920 9cb0f9ce 2021-03-10 op
921 91a72220 2021-03-13 op if (!in_minibuffer && ministate.curmesg == NULL)
922 17e5106b 2021-03-21 op waddstr(minibuf, keybuf);
923 8300dd3c 2021-03-18 op
924 8300dd3c 2021-03-18 op /* If nothing else, show the URL at point */
925 8300dd3c 2021-03-18 op if (!in_minibuffer && ministate.curmesg == NULL && *keybuf == '\0') {
926 8300dd3c 2021-03-18 op tab = current_tab();
927 46f6e974 2021-05-17 op if (tab->buffer.current_line != NULL &&
928 46f6e974 2021-05-17 op tab->buffer.current_line->parent->type == LINE_LINK)
929 46f6e974 2021-05-17 op waddstr(minibuf, tab->buffer.current_line->parent->alt);
930 8300dd3c 2021-03-18 op }
931 91a72220 2021-03-13 op
932 2aaf475e 2021-03-13 op if (in_minibuffer)
933 2ba66cea 2021-03-22 op wmove(minibuf, 0, off_x + utf8_swidth_between(start, c));
934 d5493194 2021-06-15 op
935 ab47e7d4 2021-06-24 op wattr_off(minibuf, minibuffer_face.background, NULL);
936 48e9d457 2021-03-06 op }
937 48e9d457 2021-03-06 op
938 48e9d457 2021-03-06 op static void
939 48e9d457 2021-03-06 op redraw_tab(struct tab *tab)
940 48e9d457 2021-03-06 op {
941 bddc7bbd 2021-04-01 op if (side_window) {
942 bddc7bbd 2021-04-01 op redraw_help();
943 bddc7bbd 2021-04-01 op wnoutrefresh(help);
944 bddc7bbd 2021-04-01 op }
945 72b18268 2021-06-19 op
946 72b18268 2021-06-19 op restore_cursor(&tab->buffer);
947 bddc7bbd 2021-04-01 op
948 e19f9a04 2021-03-11 op redraw_tabline();
949 e19f9a04 2021-03-11 op redraw_body(tab);
950 e19f9a04 2021-03-11 op redraw_modeline(tab);
951 e19f9a04 2021-03-11 op redraw_minibuffer();
952 e19f9a04 2021-03-11 op
953 bddc7bbd 2021-04-01 op wnoutrefresh(tabline);
954 bddc7bbd 2021-04-01 op wnoutrefresh(modeline);
955 e19f9a04 2021-03-11 op
956 e19f9a04 2021-03-11 op if (in_minibuffer) {
957 bddc7bbd 2021-04-01 op wnoutrefresh(body);
958 bddc7bbd 2021-04-01 op wnoutrefresh(minibuf);
959 e19f9a04 2021-03-11 op } else {
960 bddc7bbd 2021-04-01 op wnoutrefresh(minibuf);
961 bddc7bbd 2021-04-01 op wnoutrefresh(body);
962 e19f9a04 2021-03-11 op }
963 bddc7bbd 2021-04-01 op
964 bddc7bbd 2021-04-01 op doupdate();
965 e19f9a04 2021-03-11 op }
966 e19f9a04 2021-03-11 op
967 e19f9a04 2021-03-11 op static void
968 bddc7bbd 2021-04-01 op emit_help_item(char *prfx, void *fn)
969 e19f9a04 2021-03-11 op {
970 bddc7bbd 2021-04-01 op struct line *l;
971 a3666ed5 2021-06-25 op struct cmd *cmd;
972 48e9d457 2021-03-06 op
973 bddc7bbd 2021-04-01 op for (cmd = cmds; cmd->cmd != NULL; ++cmd) {
974 bddc7bbd 2021-04-01 op if (fn == cmd->fn)
975 bddc7bbd 2021-04-01 op break;
976 bddc7bbd 2021-04-01 op }
977 bddc7bbd 2021-04-01 op assert(cmd != NULL);
978 48e9d457 2021-03-06 op
979 bddc7bbd 2021-04-01 op if ((l = calloc(1, sizeof(*l))) == NULL)
980 bddc7bbd 2021-04-01 op abort();
981 48e9d457 2021-03-06 op
982 bddc7bbd 2021-04-01 op l->type = LINE_TEXT;
983 bddc7bbd 2021-04-01 op l->alt = NULL;
984 bddc7bbd 2021-04-01 op
985 bddc7bbd 2021-04-01 op asprintf(&l->line, "%s %s", prfx, cmd->cmd);
986 bddc7bbd 2021-04-01 op
987 bddc7bbd 2021-04-01 op if (TAILQ_EMPTY(&helpwin.page.head))
988 bddc7bbd 2021-04-01 op TAILQ_INSERT_HEAD(&helpwin.page.head, l, lines);
989 bddc7bbd 2021-04-01 op else
990 bddc7bbd 2021-04-01 op TAILQ_INSERT_TAIL(&helpwin.page.head, l, lines);
991 bddc7bbd 2021-04-01 op }
992 bddc7bbd 2021-04-01 op
993 bddc7bbd 2021-04-01 op static void
994 bddc7bbd 2021-04-01 op rec_compute_help(struct kmap *keymap, char *prfx, size_t len)
995 bddc7bbd 2021-04-01 op {
996 bddc7bbd 2021-04-01 op struct keymap *k;
997 bddc7bbd 2021-04-01 op char p[32];
998 bddc7bbd 2021-04-01 op const char *kn;
999 bddc7bbd 2021-04-01 op
1000 bddc7bbd 2021-04-01 op TAILQ_FOREACH(k, &keymap->m, keymaps) {
1001 bddc7bbd 2021-04-01 op strlcpy(p, prfx, sizeof(p));
1002 bddc7bbd 2021-04-01 op if (*p != '\0')
1003 bddc7bbd 2021-04-01 op strlcat(p, " ", sizeof(p));
1004 bddc7bbd 2021-04-01 op if (k->meta)
1005 bddc7bbd 2021-04-01 op strlcat(p, "M-", sizeof(p));
1006 bddc7bbd 2021-04-01 op if ((kn = unkbd(k->key)) != NULL)
1007 bddc7bbd 2021-04-01 op strlcat(p, kn, sizeof(p));
1008 bddc7bbd 2021-04-01 op else
1009 bddc7bbd 2021-04-01 op strlcat(p, keyname(k->key), sizeof(p));
1010 bddc7bbd 2021-04-01 op
1011 bddc7bbd 2021-04-01 op if (k->fn == NULL)
1012 bddc7bbd 2021-04-01 op rec_compute_help(&k->map, p, sizeof(p));
1013 bddc7bbd 2021-04-01 op else
1014 bddc7bbd 2021-04-01 op emit_help_item(p, k->fn);
1015 9ca15951 2021-03-09 op }
1016 bddc7bbd 2021-04-01 op }
1017 174b3cdf 2021-03-21 op
1018 bddc7bbd 2021-04-01 op static void
1019 bddc7bbd 2021-04-01 op recompute_help(void)
1020 bddc7bbd 2021-04-01 op {
1021 bddc7bbd 2021-04-01 op char p[32] = { 0 };
1022 bddc7bbd 2021-04-01 op
1023 bddc7bbd 2021-04-01 op empty_vlist(&helpwin);
1024 bddc7bbd 2021-04-01 op empty_linelist(&helpwin);
1025 bddc7bbd 2021-04-01 op rec_compute_help(current_map, p, sizeof(p));
1026 bddc7bbd 2021-04-01 op wrap_page(&helpwin, help_cols);
1027 7953dd72 2021-03-07 op }
1028 7953dd72 2021-03-07 op
1029 7f963c41 2021-06-20 op void
1030 740f578b 2021-03-15 op vmessage(const char *fmt, va_list ap)
1031 7953dd72 2021-03-07 op {
1032 e0e26735 2021-03-16 op if (evtimer_pending(&clminibufev, NULL))
1033 7953dd72 2021-03-07 op evtimer_del(&clminibufev);
1034 bf992581 2021-03-12 op
1035 bf992581 2021-03-12 op free(ministate.curmesg);
1036 2b2d2872 2021-06-20 op ministate.curmesg = NULL;
1037 7953dd72 2021-03-07 op
1038 2b2d2872 2021-06-20 op if (fmt != NULL) {
1039 2b2d2872 2021-06-20 op evtimer_set(&clminibufev, handle_clear_minibuf, NULL);
1040 2b2d2872 2021-06-20 op evtimer_add(&clminibufev, &clminibufev_timer);
1041 9cb0f9ce 2021-03-10 op
1042 2b2d2872 2021-06-20 op /* TODO: what to do if the allocation fails here? */
1043 2b2d2872 2021-06-20 op if (vasprintf(&ministate.curmesg, fmt, ap) == -1)
1044 2b2d2872 2021-06-20 op ministate.curmesg = NULL;
1045 2b2d2872 2021-06-20 op }
1046 2b2d2872 2021-06-20 op
1047 9cb0f9ce 2021-03-10 op redraw_minibuffer();
1048 9cb0f9ce 2021-03-10 op if (in_minibuffer) {
1049 9cb0f9ce 2021-03-10 op wrefresh(body);
1050 9cb0f9ce 2021-03-10 op wrefresh(minibuf);
1051 9cb0f9ce 2021-03-10 op } else {
1052 9cb0f9ce 2021-03-10 op wrefresh(minibuf);
1053 9cb0f9ce 2021-03-10 op wrefresh(body);
1054 9cb0f9ce 2021-03-10 op }
1055 bcb0b073 2021-03-07 op }
1056 bcb0b073 2021-03-07 op
1057 7f963c41 2021-06-20 op void
1058 740f578b 2021-03-15 op message(const char *fmt, ...)
1059 740f578b 2021-03-15 op {
1060 740f578b 2021-03-15 op va_list ap;
1061 740f578b 2021-03-15 op
1062 740f578b 2021-03-15 op va_start(ap, fmt);
1063 740f578b 2021-03-15 op vmessage(fmt, ap);
1064 740f578b 2021-03-15 op va_end(ap);
1065 740f578b 2021-03-15 op }
1066 740f578b 2021-03-15 op
1067 2b2d2872 2021-06-20 op void
1068 8af5e5ed 2021-03-08 op start_loading_anim(struct tab *tab)
1069 8af5e5ed 2021-03-08 op {
1070 2ba66cea 2021-03-22 op if (tab->loading_anim)
1071 8af5e5ed 2021-03-08 op return;
1072 2ba66cea 2021-03-22 op tab->loading_anim = 1;
1073 2ba66cea 2021-03-22 op evtimer_set(&tab->loadingev, update_loading_anim, tab);
1074 2ba66cea 2021-03-22 op evtimer_add(&tab->loadingev, &loadingev_timer);
1075 8af5e5ed 2021-03-08 op }
1076 8af5e5ed 2021-03-08 op
1077 8af5e5ed 2021-03-08 op static void
1078 8af5e5ed 2021-03-08 op update_loading_anim(int fd, short ev, void *d)
1079 8af5e5ed 2021-03-08 op {
1080 8af5e5ed 2021-03-08 op struct tab *tab = d;
1081 8af5e5ed 2021-03-08 op
1082 2ba66cea 2021-03-22 op tab->loading_anim_step = (tab->loading_anim_step+1)%4;
1083 9ca15951 2021-03-09 op
1084 6347dcd0 2021-03-16 op if (tab->flags & TAB_CURRENT) {
1085 6347dcd0 2021-03-16 op redraw_modeline(tab);
1086 6347dcd0 2021-03-16 op wrefresh(modeline);
1087 6347dcd0 2021-03-16 op wrefresh(body);
1088 6347dcd0 2021-03-16 op if (in_minibuffer)
1089 6347dcd0 2021-03-16 op wrefresh(minibuf);
1090 6347dcd0 2021-03-16 op }
1091 8af5e5ed 2021-03-08 op
1092 2ba66cea 2021-03-22 op evtimer_add(&tab->loadingev, &loadingev_timer);
1093 8af5e5ed 2021-03-08 op }
1094 8af5e5ed 2021-03-08 op
1095 8af5e5ed 2021-03-08 op static void
1096 8af5e5ed 2021-03-08 op stop_loading_anim(struct tab *tab)
1097 8af5e5ed 2021-03-08 op {
1098 2ba66cea 2021-03-22 op if (!tab->loading_anim)
1099 8af5e5ed 2021-03-08 op return;
1100 2ba66cea 2021-03-22 op evtimer_del(&tab->loadingev);
1101 2ba66cea 2021-03-22 op tab->loading_anim = 0;
1102 2ba66cea 2021-03-22 op tab->loading_anim_step = 0;
1103 3d8c2326 2021-03-18 op
1104 3d8c2326 2021-03-18 op if (!(tab->flags & TAB_CURRENT))
1105 3d8c2326 2021-03-18 op return;
1106 43a1b8d0 2021-03-09 op
1107 43a1b8d0 2021-03-09 op redraw_modeline(tab);
1108 9ca15951 2021-03-09 op
1109 43a1b8d0 2021-03-09 op wrefresh(modeline);
1110 43a1b8d0 2021-03-09 op wrefresh(body);
1111 9ca15951 2021-03-09 op if (in_minibuffer)
1112 9ca15951 2021-03-09 op wrefresh(minibuf);
1113 8af5e5ed 2021-03-08 op }
1114 8af5e5ed 2021-03-08 op
1115 2b2d2872 2021-06-20 op void
1116 43a1b8d0 2021-03-09 op load_url_in_tab(struct tab *tab, const char *url)
1117 8af5e5ed 2021-03-08 op {
1118 8af5e5ed 2021-03-08 op message("Loading %s...", url);
1119 8af5e5ed 2021-03-08 op start_loading_anim(tab);
1120 8af5e5ed 2021-03-08 op load_url(tab, url);
1121 43a1b8d0 2021-03-09 op
1122 46f6e974 2021-05-17 op tab->buffer.curs_x = 0;
1123 46f6e974 2021-05-17 op tab->buffer.curs_y = 0;
1124 43a1b8d0 2021-03-09 op redraw_tab(tab);
1125 8af5e5ed 2021-03-08 op }
1126 8af5e5ed 2021-03-08 op
1127 2b2d2872 2021-06-20 op void
1128 b360ebb3 2021-03-10 op enter_minibuffer(void (*self_insert_fn)(void), void (*donefn)(void),
1129 3148eeac 2021-03-13 op void (*abortfn)(void), struct histhead *hist)
1130 9ca15951 2021-03-09 op {
1131 9ca15951 2021-03-09 op in_minibuffer = 1;
1132 fa3fd864 2021-03-10 op base_map = &minibuffer_map;
1133 fa3fd864 2021-03-10 op current_map = &minibuffer_map;
1134 9ca15951 2021-03-09 op
1135 fa3fd864 2021-03-10 op base_map->unhandled_input = self_insert_fn;
1136 b360ebb3 2021-03-10 op
1137 b360ebb3 2021-03-10 op ministate.donefn = donefn;
1138 b360ebb3 2021-03-10 op ministate.abortfn = abortfn;
1139 9ca15951 2021-03-09 op memset(ministate.buf, 0, sizeof(ministate.buf));
1140 46f6e974 2021-05-17 op ministate.buffer.current_line = &ministate.vline;
1141 46f6e974 2021-05-17 op ministate.buffer.current_line->line = ministate.buf;
1142 46f6e974 2021-05-17 op ministate.buffer.cpoff = 0;
1143 9ca15951 2021-03-09 op strlcpy(ministate.buf, "", sizeof(ministate.prompt));
1144 22268e11 2021-03-11 op
1145 22268e11 2021-03-11 op ministate.history = hist;
1146 22268e11 2021-03-11 op ministate.hist_cur = NULL;
1147 22268e11 2021-03-11 op ministate.hist_off = 0;
1148 9ca15951 2021-03-09 op }
1149 9ca15951 2021-03-09 op
1150 2b2d2872 2021-06-20 op void
1151 b360ebb3 2021-03-10 op exit_minibuffer(void)
1152 9ca15951 2021-03-09 op {
1153 156f1501 2021-03-13 op werase(minibuf);
1154 9ca15951 2021-03-09 op
1155 9ca15951 2021-03-09 op in_minibuffer = 0;
1156 9ca15951 2021-03-09 op base_map = &global_map;
1157 9ca15951 2021-03-09 op current_map = &global_map;
1158 9ca15951 2021-03-09 op }
1159 9ca15951 2021-03-09 op
1160 2b2d2872 2021-06-20 op void
1161 5cd2ebb1 2021-03-11 op switch_to_tab(struct tab *tab)
1162 5cd2ebb1 2021-03-11 op {
1163 5cd2ebb1 2021-03-11 op struct tab *t;
1164 5cd2ebb1 2021-03-11 op
1165 5cd2ebb1 2021-03-11 op TAILQ_FOREACH(t, &tabshead, tabs) {
1166 5cd2ebb1 2021-03-11 op t->flags &= ~TAB_CURRENT;
1167 5cd2ebb1 2021-03-11 op }
1168 5cd2ebb1 2021-03-11 op
1169 5cd2ebb1 2021-03-11 op tab->flags |= TAB_CURRENT;
1170 cf25a90f 2021-06-11 op tab->flags &= ~TAB_URGENT;
1171 2eef3403 2021-04-22 op }
1172 2eef3403 2021-04-22 op
1173 2eef3403 2021-04-22 op unsigned int
1174 2eef3403 2021-04-22 op tab_new_id(void)
1175 2eef3403 2021-04-22 op {
1176 2eef3403 2021-04-22 op return tab_counter++;
1177 5cd2ebb1 2021-03-11 op }
1178 5cd2ebb1 2021-03-11 op
1179 2b2d2872 2021-06-20 op struct tab *
1180 1b81bc33 2021-03-15 op new_tab(const char *url)
1181 bcb0b073 2021-03-07 op {
1182 754622a2 2021-03-15 op struct tab *tab;
1183 bcb0b073 2021-03-07 op
1184 71105afa 2021-03-16 op if ((tab = calloc(1, sizeof(*tab))) == NULL) {
1185 71105afa 2021-03-16 op event_loopbreak();
1186 71105afa 2021-03-16 op return NULL;
1187 71105afa 2021-03-16 op }
1188 de2a69bb 2021-05-17 op tab->fd = -1;
1189 bcb0b073 2021-03-07 op
1190 2051e653 2021-03-13 op TAILQ_INIT(&tab->hist.head);
1191 2051e653 2021-03-13 op
1192 46f6e974 2021-05-17 op TAILQ_INIT(&tab->buffer.head);
1193 bcb0b073 2021-03-07 op
1194 2eef3403 2021-04-22 op tab->id = tab_new_id();
1195 5cd2ebb1 2021-03-11 op switch_to_tab(tab);
1196 bcb0b073 2021-03-07 op
1197 bcb0b073 2021-03-07 op if (TAILQ_EMPTY(&tabshead))
1198 bcb0b073 2021-03-07 op TAILQ_INSERT_HEAD(&tabshead, tab, tabs);
1199 bcb0b073 2021-03-07 op else
1200 bcb0b073 2021-03-07 op TAILQ_INSERT_TAIL(&tabshead, tab, tabs);
1201 bcb0b073 2021-03-07 op
1202 43a1b8d0 2021-03-09 op load_url_in_tab(tab, url);
1203 b1df9b71 2021-03-12 op return tab;
1204 c7107cec 2021-04-01 op }
1205 c7107cec 2021-04-01 op
1206 c7107cec 2021-04-01 op static void
1207 c7107cec 2021-04-01 op session_new_tab_cb(const char *url)
1208 c7107cec 2021-04-01 op {
1209 c7107cec 2021-04-01 op new_tab(url);
1210 5e11c00c 2021-03-02 op }
1211 5e11c00c 2021-03-02 op
1212 941b3761 2021-03-18 op static void
1213 941b3761 2021-03-18 op usage(void)
1214 5e11c00c 2021-03-02 op {
1215 c92e529c 2021-06-15 op fprintf(stderr, "USAGE: %s [-hn] [-c config] [url]\n", getprogname());
1216 c92e529c 2021-06-15 op fprintf(stderr, "version: " PACKAGE " " VERSION "\n");
1217 941b3761 2021-03-18 op }
1218 941b3761 2021-03-18 op
1219 941b3761 2021-03-18 op int
1220 6cd6a9e1 2021-03-20 op ui_init(int argc, char * const *argv)
1221 941b3761 2021-03-18 op {
1222 c92e529c 2021-06-15 op char path[PATH_MAX];
1223 941b3761 2021-03-18 op const char *url = NEW_TAB_URL;
1224 c92e529c 2021-06-15 op int ch, configtest = 0, fonf = 0;
1225 c92e529c 2021-06-15 op
1226 74a2587f 2021-06-21 op if (getenv("NO_COLOR") != NULL)
1227 74a2587f 2021-06-21 op enable_colors = 0;
1228 74a2587f 2021-06-21 op
1229 c92e529c 2021-06-15 op strlcpy(path, getenv("HOME"), sizeof(path));
1230 c92e529c 2021-06-15 op strlcat(path, "/.telescope/config", sizeof(path));
1231 c92e529c 2021-06-15 op
1232 c92e529c 2021-06-15 op while ((ch = getopt(argc, argv, "c:hn")) != -1) {
1233 941b3761 2021-03-18 op switch (ch) {
1234 c92e529c 2021-06-15 op case 'c':
1235 c92e529c 2021-06-15 op fonf = 1;
1236 c92e529c 2021-06-15 op strlcpy(path, optarg, sizeof(path));
1237 c92e529c 2021-06-15 op break;
1238 c92e529c 2021-06-15 op case 'n':
1239 c92e529c 2021-06-15 op configtest = 1;
1240 c92e529c 2021-06-15 op break;
1241 c92e529c 2021-06-15 op case 'h':
1242 941b3761 2021-03-18 op usage();
1243 941b3761 2021-03-18 op return 0;
1244 c92e529c 2021-06-15 op default:
1245 c92e529c 2021-06-15 op usage();
1246 c92e529c 2021-06-15 op return 1;
1247 941b3761 2021-03-18 op }
1248 941b3761 2021-03-18 op }
1249 941b3761 2021-03-18 op argc -= optind;
1250 941b3761 2021-03-18 op argv += optind;
1251 e3427d18 2021-06-25 op
1252 e3427d18 2021-06-25 op /* setup keys before reading the config */
1253 e3427d18 2021-06-25 op TAILQ_INIT(&global_map.m);
1254 e3427d18 2021-06-25 op global_map.unhandled_input = global_key_unbound;
1255 e3427d18 2021-06-25 op
1256 e3427d18 2021-06-25 op TAILQ_INIT(&minibuffer_map.m);
1257 e3427d18 2021-06-25 op
1258 33fc3a8f 2021-06-21 op config_init();
1259 c92e529c 2021-06-15 op parseconfig(path, fonf);
1260 c92e529c 2021-06-15 op if (configtest){
1261 c92e529c 2021-06-15 op puts("config OK");
1262 c92e529c 2021-06-15 op exit(0);
1263 c92e529c 2021-06-15 op }
1264 c92e529c 2021-06-15 op
1265 941b3761 2021-03-18 op if (argc != 0)
1266 941b3761 2021-03-18 op url = argv[0];
1267 941b3761 2021-03-18 op
1268 5e11c00c 2021-03-02 op setlocale(LC_ALL, "");
1269 5e11c00c 2021-03-02 op
1270 22268e11 2021-03-11 op TAILQ_INIT(&eecmd_history.head);
1271 22268e11 2021-03-11 op TAILQ_INIT(&ir_history.head);
1272 22268e11 2021-03-11 op TAILQ_INIT(&lu_history.head);
1273 22268e11 2021-03-11 op
1274 2ba66cea 2021-03-22 op ministate.line.type = LINE_TEXT;
1275 2ba66cea 2021-03-22 op ministate.vline.parent = &ministate.line;
1276 46f6e974 2021-05-17 op ministate.buffer.current_line = &ministate.vline;
1277 2ba66cea 2021-03-22 op
1278 bddc7bbd 2021-04-01 op /* initialize help window */
1279 bddc7bbd 2021-04-01 op TAILQ_INIT(&helpwin.head);
1280 bddc7bbd 2021-04-01 op
1281 9ca15951 2021-03-09 op base_map = &global_map;
1282 f832146f 2021-03-09 op current_map = &global_map;
1283 f832146f 2021-03-09 op
1284 5e11c00c 2021-03-02 op initscr();
1285 74a2587f 2021-06-21 op
1286 74a2587f 2021-06-21 op if (enable_colors) {
1287 74a2587f 2021-06-21 op if (has_colors()) {
1288 74a2587f 2021-06-21 op start_color();
1289 160abe04 2021-06-21 op use_default_colors();
1290 f3bcf8f2 2021-06-21 op } else
1291 74a2587f 2021-06-21 op enable_colors = 0;
1292 f3bcf8f2 2021-06-21 op }
1293 74a2587f 2021-06-21 op
1294 42d61f50 2021-06-24 op config_apply_style();
1295 42d61f50 2021-06-24 op
1296 15e1b108 2021-03-02 op raw();
1297 5e11c00c 2021-03-02 op noecho();
1298 5e11c00c 2021-03-02 op nonl();
1299 5e11c00c 2021-03-02 op intrflush(stdscr, FALSE);
1300 5e11c00c 2021-03-02 op
1301 48e9d457 2021-03-06 op if ((tabline = newwin(1, COLS, 0, 0)) == NULL)
1302 48e9d457 2021-03-06 op return 0;
1303 48e9d457 2021-03-06 op if ((body = newwin(LINES - 3, COLS, 1, 0)) == NULL)
1304 48e9d457 2021-03-06 op return 0;
1305 48e9d457 2021-03-06 op if ((modeline = newwin(1, COLS, LINES-2, 0)) == NULL)
1306 48e9d457 2021-03-06 op return 0;
1307 48e9d457 2021-03-06 op if ((minibuf = newwin(1, COLS, LINES-1, 0)) == NULL)
1308 48e9d457 2021-03-06 op return 0;
1309 bddc7bbd 2021-04-01 op if ((help = newwin(1, 1, 1, 0)) == NULL)
1310 bddc7bbd 2021-04-01 op return 0;
1311 1d08c280 2021-03-06 op
1312 48e9d457 2021-03-06 op body_lines = LINES-3;
1313 48e9d457 2021-03-06 op body_cols = COLS;
1314 33d904b6 2021-06-22 op
1315 b598590d 2021-06-21 op wbkgd(body, body_face.body);
1316 24221637 2021-06-25 op wbkgd(minibuf, minibuffer_face.background);
1317 72b18268 2021-06-19 op
1318 72b18268 2021-06-19 op update_x_offset();
1319 48e9d457 2021-03-06 op
1320 43a1b8d0 2021-03-09 op keypad(body, TRUE);
1321 f3bcf8f2 2021-06-21 op scrollok(body, FALSE);
1322 48e9d457 2021-03-06 op
1323 5e11c00c 2021-03-02 op /* non-blocking input */
1324 48e9d457 2021-03-06 op wtimeout(body, 0);
1325 5e11c00c 2021-03-02 op
1326 48e9d457 2021-03-06 op mvwprintw(body, 0, 0, "");
1327 5e11c00c 2021-03-02 op
1328 5e11c00c 2021-03-02 op event_set(&stdioev, 0, EV_READ | EV_PERSIST, dispatch_stdio, NULL);
1329 5e11c00c 2021-03-02 op event_add(&stdioev, NULL);
1330 5e11c00c 2021-03-02 op
1331 5e11c00c 2021-03-02 op signal_set(&winchev, SIGWINCH, handle_resize, NULL);
1332 5e11c00c 2021-03-02 op signal_add(&winchev, NULL);
1333 5e11c00c 2021-03-02 op
1334 c7107cec 2021-04-01 op load_last_session(session_new_tab_cb);
1335 c7107cec 2021-04-01 op if (strcmp(url, NEW_TAB_URL) || TAILQ_EMPTY(&tabshead))
1336 c7107cec 2021-04-01 op new_tab(url);
1337 5e11c00c 2021-03-02 op
1338 1d08c280 2021-03-06 op return 1;
1339 5e11c00c 2021-03-02 op }
1340 5e11c00c 2021-03-02 op
1341 5e11c00c 2021-03-02 op void
1342 8af5e5ed 2021-03-08 op ui_on_tab_loaded(struct tab *tab)
1343 8af5e5ed 2021-03-08 op {
1344 8af5e5ed 2021-03-08 op stop_loading_anim(tab);
1345 2051e653 2021-03-13 op message("Loaded %s", tab->hist_cur->h);
1346 3d8c2326 2021-03-18 op
1347 3d8c2326 2021-03-18 op redraw_tabline();
1348 3d8c2326 2021-03-18 op wrefresh(tabline);
1349 3d8c2326 2021-03-18 op if (in_minibuffer)
1350 3d8c2326 2021-03-18 op wrefresh(minibuf);
1351 3d8c2326 2021-03-18 op else
1352 3d8c2326 2021-03-18 op wrefresh(body);
1353 8af5e5ed 2021-03-08 op }
1354 8af5e5ed 2021-03-08 op
1355 8af5e5ed 2021-03-08 op void
1356 5e11c00c 2021-03-02 op ui_on_tab_refresh(struct tab *tab)
1357 5e11c00c 2021-03-02 op {
1358 46f6e974 2021-05-17 op wrap_page(&tab->buffer, body_cols);
1359 3e433958 2021-03-21 op if (tab->flags & TAB_CURRENT) {
1360 46f6e974 2021-05-17 op restore_cursor(&tab->buffer);
1361 3d8c2326 2021-03-18 op redraw_tab(tab);
1362 e8a76665 2021-05-12 op } else
1363 e8a76665 2021-05-12 op tab->flags |= TAB_URGENT;
1364 5e11c00c 2021-03-02 op }
1365 5e11c00c 2021-03-02 op
1366 2b2d2872 2021-06-20 op const char *
1367 2b2d2872 2021-06-20 op ui_keyname(int k)
1368 2b2d2872 2021-06-20 op {
1369 2b2d2872 2021-06-20 op return keyname(k);
1370 2b2d2872 2021-06-20 op }
1371 2b2d2872 2021-06-20 op
1372 5e11c00c 2021-03-02 op void
1373 2b2d2872 2021-06-20 op ui_toggle_side_window(void)
1374 2b2d2872 2021-06-20 op {
1375 2b2d2872 2021-06-20 op side_window = !side_window;
1376 2b2d2872 2021-06-20 op if (side_window)
1377 2b2d2872 2021-06-20 op recompute_help();
1378 960b01da 2021-06-20 op
1379 960b01da 2021-06-20 op /*
1380 960b01da 2021-06-20 op * ugly hack, but otherwise the window doesn't get updated
1381 960b01da 2021-06-20 op * until I call handle_resize a second time (i.e. C-l). I
1382 960b01da 2021-06-20 op * will be happy to know why something like this is needed.
1383 960b01da 2021-06-20 op */
1384 960b01da 2021-06-20 op handle_resize_nodelay(0, 0, NULL);
1385 960b01da 2021-06-20 op handle_resize_nodelay(0, 0, NULL);
1386 2b2d2872 2021-06-20 op }
1387 2b2d2872 2021-06-20 op
1388 2b2d2872 2021-06-20 op void
1389 2b2d2872 2021-06-20 op ui_schedule_redraw(void)
1390 2b2d2872 2021-06-20 op {
1391 2b2d2872 2021-06-20 op handle_resize_nodelay(0, 0, NULL);
1392 2b2d2872 2021-06-20 op }
1393 2b2d2872 2021-06-20 op
1394 2b2d2872 2021-06-20 op void
1395 5cd2ebb1 2021-03-11 op ui_require_input(struct tab *tab, int hide)
1396 5cd2ebb1 2021-03-11 op {
1397 5cd2ebb1 2021-03-11 op /* TODO: hard-switching to another tab is ugly */
1398 5cd2ebb1 2021-03-11 op switch_to_tab(tab);
1399 5cd2ebb1 2021-03-11 op
1400 22268e11 2021-03-11 op enter_minibuffer(ir_self_insert, ir_select, exit_minibuffer,
1401 22268e11 2021-03-11 op &ir_history);
1402 5cd2ebb1 2021-03-11 op strlcpy(ministate.prompt, "Input required: ",
1403 5cd2ebb1 2021-03-11 op sizeof(ministate.prompt));
1404 5cd2ebb1 2021-03-11 op redraw_tab(tab);
1405 5cd2ebb1 2021-03-11 op }
1406 5cd2ebb1 2021-03-11 op
1407 5cd2ebb1 2021-03-11 op void
1408 b3575139 2021-04-01 op ui_yornp(const char *prompt, void (*fn)(int, unsigned int),
1409 b3575139 2021-04-01 op unsigned int data)
1410 5d1bac73 2021-03-25 op {
1411 5d1bac73 2021-03-25 op size_t len;
1412 5d1bac73 2021-03-25 op
1413 6f66d9bf 2021-04-24 op if (in_minibuffer) {
1414 6f66d9bf 2021-04-24 op fn(0, data);
1415 6f66d9bf 2021-04-24 op return;
1416 6f66d9bf 2021-04-24 op }
1417 6f66d9bf 2021-04-24 op
1418 5d1bac73 2021-03-25 op yornp_cb = fn;
1419 e49ce157 2021-04-01 op yornp_data = data;
1420 5d1bac73 2021-03-25 op enter_minibuffer(yornp_self_insert, yornp_self_insert,
1421 5d1bac73 2021-03-25 op yornp_abort, NULL);
1422 5d1bac73 2021-03-25 op
1423 5d1bac73 2021-03-25 op len = sizeof(ministate.prompt);
1424 5d1bac73 2021-03-25 op strlcpy(ministate.prompt, prompt, len);
1425 5d1bac73 2021-03-25 op strlcat(ministate.prompt, " (y or n) ", len);
1426 5d1bac73 2021-03-25 op redraw_tab(current_tab());
1427 5d1bac73 2021-03-25 op }
1428 5d1bac73 2021-03-25 op
1429 5d1bac73 2021-03-25 op void
1430 de2a69bb 2021-05-17 op ui_read(const char *prompt, void (*fn)(const char*, unsigned int),
1431 de2a69bb 2021-05-17 op unsigned int data)
1432 de2a69bb 2021-05-17 op {
1433 de2a69bb 2021-05-17 op size_t len;
1434 de2a69bb 2021-05-17 op
1435 de2a69bb 2021-05-17 op if (in_minibuffer)
1436 de2a69bb 2021-05-17 op return;
1437 de2a69bb 2021-05-17 op
1438 de2a69bb 2021-05-17 op read_cb = fn;
1439 de2a69bb 2021-05-17 op read_data = data;
1440 de2a69bb 2021-05-17 op enter_minibuffer(read_self_insert, read_select, read_abort,
1441 de2a69bb 2021-05-17 op &read_history);
1442 de2a69bb 2021-05-17 op
1443 de2a69bb 2021-05-17 op len = sizeof(ministate.prompt);
1444 de2a69bb 2021-05-17 op strlcpy(ministate.prompt, prompt, len);
1445 de2a69bb 2021-05-17 op strlcat(ministate.prompt, ": ", len);
1446 de2a69bb 2021-05-17 op redraw_tab(current_tab());
1447 740f578b 2021-03-15 op }
1448 740f578b 2021-03-15 op
1449 740f578b 2021-03-15 op void
1450 5e11c00c 2021-03-02 op ui_end(void)
1451 5e11c00c 2021-03-02 op {
1452 5e11c00c 2021-03-02 op endwin();
1453 5e11c00c 2021-03-02 op }