]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-search-bar.c
add match_case option to find_abilities
[empathy.git] / libempathy-gtk / empathy-search-bar.c
1 /* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /*
3  * Copyright (C) 2010 Thomas Meire <blackskad@gmail.com>
4  *
5  * The code contained in this file is free software; you can redistribute
6  * it and/or modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either version
8  * 2.1 of the License, or (at your option) any later version.
9  *
10  * This file is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this code; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  */
19
20 #include <glib.h>
21 #include <glib-object.h>
22 #include <gtk/gtk.h>
23
24 #include <libempathy/empathy-utils.h>
25
26 #include "empathy-chat-view.h"
27 #include "empathy-search-bar.h"
28 #include "empathy-ui-utils.h"
29
30 #define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathySearchBar)
31
32 G_DEFINE_TYPE (EmpathySearchBar, empathy_search_bar, GTK_TYPE_BIN);
33
34 typedef struct _EmpathySearchBarPriv EmpathySearchBarPriv;
35 struct _EmpathySearchBarPriv
36 {
37   EmpathyChatView *chat_view;
38
39   GtkWidget *search_entry;
40
41   GtkWidget *search_match_case;
42
43   GtkWidget *search_close;
44   GtkWidget *search_previous;
45   GtkWidget *search_next;
46   GtkWidget *search_not_found;
47 };
48
49 GtkWidget *
50 empathy_search_bar_new (EmpathyChatView *view)
51 {
52   EmpathySearchBar *self = g_object_new (EMPATHY_TYPE_SEARCH_BAR, NULL);
53
54   GET_PRIV (self)->chat_view = view;
55
56   return GTK_WIDGET (self);
57 }
58
59 static void
60 empathy_search_bar_size_request (GtkWidget *widget,
61     GtkRequisition *requisition)
62 {
63   GtkBin *bin;
64   GtkWidget *child;
65
66   bin = GTK_BIN (widget);
67   child = gtk_bin_get_child (bin);
68
69   if (child && gtk_widget_get_visible (child))
70     {
71       GtkRequisition child_requisition;
72
73       gtk_widget_size_request (child, &child_requisition);
74
75       requisition->width = child_requisition.width;
76       requisition->height = child_requisition.height;
77     }
78 }
79
80 static void
81 empathy_search_bar_size_allocate (GtkWidget *widget,
82     GtkAllocation *allocation)
83 {
84   GtkBin *bin;
85   GtkWidget *child;
86   GtkAllocation child_allocation;
87
88   bin = GTK_BIN (widget);
89   child = gtk_bin_get_child (bin);
90
91   gtk_widget_set_allocation (widget, allocation);
92
93   if (child && gtk_widget_get_visible (child))
94     {
95       child_allocation.x = allocation->x;
96       child_allocation.y = allocation->y;
97       child_allocation.width = MAX (allocation->width, 0);
98       child_allocation.height = MAX (allocation->height, 0);
99
100       gtk_widget_size_allocate (child, &child_allocation);
101     }
102 }
103
104 static void
105 empathy_search_bar_update_buttons (EmpathySearchBar *self,
106     gchar *search,
107     gboolean match_case)
108 {
109   gboolean can_go_forward = FALSE;
110   gboolean can_go_backward = FALSE;
111
112   EmpathySearchBarPriv* priv = GET_PRIV (self);
113
114   /* update previous / next buttons */
115   empathy_chat_view_find_abilities (priv->chat_view, search, match_case,
116       &can_go_backward, &can_go_forward);
117
118   gtk_widget_set_sensitive (priv->search_previous,
119       can_go_backward && !EMP_STR_EMPTY (search));
120   gtk_widget_set_sensitive (priv->search_next,
121       can_go_forward && !EMP_STR_EMPTY (search));
122 }
123
124 void
125 empathy_search_bar_show (EmpathySearchBar *self)
126 {
127   gchar *search;
128   gboolean match_case;
129   EmpathySearchBarPriv *priv = GET_PRIV (self);
130
131   search = gtk_editable_get_chars (GTK_EDITABLE (priv->search_entry), 0, -1);
132   match_case = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (priv->search_match_case));
133   empathy_chat_view_highlight (priv->chat_view, search, TRUE);
134   empathy_search_bar_update_buttons (self, search, match_case);
135
136   /* grab the focus to the search entry */
137   gtk_widget_grab_focus (priv->search_entry);
138
139   gtk_widget_show (GTK_WIDGET (self));
140 }
141
142
143 static void
144 empathy_search_bar_close_cb (GtkButton *button,
145     gpointer user_data)
146 {
147   EmpathySearchBarPriv *priv = GET_PRIV (user_data);
148
149   empathy_chat_view_highlight (priv->chat_view, "", FALSE);
150   gtk_widget_hide (GTK_WIDGET (user_data));
151
152   /* give the focus back to the focus-chain with the chat view */
153   gtk_widget_grab_focus (GTK_WIDGET (priv->chat_view));
154 }
155
156 static void
157 empathy_search_bar_search (EmpathySearchBar *self,
158     gboolean next,
159     gboolean new_search)
160 {
161   gchar *search;
162   gboolean found;
163   gboolean match_case;
164   EmpathySearchBarPriv *priv;
165
166   priv = GET_PRIV (self);
167
168   search = gtk_editable_get_chars (GTK_EDITABLE(priv->search_entry), 0, -1);
169   match_case = gtk_toggle_button_get_active (
170       GTK_TOGGLE_BUTTON (priv->search_match_case));
171
172   /* highlight & search */
173   empathy_chat_view_highlight (priv->chat_view, search, match_case);
174   if (next)
175     {
176       found = empathy_chat_view_find_next (priv->chat_view,
177           search,
178           new_search,
179           match_case);
180     }
181   else
182     {
183       found = empathy_chat_view_find_previous (priv->chat_view,
184           search,
185           new_search,
186           match_case);
187     }
188
189   /* (don't) display the not found label */
190   gtk_widget_set_visible (priv->search_not_found,
191       !(found || EMP_STR_EMPTY (search)));
192
193   /* update the buttons */
194   empathy_search_bar_update_buttons (self, search, match_case);
195
196   g_free (search);
197 }
198
199 static void
200 empathy_search_bar_entry_changed (GtkEditable *entry,
201     gpointer user_data)
202 {
203   empathy_search_bar_search (EMPATHY_SEARCH_BAR (user_data), FALSE, TRUE);
204 }
205
206 static void
207 empathy_search_bar_next_cb (GtkButton *button,
208     gpointer user_data)
209 {
210   empathy_search_bar_search (EMPATHY_SEARCH_BAR (user_data), TRUE, FALSE);
211 }
212
213 static void
214 empathy_search_bar_previous_cb (GtkButton *button,
215     gpointer user_data)
216 {
217   empathy_search_bar_search (EMPATHY_SEARCH_BAR (user_data), FALSE, FALSE);
218 }
219
220 static void
221 empathy_search_bar_match_case_toggled (GtkButton *button,
222     gpointer user_data)
223 {
224   empathy_search_bar_search (EMPATHY_SEARCH_BAR (user_data), TRUE, FALSE);
225 }
226
227 static void
228 empathy_search_bar_init (EmpathySearchBar * self)
229 {
230   gchar *filename;
231   GtkBuilder *gui;
232   GtkWidget *internal;
233   EmpathySearchBarPriv *priv;
234
235   priv = G_TYPE_INSTANCE_GET_PRIVATE (self, EMPATHY_TYPE_SEARCH_BAR,
236       EmpathySearchBarPriv);
237
238   self->priv = priv;
239
240   filename = empathy_file_lookup ("empathy-search-bar.ui", "libempathy-gtk");
241   gui = empathy_builder_get_file (filename,
242       "search_widget", &internal,
243       "search_close", &priv->search_close,
244       "search_entry", &priv->search_entry,
245       "search_previous", &priv->search_previous,
246       "search_next", &priv->search_next,
247       "search_not_found", &priv->search_not_found,
248       "search_match_case", &priv->search_match_case,
249       NULL);
250   g_free (filename);
251
252   /* Add the signals */
253   empathy_builder_connect (gui, self,
254       "search_close", "clicked", empathy_search_bar_close_cb,
255       "search_entry", "changed", empathy_search_bar_entry_changed,
256       "search_previous", "clicked", empathy_search_bar_previous_cb,
257       "search_next", "clicked", empathy_search_bar_next_cb,
258       "search_match_case", "toggled", empathy_search_bar_match_case_toggled,
259       NULL);
260
261   gtk_container_add (GTK_CONTAINER (self), internal);
262   gtk_widget_show_all (internal);
263   gtk_widget_hide (priv->search_not_found);
264   g_object_unref (gui);
265 }
266
267 static void
268 empathy_search_bar_class_init (EmpathySearchBarClass *class)
269 {
270   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
271   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
272
273   g_type_class_add_private (gobject_class, sizeof (EmpathySearchBarPriv));
274
275   /* Neither GtkBin nor GtkContainer seems to do this for us :( */
276   widget_class->size_request = empathy_search_bar_size_request;
277   widget_class->size_allocate = empathy_search_bar_size_allocate;
278 }
279