1 | #include "owl.h" |
---|
2 | |
---|
3 | #define BOTTOM_OFFSET 1 |
---|
4 | |
---|
5 | static void owl_viewwin_redraw_content(owl_window *w, WINDOW *curswin, void *user_data); |
---|
6 | static void owl_viewwin_redraw_status(owl_window *w, WINDOW *curswin, void *user_data); |
---|
7 | static void owl_viewwin_layout(owl_viewwin *v); |
---|
8 | static void owl_viewwin_set_window(owl_viewwin *v, owl_window *w); |
---|
9 | |
---|
10 | /* Create a viewwin. 'win' is an already initialized owl_window that |
---|
11 | * will be used by the viewwin |
---|
12 | */ |
---|
13 | CALLER_OWN owl_viewwin *owl_viewwin_new_text(owl_window *win, const char *text) |
---|
14 | { |
---|
15 | owl_viewwin *v = g_new0(owl_viewwin, 1); |
---|
16 | owl_fmtext_init_null(&(v->fmtext)); |
---|
17 | if (text) { |
---|
18 | owl_fmtext_append_normal(&(v->fmtext), text); |
---|
19 | if (text[0] != '\0' && text[strlen(text) - 1] != '\n') { |
---|
20 | owl_fmtext_append_normal(&(v->fmtext), "\n"); |
---|
21 | } |
---|
22 | v->textlines=owl_fmtext_num_lines(&(v->fmtext)); |
---|
23 | } |
---|
24 | v->topline=0; |
---|
25 | v->rightshift=0; |
---|
26 | v->onclose_hook = NULL; |
---|
27 | |
---|
28 | owl_viewwin_set_window(v, win); |
---|
29 | return v; |
---|
30 | } |
---|
31 | |
---|
32 | /* Create a viewwin. 'win' is an already initialized owl_window that |
---|
33 | * will be used by the viewwin |
---|
34 | */ |
---|
35 | CALLER_OWN owl_viewwin *owl_viewwin_new_fmtext(owl_window *win, const owl_fmtext *fmtext) |
---|
36 | { |
---|
37 | char *text; |
---|
38 | owl_viewwin *v = g_new0(owl_viewwin, 1); |
---|
39 | |
---|
40 | owl_fmtext_copy(&(v->fmtext), fmtext); |
---|
41 | text = owl_fmtext_print_plain(fmtext); |
---|
42 | if (text[0] != '\0' && text[strlen(text) - 1] != '\n') { |
---|
43 | owl_fmtext_append_normal(&(v->fmtext), "\n"); |
---|
44 | } |
---|
45 | g_free(text); |
---|
46 | v->textlines=owl_fmtext_num_lines(&(v->fmtext)); |
---|
47 | v->topline=0; |
---|
48 | v->rightshift=0; |
---|
49 | |
---|
50 | owl_viewwin_set_window(v, win); |
---|
51 | return v; |
---|
52 | } |
---|
53 | |
---|
54 | static void owl_viewwin_set_window(owl_viewwin *v, owl_window *w) |
---|
55 | { |
---|
56 | v->window = g_object_ref(w); |
---|
57 | v->content = owl_window_new(v->window); |
---|
58 | v->status = owl_window_new(v->window); |
---|
59 | v->cmdwin = NULL; |
---|
60 | |
---|
61 | v->sig_content_redraw_id = |
---|
62 | g_signal_connect(v->content, "redraw", G_CALLBACK(owl_viewwin_redraw_content), v); |
---|
63 | v->sig_status_redraw_id = |
---|
64 | g_signal_connect(v->status, "redraw", G_CALLBACK(owl_viewwin_redraw_status), v); |
---|
65 | v->sig_resize_id = |
---|
66 | g_signal_connect_swapped(v->window, "resized", G_CALLBACK(owl_viewwin_layout), v); |
---|
67 | owl_viewwin_layout(v); |
---|
68 | |
---|
69 | owl_window_show(v->content); |
---|
70 | owl_window_show(v->status); |
---|
71 | } |
---|
72 | |
---|
73 | void owl_viewwin_set_onclose_hook(owl_viewwin *v, void (*onclose_hook) (owl_viewwin *vwin, void *data), void *onclose_hook_data) { |
---|
74 | v->onclose_hook = onclose_hook; |
---|
75 | v->onclose_hook_data = onclose_hook_data; |
---|
76 | } |
---|
77 | |
---|
78 | static void owl_viewwin_layout(owl_viewwin *v) |
---|
79 | { |
---|
80 | int lines, cols; |
---|
81 | owl_window_get_position(v->window, &lines, &cols, NULL, NULL); |
---|
82 | owl_window_set_position(v->content, lines - BOTTOM_OFFSET, cols, 0, 0); |
---|
83 | /* Only one of these will be visible at a time: */ |
---|
84 | owl_window_set_position(v->status, BOTTOM_OFFSET, cols, lines - BOTTOM_OFFSET, 0); |
---|
85 | if (v->cmdwin) |
---|
86 | owl_window_set_position(v->cmdwin, BOTTOM_OFFSET, cols, lines - BOTTOM_OFFSET, 0); |
---|
87 | } |
---|
88 | |
---|
89 | /* regenerate text on the curses window. */ |
---|
90 | static void owl_viewwin_redraw_content(owl_window *w, WINDOW *curswin, void *user_data) |
---|
91 | { |
---|
92 | owl_fmtext fm1, fm2; |
---|
93 | owl_viewwin *v = user_data; |
---|
94 | int winlines, wincols; |
---|
95 | |
---|
96 | owl_window_get_position(w, &winlines, &wincols, 0, 0); |
---|
97 | |
---|
98 | werase(curswin); |
---|
99 | wmove(curswin, 0, 0); |
---|
100 | |
---|
101 | owl_fmtext_init_null(&fm1); |
---|
102 | owl_fmtext_init_null(&fm2); |
---|
103 | |
---|
104 | owl_fmtext_truncate_lines(&(v->fmtext), v->topline, winlines, &fm1); |
---|
105 | owl_fmtext_truncate_cols(&fm1, v->rightshift, wincols-1+v->rightshift, &fm2); |
---|
106 | |
---|
107 | owl_fmtext_curs_waddstr(&fm2, curswin, OWL_FMTEXT_ATTR_NONE, OWL_COLOR_DEFAULT, OWL_COLOR_DEFAULT); |
---|
108 | |
---|
109 | owl_fmtext_cleanup(&fm1); |
---|
110 | owl_fmtext_cleanup(&fm2); |
---|
111 | } |
---|
112 | |
---|
113 | static void owl_viewwin_redraw_status(owl_window *w, WINDOW *curswin, void *user_data) |
---|
114 | { |
---|
115 | owl_viewwin *v = user_data; |
---|
116 | int winlines, wincols; |
---|
117 | |
---|
118 | owl_window_get_position(v->content, &winlines, &wincols, 0, 0); |
---|
119 | |
---|
120 | werase(curswin); |
---|
121 | wmove(curswin, 0, 0); |
---|
122 | wattrset(curswin, A_REVERSE); |
---|
123 | if (v->textlines - v->topline > winlines) { |
---|
124 | waddstr(curswin, "--More-- (Space to see more, 'q' to quit)"); |
---|
125 | } else { |
---|
126 | waddstr(curswin, "--End-- (Press 'q' to quit)"); |
---|
127 | } |
---|
128 | wattroff(curswin, A_REVERSE); |
---|
129 | } |
---|
130 | |
---|
131 | char *owl_viewwin_command_search(owl_viewwin *v, int argc, const char *const *argv, const char *buff) |
---|
132 | { |
---|
133 | int direction, consider_current; |
---|
134 | const char *buffstart; |
---|
135 | |
---|
136 | direction=OWL_DIRECTION_DOWNWARDS; |
---|
137 | buffstart=skiptokens(buff, 1); |
---|
138 | if (argc>1 && !strcmp(argv[1], "-r")) { |
---|
139 | direction=OWL_DIRECTION_UPWARDS; |
---|
140 | buffstart=skiptokens(buff, 2); |
---|
141 | } |
---|
142 | |
---|
143 | if (argc==1 || (argc==2 && !strcmp(argv[1], "-r"))) { |
---|
144 | consider_current = false; |
---|
145 | } else { |
---|
146 | owl_function_set_search(buffstart); |
---|
147 | consider_current = true; |
---|
148 | } |
---|
149 | |
---|
150 | if (!owl_viewwin_search(v, owl_global_get_search_re(&g), consider_current, direction)) |
---|
151 | owl_function_makemsg("No more matches"); |
---|
152 | return NULL; |
---|
153 | } |
---|
154 | |
---|
155 | typedef struct _owl_viewwin_search_data { /*noproto*/ |
---|
156 | owl_viewwin *v; |
---|
157 | int direction; |
---|
158 | } owl_viewwin_search_data; |
---|
159 | |
---|
160 | static void owl_viewwin_callback_search(owl_editwin *e) |
---|
161 | { |
---|
162 | int consider_current = false; |
---|
163 | const char *line = owl_editwin_get_text(e); |
---|
164 | owl_viewwin_search_data *data = owl_editwin_get_cbdata(e); |
---|
165 | |
---|
166 | /* Given an empty string, just continue the current search. */ |
---|
167 | if (line && *line) { |
---|
168 | owl_function_set_search(line); |
---|
169 | consider_current = true; |
---|
170 | } |
---|
171 | if (!owl_viewwin_search(data->v, owl_global_get_search_re(&g), |
---|
172 | consider_current, data->direction)) |
---|
173 | owl_function_makemsg("No matches"); |
---|
174 | } |
---|
175 | |
---|
176 | char *owl_viewwin_command_start_search(owl_viewwin *v, int argc, const char *const *argv, const char *buff) |
---|
177 | { |
---|
178 | int direction; |
---|
179 | const char *buffstart; |
---|
180 | owl_editwin *tw; |
---|
181 | owl_context *ctx; |
---|
182 | owl_viewwin_search_data *data; |
---|
183 | |
---|
184 | direction=OWL_DIRECTION_DOWNWARDS; |
---|
185 | buffstart=skiptokens(buff, 1); |
---|
186 | if (argc>1 && !strcmp(argv[1], "-r")) { |
---|
187 | direction=OWL_DIRECTION_UPWARDS; |
---|
188 | buffstart=skiptokens(buff, 2); |
---|
189 | } |
---|
190 | |
---|
191 | /* TODO: Add a search history? */ |
---|
192 | tw = owl_viewwin_set_typwin_active(v, NULL); |
---|
193 | owl_editwin_set_locktext(tw, (direction == OWL_DIRECTION_DOWNWARDS) ? "/" : "?"); |
---|
194 | owl_editwin_insert_string(tw, buffstart); |
---|
195 | |
---|
196 | data = g_new(owl_viewwin_search_data, 1); |
---|
197 | data->v = v; |
---|
198 | data->direction = direction; |
---|
199 | |
---|
200 | ctx = owl_editcontext_new(OWL_CTX_EDITLINE, tw, "editline", |
---|
201 | owl_viewwin_deactivate_editcontext, v); |
---|
202 | ctx->cbdata = v; |
---|
203 | owl_global_push_context_obj(&g, ctx); |
---|
204 | owl_editwin_set_callback(tw, owl_viewwin_callback_search); |
---|
205 | owl_editwin_set_cbdata(tw, data, g_free); |
---|
206 | /* We aren't saving tw, so release the reference we were given. */ |
---|
207 | owl_editwin_unref(tw); |
---|
208 | return NULL; |
---|
209 | } |
---|
210 | |
---|
211 | char *owl_viewwin_start_command(owl_viewwin *v, int argc, const char *const *argv, const char *buff) |
---|
212 | { |
---|
213 | owl_editwin *tw; |
---|
214 | owl_context *ctx; |
---|
215 | |
---|
216 | buff = skiptokens(buff, 1); |
---|
217 | |
---|
218 | tw = owl_viewwin_set_typwin_active(v, owl_global_get_cmd_history(&g)); |
---|
219 | owl_editwin_set_locktext(tw, ":"); |
---|
220 | |
---|
221 | owl_editwin_insert_string(tw, buff); |
---|
222 | |
---|
223 | ctx = owl_editcontext_new(OWL_CTX_EDITLINE, tw, "editline", |
---|
224 | owl_viewwin_deactivate_editcontext, v); |
---|
225 | owl_global_push_context_obj(&g, ctx); |
---|
226 | owl_editwin_set_callback(tw, owl_callback_command); |
---|
227 | /* We aren't saving tw, so release the reference we were given. */ |
---|
228 | owl_editwin_unref(tw); |
---|
229 | |
---|
230 | return NULL; |
---|
231 | } |
---|
232 | |
---|
233 | void owl_viewwin_deactivate_editcontext(owl_context *ctx) { |
---|
234 | owl_viewwin *v = ctx->cbdata; |
---|
235 | owl_viewwin_set_typwin_inactive(v); |
---|
236 | } |
---|
237 | |
---|
238 | CALLER_OWN owl_editwin *owl_viewwin_set_typwin_active(owl_viewwin *v, owl_history *hist) { |
---|
239 | int lines, cols; |
---|
240 | owl_editwin *cmdline; |
---|
241 | if (v->cmdwin) |
---|
242 | return NULL; |
---|
243 | /* Create the command line. */ |
---|
244 | v->cmdwin = owl_window_new(v->window); |
---|
245 | owl_viewwin_layout(v); |
---|
246 | owl_window_get_position(v->cmdwin, &lines, &cols, NULL, NULL); |
---|
247 | cmdline = owl_editwin_new(v->cmdwin, lines, cols, OWL_EDITWIN_STYLE_ONELINE, hist); |
---|
248 | /* Swap out the bottom window. */ |
---|
249 | owl_window_hide(v->status); |
---|
250 | owl_window_show(v->cmdwin); |
---|
251 | return cmdline; |
---|
252 | } |
---|
253 | |
---|
254 | void owl_viewwin_set_typwin_inactive(owl_viewwin *v) { |
---|
255 | if (v->cmdwin) { |
---|
256 | /* Swap out the bottom window. */ |
---|
257 | owl_window_hide(v->cmdwin); |
---|
258 | owl_window_show(v->status); |
---|
259 | /* Destroy the window itself. */ |
---|
260 | owl_window_unlink(v->cmdwin); |
---|
261 | g_object_unref(v->cmdwin); |
---|
262 | v->cmdwin = NULL; |
---|
263 | } |
---|
264 | } |
---|
265 | |
---|
266 | void owl_viewwin_append_text(owl_viewwin *v, const char *text) { |
---|
267 | owl_fmtext_append_normal(&(v->fmtext), text); |
---|
268 | v->textlines=owl_fmtext_num_lines(&(v->fmtext)); |
---|
269 | owl_viewwin_dirty(v); |
---|
270 | } |
---|
271 | |
---|
272 | /* Schedule a redraw of 'v'. Exported for hooking into the search |
---|
273 | string; when we have some way of listening for changes, this can be |
---|
274 | removed. */ |
---|
275 | void owl_viewwin_dirty(owl_viewwin *v) |
---|
276 | { |
---|
277 | owl_window_dirty(v->content); |
---|
278 | owl_window_dirty(v->status); |
---|
279 | } |
---|
280 | |
---|
281 | void owl_viewwin_down(owl_viewwin *v, int amount) { |
---|
282 | int winlines; |
---|
283 | owl_window_get_position(v->content, &winlines, 0, 0, 0); |
---|
284 | /* Don't scroll past the bottom. */ |
---|
285 | amount = MIN(amount, v->textlines - (v->topline + winlines)); |
---|
286 | /* But if we're already past the bottom, don't back up either. */ |
---|
287 | if (amount > 0) { |
---|
288 | v->topline += amount; |
---|
289 | owl_viewwin_dirty(v); |
---|
290 | } |
---|
291 | } |
---|
292 | |
---|
293 | void owl_viewwin_up(owl_viewwin *v, int amount) |
---|
294 | { |
---|
295 | v->topline -= amount; |
---|
296 | if (v->topline<0) v->topline=0; |
---|
297 | owl_viewwin_dirty(v); |
---|
298 | } |
---|
299 | |
---|
300 | void owl_viewwin_pagedown(owl_viewwin *v) |
---|
301 | { |
---|
302 | int winlines; |
---|
303 | owl_window_get_position(v->content, &winlines, 0, 0, 0); |
---|
304 | owl_viewwin_down(v, winlines); |
---|
305 | } |
---|
306 | |
---|
307 | void owl_viewwin_linedown(owl_viewwin *v) |
---|
308 | { |
---|
309 | owl_viewwin_down(v, 1); |
---|
310 | } |
---|
311 | |
---|
312 | void owl_viewwin_pageup(owl_viewwin *v) |
---|
313 | { |
---|
314 | int winlines; |
---|
315 | owl_window_get_position(v->content, &winlines, 0, 0, 0); |
---|
316 | owl_viewwin_up(v, winlines); |
---|
317 | } |
---|
318 | |
---|
319 | void owl_viewwin_lineup(owl_viewwin *v) |
---|
320 | { |
---|
321 | owl_viewwin_up(v, 1); |
---|
322 | } |
---|
323 | |
---|
324 | void owl_viewwin_right(owl_viewwin *v, int n) |
---|
325 | { |
---|
326 | v->rightshift+=n; |
---|
327 | owl_viewwin_dirty(v); |
---|
328 | } |
---|
329 | |
---|
330 | void owl_viewwin_left(owl_viewwin *v, int n) |
---|
331 | { |
---|
332 | v->rightshift-=n; |
---|
333 | if (v->rightshift<0) v->rightshift=0; |
---|
334 | owl_viewwin_dirty(v); |
---|
335 | } |
---|
336 | |
---|
337 | void owl_viewwin_top(owl_viewwin *v) |
---|
338 | { |
---|
339 | v->topline=0; |
---|
340 | v->rightshift=0; |
---|
341 | owl_viewwin_dirty(v); |
---|
342 | } |
---|
343 | |
---|
344 | void owl_viewwin_bottom(owl_viewwin *v) |
---|
345 | { |
---|
346 | int winlines; |
---|
347 | owl_window_get_position(v->content, &winlines, 0, 0, 0); |
---|
348 | v->topline = v->textlines - winlines; |
---|
349 | owl_viewwin_dirty(v); |
---|
350 | } |
---|
351 | |
---|
352 | /* This is a bit of a hack, because regexec doesn't have an 'n' |
---|
353 | * version. */ |
---|
354 | static int _re_memcompare(const owl_regex *re, const char *string, int start, int end) |
---|
355 | { |
---|
356 | int ans; |
---|
357 | char *tmp = g_strndup(string + start, end - start); |
---|
358 | ans = owl_regex_compare(re, tmp, NULL, NULL); |
---|
359 | g_free(tmp); |
---|
360 | return !ans; |
---|
361 | } |
---|
362 | |
---|
363 | /* Scroll in 'direction' to the next line containing 're' in 'v', |
---|
364 | * starting from the current line. Returns 0 if no occurrence is |
---|
365 | * found. |
---|
366 | * |
---|
367 | * If consider_current is true then stay on the current line |
---|
368 | * if it matches. |
---|
369 | */ |
---|
370 | int owl_viewwin_search(owl_viewwin *v, const owl_regex *re, int consider_current, int direction) |
---|
371 | { |
---|
372 | int start, end, offset; |
---|
373 | int lineend, linestart; |
---|
374 | const char *buf, *linestartp; |
---|
375 | owl_fmtext_line_extents(&v->fmtext, v->topline, &start, &end); |
---|
376 | if (direction == OWL_DIRECTION_DOWNWARDS) { |
---|
377 | offset = owl_fmtext_search(&v->fmtext, re, |
---|
378 | consider_current ? start : end); |
---|
379 | if (offset < 0) |
---|
380 | return 0; |
---|
381 | v->topline = owl_fmtext_line_number(&v->fmtext, offset); |
---|
382 | owl_viewwin_dirty(v); |
---|
383 | return 1; |
---|
384 | } else { |
---|
385 | /* TODO: This is a hack. Really, we should have an owl_fmlines or |
---|
386 | * something containing an array of owl_fmtext split into |
---|
387 | * lines. Also, it cannot handle multi-line regex, if we ever care about |
---|
388 | * them. */ |
---|
389 | buf = owl_fmtext_get_text(&v->fmtext); |
---|
390 | lineend = consider_current ? end : start; |
---|
391 | while (lineend > 0) { |
---|
392 | linestartp = memrchr(buf, '\n', lineend - 1); |
---|
393 | linestart = linestartp ? linestartp - buf + 1 : 0; |
---|
394 | if (_re_memcompare(re, buf, linestart, lineend)) { |
---|
395 | v->topline = owl_fmtext_line_number(&v->fmtext, linestart); |
---|
396 | owl_viewwin_dirty(v); |
---|
397 | return 1; |
---|
398 | } |
---|
399 | lineend = linestart; |
---|
400 | } |
---|
401 | return 0; |
---|
402 | } |
---|
403 | } |
---|
404 | |
---|
405 | void owl_viewwin_delete(owl_viewwin *v) |
---|
406 | { |
---|
407 | if (v->onclose_hook) { |
---|
408 | v->onclose_hook(v, v->onclose_hook_data); |
---|
409 | v->onclose_hook = NULL; |
---|
410 | v->onclose_hook_data = NULL; |
---|
411 | } |
---|
412 | owl_viewwin_set_typwin_inactive(v); |
---|
413 | /* TODO: This is far too tedious. owl_viewwin should own v->window |
---|
414 | * and just unlink it in one go. Signals should also go away for |
---|
415 | * free. */ |
---|
416 | g_signal_handler_disconnect(v->window, v->sig_resize_id); |
---|
417 | g_signal_handler_disconnect(v->content, v->sig_content_redraw_id); |
---|
418 | g_signal_handler_disconnect(v->status, v->sig_status_redraw_id); |
---|
419 | owl_window_unlink(v->content); |
---|
420 | owl_window_unlink(v->status); |
---|
421 | g_object_unref(v->window); |
---|
422 | g_object_unref(v->content); |
---|
423 | g_object_unref(v->status); |
---|
424 | owl_fmtext_cleanup(&(v->fmtext)); |
---|
425 | g_free(v); |
---|
426 | } |
---|