]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-search-bar.c
added case sensitive highlighting for adium themes
[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 {
108   gboolean can_go_forward = FALSE;
109   gboolean can_go_backward = FALSE;
110
111   EmpathySearchBarPriv* priv = GET_PRIV (self);
112
113   /* update previous / next buttons */
114   empathy_chat_view_find_abilities (priv->chat_view, search,
115       &can_go_backward, &can_go_forward);
116
117   gtk_widget_set_sensitive (priv->search_previous,
118       can_go_backward && !EMP_STR_EMPTY (search));
119   gtk_widget_set_sensitive (priv->search_next,
120       can_go_forward && !EMP_STR_EMPTY (search));
121 }
122
123 void
124 empathy_search_bar_show (EmpathySearchBar *self)
125 {
126   gchar *search;
127   EmpathySearchBarPriv *priv = GET_PRIV (self);
128
129   search = gtk_editable_get_chars (GTK_EDITABLE (priv->search_entry), 0, -1);
130   empathy_chat_view_highlight (priv->chat_view, search, TRUE);
131   empathy_search_bar_update_buttons (self, search);
132
133   /* grab the focus to the search entry */
134   gtk_widget_grab_focus (priv->search_entry);
135
136   gtk_widget_show (GTK_WIDGET (self));
137 }
138
139
140 static void
141 empathy_search_bar_close_cb (GtkButton *button,
142     gpointer user_data)
143 {
144   EmpathySearchBarPriv *priv = GET_PRIV (user_data);
145
146   empathy_chat_view_highlight (priv->chat_view, "", FALSE);
147   gtk_widget_hide (GTK_WIDGET (user_data));
148
149   /* give the focus back to the focus-chain with the chat view */
150   gtk_widget_grab_focus (GTK_WIDGET (priv->chat_view));
151 }
152
153 static void
154 empathy_search_bar_search (EmpathySearchBar *self,
155     gboolean next,
156     gboolean new_search)
157 {
158   gchar *search;
159   gboolean found;
160   gboolean match_case;
161   EmpathySearchBarPriv *priv;
162
163   priv = GET_PRIV (self);
164
165   search = gtk_editable_get_chars (GTK_EDITABLE(priv->search_entry), 0, -1);
166   match_case = gtk_toggle_button_get_active (
167       GTK_TOGGLE_BUTTON (priv->search_match_case));
168
169   /* highlight & search */
170   // TODO: add case parameter
171   empathy_chat_view_highlight (priv->chat_view, search, match_case);
172   if (next)
173     {
174       found = empathy_chat_view_find_next (priv->chat_view, search, new_search);
175     }
176   else
177     {
178       found = empathy_chat_view_find_previous (priv->chat_view, search, new_search);
179     }
180
181   /* (don't) display the not found label */
182   gtk_widget_set_visible (priv->search_not_found,
183       !(found || EMP_STR_EMPTY (search)));
184
185   /* update the buttons */
186   empathy_search_bar_update_buttons (self, search);
187
188   g_free (search);
189 }
190
191 static void
192 empathy_search_bar_entry_changed (GtkEditable *entry,
193     gpointer user_data)
194 {
195   empathy_search_bar_search (EMPATHY_SEARCH_BAR (user_data), FALSE, TRUE);
196 }
197
198 static void
199 empathy_search_bar_next_cb (GtkButton *button,
200     gpointer user_data)
201 {
202   empathy_search_bar_search (EMPATHY_SEARCH_BAR (user_data), TRUE, FALSE);
203 }
204
205 static void
206 empathy_search_bar_previous_cb (GtkButton *button,
207     gpointer user_data)
208 {
209   empathy_search_bar_search (EMPATHY_SEARCH_BAR (user_data), FALSE, FALSE);
210 }
211
212 static void
213 empathy_search_bar_init (EmpathySearchBar * self)
214 {
215   gchar *filename;
216   GtkBuilder *gui;
217   GtkWidget *internal;
218   EmpathySearchBarPriv *priv;
219
220   priv = G_TYPE_INSTANCE_GET_PRIVATE (self, EMPATHY_TYPE_SEARCH_BAR,
221       EmpathySearchBarPriv);
222
223   self->priv = priv;
224
225   filename = empathy_file_lookup ("empathy-search-bar.ui", "libempathy-gtk");
226   gui = empathy_builder_get_file (filename,
227       "search_widget", &internal,
228       "search_close", &priv->search_close,
229       "search_entry", &priv->search_entry,
230       "search_previous", &priv->search_previous,
231       "search_next", &priv->search_next,
232       "search_not_found", &priv->search_not_found,
233       "search_match_case", &priv->search_match_case,
234       NULL);
235   g_free (filename);
236
237   /* Add the signals */
238   empathy_builder_connect (gui, self,
239       "search_close", "clicked", empathy_search_bar_close_cb,
240       "search_entry", "changed", empathy_search_bar_entry_changed,
241       "search_previous", "clicked", empathy_search_bar_previous_cb,
242       "search_next", "clicked", empathy_search_bar_next_cb,
243       NULL);
244
245   gtk_container_add (GTK_CONTAINER (self), internal);
246   gtk_widget_show_all (internal);
247   gtk_widget_hide (priv->search_not_found);
248   g_object_unref (gui);
249 }
250
251 static void
252 empathy_search_bar_class_init (EmpathySearchBarClass *class)
253 {
254   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
255   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
256
257   g_type_class_add_private (gobject_class, sizeof (EmpathySearchBarPriv));
258
259   /* Neither GtkBin nor GtkContainer seems to do this for us :( */
260   widget_class->size_request = empathy_search_bar_size_request;
261   widget_class->size_allocate = empathy_search_bar_size_allocate;
262 }
263