/* Exported function documented in search.h */ void search_show_all(bool all, struct search_context *context) { struct list_entry *a; for (a = context->found->next; a; a = a->next) { bool add = true; if (!all && a != context->current) { add = false; if (a->sel) { selection_clear(a->sel, true); selection_destroy(a->sel); a->sel = NULL; } } if (add && !a->sel) { if (context->is_html == true) { html_content *html = (html_content *)context->c; a->sel = selection_create(context->c, true); if (!a->sel) continue; selection_init(a->sel, html->layout, &html->len_ctx); } else { a->sel = selection_create(context->c, false); if (!a->sel) continue; selection_init(a->sel, NULL, NULL); } selection_set_start(a->sel, a->start_idx); selection_set_end(a->sel, a->end_idx); } } }
void edit_select_rep::selection_set_end (path p) { if (is_nil (p)) selection_set_end (tp); else if (path_less_eq (p, start_p)) select (p, p); else if (rp < p) select (start_p, p); }