]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-ui-utils.h
Updatre python binding
[empathy.git] / libempathy-gtk / empathy-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 __EMPATHY_UI_UTILS_H__
32 #define __EMPATHY_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/empathy-contact.h>
41 #include <libempathy/empathy-avatar.h>
42
43 #include "empathy-chat-view.h"
44
45 G_BEGIN_DECLS
46
47 #define G_STR_EMPTY(x) ((x) == NULL || (x)[0] == '\0')
48
49 /* Glade */
50 void            empathy_glade_get_file_simple           (const gchar      *filename,
51                                                          const gchar      *root,
52                                                          const gchar      *domain,
53                                                          const gchar      *first_required_widget,
54                                                          ...);
55 GladeXML *      empathy_glade_get_file                  (const gchar      *filename,
56                                                          const gchar      *root,
57                                                          const gchar      *domain,
58                                                          const gchar      *first_required_widget,
59                                                          ...);
60 void            empathy_glade_connect                   (GladeXML         *gui,
61                                                          gpointer          user_data,
62                                                          gchar            *first_widget,
63                                                          ...);
64 void            empathy_glade_setup_size_group          (GladeXML         *gui,
65                                                          GtkSizeGroupMode  mode,
66                                                          gchar            *first_widget,
67                                                          ...);
68 /* Pixbufs */
69 const gchar * empathy_icon_name_from_account            (McAccount        *account);
70 const gchar * empathy_icon_name_for_presence            (McPresence        presence);
71 const gchar * empathy_icon_name_for_contact             (EmpathyContact   *contact);
72 GdkPixbuf *   empathy_pixbuf_from_data                  (gchar            *data,
73                                                          gsize             data_size);
74 GdkPixbuf *   empathy_pixbuf_from_avatar_scaled         (EmpathyAvatar    *avatar,
75                                                          gint              width,
76                                                          gint              height);
77 GdkPixbuf *   empathy_pixbuf_avatar_from_contact_scaled (EmpathyContact   *contact,
78                                                          gint              width,
79                                                          gint              height);
80 GdkPixbuf * empathy_pixbuf_scale_down_if_necessary      (GdkPixbuf        *pixbuf,
81                                                          gint              max_size);
82 GdkPixbuf * empathy_pixbuf_from_icon_name               (const gchar      *icon_name,
83                                                          GtkIconSize       icon_size);
84 /* Text view */
85 gboolean    empathy_text_iter_forward_search            (const GtkTextIter*iter,
86                                                          const gchar      *str,
87                                                          GtkTextIter      *match_start,
88                                                          GtkTextIter      *match_end,
89                                                          const GtkTextIter*limit);
90 gboolean    empathy_text_iter_backward_search           (const GtkTextIter*iter,
91                                                          const gchar      *str,
92                                                          GtkTextIter      *match_start,
93                                                          GtkTextIter      *match_end,
94                                                          const GtkTextIter*limit);
95 /* Windows */
96 gboolean    empathy_window_get_is_visible               (GtkWindow        *window);
97 void        empathy_window_present                      (GtkWindow        *window,
98                                                          gboolean          steal_focus);
99 void        empathy_window_iconify                      (GtkWindow        *window,
100                                                          GtkStatusIcon    *status_icon);
101 GtkWindow * empathy_get_toplevel_window                 (GtkWidget        *widget);
102 void        empathy_url_show                            (const char       *url);
103 void        empathy_toggle_button_set_state_quietly     (GtkWidget        *widget,
104                                                          GCallback         callback,
105                                                          gpointer          user_data,
106                                                          gboolean          active);
107 GtkWidget * empathy_link_button_new                     (const gchar      *url,
108                                                          const gchar      *title);
109 GtkTextTag *empathy_text_buffer_tag_set                 (GtkTextBuffer *buffer,
110                                                          const gchar   *tag_name,
111                                                          const gchar   *first_property_name,
112                                                          ...);
113
114 G_END_DECLS
115
116 #endif /*  __EMPATHY_UI_UTILS_H__ */