diff options
author | Thomas Meire <blackskad@gmail.com> | 2010-01-12 23:34:39 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-12 23:36:01 +0800 |
commit | 0ee842ac627f30fa14d75b06cd7147a67090731e (patch) | |
tree | fb0732e13d95ca15fa7a0ad29d88b3c26d95c3e8 /libempathy-gtk/empathy-search-bar.h | |
parent | 183fa2e8a94d94a7098120fc43cde9ad83869de6 (diff) | |
download | gsoc2013-empathy-0ee842ac627f30fa14d75b06cd7147a67090731e.tar gsoc2013-empathy-0ee842ac627f30fa14d75b06cd7147a67090731e.tar.gz gsoc2013-empathy-0ee842ac627f30fa14d75b06cd7147a67090731e.tar.bz2 gsoc2013-empathy-0ee842ac627f30fa14d75b06cd7147a67090731e.tar.lz gsoc2013-empathy-0ee842ac627f30fa14d75b06cd7147a67090731e.tar.xz gsoc2013-empathy-0ee842ac627f30fa14d75b06cd7147a67090731e.tar.zst gsoc2013-empathy-0ee842ac627f30fa14d75b06cd7147a67090731e.zip |
Add search bar in chat text views (#585168)
Diffstat (limited to 'libempathy-gtk/empathy-search-bar.h')
-rw-r--r-- | libempathy-gtk/empathy-search-bar.h | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-search-bar.h b/libempathy-gtk/empathy-search-bar.h new file mode 100644 index 000000000..d4cd042fe --- /dev/null +++ b/libempathy-gtk/empathy-search-bar.h @@ -0,0 +1,64 @@ +/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* + * Copyright (C) 2010 Thomas Meire <blackskad@gmail.com> + * + * The code contained in this file 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 file 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 code; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef __EMPATHY_SEARCH_BAR_H__ +#define __EMPATHY_SEARCH_BAR_H__ + +#include <glib.h> +#include <glib-object.h> + +#include "empathy-chat-view.h" + +G_BEGIN_DECLS + +#define EMPATHY_TYPE_SEARCH_BAR (empathy_search_bar_get_type ()) +#define EMPATHY_SEARCH_BAR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), \ + EMPATHY_TYPE_SEARCH_BAR, EmpathySearchBar)) +#define EMPATHY_SEARCH_BAR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), \ + EMPATHY_TYPE_SEARCH_BAR, EmpathySearchBarClass)) +#define EMPATHY_IS_SEARCH_BAR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), \ + EMPATHY_TYPE_SEARCH_BAR)) +#define EMPATHY_IS_SEARCH_BAR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), \ + EMPATHY_TYPE_SEARCH_BAR)) +#define EMPATHY_SEARCH_BAR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o),\ + EMPATHY_TYPE_SEARCH_BAR, EmpathySearchBarClass)) + +typedef struct _EmpathySearchBar EmpathySearchBar; +typedef struct _EmpathySearchBarClass EmpathySearchBarClass; + +struct _EmpathySearchBar +{ + GtkBin parent; + + /*<private>*/ + gpointer priv; +}; + +struct _EmpathySearchBarClass +{ + GtkBinClass parent_class; +}; + +GType empathy_search_bar_get_type (void) G_GNUC_CONST; +GtkWidget * empathy_search_bar_new (EmpathyChatView *view); +void empathy_search_bar_show (EmpathySearchBar *searchbar); + +G_END_DECLS + +#endif /* __EMPATHY_SEARCH_BAR_H__ */ |