From d4e8ed896d085e3ad76c07861a93c3366d34f340 Mon Sep 17 00:00:00 2001 From: Felix Kaser Date: Tue, 8 Jun 2010 17:13:44 +0200 Subject: Add EmpathyLiveSearch widget --- libempathy-gtk/empathy-live-search.h | 71 ++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 libempathy-gtk/empathy-live-search.h (limited to 'libempathy-gtk/empathy-live-search.h') 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 + */ + +#ifndef __EMPATHY_LIVE_SEARCH_H__ +#define __EMPATHY_LIVE_SEARCH_H__ + +#include + +#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; + + /**/ + 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__ */ -- cgit v1.2.3