]> git.0d.be Git - empathy.git/blob - libempathy-gtk/gossip-ui-utils.h
[darcs-to-svn @ Use icon-name API instead of stock icons and update tango icons]
[empathy.git] / libempathy-gtk / gossip-ui-utils.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2002-2007 Imendio AB
4  * Copyright (C) 2007 Collabora Ltd.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public
17  * License along with this program; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  * 
21  * Authors: Mikael Hallendal <micke@imendio.com>
22  *          Richard Hult <richard@imendio.com>
23  *          Martyn Russell <martyn@imendio.com>
24  *          Xavier Claessens <xclaesse@gmail.com>
25  * 
26  *          Part of this file is copied from GtkSourceView (gtksourceiter.c):
27  *          Paolo Maggi
28  *          Jeroen Zwartepoorte
29  */
30
31 #ifndef __GOSSIP_UI_UTILS_H__
32 #define __GOSSIP_UI_UTILS_H__
33
34 #include <gtk/gtk.h>
35 #include <glade/glade.h>
36
37 #include <libmissioncontrol/mc-account.h>
38 #include <libmissioncontrol/mc-profile.h>
39
40 #include <libempathy/gossip-presence.h>
41 #include <libempathy/gossip-contact.h>
42 #include <libempathy/gossip-avatar.h>
43
44 #include "gossip-chat-view.h"
45
46 G_BEGIN_DECLS
47
48 #define G_STR_EMPTY(x) ((x) == NULL || (x)[0] == '\0')
49
50 /* Glade */
51 void            gossip_glade_get_file_simple             (const gchar         *filename,
52                                                           const gchar         *root,
53                                                           const gchar         *domain,
54                                                           const gchar         *first_required_widget,
55                                                           ...);
56 GladeXML *      gossip_glade_get_file                    (const gchar         *filename,
57                                                           const gchar         *root,
58                                                           const gchar         *domain,
59                                                           const gchar         *first_required_widget,
60                                                           ...);
61 void            gossip_glade_connect                     (GladeXML            *gui,
62                                                           gpointer             user_data,
63                                                           gchar               *first_widget,
64                                                           ...);
65 void            gossip_glade_setup_size_group            (GladeXML            *gui,
66                                                           GtkSizeGroupMode     mode,
67                                                           gchar               *first_widget,
68                                                           ...);
69 /* Pixbufs */
70 GdkPixbuf *     gossip_pixbuf_from_icon_name             (const gchar         *icon_name,
71                                                           GtkIconSize          icon_size);
72 GdkPixbuf *     gossip_pixbuf_from_smiley                (GossipSmiley         type,
73                                                           GtkIconSize          icon_size);
74 const gchar *   gossip_icon_name_from_account            (McAccount           *account);
75 const gchar *   gossip_icon_name_for_presence_state      (McPresence           state);
76 const gchar *   gossip_icon_name_for_presence            (GossipPresence      *presence);
77 const gchar *   gossip_icon_name_for_contact             (GossipContact       *contact);
78 GdkPixbuf *     gossip_pixbuf_from_avatar_scaled         (GossipAvatar        *avatar,
79                                                           gint                 width,
80                                                           gint                 height);
81 GdkPixbuf *     gossip_pixbuf_avatar_from_contact        (GossipContact       *contact);
82 GdkPixbuf *     gossip_pixbuf_avatar_from_contact_scaled (GossipContact       *contact,
83                                                           gint                 width,
84                                                           gint                 height);
85 /* Text view */
86 gboolean   gossip_text_iter_forward_search          (const GtkTextIter   *iter,
87                                                      const gchar         *str,
88                                                      GtkTextIter         *match_start,
89                                                      GtkTextIter         *match_end,
90                                                      const GtkTextIter   *limit);
91 gboolean   gossip_text_iter_backward_search         (const GtkTextIter   *iter,
92                                                      const gchar         *str,
93                                                      GtkTextIter         *match_start,
94                                                      GtkTextIter         *match_end,
95                                                      const GtkTextIter   *limit);
96
97 /* Windows */
98 gboolean   gossip_window_get_is_visible             (GtkWindow           *window);
99 void       gossip_window_present                    (GtkWindow           *window,
100                                                      gboolean             steal_focus);
101 void       gossip_window_set_default_icon_name      (const gchar         *name);
102
103 void       gossip_url_show                          (const char          *url);
104
105 void       gossip_toggle_button_set_state_quietly   (GtkWidget           *widget,
106                                                      GCallback            callback,
107                                                      gpointer             user_data,
108                                                      gboolean             active);
109 GtkWidget *gossip_link_button_new                   (const gchar         *url,
110                                                      const gchar         *title);
111
112
113 G_END_DECLS
114
115 #endif /*  __GOSSIP_UI_UTILS_H__ */