void gui_find_replace_show(); gboolean gui_find_replace_find(); void gui_find_next_spelling_mistake(); struct _gui_find_replace_options { char *target; GList *target_history; char *replace; GList *replace_history; kryEvent *match_event; int match_offset; gboolean match_case; gboolean match_wholeword; gboolean search_up; gboolean search_text; gboolean search_style; gboolean search_name; }; struct _gui_find_replace { GtkWindow *window; GtkComboBoxEntry *combo_find; GtkComboBoxEntry *combo_replace; GtkCheckButton *check_match_case; GtkCheckButton *check_match_wholeword; GtkCheckButton *check_search_up; GtkCheckButton *check_search_text; GtkCheckButton *check_search_style; GtkCheckButton *check_search_name; };