diff options
author | Felix Kaser <f.kaser@gmx.net> | 2010-06-08 23:13:44 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2010-06-08 23:22:03 +0800 |
commit | d4e8ed896d085e3ad76c07861a93c3366d34f340 (patch) | |
tree | e5e5e05481c8b4ba364192e3c001a2597a395333 /libempathy-gtk/empathy-live-search.h | |
parent | d1799870d3b8e8de188b6843d25ae20737376f14 (diff) | |
download | gsoc2013-empathy-d4e8ed896d085e3ad76c07861a93c3366d34f340.tar gsoc2013-empathy-d4e8ed896d085e3ad76c07861a93c3366d34f340.tar.gz gsoc2013-empathy-d4e8ed896d085e3ad76c07861a93c3366d34f340.tar.bz2 gsoc2013-empathy-d4e8ed896d085e3ad76c07861a93c3366d34f340.tar.lz gsoc2013-empathy-d4e8ed896d085e3ad76c07861a93c3366d34f340.tar.xz gsoc2013-empathy-d4e8ed896d085e3ad76c07861a93c3366d34f340.tar.zst gsoc2013-empathy-d4e8ed896d085e3ad76c07861a93c3366d34f340.zip |
Add EmpathyLiveSearch widget
Diffstat (limited to 'libempathy-gtk/empathy-live-search.h')
-rw-r--r-- | libempathy-gtk/empathy-live-search.h | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-live-search.h b/libempathy-gtk/empathy-live-search.h new file mode 100644 index 000000000..108b42cdc --- /dev/null +++ b/libempathy-gtk/empathy-live-search.h @@ -0,0 +1,71 @@ +/* + * Copyright (C) 2010 Collabora Ltd. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * Authors: Felix Kaser <felix.kaser@collabora.co.uk> + */ + +#ifndef __EMPATHY_LIVE_SEARCH_H__ +#define __EMPATHY_LIVE_SEARCH_H__ + +#include <gtk/gtk.h> + +#include "empathy-contact-list-store.h" + +G_BEGIN_DECLS + +#define EMPATHY_TYPE_LIVE_SEARCH (empathy_live_search_get_type ()) +#define EMPATHY_LIVE_SEARCH(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_LIVE_SEARCH, EmpathyLiveSearch)) +#define EMPATHY_LIVE_SEARCH_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), EMPATHY_TYPE_LIVE_SEARCH, EmpathyLiveSearchClass)) +#define EMPATHY_IS_LIVE_SEARCH(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_LIVE_SEARCH)) +#define EMPATHY_IS_LIVE_SEARCH_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_LIVE_SEARCH)) +#define EMPATHY_LIVE_SEARCH_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_LIVE_SEARCH, EmpathyLiveSearchClass)) + +typedef struct _EmpathyLiveSearch EmpathyLiveSearch; +typedef struct _EmpathyLiveSearchClass EmpathyLiveSearchClass; + +struct _EmpathyLiveSearch { + GtkHBox parent; + + /*<private>*/ + gpointer priv; +}; + +struct _EmpathyLiveSearchClass { + GtkHBoxClass parent_class; +}; + +GType empathy_live_search_get_type (void) G_GNUC_CONST; +GtkWidget *empathy_live_search_new (GtkWidget *hook); + +GtkWidget *empathy_live_search_get_hook_widget (EmpathyLiveSearch *self); +void empathy_live_search_set_hook_widget (EmpathyLiveSearch *self, + GtkWidget *hook); + +const gchar *empathy_live_search_get_text (EmpathyLiveSearch *self); +void empathy_live_search_set_text (EmpathyLiveSearch *self, + const gchar *text); + +gboolean empathy_live_search_match (EmpathyLiveSearch *self, + const gchar *string); + +/* Made public for unit tests */ +gboolean empathy_live_search_match_string (const gchar *string, + const gchar *prefix); + +G_END_DECLS + +#endif /* __EMPATHY_LIVE_SEARCH_H__ */ |