[gnome-terminal/search: 9/9] [search] Rename 'find' stuff to 'search'
- From: Behdad Esfahbod <behdad src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-terminal/search: 9/9] [search] Rename 'find' stuff to 'search'
- Date: Tue, 13 Apr 2010 13:51:35 +0000 (UTC)
commit ae0eb9d1e56cdb872fdf8d84abc86fdc5a0c4712
Author: Behdad Esfahbod <behdad behdad org>
Date: Tue Apr 13 09:45:43 2010 -0400
[search] Rename 'find' stuff to 'search'
src/Makefile.am | 6 +-
src/{terminal-find.glade => search-find.glade} | 0
src/{terminal-find.c => terminal-search.c} | 54 +++++++++++------------
src/{terminal-find.h => terminal-search.h} | 0
src/terminal-window.c | 2 +-
5 files changed, 30 insertions(+), 32 deletions(-)
---
diff --git a/src/Makefile.am b/src/Makefile.am
index 8d8cb49..b2dcf01 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -27,8 +27,6 @@ gnome_terminal_SOURCES= \
terminal-app.h \
terminal-debug.c \
terminal-debug.h \
- terminal-find.c \
- terminal-find.h \
terminal-encoding.c \
terminal-encoding.h \
terminal-intl.h \
@@ -40,6 +38,8 @@ gnome_terminal_SOURCES= \
terminal-screen.h \
terminal-screen-container.c \
terminal-screen-container.h \
+ terminal-search.c \
+ terminal-search.h \
terminal-tab-label.c \
terminal-tab-label.h \
terminal-tabs-menu.c \
@@ -173,8 +173,8 @@ builder_in_files = \
profile-manager.glade \
profile-new-dialog.glade \
profile-preferences.glade \
+ search-find.glade \
skey-challenge.glade \
- terminal-find.glade \
$(NULL)
builderdir = $(pkgdatadir)
diff --git a/src/terminal-find.glade b/src/search-find.glade
similarity index 100%
rename from src/terminal-find.glade
rename to src/search-find.glade
diff --git a/src/terminal-find.c b/src/terminal-search.c
similarity index 91%
rename from src/terminal-find.c
rename to src/terminal-search.c
index 027bd46..e19dc7b 100644
--- a/src/terminal-find.c
+++ b/src/terminal-search.c
@@ -22,23 +22,21 @@
#include <glib.h>
#include "terminal-app.h"
-#include "terminal-find.h"
+#include "terminal-search.h"
#include "terminal-window.h"
#include "terminal-util.h"
-//#include "vteint.h"
-//#include "vte-private.h"
/* Our config info lives under: /apps/gnome-terminal/find */
-#define CONF_FIND_PREFIX CONF_PREFIX "/find"
+#define CONF_SEARCH_PREFIX CONF_PREFIX "/search"
-#define CONF_FIND_MATCH_CASE CONF_FIND_PREFIX "/match_case"
-#define CONF_FIND_MATCH_REGEX CONF_FIND_PREFIX "/match_regex"
-#define CONF_FIND_MATCH_WHOLE CONF_FIND_PREFIX "/match_whole"
+#define CONF_SEARCH_MATCH_CASE CONF_SEARCH_PREFIX "/match_case"
+#define CONF_SEARCH_MATCH_REGEX CONF_SEARCH_PREFIX "/match_regex"
+#define CONF_SEARCH_MATCH_WHOLE CONF_SEARCH_PREFIX "/match_whole"
-#define TERMINAL_FIND_FLAG_CASE (1 << 0)
-#define TERMINAL_FIND_FLAG_REGEX (1 << 1)
-#define TERMINAL_FIND_FLAG_WHOLE (1 << 2)
+#define TERMINAL_SEARCH_FLAG_CASE (1 << 0)
+#define TERMINAL_SEARCH_FLAG_REGEX (1 << 1)
+#define TERMINAL_SEARCH_FLAG_WHOLE (1 << 2)
typedef struct
{
@@ -236,11 +234,11 @@ terminal_find_build_search (FindParams *fp)
g_assert (entry);
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (check_case)))
- new_flags |= TERMINAL_FIND_FLAG_CASE;
+ new_flags |= TERMINAL_SEARCH_FLAG_CASE;
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (check_regex)))
- new_flags |= TERMINAL_FIND_FLAG_REGEX;
+ new_flags |= TERMINAL_SEARCH_FLAG_REGEX;
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (check_whole)))
- new_flags |= TERMINAL_FIND_FLAG_WHOLE;
+ new_flags |= TERMINAL_SEARCH_FLAG_WHOLE;
if (fp->flags != new_flags)
{
@@ -261,11 +259,11 @@ terminal_find_build_search (FindParams *fp)
fp->column = -1;
}
- if ((fp->flags & TERMINAL_FIND_FLAG_REGEX) == 0)
+ if ((fp->flags & TERMINAL_SEARCH_FLAG_REGEX) == 0)
terminal_find_replace_string (&new_str, g_regex_escape_string (new_str, -1));
/* Perl Regular Expression (RE) */
- if (fp->flags & TERMINAL_FIND_FLAG_WHOLE)
+ if (fp->flags & TERMINAL_SEARCH_FLAG_WHOLE)
terminal_find_replace_string (&new_str, g_strdup_printf ("\\b%s\\b", new_str));
terminal_find_replace_string (&fp->regex_string, new_str);
@@ -346,7 +344,7 @@ terminal_find_perform_search (FindParams *fp)
fp->length = -1;
/* Generate a regex for searching */
- if ((fp->flags & TERMINAL_FIND_FLAG_CASE) == 0)
+ if ((fp->flags & TERMINAL_SEARCH_FLAG_CASE) == 0)
regex_flags |= G_REGEX_CASELESS;
attrs = g_array_new (FALSE, TRUE, sizeof (VteCharAttributes));
@@ -507,11 +505,11 @@ terminal_find_toggled_cb (GtkToggleButton *togglebutton,
b = gtk_toggle_button_get_active (togglebutton);
if (togglebutton == GTK_TOGGLE_BUTTON (check_case))
- gconf_client_set_bool (gconf, CONF_FIND_MATCH_CASE, b, NULL);
+ gconf_client_set_bool (gconf, CONF_SEARCH_MATCH_CASE, b, NULL);
else if (togglebutton == GTK_TOGGLE_BUTTON (check_regex))
- gconf_client_set_bool (gconf, CONF_FIND_MATCH_REGEX, b, NULL);
+ gconf_client_set_bool (gconf, CONF_SEARCH_MATCH_REGEX, b, NULL);
else if (togglebutton == GTK_TOGGLE_BUTTON (check_whole))
- gconf_client_set_bool (gconf, CONF_FIND_MATCH_WHOLE, b, NULL);
+ gconf_client_set_bool (gconf, CONF_SEARCH_MATCH_WHOLE, b, NULL);
}
/**
@@ -565,7 +563,7 @@ terminal_find_destroyed_cb (GtkWidget *widget,
nid_regex = 0;
nid_whole = 0;
- gconf_client_remove_dir (gconf, CONF_FIND_PREFIX, NULL);
+ gconf_client_remove_dir (gconf, CONF_SEARCH_PREFIX, NULL);
g_object_unref (gconf);
gconf = NULL;
@@ -636,9 +634,9 @@ terminal_find_dialog_display (GtkWindow *terminal_window)
}
gconf = gconf_client_get_default ();
- gconf_client_add_dir (gconf, CONF_FIND_PREFIX, GCONF_CLIENT_PRELOAD_ONELEVEL, NULL);
+ gconf_client_add_dir (gconf, CONF_SEARCH_PREFIX, GCONF_CLIENT_PRELOAD_ONELEVEL, NULL);
- if (!terminal_util_load_builder_file ("terminal-find.ui",
+ if (!terminal_util_load_builder_file ("search-find.ui",
"dialog-find", &dialog,
"check-case", &check_case,
"check-whole", &check_whole,
@@ -649,9 +647,9 @@ terminal_find_dialog_display (GtkWindow *terminal_window)
NULL))
return;
- find_case = gconf_client_get_bool (gconf, CONF_FIND_MATCH_CASE, NULL);
- find_regex = gconf_client_get_bool (gconf, CONF_FIND_MATCH_REGEX, NULL);
- find_whole = gconf_client_get_bool (gconf, CONF_FIND_MATCH_WHOLE, NULL);
+ find_case = gconf_client_get_bool (gconf, CONF_SEARCH_MATCH_CASE, NULL);
+ find_regex = gconf_client_get_bool (gconf, CONF_SEARCH_MATCH_REGEX, NULL);
+ find_whole = gconf_client_get_bool (gconf, CONF_SEARCH_MATCH_WHOLE, NULL);
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check_case), find_case);
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check_regex), find_regex);
@@ -663,9 +661,9 @@ terminal_find_dialog_display (GtkWindow *terminal_window)
gtk_entry_set_icon_sensitive (entry, GTK_ENTRY_ICON_SECONDARY, FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (button_find), FALSE);
- nid_case = gconf_client_notify_add (gconf, CONF_FIND_MATCH_CASE, terminal_find_check_cb, check_case, NULL, NULL);
- nid_regex = gconf_client_notify_add (gconf, CONF_FIND_MATCH_REGEX, terminal_find_check_cb, check_regex, NULL, NULL);
- nid_whole = gconf_client_notify_add (gconf, CONF_FIND_MATCH_WHOLE, terminal_find_check_cb, check_whole, NULL, NULL);
+ nid_case = gconf_client_notify_add (gconf, CONF_SEARCH_MATCH_CASE, terminal_find_check_cb, check_case, NULL, NULL);
+ nid_regex = gconf_client_notify_add (gconf, CONF_SEARCH_MATCH_REGEX, terminal_find_check_cb, check_regex, NULL, NULL);
+ nid_whole = gconf_client_notify_add (gconf, CONF_SEARCH_MATCH_WHOLE, terminal_find_check_cb, check_whole, NULL, NULL);
g_signal_connect (dialog, "destroy", G_CALLBACK (terminal_find_destroyed_cb), NULL);
g_signal_connect (dialog, "response", G_CALLBACK (terminal_find_response_cb), NULL);
diff --git a/src/terminal-find.h b/src/terminal-search.h
similarity index 100%
rename from src/terminal-find.h
rename to src/terminal-search.h
diff --git a/src/terminal-window.c b/src/terminal-window.c
index 92f79a9..c74f89d 100644
--- a/src/terminal-window.c
+++ b/src/terminal-window.c
@@ -32,9 +32,9 @@
#include "terminal-app.h"
#include "terminal-debug.h"
#include "terminal-encoding.h"
-#include "terminal-find.h"
#include "terminal-intl.h"
#include "terminal-screen-container.h"
+#include "terminal-search.h"
#include "terminal-tab-label.h"
#include "terminal-tabs-menu.h"
#include "terminal-util.h"
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]