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 * This way is easy to scroll: just call wscrl and then render the
27 1d08c280 2021-03-06 op * first/last line!
28 1d08c280 2021-03-06 op *
29 1d08c280 2021-03-06 op * This means that on every resize we have to clear our list of lines
30 1d08c280 2021-03-06 op * and re-render everything. A clever approach would be to do this
31 1d08c280 2021-03-06 op * ``on-demand''.
32 1d08c280 2021-03-06 op *
33 1d08c280 2021-03-06 op * TODO: make the text formatting on-demand.
34 1d08c280 2021-03-06 op *
35 1d08c280 2021-03-06 op */
36 1d08c280 2021-03-06 op
37 5e11c00c 2021-03-02 op #include <telescope.h>
38 5e11c00c 2021-03-02 op
39 5e11c00c 2021-03-02 op #include <curses.h>
40 5e11c00c 2021-03-02 op #include <event.h>
41 5e11c00c 2021-03-02 op #include <locale.h>
42 5e11c00c 2021-03-02 op #include <signal.h>
43 7953dd72 2021-03-07 op #include <stdarg.h>
44 eb259e66 2021-03-02 op #include <stdlib.h>
45 eb259e66 2021-03-02 op #include <string.h>
46 f832146f 2021-03-09 op #include <unistd.h>
47 5e11c00c 2021-03-02 op
48 5e11c00c 2021-03-02 op #define TAB_CURRENT 0x1
49 5e11c00c 2021-03-02 op
50 1b81bc33 2021-03-15 op #define NEW_TAB_URL "about:new"
51 1b81bc33 2021-03-15 op
52 5e11c00c 2021-03-02 op static struct event stdioev, winchev;
53 5e11c00c 2021-03-02 op
54 f832146f 2021-03-09 op static void load_default_keys(void);
55 1d08c280 2021-03-06 op static void empty_vlist(struct tab*);
56 48e9d457 2021-03-06 op static void restore_cursor(struct tab *);
57 9ca15951 2021-03-09 op
58 46a9311e 2021-03-08 op static void cmd_previous_line(struct tab*);
59 46a9311e 2021-03-08 op static void cmd_next_line(struct tab*);
60 46a9311e 2021-03-08 op static void cmd_backward_char(struct tab*);
61 88597eaf 2021-03-17 op static void cmd_forward_char(struct tab*);
62 852d03e8 2021-03-17 op static void cmd_backward_paragraph(struct tab*);
63 852d03e8 2021-03-17 op static void cmd_forward_paragraph(struct tab*);
64 a329982b 2021-03-11 op static void cmd_move_beginning_of_line(struct tab*);
65 a329982b 2021-03-11 op static void cmd_move_end_of_line(struct tab*);
66 46a9311e 2021-03-08 op static void cmd_redraw(struct tab*);
67 ed44414d 2021-03-09 op static void cmd_scroll_line_down(struct tab*);
68 ed44414d 2021-03-09 op static void cmd_scroll_line_up(struct tab*);
69 46a9311e 2021-03-08 op static void cmd_scroll_up(struct tab*);
70 ed44414d 2021-03-09 op static void cmd_scroll_down(struct tab*);
71 e19f9a04 2021-03-11 op static void cmd_beginning_of_buffer(struct tab*);
72 e19f9a04 2021-03-11 op static void cmd_end_of_buffer(struct tab*);
73 46a9311e 2021-03-08 op static void cmd_kill_telescope(struct tab*);
74 46a9311e 2021-03-08 op static void cmd_push_button(struct tab*);
75 b1df9b71 2021-03-12 op static void cmd_push_button_new_tab(struct tab*);
76 a8c28919 2021-03-16 op static void cmd_previous_button(struct tab*);
77 a8c28919 2021-03-16 op static void cmd_next_button(struct tab*);
78 2051e653 2021-03-13 op static void cmd_previous_page(struct tab*);
79 2051e653 2021-03-13 op static void cmd_next_page(struct tab*);
80 3b4f9e49 2021-03-11 op static void cmd_clear_minibuf(struct tab*);
81 9ca15951 2021-03-09 op static void cmd_execute_extended_command(struct tab*);
82 7c7d7bb7 2021-03-10 op static void cmd_tab_close(struct tab*);
83 fea845b6 2021-03-15 op static void cmd_tab_close_other(struct tab*);
84 7c7d7bb7 2021-03-10 op static void cmd_tab_new(struct tab*);
85 7c7d7bb7 2021-03-10 op static void cmd_tab_next(struct tab*);
86 7c7d7bb7 2021-03-10 op static void cmd_tab_previous(struct tab*);
87 5cd2ebb1 2021-03-11 op static void cmd_load_url(struct tab*);
88 5cd2ebb1 2021-03-11 op static void cmd_load_current_url(struct tab*);
89 740f578b 2021-03-15 op static void cmd_bookmark_page(struct tab*);
90 de0b2139 2021-03-15 op static void cmd_goto_bookmarks(struct tab*);
91 9ca15951 2021-03-09 op
92 9ca15951 2021-03-09 op static void global_key_unbound(void);
93 9ca15951 2021-03-09 op
94 d67133bf 2021-03-12 op static void cmd_mini_delete_char(struct tab*);
95 d67133bf 2021-03-12 op static void cmd_mini_delete_backward_char(struct tab*);
96 9ca15951 2021-03-09 op static void cmd_mini_forward_char(struct tab*);
97 9ca15951 2021-03-09 op static void cmd_mini_backward_char(struct tab*);
98 9ca15951 2021-03-09 op static void cmd_mini_move_end_of_line(struct tab*);
99 9ca15951 2021-03-09 op static void cmd_mini_move_beginning_of_line(struct tab*);
100 fa3fd864 2021-03-10 op static void cmd_mini_kill_line(struct tab*);
101 22268e11 2021-03-11 op static void cmd_mini_abort(struct tab*);
102 22268e11 2021-03-11 op static void cmd_mini_complete_and_exit(struct tab*);
103 22268e11 2021-03-11 op static void cmd_mini_previous_history_element(struct tab*);
104 22268e11 2021-03-11 op static void cmd_mini_next_history_element(struct tab*);
105 b360ebb3 2021-03-10 op
106 22268e11 2021-03-11 op static void minibuffer_hist_save_entry(void);
107 22268e11 2021-03-11 op static void minibuffer_taint_hist(void);
108 5cd2ebb1 2021-03-11 op static void minibuffer_self_insert(void);
109 9ca15951 2021-03-09 op static void eecmd_self_insert(void);
110 b360ebb3 2021-03-10 op static void eecmd_select(void);
111 5cd2ebb1 2021-03-11 op static void ir_self_insert(void);
112 5cd2ebb1 2021-03-11 op static void ir_select(void);
113 5cd2ebb1 2021-03-11 op static void lu_self_insert(void);
114 5cd2ebb1 2021-03-11 op static void lu_select(void);
115 740f578b 2021-03-15 op static void bp_select(void);
116 9ca15951 2021-03-09 op
117 9a25f829 2021-03-14 op static struct vline *nth_line(struct tab*, size_t);
118 5e11c00c 2021-03-02 op static struct tab *current_tab(void);
119 8947c1f2 2021-03-21 op static int readkey(void);
120 5e11c00c 2021-03-02 op static void dispatch_stdio(int, short, void*);
121 a6d450c1 2021-03-06 op static void handle_clear_minibuf(int, short, void*);
122 5e11c00c 2021-03-02 op static void handle_resize(int, short, void*);
123 1d08c280 2021-03-06 op static int wrap_page(struct tab*);
124 9a25f829 2021-03-14 op static void print_vline(struct vline*);
125 8af5e5ed 2021-03-08 op static void redraw_tabline(void);
126 e19f9a04 2021-03-11 op static void redraw_body(struct tab*);
127 8af5e5ed 2021-03-08 op static void redraw_modeline(struct tab*);
128 9ca15951 2021-03-09 op static void redraw_minibuffer(void);
129 5e11c00c 2021-03-02 op static void redraw_tab(struct tab*);
130 740f578b 2021-03-15 op static void vmessage(const char*, va_list);
131 7953dd72 2021-03-07 op static void message(const char*, ...) __attribute__((format(printf, 1, 2)));
132 8af5e5ed 2021-03-08 op static void start_loading_anim(struct tab*);
133 8af5e5ed 2021-03-08 op static void update_loading_anim(int, short, void*);
134 8af5e5ed 2021-03-08 op static void stop_loading_anim(struct tab*);
135 43a1b8d0 2021-03-09 op static void load_url_in_tab(struct tab*, const char*);
136 3148eeac 2021-03-13 op static void enter_minibuffer(void(*)(void), void(*)(void), void(*)(void), struct histhead*);
137 b360ebb3 2021-03-10 op static void exit_minibuffer(void);
138 5cd2ebb1 2021-03-11 op static void switch_to_tab(struct tab*);
139 1b81bc33 2021-03-15 op static struct tab *new_tab(const char*);
140 941b3761 2021-03-18 op static void usage(void);
141 5e11c00c 2021-03-02 op
142 8947c1f2 2021-03-21 op static struct { short meta; int key; uint32_t cp; } thiskey;
143 9ca15951 2021-03-09 op
144 48e9d457 2021-03-06 op static WINDOW *tabline, *body, *modeline, *minibuf;
145 48e9d457 2021-03-06 op static int body_lines, body_cols;
146 48e9d457 2021-03-06 op
147 48e9d457 2021-03-06 op static struct event clminibufev;
148 a6d450c1 2021-03-06 op static struct timeval clminibufev_timer = { 5, 0 };
149 8af5e5ed 2021-03-08 op static struct timeval loadingev_timer = { 0, 250000 };
150 48e9d457 2021-03-06 op
151 bcb0b073 2021-03-07 op static uint32_t tab_counter;
152 bcb0b073 2021-03-07 op
153 7c7d7bb7 2021-03-10 op static char keybuf[64];
154 9ca15951 2021-03-09 op
155 9ca15951 2021-03-09 op struct kmap global_map,
156 fa3fd864 2021-03-10 op minibuffer_map,
157 9ca15951 2021-03-09 op *current_map,
158 9ca15951 2021-03-09 op *base_map;
159 9ca15951 2021-03-09 op
160 3148eeac 2021-03-13 op static struct histhead eecmd_history,
161 22268e11 2021-03-11 op ir_history,
162 22268e11 2021-03-11 op lu_history;
163 22268e11 2021-03-11 op
164 9ca15951 2021-03-09 op static int in_minibuffer;
165 9ca15951 2021-03-09 op
166 9ca15951 2021-03-09 op static struct {
167 9cb0f9ce 2021-03-10 op char *curmesg;
168 9cb0f9ce 2021-03-10 op
169 040fbdf8 2021-03-10 op char buf[1025];
170 17e5106b 2021-03-21 op char *curs;
171 17e5106b 2021-03-21 op size_t cpoff;
172 5cd2ebb1 2021-03-11 op char prompt[32];
173 b360ebb3 2021-03-10 op void (*donefn)(void);
174 b360ebb3 2021-03-10 op void (*abortfn)(void);
175 22268e11 2021-03-11 op
176 3148eeac 2021-03-13 op struct histhead *history;
177 3148eeac 2021-03-13 op struct hist *hist_cur;
178 17e5106b 2021-03-21 op size_t hist_off;
179 9ca15951 2021-03-09 op } ministate;
180 9ca15951 2021-03-09 op
181 f95d82dd 2021-03-11 op struct lineprefix {
182 f95d82dd 2021-03-11 op const char *prfx1;
183 f95d82dd 2021-03-11 op const char *prfx2;
184 f95d82dd 2021-03-11 op } line_prefixes[] = {
185 f95d82dd 2021-03-11 op [LINE_TEXT] = { "", "" },
186 f95d82dd 2021-03-11 op [LINE_LINK] = { "=> ", " " },
187 f95d82dd 2021-03-11 op [LINE_TITLE_1] = { "# ", " " },
188 f95d82dd 2021-03-11 op [LINE_TITLE_2] = { "## ", " " },
189 f95d82dd 2021-03-11 op [LINE_TITLE_3] = { "### ", " " },
190 f95d82dd 2021-03-11 op [LINE_ITEM] = { "* ", " " },
191 71d5deec 2021-03-19 op [LINE_QUOTE] = { "> ", " " },
192 803ff456 2021-03-17 op [LINE_PRE_START] = { "```", " " },
193 f95d82dd 2021-03-11 op [LINE_PRE_CONTENT] = { "", "" },
194 f95d82dd 2021-03-11 op [LINE_PRE_END] = { "```", "```" },
195 d3d56d8a 2021-03-11 op };
196 d3d56d8a 2021-03-11 op
197 31840026 2021-03-16 op static struct line_face {
198 803ff456 2021-03-17 op int prefix_prop;
199 803ff456 2021-03-17 op int text_prop;
200 d3d56d8a 2021-03-11 op } line_faces[] = {
201 803ff456 2021-03-17 op [LINE_TEXT] = { 0, 0 },
202 803ff456 2021-03-17 op [LINE_LINK] = { 0, A_UNDERLINE },
203 803ff456 2021-03-17 op [LINE_TITLE_1] = { A_BOLD, A_BOLD },
204 803ff456 2021-03-17 op [LINE_TITLE_2] = { A_BOLD, A_BOLD },
205 803ff456 2021-03-17 op [LINE_TITLE_3] = { A_BOLD, A_BOLD },
206 803ff456 2021-03-17 op [LINE_ITEM] = { 0, 0 },
207 803ff456 2021-03-17 op [LINE_QUOTE] = { 0, A_DIM },
208 803ff456 2021-03-17 op [LINE_PRE_START] = { 0, 0 },
209 803ff456 2021-03-17 op [LINE_PRE_CONTENT] = { 0, 0 },
210 803ff456 2021-03-17 op [LINE_PRE_END] = { 0, 0 },
211 cb6c7aa0 2021-03-16 op };
212 cb6c7aa0 2021-03-16 op
213 cb6c7aa0 2021-03-16 op static struct tab_face {
214 cb6c7aa0 2021-03-16 op int background, tab, current_tab;
215 cb6c7aa0 2021-03-16 op } tab_face = {
216 cb6c7aa0 2021-03-16 op A_REVERSE, A_REVERSE, A_NORMAL
217 f95d82dd 2021-03-11 op };
218 f95d82dd 2021-03-11 op
219 65d9b3ca 2021-03-14 op static void
220 65d9b3ca 2021-03-14 op empty_vlist(struct tab *tab)
221 65d9b3ca 2021-03-14 op {
222 65d9b3ca 2021-03-14 op struct vline *vl, *t;
223 65d9b3ca 2021-03-14 op
224 452589f7 2021-03-16 op tab->s.current_line = NULL;
225 65d9b3ca 2021-03-14 op tab->s.line_max = 0;
226 65d9b3ca 2021-03-14 op
227 65d9b3ca 2021-03-14 op TAILQ_FOREACH_SAFE(vl, &tab->s.head, vlines, t) {
228 65d9b3ca 2021-03-14 op TAILQ_REMOVE(&tab->s.head, vl, vlines);
229 65d9b3ca 2021-03-14 op free(vl->line);
230 65d9b3ca 2021-03-14 op free(vl);
231 65d9b3ca 2021-03-14 op }
232 65d9b3ca 2021-03-14 op }
233 65d9b3ca 2021-03-14 op
234 f832146f 2021-03-09 op static inline void
235 f832146f 2021-03-09 op global_set_key(const char *key, void (*fn)(struct tab*))
236 f832146f 2021-03-09 op {
237 67c8ed7f 2021-03-13 op if (!kmap_define_key(&global_map, key, fn))
238 67c8ed7f 2021-03-13 op _exit(1);
239 f832146f 2021-03-09 op }
240 f832146f 2021-03-09 op
241 9ca15951 2021-03-09 op static inline void
242 fa3fd864 2021-03-10 op minibuffer_set_key(const char *key, void (*fn)(struct tab*))
243 9ca15951 2021-03-09 op {
244 67c8ed7f 2021-03-13 op if (!kmap_define_key(&minibuffer_map, key, fn))
245 67c8ed7f 2021-03-13 op _exit(1);
246 9ca15951 2021-03-09 op }
247 9ca15951 2021-03-09 op
248 f832146f 2021-03-09 op static void
249 f832146f 2021-03-09 op load_default_keys(void)
250 f832146f 2021-03-09 op {
251 9ca15951 2021-03-09 op /* === global map === */
252 9ca15951 2021-03-09 op
253 f832146f 2021-03-09 op /* emacs */
254 f832146f 2021-03-09 op global_set_key("C-p", cmd_previous_line);
255 f832146f 2021-03-09 op global_set_key("C-n", cmd_next_line);
256 f832146f 2021-03-09 op global_set_key("C-f", cmd_forward_char);
257 f832146f 2021-03-09 op global_set_key("C-b", cmd_backward_char);
258 852d03e8 2021-03-17 op global_set_key("M-{", cmd_backward_paragraph);
259 852d03e8 2021-03-17 op global_set_key("M-}", cmd_forward_paragraph);
260 a329982b 2021-03-11 op global_set_key("C-a", cmd_move_beginning_of_line);
261 a329982b 2021-03-11 op global_set_key("C-e", cmd_move_end_of_line);
262 f832146f 2021-03-09 op
263 f832146f 2021-03-09 op global_set_key("M-v", cmd_scroll_up);
264 f832146f 2021-03-09 op global_set_key("C-v", cmd_scroll_down);
265 929c2d9f 2021-03-13 op global_set_key("M-space", cmd_scroll_up);
266 929c2d9f 2021-03-13 op global_set_key("space", cmd_scroll_down);
267 f832146f 2021-03-09 op
268 f832146f 2021-03-09 op global_set_key("C-x C-c", cmd_kill_telescope);
269 f832146f 2021-03-09 op
270 3b4f9e49 2021-03-11 op global_set_key("C-g", cmd_clear_minibuf);
271 3b4f9e49 2021-03-11 op
272 9ca15951 2021-03-09 op global_set_key("M-x", cmd_execute_extended_command);
273 5cd2ebb1 2021-03-11 op global_set_key("C-x C-f", cmd_load_url);
274 5cd2ebb1 2021-03-11 op global_set_key("C-x M-f", cmd_load_current_url);
275 9ca15951 2021-03-09 op
276 7c7d7bb7 2021-03-10 op global_set_key("C-x t 0", cmd_tab_close);
277 fea845b6 2021-03-15 op global_set_key("C-x t 1", cmd_tab_close_other);
278 7c7d7bb7 2021-03-10 op global_set_key("C-x t 2", cmd_tab_new);
279 7c7d7bb7 2021-03-10 op global_set_key("C-x t o", cmd_tab_next);
280 7c7d7bb7 2021-03-10 op global_set_key("C-x t O", cmd_tab_previous);
281 7c7d7bb7 2021-03-10 op
282 e19f9a04 2021-03-11 op global_set_key("M-<", cmd_beginning_of_buffer);
283 e19f9a04 2021-03-11 op global_set_key("M->", cmd_end_of_buffer);
284 e19f9a04 2021-03-11 op
285 2051e653 2021-03-13 op global_set_key("C-M-b", cmd_previous_page);
286 2051e653 2021-03-13 op global_set_key("C-M-f", cmd_next_page);
287 2051e653 2021-03-13 op
288 740f578b 2021-03-15 op global_set_key("<f7> a", cmd_bookmark_page);
289 de0b2139 2021-03-15 op global_set_key("<f7> <f7>", cmd_goto_bookmarks);
290 740f578b 2021-03-15 op
291 f832146f 2021-03-09 op /* vi/vi-like */
292 f832146f 2021-03-09 op global_set_key("k", cmd_previous_line);
293 f832146f 2021-03-09 op global_set_key("j", cmd_next_line);
294 f832146f 2021-03-09 op global_set_key("l", cmd_forward_char);
295 f832146f 2021-03-09 op global_set_key("h", cmd_backward_char);
296 852d03e8 2021-03-17 op global_set_key("{", cmd_backward_paragraph);
297 852d03e8 2021-03-17 op global_set_key("}", cmd_forward_paragraph);
298 a329982b 2021-03-11 op global_set_key("^", cmd_move_beginning_of_line);
299 a329982b 2021-03-11 op global_set_key("$", cmd_move_end_of_line);
300 f832146f 2021-03-09 op
301 ed44414d 2021-03-09 op global_set_key("K", cmd_scroll_line_up);
302 ed44414d 2021-03-09 op global_set_key("J", cmd_scroll_line_down);
303 f832146f 2021-03-09 op
304 a02335e9 2021-03-15 op global_set_key("g D", cmd_tab_close);
305 a02335e9 2021-03-15 op global_set_key("g N", cmd_tab_new);
306 a02335e9 2021-03-15 op global_set_key("g t", cmd_tab_next);
307 a02335e9 2021-03-15 op global_set_key("g T", cmd_tab_previous);
308 a02335e9 2021-03-15 op
309 e19f9a04 2021-03-11 op global_set_key("g g", cmd_beginning_of_buffer);
310 e19f9a04 2021-03-11 op global_set_key("G", cmd_end_of_buffer);
311 e19f9a04 2021-03-11 op
312 2051e653 2021-03-13 op global_set_key("H", cmd_previous_page);
313 2051e653 2021-03-13 op global_set_key("L", cmd_next_page);
314 2051e653 2021-03-13 op
315 f832146f 2021-03-09 op /* tmp */
316 f832146f 2021-03-09 op global_set_key("q", cmd_kill_telescope);
317 f832146f 2021-03-09 op
318 3b4f9e49 2021-03-11 op global_set_key("esc", cmd_clear_minibuf);
319 3b4f9e49 2021-03-11 op
320 9ca15951 2021-03-09 op global_set_key(":", cmd_execute_extended_command);
321 9ca15951 2021-03-09 op
322 f832146f 2021-03-09 op /* cua */
323 f832146f 2021-03-09 op global_set_key("<up>", cmd_previous_line);
324 f832146f 2021-03-09 op global_set_key("<down>", cmd_next_line);
325 f832146f 2021-03-09 op global_set_key("<right>", cmd_forward_char);
326 f832146f 2021-03-09 op global_set_key("<left>", cmd_backward_char);
327 ed44414d 2021-03-09 op global_set_key("<prior>", cmd_scroll_up);
328 ed44414d 2021-03-09 op global_set_key("<next>", cmd_scroll_down);
329 f832146f 2021-03-09 op
330 2051e653 2021-03-13 op global_set_key("M-<left>", cmd_previous_page);
331 2051e653 2021-03-13 op global_set_key("M-<right>", cmd_next_page);
332 2051e653 2021-03-13 op
333 f832146f 2021-03-09 op /* "ncurses standard" */
334 f832146f 2021-03-09 op global_set_key("C-l", cmd_redraw);
335 f832146f 2021-03-09 op
336 f832146f 2021-03-09 op /* global */
337 f832146f 2021-03-09 op global_set_key("C-m", cmd_push_button);
338 b1df9b71 2021-03-12 op global_set_key("M-enter", cmd_push_button_new_tab);
339 a8c28919 2021-03-16 op global_set_key("M-tab", cmd_previous_button);
340 a8c28919 2021-03-16 op global_set_key("tab", cmd_next_button);
341 9ca15951 2021-03-09 op
342 fa3fd864 2021-03-10 op /* === minibuffer map === */
343 b360ebb3 2021-03-10 op minibuffer_set_key("ret", cmd_mini_complete_and_exit);
344 b360ebb3 2021-03-10 op minibuffer_set_key("C-g", cmd_mini_abort);
345 b360ebb3 2021-03-10 op minibuffer_set_key("esc", cmd_mini_abort);
346 d67133bf 2021-03-12 op minibuffer_set_key("C-d", cmd_mini_delete_char);
347 d67133bf 2021-03-12 op minibuffer_set_key("del", cmd_mini_delete_backward_char);
348 9ca15951 2021-03-09 op
349 fa3fd864 2021-03-10 op minibuffer_set_key("C-f", cmd_mini_forward_char);
350 fa3fd864 2021-03-10 op minibuffer_set_key("C-b", cmd_mini_backward_char);
351 5b2bf704 2021-03-12 op minibuffer_set_key("<right>", cmd_mini_forward_char);
352 5b2bf704 2021-03-12 op minibuffer_set_key("<left>", cmd_mini_backward_char);
353 fa3fd864 2021-03-10 op minibuffer_set_key("C-e", cmd_mini_move_end_of_line);
354 fa3fd864 2021-03-10 op minibuffer_set_key("C-a", cmd_mini_move_beginning_of_line);
355 fa3fd864 2021-03-10 op minibuffer_set_key("<end>", cmd_mini_move_end_of_line);
356 fa3fd864 2021-03-10 op minibuffer_set_key("<home>", cmd_mini_move_beginning_of_line);
357 fa3fd864 2021-03-10 op minibuffer_set_key("C-k", cmd_mini_kill_line);
358 22268e11 2021-03-11 op
359 22268e11 2021-03-11 op minibuffer_set_key("M-p", cmd_mini_previous_history_element);
360 22268e11 2021-03-11 op minibuffer_set_key("M-n", cmd_mini_next_history_element);
361 22268e11 2021-03-11 op minibuffer_set_key("<up>", cmd_mini_previous_history_element);
362 22268e11 2021-03-11 op minibuffer_set_key("<down>", cmd_mini_next_history_element);
363 1d08c280 2021-03-06 op }
364 1d08c280 2021-03-06 op
365 48e9d457 2021-03-06 op static void
366 48e9d457 2021-03-06 op restore_cursor(struct tab *tab)
367 48e9d457 2021-03-06 op {
368 452589f7 2021-03-16 op struct vline *vl;
369 452589f7 2021-03-16 op const char *prfx;
370 452589f7 2021-03-16 op
371 452589f7 2021-03-16 op vl =tab->s.current_line;
372 452589f7 2021-03-16 op if (vl == NULL || vl->line == NULL)
373 452589f7 2021-03-16 op tab->s.curs_x = tab->s.line_x = 0;
374 452589f7 2021-03-16 op else
375 174b3cdf 2021-03-21 op tab->s.curs_x = utf8_snwidth(vl->line, tab->s.line_x);
376 452589f7 2021-03-16 op
377 452589f7 2021-03-16 op if (vl != NULL) {
378 452589f7 2021-03-16 op prfx = line_prefixes[vl->parent->type].prfx1;
379 174b3cdf 2021-03-21 op tab->s.curs_x += utf8_swidth(prfx);
380 452589f7 2021-03-16 op }
381 48e9d457 2021-03-06 op }
382 1d08c280 2021-03-06 op
383 1d08c280 2021-03-06 op static void
384 46a9311e 2021-03-08 op cmd_previous_line(struct tab *tab)
385 1d08c280 2021-03-06 op {
386 452589f7 2021-03-16 op struct vline *vl;
387 452589f7 2021-03-16 op
388 452589f7 2021-03-16 op if (tab->s.current_line == NULL
389 452589f7 2021-03-16 op || (vl = TAILQ_PREV(tab->s.current_line, vhead, vlines)) == NULL)
390 452589f7 2021-03-16 op return;
391 452589f7 2021-03-16 op
392 65d9b3ca 2021-03-14 op if (--tab->s.curs_y < 0) {
393 65d9b3ca 2021-03-14 op tab->s.curs_y = 0;
394 ed44414d 2021-03-09 op cmd_scroll_line_up(tab);
395 452589f7 2021-03-16 op return;
396 4dd664ce 2021-03-06 op }
397 4dd664ce 2021-03-06 op
398 452589f7 2021-03-16 op tab->s.current_line = vl;
399 48e9d457 2021-03-06 op restore_cursor(tab);
400 1d08c280 2021-03-06 op }
401 1d08c280 2021-03-06 op
402 1d08c280 2021-03-06 op static void
403 46a9311e 2021-03-08 op cmd_next_line(struct tab *tab)
404 1d08c280 2021-03-06 op {
405 452589f7 2021-03-16 op struct vline *vl;
406 452589f7 2021-03-16 op
407 452589f7 2021-03-16 op if (tab->s.current_line == NULL
408 452589f7 2021-03-16 op || (vl = TAILQ_NEXT(tab->s.current_line, vlines)) == NULL)
409 fed61466 2021-03-11 op return;
410 fed61466 2021-03-11 op
411 65d9b3ca 2021-03-14 op if (++tab->s.curs_y > body_lines-1) {
412 65d9b3ca 2021-03-14 op tab->s.curs_y = body_lines-1;
413 ed44414d 2021-03-09 op cmd_scroll_line_down(tab);
414 452589f7 2021-03-16 op return;
415 4dd664ce 2021-03-06 op }
416 4dd664ce 2021-03-06 op
417 452589f7 2021-03-16 op tab->s.current_line = vl;
418 48e9d457 2021-03-06 op restore_cursor(tab);
419 1d08c280 2021-03-06 op }
420 1d08c280 2021-03-06 op
421 1d08c280 2021-03-06 op static void
422 88597eaf 2021-03-17 op cmd_backward_char(struct tab *tab)
423 1d08c280 2021-03-06 op {
424 88597eaf 2021-03-17 op if (tab->s.line_x != 0)
425 88597eaf 2021-03-17 op tab->s.line_x--;
426 48e9d457 2021-03-06 op restore_cursor(tab);
427 1d08c280 2021-03-06 op }
428 1d08c280 2021-03-06 op
429 1d08c280 2021-03-06 op static void
430 88597eaf 2021-03-17 op cmd_forward_char(struct tab *tab)
431 1d08c280 2021-03-06 op {
432 88597eaf 2021-03-17 op tab->s.line_x++;
433 a329982b 2021-03-11 op restore_cursor(tab);
434 852d03e8 2021-03-17 op }
435 852d03e8 2021-03-17 op
436 852d03e8 2021-03-17 op static void
437 852d03e8 2021-03-17 op cmd_backward_paragraph(struct tab *tab)
438 852d03e8 2021-03-17 op {
439 852d03e8 2021-03-17 op do {
440 852d03e8 2021-03-17 op if (tab->s.current_line == NULL ||
441 852d03e8 2021-03-17 op tab->s.current_line == TAILQ_FIRST(&tab->s.head)) {
442 852d03e8 2021-03-17 op message("No previous paragraph");
443 852d03e8 2021-03-17 op return;
444 852d03e8 2021-03-17 op }
445 852d03e8 2021-03-17 op cmd_previous_line(tab);
446 852d03e8 2021-03-17 op } while (tab->s.current_line->line != NULL ||
447 852d03e8 2021-03-17 op tab->s.current_line->parent->type != LINE_TEXT);
448 852d03e8 2021-03-17 op }
449 852d03e8 2021-03-17 op
450 852d03e8 2021-03-17 op static void
451 852d03e8 2021-03-17 op cmd_forward_paragraph(struct tab *tab)
452 852d03e8 2021-03-17 op {
453 852d03e8 2021-03-17 op do {
454 852d03e8 2021-03-17 op if (tab->s.current_line == NULL ||
455 852d03e8 2021-03-17 op tab->s.current_line == TAILQ_LAST(&tab->s.head, vhead)) {
456 852d03e8 2021-03-17 op message("No next paragraph");
457 852d03e8 2021-03-17 op return;
458 852d03e8 2021-03-17 op }
459 852d03e8 2021-03-17 op cmd_next_line(tab);
460 852d03e8 2021-03-17 op } while (tab->s.current_line->line != NULL ||
461 852d03e8 2021-03-17 op tab->s.current_line->parent->type != LINE_TEXT);
462 a329982b 2021-03-11 op }
463 a329982b 2021-03-11 op
464 a329982b 2021-03-11 op static void
465 a329982b 2021-03-11 op cmd_move_beginning_of_line(struct tab *tab)
466 a329982b 2021-03-11 op {
467 452589f7 2021-03-16 op tab->s.line_x = 0;
468 a329982b 2021-03-11 op restore_cursor(tab);
469 a329982b 2021-03-11 op }
470 a329982b 2021-03-11 op
471 a329982b 2021-03-11 op static void
472 a329982b 2021-03-11 op cmd_move_end_of_line(struct tab *tab)
473 a329982b 2021-03-11 op {
474 9a25f829 2021-03-14 op struct vline *vl;
475 a329982b 2021-03-11 op
476 452589f7 2021-03-16 op vl = tab->s.current_line;
477 452589f7 2021-03-16 op if (vl->line == NULL)
478 452589f7 2021-03-16 op return;
479 174b3cdf 2021-03-21 op tab->s.line_x = utf8_cplen(vl->line);
480 48e9d457 2021-03-06 op restore_cursor(tab);
481 1d08c280 2021-03-06 op }
482 1d08c280 2021-03-06 op
483 1d08c280 2021-03-06 op static void
484 46a9311e 2021-03-08 op cmd_redraw(struct tab *tab)
485 1d08c280 2021-03-06 op {
486 b1738d2e 2021-03-06 op handle_resize(0, 0, NULL);
487 1d08c280 2021-03-06 op }
488 1d08c280 2021-03-06 op
489 1d08c280 2021-03-06 op static void
490 ed44414d 2021-03-09 op cmd_scroll_line_up(struct tab *tab)
491 1d08c280 2021-03-06 op {
492 9a25f829 2021-03-14 op struct vline *vl;
493 48e9d457 2021-03-06 op
494 65d9b3ca 2021-03-14 op if (tab->s.line_off == 0)
495 48e9d457 2021-03-06 op return;
496 48e9d457 2021-03-06 op
497 65d9b3ca 2021-03-14 op vl = nth_line(tab, --tab->s.line_off);
498 48e9d457 2021-03-06 op wscrl(body, -1);
499 48e9d457 2021-03-06 op wmove(body, 0, 0);
500 9a25f829 2021-03-14 op print_vline(vl);
501 452589f7 2021-03-16 op
502 452589f7 2021-03-16 op tab->s.current_line = TAILQ_PREV(tab->s.current_line, vhead, vlines);
503 174b3cdf 2021-03-21 op restore_cursor(tab);
504 1d08c280 2021-03-06 op }
505 1d08c280 2021-03-06 op
506 1d08c280 2021-03-06 op static void
507 ed44414d 2021-03-09 op cmd_scroll_line_down(struct tab *tab)
508 1d08c280 2021-03-06 op {
509 9a25f829 2021-03-14 op struct vline *vl;
510 48e9d457 2021-03-06 op
511 452589f7 2021-03-16 op vl = tab->s.current_line;
512 452589f7 2021-03-16 op if ((vl = TAILQ_NEXT(vl, vlines)) == NULL)
513 48e9d457 2021-03-06 op return;
514 452589f7 2021-03-16 op tab->s.current_line = vl;
515 48e9d457 2021-03-06 op
516 65d9b3ca 2021-03-14 op tab->s.line_off++;
517 48e9d457 2021-03-06 op wscrl(body, 1);
518 48e9d457 2021-03-06 op
519 754622a2 2021-03-15 op if (tab->s.line_max - tab->s.line_off < (size_t)body_lines)
520 48e9d457 2021-03-06 op return;
521 48e9d457 2021-03-06 op
522 65d9b3ca 2021-03-14 op vl = nth_line(tab, tab->s.line_off + body_lines-1);
523 48e9d457 2021-03-06 op wmove(body, body_lines-1, 0);
524 9a25f829 2021-03-14 op print_vline(vl);
525 174b3cdf 2021-03-21 op
526 174b3cdf 2021-03-21 op restore_cursor(tab);
527 ed44414d 2021-03-09 op }
528 ed44414d 2021-03-09 op
529 ed44414d 2021-03-09 op static void
530 ed44414d 2021-03-09 op cmd_scroll_up(struct tab *tab)
531 ed44414d 2021-03-09 op {
532 ed44414d 2021-03-09 op size_t off;
533 ed44414d 2021-03-09 op
534 ed44414d 2021-03-09 op off = body_lines+1;
535 ed44414d 2021-03-09 op
536 ed44414d 2021-03-09 op for (; off > 0; --off)
537 ed44414d 2021-03-09 op cmd_scroll_line_up(tab);
538 1d08c280 2021-03-06 op }
539 1d08c280 2021-03-06 op
540 1d08c280 2021-03-06 op static void
541 ed44414d 2021-03-09 op cmd_scroll_down(struct tab *tab)
542 ed44414d 2021-03-09 op {
543 338eecdc 2021-03-12 op size_t off;
544 ed44414d 2021-03-09 op
545 338eecdc 2021-03-12 op off = body_lines+1;
546 ed44414d 2021-03-09 op
547 338eecdc 2021-03-12 op for (; off > 0; --off)
548 ed44414d 2021-03-09 op cmd_scroll_line_down(tab);
549 e19f9a04 2021-03-11 op }
550 e19f9a04 2021-03-11 op
551 e19f9a04 2021-03-11 op static void
552 e19f9a04 2021-03-11 op cmd_beginning_of_buffer(struct tab *tab)
553 e19f9a04 2021-03-11 op {
554 452589f7 2021-03-16 op tab->s.current_line = TAILQ_FIRST(&tab->s.head);
555 65d9b3ca 2021-03-14 op tab->s.line_off = 0;
556 65d9b3ca 2021-03-14 op tab->s.curs_y = 0;
557 452589f7 2021-03-16 op tab->s.line_x = 0;
558 452589f7 2021-03-16 op restore_cursor(tab);
559 e19f9a04 2021-03-11 op redraw_body(tab);
560 e19f9a04 2021-03-11 op }
561 e19f9a04 2021-03-11 op
562 e19f9a04 2021-03-11 op static void
563 e19f9a04 2021-03-11 op cmd_end_of_buffer(struct tab *tab)
564 e19f9a04 2021-03-11 op {
565 e19f9a04 2021-03-11 op ssize_t off;
566 e19f9a04 2021-03-11 op
567 65d9b3ca 2021-03-14 op off = tab->s.line_max - body_lines;
568 e19f9a04 2021-03-11 op off = MAX(0, off);
569 e19f9a04 2021-03-11 op
570 65d9b3ca 2021-03-14 op tab->s.line_off = off;
571 452589f7 2021-03-16 op tab->s.curs_y = MIN((size_t)body_lines, tab->s.line_max-1);
572 e19f9a04 2021-03-11 op
573 452589f7 2021-03-16 op tab->s.current_line = TAILQ_LAST(&tab->s.head, vhead);
574 452589f7 2021-03-16 op tab->s.line_x = body_cols;
575 452589f7 2021-03-16 op restore_cursor(tab);
576 e19f9a04 2021-03-11 op redraw_body(tab);
577 ed44414d 2021-03-09 op }
578 ed44414d 2021-03-09 op
579 ed44414d 2021-03-09 op static void
580 46a9311e 2021-03-08 op cmd_kill_telescope(struct tab *tab)
581 1d08c280 2021-03-06 op {
582 1d08c280 2021-03-06 op event_loopbreak();
583 1d08c280 2021-03-06 op }
584 1d08c280 2021-03-06 op
585 1d08c280 2021-03-06 op static void
586 46a9311e 2021-03-08 op cmd_push_button(struct tab *tab)
587 2a4ad912 2021-03-08 op {
588 9a25f829 2021-03-14 op struct vline *vl;
589 2a4ad912 2021-03-08 op size_t nth;
590 2a4ad912 2021-03-08 op
591 65d9b3ca 2021-03-14 op nth = tab->s.line_off + tab->s.curs_y;
592 65d9b3ca 2021-03-14 op if (nth >= tab->s.line_max)
593 2a4ad912 2021-03-08 op return;
594 9a25f829 2021-03-14 op vl = nth_line(tab, nth);
595 9a25f829 2021-03-14 op if (vl->parent->type != LINE_LINK)
596 43a1b8d0 2021-03-09 op return;
597 43a1b8d0 2021-03-09 op
598 9a25f829 2021-03-14 op load_url_in_tab(tab, vl->parent->alt);
599 3b4f9e49 2021-03-11 op }
600 3b4f9e49 2021-03-11 op
601 3b4f9e49 2021-03-11 op static void
602 b1df9b71 2021-03-12 op cmd_push_button_new_tab(struct tab *tab)
603 b1df9b71 2021-03-12 op {
604 9a25f829 2021-03-14 op struct vline *vl;
605 b1df9b71 2021-03-12 op size_t nth;
606 b1df9b71 2021-03-12 op
607 65d9b3ca 2021-03-14 op nth = tab->s.line_off + tab->s.curs_y;
608 65d9b3ca 2021-03-14 op if (nth > tab->s.line_max)
609 b1df9b71 2021-03-12 op return;
610 9a25f829 2021-03-14 op vl = nth_line(tab, nth);
611 9a25f829 2021-03-14 op if (vl->parent->type != LINE_LINK)
612 b1df9b71 2021-03-12 op return;
613 b1df9b71 2021-03-12 op
614 1b81bc33 2021-03-15 op new_tab(vl->parent->alt);
615 a8c28919 2021-03-16 op }
616 a8c28919 2021-03-16 op
617 a8c28919 2021-03-16 op static void
618 a8c28919 2021-03-16 op cmd_previous_button(struct tab *tab)
619 a8c28919 2021-03-16 op {
620 a8c28919 2021-03-16 op do {
621 a8c28919 2021-03-16 op if (tab->s.current_line == NULL ||
622 a8c28919 2021-03-16 op tab->s.current_line == TAILQ_FIRST(&tab->s.head)) {
623 a8c28919 2021-03-16 op message("No previous link");
624 a8c28919 2021-03-16 op return;
625 a8c28919 2021-03-16 op }
626 a8c28919 2021-03-16 op cmd_previous_line(tab);
627 a8c28919 2021-03-16 op } while (tab->s.current_line->parent->type != LINE_LINK);
628 a8c28919 2021-03-16 op }
629 a8c28919 2021-03-16 op
630 a8c28919 2021-03-16 op static void
631 a8c28919 2021-03-16 op cmd_next_button(struct tab *tab)
632 a8c28919 2021-03-16 op {
633 a8c28919 2021-03-16 op do {
634 a8c28919 2021-03-16 op if (tab->s.current_line == NULL ||
635 a8c28919 2021-03-16 op tab->s.current_line == TAILQ_LAST(&tab->s.head, vhead)) {
636 a8c28919 2021-03-16 op message("No next link");
637 a8c28919 2021-03-16 op return;
638 a8c28919 2021-03-16 op }
639 a8c28919 2021-03-16 op cmd_next_line(tab);
640 a8c28919 2021-03-16 op } while (tab->s.current_line->parent->type != LINE_LINK);
641 2051e653 2021-03-13 op }
642 2051e653 2021-03-13 op
643 2051e653 2021-03-13 op static void
644 2051e653 2021-03-13 op cmd_previous_page(struct tab *tab)
645 2051e653 2021-03-13 op {
646 2051e653 2021-03-13 op if (!load_previous_page(tab))
647 2051e653 2021-03-13 op message("No previous page");
648 c40c2250 2021-03-14 op else
649 c40c2250 2021-03-14 op start_loading_anim(tab);
650 2051e653 2021-03-13 op }
651 2051e653 2021-03-13 op
652 2051e653 2021-03-13 op static void
653 2051e653 2021-03-13 op cmd_next_page(struct tab *tab)
654 2051e653 2021-03-13 op {
655 2051e653 2021-03-13 op if (!load_next_page(tab))
656 2051e653 2021-03-13 op message("No next page");
657 c40c2250 2021-03-14 op else
658 c40c2250 2021-03-14 op start_loading_anim(tab);
659 b1df9b71 2021-03-12 op }
660 b1df9b71 2021-03-12 op
661 b1df9b71 2021-03-12 op static void
662 3b4f9e49 2021-03-11 op cmd_clear_minibuf(struct tab *tab)
663 3b4f9e49 2021-03-11 op {
664 3b4f9e49 2021-03-11 op handle_clear_minibuf(0, 0, NULL);
665 9ca15951 2021-03-09 op }
666 9ca15951 2021-03-09 op
667 9ca15951 2021-03-09 op static void
668 9ca15951 2021-03-09 op cmd_execute_extended_command(struct tab *tab)
669 9ca15951 2021-03-09 op {
670 9ca15951 2021-03-09 op size_t len;
671 9ca15951 2021-03-09 op
672 22268e11 2021-03-11 op enter_minibuffer(eecmd_self_insert, eecmd_select, exit_minibuffer,
673 22268e11 2021-03-11 op &eecmd_history);
674 9ca15951 2021-03-09 op
675 9ca15951 2021-03-09 op len = sizeof(ministate.prompt);
676 9ca15951 2021-03-09 op strlcpy(ministate.prompt, "", len);
677 9ca15951 2021-03-09 op
678 9ca15951 2021-03-09 op if (thiskey.meta)
679 9ca15951 2021-03-09 op strlcat(ministate.prompt, "M-", len);
680 9ca15951 2021-03-09 op
681 9ca15951 2021-03-09 op strlcat(ministate.prompt, keyname(thiskey.key), len);
682 9ca15951 2021-03-09 op strlcat(ministate.prompt, " ", len);
683 9ca15951 2021-03-09 op }
684 9ca15951 2021-03-09 op
685 9ca15951 2021-03-09 op static void
686 7c7d7bb7 2021-03-10 op cmd_tab_close(struct tab *tab)
687 7c7d7bb7 2021-03-10 op {
688 7c7d7bb7 2021-03-10 op struct tab *t;
689 a777f81f 2021-03-10 op
690 7c7d7bb7 2021-03-10 op if (TAILQ_PREV(tab, tabshead, tabs) == NULL &&
691 7c7d7bb7 2021-03-10 op TAILQ_NEXT(tab, tabs) == NULL) {
692 7c7d7bb7 2021-03-10 op message("Can't close the only tab.");
693 a777f81f 2021-03-10 op return;
694 a777f81f 2021-03-10 op }
695 a777f81f 2021-03-10 op
696 d87ffbdc 2021-03-17 op if (evtimer_pending(&tab->s.loadingev, NULL))
697 d87ffbdc 2021-03-17 op evtimer_del(&tab->s.loadingev);
698 d87ffbdc 2021-03-17 op
699 7c7d7bb7 2021-03-10 op stop_tab(tab);
700 7c7d7bb7 2021-03-10 op
701 9d24c64f 2021-03-17 op if ((t = TAILQ_PREV(tab, tabshead, tabs)) == NULL)
702 9d24c64f 2021-03-17 op t = TAILQ_NEXT(tab, tabs);
703 7c7d7bb7 2021-03-10 op TAILQ_REMOVE(&tabshead, tab, tabs);
704 7c7d7bb7 2021-03-10 op free(tab);
705 9d24c64f 2021-03-17 op
706 9d24c64f 2021-03-17 op switch_to_tab(t);
707 9ca15951 2021-03-09 op }
708 9ca15951 2021-03-09 op
709 9ca15951 2021-03-09 op static void
710 fea845b6 2021-03-15 op cmd_tab_close_other(struct tab *tab)
711 fea845b6 2021-03-15 op {
712 fea845b6 2021-03-15 op struct tab *t, *i;
713 fea845b6 2021-03-15 op
714 fea845b6 2021-03-15 op TAILQ_FOREACH_SAFE(t, &tabshead, tabs, i) {
715 fea845b6 2021-03-15 op if (t->flags & TAB_CURRENT)
716 fea845b6 2021-03-15 op continue;
717 fea845b6 2021-03-15 op
718 fea845b6 2021-03-15 op stop_tab(t);
719 fea845b6 2021-03-15 op TAILQ_REMOVE(&tabshead, t, tabs);
720 fea845b6 2021-03-15 op free(t);
721 fea845b6 2021-03-15 op }
722 fea845b6 2021-03-15 op }
723 fea845b6 2021-03-15 op
724 fea845b6 2021-03-15 op static void
725 7c7d7bb7 2021-03-10 op cmd_tab_new(struct tab *tab)
726 7c7d7bb7 2021-03-10 op {
727 1b81bc33 2021-03-15 op new_tab(NEW_TAB_URL);
728 7c7d7bb7 2021-03-10 op }
729 7c7d7bb7 2021-03-10 op
730 7c7d7bb7 2021-03-10 op static void
731 7c7d7bb7 2021-03-10 op cmd_tab_next(struct tab *tab)
732 7c7d7bb7 2021-03-10 op {
733 7c7d7bb7 2021-03-10 op struct tab *t;
734 7c7d7bb7 2021-03-10 op
735 7c7d7bb7 2021-03-10 op tab->flags &= ~TAB_CURRENT;
736 7c7d7bb7 2021-03-10 op
737 7c7d7bb7 2021-03-10 op if ((t = TAILQ_NEXT(tab, tabs)) == NULL)
738 7c7d7bb7 2021-03-10 op t = TAILQ_FIRST(&tabshead);
739 7c7d7bb7 2021-03-10 op t->flags |= TAB_CURRENT;
740 7c7d7bb7 2021-03-10 op }
741 7c7d7bb7 2021-03-10 op
742 7c7d7bb7 2021-03-10 op static void
743 7c7d7bb7 2021-03-10 op cmd_tab_previous(struct tab *tab)
744 7c7d7bb7 2021-03-10 op {
745 7c7d7bb7 2021-03-10 op struct tab *t;
746 7c7d7bb7 2021-03-10 op
747 7c7d7bb7 2021-03-10 op tab->flags &= ~TAB_CURRENT;
748 7c7d7bb7 2021-03-10 op
749 7c7d7bb7 2021-03-10 op if ((t = TAILQ_PREV(tab, tabshead, tabs)) == NULL)
750 7c7d7bb7 2021-03-10 op t = TAILQ_LAST(&tabshead, tabshead);
751 7c7d7bb7 2021-03-10 op t->flags |= TAB_CURRENT;
752 5cd2ebb1 2021-03-11 op }
753 5cd2ebb1 2021-03-11 op
754 5cd2ebb1 2021-03-11 op static void
755 5cd2ebb1 2021-03-11 op cmd_load_url(struct tab *tab)
756 5cd2ebb1 2021-03-11 op {
757 22268e11 2021-03-11 op enter_minibuffer(lu_self_insert, lu_select, exit_minibuffer,
758 22268e11 2021-03-11 op &lu_history);
759 5cd2ebb1 2021-03-11 op strlcpy(ministate.prompt, "Load URL: ", sizeof(ministate.prompt));
760 7c7d7bb7 2021-03-10 op }
761 7c7d7bb7 2021-03-10 op
762 7c7d7bb7 2021-03-10 op static void
763 5cd2ebb1 2021-03-11 op cmd_load_current_url(struct tab *tab)
764 5cd2ebb1 2021-03-11 op {
765 22268e11 2021-03-11 op enter_minibuffer(lu_self_insert, lu_select, exit_minibuffer,
766 22268e11 2021-03-11 op &lu_history);
767 5cd2ebb1 2021-03-11 op strlcpy(ministate.prompt, "Load URL: ", sizeof(ministate.prompt));
768 740f578b 2021-03-15 op strlcpy(ministate.buf, tab->hist_cur->h, sizeof(ministate.buf));
769 17e5106b 2021-03-21 op ministate.curs = strchr(ministate.buf, '\0');
770 740f578b 2021-03-15 op }
771 740f578b 2021-03-15 op
772 740f578b 2021-03-15 op static void
773 740f578b 2021-03-15 op cmd_bookmark_page(struct tab *tab)
774 740f578b 2021-03-15 op {
775 740f578b 2021-03-15 op enter_minibuffer(lu_self_insert, bp_select, exit_minibuffer, NULL);
776 740f578b 2021-03-15 op strlcpy(ministate.prompt, "Bookmark URL: ", sizeof(ministate.prompt));
777 2051e653 2021-03-13 op strlcpy(ministate.buf, tab->hist_cur->h, sizeof(ministate.buf));
778 17e5106b 2021-03-21 op ministate.curs = strchr(ministate.buf, '\0');
779 de0b2139 2021-03-15 op }
780 de0b2139 2021-03-15 op
781 de0b2139 2021-03-15 op static void
782 de0b2139 2021-03-15 op cmd_goto_bookmarks(struct tab *tab)
783 de0b2139 2021-03-15 op {
784 de0b2139 2021-03-15 op load_url_in_tab(tab, "about:bookmarks");
785 5cd2ebb1 2021-03-11 op }
786 5cd2ebb1 2021-03-11 op
787 5cd2ebb1 2021-03-11 op static void
788 7c7d7bb7 2021-03-10 op global_key_unbound(void)
789 7c7d7bb7 2021-03-10 op {
790 7c7d7bb7 2021-03-10 op message("%s is undefined", keybuf);
791 7c7d7bb7 2021-03-10 op }
792 7c7d7bb7 2021-03-10 op
793 7c7d7bb7 2021-03-10 op static void
794 d67133bf 2021-03-12 op cmd_mini_delete_char(struct tab *tab)
795 d67133bf 2021-03-12 op {
796 17e5106b 2021-03-21 op char *n;
797 17e5106b 2021-03-21 op
798 3eecee9e 2021-03-12 op minibuffer_taint_hist();
799 3eecee9e 2021-03-12 op
800 17e5106b 2021-03-21 op if (*(n = utf8_next_cp(ministate.curs)) == '\0')
801 d67133bf 2021-03-12 op return;
802 d67133bf 2021-03-12 op
803 17e5106b 2021-03-21 op memmove(ministate.curs, n, strlen(n)+1);
804 d67133bf 2021-03-12 op }
805 d67133bf 2021-03-12 op
806 d67133bf 2021-03-12 op static void
807 d67133bf 2021-03-12 op cmd_mini_delete_backward_char(struct tab *tab)
808 9ca15951 2021-03-09 op {
809 17e5106b 2021-03-21 op char *p;
810 17e5106b 2021-03-21 op
811 3eecee9e 2021-03-12 op minibuffer_taint_hist();
812 3eecee9e 2021-03-12 op
813 17e5106b 2021-03-21 op if ((p = utf8_prev_cp(ministate.curs, ministate.buf)) == ministate.buf)
814 9ca15951 2021-03-09 op return;
815 9ca15951 2021-03-09 op
816 17e5106b 2021-03-21 op memmove(p, ministate.curs, strlen(ministate.curs)+1);
817 9ca15951 2021-03-09 op }
818 9ca15951 2021-03-09 op
819 9ca15951 2021-03-09 op static void
820 9ca15951 2021-03-09 op cmd_mini_forward_char(struct tab *tab)
821 9ca15951 2021-03-09 op {
822 17e5106b 2021-03-21 op if (*ministate.curs == '\0')
823 9ca15951 2021-03-09 op return;
824 17e5106b 2021-03-21 op ministate.curs = utf8_next_cp(ministate.curs);
825 17e5106b 2021-03-21 op ministate.cpoff++;
826 9ca15951 2021-03-09 op }
827 9ca15951 2021-03-09 op
828 9ca15951 2021-03-09 op static void
829 9ca15951 2021-03-09 op cmd_mini_backward_char(struct tab *tab)
830 9ca15951 2021-03-09 op {
831 17e5106b 2021-03-21 op if (ministate.cpoff == 0)
832 9ca15951 2021-03-09 op return;
833 17e5106b 2021-03-21 op ministate.cpoff--;
834 17e5106b 2021-03-21 op ministate.curs = utf8_prev_cp(ministate.curs-1, ministate.buf);
835 9ca15951 2021-03-09 op }
836 9ca15951 2021-03-09 op
837 9ca15951 2021-03-09 op static void
838 9ca15951 2021-03-09 op cmd_mini_move_end_of_line(struct tab *tab)
839 9ca15951 2021-03-09 op {
840 17e5106b 2021-03-21 op ministate.curs = strchr(ministate.buf, '\0');
841 17e5106b 2021-03-21 op ministate.cpoff = utf8_cplen(ministate.buf);
842 9ca15951 2021-03-09 op }
843 9ca15951 2021-03-09 op
844 9ca15951 2021-03-09 op static void
845 9ca15951 2021-03-09 op cmd_mini_move_beginning_of_line(struct tab *tab)
846 9ca15951 2021-03-09 op {
847 17e5106b 2021-03-21 op ministate.curs = ministate.buf;
848 17e5106b 2021-03-21 op ministate.cpoff = 0;
849 9ca15951 2021-03-09 op }
850 9ca15951 2021-03-09 op
851 9ca15951 2021-03-09 op static void
852 fa3fd864 2021-03-10 op cmd_mini_kill_line(struct tab *tab)
853 fa3fd864 2021-03-10 op {
854 3eecee9e 2021-03-12 op minibuffer_taint_hist();
855 17e5106b 2021-03-21 op *ministate.curs = '\0';
856 fa3fd864 2021-03-10 op }
857 fa3fd864 2021-03-10 op
858 fa3fd864 2021-03-10 op static void
859 b360ebb3 2021-03-10 op cmd_mini_abort(struct tab *tab)
860 b360ebb3 2021-03-10 op {
861 17e5106b 2021-03-21 op ministate.abortfn();
862 b360ebb3 2021-03-10 op }
863 b360ebb3 2021-03-10 op
864 b360ebb3 2021-03-10 op static void
865 b360ebb3 2021-03-10 op cmd_mini_complete_and_exit(struct tab *tab)
866 b360ebb3 2021-03-10 op {
867 22268e11 2021-03-11 op minibuffer_taint_hist();
868 b360ebb3 2021-03-10 op ministate.donefn();
869 22268e11 2021-03-11 op }
870 22268e11 2021-03-11 op
871 22268e11 2021-03-11 op static void
872 22268e11 2021-03-11 op cmd_mini_previous_history_element(struct tab *tab)
873 22268e11 2021-03-11 op {
874 22268e11 2021-03-11 op if (ministate.history == NULL) {
875 22268e11 2021-03-11 op message("No history");
876 22268e11 2021-03-11 op return;
877 22268e11 2021-03-11 op }
878 22268e11 2021-03-11 op
879 22268e11 2021-03-11 op if (ministate.hist_cur == NULL ||
880 22268e11 2021-03-11 op (ministate.hist_cur = TAILQ_PREV(ministate.hist_cur, mhisthead, entries)) == NULL) {
881 22268e11 2021-03-11 op ministate.hist_cur = TAILQ_LAST(&ministate.history->head, mhisthead);
882 22268e11 2021-03-11 op ministate.hist_off = ministate.history->len - 1;
883 22268e11 2021-03-11 op if (ministate.hist_cur == NULL)
884 22268e11 2021-03-11 op message("No prev item");
885 22268e11 2021-03-11 op } else {
886 22268e11 2021-03-11 op ministate.hist_off--;
887 22268e11 2021-03-11 op }
888 22268e11 2021-03-11 op
889 17e5106b 2021-03-21 op if (ministate.hist_cur != NULL)
890 17e5106b 2021-03-21 op ministate.curs = ministate.hist_cur->h;
891 b360ebb3 2021-03-10 op }
892 b360ebb3 2021-03-10 op
893 b360ebb3 2021-03-10 op static void
894 22268e11 2021-03-11 op cmd_mini_next_history_element(struct tab *tab)
895 22268e11 2021-03-11 op {
896 22268e11 2021-03-11 op if (ministate.history == NULL) {
897 22268e11 2021-03-11 op message("No history");
898 22268e11 2021-03-11 op return;
899 22268e11 2021-03-11 op }
900 22268e11 2021-03-11 op
901 22268e11 2021-03-11 op if (ministate.hist_cur == NULL ||
902 22268e11 2021-03-11 op (ministate.hist_cur = TAILQ_NEXT(ministate.hist_cur, entries)) == NULL) {
903 22268e11 2021-03-11 op ministate.hist_cur = TAILQ_FIRST(&ministate.history->head);
904 22268e11 2021-03-11 op ministate.hist_off = 0;
905 22268e11 2021-03-11 op if (ministate.hist_cur == NULL)
906 22268e11 2021-03-11 op message("No next item");
907 22268e11 2021-03-11 op } else {
908 22268e11 2021-03-11 op ministate.hist_off++;
909 22268e11 2021-03-11 op }
910 22268e11 2021-03-11 op
911 17e5106b 2021-03-21 op if (ministate.hist_cur != NULL)
912 17e5106b 2021-03-21 op ministate.curs = ministate.hist_cur->h;
913 22268e11 2021-03-11 op }
914 22268e11 2021-03-11 op
915 22268e11 2021-03-11 op static void
916 22268e11 2021-03-11 op minibuffer_hist_save_entry(void)
917 22268e11 2021-03-11 op {
918 3148eeac 2021-03-13 op struct hist *hist;
919 22268e11 2021-03-11 op
920 22268e11 2021-03-11 op if (ministate.history == NULL)
921 22268e11 2021-03-11 op return;
922 22268e11 2021-03-11 op
923 22268e11 2021-03-11 op if ((hist = calloc(1, sizeof(*hist))) == NULL)
924 22268e11 2021-03-11 op abort();
925 22268e11 2021-03-11 op
926 22268e11 2021-03-11 op strlcpy(hist->h, ministate.buf, sizeof(hist->h));
927 22268e11 2021-03-11 op
928 22268e11 2021-03-11 op if (TAILQ_EMPTY(&ministate.history->head))
929 22268e11 2021-03-11 op TAILQ_INSERT_HEAD(&ministate.history->head, hist, entries);
930 22268e11 2021-03-11 op else
931 22268e11 2021-03-11 op TAILQ_INSERT_TAIL(&ministate.history->head, hist, entries);
932 22268e11 2021-03-11 op ministate.history->len++;
933 22268e11 2021-03-11 op }
934 22268e11 2021-03-11 op
935 22268e11 2021-03-11 op /*
936 22268e11 2021-03-11 op * taint the minibuffer cache: if we're currently showing a history
937 22268e11 2021-03-11 op * element, copy that to the current buf and reset the "history
938 22268e11 2021-03-11 op * navigation" thing.
939 22268e11 2021-03-11 op */
940 22268e11 2021-03-11 op static void
941 22268e11 2021-03-11 op minibuffer_taint_hist(void)
942 22268e11 2021-03-11 op {
943 22268e11 2021-03-11 op if (ministate.hist_cur == NULL)
944 22268e11 2021-03-11 op return;
945 22268e11 2021-03-11 op
946 22268e11 2021-03-11 op strlcpy(ministate.buf, ministate.hist_cur->h, sizeof(ministate.buf));
947 22268e11 2021-03-11 op ministate.hist_cur = NULL;
948 22268e11 2021-03-11 op }
949 22268e11 2021-03-11 op
950 22268e11 2021-03-11 op static void
951 5cd2ebb1 2021-03-11 op minibuffer_self_insert(void)
952 9ca15951 2021-03-09 op {
953 17e5106b 2021-03-21 op char tmp[5] = {0};
954 17e5106b 2021-03-21 op size_t len;
955 17e5106b 2021-03-21 op
956 22268e11 2021-03-11 op minibuffer_taint_hist();
957 22268e11 2021-03-11 op
958 17e5106b 2021-03-21 op if (thiskey.cp == 0)
959 9ca15951 2021-03-09 op return;
960 9ca15951 2021-03-09 op
961 17e5106b 2021-03-21 op len = utf8_encode(thiskey.cp, tmp);
962 17e5106b 2021-03-21 op if (ministate.curs + len > ministate.buf + sizeof(ministate.buf) - 1)
963 17e5106b 2021-03-21 op return;
964 9ca15951 2021-03-09 op
965 17e5106b 2021-03-21 op memmove(ministate.curs + len, ministate.curs, strlen(ministate.curs)+1);
966 17e5106b 2021-03-21 op memcpy(ministate.curs, tmp, len);
967 17e5106b 2021-03-21 op ministate.curs = utf8_next_cp(ministate.curs);
968 17e5106b 2021-03-21 op ministate.cpoff++;
969 b360ebb3 2021-03-10 op }
970 b360ebb3 2021-03-10 op
971 b360ebb3 2021-03-10 op static void
972 5cd2ebb1 2021-03-11 op eecmd_self_insert(void)
973 5cd2ebb1 2021-03-11 op {
974 17e5106b 2021-03-21 op if (thiskey.meta || unicode_isspace(thiskey.cp) ||
975 17e5106b 2021-03-21 op !unicode_isgraph(thiskey.cp)) {
976 5cd2ebb1 2021-03-11 op global_key_unbound();
977 5cd2ebb1 2021-03-11 op return;
978 5cd2ebb1 2021-03-11 op }
979 5cd2ebb1 2021-03-11 op
980 5cd2ebb1 2021-03-11 op minibuffer_self_insert();
981 5cd2ebb1 2021-03-11 op }
982 5cd2ebb1 2021-03-11 op
983 5cd2ebb1 2021-03-11 op static void
984 b360ebb3 2021-03-10 op eecmd_select(void)
985 b360ebb3 2021-03-10 op {
986 b360ebb3 2021-03-10 op exit_minibuffer();
987 22268e11 2021-03-11 op minibuffer_hist_save_entry();
988 b360ebb3 2021-03-10 op message("TODO: try to execute %s", ministate.buf);
989 5cd2ebb1 2021-03-11 op }
990 5cd2ebb1 2021-03-11 op
991 5cd2ebb1 2021-03-11 op static void
992 5cd2ebb1 2021-03-11 op ir_self_insert(void)
993 5cd2ebb1 2021-03-11 op {
994 5cd2ebb1 2021-03-11 op minibuffer_self_insert();
995 5cd2ebb1 2021-03-11 op }
996 5cd2ebb1 2021-03-11 op
997 5cd2ebb1 2021-03-11 op static void
998 5cd2ebb1 2021-03-11 op ir_select(void)
999 5cd2ebb1 2021-03-11 op {
1000 5cd2ebb1 2021-03-11 op char buf[1025] = {0};
1001 5cd2ebb1 2021-03-11 op struct url url;
1002 5cd2ebb1 2021-03-11 op struct tab *tab;
1003 5cd2ebb1 2021-03-11 op
1004 5cd2ebb1 2021-03-11 op tab = current_tab();
1005 5cd2ebb1 2021-03-11 op
1006 5cd2ebb1 2021-03-11 op exit_minibuffer();
1007 22268e11 2021-03-11 op minibuffer_hist_save_entry();
1008 5cd2ebb1 2021-03-11 op
1009 5cd2ebb1 2021-03-11 op /* a bit ugly but... */
1010 5cd2ebb1 2021-03-11 op memcpy(&url, &tab->url, sizeof(tab->url));
1011 5cd2ebb1 2021-03-11 op url_set_query(&url, ministate.buf);
1012 5cd2ebb1 2021-03-11 op url_unparse(&url, buf, sizeof(buf));
1013 5cd2ebb1 2021-03-11 op load_url_in_tab(tab, buf);
1014 5cd2ebb1 2021-03-11 op }
1015 5cd2ebb1 2021-03-11 op
1016 5cd2ebb1 2021-03-11 op static void
1017 5cd2ebb1 2021-03-11 op lu_self_insert(void)
1018 5cd2ebb1 2021-03-11 op {
1019 17e5106b 2021-03-21 op if (thiskey.meta || unicode_isspace(thiskey.key) ||
1020 17e5106b 2021-03-21 op !unicode_isgraph(thiskey.key)) {
1021 5cd2ebb1 2021-03-11 op global_key_unbound();
1022 5cd2ebb1 2021-03-11 op return;
1023 5cd2ebb1 2021-03-11 op }
1024 5cd2ebb1 2021-03-11 op
1025 5cd2ebb1 2021-03-11 op minibuffer_self_insert();
1026 5cd2ebb1 2021-03-11 op }
1027 5cd2ebb1 2021-03-11 op
1028 5cd2ebb1 2021-03-11 op static void
1029 5cd2ebb1 2021-03-11 op lu_select(void)
1030 5cd2ebb1 2021-03-11 op {
1031 5cd2ebb1 2021-03-11 op exit_minibuffer();
1032 22268e11 2021-03-11 op minibuffer_hist_save_entry();
1033 5cd2ebb1 2021-03-11 op load_url_in_tab(current_tab(), ministate.buf);
1034 740f578b 2021-03-15 op }
1035 740f578b 2021-03-15 op
1036 740f578b 2021-03-15 op static void
1037 740f578b 2021-03-15 op bp_select(void)
1038 740f578b 2021-03-15 op {
1039 740f578b 2021-03-15 op exit_minibuffer();
1040 740f578b 2021-03-15 op if (*ministate.buf != '\0')
1041 740f578b 2021-03-15 op add_to_bookmarks(ministate.buf);
1042 740f578b 2021-03-15 op else
1043 740f578b 2021-03-15 op message("Abort.");
1044 2a4ad912 2021-03-08 op }
1045 2a4ad912 2021-03-08 op
1046 9a25f829 2021-03-14 op static struct vline *
1047 48e9d457 2021-03-06 op nth_line(struct tab *tab, size_t n)
1048 48e9d457 2021-03-06 op {
1049 9a25f829 2021-03-14 op struct vline *vl;
1050 48e9d457 2021-03-06 op size_t i;
1051 48e9d457 2021-03-06 op
1052 48e9d457 2021-03-06 op i = 0;
1053 65d9b3ca 2021-03-14 op TAILQ_FOREACH(vl, &tab->s.head, vlines) {
1054 48e9d457 2021-03-06 op if (i == n)
1055 9a25f829 2021-03-14 op return vl;
1056 48e9d457 2021-03-06 op i++;
1057 48e9d457 2021-03-06 op }
1058 48e9d457 2021-03-06 op
1059 48e9d457 2021-03-06 op /* unreachable */
1060 48e9d457 2021-03-06 op abort();
1061 48e9d457 2021-03-06 op }
1062 48e9d457 2021-03-06 op
1063 5e11c00c 2021-03-02 op static struct tab *
1064 5e11c00c 2021-03-02 op current_tab(void)
1065 5e11c00c 2021-03-02 op {
1066 5e11c00c 2021-03-02 op struct tab *t;
1067 5e11c00c 2021-03-02 op
1068 5e11c00c 2021-03-02 op TAILQ_FOREACH(t, &tabshead, tabs) {
1069 5e11c00c 2021-03-02 op if (t->flags & TAB_CURRENT)
1070 5e11c00c 2021-03-02 op return t;
1071 5e11c00c 2021-03-02 op }
1072 5e11c00c 2021-03-02 op
1073 5e11c00c 2021-03-02 op /* unreachable */
1074 5e11c00c 2021-03-02 op abort();
1075 5e11c00c 2021-03-02 op }
1076 5e11c00c 2021-03-02 op
1077 8947c1f2 2021-03-21 op static int
1078 8947c1f2 2021-03-21 op readkey(void)
1079 5e11c00c 2021-03-02 op {
1080 8947c1f2 2021-03-21 op uint32_t state = 0;
1081 19f1448e 2021-03-08 op
1082 8947c1f2 2021-03-21 op if ((thiskey.key = wgetch(body)) == ERR)
1083 8947c1f2 2021-03-21 op return 0;
1084 5e11c00c 2021-03-02 op
1085 8947c1f2 2021-03-21 op thiskey.meta = thiskey.key == 27;
1086 8947c1f2 2021-03-21 op if (thiskey.meta) {
1087 9ca15951 2021-03-09 op thiskey.key = wgetch(body);
1088 c314a314 2021-03-11 op if (thiskey.key == ERR || thiskey.key == 27) {
1089 c314a314 2021-03-11 op thiskey.meta = 0;
1090 9ca15951 2021-03-09 op thiskey.key = 27;
1091 c314a314 2021-03-11 op }
1092 8947c1f2 2021-03-21 op }
1093 8947c1f2 2021-03-21 op
1094 8947c1f2 2021-03-21 op thiskey.cp = 0;
1095 8947c1f2 2021-03-21 op if ((unsigned int)thiskey.key < UINT8_MAX) {
1096 8947c1f2 2021-03-21 op while (1) {
1097 8947c1f2 2021-03-21 op if (!utf8_decode(&state, &thiskey.cp, (uint8_t)thiskey.key))
1098 8947c1f2 2021-03-21 op break;
1099 8947c1f2 2021-03-21 op if ((thiskey.key = wgetch(body)) == ERR) {
1100 8947c1f2 2021-03-21 op message("Error decoding user input");
1101 8947c1f2 2021-03-21 op return 0;
1102 8947c1f2 2021-03-21 op }
1103 8947c1f2 2021-03-21 op }
1104 8947c1f2 2021-03-21 op }
1105 19f1448e 2021-03-08 op
1106 8947c1f2 2021-03-21 op return 1;
1107 8947c1f2 2021-03-21 op }
1108 8947c1f2 2021-03-21 op
1109 8947c1f2 2021-03-21 op static void
1110 8947c1f2 2021-03-21 op dispatch_stdio(int fd, short ev, void *d)
1111 8947c1f2 2021-03-21 op {
1112 8947c1f2 2021-03-21 op struct keymap *k;
1113 8947c1f2 2021-03-21 op const char *keyname;
1114 8947c1f2 2021-03-21 op char tmp[5] = {0};
1115 8947c1f2 2021-03-21 op
1116 8947c1f2 2021-03-21 op if (!readkey())
1117 8947c1f2 2021-03-21 op return;
1118 8947c1f2 2021-03-21 op
1119 7c7d7bb7 2021-03-10 op if (keybuf[0] != '\0')
1120 7c7d7bb7 2021-03-10 op strlcat(keybuf, " ", sizeof(keybuf));
1121 7c7d7bb7 2021-03-10 op if (thiskey.meta)
1122 7c7d7bb7 2021-03-10 op strlcat(keybuf, "M-", sizeof(keybuf));
1123 8947c1f2 2021-03-21 op if (thiskey.cp != 0) {
1124 8947c1f2 2021-03-21 op utf8_encode(thiskey.cp, tmp);
1125 7c7d7bb7 2021-03-10 op strlcat(keybuf, tmp, sizeof(keybuf));
1126 8947c1f2 2021-03-21 op } else {
1127 8947c1f2 2021-03-21 op if ((keyname = unkbd(thiskey.key)) != NULL)
1128 8947c1f2 2021-03-21 op strlcat(keybuf, keyname, sizeof(keybuf));
1129 8947c1f2 2021-03-21 op else {
1130 8947c1f2 2021-03-21 op tmp[0] = thiskey.key;
1131 8947c1f2 2021-03-21 op strlcat(keybuf, tmp, sizeof(keybuf));
1132 8947c1f2 2021-03-21 op }
1133 7c7d7bb7 2021-03-10 op }
1134 7c7d7bb7 2021-03-10 op
1135 9ca15951 2021-03-09 op TAILQ_FOREACH(k, &current_map->m, keymaps) {
1136 9ca15951 2021-03-09 op if (k->meta == thiskey.meta &&
1137 9ca15951 2021-03-09 op k->key == thiskey.key) {
1138 f832146f 2021-03-09 op if (k->fn == NULL)
1139 f832146f 2021-03-09 op current_map = &k->map;
1140 f832146f 2021-03-09 op else {
1141 9ca15951 2021-03-09 op current_map = base_map;
1142 7c7d7bb7 2021-03-10 op strlcpy(keybuf, "", sizeof(keybuf));
1143 f832146f 2021-03-09 op k->fn(current_tab());
1144 f832146f 2021-03-09 op }
1145 1d08c280 2021-03-06 op goto done;
1146 1d08c280 2021-03-06 op }
1147 eb259e66 2021-03-02 op }
1148 eb259e66 2021-03-02 op
1149 7c7d7bb7 2021-03-10 op if (current_map->unhandled_input != NULL)
1150 7c7d7bb7 2021-03-10 op current_map->unhandled_input();
1151 7c7d7bb7 2021-03-10 op else {
1152 7c7d7bb7 2021-03-10 op global_key_unbound();
1153 7c7d7bb7 2021-03-10 op }
1154 7c7d7bb7 2021-03-10 op
1155 7c7d7bb7 2021-03-10 op strlcpy(keybuf, "", sizeof(keybuf));
1156 9ca15951 2021-03-09 op current_map = base_map;
1157 1d08c280 2021-03-06 op
1158 1d08c280 2021-03-06 op done:
1159 179f0f58 2021-03-11 op redraw_tab(current_tab());
1160 a6d450c1 2021-03-06 op }
1161 48e9d457 2021-03-06 op
1162 a6d450c1 2021-03-06 op static void
1163 a6d450c1 2021-03-06 op handle_clear_minibuf(int fd, short ev, void *d)
1164 a6d450c1 2021-03-06 op {
1165 9cb0f9ce 2021-03-10 op free(ministate.curmesg);
1166 9cb0f9ce 2021-03-10 op ministate.curmesg = NULL;
1167 9cb0f9ce 2021-03-10 op
1168 9cb0f9ce 2021-03-10 op redraw_minibuffer();
1169 9cb0f9ce 2021-03-10 op if (in_minibuffer) {
1170 9cb0f9ce 2021-03-10 op wrefresh(body);
1171 9cb0f9ce 2021-03-10 op wrefresh(minibuf);
1172 9cb0f9ce 2021-03-10 op } else {
1173 9cb0f9ce 2021-03-10 op wrefresh(minibuf);
1174 9cb0f9ce 2021-03-10 op wrefresh(body);
1175 9cb0f9ce 2021-03-10 op }
1176 5e11c00c 2021-03-02 op }
1177 5e11c00c 2021-03-02 op
1178 5e11c00c 2021-03-02 op static void
1179 5e11c00c 2021-03-02 op handle_resize(int sig, short ev, void *d)
1180 5e11c00c 2021-03-02 op {
1181 1d08c280 2021-03-06 op struct tab *tab;
1182 1d08c280 2021-03-06 op
1183 5e11c00c 2021-03-02 op endwin();
1184 5e11c00c 2021-03-02 op refresh();
1185 5e11c00c 2021-03-02 op clear();
1186 5e11c00c 2021-03-02 op
1187 48e9d457 2021-03-06 op /* move and resize the windows, in reverse order! */
1188 48e9d457 2021-03-06 op
1189 b1738d2e 2021-03-06 op mvwin(minibuf, LINES-1, 0);
1190 48e9d457 2021-03-06 op wresize(minibuf, 1, COLS);
1191 48e9d457 2021-03-06 op
1192 48e9d457 2021-03-06 op mvwin(modeline, LINES-2, 0);
1193 48e9d457 2021-03-06 op wresize(modeline, 1, COLS);
1194 48e9d457 2021-03-06 op
1195 48e9d457 2021-03-06 op wresize(body, LINES-3, COLS);
1196 48e9d457 2021-03-06 op body_lines = LINES-3;
1197 bd9637e9 2021-03-06 op body_cols = COLS;
1198 48e9d457 2021-03-06 op
1199 48e9d457 2021-03-06 op wresize(tabline, 1, COLS);
1200 48e9d457 2021-03-06 op
1201 1d08c280 2021-03-06 op tab = current_tab();
1202 1d08c280 2021-03-06 op
1203 1d08c280 2021-03-06 op wrap_page(tab);
1204 1d08c280 2021-03-06 op redraw_tab(tab);
1205 eb259e66 2021-03-02 op }
1206 eb259e66 2021-03-02 op
1207 1d08c280 2021-03-06 op static int
1208 1d08c280 2021-03-06 op wrap_page(struct tab *tab)
1209 1d08c280 2021-03-06 op {
1210 452589f7 2021-03-16 op struct line *l;
1211 452589f7 2021-03-16 op const struct line *orig;
1212 d511dc85 2021-03-16 op struct vline *vl;
1213 452589f7 2021-03-16 op const char *prfx;
1214 452589f7 2021-03-16 op
1215 452589f7 2021-03-16 op orig = tab->s.current_line == NULL
1216 452589f7 2021-03-16 op ? NULL
1217 452589f7 2021-03-16 op : tab->s.current_line->parent;
1218 452589f7 2021-03-16 op tab->s.current_line = NULL;
1219 452589f7 2021-03-16 op
1220 452589f7 2021-03-16 op tab->s.curs_y = 0;
1221 452589f7 2021-03-16 op tab->s.line_off = 0;
1222 1d08c280 2021-03-06 op
1223 1d08c280 2021-03-06 op empty_vlist(tab);
1224 1d08c280 2021-03-06 op
1225 5e11c00c 2021-03-02 op TAILQ_FOREACH(l, &tab->page.head, lines) {
1226 0d568960 2021-03-11 op prfx = line_prefixes[l->type].prfx1;
1227 5e11c00c 2021-03-02 op switch (l->type) {
1228 5e11c00c 2021-03-02 op case LINE_TEXT:
1229 5e11c00c 2021-03-02 op case LINE_LINK:
1230 5e11c00c 2021-03-02 op case LINE_TITLE_1:
1231 5e11c00c 2021-03-02 op case LINE_TITLE_2:
1232 5e11c00c 2021-03-02 op case LINE_TITLE_3:
1233 5e11c00c 2021-03-02 op case LINE_ITEM:
1234 5e11c00c 2021-03-02 op case LINE_QUOTE:
1235 5e11c00c 2021-03-02 op case LINE_PRE_START:
1236 5e11c00c 2021-03-02 op case LINE_PRE_END:
1237 65d9b3ca 2021-03-14 op wrap_text(tab, prfx, l, body_cols);
1238 5e11c00c 2021-03-02 op break;
1239 5e11c00c 2021-03-02 op case LINE_PRE_CONTENT:
1240 65d9b3ca 2021-03-14 op hardwrap_text(tab, l, body_cols);
1241 5e11c00c 2021-03-02 op break;
1242 452589f7 2021-03-16 op }
1243 452589f7 2021-03-16 op
1244 452589f7 2021-03-16 op if (orig == l && tab->s.current_line == NULL) {
1245 452589f7 2021-03-16 op tab->s.line_off = tab->s.line_max-1;
1246 452589f7 2021-03-16 op tab->s.current_line = TAILQ_LAST(&tab->s.head, vhead);
1247 d511dc85 2021-03-16 op
1248 d511dc85 2021-03-16 op while (1) {
1249 d511dc85 2021-03-16 op vl = TAILQ_PREV(tab->s.current_line, vhead, vlines);
1250 d511dc85 2021-03-16 op if (vl == NULL || vl->parent != orig)
1251 d511dc85 2021-03-16 op break;
1252 d511dc85 2021-03-16 op tab->s.current_line = vl;
1253 d511dc85 2021-03-16 op tab->s.line_off--;
1254 d511dc85 2021-03-16 op }
1255 5e11c00c 2021-03-02 op }
1256 5e11c00c 2021-03-02 op }
1257 452589f7 2021-03-16 op
1258 452589f7 2021-03-16 op if (tab->s.current_line == NULL)
1259 452589f7 2021-03-16 op tab->s.current_line = TAILQ_FIRST(&tab->s.head);
1260 452589f7 2021-03-16 op
1261 1d08c280 2021-03-06 op return 1;
1262 1d08c280 2021-03-06 op }
1263 5e11c00c 2021-03-02 op
1264 754622a2 2021-03-15 op static void
1265 9a25f829 2021-03-14 op print_vline(struct vline *vl)
1266 1d08c280 2021-03-06 op {
1267 9a25f829 2021-03-14 op const char *text = vl->line;
1268 768db5bb 2021-03-12 op const char *prfx;
1269 803ff456 2021-03-17 op int prefix_face = line_faces[vl->parent->type].prefix_prop;
1270 803ff456 2021-03-17 op int text_face = line_faces[vl->parent->type].text_prop;
1271 bd9637e9 2021-03-06 op
1272 9a25f829 2021-03-14 op if (!vl->flags)
1273 9a25f829 2021-03-14 op prfx = line_prefixes[vl->parent->type].prfx1;
1274 768db5bb 2021-03-12 op else
1275 9a25f829 2021-03-14 op prfx = line_prefixes[vl->parent->type].prfx2;
1276 768db5bb 2021-03-12 op
1277 bd9637e9 2021-03-06 op if (text == NULL)
1278 bd9637e9 2021-03-06 op text = "";
1279 bd9637e9 2021-03-06 op
1280 803ff456 2021-03-17 op wattron(body, prefix_face);
1281 803ff456 2021-03-17 op wprintw(body, "%s", prfx);
1282 803ff456 2021-03-17 op wattroff(body, prefix_face);
1283 803ff456 2021-03-17 op
1284 803ff456 2021-03-17 op wattron(body, text_face);
1285 803ff456 2021-03-17 op wprintw(body, "%s", text);
1286 803ff456 2021-03-17 op wattroff(body, text_face);
1287 1d08c280 2021-03-06 op }
1288 1d08c280 2021-03-06 op
1289 1d08c280 2021-03-06 op static void
1290 8af5e5ed 2021-03-08 op redraw_tabline(void)
1291 8af5e5ed 2021-03-08 op {
1292 7c7d7bb7 2021-03-10 op struct tab *tab;
1293 a636f50e 2021-03-16 op size_t toskip;
1294 a636f50e 2021-03-16 op int current, x, y, truncated;
1295 dc5df781 2021-03-13 op const char *title;
1296 119f393c 2021-03-16 op char buf[25];
1297 7c7d7bb7 2021-03-10 op
1298 a636f50e 2021-03-16 op toskip = 0;
1299 a636f50e 2021-03-16 op x = 1;
1300 a636f50e 2021-03-16 op TAILQ_FOREACH(tab, &tabshead, tabs) {
1301 a636f50e 2021-03-16 op x += sizeof(buf) + 1;
1302 a636f50e 2021-03-16 op toskip++;
1303 a636f50e 2021-03-16 op if (tab->flags & TAB_CURRENT)
1304 a636f50e 2021-03-16 op break;
1305 a636f50e 2021-03-16 op }
1306 a636f50e 2021-03-16 op if (x < COLS-2)
1307 a636f50e 2021-03-16 op toskip = 0;
1308 a636f50e 2021-03-16 op else
1309 a636f50e 2021-03-16 op toskip--;
1310 7c7d7bb7 2021-03-10 op
1311 a636f50e 2021-03-16 op werase(tabline);
1312 cb6c7aa0 2021-03-16 op wattron(tabline, tab_face.background);
1313 a636f50e 2021-03-16 op wprintw(tabline, toskip == 0 ? " " : "<");
1314 cb6c7aa0 2021-03-16 op wattroff(tabline, tab_face.background);
1315 a636f50e 2021-03-16 op
1316 a636f50e 2021-03-16 op truncated = 0;
1317 7c7d7bb7 2021-03-10 op TAILQ_FOREACH(tab, &tabshead, tabs) {
1318 a636f50e 2021-03-16 op if (truncated)
1319 a636f50e 2021-03-16 op break;
1320 a636f50e 2021-03-16 op if (toskip != 0) {
1321 a636f50e 2021-03-16 op toskip--;
1322 a636f50e 2021-03-16 op continue;
1323 a636f50e 2021-03-16 op }
1324 a636f50e 2021-03-16 op
1325 a636f50e 2021-03-16 op getyx(tabline, y, x);
1326 a636f50e 2021-03-16 op if (x + sizeof(buf)+2 >= (size_t)COLS)
1327 a636f50e 2021-03-16 op truncated = 1;
1328 a636f50e 2021-03-16 op
1329 7c7d7bb7 2021-03-10 op current = tab->flags & TAB_CURRENT;
1330 a329982b 2021-03-11 op
1331 dc5df781 2021-03-13 op if (*(title = tab->page.title) == '\0')
1332 2051e653 2021-03-13 op title = tab->hist_cur->h;
1333 dc5df781 2021-03-13 op
1334 119f393c 2021-03-16 op strlcpy(buf, " ", sizeof(buf));
1335 119f393c 2021-03-16 op if (strlcat(buf, title, sizeof(buf)) >= sizeof(buf)) {
1336 119f393c 2021-03-16 op /* truncation happens */
1337 119f393c 2021-03-16 op strlcpy(&buf[sizeof(buf)-4], "...", 4);
1338 119f393c 2021-03-16 op } else {
1339 119f393c 2021-03-16 op /* pad with spaces */
1340 119f393c 2021-03-16 op while (strlcat(buf, " ", sizeof(buf)) < sizeof(buf))
1341 119f393c 2021-03-16 op /* nop */ ;
1342 119f393c 2021-03-16 op }
1343 a329982b 2021-03-11 op
1344 a329982b 2021-03-11 op if (current)
1345 cb6c7aa0 2021-03-16 op wattron(tabline, tab_face.current_tab);
1346 cb6c7aa0 2021-03-16 op else
1347 cb6c7aa0 2021-03-16 op wattron(tabline, tab_face.tab);
1348 119f393c 2021-03-16 op
1349 119f393c 2021-03-16 op wprintw(tabline, "%s", buf);
1350 119f393c 2021-03-16 op if (TAILQ_NEXT(tab, tabs) != NULL)
1351 119f393c 2021-03-16 op wprintw(tabline, " ");
1352 cb6c7aa0 2021-03-16 op
1353 cb6c7aa0 2021-03-16 op if (current)
1354 cb6c7aa0 2021-03-16 op wattroff(tabline, tab_face.current_tab);
1355 cb6c7aa0 2021-03-16 op else
1356 cb6c7aa0 2021-03-16 op wattroff(tabline, tab_face.tab);
1357 7c7d7bb7 2021-03-10 op }
1358 119f393c 2021-03-16 op
1359 cb6c7aa0 2021-03-16 op wattron(tabline, tab_face.background);
1360 119f393c 2021-03-16 op for (; x < COLS; ++x)
1361 119f393c 2021-03-16 op waddch(tabline, ' ');
1362 a636f50e 2021-03-16 op if (truncated)
1363 a636f50e 2021-03-16 op mvwprintw(tabline, 0, COLS-1, ">");
1364 10346511 2021-03-17 op }
1365 10346511 2021-03-17 op
1366 10346511 2021-03-17 op static inline char
1367 10346511 2021-03-17 op trust_status_char(enum trust_state ts)
1368 10346511 2021-03-17 op {
1369 10346511 2021-03-17 op switch (ts) {
1370 10346511 2021-03-17 op case TS_UNKNOWN: return 'u';
1371 10346511 2021-03-17 op case TS_UNTRUSTED: return '!';
1372 10346511 2021-03-17 op case TS_TRUSTED: return 'v';
1373 10346511 2021-03-17 op case TS_VERIFIED: return 'V';
1374 10346511 2021-03-17 op }
1375 8af5e5ed 2021-03-08 op }
1376 8af5e5ed 2021-03-08 op
1377 8af5e5ed 2021-03-08 op static void
1378 48e9d457 2021-03-06 op redraw_modeline(struct tab *tab)
1379 1d08c280 2021-03-06 op {
1380 481340cc 2021-03-11 op double pct;
1381 48e9d457 2021-03-06 op int x, y, max_x, max_y;
1382 fc43eadd 2021-03-12 op const char *mode = tab->page.name;
1383 8af5e5ed 2021-03-08 op const char *spin = "-\\|/";
1384 1d08c280 2021-03-06 op
1385 156f1501 2021-03-13 op werase(modeline);
1386 48e9d457 2021-03-06 op wattron(modeline, A_REVERSE);
1387 48e9d457 2021-03-06 op wmove(modeline, 0, 0);
1388 1d08c280 2021-03-06 op
1389 10346511 2021-03-17 op wprintw(modeline, "-%c%c %s ",
1390 58c75fab 2021-03-16 op spin[tab->s.loading_anim_step],
1391 10346511 2021-03-17 op trust_status_char(tab->trust),
1392 58c75fab 2021-03-16 op mode == NULL ? "(none)" : mode);
1393 481340cc 2021-03-11 op
1394 65d9b3ca 2021-03-14 op pct = (tab->s.line_off + tab->s.curs_y) * 100.0 / tab->s.line_max;
1395 481340cc 2021-03-11 op
1396 754622a2 2021-03-15 op if (tab->s.line_max <= (size_t)body_lines)
1397 481340cc 2021-03-11 op wprintw(modeline, "All ");
1398 65d9b3ca 2021-03-14 op else if (tab->s.line_off == 0)
1399 481340cc 2021-03-11 op wprintw(modeline, "Top ");
1400 65d9b3ca 2021-03-14 op else if (tab->s.line_off + body_lines >= tab->s.line_max)
1401 481340cc 2021-03-11 op wprintw(modeline, "Bottom ");
1402 481340cc 2021-03-11 op else
1403 481340cc 2021-03-11 op wprintw(modeline, "%.0f%% ", pct);
1404 481340cc 2021-03-11 op
1405 481340cc 2021-03-11 op wprintw(modeline, "%d/%d %s ",
1406 65d9b3ca 2021-03-14 op tab->s.line_off + tab->s.curs_y,
1407 65d9b3ca 2021-03-14 op tab->s.line_max,
1408 2051e653 2021-03-13 op tab->hist_cur->h);
1409 481340cc 2021-03-11 op
1410 48e9d457 2021-03-06 op getyx(modeline, y, x);
1411 48e9d457 2021-03-06 op getmaxyx(modeline, max_y, max_x);
1412 48e9d457 2021-03-06 op
1413 48e9d457 2021-03-06 op (void)y;
1414 48e9d457 2021-03-06 op (void)max_y;
1415 48e9d457 2021-03-06 op
1416 48e9d457 2021-03-06 op for (; x < max_x; ++x)
1417 48e9d457 2021-03-06 op waddstr(modeline, "-");
1418 9ca15951 2021-03-09 op }
1419 9ca15951 2021-03-09 op
1420 9ca15951 2021-03-09 op static void
1421 9ca15951 2021-03-09 op redraw_minibuffer(void)
1422 9ca15951 2021-03-09 op {
1423 8300dd3c 2021-03-18 op struct tab *tab;
1424 17e5106b 2021-03-21 op size_t off_y, off_x = 0;
1425 17e5106b 2021-03-21 op char *start;
1426 9ca15951 2021-03-09 op
1427 156f1501 2021-03-13 op werase(minibuf);
1428 17e5106b 2021-03-21 op
1429 22268e11 2021-03-11 op if (in_minibuffer) {
1430 22268e11 2021-03-11 op mvwprintw(minibuf, 0, 0, "%s", ministate.prompt);
1431 22268e11 2021-03-11 op if (ministate.hist_cur != NULL)
1432 22268e11 2021-03-11 op wprintw(minibuf, "(%zu/%zu) ",
1433 22268e11 2021-03-11 op ministate.hist_off + 1,
1434 22268e11 2021-03-11 op ministate.history->len);
1435 9ca15951 2021-03-09 op
1436 22268e11 2021-03-11 op getyx(minibuf, off_y, off_x);
1437 9cb0f9ce 2021-03-10 op
1438 17e5106b 2021-03-21 op start = ministate.hist_cur != NULL
1439 17e5106b 2021-03-21 op ? ministate.hist_cur->h
1440 17e5106b 2021-03-21 op : ministate.buf;
1441 17e5106b 2021-03-21 op while (utf8_swidth_between(start, ministate.curs) > (size_t)COLS/2) {
1442 17e5106b 2021-03-21 op start = utf8_next_cp(start);
1443 22268e11 2021-03-11 op }
1444 9cb0f9ce 2021-03-10 op
1445 17e5106b 2021-03-21 op waddstr(minibuf, start);
1446 22268e11 2021-03-11 op }
1447 9cb0f9ce 2021-03-10 op
1448 17e5106b 2021-03-21 op if (ministate.curmesg != NULL)
1449 17e5106b 2021-03-21 op wprintw(minibuf, in_minibuffer ? " [%s]" : "%s",
1450 17e5106b 2021-03-21 op ministate.curmesg);
1451 9cb0f9ce 2021-03-10 op
1452 91a72220 2021-03-13 op if (!in_minibuffer && ministate.curmesg == NULL)
1453 17e5106b 2021-03-21 op waddstr(minibuf, keybuf);
1454 8300dd3c 2021-03-18 op
1455 8300dd3c 2021-03-18 op /* If nothing else, show the URL at point */
1456 8300dd3c 2021-03-18 op if (!in_minibuffer && ministate.curmesg == NULL && *keybuf == '\0') {
1457 8300dd3c 2021-03-18 op tab = current_tab();
1458 8300dd3c 2021-03-18 op if (tab->s.current_line != NULL &&
1459 8300dd3c 2021-03-18 op tab->s.current_line->parent->type == LINE_LINK)
1460 17e5106b 2021-03-21 op waddstr(minibuf, tab->s.current_line->parent->alt);
1461 8300dd3c 2021-03-18 op }
1462 91a72220 2021-03-13 op
1463 2aaf475e 2021-03-13 op if (in_minibuffer)
1464 17e5106b 2021-03-21 op wmove(minibuf, 0, off_x + utf8_swidth_between(start, ministate.curs));
1465 48e9d457 2021-03-06 op }
1466 48e9d457 2021-03-06 op
1467 48e9d457 2021-03-06 op static void
1468 48e9d457 2021-03-06 op redraw_tab(struct tab *tab)
1469 48e9d457 2021-03-06 op {
1470 e19f9a04 2021-03-11 op redraw_tabline();
1471 e19f9a04 2021-03-11 op redraw_body(tab);
1472 e19f9a04 2021-03-11 op redraw_modeline(tab);
1473 e19f9a04 2021-03-11 op redraw_minibuffer();
1474 e19f9a04 2021-03-11 op
1475 e19f9a04 2021-03-11 op wrefresh(tabline);
1476 e19f9a04 2021-03-11 op wrefresh(modeline);
1477 e19f9a04 2021-03-11 op
1478 e19f9a04 2021-03-11 op if (in_minibuffer) {
1479 e19f9a04 2021-03-11 op wrefresh(body);
1480 e19f9a04 2021-03-11 op wrefresh(minibuf);
1481 e19f9a04 2021-03-11 op } else {
1482 e19f9a04 2021-03-11 op wrefresh(minibuf);
1483 e19f9a04 2021-03-11 op wrefresh(body);
1484 e19f9a04 2021-03-11 op }
1485 e19f9a04 2021-03-11 op }
1486 e19f9a04 2021-03-11 op
1487 e19f9a04 2021-03-11 op static void
1488 e19f9a04 2021-03-11 op redraw_body(struct tab *tab)
1489 e19f9a04 2021-03-11 op {
1490 9a25f829 2021-03-14 op struct vline *vl;
1491 48e9d457 2021-03-06 op int line;
1492 48e9d457 2021-03-06 op
1493 48e9d457 2021-03-06 op werase(body);
1494 48e9d457 2021-03-06 op
1495 65d9b3ca 2021-03-14 op tab->s.line_off = MIN(tab->s.line_max-1, tab->s.line_off);
1496 65d9b3ca 2021-03-14 op if (TAILQ_EMPTY(&tab->s.head))
1497 48e9d457 2021-03-06 op return;
1498 48e9d457 2021-03-06 op
1499 48e9d457 2021-03-06 op line = 0;
1500 65d9b3ca 2021-03-14 op vl = nth_line(tab, tab->s.line_off);
1501 9a25f829 2021-03-14 op for (; vl != NULL; vl = TAILQ_NEXT(vl, vlines)) {
1502 48e9d457 2021-03-06 op wmove(body, line, 0);
1503 9a25f829 2021-03-14 op print_vline(vl);
1504 48e9d457 2021-03-06 op line++;
1505 48e9d457 2021-03-06 op if (line == body_lines)
1506 48e9d457 2021-03-06 op break;
1507 9ca15951 2021-03-09 op }
1508 174b3cdf 2021-03-21 op
1509 174b3cdf 2021-03-21 op wmove(body, tab->s.curs_y, tab->s.curs_x);
1510 7953dd72 2021-03-07 op }
1511 7953dd72 2021-03-07 op
1512 7953dd72 2021-03-07 op static void
1513 740f578b 2021-03-15 op vmessage(const char *fmt, va_list ap)
1514 7953dd72 2021-03-07 op {
1515 e0e26735 2021-03-16 op if (evtimer_pending(&clminibufev, NULL))
1516 7953dd72 2021-03-07 op evtimer_del(&clminibufev);
1517 7953dd72 2021-03-07 op evtimer_set(&clminibufev, handle_clear_minibuf, NULL);
1518 7953dd72 2021-03-07 op evtimer_add(&clminibufev, &clminibufev_timer);
1519 bf992581 2021-03-12 op
1520 bf992581 2021-03-12 op free(ministate.curmesg);
1521 7953dd72 2021-03-07 op
1522 9cb0f9ce 2021-03-10 op /* TODO: what to do if the allocation fails here? */
1523 9cb0f9ce 2021-03-10 op if (vasprintf(&ministate.curmesg, fmt, ap) == -1)
1524 9cb0f9ce 2021-03-10 op ministate.curmesg = NULL;
1525 9cb0f9ce 2021-03-10 op
1526 9cb0f9ce 2021-03-10 op redraw_minibuffer();
1527 9cb0f9ce 2021-03-10 op if (in_minibuffer) {
1528 9cb0f9ce 2021-03-10 op wrefresh(body);
1529 9cb0f9ce 2021-03-10 op wrefresh(minibuf);
1530 9cb0f9ce 2021-03-10 op } else {
1531 9cb0f9ce 2021-03-10 op wrefresh(minibuf);
1532 9cb0f9ce 2021-03-10 op wrefresh(body);
1533 9cb0f9ce 2021-03-10 op }
1534 bcb0b073 2021-03-07 op }
1535 bcb0b073 2021-03-07 op
1536 bcb0b073 2021-03-07 op static void
1537 740f578b 2021-03-15 op message(const char *fmt, ...)
1538 740f578b 2021-03-15 op {
1539 740f578b 2021-03-15 op va_list ap;
1540 740f578b 2021-03-15 op
1541 740f578b 2021-03-15 op va_start(ap, fmt);
1542 740f578b 2021-03-15 op vmessage(fmt, ap);
1543 740f578b 2021-03-15 op va_end(ap);
1544 740f578b 2021-03-15 op }
1545 740f578b 2021-03-15 op
1546 740f578b 2021-03-15 op static void
1547 8af5e5ed 2021-03-08 op start_loading_anim(struct tab *tab)
1548 8af5e5ed 2021-03-08 op {
1549 65d9b3ca 2021-03-14 op if (tab->s.loading_anim)
1550 8af5e5ed 2021-03-08 op return;
1551 65d9b3ca 2021-03-14 op tab->s.loading_anim = 1;
1552 65d9b3ca 2021-03-14 op evtimer_set(&tab->s.loadingev, update_loading_anim, tab);
1553 65d9b3ca 2021-03-14 op evtimer_add(&tab->s.loadingev, &loadingev_timer);
1554 8af5e5ed 2021-03-08 op }
1555 8af5e5ed 2021-03-08 op
1556 8af5e5ed 2021-03-08 op static void
1557 8af5e5ed 2021-03-08 op update_loading_anim(int fd, short ev, void *d)
1558 8af5e5ed 2021-03-08 op {
1559 8af5e5ed 2021-03-08 op struct tab *tab = d;
1560 8af5e5ed 2021-03-08 op
1561 65d9b3ca 2021-03-14 op tab->s.loading_anim_step = (tab->s.loading_anim_step+1)%4;
1562 9ca15951 2021-03-09 op
1563 6347dcd0 2021-03-16 op if (tab->flags & TAB_CURRENT) {
1564 6347dcd0 2021-03-16 op redraw_modeline(tab);
1565 6347dcd0 2021-03-16 op wrefresh(modeline);
1566 6347dcd0 2021-03-16 op wrefresh(body);
1567 6347dcd0 2021-03-16 op if (in_minibuffer)
1568 6347dcd0 2021-03-16 op wrefresh(minibuf);
1569 6347dcd0 2021-03-16 op }
1570 8af5e5ed 2021-03-08 op
1571 65d9b3ca 2021-03-14 op evtimer_add(&tab->s.loadingev, &loadingev_timer);
1572 8af5e5ed 2021-03-08 op }
1573 8af5e5ed 2021-03-08 op
1574 8af5e5ed 2021-03-08 op static void
1575 8af5e5ed 2021-03-08 op stop_loading_anim(struct tab *tab)
1576 8af5e5ed 2021-03-08 op {
1577 65d9b3ca 2021-03-14 op if (!tab->s.loading_anim)
1578 8af5e5ed 2021-03-08 op return;
1579 65d9b3ca 2021-03-14 op evtimer_del(&tab->s.loadingev);
1580 65d9b3ca 2021-03-14 op tab->s.loading_anim = 0;
1581 65d9b3ca 2021-03-14 op tab->s.loading_anim_step = 0;
1582 3d8c2326 2021-03-18 op
1583 3d8c2326 2021-03-18 op if (!(tab->flags & TAB_CURRENT))
1584 3d8c2326 2021-03-18 op return;
1585 43a1b8d0 2021-03-09 op
1586 43a1b8d0 2021-03-09 op redraw_modeline(tab);
1587 9ca15951 2021-03-09 op
1588 43a1b8d0 2021-03-09 op wrefresh(modeline);
1589 43a1b8d0 2021-03-09 op wrefresh(body);
1590 9ca15951 2021-03-09 op if (in_minibuffer)
1591 9ca15951 2021-03-09 op wrefresh(minibuf);
1592 8af5e5ed 2021-03-08 op }
1593 8af5e5ed 2021-03-08 op
1594 8af5e5ed 2021-03-08 op static void
1595 43a1b8d0 2021-03-09 op load_url_in_tab(struct tab *tab, const char *url)
1596 8af5e5ed 2021-03-08 op {
1597 43a1b8d0 2021-03-09 op empty_vlist(tab);
1598 8af5e5ed 2021-03-08 op message("Loading %s...", url);
1599 8af5e5ed 2021-03-08 op start_loading_anim(tab);
1600 8af5e5ed 2021-03-08 op load_url(tab, url);
1601 43a1b8d0 2021-03-09 op
1602 65d9b3ca 2021-03-14 op tab->s.curs_x = 0;
1603 65d9b3ca 2021-03-14 op tab->s.curs_y = 0;
1604 43a1b8d0 2021-03-09 op redraw_tab(tab);
1605 8af5e5ed 2021-03-08 op }
1606 8af5e5ed 2021-03-08 op
1607 8af5e5ed 2021-03-08 op static void
1608 b360ebb3 2021-03-10 op enter_minibuffer(void (*self_insert_fn)(void), void (*donefn)(void),
1609 3148eeac 2021-03-13 op void (*abortfn)(void), struct histhead *hist)
1610 9ca15951 2021-03-09 op {
1611 9ca15951 2021-03-09 op in_minibuffer = 1;
1612 fa3fd864 2021-03-10 op base_map = &minibuffer_map;
1613 fa3fd864 2021-03-10 op current_map = &minibuffer_map;
1614 9ca15951 2021-03-09 op
1615 fa3fd864 2021-03-10 op base_map->unhandled_input = self_insert_fn;
1616 b360ebb3 2021-03-10 op
1617 b360ebb3 2021-03-10 op ministate.donefn = donefn;
1618 b360ebb3 2021-03-10 op ministate.abortfn = abortfn;
1619 9ca15951 2021-03-09 op memset(ministate.buf, 0, sizeof(ministate.buf));
1620 17e5106b 2021-03-21 op ministate.curs = ministate.buf;
1621 17e5106b 2021-03-21 op ministate.cpoff = 0;
1622 9ca15951 2021-03-09 op strlcpy(ministate.buf, "", sizeof(ministate.prompt));
1623 22268e11 2021-03-11 op
1624 22268e11 2021-03-11 op ministate.history = hist;
1625 22268e11 2021-03-11 op ministate.hist_cur = NULL;
1626 22268e11 2021-03-11 op ministate.hist_off = 0;
1627 9ca15951 2021-03-09 op }
1628 9ca15951 2021-03-09 op
1629 9ca15951 2021-03-09 op static void
1630 b360ebb3 2021-03-10 op exit_minibuffer(void)
1631 9ca15951 2021-03-09 op {
1632 156f1501 2021-03-13 op werase(minibuf);
1633 9ca15951 2021-03-09 op
1634 9ca15951 2021-03-09 op in_minibuffer = 0;
1635 9ca15951 2021-03-09 op base_map = &global_map;
1636 9ca15951 2021-03-09 op current_map = &global_map;
1637 9ca15951 2021-03-09 op }
1638 9ca15951 2021-03-09 op
1639 9ca15951 2021-03-09 op static void
1640 5cd2ebb1 2021-03-11 op switch_to_tab(struct tab *tab)
1641 5cd2ebb1 2021-03-11 op {
1642 5cd2ebb1 2021-03-11 op struct tab *t;
1643 5cd2ebb1 2021-03-11 op
1644 5cd2ebb1 2021-03-11 op TAILQ_FOREACH(t, &tabshead, tabs) {
1645 5cd2ebb1 2021-03-11 op t->flags &= ~TAB_CURRENT;
1646 5cd2ebb1 2021-03-11 op }
1647 5cd2ebb1 2021-03-11 op
1648 5cd2ebb1 2021-03-11 op tab->flags |= TAB_CURRENT;
1649 5cd2ebb1 2021-03-11 op }
1650 5cd2ebb1 2021-03-11 op
1651 b1df9b71 2021-03-12 op static struct tab *
1652 1b81bc33 2021-03-15 op new_tab(const char *url)
1653 bcb0b073 2021-03-07 op {
1654 754622a2 2021-03-15 op struct tab *tab;
1655 bcb0b073 2021-03-07 op
1656 71105afa 2021-03-16 op if ((tab = calloc(1, sizeof(*tab))) == NULL) {
1657 71105afa 2021-03-16 op event_loopbreak();
1658 71105afa 2021-03-16 op return NULL;
1659 71105afa 2021-03-16 op }
1660 bcb0b073 2021-03-07 op
1661 2051e653 2021-03-13 op TAILQ_INIT(&tab->hist.head);
1662 2051e653 2021-03-13 op
1663 65d9b3ca 2021-03-14 op TAILQ_INIT(&tab->s.head);
1664 bcb0b073 2021-03-07 op
1665 bcb0b073 2021-03-07 op tab->id = tab_counter++;
1666 5cd2ebb1 2021-03-11 op switch_to_tab(tab);
1667 bcb0b073 2021-03-07 op
1668 bcb0b073 2021-03-07 op if (TAILQ_EMPTY(&tabshead))
1669 bcb0b073 2021-03-07 op TAILQ_INSERT_HEAD(&tabshead, tab, tabs);
1670 bcb0b073 2021-03-07 op else
1671 bcb0b073 2021-03-07 op TAILQ_INSERT_TAIL(&tabshead, tab, tabs);
1672 bcb0b073 2021-03-07 op
1673 43a1b8d0 2021-03-09 op load_url_in_tab(tab, url);
1674 b1df9b71 2021-03-12 op return tab;
1675 5e11c00c 2021-03-02 op }
1676 5e11c00c 2021-03-02 op
1677 941b3761 2021-03-18 op static void
1678 941b3761 2021-03-18 op usage(void)
1679 5e11c00c 2021-03-02 op {
1680 941b3761 2021-03-18 op fprintf(stderr, "USAGE: %s [url]\n", getprogname());
1681 941b3761 2021-03-18 op }
1682 941b3761 2021-03-18 op
1683 941b3761 2021-03-18 op int
1684 6cd6a9e1 2021-03-20 op ui_init(int argc, char * const *argv)
1685 941b3761 2021-03-18 op {
1686 941b3761 2021-03-18 op const char *url = NEW_TAB_URL;
1687 941b3761 2021-03-18 op int ch;
1688 941b3761 2021-03-18 op
1689 941b3761 2021-03-18 op while ((ch = getopt(argc, argv, "")) != -1) {
1690 941b3761 2021-03-18 op switch (ch) {
1691 941b3761 2021-03-18 op default:
1692 941b3761 2021-03-18 op usage();
1693 941b3761 2021-03-18 op return 0;
1694 941b3761 2021-03-18 op }
1695 941b3761 2021-03-18 op }
1696 941b3761 2021-03-18 op argc -= optind;
1697 941b3761 2021-03-18 op argv += optind;
1698 941b3761 2021-03-18 op
1699 941b3761 2021-03-18 op if (argc != 0)
1700 941b3761 2021-03-18 op url = argv[0];
1701 941b3761 2021-03-18 op
1702 5e11c00c 2021-03-02 op setlocale(LC_ALL, "");
1703 5e11c00c 2021-03-02 op
1704 9ca15951 2021-03-09 op TAILQ_INIT(&global_map.m);
1705 9ca15951 2021-03-09 op global_map.unhandled_input = global_key_unbound;
1706 9ca15951 2021-03-09 op
1707 fa3fd864 2021-03-10 op TAILQ_INIT(&minibuffer_map.m);
1708 9ca15951 2021-03-09 op
1709 22268e11 2021-03-11 op TAILQ_INIT(&eecmd_history.head);
1710 22268e11 2021-03-11 op TAILQ_INIT(&ir_history.head);
1711 22268e11 2021-03-11 op TAILQ_INIT(&lu_history.head);
1712 22268e11 2021-03-11 op
1713 9ca15951 2021-03-09 op base_map = &global_map;
1714 f832146f 2021-03-09 op current_map = &global_map;
1715 f832146f 2021-03-09 op load_default_keys();
1716 f832146f 2021-03-09 op
1717 5e11c00c 2021-03-02 op initscr();
1718 15e1b108 2021-03-02 op raw();
1719 5e11c00c 2021-03-02 op noecho();
1720 5e11c00c 2021-03-02 op
1721 5e11c00c 2021-03-02 op nonl();
1722 5e11c00c 2021-03-02 op intrflush(stdscr, FALSE);
1723 5e11c00c 2021-03-02 op
1724 48e9d457 2021-03-06 op if ((tabline = newwin(1, COLS, 0, 0)) == NULL)
1725 48e9d457 2021-03-06 op return 0;
1726 48e9d457 2021-03-06 op if ((body = newwin(LINES - 3, COLS, 1, 0)) == NULL)
1727 48e9d457 2021-03-06 op return 0;
1728 48e9d457 2021-03-06 op if ((modeline = newwin(1, COLS, LINES-2, 0)) == NULL)
1729 48e9d457 2021-03-06 op return 0;
1730 48e9d457 2021-03-06 op if ((minibuf = newwin(1, COLS, LINES-1, 0)) == NULL)
1731 48e9d457 2021-03-06 op return 0;
1732 1d08c280 2021-03-06 op
1733 48e9d457 2021-03-06 op body_lines = LINES-3;
1734 48e9d457 2021-03-06 op body_cols = COLS;
1735 48e9d457 2021-03-06 op
1736 43a1b8d0 2021-03-09 op keypad(body, TRUE);
1737 48e9d457 2021-03-06 op scrollok(body, TRUE);
1738 48e9d457 2021-03-06 op
1739 5e11c00c 2021-03-02 op /* non-blocking input */
1740 48e9d457 2021-03-06 op wtimeout(body, 0);
1741 5e11c00c 2021-03-02 op
1742 48e9d457 2021-03-06 op mvwprintw(body, 0, 0, "");
1743 5e11c00c 2021-03-02 op
1744 5e11c00c 2021-03-02 op event_set(&stdioev, 0, EV_READ | EV_PERSIST, dispatch_stdio, NULL);
1745 5e11c00c 2021-03-02 op event_add(&stdioev, NULL);
1746 5e11c00c 2021-03-02 op
1747 5e11c00c 2021-03-02 op signal_set(&winchev, SIGWINCH, handle_resize, NULL);
1748 5e11c00c 2021-03-02 op signal_add(&winchev, NULL);
1749 5e11c00c 2021-03-02 op
1750 941b3761 2021-03-18 op new_tab(url);
1751 5e11c00c 2021-03-02 op
1752 1d08c280 2021-03-06 op return 1;
1753 5e11c00c 2021-03-02 op }
1754 5e11c00c 2021-03-02 op
1755 5e11c00c 2021-03-02 op void
1756 8af5e5ed 2021-03-08 op ui_on_tab_loaded(struct tab *tab)
1757 8af5e5ed 2021-03-08 op {
1758 8af5e5ed 2021-03-08 op stop_loading_anim(tab);
1759 2051e653 2021-03-13 op message("Loaded %s", tab->hist_cur->h);
1760 3d8c2326 2021-03-18 op
1761 3d8c2326 2021-03-18 op redraw_tabline();
1762 3d8c2326 2021-03-18 op wrefresh(tabline);
1763 3d8c2326 2021-03-18 op if (in_minibuffer)
1764 3d8c2326 2021-03-18 op wrefresh(minibuf);
1765 3d8c2326 2021-03-18 op else
1766 3d8c2326 2021-03-18 op wrefresh(body);
1767 8af5e5ed 2021-03-08 op }
1768 8af5e5ed 2021-03-08 op
1769 8af5e5ed 2021-03-08 op void
1770 5e11c00c 2021-03-02 op ui_on_tab_refresh(struct tab *tab)
1771 5e11c00c 2021-03-02 op {
1772 1d08c280 2021-03-06 op wrap_page(tab);
1773 3d8c2326 2021-03-18 op if (tab->flags & TAB_CURRENT)
1774 3d8c2326 2021-03-18 op redraw_tab(tab);
1775 5e11c00c 2021-03-02 op }
1776 5e11c00c 2021-03-02 op
1777 5e11c00c 2021-03-02 op void
1778 5cd2ebb1 2021-03-11 op ui_require_input(struct tab *tab, int hide)
1779 5cd2ebb1 2021-03-11 op {
1780 5cd2ebb1 2021-03-11 op /* TODO: hard-switching to another tab is ugly */
1781 5cd2ebb1 2021-03-11 op switch_to_tab(tab);
1782 5cd2ebb1 2021-03-11 op
1783 22268e11 2021-03-11 op enter_minibuffer(ir_self_insert, ir_select, exit_minibuffer,
1784 22268e11 2021-03-11 op &ir_history);
1785 5cd2ebb1 2021-03-11 op strlcpy(ministate.prompt, "Input required: ",
1786 5cd2ebb1 2021-03-11 op sizeof(ministate.prompt));
1787 5cd2ebb1 2021-03-11 op redraw_tab(tab);
1788 5cd2ebb1 2021-03-11 op }
1789 5cd2ebb1 2021-03-11 op
1790 5cd2ebb1 2021-03-11 op void
1791 740f578b 2021-03-15 op ui_notify(const char *fmt, ...)
1792 740f578b 2021-03-15 op {
1793 740f578b 2021-03-15 op va_list ap;
1794 740f578b 2021-03-15 op
1795 740f578b 2021-03-15 op va_start(ap, fmt);
1796 740f578b 2021-03-15 op vmessage(fmt, ap);
1797 740f578b 2021-03-15 op va_end(ap);
1798 740f578b 2021-03-15 op }
1799 740f578b 2021-03-15 op
1800 740f578b 2021-03-15 op void
1801 5e11c00c 2021-03-02 op ui_end(void)
1802 5e11c00c 2021-03-02 op {
1803 5e11c00c 2021-03-02 op endwin();
1804 5e11c00c 2021-03-02 op }