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