display the clock rate of the codec as well
[empathy-mirror.git] / libempathy-gtk / empathy-live-search.h
blob78dc236c044596ae0a67831b9031d77d046bddbb
1 /*
2 * Copyright (C) 2010 Collabora Ltd.
3 * Copyright (C) 2007-2010 Nokia Corporation.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library 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.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 * Authors: Felix Kaser <felix.kaser@collabora.co.uk>
20 * Xavier Claessens <xavier.claessens@collabora.co.uk>
21 * Claudio Saavedra <csaavedra@igalia.com>
24 #ifndef __EMPATHY_LIVE_SEARCH_H__
25 #define __EMPATHY_LIVE_SEARCH_H__
27 #include <gtk/gtk.h>
29 #include "empathy-contact-list-store.h"
31 G_BEGIN_DECLS
33 #define EMPATHY_TYPE_LIVE_SEARCH (empathy_live_search_get_type ())
34 #define EMPATHY_LIVE_SEARCH(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_LIVE_SEARCH, EmpathyLiveSearch))
35 #define EMPATHY_LIVE_SEARCH_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), EMPATHY_TYPE_LIVE_SEARCH, EmpathyLiveSearchClass))
36 #define EMPATHY_IS_LIVE_SEARCH(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_LIVE_SEARCH))
37 #define EMPATHY_IS_LIVE_SEARCH_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_LIVE_SEARCH))
38 #define EMPATHY_LIVE_SEARCH_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_LIVE_SEARCH, EmpathyLiveSearchClass))
40 typedef struct _EmpathyLiveSearch EmpathyLiveSearch;
41 typedef struct _EmpathyLiveSearchClass EmpathyLiveSearchClass;
43 struct _EmpathyLiveSearch {
44 GtkHBox parent;
46 /*<private>*/
47 gpointer priv;
50 struct _EmpathyLiveSearchClass {
51 GtkHBoxClass parent_class;
54 GType empathy_live_search_get_type (void) G_GNUC_CONST;
55 GtkWidget *empathy_live_search_new (GtkWidget *hook);
57 GtkWidget *empathy_live_search_get_hook_widget (EmpathyLiveSearch *self);
58 void empathy_live_search_set_hook_widget (EmpathyLiveSearch *self,
59 GtkWidget *hook);
61 const gchar *empathy_live_search_get_text (EmpathyLiveSearch *self);
62 void empathy_live_search_set_text (EmpathyLiveSearch *self,
63 const gchar *text);
65 gboolean empathy_live_search_match (EmpathyLiveSearch *self,
66 const gchar *string);
68 /* Made public for unit tests */
69 gboolean empathy_live_search_match_string (const gchar *string,
70 const gchar *prefix);
72 G_END_DECLS
74 #endif /* __EMPATHY_LIVE_SEARCH_H__ */