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 94ec38e8 2021-06-29 op orig = buffer->current_line == NULL ? NULL : buffer->current_line->parent;
572 94ec38e8 2021-06-29 op
573 94ec38e8 2021-06-29 op buffer->top_line = NULL;
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 94ec38e8 2021-06-29 op buffer->top_line = buffer->current_line;
623 94ec38e8 2021-06-29 op
624 1d08c280 2021-03-06 op return 1;
625 1d08c280 2021-03-06 op }
626 5e11c00c 2021-03-02 op
627 754622a2 2021-03-15 op static void
628 f3bcf8f2 2021-06-21 op print_vline(int off, int width, WINDOW *window, struct vline *vl)
629 1d08c280 2021-03-06 op {
630 2af29222 2021-06-24 op const char *text;
631 768db5bb 2021-03-12 op const char *prfx;
632 2af29222 2021-06-24 op struct line_face *f;
633 f3bcf8f2 2021-06-21 op int i, left, x, y;
634 bd9637e9 2021-03-06 op
635 2af29222 2021-06-24 op f = &line_faces[vl->parent->type];
636 2af29222 2021-06-24 op
637 d89b86d6 2021-06-21 op /* unused, set by getyx */
638 f3bcf8f2 2021-06-21 op (void)y;
639 f3bcf8f2 2021-06-21 op
640 9a25f829 2021-03-14 op if (!vl->flags)
641 9a25f829 2021-03-14 op prfx = line_prefixes[vl->parent->type].prfx1;
642 768db5bb 2021-03-12 op else
643 9a25f829 2021-03-14 op prfx = line_prefixes[vl->parent->type].prfx2;
644 768db5bb 2021-03-12 op
645 2af29222 2021-06-24 op text = vl->line;
646 bd9637e9 2021-03-06 op if (text == NULL)
647 bd9637e9 2021-03-06 op text = "";
648 bd9637e9 2021-03-06 op
649 ab47e7d4 2021-06-24 op wattr_on(window, body_face.left, NULL);
650 f3bcf8f2 2021-06-21 op for (i = 0; i < off; i++)
651 f3bcf8f2 2021-06-21 op waddch(window, ' ');
652 ab47e7d4 2021-06-24 op wattr_off(window, body_face.left, NULL);
653 ab47e7d4 2021-06-24 op
654 2af29222 2021-06-24 op wattr_on(window, f->prefix, NULL);
655 bddc7bbd 2021-04-01 op wprintw(window, "%s", prfx);
656 2af29222 2021-06-24 op wattr_off(window, f->prefix, NULL);
657 803ff456 2021-03-17 op
658 2af29222 2021-06-24 op wattr_on(window, f->text, NULL);
659 bddc7bbd 2021-04-01 op wprintw(window, "%s", text);
660 2af29222 2021-06-24 op wattr_off(window, f->text, NULL);
661 f3bcf8f2 2021-06-21 op
662 f3bcf8f2 2021-06-21 op getyx(window, y, x);
663 f3bcf8f2 2021-06-21 op
664 f3bcf8f2 2021-06-21 op left = width - x;
665 f3bcf8f2 2021-06-21 op
666 2af29222 2021-06-24 op wattr_on(window, f->trail, NULL);
667 d89b86d6 2021-06-21 op for (i = 0; i < left - off - 1; ++i)
668 f3bcf8f2 2021-06-21 op waddch(window, ' ');
669 2af29222 2021-06-24 op wattr_off(window, f->trail, NULL);
670 160abe04 2021-06-21 op
671 ab47e7d4 2021-06-24 op wattr_on(window, body_face.right, NULL);
672 160abe04 2021-06-21 op for (i = 0; i < off; i++)
673 160abe04 2021-06-21 op waddch(window, ' ');
674 ab47e7d4 2021-06-24 op wattr_off(window, body_face.right, NULL);
675 f3bcf8f2 2021-06-21 op
676 1d08c280 2021-03-06 op }
677 1d08c280 2021-03-06 op
678 1d08c280 2021-03-06 op static void
679 8af5e5ed 2021-03-08 op redraw_tabline(void)
680 8af5e5ed 2021-03-08 op {
681 7c7d7bb7 2021-03-10 op struct tab *tab;
682 8f127baa 2021-04-22 op size_t toskip, ots, tabwidth, space, x;
683 8f127baa 2021-04-22 op int current, y, truncated;
684 dc5df781 2021-03-13 op const char *title;
685 119f393c 2021-03-16 op char buf[25];
686 7c7d7bb7 2021-03-10 op
687 923f9ce5 2021-06-21 op x = 0;
688 923f9ce5 2021-06-21 op
689 923f9ce5 2021-06-21 op /* unused, but setted by a getyx */
690 923f9ce5 2021-06-21 op (void)y;
691 923f9ce5 2021-06-21 op
692 8f127baa 2021-04-22 op tabwidth = sizeof(buf)+1;
693 8f127baa 2021-04-22 op space = COLS-2;
694 8f127baa 2021-04-22 op
695 a636f50e 2021-03-16 op toskip = 0;
696 a636f50e 2021-03-16 op TAILQ_FOREACH(tab, &tabshead, tabs) {
697 a636f50e 2021-03-16 op toskip++;
698 a636f50e 2021-03-16 op if (tab->flags & TAB_CURRENT)
699 a636f50e 2021-03-16 op break;
700 a636f50e 2021-03-16 op }
701 8f127baa 2021-04-22 op
702 8f127baa 2021-04-22 op if (toskip * tabwidth < space)
703 8f127baa 2021-04-22 op toskip = 0;
704 8f127baa 2021-04-22 op else {
705 8f127baa 2021-04-22 op ots = toskip;
706 a636f50e 2021-03-16 op toskip--;
707 8f127baa 2021-04-22 op while (toskip != 0 &&
708 8f127baa 2021-04-22 op (ots - toskip+1) * tabwidth < space)
709 8f127baa 2021-04-22 op toskip--;
710 8f127baa 2021-04-22 op }
711 7c7d7bb7 2021-03-10 op
712 a636f50e 2021-03-16 op werase(tabline);
713 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.background, NULL);
714 a636f50e 2021-03-16 op wprintw(tabline, toskip == 0 ? " " : "<");
715 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.background, NULL);
716 a636f50e 2021-03-16 op
717 a636f50e 2021-03-16 op truncated = 0;
718 7c7d7bb7 2021-03-10 op TAILQ_FOREACH(tab, &tabshead, tabs) {
719 a636f50e 2021-03-16 op if (truncated)
720 a636f50e 2021-03-16 op break;
721 a636f50e 2021-03-16 op if (toskip != 0) {
722 a636f50e 2021-03-16 op toskip--;
723 a636f50e 2021-03-16 op continue;
724 a636f50e 2021-03-16 op }
725 a636f50e 2021-03-16 op
726 a636f50e 2021-03-16 op getyx(tabline, y, x);
727 a636f50e 2021-03-16 op if (x + sizeof(buf)+2 >= (size_t)COLS)
728 a636f50e 2021-03-16 op truncated = 1;
729 a636f50e 2021-03-16 op
730 7c7d7bb7 2021-03-10 op current = tab->flags & TAB_CURRENT;
731 a329982b 2021-03-11 op
732 46f6e974 2021-05-17 op if (*(title = tab->buffer.page.title) == '\0')
733 2051e653 2021-03-13 op title = tab->hist_cur->h;
734 dc5df781 2021-03-13 op
735 e8a76665 2021-05-12 op if (tab->flags & TAB_URGENT)
736 e8a76665 2021-05-12 op strlcpy(buf, "!", sizeof(buf));
737 e8a76665 2021-05-12 op else
738 e8a76665 2021-05-12 op strlcpy(buf, " ", sizeof(buf));
739 e8a76665 2021-05-12 op
740 119f393c 2021-03-16 op if (strlcat(buf, title, sizeof(buf)) >= sizeof(buf)) {
741 119f393c 2021-03-16 op /* truncation happens */
742 119f393c 2021-03-16 op strlcpy(&buf[sizeof(buf)-4], "...", 4);
743 119f393c 2021-03-16 op } else {
744 119f393c 2021-03-16 op /* pad with spaces */
745 119f393c 2021-03-16 op while (strlcat(buf, " ", sizeof(buf)) < sizeof(buf))
746 119f393c 2021-03-16 op /* nop */ ;
747 119f393c 2021-03-16 op }
748 a329982b 2021-03-11 op
749 a329982b 2021-03-11 op if (current)
750 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.current, NULL);
751 cb6c7aa0 2021-03-16 op else
752 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.tab, NULL);
753 119f393c 2021-03-16 op
754 119f393c 2021-03-16 op wprintw(tabline, "%s", buf);
755 119f393c 2021-03-16 op if (TAILQ_NEXT(tab, tabs) != NULL)
756 119f393c 2021-03-16 op wprintw(tabline, " ");
757 cb6c7aa0 2021-03-16 op
758 cb6c7aa0 2021-03-16 op if (current)
759 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.current, NULL);
760 cb6c7aa0 2021-03-16 op else
761 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.tab, NULL);
762 7c7d7bb7 2021-03-10 op }
763 119f393c 2021-03-16 op
764 ab47e7d4 2021-06-24 op wattr_on(tabline, tab_face.background, NULL);
765 8f127baa 2021-04-22 op for (; x < (size_t)COLS; ++x)
766 119f393c 2021-03-16 op waddch(tabline, ' ');
767 a636f50e 2021-03-16 op if (truncated)
768 a636f50e 2021-03-16 op mvwprintw(tabline, 0, COLS-1, ">");
769 ab47e7d4 2021-06-24 op wattr_off(tabline, tab_face.background, NULL);
770 10346511 2021-03-17 op }
771 10346511 2021-03-17 op
772 bddc7bbd 2021-04-01 op static void
773 f3bcf8f2 2021-06-21 op redraw_window(WINDOW *win, int height, int width, struct buffer *buffer)
774 bddc7bbd 2021-04-01 op {
775 bddc7bbd 2021-04-01 op struct vline *vl;
776 bddc7bbd 2021-04-01 op int l;
777 a00b4c97 2021-06-20 op
778 a00b4c97 2021-06-20 op /*
779 a00b4c97 2021-06-20 op * Don't bother redraw the body if nothing changed. Cursor
780 a00b4c97 2021-06-20 op * movements count as "nothing changed" if it hasn't produced
781 a00b4c97 2021-06-20 op * a scroll. Ensure that wmove is called though!
782 a00b4c97 2021-06-20 op */
783 a00b4c97 2021-06-20 op if (!buffer->force_redraw &&
784 a00b4c97 2021-06-20 op buffer->last_line_off == buffer->line_off)
785 a00b4c97 2021-06-20 op goto end;
786 bddc7bbd 2021-04-01 op
787 bddc7bbd 2021-04-01 op werase(win);
788 bddc7bbd 2021-04-01 op
789 46f6e974 2021-05-17 op buffer->line_off = MIN(buffer->line_max-1, buffer->line_off);
790 a00b4c97 2021-06-20 op buffer->force_redraw = 0;
791 a00b4c97 2021-06-20 op buffer->last_line_off = buffer->line_off;
792 a00b4c97 2021-06-20 op
793 46f6e974 2021-05-17 op if (TAILQ_EMPTY(&buffer->head))
794 a00b4c97 2021-06-20 op goto end;
795 bddc7bbd 2021-04-01 op
796 bddc7bbd 2021-04-01 op l = 0;
797 94ec38e8 2021-06-29 op for (vl = buffer->top_line; vl != NULL; vl = TAILQ_NEXT(vl, vlines)) {
798 f3bcf8f2 2021-06-21 op wmove(win, l, 0);
799 f3bcf8f2 2021-06-21 op print_vline(x_offset, width, win, vl);
800 bddc7bbd 2021-04-01 op l++;
801 bddc7bbd 2021-04-01 op if (l == height)
802 bddc7bbd 2021-04-01 op break;
803 bddc7bbd 2021-04-01 op }
804 bddc7bbd 2021-04-01 op
805 a00b4c97 2021-06-20 op end:
806 46f6e974 2021-05-17 op wmove(win, buffer->curs_y, buffer->curs_x);
807 bddc7bbd 2021-04-01 op }
808 bddc7bbd 2021-04-01 op
809 bddc7bbd 2021-04-01 op static void
810 bddc7bbd 2021-04-01 op redraw_help(void)
811 bddc7bbd 2021-04-01 op {
812 f3bcf8f2 2021-06-21 op redraw_window(help, help_lines, help_cols, &helpwin);
813 bddc7bbd 2021-04-01 op }
814 bddc7bbd 2021-04-01 op
815 bddc7bbd 2021-04-01 op static void
816 bddc7bbd 2021-04-01 op redraw_body(struct tab *tab)
817 bddc7bbd 2021-04-01 op {
818 3323faaf 2021-06-21 op static struct tab *last_tab;
819 3323faaf 2021-06-21 op
820 3323faaf 2021-06-21 op if (last_tab != tab)
821 3323faaf 2021-06-21 op tab->buffer.force_redraw =1;
822 3323faaf 2021-06-21 op last_tab = tab;
823 3323faaf 2021-06-21 op
824 f3bcf8f2 2021-06-21 op redraw_window(body, body_lines, body_cols, &tab->buffer);
825 bddc7bbd 2021-04-01 op }
826 bddc7bbd 2021-04-01 op
827 10346511 2021-03-17 op static inline char
828 10346511 2021-03-17 op trust_status_char(enum trust_state ts)
829 10346511 2021-03-17 op {
830 10346511 2021-03-17 op switch (ts) {
831 10346511 2021-03-17 op case TS_UNKNOWN: return 'u';
832 10346511 2021-03-17 op case TS_UNTRUSTED: return '!';
833 10346511 2021-03-17 op case TS_TRUSTED: return 'v';
834 10346511 2021-03-17 op case TS_VERIFIED: return 'V';
835 923f9ce5 2021-06-21 op default: return 'X';
836 10346511 2021-03-17 op }
837 8af5e5ed 2021-03-08 op }
838 8af5e5ed 2021-03-08 op
839 8af5e5ed 2021-03-08 op static void
840 48e9d457 2021-03-06 op redraw_modeline(struct tab *tab)
841 1d08c280 2021-03-06 op {
842 481340cc 2021-03-11 op double pct;
843 48e9d457 2021-03-06 op int x, y, max_x, max_y;
844 46f6e974 2021-05-17 op const char *mode = tab->buffer.page.name;
845 8af5e5ed 2021-03-08 op const char *spin = "-\\|/";
846 1d08c280 2021-03-06 op
847 156f1501 2021-03-13 op werase(modeline);
848 ab47e7d4 2021-06-24 op wattr_on(modeline, modeline_face.background, NULL);
849 48e9d457 2021-03-06 op wmove(modeline, 0, 0);
850 1d08c280 2021-03-06 op
851 10346511 2021-03-17 op wprintw(modeline, "-%c%c %s ",
852 2ba66cea 2021-03-22 op spin[tab->loading_anim_step],
853 10346511 2021-03-17 op trust_status_char(tab->trust),
854 58c75fab 2021-03-16 op mode == NULL ? "(none)" : mode);
855 481340cc 2021-03-11 op
856 46f6e974 2021-05-17 op pct = (tab->buffer.line_off + tab->buffer.curs_y) * 100.0 / tab->buffer.line_max;
857 481340cc 2021-03-11 op
858 46f6e974 2021-05-17 op if (tab->buffer.line_max <= (size_t)body_lines)
859 481340cc 2021-03-11 op wprintw(modeline, "All ");
860 46f6e974 2021-05-17 op else if (tab->buffer.line_off == 0)
861 481340cc 2021-03-11 op wprintw(modeline, "Top ");
862 46f6e974 2021-05-17 op else if (tab->buffer.line_off + body_lines >= tab->buffer.line_max)
863 481340cc 2021-03-11 op wprintw(modeline, "Bottom ");
864 481340cc 2021-03-11 op else
865 481340cc 2021-03-11 op wprintw(modeline, "%.0f%% ", pct);
866 481340cc 2021-03-11 op
867 481340cc 2021-03-11 op wprintw(modeline, "%d/%d %s ",
868 46f6e974 2021-05-17 op tab->buffer.line_off + tab->buffer.curs_y,
869 46f6e974 2021-05-17 op tab->buffer.line_max,
870 2051e653 2021-03-13 op tab->hist_cur->h);
871 481340cc 2021-03-11 op
872 48e9d457 2021-03-06 op getyx(modeline, y, x);
873 48e9d457 2021-03-06 op getmaxyx(modeline, max_y, max_x);
874 48e9d457 2021-03-06 op
875 48e9d457 2021-03-06 op (void)y;
876 48e9d457 2021-03-06 op (void)max_y;
877 48e9d457 2021-03-06 op
878 48e9d457 2021-03-06 op for (; x < max_x; ++x)
879 48e9d457 2021-03-06 op waddstr(modeline, "-");
880 d5493194 2021-06-15 op
881 ab47e7d4 2021-06-24 op wattr_off(modeline, modeline_face.background, NULL);
882 9ca15951 2021-03-09 op }
883 9ca15951 2021-03-09 op
884 9ca15951 2021-03-09 op static void
885 9ca15951 2021-03-09 op redraw_minibuffer(void)
886 9ca15951 2021-03-09 op {
887 8300dd3c 2021-03-18 op struct tab *tab;
888 17e5106b 2021-03-21 op size_t off_y, off_x = 0;
889 923f9ce5 2021-06-21 op char *start = NULL, *c = NULL;
890 923f9ce5 2021-06-21 op
891 923f9ce5 2021-06-21 op /* unused, but set by getyx */
892 923f9ce5 2021-06-21 op (void)off_y;
893 9ca15951 2021-03-09 op
894 ab47e7d4 2021-06-24 op wattr_on(minibuf, minibuffer_face.background, NULL);
895 156f1501 2021-03-13 op werase(minibuf);
896 17e5106b 2021-03-21 op
897 22268e11 2021-03-11 op if (in_minibuffer) {
898 22268e11 2021-03-11 op mvwprintw(minibuf, 0, 0, "%s", ministate.prompt);
899 22268e11 2021-03-11 op if (ministate.hist_cur != NULL)
900 22268e11 2021-03-11 op wprintw(minibuf, "(%zu/%zu) ",
901 22268e11 2021-03-11 op ministate.hist_off + 1,
902 22268e11 2021-03-11 op ministate.history->len);
903 9ca15951 2021-03-09 op
904 22268e11 2021-03-11 op getyx(minibuf, off_y, off_x);
905 9cb0f9ce 2021-03-10 op
906 17e5106b 2021-03-21 op start = ministate.hist_cur != NULL
907 17e5106b 2021-03-21 op ? ministate.hist_cur->h
908 17e5106b 2021-03-21 op : ministate.buf;
909 46f6e974 2021-05-17 op c = utf8_nth(ministate.buffer.current_line->line,
910 46f6e974 2021-05-17 op ministate.buffer.cpoff);
911 2ba66cea 2021-03-22 op while (utf8_swidth_between(start, c) > (size_t)COLS/2) {
912 17e5106b 2021-03-21 op start = utf8_next_cp(start);
913 22268e11 2021-03-11 op }
914 9cb0f9ce 2021-03-10 op
915 17e5106b 2021-03-21 op waddstr(minibuf, start);
916 22268e11 2021-03-11 op }
917 9cb0f9ce 2021-03-10 op
918 17e5106b 2021-03-21 op if (ministate.curmesg != NULL)
919 17e5106b 2021-03-21 op wprintw(minibuf, in_minibuffer ? " [%s]" : "%s",
920 17e5106b 2021-03-21 op ministate.curmesg);
921 9cb0f9ce 2021-03-10 op
922 91a72220 2021-03-13 op if (!in_minibuffer && ministate.curmesg == NULL)
923 17e5106b 2021-03-21 op waddstr(minibuf, keybuf);
924 8300dd3c 2021-03-18 op
925 8300dd3c 2021-03-18 op /* If nothing else, show the URL at point */
926 8300dd3c 2021-03-18 op if (!in_minibuffer && ministate.curmesg == NULL && *keybuf == '\0') {
927 8300dd3c 2021-03-18 op tab = current_tab();
928 46f6e974 2021-05-17 op if (tab->buffer.current_line != NULL &&
929 46f6e974 2021-05-17 op tab->buffer.current_line->parent->type == LINE_LINK)
930 46f6e974 2021-05-17 op waddstr(minibuf, tab->buffer.current_line->parent->alt);
931 8300dd3c 2021-03-18 op }
932 91a72220 2021-03-13 op
933 2aaf475e 2021-03-13 op if (in_minibuffer)
934 2ba66cea 2021-03-22 op wmove(minibuf, 0, off_x + utf8_swidth_between(start, c));
935 d5493194 2021-06-15 op
936 ab47e7d4 2021-06-24 op wattr_off(minibuf, minibuffer_face.background, NULL);
937 48e9d457 2021-03-06 op }
938 48e9d457 2021-03-06 op
939 48e9d457 2021-03-06 op static void
940 48e9d457 2021-03-06 op redraw_tab(struct tab *tab)
941 48e9d457 2021-03-06 op {
942 bddc7bbd 2021-04-01 op if (side_window) {
943 bddc7bbd 2021-04-01 op redraw_help();
944 bddc7bbd 2021-04-01 op wnoutrefresh(help);
945 bddc7bbd 2021-04-01 op }
946 72b18268 2021-06-19 op
947 72b18268 2021-06-19 op restore_cursor(&tab->buffer);
948 bddc7bbd 2021-04-01 op
949 e19f9a04 2021-03-11 op redraw_tabline();
950 e19f9a04 2021-03-11 op redraw_body(tab);
951 e19f9a04 2021-03-11 op redraw_modeline(tab);
952 e19f9a04 2021-03-11 op redraw_minibuffer();
953 e19f9a04 2021-03-11 op
954 bddc7bbd 2021-04-01 op wnoutrefresh(tabline);
955 bddc7bbd 2021-04-01 op wnoutrefresh(modeline);
956 e19f9a04 2021-03-11 op
957 e19f9a04 2021-03-11 op if (in_minibuffer) {
958 bddc7bbd 2021-04-01 op wnoutrefresh(body);
959 bddc7bbd 2021-04-01 op wnoutrefresh(minibuf);
960 e19f9a04 2021-03-11 op } else {
961 bddc7bbd 2021-04-01 op wnoutrefresh(minibuf);
962 bddc7bbd 2021-04-01 op wnoutrefresh(body);
963 e19f9a04 2021-03-11 op }
964 bddc7bbd 2021-04-01 op
965 bddc7bbd 2021-04-01 op doupdate();
966 e19f9a04 2021-03-11 op }
967 e19f9a04 2021-03-11 op
968 e19f9a04 2021-03-11 op static void
969 bddc7bbd 2021-04-01 op emit_help_item(char *prfx, void *fn)
970 e19f9a04 2021-03-11 op {
971 bddc7bbd 2021-04-01 op struct line *l;
972 a3666ed5 2021-06-25 op struct cmd *cmd;
973 48e9d457 2021-03-06 op
974 bddc7bbd 2021-04-01 op for (cmd = cmds; cmd->cmd != NULL; ++cmd) {
975 bddc7bbd 2021-04-01 op if (fn == cmd->fn)
976 bddc7bbd 2021-04-01 op break;
977 bddc7bbd 2021-04-01 op }
978 bddc7bbd 2021-04-01 op assert(cmd != NULL);
979 48e9d457 2021-03-06 op
980 bddc7bbd 2021-04-01 op if ((l = calloc(1, sizeof(*l))) == NULL)
981 bddc7bbd 2021-04-01 op abort();
982 48e9d457 2021-03-06 op
983 bddc7bbd 2021-04-01 op l->type = LINE_TEXT;
984 bddc7bbd 2021-04-01 op l->alt = NULL;
985 bddc7bbd 2021-04-01 op
986 bddc7bbd 2021-04-01 op asprintf(&l->line, "%s %s", prfx, cmd->cmd);
987 bddc7bbd 2021-04-01 op
988 bddc7bbd 2021-04-01 op if (TAILQ_EMPTY(&helpwin.page.head))
989 bddc7bbd 2021-04-01 op TAILQ_INSERT_HEAD(&helpwin.page.head, l, lines);
990 bddc7bbd 2021-04-01 op else
991 bddc7bbd 2021-04-01 op TAILQ_INSERT_TAIL(&helpwin.page.head, l, lines);
992 bddc7bbd 2021-04-01 op }
993 bddc7bbd 2021-04-01 op
994 bddc7bbd 2021-04-01 op static void
995 bddc7bbd 2021-04-01 op rec_compute_help(struct kmap *keymap, char *prfx, size_t len)
996 bddc7bbd 2021-04-01 op {
997 bddc7bbd 2021-04-01 op struct keymap *k;
998 bddc7bbd 2021-04-01 op char p[32];
999 bddc7bbd 2021-04-01 op const char *kn;
1000 bddc7bbd 2021-04-01 op
1001 bddc7bbd 2021-04-01 op TAILQ_FOREACH(k, &keymap->m, keymaps) {
1002 bddc7bbd 2021-04-01 op strlcpy(p, prfx, sizeof(p));
1003 bddc7bbd 2021-04-01 op if (*p != '\0')
1004 bddc7bbd 2021-04-01 op strlcat(p, " ", sizeof(p));
1005 bddc7bbd 2021-04-01 op if (k->meta)
1006 bddc7bbd 2021-04-01 op strlcat(p, "M-", sizeof(p));
1007 bddc7bbd 2021-04-01 op if ((kn = unkbd(k->key)) != NULL)
1008 bddc7bbd 2021-04-01 op strlcat(p, kn, sizeof(p));
1009 bddc7bbd 2021-04-01 op else
1010 bddc7bbd 2021-04-01 op strlcat(p, keyname(k->key), sizeof(p));
1011 bddc7bbd 2021-04-01 op
1012 bddc7bbd 2021-04-01 op if (k->fn == NULL)
1013 bddc7bbd 2021-04-01 op rec_compute_help(&k->map, p, sizeof(p));
1014 bddc7bbd 2021-04-01 op else
1015 bddc7bbd 2021-04-01 op emit_help_item(p, k->fn);
1016 9ca15951 2021-03-09 op }
1017 bddc7bbd 2021-04-01 op }
1018 174b3cdf 2021-03-21 op
1019 bddc7bbd 2021-04-01 op static void
1020 bddc7bbd 2021-04-01 op recompute_help(void)
1021 bddc7bbd 2021-04-01 op {
1022 bddc7bbd 2021-04-01 op char p[32] = { 0 };
1023 bddc7bbd 2021-04-01 op
1024 bddc7bbd 2021-04-01 op empty_vlist(&helpwin);
1025 bddc7bbd 2021-04-01 op empty_linelist(&helpwin);
1026 bddc7bbd 2021-04-01 op rec_compute_help(current_map, p, sizeof(p));
1027 bddc7bbd 2021-04-01 op wrap_page(&helpwin, help_cols);
1028 7953dd72 2021-03-07 op }
1029 7953dd72 2021-03-07 op
1030 7f963c41 2021-06-20 op void
1031 740f578b 2021-03-15 op vmessage(const char *fmt, va_list ap)
1032 7953dd72 2021-03-07 op {
1033 e0e26735 2021-03-16 op if (evtimer_pending(&clminibufev, NULL))
1034 7953dd72 2021-03-07 op evtimer_del(&clminibufev);
1035 bf992581 2021-03-12 op
1036 bf992581 2021-03-12 op free(ministate.curmesg);
1037 2b2d2872 2021-06-20 op ministate.curmesg = NULL;
1038 7953dd72 2021-03-07 op
1039 2b2d2872 2021-06-20 op if (fmt != NULL) {
1040 2b2d2872 2021-06-20 op evtimer_set(&clminibufev, handle_clear_minibuf, NULL);
1041 2b2d2872 2021-06-20 op evtimer_add(&clminibufev, &clminibufev_timer);
1042 9cb0f9ce 2021-03-10 op
1043 2b2d2872 2021-06-20 op /* TODO: what to do if the allocation fails here? */
1044 2b2d2872 2021-06-20 op if (vasprintf(&ministate.curmesg, fmt, ap) == -1)
1045 2b2d2872 2021-06-20 op ministate.curmesg = NULL;
1046 2b2d2872 2021-06-20 op }
1047 2b2d2872 2021-06-20 op
1048 9cb0f9ce 2021-03-10 op redraw_minibuffer();
1049 9cb0f9ce 2021-03-10 op if (in_minibuffer) {
1050 9cb0f9ce 2021-03-10 op wrefresh(body);
1051 9cb0f9ce 2021-03-10 op wrefresh(minibuf);
1052 9cb0f9ce 2021-03-10 op } else {
1053 9cb0f9ce 2021-03-10 op wrefresh(minibuf);
1054 9cb0f9ce 2021-03-10 op wrefresh(body);
1055 9cb0f9ce 2021-03-10 op }
1056 bcb0b073 2021-03-07 op }
1057 bcb0b073 2021-03-07 op
1058 7f963c41 2021-06-20 op void
1059 740f578b 2021-03-15 op message(const char *fmt, ...)
1060 740f578b 2021-03-15 op {
1061 740f578b 2021-03-15 op va_list ap;
1062 740f578b 2021-03-15 op
1063 740f578b 2021-03-15 op va_start(ap, fmt);
1064 740f578b 2021-03-15 op vmessage(fmt, ap);
1065 740f578b 2021-03-15 op va_end(ap);
1066 740f578b 2021-03-15 op }
1067 740f578b 2021-03-15 op
1068 2b2d2872 2021-06-20 op void
1069 8af5e5ed 2021-03-08 op start_loading_anim(struct tab *tab)
1070 8af5e5ed 2021-03-08 op {
1071 2ba66cea 2021-03-22 op if (tab->loading_anim)
1072 8af5e5ed 2021-03-08 op return;
1073 2ba66cea 2021-03-22 op tab->loading_anim = 1;
1074 2ba66cea 2021-03-22 op evtimer_set(&tab->loadingev, update_loading_anim, tab);
1075 2ba66cea 2021-03-22 op evtimer_add(&tab->loadingev, &loadingev_timer);
1076 8af5e5ed 2021-03-08 op }
1077 8af5e5ed 2021-03-08 op
1078 8af5e5ed 2021-03-08 op static void
1079 8af5e5ed 2021-03-08 op update_loading_anim(int fd, short ev, void *d)
1080 8af5e5ed 2021-03-08 op {
1081 8af5e5ed 2021-03-08 op struct tab *tab = d;
1082 8af5e5ed 2021-03-08 op
1083 2ba66cea 2021-03-22 op tab->loading_anim_step = (tab->loading_anim_step+1)%4;
1084 9ca15951 2021-03-09 op
1085 6347dcd0 2021-03-16 op if (tab->flags & TAB_CURRENT) {
1086 6347dcd0 2021-03-16 op redraw_modeline(tab);
1087 6347dcd0 2021-03-16 op wrefresh(modeline);
1088 6347dcd0 2021-03-16 op wrefresh(body);
1089 6347dcd0 2021-03-16 op if (in_minibuffer)
1090 6347dcd0 2021-03-16 op wrefresh(minibuf);
1091 6347dcd0 2021-03-16 op }
1092 8af5e5ed 2021-03-08 op
1093 2ba66cea 2021-03-22 op evtimer_add(&tab->loadingev, &loadingev_timer);
1094 8af5e5ed 2021-03-08 op }
1095 8af5e5ed 2021-03-08 op
1096 8af5e5ed 2021-03-08 op static void
1097 8af5e5ed 2021-03-08 op stop_loading_anim(struct tab *tab)
1098 8af5e5ed 2021-03-08 op {
1099 2ba66cea 2021-03-22 op if (!tab->loading_anim)
1100 8af5e5ed 2021-03-08 op return;
1101 2ba66cea 2021-03-22 op evtimer_del(&tab->loadingev);
1102 2ba66cea 2021-03-22 op tab->loading_anim = 0;
1103 2ba66cea 2021-03-22 op tab->loading_anim_step = 0;
1104 3d8c2326 2021-03-18 op
1105 3d8c2326 2021-03-18 op if (!(tab->flags & TAB_CURRENT))
1106 3d8c2326 2021-03-18 op return;
1107 43a1b8d0 2021-03-09 op
1108 43a1b8d0 2021-03-09 op redraw_modeline(tab);
1109 9ca15951 2021-03-09 op
1110 43a1b8d0 2021-03-09 op wrefresh(modeline);
1111 43a1b8d0 2021-03-09 op wrefresh(body);
1112 9ca15951 2021-03-09 op if (in_minibuffer)
1113 9ca15951 2021-03-09 op wrefresh(minibuf);
1114 8af5e5ed 2021-03-08 op }
1115 8af5e5ed 2021-03-08 op
1116 2b2d2872 2021-06-20 op void
1117 43a1b8d0 2021-03-09 op load_url_in_tab(struct tab *tab, const char *url)
1118 8af5e5ed 2021-03-08 op {
1119 8af5e5ed 2021-03-08 op message("Loading %s...", url);
1120 8af5e5ed 2021-03-08 op start_loading_anim(tab);
1121 8af5e5ed 2021-03-08 op load_url(tab, url);
1122 43a1b8d0 2021-03-09 op
1123 46f6e974 2021-05-17 op tab->buffer.curs_x = 0;
1124 46f6e974 2021-05-17 op tab->buffer.curs_y = 0;
1125 43a1b8d0 2021-03-09 op redraw_tab(tab);
1126 8af5e5ed 2021-03-08 op }
1127 8af5e5ed 2021-03-08 op
1128 2b2d2872 2021-06-20 op void
1129 b360ebb3 2021-03-10 op enter_minibuffer(void (*self_insert_fn)(void), void (*donefn)(void),
1130 3148eeac 2021-03-13 op void (*abortfn)(void), struct histhead *hist)
1131 9ca15951 2021-03-09 op {
1132 9ca15951 2021-03-09 op in_minibuffer = 1;
1133 fa3fd864 2021-03-10 op base_map = &minibuffer_map;
1134 fa3fd864 2021-03-10 op current_map = &minibuffer_map;
1135 9ca15951 2021-03-09 op
1136 fa3fd864 2021-03-10 op base_map->unhandled_input = self_insert_fn;
1137 b360ebb3 2021-03-10 op
1138 b360ebb3 2021-03-10 op ministate.donefn = donefn;
1139 b360ebb3 2021-03-10 op ministate.abortfn = abortfn;
1140 9ca15951 2021-03-09 op memset(ministate.buf, 0, sizeof(ministate.buf));
1141 46f6e974 2021-05-17 op ministate.buffer.current_line = &ministate.vline;
1142 46f6e974 2021-05-17 op ministate.buffer.current_line->line = ministate.buf;
1143 46f6e974 2021-05-17 op ministate.buffer.cpoff = 0;
1144 9ca15951 2021-03-09 op strlcpy(ministate.buf, "", sizeof(ministate.prompt));
1145 22268e11 2021-03-11 op
1146 22268e11 2021-03-11 op ministate.history = hist;
1147 22268e11 2021-03-11 op ministate.hist_cur = NULL;
1148 22268e11 2021-03-11 op ministate.hist_off = 0;
1149 9ca15951 2021-03-09 op }
1150 9ca15951 2021-03-09 op
1151 2b2d2872 2021-06-20 op void
1152 b360ebb3 2021-03-10 op exit_minibuffer(void)
1153 9ca15951 2021-03-09 op {
1154 156f1501 2021-03-13 op werase(minibuf);
1155 9ca15951 2021-03-09 op
1156 9ca15951 2021-03-09 op in_minibuffer = 0;
1157 9ca15951 2021-03-09 op base_map = &global_map;
1158 9ca15951 2021-03-09 op current_map = &global_map;
1159 9ca15951 2021-03-09 op }
1160 9ca15951 2021-03-09 op
1161 2b2d2872 2021-06-20 op void
1162 5cd2ebb1 2021-03-11 op switch_to_tab(struct tab *tab)
1163 5cd2ebb1 2021-03-11 op {
1164 5cd2ebb1 2021-03-11 op struct tab *t;
1165 5cd2ebb1 2021-03-11 op
1166 5cd2ebb1 2021-03-11 op TAILQ_FOREACH(t, &tabshead, tabs) {
1167 5cd2ebb1 2021-03-11 op t->flags &= ~TAB_CURRENT;
1168 5cd2ebb1 2021-03-11 op }
1169 5cd2ebb1 2021-03-11 op
1170 5cd2ebb1 2021-03-11 op tab->flags |= TAB_CURRENT;
1171 cf25a90f 2021-06-11 op tab->flags &= ~TAB_URGENT;
1172 2eef3403 2021-04-22 op }
1173 2eef3403 2021-04-22 op
1174 2eef3403 2021-04-22 op unsigned int
1175 2eef3403 2021-04-22 op tab_new_id(void)
1176 2eef3403 2021-04-22 op {
1177 2eef3403 2021-04-22 op return tab_counter++;
1178 5cd2ebb1 2021-03-11 op }
1179 5cd2ebb1 2021-03-11 op
1180 2b2d2872 2021-06-20 op struct tab *
1181 1b81bc33 2021-03-15 op new_tab(const char *url)
1182 bcb0b073 2021-03-07 op {
1183 754622a2 2021-03-15 op struct tab *tab;
1184 bcb0b073 2021-03-07 op
1185 71105afa 2021-03-16 op if ((tab = calloc(1, sizeof(*tab))) == NULL) {
1186 71105afa 2021-03-16 op event_loopbreak();
1187 71105afa 2021-03-16 op return NULL;
1188 71105afa 2021-03-16 op }
1189 de2a69bb 2021-05-17 op tab->fd = -1;
1190 bcb0b073 2021-03-07 op
1191 2051e653 2021-03-13 op TAILQ_INIT(&tab->hist.head);
1192 2051e653 2021-03-13 op
1193 46f6e974 2021-05-17 op TAILQ_INIT(&tab->buffer.head);
1194 bcb0b073 2021-03-07 op
1195 2eef3403 2021-04-22 op tab->id = tab_new_id();
1196 5cd2ebb1 2021-03-11 op switch_to_tab(tab);
1197 bcb0b073 2021-03-07 op
1198 bcb0b073 2021-03-07 op if (TAILQ_EMPTY(&tabshead))
1199 bcb0b073 2021-03-07 op TAILQ_INSERT_HEAD(&tabshead, tab, tabs);
1200 bcb0b073 2021-03-07 op else
1201 bcb0b073 2021-03-07 op TAILQ_INSERT_TAIL(&tabshead, tab, tabs);
1202 bcb0b073 2021-03-07 op
1203 43a1b8d0 2021-03-09 op load_url_in_tab(tab, url);
1204 b1df9b71 2021-03-12 op return tab;
1205 c7107cec 2021-04-01 op }
1206 c7107cec 2021-04-01 op
1207 c7107cec 2021-04-01 op static void
1208 c7107cec 2021-04-01 op session_new_tab_cb(const char *url)
1209 c7107cec 2021-04-01 op {
1210 c7107cec 2021-04-01 op new_tab(url);
1211 5e11c00c 2021-03-02 op }
1212 5e11c00c 2021-03-02 op
1213 941b3761 2021-03-18 op static void
1214 941b3761 2021-03-18 op usage(void)
1215 5e11c00c 2021-03-02 op {
1216 c92e529c 2021-06-15 op fprintf(stderr, "USAGE: %s [-hn] [-c config] [url]\n", getprogname());
1217 c92e529c 2021-06-15 op fprintf(stderr, "version: " PACKAGE " " VERSION "\n");
1218 941b3761 2021-03-18 op }
1219 941b3761 2021-03-18 op
1220 941b3761 2021-03-18 op int
1221 6cd6a9e1 2021-03-20 op ui_init(int argc, char * const *argv)
1222 941b3761 2021-03-18 op {
1223 c92e529c 2021-06-15 op char path[PATH_MAX];
1224 941b3761 2021-03-18 op const char *url = NEW_TAB_URL;
1225 c92e529c 2021-06-15 op int ch, configtest = 0, fonf = 0;
1226 c92e529c 2021-06-15 op
1227 74a2587f 2021-06-21 op if (getenv("NO_COLOR") != NULL)
1228 74a2587f 2021-06-21 op enable_colors = 0;
1229 74a2587f 2021-06-21 op
1230 c92e529c 2021-06-15 op strlcpy(path, getenv("HOME"), sizeof(path));
1231 c92e529c 2021-06-15 op strlcat(path, "/.telescope/config", sizeof(path));
1232 c92e529c 2021-06-15 op
1233 c92e529c 2021-06-15 op while ((ch = getopt(argc, argv, "c:hn")) != -1) {
1234 941b3761 2021-03-18 op switch (ch) {
1235 c92e529c 2021-06-15 op case 'c':
1236 c92e529c 2021-06-15 op fonf = 1;
1237 c92e529c 2021-06-15 op strlcpy(path, optarg, sizeof(path));
1238 c92e529c 2021-06-15 op break;
1239 c92e529c 2021-06-15 op case 'n':
1240 c92e529c 2021-06-15 op configtest = 1;
1241 c92e529c 2021-06-15 op break;
1242 c92e529c 2021-06-15 op case 'h':
1243 941b3761 2021-03-18 op usage();
1244 941b3761 2021-03-18 op return 0;
1245 c92e529c 2021-06-15 op default:
1246 c92e529c 2021-06-15 op usage();
1247 c92e529c 2021-06-15 op return 1;
1248 941b3761 2021-03-18 op }
1249 941b3761 2021-03-18 op }
1250 941b3761 2021-03-18 op argc -= optind;
1251 941b3761 2021-03-18 op argv += optind;
1252 e3427d18 2021-06-25 op
1253 e3427d18 2021-06-25 op /* setup keys before reading the config */
1254 e3427d18 2021-06-25 op TAILQ_INIT(&global_map.m);
1255 e3427d18 2021-06-25 op global_map.unhandled_input = global_key_unbound;
1256 e3427d18 2021-06-25 op
1257 e3427d18 2021-06-25 op TAILQ_INIT(&minibuffer_map.m);
1258 e3427d18 2021-06-25 op
1259 33fc3a8f 2021-06-21 op config_init();
1260 c92e529c 2021-06-15 op parseconfig(path, fonf);
1261 c92e529c 2021-06-15 op if (configtest){
1262 c92e529c 2021-06-15 op puts("config OK");
1263 c92e529c 2021-06-15 op exit(0);
1264 c92e529c 2021-06-15 op }
1265 c92e529c 2021-06-15 op
1266 941b3761 2021-03-18 op if (argc != 0)
1267 941b3761 2021-03-18 op url = argv[0];
1268 941b3761 2021-03-18 op
1269 5e11c00c 2021-03-02 op setlocale(LC_ALL, "");
1270 5e11c00c 2021-03-02 op
1271 22268e11 2021-03-11 op TAILQ_INIT(&eecmd_history.head);
1272 22268e11 2021-03-11 op TAILQ_INIT(&ir_history.head);
1273 22268e11 2021-03-11 op TAILQ_INIT(&lu_history.head);
1274 22268e11 2021-03-11 op
1275 2ba66cea 2021-03-22 op ministate.line.type = LINE_TEXT;
1276 2ba66cea 2021-03-22 op ministate.vline.parent = &ministate.line;
1277 46f6e974 2021-05-17 op ministate.buffer.current_line = &ministate.vline;
1278 2ba66cea 2021-03-22 op
1279 bddc7bbd 2021-04-01 op /* initialize help window */
1280 bddc7bbd 2021-04-01 op TAILQ_INIT(&helpwin.head);
1281 bddc7bbd 2021-04-01 op
1282 9ca15951 2021-03-09 op base_map = &global_map;
1283 f832146f 2021-03-09 op current_map = &global_map;
1284 f832146f 2021-03-09 op
1285 5e11c00c 2021-03-02 op initscr();
1286 74a2587f 2021-06-21 op
1287 74a2587f 2021-06-21 op if (enable_colors) {
1288 74a2587f 2021-06-21 op if (has_colors()) {
1289 74a2587f 2021-06-21 op start_color();
1290 160abe04 2021-06-21 op use_default_colors();
1291 f3bcf8f2 2021-06-21 op } else
1292 74a2587f 2021-06-21 op enable_colors = 0;
1293 f3bcf8f2 2021-06-21 op }
1294 74a2587f 2021-06-21 op
1295 42d61f50 2021-06-24 op config_apply_style();
1296 42d61f50 2021-06-24 op
1297 15e1b108 2021-03-02 op raw();
1298 5e11c00c 2021-03-02 op noecho();
1299 5e11c00c 2021-03-02 op nonl();
1300 5e11c00c 2021-03-02 op intrflush(stdscr, FALSE);
1301 5e11c00c 2021-03-02 op
1302 48e9d457 2021-03-06 op if ((tabline = newwin(1, COLS, 0, 0)) == NULL)
1303 48e9d457 2021-03-06 op return 0;
1304 48e9d457 2021-03-06 op if ((body = newwin(LINES - 3, COLS, 1, 0)) == NULL)
1305 48e9d457 2021-03-06 op return 0;
1306 48e9d457 2021-03-06 op if ((modeline = newwin(1, COLS, LINES-2, 0)) == NULL)
1307 48e9d457 2021-03-06 op return 0;
1308 48e9d457 2021-03-06 op if ((minibuf = newwin(1, COLS, LINES-1, 0)) == NULL)
1309 48e9d457 2021-03-06 op return 0;
1310 bddc7bbd 2021-04-01 op if ((help = newwin(1, 1, 1, 0)) == NULL)
1311 bddc7bbd 2021-04-01 op return 0;
1312 1d08c280 2021-03-06 op
1313 48e9d457 2021-03-06 op body_lines = LINES-3;
1314 48e9d457 2021-03-06 op body_cols = COLS;
1315 33d904b6 2021-06-22 op
1316 b598590d 2021-06-21 op wbkgd(body, body_face.body);
1317 24221637 2021-06-25 op wbkgd(minibuf, minibuffer_face.background);
1318 72b18268 2021-06-19 op
1319 72b18268 2021-06-19 op update_x_offset();
1320 48e9d457 2021-03-06 op
1321 43a1b8d0 2021-03-09 op keypad(body, TRUE);
1322 f3bcf8f2 2021-06-21 op scrollok(body, FALSE);
1323 48e9d457 2021-03-06 op
1324 5e11c00c 2021-03-02 op /* non-blocking input */
1325 48e9d457 2021-03-06 op wtimeout(body, 0);
1326 5e11c00c 2021-03-02 op
1327 48e9d457 2021-03-06 op mvwprintw(body, 0, 0, "");
1328 5e11c00c 2021-03-02 op
1329 5e11c00c 2021-03-02 op event_set(&stdioev, 0, EV_READ | EV_PERSIST, dispatch_stdio, NULL);
1330 5e11c00c 2021-03-02 op event_add(&stdioev, NULL);
1331 5e11c00c 2021-03-02 op
1332 5e11c00c 2021-03-02 op signal_set(&winchev, SIGWINCH, handle_resize, NULL);
1333 5e11c00c 2021-03-02 op signal_add(&winchev, NULL);
1334 5e11c00c 2021-03-02 op
1335 c7107cec 2021-04-01 op load_last_session(session_new_tab_cb);
1336 c7107cec 2021-04-01 op if (strcmp(url, NEW_TAB_URL) || TAILQ_EMPTY(&tabshead))
1337 c7107cec 2021-04-01 op new_tab(url);
1338 5e11c00c 2021-03-02 op
1339 1d08c280 2021-03-06 op return 1;
1340 5e11c00c 2021-03-02 op }
1341 5e11c00c 2021-03-02 op
1342 5e11c00c 2021-03-02 op void
1343 8af5e5ed 2021-03-08 op ui_on_tab_loaded(struct tab *tab)
1344 8af5e5ed 2021-03-08 op {
1345 8af5e5ed 2021-03-08 op stop_loading_anim(tab);
1346 2051e653 2021-03-13 op message("Loaded %s", tab->hist_cur->h);
1347 3d8c2326 2021-03-18 op
1348 3d8c2326 2021-03-18 op redraw_tabline();
1349 3d8c2326 2021-03-18 op wrefresh(tabline);
1350 3d8c2326 2021-03-18 op if (in_minibuffer)
1351 3d8c2326 2021-03-18 op wrefresh(minibuf);
1352 3d8c2326 2021-03-18 op else
1353 3d8c2326 2021-03-18 op wrefresh(body);
1354 8af5e5ed 2021-03-08 op }
1355 8af5e5ed 2021-03-08 op
1356 8af5e5ed 2021-03-08 op void
1357 5e11c00c 2021-03-02 op ui_on_tab_refresh(struct tab *tab)
1358 5e11c00c 2021-03-02 op {
1359 46f6e974 2021-05-17 op wrap_page(&tab->buffer, body_cols);
1360 3e433958 2021-03-21 op if (tab->flags & TAB_CURRENT) {
1361 46f6e974 2021-05-17 op restore_cursor(&tab->buffer);
1362 3d8c2326 2021-03-18 op redraw_tab(tab);
1363 e8a76665 2021-05-12 op } else
1364 e8a76665 2021-05-12 op tab->flags |= TAB_URGENT;
1365 5e11c00c 2021-03-02 op }
1366 5e11c00c 2021-03-02 op
1367 2b2d2872 2021-06-20 op const char *
1368 2b2d2872 2021-06-20 op ui_keyname(int k)
1369 2b2d2872 2021-06-20 op {
1370 2b2d2872 2021-06-20 op return keyname(k);
1371 2b2d2872 2021-06-20 op }
1372 2b2d2872 2021-06-20 op
1373 5e11c00c 2021-03-02 op void
1374 2b2d2872 2021-06-20 op ui_toggle_side_window(void)
1375 2b2d2872 2021-06-20 op {
1376 2b2d2872 2021-06-20 op side_window = !side_window;
1377 2b2d2872 2021-06-20 op if (side_window)
1378 2b2d2872 2021-06-20 op recompute_help();
1379 960b01da 2021-06-20 op
1380 960b01da 2021-06-20 op /*
1381 960b01da 2021-06-20 op * ugly hack, but otherwise the window doesn't get updated
1382 960b01da 2021-06-20 op * until I call handle_resize a second time (i.e. C-l). I
1383 960b01da 2021-06-20 op * will be happy to know why something like this is needed.
1384 960b01da 2021-06-20 op */
1385 960b01da 2021-06-20 op handle_resize_nodelay(0, 0, NULL);
1386 960b01da 2021-06-20 op handle_resize_nodelay(0, 0, NULL);
1387 2b2d2872 2021-06-20 op }
1388 2b2d2872 2021-06-20 op
1389 2b2d2872 2021-06-20 op void
1390 2b2d2872 2021-06-20 op ui_schedule_redraw(void)
1391 2b2d2872 2021-06-20 op {
1392 2b2d2872 2021-06-20 op handle_resize_nodelay(0, 0, NULL);
1393 2b2d2872 2021-06-20 op }
1394 2b2d2872 2021-06-20 op
1395 2b2d2872 2021-06-20 op void
1396 5cd2ebb1 2021-03-11 op ui_require_input(struct tab *tab, int hide)
1397 5cd2ebb1 2021-03-11 op {
1398 5cd2ebb1 2021-03-11 op /* TODO: hard-switching to another tab is ugly */
1399 5cd2ebb1 2021-03-11 op switch_to_tab(tab);
1400 5cd2ebb1 2021-03-11 op
1401 22268e11 2021-03-11 op enter_minibuffer(ir_self_insert, ir_select, exit_minibuffer,
1402 22268e11 2021-03-11 op &ir_history);
1403 5cd2ebb1 2021-03-11 op strlcpy(ministate.prompt, "Input required: ",
1404 5cd2ebb1 2021-03-11 op sizeof(ministate.prompt));
1405 5cd2ebb1 2021-03-11 op redraw_tab(tab);
1406 5cd2ebb1 2021-03-11 op }
1407 5cd2ebb1 2021-03-11 op
1408 5cd2ebb1 2021-03-11 op void
1409 b3575139 2021-04-01 op ui_yornp(const char *prompt, void (*fn)(int, unsigned int),
1410 b3575139 2021-04-01 op unsigned int data)
1411 5d1bac73 2021-03-25 op {
1412 5d1bac73 2021-03-25 op size_t len;
1413 5d1bac73 2021-03-25 op
1414 6f66d9bf 2021-04-24 op if (in_minibuffer) {
1415 6f66d9bf 2021-04-24 op fn(0, data);
1416 6f66d9bf 2021-04-24 op return;
1417 6f66d9bf 2021-04-24 op }
1418 6f66d9bf 2021-04-24 op
1419 5d1bac73 2021-03-25 op yornp_cb = fn;
1420 e49ce157 2021-04-01 op yornp_data = data;
1421 5d1bac73 2021-03-25 op enter_minibuffer(yornp_self_insert, yornp_self_insert,
1422 5d1bac73 2021-03-25 op yornp_abort, NULL);
1423 5d1bac73 2021-03-25 op
1424 5d1bac73 2021-03-25 op len = sizeof(ministate.prompt);
1425 5d1bac73 2021-03-25 op strlcpy(ministate.prompt, prompt, len);
1426 5d1bac73 2021-03-25 op strlcat(ministate.prompt, " (y or n) ", len);
1427 5d1bac73 2021-03-25 op redraw_tab(current_tab());
1428 5d1bac73 2021-03-25 op }
1429 5d1bac73 2021-03-25 op
1430 5d1bac73 2021-03-25 op void
1431 de2a69bb 2021-05-17 op ui_read(const char *prompt, void (*fn)(const char*, unsigned int),
1432 de2a69bb 2021-05-17 op unsigned int data)
1433 de2a69bb 2021-05-17 op {
1434 de2a69bb 2021-05-17 op size_t len;
1435 de2a69bb 2021-05-17 op
1436 de2a69bb 2021-05-17 op if (in_minibuffer)
1437 de2a69bb 2021-05-17 op return;
1438 de2a69bb 2021-05-17 op
1439 de2a69bb 2021-05-17 op read_cb = fn;
1440 de2a69bb 2021-05-17 op read_data = data;
1441 de2a69bb 2021-05-17 op enter_minibuffer(read_self_insert, read_select, read_abort,
1442 de2a69bb 2021-05-17 op &read_history);
1443 de2a69bb 2021-05-17 op
1444 de2a69bb 2021-05-17 op len = sizeof(ministate.prompt);
1445 de2a69bb 2021-05-17 op strlcpy(ministate.prompt, prompt, len);
1446 de2a69bb 2021-05-17 op strlcat(ministate.prompt, ": ", len);
1447 de2a69bb 2021-05-17 op redraw_tab(current_tab());
1448 740f578b 2021-03-15 op }
1449 740f578b 2021-03-15 op
1450 740f578b 2021-03-15 op void
1451 5e11c00c 2021-03-02 op ui_end(void)
1452 5e11c00c 2021-03-02 op {
1453 5e11c00c 2021-03-02 op endwin();
1454 5e11c00c 2021-03-02 op }