Fix regexp search & replace.
[geany-mirror.git] / src / search.c
blob0b9cab1915d8367004e5c060777273c8bdabdec4
1 /*
2 * search.c - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2006-2012 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
5 * Copyright 2006-2012 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 * Find, Replace, Find in Files dialog related functions.
24 * Note that the basic text find functions are in document.c.
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
31 #include "search.h"
33 #include "app.h"
34 #include "document.h"
35 #include "encodings.h"
36 #include "keyfile.h"
37 #include "msgwindow.h"
38 #include "prefs.h"
39 #include "sciwrappers.h"
40 #include "stash.h"
41 #include "support.h"
42 #include "toolbar.h"
43 #include "ui_utils.h"
44 #include "utils.h"
46 #include "gtkcompat.h"
48 #include <unistd.h>
49 #include <string.h>
50 #include <ctype.h>
52 #ifdef G_OS_UNIX
53 # include <sys/types.h>
54 # include <sys/wait.h>
55 #endif
57 #include <gdk/gdkkeysyms.h>
59 enum
61 GEANY_RESPONSE_FIND = 1,
62 GEANY_RESPONSE_FIND_PREVIOUS,
63 GEANY_RESPONSE_FIND_IN_FILE,
64 GEANY_RESPONSE_FIND_IN_SESSION,
65 GEANY_RESPONSE_MARK,
66 GEANY_RESPONSE_REPLACE,
67 GEANY_RESPONSE_REPLACE_AND_FIND,
68 GEANY_RESPONSE_REPLACE_IN_SESSION,
69 GEANY_RESPONSE_REPLACE_IN_FILE,
70 GEANY_RESPONSE_REPLACE_IN_SEL
74 enum
76 FILES_MODE_ALL,
77 FILES_MODE_PROJECT,
78 FILES_MODE_CUSTOM
82 GeanySearchData search_data;
83 GeanySearchPrefs search_prefs;
86 static struct
88 gboolean fif_regexp;
89 gboolean fif_case_sensitive;
90 gboolean fif_match_whole_word;
91 gboolean fif_invert_results;
92 gboolean fif_recursive;
93 gboolean fif_use_extra_options;
94 gchar *fif_extra_options;
95 gint fif_files_mode;
96 gchar *fif_files;
97 gboolean find_regexp;
98 gboolean find_regexp_multiline;
99 gboolean find_escape_sequences;
100 gboolean find_case_sensitive;
101 gboolean find_match_whole_word;
102 gboolean find_match_word_start;
103 gboolean find_close_dialog;
104 gboolean replace_regexp;
105 gboolean replace_regexp_multiline;
106 gboolean replace_escape_sequences;
107 gboolean replace_case_sensitive;
108 gboolean replace_match_whole_word;
109 gboolean replace_match_word_start;
110 gboolean replace_search_backwards;
111 gboolean replace_close_dialog;
113 settings;
115 static StashGroup *fif_prefs = NULL;
116 static StashGroup *find_prefs = NULL;
117 static StashGroup *replace_prefs = NULL;
120 static struct
122 GtkWidget *dialog;
123 GtkWidget *entry;
124 gboolean all_expanded;
125 gint position[2]; /* x, y */
127 find_dlg = {NULL, NULL, FALSE, {0, 0}};
129 static struct
131 GtkWidget *dialog;
132 GtkWidget *find_entry;
133 GtkWidget *replace_entry;
134 gboolean all_expanded;
135 gint position[2]; /* x, y */
137 replace_dlg = {NULL, NULL, NULL, FALSE, {0, 0}};
139 static struct
141 GtkWidget *dialog;
142 GtkWidget *dir_combo;
143 GtkWidget *files_combo;
144 GtkWidget *search_combo;
145 GtkWidget *encoding_combo;
146 GtkWidget *files_mode_combo;
147 gint position[2]; /* x, y */
149 fif_dlg = {NULL, NULL, NULL, NULL, NULL, NULL, {0, 0}};
152 static gboolean search_read_io(GIOChannel *source, GIOCondition condition, gpointer data);
153 static gboolean search_read_io_stderr(GIOChannel *source, GIOCondition condition, gpointer data);
155 static void search_close_pid(GPid child_pid, gint status, gpointer user_data);
157 static gchar **search_get_argv(const gchar **argv_prefix, const gchar *dir);
159 static GRegex *compile_regex(const gchar *str, gint sflags);
162 static void
163 on_find_replace_checkbutton_toggled(GtkToggleButton *togglebutton, gpointer user_data);
165 static void
166 on_find_dialog_response(GtkDialog *dialog, gint response, gpointer user_data);
168 static void
169 on_find_entry_activate(GtkEntry *entry, gpointer user_data);
171 static void
172 on_find_entry_activate_backward(GtkEntry *entry, gpointer user_data);
174 static void
175 on_replace_dialog_response(GtkDialog *dialog, gint response, gpointer user_data);
177 static void
178 on_replace_find_entry_activate(GtkEntry *entry, gpointer user_data);
180 static void
181 on_replace_entry_activate(GtkEntry *entry, gpointer user_data);
183 static void
184 on_find_in_files_dialog_response(GtkDialog *dialog, gint response, gpointer user_data);
186 static gboolean
187 search_find_in_files(const gchar *utf8_search_text, const gchar *dir, const gchar *opts,
188 const gchar *enc);
191 static void init_prefs(void)
193 StashGroup *group;
195 group = stash_group_new("search");
196 configuration_add_pref_group(group, TRUE);
197 stash_group_add_toggle_button(group, &search_prefs.always_wrap,
198 "pref_search_hide_find_dialog", FALSE, "check_always_wrap_search");
199 stash_group_add_toggle_button(group, &search_prefs.hide_find_dialog,
200 "pref_search_always_wrap", FALSE, "check_hide_find_dialog");
201 stash_group_add_toggle_button(group, &search_prefs.use_current_file_dir,
202 "pref_search_current_file_dir", TRUE, "check_fif_current_dir");
203 stash_group_add_boolean(group, &find_dlg.all_expanded, "find_all_expanded", FALSE);
204 stash_group_add_boolean(group, &replace_dlg.all_expanded, "replace_all_expanded", FALSE);
205 /* dialog positions */
206 stash_group_add_integer(group, &find_dlg.position[0], "position_find_x", -1);
207 stash_group_add_integer(group, &find_dlg.position[1], "position_find_y", -1);
208 stash_group_add_integer(group, &replace_dlg.position[0], "position_replace_x", -1);
209 stash_group_add_integer(group, &replace_dlg.position[1], "position_replace_y", -1);
210 stash_group_add_integer(group, &fif_dlg.position[0], "position_fif_x", -1);
211 stash_group_add_integer(group, &fif_dlg.position[1], "position_fif_y", -1);
213 memset(&settings, '\0', sizeof(settings));
215 group = stash_group_new("search");
216 fif_prefs = group;
217 configuration_add_pref_group(group, FALSE);
218 stash_group_add_toggle_button(group, &settings.fif_regexp,
219 "fif_regexp", FALSE, "check_regexp");
220 stash_group_add_toggle_button(group, &settings.fif_case_sensitive,
221 "fif_case_sensitive", TRUE, "check_case");
222 stash_group_add_toggle_button(group, &settings.fif_match_whole_word,
223 "fif_match_whole_word", FALSE, "check_wholeword");
224 stash_group_add_toggle_button(group, &settings.fif_invert_results,
225 "fif_invert_results", FALSE, "check_invert");
226 stash_group_add_toggle_button(group, &settings.fif_recursive,
227 "fif_recursive", FALSE, "check_recursive");
228 stash_group_add_entry(group, &settings.fif_extra_options,
229 "fif_extra_options", "", "entry_extra");
230 stash_group_add_toggle_button(group, &settings.fif_use_extra_options,
231 "fif_use_extra_options", FALSE, "check_extra");
232 stash_group_add_entry(group, &settings.fif_files,
233 "fif_files", "", "entry_files");
234 stash_group_add_combo_box(group, &settings.fif_files_mode,
235 "fif_files_mode", FILES_MODE_ALL, "combo_files_mode");
237 group = stash_group_new("search");
238 find_prefs = group;
239 configuration_add_pref_group(group, FALSE);
240 stash_group_add_toggle_button(group, &settings.find_regexp,
241 "find_regexp", FALSE, "check_regexp");
242 stash_group_add_toggle_button(group, &settings.find_regexp_multiline,
243 "find_regexp_multiline", FALSE, "check_multiline");
244 stash_group_add_toggle_button(group, &settings.find_case_sensitive,
245 "find_case_sensitive", FALSE, "check_case");
246 stash_group_add_toggle_button(group, &settings.find_escape_sequences,
247 "find_escape_sequences", FALSE, "check_escape");
248 stash_group_add_toggle_button(group, &settings.find_match_whole_word,
249 "find_match_whole_word", FALSE, "check_word");
250 stash_group_add_toggle_button(group, &settings.find_match_word_start,
251 "find_match_word_start", FALSE, "check_wordstart");
252 stash_group_add_toggle_button(group, &settings.find_close_dialog,
253 "find_close_dialog", TRUE, "check_close");
255 group = stash_group_new("search");
256 replace_prefs = group;
257 configuration_add_pref_group(group, FALSE);
258 stash_group_add_toggle_button(group, &settings.replace_regexp,
259 "replace_regexp", FALSE, "check_regexp");
260 stash_group_add_toggle_button(group, &settings.replace_regexp_multiline,
261 "replace_regexp_multiline", FALSE, "check_multiline");
262 stash_group_add_toggle_button(group, &settings.replace_case_sensitive,
263 "replace_case_sensitive", FALSE, "check_case");
264 stash_group_add_toggle_button(group, &settings.replace_escape_sequences,
265 "replace_escape_sequences", FALSE, "check_escape");
266 stash_group_add_toggle_button(group, &settings.replace_match_whole_word,
267 "replace_match_whole_word", FALSE, "check_word");
268 stash_group_add_toggle_button(group, &settings.replace_match_word_start,
269 "replace_match_word_start", FALSE, "check_wordstart");
270 stash_group_add_toggle_button(group, &settings.replace_search_backwards,
271 "replace_search_backwards", FALSE, "check_back");
272 stash_group_add_toggle_button(group, &settings.replace_close_dialog,
273 "replace_close_dialog", TRUE, "check_close");
277 void search_init(void)
279 search_data.text = NULL;
280 search_data.original_text = NULL;
281 init_prefs();
285 #define FREE_WIDGET(wid) \
286 if (wid && GTK_IS_WIDGET(wid)) gtk_widget_destroy(wid);
288 void search_finalize(void)
290 FREE_WIDGET(find_dlg.dialog);
291 FREE_WIDGET(replace_dlg.dialog);
292 FREE_WIDGET(fif_dlg.dialog);
293 g_free(search_data.text);
294 g_free(search_data.original_text);
298 static void on_widget_toggled_set_insensitive(
299 GtkToggleButton *togglebutton, gpointer user_data)
301 gtk_widget_set_sensitive(GTK_WIDGET(user_data),
302 !gtk_toggle_button_get_active(togglebutton));
306 static GtkWidget *add_find_checkboxes(GtkDialog *dialog)
308 GtkWidget *checkbox1, *checkbox2, *check_regexp, *check_back, *checkbox5,
309 *checkbox7, *check_multiline, *hbox, *fbox, *mbox;
311 check_regexp = gtk_check_button_new_with_mnemonic(_("_Use regular expressions"));
312 ui_hookup_widget(dialog, check_regexp, "check_regexp");
313 gtk_button_set_focus_on_click(GTK_BUTTON(check_regexp), FALSE);
314 gtk_widget_set_tooltip_text(check_regexp, _("Use POSIX-like regular expressions. "
315 "For detailed information about using regular expressions, please read the documentation."));
316 g_signal_connect(check_regexp, "toggled",
317 G_CALLBACK(on_find_replace_checkbutton_toggled), dialog);
319 checkbox7 = gtk_check_button_new_with_mnemonic(_("Use _escape sequences"));
320 ui_hookup_widget(dialog, checkbox7, "check_escape");
321 gtk_button_set_focus_on_click(GTK_BUTTON(checkbox7), FALSE);
322 gtk_widget_set_tooltip_text(checkbox7,
323 _("Replace \\\\, \\t, \\n, \\r and \\uXXXX (Unicode characters) with the "
324 "corresponding control characters"));
326 check_multiline = gtk_check_button_new_with_mnemonic(_("Use multi-_line matching"));
327 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_multiline), FALSE);
328 gtk_widget_set_sensitive(check_multiline, FALSE);
329 ui_hookup_widget(dialog, check_multiline, "check_multiline");
330 gtk_button_set_focus_on_click(GTK_BUTTON(check_multiline), FALSE);
331 gtk_widget_set_tooltip_text(check_multiline, _("Perform regular expression "
332 "matching on the whole buffer at once rather than line by line, allowing "
333 "matches to span multiple lines. In this mode, newline characters are part "
334 "of the input and can be captured as normal characters by the pattern."));
336 /* Search features */
337 fbox = gtk_vbox_new(FALSE, 0);
338 gtk_box_pack_start(GTK_BOX(fbox), check_regexp, FALSE, FALSE, 0);
339 gtk_box_pack_start(GTK_BOX(fbox), check_multiline, FALSE, FALSE, 0);
340 gtk_box_pack_start(GTK_BOX(fbox), checkbox7, FALSE, FALSE, 0);
342 if (dialog != GTK_DIALOG(find_dlg.dialog))
344 check_back = gtk_check_button_new_with_mnemonic(_("Search _backwards"));
345 ui_hookup_widget(dialog, check_back, "check_back");
346 gtk_button_set_focus_on_click(GTK_BUTTON(check_back), FALSE);
347 gtk_container_add(GTK_CONTAINER(fbox), check_back);
350 checkbox1 = gtk_check_button_new_with_mnemonic(_("C_ase sensitive"));
351 ui_hookup_widget(dialog, checkbox1, "check_case");
352 gtk_button_set_focus_on_click(GTK_BUTTON(checkbox1), FALSE);
354 checkbox2 = gtk_check_button_new_with_mnemonic(_("Match only a _whole word"));
355 ui_hookup_widget(dialog, checkbox2, "check_word");
356 gtk_button_set_focus_on_click(GTK_BUTTON(checkbox2), FALSE);
358 checkbox5 = gtk_check_button_new_with_mnemonic(_("Match from s_tart of word"));
359 ui_hookup_widget(dialog, checkbox5, "check_wordstart");
360 gtk_button_set_focus_on_click(GTK_BUTTON(checkbox5), FALSE);
362 /* disable wordstart when wholeword is checked */
363 g_signal_connect(checkbox2, "toggled",
364 G_CALLBACK(on_widget_toggled_set_insensitive), checkbox5);
366 /* Matching options */
367 mbox = gtk_vbox_new(FALSE, 0);
368 gtk_box_pack_start(GTK_BOX(mbox), checkbox1, FALSE, FALSE, 0);
369 gtk_box_pack_start(GTK_BOX(mbox), checkbox2, FALSE, FALSE, 0);
370 gtk_box_pack_start(GTK_BOX(mbox), checkbox5, FALSE, FALSE, 0);
372 hbox = gtk_hbox_new(TRUE, 6);
373 gtk_container_add(GTK_CONTAINER(hbox), fbox);
374 gtk_container_add(GTK_CONTAINER(hbox), mbox);
375 return hbox;
379 static void send_find_dialog_response(GtkButton *button, gpointer user_data)
381 gtk_dialog_response(GTK_DIALOG(find_dlg.dialog), GPOINTER_TO_INT(user_data));
385 /* store text, clear search flags so we can use Search->Find Next/Previous */
386 static void setup_find_next(const gchar *text)
388 g_free(search_data.text);
389 g_free(search_data.original_text);
390 search_data.text = g_strdup(text);
391 search_data.original_text = g_strdup(text);
392 search_data.flags = 0;
393 search_data.backwards = FALSE;
394 search_data.search_bar = FALSE;
398 /* Search for next match of the current "selection".
399 * Optionally for X11 based systems, this will try to use the system-wide
400 * x-selection first.
401 * If it doesn't find a suitable search string it will try to use
402 * the current word instead, or just repeat the last search.
403 * Search flags are always zero.
405 void search_find_selection(GeanyDocument *doc, gboolean search_backwards)
407 gchar *s = NULL;
409 g_return_if_fail(DOC_VALID(doc));
411 #ifdef G_OS_UNIX
412 if (search_prefs.find_selection_type == GEANY_FIND_SEL_X)
414 GtkClipboard *clipboard = gtk_clipboard_get(GDK_SELECTION_PRIMARY);
416 s = gtk_clipboard_wait_for_text(clipboard);
417 if (s && (strchr(s,'\n') || strchr(s, '\r')))
419 g_free(s);
420 s = NULL;
423 #endif
425 if (!s && sci_has_selection(doc->editor->sci))
426 s = sci_get_selection_contents(doc->editor->sci);
428 if (!s && search_prefs.find_selection_type != GEANY_FIND_SEL_AGAIN)
430 /* get the current word */
431 s = editor_get_default_selection(doc->editor, TRUE, NULL);
434 if (s)
436 setup_find_next(s); /* allow find next/prev */
438 if (document_find_text(doc, s, NULL, 0, search_backwards, NULL, FALSE, NULL) > -1)
439 editor_display_current_line(doc->editor, 0.3F);
440 g_free(s);
442 else if (search_prefs.find_selection_type == GEANY_FIND_SEL_AGAIN)
444 /* Repeat last search (in case selection was lost) */
445 search_find_again(search_backwards);
447 else
449 utils_beep();
454 static void on_expander_activated(GtkExpander *exp, gpointer data)
456 gboolean *setting = data;
458 *setting = gtk_expander_get_expanded(exp);
462 static void create_find_dialog(void)
464 GtkWidget *label, *entry, *sbox, *vbox;
465 GtkWidget *exp, *bbox, *button, *check_close;
467 find_dlg.dialog = gtk_dialog_new_with_buttons(_("Find"),
468 GTK_WINDOW(main_widgets.window), GTK_DIALOG_DESTROY_WITH_PARENT,
469 GTK_STOCK_CLOSE, GTK_RESPONSE_CANCEL, NULL);
470 vbox = ui_dialog_vbox_new(GTK_DIALOG(find_dlg.dialog));
471 gtk_widget_set_name(find_dlg.dialog, "GeanyDialogSearch");
472 gtk_box_set_spacing(GTK_BOX(vbox), 9);
474 button = ui_button_new_with_image(GTK_STOCK_GO_BACK, _("_Previous"));
475 gtk_dialog_add_action_widget(GTK_DIALOG(find_dlg.dialog), button,
476 GEANY_RESPONSE_FIND_PREVIOUS);
477 ui_hookup_widget(find_dlg.dialog, button, "btn_previous");
479 button = ui_button_new_with_image(GTK_STOCK_GO_FORWARD, _("_Next"));
480 gtk_dialog_add_action_widget(GTK_DIALOG(find_dlg.dialog), button,
481 GEANY_RESPONSE_FIND);
483 label = gtk_label_new_with_mnemonic(_("_Search for:"));
484 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
486 entry = gtk_combo_box_text_new_with_entry();
487 ui_entry_add_clear_icon(GTK_ENTRY(gtk_bin_get_child(GTK_BIN(entry))));
488 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry);
489 gtk_entry_set_width_chars(GTK_ENTRY(gtk_bin_get_child(GTK_BIN(entry))), 50);
490 find_dlg.entry = gtk_bin_get_child(GTK_BIN(entry));
492 g_signal_connect(gtk_bin_get_child(GTK_BIN(entry)), "activate",
493 G_CALLBACK(on_find_entry_activate), entry);
494 ui_entry_add_activate_backward_signal(GTK_ENTRY(gtk_bin_get_child(GTK_BIN(entry))));
495 g_signal_connect(gtk_bin_get_child(GTK_BIN(entry)), "activate-backward",
496 G_CALLBACK(on_find_entry_activate_backward), entry);
497 g_signal_connect(find_dlg.dialog, "response",
498 G_CALLBACK(on_find_dialog_response), entry);
499 g_signal_connect(find_dlg.dialog, "delete-event",
500 G_CALLBACK(gtk_widget_hide_on_delete), NULL);
502 sbox = gtk_hbox_new(FALSE, 6);
503 gtk_box_pack_start(GTK_BOX(sbox), label, FALSE, FALSE, 0);
504 gtk_box_pack_start(GTK_BOX(sbox), entry, TRUE, TRUE, 0);
505 gtk_box_pack_start(GTK_BOX(vbox), sbox, TRUE, FALSE, 0);
507 gtk_container_add(GTK_CONTAINER(vbox),
508 add_find_checkboxes(GTK_DIALOG(find_dlg.dialog)));
510 /* Now add the multiple match options */
511 exp = gtk_expander_new_with_mnemonic(_("_Find All"));
512 gtk_expander_set_expanded(GTK_EXPANDER(exp), find_dlg.all_expanded);
513 g_signal_connect_after(exp, "activate",
514 G_CALLBACK(on_expander_activated), &find_dlg.all_expanded);
516 bbox = gtk_hbutton_box_new();
518 button = gtk_button_new_with_mnemonic(_("_Mark"));
519 gtk_widget_set_tooltip_text(button,
520 _("Mark all matches in the current document"));
521 gtk_container_add(GTK_CONTAINER(bbox), button);
522 g_signal_connect(button, "clicked", G_CALLBACK(send_find_dialog_response),
523 GINT_TO_POINTER(GEANY_RESPONSE_MARK));
525 button = gtk_button_new_with_mnemonic(_("In Sessi_on"));
526 gtk_container_add(GTK_CONTAINER(bbox), button);
527 g_signal_connect(button, "clicked", G_CALLBACK(send_find_dialog_response),
528 GINT_TO_POINTER(GEANY_RESPONSE_FIND_IN_SESSION));
530 button = gtk_button_new_with_mnemonic(_("_In Document"));
531 gtk_container_add(GTK_CONTAINER(bbox), button);
532 g_signal_connect(button, "clicked", G_CALLBACK(send_find_dialog_response),
533 GINT_TO_POINTER(GEANY_RESPONSE_FIND_IN_FILE));
535 /* close window checkbox */
536 check_close = gtk_check_button_new_with_mnemonic(_("Close _dialog"));
537 ui_hookup_widget(find_dlg.dialog, check_close, "check_close");
538 gtk_button_set_focus_on_click(GTK_BUTTON(check_close), FALSE);
539 gtk_widget_set_tooltip_text(check_close,
540 _("Disable this option to keep the dialog open"));
541 gtk_container_add(GTK_CONTAINER(bbox), check_close);
542 gtk_button_box_set_child_secondary(GTK_BUTTON_BOX(bbox), check_close, TRUE);
544 ui_hbutton_box_copy_layout(
545 GTK_BUTTON_BOX(gtk_dialog_get_action_area(GTK_DIALOG(find_dlg.dialog))),
546 GTK_BUTTON_BOX(bbox));
547 gtk_container_add(GTK_CONTAINER(exp), bbox);
548 gtk_container_add(GTK_CONTAINER(vbox), exp);
552 static void set_dialog_position(GtkWidget *dialog, gint *position)
554 if (position[0] >= 0)
555 gtk_window_move(GTK_WINDOW(dialog), position[0], position[1]);
559 void search_show_find_dialog(void)
561 GeanyDocument *doc = document_get_current();
562 gchar *sel = NULL;
564 g_return_if_fail(doc != NULL);
566 sel = editor_get_default_selection(doc->editor, search_prefs.use_current_word, NULL);
568 if (find_dlg.dialog == NULL)
570 create_find_dialog();
571 stash_group_display(find_prefs, find_dlg.dialog);
572 if (sel)
573 gtk_entry_set_text(GTK_ENTRY(find_dlg.entry), sel);
575 set_dialog_position(find_dlg.dialog, find_dlg.position);
576 gtk_widget_show_all(find_dlg.dialog);
578 else
580 /* only set selection if the dialog is not already visible */
581 if (! gtk_widget_get_visible(find_dlg.dialog) && sel)
582 gtk_entry_set_text(GTK_ENTRY(find_dlg.entry), sel);
583 gtk_widget_grab_focus(find_dlg.entry);
584 set_dialog_position(find_dlg.dialog, find_dlg.position);
585 gtk_widget_show(find_dlg.dialog);
586 if (sel != NULL) /* when we have a selection, reset the entry widget's background colour */
587 ui_set_search_entry_background(find_dlg.entry, TRUE);
588 /* bring the dialog back in the foreground in case it is already open but the focus is away */
589 gtk_window_present(GTK_WINDOW(find_dlg.dialog));
592 g_free(sel);
596 static void send_replace_dialog_response(GtkButton *button, gpointer user_data)
598 gtk_dialog_response(GTK_DIALOG(replace_dlg.dialog), GPOINTER_TO_INT(user_data));
602 static gboolean
603 on_widget_key_pressed_set_focus(GtkWidget *widget, GdkEventKey *event, gpointer user_data)
605 if (event->keyval == GDK_Tab)
607 gtk_widget_grab_focus(GTK_WIDGET(user_data));
608 return TRUE;
610 return FALSE;
614 static void create_replace_dialog(void)
616 GtkWidget *label_find, *label_replace, *entry_find, *entry_replace,
617 *check_close, *button, *rbox, *fbox, *vbox, *exp, *bbox;
618 GtkSizeGroup *label_size;
620 replace_dlg.dialog = gtk_dialog_new_with_buttons(_("Replace"),
621 GTK_WINDOW(main_widgets.window), GTK_DIALOG_DESTROY_WITH_PARENT,
622 GTK_STOCK_CLOSE, GTK_RESPONSE_CANCEL, NULL);
623 vbox = ui_dialog_vbox_new(GTK_DIALOG(replace_dlg.dialog));
624 gtk_box_set_spacing(GTK_BOX(vbox), 9);
625 gtk_widget_set_name(replace_dlg.dialog, "GeanyDialogSearch");
627 button = gtk_button_new_from_stock(GTK_STOCK_FIND);
628 gtk_dialog_add_action_widget(GTK_DIALOG(replace_dlg.dialog), button,
629 GEANY_RESPONSE_FIND);
630 button = gtk_button_new_with_mnemonic(_("_Replace"));
631 gtk_button_set_image(GTK_BUTTON(button),
632 gtk_image_new_from_stock(GTK_STOCK_FIND_AND_REPLACE, GTK_ICON_SIZE_BUTTON));
633 gtk_dialog_add_action_widget(GTK_DIALOG(replace_dlg.dialog), button,
634 GEANY_RESPONSE_REPLACE);
635 button = gtk_button_new_with_mnemonic(_("Replace & Fi_nd"));
636 gtk_button_set_image(GTK_BUTTON(button),
637 gtk_image_new_from_stock(GTK_STOCK_FIND_AND_REPLACE, GTK_ICON_SIZE_BUTTON));
638 gtk_dialog_add_action_widget(GTK_DIALOG(replace_dlg.dialog), button,
639 GEANY_RESPONSE_REPLACE_AND_FIND);
641 label_find = gtk_label_new_with_mnemonic(_("_Search for:"));
642 gtk_misc_set_alignment(GTK_MISC(label_find), 0, 0.5);
644 label_replace = gtk_label_new_with_mnemonic(_("Replace wit_h:"));
645 gtk_misc_set_alignment(GTK_MISC(label_replace), 0, 0.5);
647 entry_find = gtk_combo_box_text_new_with_entry();
648 ui_entry_add_clear_icon(GTK_ENTRY(gtk_bin_get_child(GTK_BIN(entry_find))));
649 gtk_label_set_mnemonic_widget(GTK_LABEL(label_find), entry_find);
650 gtk_entry_set_width_chars(GTK_ENTRY(gtk_bin_get_child(GTK_BIN(entry_find))), 50);
651 ui_hookup_widget(replace_dlg.dialog, entry_find, "entry_find");
652 replace_dlg.find_entry = gtk_bin_get_child(GTK_BIN(entry_find));
654 entry_replace = gtk_combo_box_text_new_with_entry();
655 ui_entry_add_clear_icon(GTK_ENTRY(gtk_bin_get_child(GTK_BIN(entry_replace))));
656 gtk_label_set_mnemonic_widget(GTK_LABEL(label_replace), entry_replace);
657 gtk_entry_set_width_chars(GTK_ENTRY(gtk_bin_get_child(GTK_BIN(entry_replace))), 50);
658 ui_hookup_widget(replace_dlg.dialog, entry_replace, "entry_replace");
659 replace_dlg.replace_entry = gtk_bin_get_child(GTK_BIN(entry_replace));
661 /* tab from find to the replace entry */
662 g_signal_connect(gtk_bin_get_child(GTK_BIN(entry_find)),
663 "key-press-event", G_CALLBACK(on_widget_key_pressed_set_focus),
664 gtk_bin_get_child(GTK_BIN(entry_replace)));
665 g_signal_connect(gtk_bin_get_child(GTK_BIN(entry_find)), "activate",
666 G_CALLBACK(on_replace_find_entry_activate), NULL);
667 g_signal_connect(gtk_bin_get_child(GTK_BIN(entry_replace)), "activate",
668 G_CALLBACK(on_replace_entry_activate), NULL);
669 g_signal_connect(replace_dlg.dialog, "response",
670 G_CALLBACK(on_replace_dialog_response), NULL);
671 g_signal_connect(replace_dlg.dialog, "delete-event",
672 G_CALLBACK(gtk_widget_hide_on_delete), NULL);
674 fbox = gtk_hbox_new(FALSE, 6);
675 gtk_box_pack_start(GTK_BOX(fbox), label_find, FALSE, FALSE, 0);
676 gtk_box_pack_start(GTK_BOX(fbox), entry_find, TRUE, TRUE, 0);
678 rbox = gtk_hbox_new(FALSE, 6);
679 gtk_box_pack_start(GTK_BOX(rbox), label_replace, FALSE, FALSE, 0);
680 gtk_box_pack_start(GTK_BOX(rbox), entry_replace, TRUE, TRUE, 0);
682 label_size = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
683 gtk_size_group_add_widget(label_size, label_find);
684 gtk_size_group_add_widget(label_size, label_replace);
685 g_object_unref(G_OBJECT(label_size)); /* auto destroy the size group */
687 gtk_box_pack_start(GTK_BOX(vbox), fbox, TRUE, FALSE, 0);
688 gtk_box_pack_start(GTK_BOX(vbox), rbox, TRUE, FALSE, 0);
689 gtk_container_add(GTK_CONTAINER(vbox),
690 add_find_checkboxes(GTK_DIALOG(replace_dlg.dialog)));
692 /* Now add the multiple replace options */
693 exp = gtk_expander_new_with_mnemonic(_("Re_place All"));
694 gtk_expander_set_expanded(GTK_EXPANDER(exp), replace_dlg.all_expanded);
695 g_signal_connect_after(exp, "activate",
696 G_CALLBACK(on_expander_activated), &replace_dlg.all_expanded);
698 bbox = gtk_hbutton_box_new();
700 button = gtk_button_new_with_mnemonic(_("In Sessi_on"));
701 gtk_container_add(GTK_CONTAINER(bbox), button);
702 g_signal_connect(button, "clicked", G_CALLBACK(send_replace_dialog_response),
703 GINT_TO_POINTER(GEANY_RESPONSE_REPLACE_IN_SESSION));
705 button = gtk_button_new_with_mnemonic(_("_In Document"));
706 gtk_container_add(GTK_CONTAINER(bbox), button);
707 g_signal_connect(button, "clicked", G_CALLBACK(send_replace_dialog_response),
708 GINT_TO_POINTER(GEANY_RESPONSE_REPLACE_IN_FILE));
710 button = gtk_button_new_with_mnemonic(_("In Se_lection"));
711 gtk_widget_set_tooltip_text(button,
712 _("Replace all matches found in the currently selected text"));
713 gtk_container_add(GTK_CONTAINER(bbox), button);
714 g_signal_connect(button, "clicked", G_CALLBACK(send_replace_dialog_response),
715 GINT_TO_POINTER(GEANY_RESPONSE_REPLACE_IN_SEL));
717 /* close window checkbox */
718 check_close = gtk_check_button_new_with_mnemonic(_("Close _dialog"));
719 ui_hookup_widget(replace_dlg.dialog, check_close, "check_close");
720 gtk_button_set_focus_on_click(GTK_BUTTON(check_close), FALSE);
721 gtk_widget_set_tooltip_text(check_close,
722 _("Disable this option to keep the dialog open"));
723 gtk_container_add(GTK_CONTAINER(bbox), check_close);
724 gtk_button_box_set_child_secondary(GTK_BUTTON_BOX(bbox), check_close, TRUE);
726 ui_hbutton_box_copy_layout(
727 GTK_BUTTON_BOX(gtk_dialog_get_action_area(GTK_DIALOG(replace_dlg.dialog))),
728 GTK_BUTTON_BOX(bbox));
729 gtk_container_add(GTK_CONTAINER(exp), bbox);
730 gtk_container_add(GTK_CONTAINER(vbox), exp);
734 void search_show_replace_dialog(void)
736 GeanyDocument *doc = document_get_current();
737 gchar *sel = NULL;
739 if (doc == NULL)
740 return;
742 sel = editor_get_default_selection(doc->editor, search_prefs.use_current_word, NULL);
744 if (replace_dlg.dialog == NULL)
746 create_replace_dialog();
747 stash_group_display(replace_prefs, replace_dlg.dialog);
748 if (sel)
749 gtk_entry_set_text(GTK_ENTRY(replace_dlg.find_entry), sel);
751 set_dialog_position(replace_dlg.dialog, replace_dlg.position);
752 gtk_widget_show_all(replace_dlg.dialog);
754 else
756 /* only set selection if the dialog is not already visible */
757 if (! gtk_widget_get_visible(replace_dlg.dialog) && sel)
758 gtk_entry_set_text(GTK_ENTRY(replace_dlg.find_entry), sel);
759 if (sel != NULL) /* when we have a selection, reset the entry widget's background colour */
760 ui_set_search_entry_background(replace_dlg.find_entry, TRUE);
761 gtk_widget_grab_focus(replace_dlg.find_entry);
762 set_dialog_position(replace_dlg.dialog, replace_dlg.position);
763 gtk_widget_show(replace_dlg.dialog);
764 /* bring the dialog back in the foreground in case it is already open but the focus is away */
765 gtk_window_present(GTK_WINDOW(replace_dlg.dialog));
768 g_free(sel);
772 static void on_widget_toggled_set_sensitive(GtkToggleButton *togglebutton, gpointer user_data)
774 /* disable extra option entry when checkbutton not checked */
775 gtk_widget_set_sensitive(GTK_WIDGET(user_data),
776 gtk_toggle_button_get_active(togglebutton));
780 static void update_file_patterns(GtkWidget *mode_combo, GtkWidget *fcombo)
782 gint selection;
783 GtkWidget *entry;
785 entry = gtk_bin_get_child(GTK_BIN(fcombo));
787 selection = gtk_combo_box_get_active(GTK_COMBO_BOX(mode_combo));
789 if (selection == FILES_MODE_ALL)
791 gtk_entry_set_text(GTK_ENTRY(entry), "");
792 gtk_widget_set_sensitive(fcombo, FALSE);
794 else if (selection == FILES_MODE_CUSTOM)
796 gtk_widget_set_sensitive(fcombo, TRUE);
798 else if (selection == FILES_MODE_PROJECT)
800 if (app->project && !EMPTY(app->project->file_patterns))
802 gchar *patterns;
804 patterns = g_strjoinv(" ", app->project->file_patterns);
805 gtk_entry_set_text(GTK_ENTRY(entry), patterns);
806 g_free(patterns);
808 else
810 gtk_entry_set_text(GTK_ENTRY(entry), "");
813 gtk_widget_set_sensitive(fcombo, FALSE);
818 /* creates the combo to choose which files include in the search */
819 static GtkWidget *create_fif_file_mode_combo(void)
821 GtkWidget *combo;
822 GtkCellRenderer *renderer;
823 GtkListStore *store;
824 GtkTreeIter iter;
826 /* text/sensitive */
827 store = gtk_list_store_new(2, G_TYPE_STRING, G_TYPE_BOOLEAN);
828 gtk_list_store_append(store, &iter);
829 gtk_list_store_set(store, &iter, 0, _("all"), 1, TRUE, -1);
830 gtk_list_store_append(store, &iter);
831 gtk_list_store_set(store, &iter, 0, _("project"), 1, app->project != NULL, -1);
832 gtk_list_store_append(store, &iter);
833 gtk_list_store_set(store, &iter, 0, _("custom"), 1, TRUE, -1);
835 combo = gtk_combo_box_new_with_model(GTK_TREE_MODEL(store));
836 g_object_unref(store);
837 gtk_widget_set_tooltip_text(combo, _("All: search all files in the directory\n"
838 "Project: use file patterns defined in the project settings\n"
839 "Custom: specify file patterns manually"));
841 renderer = gtk_cell_renderer_text_new();
842 gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(combo), renderer, TRUE);
843 gtk_cell_layout_set_attributes(GTK_CELL_LAYOUT(combo), renderer, "text", 0, "sensitive", 1, NULL);
845 return combo;
849 /* updates the sensitivity of the project combo item */
850 static void update_fif_file_mode_combo(void)
852 GtkTreeModel *model = gtk_combo_box_get_model(GTK_COMBO_BOX(fif_dlg.files_mode_combo));
853 GtkTreeIter iter;
855 /* "1" refers to the second list entry, project */
856 if (gtk_tree_model_get_iter_from_string(model, &iter, "1"))
857 gtk_list_store_set(GTK_LIST_STORE(model), &iter, 1, app->project != NULL, -1);
861 static void create_fif_dialog(void)
863 GtkWidget *dir_combo, *combo, *fcombo, *e_combo, *entry;
864 GtkWidget *label, *label1, *label2, *label3, *checkbox1, *checkbox2, *check_wholeword,
865 *check_recursive, *check_extra, *entry_extra, *check_regexp, *combo_files_mode;
866 GtkWidget *dbox, *sbox, *lbox, *rbox, *hbox, *vbox, *ebox;
867 GtkSizeGroup *size_group;
869 fif_dlg.dialog = gtk_dialog_new_with_buttons(
870 _("Find in Files"), GTK_WINDOW(main_widgets.window), GTK_DIALOG_DESTROY_WITH_PARENT,
871 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, NULL);
872 vbox = ui_dialog_vbox_new(GTK_DIALOG(fif_dlg.dialog));
873 gtk_box_set_spacing(GTK_BOX(vbox), 9);
874 gtk_widget_set_name(fif_dlg.dialog, "GeanyDialogSearch");
876 gtk_dialog_add_button(GTK_DIALOG(fif_dlg.dialog), GTK_STOCK_FIND, GTK_RESPONSE_ACCEPT);
877 gtk_dialog_set_default_response(GTK_DIALOG(fif_dlg.dialog),
878 GTK_RESPONSE_ACCEPT);
880 label = gtk_label_new_with_mnemonic(_("_Search for:"));
881 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
883 combo = gtk_combo_box_text_new_with_entry();
884 entry = gtk_bin_get_child(GTK_BIN(combo));
885 ui_entry_add_clear_icon(GTK_ENTRY(entry));
886 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry);
887 gtk_entry_set_width_chars(GTK_ENTRY(entry), 50);
888 gtk_entry_set_activates_default(GTK_ENTRY(entry), TRUE);
889 fif_dlg.search_combo = combo;
891 sbox = gtk_hbox_new(FALSE, 6);
892 gtk_box_pack_start(GTK_BOX(sbox), label, FALSE, FALSE, 0);
893 gtk_box_pack_start(GTK_BOX(sbox), combo, TRUE, TRUE, 0);
895 /* make labels same width */
896 size_group = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
897 gtk_size_group_add_widget(size_group, label);
899 label3 = gtk_label_new_with_mnemonic(_("Fi_les:"));
900 gtk_misc_set_alignment(GTK_MISC(label3), 0, 0.5);
902 combo_files_mode = create_fif_file_mode_combo();
903 gtk_label_set_mnemonic_widget(GTK_LABEL(label3), combo_files_mode);
904 ui_hookup_widget(fif_dlg.dialog, combo_files_mode, "combo_files_mode");
905 fif_dlg.files_mode_combo = combo_files_mode;
907 fcombo = gtk_combo_box_text_new_with_entry();
908 entry = gtk_bin_get_child(GTK_BIN(fcombo));
909 ui_entry_add_clear_icon(GTK_ENTRY(entry));
910 gtk_entry_set_activates_default(GTK_ENTRY(entry), TRUE);
911 gtk_widget_set_tooltip_text(entry, _("File patterns, e.g. *.c *.h"));
912 ui_hookup_widget(fif_dlg.dialog, entry, "entry_files");
913 fif_dlg.files_combo = fcombo;
915 /* update the entry when selection is changed */
916 g_signal_connect(combo_files_mode, "changed", G_CALLBACK(update_file_patterns), fcombo);
918 hbox = gtk_hbox_new(FALSE, 6);
919 gtk_box_pack_start(GTK_BOX(hbox), label3, FALSE, FALSE, 0);
920 gtk_box_pack_start(GTK_BOX(hbox), combo_files_mode, FALSE, FALSE, 0);
921 gtk_box_pack_start(GTK_BOX(hbox), fcombo, TRUE, TRUE, 0);
923 label1 = gtk_label_new_with_mnemonic(_("_Directory:"));
924 gtk_misc_set_alignment(GTK_MISC(label1), 0, 0.5);
926 dir_combo = gtk_combo_box_text_new_with_entry();
927 entry = gtk_bin_get_child(GTK_BIN(dir_combo));
928 ui_entry_add_clear_icon(GTK_ENTRY(entry));
929 gtk_entry_set_activates_default(GTK_ENTRY(entry), TRUE);
930 gtk_label_set_mnemonic_widget(GTK_LABEL(label1), entry);
931 gtk_entry_set_width_chars(GTK_ENTRY(entry), 50);
932 fif_dlg.dir_combo = dir_combo;
934 /* tab from files to the dir entry */
935 g_signal_connect(gtk_bin_get_child(GTK_BIN(fcombo)), "key-press-event",
936 G_CALLBACK(on_widget_key_pressed_set_focus), entry);
938 dbox = ui_path_box_new(NULL, GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
939 GTK_ENTRY(entry));
940 gtk_box_pack_start(GTK_BOX(dbox), label1, FALSE, FALSE, 0);
942 label2 = gtk_label_new_with_mnemonic(_("E_ncoding:"));
943 gtk_misc_set_alignment(GTK_MISC(label2), 0, 0.5);
945 e_combo = ui_create_encodings_combo_box(FALSE, GEANY_ENCODING_UTF_8);
946 gtk_label_set_mnemonic_widget(GTK_LABEL(label2), e_combo);
947 fif_dlg.encoding_combo = e_combo;
949 ebox = gtk_hbox_new(FALSE, 6);
950 gtk_box_pack_start(GTK_BOX(ebox), label2, FALSE, FALSE, 0);
951 gtk_box_pack_start(GTK_BOX(ebox), e_combo, TRUE, TRUE, 0);
953 gtk_size_group_add_widget(size_group, label1);
954 gtk_size_group_add_widget(size_group, label2);
955 gtk_size_group_add_widget(size_group, label3);
956 g_object_unref(G_OBJECT(size_group)); /* auto destroy the size group */
958 gtk_box_pack_start(GTK_BOX(vbox), sbox, TRUE, FALSE, 0);
959 gtk_box_pack_start(GTK_BOX(vbox), hbox, TRUE, FALSE, 0);
960 gtk_box_pack_start(GTK_BOX(vbox), dbox, TRUE, FALSE, 0);
961 gtk_box_pack_start(GTK_BOX(vbox), ebox, TRUE, FALSE, 0);
963 check_regexp = gtk_check_button_new_with_mnemonic(_("_Use regular expressions"));
964 ui_hookup_widget(fif_dlg.dialog, check_regexp, "check_regexp");
965 gtk_button_set_focus_on_click(GTK_BUTTON(check_regexp), FALSE);
966 gtk_widget_set_tooltip_text(check_regexp, _("See grep's manual page for more information"));
968 check_recursive = gtk_check_button_new_with_mnemonic(_("_Recurse in subfolders"));
969 ui_hookup_widget(fif_dlg.dialog, check_recursive, "check_recursive");
970 gtk_button_set_focus_on_click(GTK_BUTTON(check_recursive), FALSE);
972 checkbox1 = gtk_check_button_new_with_mnemonic(_("C_ase sensitive"));
973 ui_hookup_widget(fif_dlg.dialog, checkbox1, "check_case");
974 gtk_button_set_focus_on_click(GTK_BUTTON(checkbox1), FALSE);
975 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbox1), TRUE);
977 check_wholeword = gtk_check_button_new_with_mnemonic(_("Match only a _whole word"));
978 ui_hookup_widget(fif_dlg.dialog, check_wholeword, "check_wholeword");
979 gtk_button_set_focus_on_click(GTK_BUTTON(check_wholeword), FALSE);
981 checkbox2 = gtk_check_button_new_with_mnemonic(_("_Invert search results"));
982 ui_hookup_widget(fif_dlg.dialog, checkbox2, "check_invert");
983 gtk_button_set_focus_on_click(GTK_BUTTON(checkbox2), FALSE);
984 gtk_widget_set_tooltip_text(checkbox2,
985 _("Invert the sense of matching, to select non-matching lines"));
987 lbox = gtk_vbox_new(FALSE, 0);
988 gtk_container_add(GTK_CONTAINER(lbox), check_regexp);
989 gtk_container_add(GTK_CONTAINER(lbox), checkbox2);
990 gtk_container_add(GTK_CONTAINER(lbox), check_recursive);
992 rbox = gtk_vbox_new(FALSE, 0);
993 gtk_container_add(GTK_CONTAINER(rbox), checkbox1);
994 gtk_container_add(GTK_CONTAINER(rbox), check_wholeword);
995 gtk_container_add(GTK_CONTAINER(rbox), gtk_label_new(NULL));
997 hbox = gtk_hbox_new(FALSE, 6);
998 gtk_container_add(GTK_CONTAINER(hbox), lbox);
999 gtk_container_add(GTK_CONTAINER(hbox), rbox);
1000 gtk_container_add(GTK_CONTAINER(vbox), hbox);
1002 check_extra = gtk_check_button_new_with_mnemonic(_("E_xtra options:"));
1003 ui_hookup_widget(fif_dlg.dialog, check_extra, "check_extra");
1004 gtk_button_set_focus_on_click(GTK_BUTTON(check_extra), FALSE);
1006 entry_extra = gtk_entry_new();
1007 ui_entry_add_clear_icon(GTK_ENTRY(entry_extra));
1008 gtk_entry_set_activates_default(GTK_ENTRY(entry_extra), TRUE);
1009 gtk_widget_set_sensitive(entry_extra, FALSE);
1010 gtk_widget_set_tooltip_text(entry_extra, _("Other options to pass to Grep"));
1011 ui_hookup_widget(fif_dlg.dialog, entry_extra, "entry_extra");
1013 /* enable entry_extra when check_extra is checked */
1014 g_signal_connect(check_extra, "toggled",
1015 G_CALLBACK(on_widget_toggled_set_sensitive), entry_extra);
1017 hbox = gtk_hbox_new(FALSE, 6);
1018 gtk_box_pack_start(GTK_BOX(hbox), check_extra, FALSE, FALSE, 0);
1019 gtk_box_pack_start(GTK_BOX(hbox), entry_extra, TRUE, TRUE, 0);
1020 gtk_container_add(GTK_CONTAINER(vbox), hbox);
1022 g_signal_connect(fif_dlg.dialog, "response",
1023 G_CALLBACK(on_find_in_files_dialog_response), NULL);
1024 g_signal_connect(fif_dlg.dialog, "delete-event",
1025 G_CALLBACK(gtk_widget_hide_on_delete), NULL);
1030 * Shows the Find in Files dialog.
1032 * @param dir The directory to search in (UTF-8 encoding). May be @c NULL
1033 * to determine it the usual way by using the current document's path.
1035 * @since 0.14, plugin API 53
1037 void search_show_find_in_files_dialog(const gchar *dir)
1039 search_show_find_in_files_dialog_full(NULL, dir);
1043 void search_show_find_in_files_dialog_full(const gchar *text, const gchar *dir)
1045 GtkWidget *entry; /* for child GtkEntry of a GtkComboBoxEntry */
1046 GeanyDocument *doc = document_get_current();
1047 gchar *sel = NULL;
1048 gchar *cur_dir = NULL;
1049 GeanyEncodingIndex enc_idx = GEANY_ENCODING_UTF_8;
1051 if (fif_dlg.dialog == NULL)
1053 create_fif_dialog();
1054 gtk_widget_show_all(fif_dlg.dialog);
1055 if (doc && !text)
1056 sel = editor_get_default_selection(doc->editor, search_prefs.use_current_word, NULL);
1058 stash_group_display(fif_prefs, fif_dlg.dialog);
1060 if (!text)
1062 /* only set selection if the dialog is not already visible, or has just been created */
1063 if (doc && ! sel && ! gtk_widget_get_visible(fif_dlg.dialog))
1064 sel = editor_get_default_selection(doc->editor, search_prefs.use_current_word, NULL);
1066 text = sel;
1068 entry = gtk_bin_get_child(GTK_BIN(fif_dlg.search_combo));
1069 if (text)
1070 gtk_entry_set_text(GTK_ENTRY(entry), text);
1071 g_free(sel);
1073 /* add project's base path directory to the dir list, we do this here once
1074 * (in create_fif_dialog() it would fail if a project is opened after dialog creation) */
1075 if (app->project != NULL && !EMPTY(app->project->base_path))
1077 ui_combo_box_prepend_text_once(GTK_COMBO_BOX_TEXT(fif_dlg.dir_combo),
1078 app->project->base_path);
1081 entry = gtk_bin_get_child(GTK_BIN(fif_dlg.dir_combo));
1082 if (!EMPTY(dir))
1083 cur_dir = g_strdup(dir); /* custom directory argument passed */
1084 else
1086 if (search_prefs.use_current_file_dir)
1088 static gchar *last_cur_dir = NULL;
1089 static GeanyDocument *last_doc = NULL;
1091 /* Only set the directory entry once for the current document */
1092 cur_dir = utils_get_current_file_dir_utf8();
1093 if (doc == last_doc && cur_dir && utils_str_equal(cur_dir, last_cur_dir))
1095 /* in case the user now wants the current directory, add it to history */
1096 ui_combo_box_add_to_history(GTK_COMBO_BOX_TEXT(fif_dlg.dir_combo), cur_dir, 0);
1097 SETPTR(cur_dir, NULL);
1099 else
1100 SETPTR(last_cur_dir, g_strdup(cur_dir));
1102 last_doc = doc;
1104 if (!cur_dir && EMPTY(gtk_entry_get_text(GTK_ENTRY(entry))))
1106 /* use default_open_path if no directory could be determined
1107 * (e.g. when no files are open) */
1108 if (!cur_dir)
1109 cur_dir = g_strdup(utils_get_default_dir_utf8());
1110 if (!cur_dir)
1111 cur_dir = g_get_current_dir();
1114 if (cur_dir)
1116 gtk_entry_set_text(GTK_ENTRY(entry), cur_dir);
1117 g_free(cur_dir);
1120 update_fif_file_mode_combo();
1121 update_file_patterns(fif_dlg.files_mode_combo, fif_dlg.files_combo);
1123 /* set the encoding of the current file */
1124 if (doc != NULL)
1125 enc_idx = encodings_get_idx_from_charset(doc->encoding);
1126 ui_encodings_combo_box_set_active_encoding(GTK_COMBO_BOX(fif_dlg.encoding_combo), enc_idx);
1128 /* put the focus to the directory entry if it is empty */
1129 if (utils_str_equal(gtk_entry_get_text(GTK_ENTRY(entry)), ""))
1130 gtk_widget_grab_focus(fif_dlg.dir_combo);
1131 else
1132 gtk_widget_grab_focus(fif_dlg.search_combo);
1134 /* set dialog window position */
1135 set_dialog_position(fif_dlg.dialog, fif_dlg.position);
1137 gtk_widget_show(fif_dlg.dialog);
1138 /* bring the dialog back in the foreground in case it is already open but the focus is away */
1139 gtk_window_present(GTK_WINDOW(fif_dlg.dialog));
1143 static void
1144 on_find_replace_checkbutton_toggled(GtkToggleButton *togglebutton, gpointer user_data)
1146 GtkWidget *dialog = GTK_WIDGET(user_data);
1147 GtkToggleButton *chk_regexp = GTK_TOGGLE_BUTTON(
1148 ui_lookup_widget(dialog, "check_regexp"));
1150 if (togglebutton == chk_regexp)
1152 gboolean regex_set = gtk_toggle_button_get_active(chk_regexp);
1153 GtkWidget *check_word = ui_lookup_widget(dialog, "check_word");
1154 GtkWidget *check_wordstart = ui_lookup_widget(dialog, "check_wordstart");
1155 GtkWidget *check_escape = ui_lookup_widget(dialog, "check_escape");
1156 GtkWidget *check_multiline = ui_lookup_widget(dialog, "check_multiline");
1157 gboolean replace = (dialog != find_dlg.dialog);
1158 const char *back_button[2] = { "btn_previous" , "check_back" };
1160 /* hide options that don't apply to regex searches */
1161 gtk_widget_set_sensitive(check_escape, ! regex_set);
1162 gtk_widget_set_sensitive(ui_lookup_widget(dialog, back_button[replace]), ! regex_set);
1163 gtk_widget_set_sensitive(check_word, ! regex_set);
1164 gtk_widget_set_sensitive(check_wordstart, ! regex_set);
1165 gtk_widget_set_sensitive(check_multiline, regex_set);
1170 static GeanyMatchInfo *match_info_new(gint flags, gint start, gint end)
1172 GeanyMatchInfo *info = g_slice_alloc(sizeof *info);
1174 info->flags = flags;
1175 info->start = start;
1176 info->end = end;
1177 info->match_text = NULL;
1179 return info;
1182 void geany_match_info_free(GeanyMatchInfo *info)
1184 g_free(info->match_text);
1185 g_slice_free1(sizeof *info, info);
1189 /* find all in the given range.
1190 * Returns a list of allocated GeanyMatchInfo, should be freed using:
1192 * foreach_slist(node, matches)
1193 * geany_match_info_free(node->data);
1194 * g_slist_free(matches); */
1195 static GSList *find_range(ScintillaObject *sci, gint flags, struct Sci_TextToFind *ttf)
1197 GSList *matches = NULL;
1198 GeanyMatchInfo *info;
1200 g_return_val_if_fail(sci != NULL && ttf->lpstrText != NULL, NULL);
1201 if (! *ttf->lpstrText)
1202 return NULL;
1204 while (search_find_text(sci, flags, ttf, &info) != -1)
1206 if (ttf->chrgText.cpMax > ttf->chrg.cpMax)
1208 /* found text is partially out of range */
1209 geany_match_info_free(info);
1210 break;
1213 matches = g_slist_prepend(matches, info);
1214 ttf->chrg.cpMin = ttf->chrgText.cpMax;
1216 /* avoid rematching with empty matches like "(?=[a-z])" or "^$".
1217 * note we cannot assume a match will always be empty or not and then break out, since
1218 * matches like "a?(?=b)" will sometimes be empty and sometimes not */
1219 if (ttf->chrgText.cpMax == ttf->chrgText.cpMin)
1220 ttf->chrg.cpMin ++;
1223 return g_slist_reverse(matches);
1227 /* Clears markers if text is null/empty.
1228 * @return Number of matches marked. */
1229 gint search_mark_all(GeanyDocument *doc, const gchar *search_text, gint flags)
1231 gint count = 0;
1232 struct Sci_TextToFind ttf;
1233 GSList *match, *matches;
1235 g_return_val_if_fail(DOC_VALID(doc), 0);
1237 /* clear previous search indicators */
1238 editor_indicator_clear(doc->editor, GEANY_INDICATOR_SEARCH);
1240 if (G_UNLIKELY(EMPTY(search_text)))
1241 return 0;
1243 ttf.chrg.cpMin = 0;
1244 ttf.chrg.cpMax = sci_get_length(doc->editor->sci);
1245 ttf.lpstrText = (gchar *)search_text;
1247 matches = find_range(doc->editor->sci, flags, &ttf);
1248 foreach_slist (match, matches)
1250 GeanyMatchInfo *info = match->data;
1252 if (info->end != info->start)
1253 editor_indicator_set_on_range(doc->editor, GEANY_INDICATOR_SEARCH, info->start, info->end);
1254 count++;
1256 geany_match_info_free(info);
1258 g_slist_free(matches);
1260 return count;
1264 static void
1265 on_find_entry_activate(GtkEntry *entry, gpointer user_data)
1267 on_find_dialog_response(NULL, GEANY_RESPONSE_FIND, user_data);
1271 static void
1272 on_find_entry_activate_backward(GtkEntry *entry, gpointer user_data)
1274 /* can't search backwards with a regexp */
1275 if (search_data.flags & GEANY_FIND_REGEXP)
1276 utils_beep();
1277 else
1278 on_find_dialog_response(NULL, GEANY_RESPONSE_FIND_PREVIOUS, user_data);
1282 static gboolean int_search_flags(gint match_case, gint whole_word, gint regexp, gint multiline, gint word_start)
1284 return (match_case ? GEANY_FIND_MATCHCASE : 0) |
1285 (regexp ? GEANY_FIND_REGEXP : 0) |
1286 (whole_word ? GEANY_FIND_WHOLEWORD : 0) |
1287 (multiline ? GEANY_FIND_MULTILINE : 0) |
1288 /* SCFIND_WORDSTART overrides SCFIND_WHOLEWORD, but we want the opposite */
1289 (word_start && !whole_word ? GEANY_FIND_WORDSTART : 0);
1293 static void
1294 on_find_dialog_response(GtkDialog *dialog, gint response, gpointer user_data)
1296 gtk_window_get_position(GTK_WINDOW(find_dlg.dialog),
1297 &find_dlg.position[0], &find_dlg.position[1]);
1299 stash_group_update(find_prefs, find_dlg.dialog);
1301 if (response == GTK_RESPONSE_CANCEL || response == GTK_RESPONSE_DELETE_EVENT)
1302 gtk_widget_hide(find_dlg.dialog);
1303 else
1305 GeanyDocument *doc = document_get_current();
1306 gboolean check_close = settings.find_close_dialog;
1308 if (doc == NULL)
1309 return;
1311 search_data.backwards = FALSE;
1312 search_data.search_bar = FALSE;
1314 g_free(search_data.text);
1315 g_free(search_data.original_text);
1316 search_data.text = g_strdup(gtk_entry_get_text(GTK_ENTRY(gtk_bin_get_child(GTK_BIN(user_data)))));
1317 search_data.original_text = g_strdup(search_data.text);
1318 search_data.flags = int_search_flags(settings.find_case_sensitive,
1319 settings.find_match_whole_word, settings.find_regexp, settings.find_regexp_multiline,
1320 settings.find_match_word_start);
1322 if (EMPTY(search_data.text))
1324 fail:
1325 utils_beep();
1326 gtk_widget_grab_focus(find_dlg.entry);
1327 return;
1329 if (search_data.flags & GEANY_FIND_REGEXP)
1331 GRegex *regex = compile_regex(search_data.text, search_data.flags);
1332 if (!regex)
1333 goto fail;
1334 else
1335 g_regex_unref(regex);
1337 else if (settings.find_escape_sequences)
1339 if (! utils_str_replace_escape(search_data.text, FALSE))
1340 goto fail;
1342 ui_combo_box_add_to_history(GTK_COMBO_BOX_TEXT(user_data), search_data.original_text, 0);
1344 switch (response)
1346 case GEANY_RESPONSE_FIND:
1347 case GEANY_RESPONSE_FIND_PREVIOUS:
1349 gint result = document_find_text(doc, search_data.text, search_data.original_text, search_data.flags,
1350 (response == GEANY_RESPONSE_FIND_PREVIOUS), NULL, TRUE, GTK_WIDGET(find_dlg.dialog));
1351 ui_set_search_entry_background(find_dlg.entry, (result > -1));
1352 check_close = search_prefs.hide_find_dialog;
1353 break;
1355 case GEANY_RESPONSE_FIND_IN_FILE:
1356 search_find_usage(search_data.text, search_data.original_text, search_data.flags, FALSE);
1357 break;
1359 case GEANY_RESPONSE_FIND_IN_SESSION:
1360 search_find_usage(search_data.text, search_data.original_text, search_data.flags, TRUE);
1361 break;
1363 case GEANY_RESPONSE_MARK:
1365 gint count = search_mark_all(doc, search_data.text, search_data.flags);
1367 if (count == 0)
1368 ui_set_statusbar(FALSE, _("No matches found for \"%s\"."), search_data.original_text);
1369 else
1370 ui_set_statusbar(FALSE,
1371 ngettext("Found %d match for \"%s\".",
1372 "Found %d matches for \"%s\".", count),
1373 count, search_data.original_text);
1375 break;
1377 if (check_close)
1378 gtk_widget_hide(find_dlg.dialog);
1383 static void
1384 on_replace_find_entry_activate(GtkEntry *entry, gpointer user_data)
1386 on_replace_dialog_response(NULL, GEANY_RESPONSE_FIND, NULL);
1390 static void
1391 on_replace_entry_activate(GtkEntry *entry, gpointer user_data)
1393 on_replace_dialog_response(NULL, GEANY_RESPONSE_REPLACE, NULL);
1397 static void replace_in_session(GeanyDocument *doc,
1398 gint search_flags_re, gboolean search_replace_escape_re,
1399 const gchar *find, const gchar *replace,
1400 const gchar *original_find, const gchar *original_replace)
1402 guint n, page_count, rep_count = 0, file_count = 0;
1404 /* replace in all documents following notebook tab order */
1405 page_count = gtk_notebook_get_n_pages(GTK_NOTEBOOK(main_widgets.notebook));
1406 for (n = 0; n < page_count; n++)
1408 GeanyDocument *tmp_doc = document_get_from_page(n);
1409 gint reps = 0;
1411 reps = document_replace_all(tmp_doc, find, replace, original_find, original_replace, search_flags_re);
1412 rep_count += reps;
1413 if (reps)
1414 file_count++;
1416 if (file_count == 0)
1418 utils_beep();
1419 ui_set_statusbar(FALSE, _("No matches found for \"%s\"."), original_find);
1420 return;
1422 /* if only one file was changed, don't override that document's status message
1423 * so we don't have to translate 4 messages for ngettext */
1424 if (file_count > 1)
1425 ui_set_statusbar(FALSE, _("Replaced %u matches in %u documents."),
1426 rep_count, file_count);
1428 /* show which docs had replacements: */
1429 gtk_notebook_set_current_page(GTK_NOTEBOOK(msgwindow.notebook), MSG_STATUS);
1431 ui_save_buttons_toggle(doc->changed); /* update save all */
1435 static void
1436 on_replace_dialog_response(GtkDialog *dialog, gint response, gpointer user_data)
1438 GeanyDocument *doc = document_get_current();
1439 gint search_flags_re;
1440 gboolean search_backwards_re, search_replace_escape_re;
1441 gchar *find, *replace, *original_find = NULL, *original_replace = NULL;
1443 gtk_window_get_position(GTK_WINDOW(replace_dlg.dialog),
1444 &replace_dlg.position[0], &replace_dlg.position[1]);
1446 stash_group_update(replace_prefs, replace_dlg.dialog);
1448 if (response == GTK_RESPONSE_CANCEL || response == GTK_RESPONSE_DELETE_EVENT)
1450 gtk_widget_hide(replace_dlg.dialog);
1451 return;
1454 search_backwards_re = settings.replace_search_backwards;
1455 search_replace_escape_re = settings.replace_escape_sequences;
1456 find = g_strdup(gtk_entry_get_text(GTK_ENTRY(replace_dlg.find_entry)));
1457 replace = g_strdup(gtk_entry_get_text(GTK_ENTRY(replace_dlg.replace_entry)));
1459 search_flags_re = int_search_flags(settings.replace_case_sensitive,
1460 settings.replace_match_whole_word, settings.replace_regexp,
1461 settings.replace_regexp_multiline, settings.replace_match_word_start);
1463 if ((response != GEANY_RESPONSE_FIND) && (search_flags_re & GEANY_FIND_MATCHCASE)
1464 && (strcmp(find, replace) == 0))
1465 goto fail;
1467 original_find = g_strdup(find);
1468 original_replace = g_strdup(replace);
1470 if (search_flags_re & GEANY_FIND_REGEXP)
1472 GRegex *regex = compile_regex(find, search_flags_re);
1473 if (regex)
1474 g_regex_unref(regex);
1475 /* find escapes will be handled by GRegex */
1476 if (!regex || !utils_str_replace_escape(replace, TRUE))
1477 goto fail;
1479 else if (search_replace_escape_re)
1481 if (! utils_str_replace_escape(find, FALSE) ||
1482 ! utils_str_replace_escape(replace, FALSE))
1483 goto fail;
1486 ui_combo_box_add_to_history(GTK_COMBO_BOX_TEXT(
1487 gtk_widget_get_parent(replace_dlg.find_entry)), original_find, 0);
1488 ui_combo_box_add_to_history(GTK_COMBO_BOX_TEXT(
1489 gtk_widget_get_parent(replace_dlg.replace_entry)), original_replace, 0);
1491 switch (response)
1493 case GEANY_RESPONSE_REPLACE_AND_FIND:
1495 gint rep = document_replace_text(doc, find, original_find, replace, search_flags_re,
1496 search_backwards_re);
1497 if (rep != -1)
1498 document_find_text(doc, find, original_find, search_flags_re, search_backwards_re,
1499 NULL, TRUE, NULL);
1500 break;
1502 case GEANY_RESPONSE_REPLACE:
1503 document_replace_text(doc, find, original_find, replace, search_flags_re,
1504 search_backwards_re);
1505 break;
1507 case GEANY_RESPONSE_FIND:
1509 gint result = document_find_text(doc, find, original_find, search_flags_re,
1510 search_backwards_re, NULL, TRUE, GTK_WIDGET(dialog));
1511 ui_set_search_entry_background(replace_dlg.find_entry, (result > -1));
1512 break;
1514 case GEANY_RESPONSE_REPLACE_IN_FILE:
1515 if (! document_replace_all(doc, find, replace, original_find, original_replace, search_flags_re))
1516 utils_beep();
1517 break;
1519 case GEANY_RESPONSE_REPLACE_IN_SESSION:
1520 replace_in_session(doc, search_flags_re, search_replace_escape_re, find, replace, original_find, original_replace);
1521 break;
1523 case GEANY_RESPONSE_REPLACE_IN_SEL:
1524 document_replace_sel(doc, find, replace, original_find, original_replace, search_flags_re);
1525 break;
1527 switch (response)
1529 case GEANY_RESPONSE_REPLACE_IN_SEL:
1530 case GEANY_RESPONSE_REPLACE_IN_FILE:
1531 case GEANY_RESPONSE_REPLACE_IN_SESSION:
1532 if (settings.replace_close_dialog)
1533 gtk_widget_hide(replace_dlg.dialog);
1535 g_free(find);
1536 g_free(replace);
1537 g_free(original_find);
1538 g_free(original_replace);
1539 return;
1541 fail:
1542 utils_beep();
1543 gtk_widget_grab_focus(replace_dlg.find_entry);
1544 g_free(find);
1545 g_free(replace);
1546 g_free(original_find);
1547 g_free(original_replace);
1551 static GString *get_grep_options(void)
1553 GString *gstr = g_string_new("-nHI"); /* line numbers, filenames, ignore binaries */
1555 if (settings.fif_invert_results)
1556 g_string_append_c(gstr, 'v');
1557 if (! settings.fif_case_sensitive)
1558 g_string_append_c(gstr, 'i');
1559 if (settings.fif_match_whole_word)
1560 g_string_append_c(gstr, 'w');
1561 if (settings.fif_recursive)
1562 g_string_append_c(gstr, 'r');
1564 if (!settings.fif_regexp)
1565 g_string_append_c(gstr, 'F');
1566 else
1567 g_string_append_c(gstr, 'E');
1569 if (settings.fif_use_extra_options)
1571 g_strstrip(settings.fif_extra_options);
1573 if (*settings.fif_extra_options != 0)
1575 g_string_append_c(gstr, ' ');
1576 g_string_append(gstr, settings.fif_extra_options);
1579 g_strstrip(settings.fif_files);
1580 if (settings.fif_files_mode != FILES_MODE_ALL && *settings.fif_files)
1582 GString *tmp;
1584 /* put --include= before each pattern */
1585 tmp = g_string_new(settings.fif_files);
1586 do {} while (utils_string_replace_all(tmp, " ", " "));
1587 g_string_prepend_c(tmp, ' ');
1588 utils_string_replace_all(tmp, " ", " --include=");
1589 g_string_append(gstr, tmp->str);
1590 g_string_free(tmp, TRUE);
1592 return gstr;
1596 static void
1597 on_find_in_files_dialog_response(GtkDialog *dialog, gint response,
1598 G_GNUC_UNUSED gpointer user_data)
1600 gtk_window_get_position(GTK_WINDOW(fif_dlg.dialog), &fif_dlg.position[0], &fif_dlg.position[1]);
1602 stash_group_update(fif_prefs, fif_dlg.dialog);
1604 if (response == GTK_RESPONSE_ACCEPT)
1606 GtkWidget *search_combo = fif_dlg.search_combo;
1607 const gchar *search_text =
1608 gtk_entry_get_text(GTK_ENTRY(gtk_bin_get_child(GTK_BIN(search_combo))));
1609 GtkWidget *dir_combo = fif_dlg.dir_combo;
1610 const gchar *utf8_dir =
1611 gtk_entry_get_text(GTK_ENTRY(gtk_bin_get_child(GTK_BIN(dir_combo))));
1612 GeanyEncodingIndex enc_idx =
1613 ui_encodings_combo_box_get_active_encoding(GTK_COMBO_BOX(fif_dlg.encoding_combo));
1615 if (G_UNLIKELY(EMPTY(utf8_dir)))
1616 ui_set_statusbar(FALSE, _("Invalid directory for find in files."));
1617 else if (!EMPTY(search_text))
1619 gchar *locale_dir;
1620 GString *opts = get_grep_options();
1621 const gchar *enc = (enc_idx == GEANY_ENCODING_UTF_8) ? NULL :
1622 encodings_get_charset_from_index(enc_idx);
1624 locale_dir = utils_get_locale_from_utf8(utf8_dir);
1626 if (search_find_in_files(search_text, locale_dir, opts->str, enc))
1628 ui_combo_box_add_to_history(GTK_COMBO_BOX_TEXT(search_combo), search_text, 0);
1629 ui_combo_box_add_to_history(GTK_COMBO_BOX_TEXT(fif_dlg.files_combo), NULL, 0);
1630 ui_combo_box_add_to_history(GTK_COMBO_BOX_TEXT(dir_combo), utf8_dir, 0);
1631 gtk_widget_hide(fif_dlg.dialog);
1633 g_free(locale_dir);
1634 g_string_free(opts, TRUE);
1636 else
1637 ui_set_statusbar(FALSE, _("No text to find."));
1639 else
1640 gtk_widget_hide(fif_dlg.dialog);
1644 static gboolean
1645 search_find_in_files(const gchar *utf8_search_text, const gchar *dir, const gchar *opts,
1646 const gchar *enc)
1648 gchar **argv_prefix, **argv, **opts_argv;
1649 gchar *command_grep;
1650 gchar *search_text = NULL;
1651 gint opts_argv_len, i;
1652 GPid child_pid;
1653 gint stdout_fd;
1654 gint stderr_fd;
1655 GError *error = NULL;
1656 gboolean ret = FALSE;
1657 gssize utf8_text_len;
1659 if (EMPTY(utf8_search_text) || ! dir) return TRUE;
1661 command_grep = g_find_program_in_path(tool_prefs.grep_cmd);
1662 if (command_grep == NULL)
1664 ui_set_statusbar(TRUE, _("Cannot execute grep tool '%s';"
1665 " check the path setting in Preferences."), tool_prefs.grep_cmd);
1666 return FALSE;
1669 if (! g_shell_parse_argv(opts, &opts_argv_len, &opts_argv, &error))
1671 ui_set_statusbar(TRUE, _("Cannot parse extra options: %s"), error->message);
1672 g_error_free(error);
1673 g_free(command_grep);
1674 return FALSE;
1677 /* convert the search text in the preferred encoding (if the text is not valid UTF-8. assume
1678 * it is already in the preferred encoding) */
1679 utf8_text_len = strlen(utf8_search_text);
1680 if (enc != NULL && g_utf8_validate(utf8_search_text, utf8_text_len, NULL))
1682 search_text = g_convert(utf8_search_text, utf8_text_len, enc, "UTF-8", NULL, NULL, NULL);
1684 if (search_text == NULL)
1685 search_text = g_strdup(utf8_search_text);
1687 /* set grep command and options */
1688 argv_prefix = g_new0(gchar*, 1 + opts_argv_len + 3 + 1); /* last +1 for recursive arg */
1690 argv_prefix[0] = command_grep;
1691 for (i = 0; i < opts_argv_len; i++)
1693 argv_prefix[i + 1] = g_strdup(opts_argv[i]);
1695 g_strfreev(opts_argv);
1697 i++; /* correct for tool_prefs.grep_cmd */
1698 argv_prefix[i++] = g_strdup("--");
1699 argv_prefix[i++] = search_text;
1701 /* finally add the arguments(files to be searched) */
1702 if (strstr(argv_prefix[1], "r")) /* recursive option set */
1704 /* Use '.' so we get relative paths in the output */
1705 argv_prefix[i++] = g_strdup(".");
1706 argv_prefix[i++] = NULL;
1707 argv = argv_prefix;
1709 else
1711 argv_prefix[i++] = NULL;
1712 argv = search_get_argv((const gchar**)argv_prefix, dir);
1713 g_strfreev(argv_prefix);
1716 if (argv == NULL) /* no files */
1718 return FALSE;
1721 gtk_list_store_clear(msgwindow.store_msg);
1722 gtk_notebook_set_current_page(GTK_NOTEBOOK(msgwindow.notebook), MSG_MESSAGE);
1724 if (! g_spawn_async_with_pipes(dir, (gchar**)argv, NULL, G_SPAWN_DO_NOT_REAP_CHILD,
1725 NULL, NULL, &child_pid,
1726 NULL, &stdout_fd, &stderr_fd, &error))
1728 geany_debug("%s: g_spawn_async_with_pipes() failed: %s", G_STRFUNC, error->message);
1729 ui_set_statusbar(TRUE, _("Process failed (%s)"), error->message);
1730 g_error_free(error);
1731 ret = FALSE;
1733 else
1735 gchar *str, *utf8_str;
1737 ui_progress_bar_start(_("Searching..."));
1739 msgwin_set_messages_dir(dir);
1740 /* we can pass 'enc' without strdup'ing it here because it's a global const string and
1741 * always exits longer than the lifetime of this function */
1742 utils_set_up_io_channel(stdout_fd, G_IO_IN | G_IO_PRI | G_IO_ERR | G_IO_HUP | G_IO_NVAL,
1743 TRUE, search_read_io, (gpointer) enc);
1744 utils_set_up_io_channel(stderr_fd, G_IO_IN | G_IO_PRI | G_IO_ERR | G_IO_HUP | G_IO_NVAL,
1745 TRUE, search_read_io_stderr, (gpointer) enc);
1746 g_child_watch_add(child_pid, search_close_pid, NULL);
1748 str = g_strdup_printf(_("%s %s -- %s (in directory: %s)"),
1749 tool_prefs.grep_cmd, opts, utf8_search_text, dir);
1750 utf8_str = utils_get_utf8_from_locale(str);
1751 msgwin_msg_add_string(COLOR_BLUE, -1, NULL, utf8_str);
1752 utils_free_pointers(2, str, utf8_str, NULL);
1753 ret = TRUE;
1755 g_strfreev(argv);
1756 return ret;
1760 static gboolean pattern_list_match(GSList *patterns, const gchar *str)
1762 GSList *item;
1764 foreach_slist(item, patterns)
1766 if (g_pattern_match_string(item->data, str))
1767 return TRUE;
1769 return FALSE;
1773 /* Creates an argument vector of strings, copying argv_prefix[] values for
1774 * the first arguments, then followed by filenames found in dir.
1775 * Returns NULL if no files were found, otherwise returned vector should be fully freed. */
1776 static gchar **search_get_argv(const gchar **argv_prefix, const gchar *dir)
1778 guint prefix_len, list_len, i, j;
1779 gchar **argv;
1780 GSList *list, *item, *patterns = NULL;
1781 GError *error = NULL;
1783 g_return_val_if_fail(dir != NULL, NULL);
1785 prefix_len = g_strv_length((gchar**)argv_prefix);
1786 list = utils_get_file_list(dir, &list_len, &error);
1787 if (error)
1789 ui_set_statusbar(TRUE, _("Could not open directory (%s)"), error->message);
1790 g_error_free(error);
1791 return NULL;
1793 if (list == NULL)
1794 return NULL;
1796 argv = g_new(gchar*, prefix_len + list_len + 1);
1798 for (i = 0, j = 0; i < prefix_len; i++)
1800 if (g_str_has_prefix(argv_prefix[i], "--include="))
1802 const gchar *pat = &(argv_prefix[i][10]); /* the pattern part of the argument */
1804 patterns = g_slist_prepend(patterns, g_pattern_spec_new(pat));
1806 else
1807 argv[j++] = g_strdup(argv_prefix[i]);
1810 if (patterns)
1812 GSList *pat;
1814 foreach_slist(item, list)
1816 if (pattern_list_match(patterns, item->data))
1817 argv[j++] = item->data;
1818 else
1819 g_free(item->data);
1821 foreach_slist(pat, patterns)
1822 g_pattern_spec_free(pat->data);
1823 g_slist_free(patterns);
1825 else
1827 foreach_slist(item, list)
1828 argv[j++] = item->data;
1831 argv[j] = NULL;
1832 g_slist_free(list);
1833 return argv;
1837 static gboolean read_fif_io(GIOChannel *source, GIOCondition condition, gchar *enc, gint msg_color)
1839 if (condition & (G_IO_IN | G_IO_PRI))
1841 gchar *msg, *utf8_msg;
1843 while (g_io_channel_read_line(source, &msg, NULL, NULL, NULL) && msg)
1845 utf8_msg = NULL;
1847 g_strstrip(msg);
1848 /* enc is NULL when encoding is set to UTF-8, so we can skip any conversion */
1849 if (enc != NULL)
1851 if (! g_utf8_validate(msg, -1, NULL))
1853 utf8_msg = g_convert(msg, -1, "UTF-8", enc, NULL, NULL, NULL);
1855 if (utf8_msg == NULL)
1856 utf8_msg = msg;
1858 else
1859 utf8_msg = msg;
1861 msgwin_msg_add_string(msg_color, -1, NULL, utf8_msg);
1863 if (utf8_msg != msg)
1864 g_free(utf8_msg);
1865 g_free(msg);
1868 if (condition & (G_IO_ERR | G_IO_HUP | G_IO_NVAL))
1869 return FALSE;
1871 return TRUE;
1875 static gboolean search_read_io(GIOChannel *source, GIOCondition condition, gpointer data)
1877 return read_fif_io(source, condition, data, COLOR_BLACK);
1881 static gboolean search_read_io_stderr(GIOChannel *source, GIOCondition condition, gpointer data)
1883 return read_fif_io(source, condition, data, COLOR_DARK_RED);
1887 static void search_close_pid(GPid child_pid, gint status, gpointer user_data)
1889 const gchar *msg = _("Search failed.");
1890 #ifdef G_OS_UNIX
1891 gint exit_status = 1;
1893 if (WIFEXITED(status))
1895 exit_status = WEXITSTATUS(status);
1897 else if (WIFSIGNALED(status))
1899 exit_status = -1;
1900 g_warning("Find in Files: The command failed unexpectedly (signal received).");
1902 #else
1903 gint exit_status = status;
1904 #endif
1906 switch (exit_status)
1908 case 0:
1910 gint count = gtk_tree_model_iter_n_children(
1911 GTK_TREE_MODEL(msgwindow.store_msg), NULL) - 1;
1912 gchar *text = ngettext(
1913 "Search completed with %d match.",
1914 "Search completed with %d matches.", count);
1916 msgwin_msg_add(COLOR_BLUE, -1, NULL, text, count);
1917 ui_set_statusbar(FALSE, text, count);
1918 break;
1920 case 1:
1921 msg = _("No matches found.");
1922 default:
1923 msgwin_msg_add_string(COLOR_BLUE, -1, NULL, msg);
1924 ui_set_statusbar(FALSE, "%s", msg);
1925 break;
1927 utils_beep();
1928 g_spawn_close_pid(child_pid);
1929 ui_progress_bar_stop();
1933 static GRegex *compile_regex(const gchar *str, gint sflags)
1935 GRegex *regex;
1936 GError *error = NULL;
1937 gint rflags = 0;
1939 if (sflags & GEANY_FIND_MULTILINE)
1940 rflags |= G_REGEX_MULTILINE;
1941 if (~sflags & GEANY_FIND_MATCHCASE)
1942 rflags |= G_REGEX_CASELESS;
1943 if (sflags & (GEANY_FIND_WHOLEWORD | GEANY_FIND_WORDSTART))
1945 geany_debug("%s: Unsupported regex flags found!", G_STRFUNC);
1948 regex = g_regex_new(str, rflags, 0, &error);
1949 if (!regex)
1951 ui_set_statusbar(FALSE, _("Bad regex: %s"), error->message);
1952 g_error_free(error);
1954 return regex;
1958 /* groups that don't exist are handled OK as len = end - start = (-1) - (-1) = 0 */
1959 static gchar *get_regex_match_string(const gchar *text, const GeanyMatchInfo *match, guint nth)
1961 const gint start = match->matches[nth].start;
1962 const gint end = match->matches[nth].end;
1963 return g_strndup(&text[start], end - start);
1967 static gint find_regex(ScintillaObject *sci, guint pos, GRegex *regex, GeanyMatchInfo *match)
1969 const gchar *text;
1970 GMatchInfo *minfo;
1971 gint ret = -1;
1972 gint offset = 0;
1974 g_return_val_if_fail(pos <= (guint)sci_get_length(sci), -1);
1976 if (g_regex_get_compile_flags(regex) & G_REGEX_MULTILINE)
1978 /* Warning: any SCI calls will invalidate 'text' after calling SCI_GETCHARACTERPOINTER */
1979 text = (void*)scintilla_send_message(sci, SCI_GETCHARACTERPOINTER, 0, 0);
1980 g_regex_match_full(regex, text, -1, pos, 0, &minfo, NULL);
1982 else /* single-line mode, manually match against each line */
1984 gint line = sci_get_line_from_position(sci, pos);
1986 for (;;)
1988 gint start = sci_get_position_from_line(sci, line);
1989 gint end = sci_get_line_end_position(sci, line);
1991 text = (void*)scintilla_send_message(sci, SCI_GETRANGEPOINTER, start, end - start);
1992 if (g_regex_match_full(regex, text, end - start, pos - start, 0, &minfo, NULL))
1994 offset = start;
1995 break;
1997 else /* not found, try next line */
1999 line ++;
2000 if (line >= sci_get_line_count(sci))
2001 break;
2002 pos = sci_get_position_from_line(sci, line);
2003 /* don't free last info, it's freed below */
2004 g_match_info_free(minfo);
2009 /* Warning: minfo will become invalid when 'text' does! */
2010 if (g_match_info_matches(minfo))
2012 guint i;
2014 /* copy whole match text and offsets before they become invalid */
2015 SETPTR(match->match_text, g_match_info_fetch(minfo, 0));
2017 foreach_range(i, G_N_ELEMENTS(match->matches))
2019 gint start = -1, end = -1;
2021 g_match_info_fetch_pos(minfo, (gint)i, &start, &end);
2022 match->matches[i].start = offset + start;
2023 match->matches[i].end = offset + end;
2025 match->start = match->matches[0].start;
2026 match->end = match->matches[0].end;
2027 ret = match->start;
2029 g_match_info_free(minfo);
2030 return ret;
2034 gint search_find_prev(ScintillaObject *sci, const gchar *str, gint flags, GeanyMatchInfo **match_)
2036 gint ret;
2038 g_return_val_if_fail(! (flags & GEANY_FIND_REGEXP), -1);
2040 ret = sci_search_prev(sci, flags, str);
2041 if (ret != -1 && match_)
2042 *match_ = match_info_new(flags, ret, ret + strlen(str));
2043 return ret;
2047 static gint geany_find_flags_to_sci_flags(gint flags)
2049 g_warn_if_fail(! (flags & GEANY_FIND_MULTILINE));
2051 return ((flags & GEANY_FIND_MATCHCASE) ? SCFIND_MATCHCASE : 0) |
2052 ((flags & GEANY_FIND_WHOLEWORD) ? SCFIND_WHOLEWORD : 0) |
2053 ((flags & GEANY_FIND_REGEXP) ? SCFIND_REGEXP | SCFIND_POSIX : 0) |
2054 ((flags & GEANY_FIND_WORDSTART) ? SCFIND_WORDSTART : 0);
2058 gint search_find_next(ScintillaObject *sci, const gchar *str, gint flags, GeanyMatchInfo **match_)
2060 GeanyMatchInfo *match;
2061 GRegex *regex;
2062 gint ret = -1;
2063 gint pos;
2065 if (~flags & GEANY_FIND_REGEXP)
2067 ret = sci_search_next(sci, geany_find_flags_to_sci_flags(flags), str);
2068 if (ret != -1 && match_)
2069 *match_ = match_info_new(flags, ret, ret + strlen(str));
2070 return ret;
2073 regex = compile_regex(str, flags);
2074 if (!regex)
2075 return -1;
2077 match = match_info_new(flags, 0, 0);
2079 pos = sci_get_current_position(sci);
2080 ret = find_regex(sci, pos, regex, match);
2081 /* avoid re-matching the same position in case of empty matches */
2082 if (ret == pos && match->matches[0].start == match->matches[0].end)
2083 ret = find_regex(sci, pos + 1, regex, match);
2084 if (ret >= 0)
2085 sci_set_selection(sci, match->start, match->end);
2087 if (ret != -1 && match_)
2088 *match_ = match;
2089 else
2090 geany_match_info_free(match);
2092 g_regex_unref(regex);
2093 return ret;
2097 gint search_replace_match(ScintillaObject *sci, const GeanyMatchInfo *match, const gchar *replace_text)
2099 GString *str;
2100 gint ret = 0;
2101 gint i = 0;
2103 sci_set_target_start(sci, match->start);
2104 sci_set_target_end(sci, match->end);
2106 if (! (match->flags & GEANY_FIND_REGEXP))
2107 return sci_replace_target(sci, replace_text, FALSE);
2109 str = g_string_new(replace_text);
2110 while (str->str[i])
2112 gchar *ptr = &str->str[i];
2113 gchar *grp;
2114 gchar c;
2116 if (ptr[0] != '\\')
2118 i++;
2119 continue;
2121 c = ptr[1];
2122 /* backslash or unnecessary escape */
2123 if (c == '\\' || !isdigit(c))
2125 g_string_erase(str, i, 1);
2126 i++;
2127 continue;
2129 /* digit escape */
2130 g_string_erase(str, i, 2);
2131 /* fix match offsets by subtracting index of whole match start from the string */
2132 grp = get_regex_match_string(match->match_text - match->matches[0].start, match, c - '0');
2133 g_string_insert(str, i, grp);
2134 i += strlen(grp);
2135 g_free(grp);
2137 ret = sci_replace_target(sci, str->str, FALSE);
2138 g_string_free(str, TRUE);
2139 return ret;
2143 gint search_find_text(ScintillaObject *sci, gint flags, struct Sci_TextToFind *ttf, GeanyMatchInfo **match_)
2145 GeanyMatchInfo *match = NULL;
2146 GRegex *regex;
2147 gint ret;
2149 if (~flags & GEANY_FIND_REGEXP)
2151 ret = sci_find_text(sci, geany_find_flags_to_sci_flags(flags), ttf);
2152 if (ret != -1 && match_)
2153 *match_ = match_info_new(flags, ttf->chrgText.cpMin, ttf->chrgText.cpMax);
2154 return ret;
2157 regex = compile_regex(ttf->lpstrText, flags);
2158 if (!regex)
2159 return -1;
2161 match = match_info_new(flags, 0, 0);
2163 ret = find_regex(sci, ttf->chrg.cpMin, regex, match);
2164 if (ret >= ttf->chrg.cpMax)
2165 ret = -1;
2166 else if (ret >= 0)
2168 ttf->chrgText.cpMin = match->start;
2169 ttf->chrgText.cpMax = match->end;
2172 if (ret != -1 && match_)
2173 *match_ = match;
2174 else
2175 geany_match_info_free(match);
2177 g_regex_unref(regex);
2178 return ret;
2182 static gint find_document_usage(GeanyDocument *doc, const gchar *search_text, gint flags)
2184 gchar *buffer, *short_file_name;
2185 struct Sci_TextToFind ttf;
2186 gint count = 0;
2187 gint prev_line = -1;
2188 GSList *match, *matches;
2190 g_return_val_if_fail(DOC_VALID(doc), 0);
2192 short_file_name = g_path_get_basename(DOC_FILENAME(doc));
2194 ttf.chrg.cpMin = 0;
2195 ttf.chrg.cpMax = sci_get_length(doc->editor->sci);
2196 ttf.lpstrText = (gchar *)search_text;
2198 matches = find_range(doc->editor->sci, flags, &ttf);
2199 foreach_slist (match, matches)
2201 GeanyMatchInfo *info = match->data;
2202 gint line = sci_get_line_from_position(doc->editor->sci, info->start);
2204 if (line != prev_line)
2206 buffer = sci_get_line(doc->editor->sci, line);
2207 msgwin_msg_add(COLOR_BLACK, line + 1, doc,
2208 "%s:%d: %s", short_file_name, line + 1, g_strstrip(buffer));
2209 g_free(buffer);
2210 prev_line = line;
2212 count++;
2214 geany_match_info_free(info);
2216 g_slist_free(matches);
2217 g_free(short_file_name);
2218 return count;
2222 void search_find_usage(const gchar *search_text, const gchar *original_search_text,
2223 gint flags, gboolean in_session)
2225 GeanyDocument *doc;
2226 gint count = 0;
2228 doc = document_get_current();
2229 g_return_if_fail(doc != NULL);
2231 if (G_UNLIKELY(EMPTY(search_text)))
2233 utils_beep();
2234 return;
2237 gtk_notebook_set_current_page(GTK_NOTEBOOK(msgwindow.notebook), MSG_MESSAGE);
2238 gtk_list_store_clear(msgwindow.store_msg);
2240 if (! in_session)
2241 { /* use current document */
2242 count = find_document_usage(doc, search_text, flags);
2244 else
2246 guint i;
2247 for (i = 0; i < documents_array->len; i++)
2249 if (documents[i]->is_valid)
2251 count += find_document_usage(documents[i], search_text, flags);
2256 if (count == 0) /* no matches were found */
2258 ui_set_statusbar(FALSE, _("No matches found for \"%s\"."), original_search_text);
2259 msgwin_msg_add(COLOR_BLUE, -1, NULL, _("No matches found for \"%s\"."), original_search_text);
2261 else
2263 ui_set_statusbar(FALSE, ngettext(
2264 "Found %d match for \"%s\".", "Found %d matches for \"%s\".", count),
2265 count, original_search_text);
2266 msgwin_msg_add(COLOR_BLUE, -1, NULL, ngettext(
2267 "Found %d match for \"%s\".", "Found %d matches for \"%s\".", count),
2268 count, original_search_text);
2273 /* ttf is updated to include the last match position (ttf->chrg.cpMin) and
2274 * the new search range end (ttf->chrg.cpMax).
2275 * Note: Normally you would call sci_start/end_undo_action() around this call. */
2276 guint search_replace_range(ScintillaObject *sci, struct Sci_TextToFind *ttf,
2277 gint flags, const gchar *replace_text)
2279 gint count = 0;
2280 gint offset = 0; /* difference between search pos and replace pos */
2281 GSList *match, *matches;
2283 g_return_val_if_fail(sci != NULL && ttf->lpstrText != NULL && replace_text != NULL, 0);
2284 if (! *ttf->lpstrText)
2285 return 0;
2287 matches = find_range(sci, flags, ttf);
2288 foreach_slist (match, matches)
2290 GeanyMatchInfo *info = match->data;
2291 gint replace_len;
2293 info->start += offset;
2294 info->end += offset;
2296 replace_len = search_replace_match(sci, info, replace_text);
2297 offset += replace_len - (info->end - info->start);
2298 count ++;
2300 /* on last match, update the last match/new range end */
2301 if (! match->next)
2303 ttf->chrg.cpMin = info->start;
2304 ttf->chrg.cpMax += offset;
2307 geany_match_info_free(info);
2309 g_slist_free(matches);
2311 return count;
2315 void search_find_again(gboolean change_direction)
2317 GeanyDocument *doc = document_get_current();
2319 g_return_if_fail(doc != NULL);
2321 if (search_data.text)
2323 gboolean forward = ! search_data.backwards;
2324 gint result = document_find_text(doc, search_data.text, search_data.original_text, search_data.flags,
2325 change_direction ? forward : !forward, NULL, FALSE, NULL);
2327 if (result > -1)
2328 editor_display_current_line(doc->editor, 0.3F);
2330 if (search_data.search_bar)
2331 ui_set_search_entry_background(
2332 toolbar_get_widget_child_by_name("SearchEntry"), (result > -1));