]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-ui-utils.h
Updated Basque translation.
[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-presence.h>
41 #include <libempathy/empathy-contact.h>
42 #include <libempathy/empathy-avatar.h>
43
44 #include "empathy-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            empathy_glade_get_file_simple             (const gchar         *filename,
52                                                           const gchar         *root,
53                                                           const gchar         *domain,
54                                                           const gchar         *first_required_widget,
55                                                           ...);
56 GladeXML *      empathy_glade_get_file                    (const gchar         *filename,
57                                                           const gchar         *root,
58                                                           const gchar         *domain,
59                                                           const gchar         *first_required_widget,
60                                                           ...);
61 void            empathy_glade_connect                     (GladeXML            *gui,
62                                                           gpointer             user_data,
63                                                           gchar               *first_widget,
64                                                           ...);
65 void            empathy_glade_setup_size_group            (GladeXML            *gui,
66                                                           GtkSizeGroupMode     mode,
67                                                           gchar               *first_widget,
68                                                           ...);
69 /* Pixbufs */
70 GdkPixbuf *     empathy_pixbuf_from_icon_name             (const gchar         *icon_name,
71                                                           GtkIconSize          icon_size);
72 GdkPixbuf *     empathy_pixbuf_from_smiley                (EmpathySmiley         type,
73                                                           GtkIconSize          icon_size);
74 const gchar *   empathy_icon_name_from_account            (McAccount           *account);
75 const gchar *   empathy_icon_name_for_presence_state      (McPresence           state);
76 const gchar *   empathy_icon_name_for_presence            (EmpathyPresence      *presence);
77 const gchar *   empathy_icon_name_for_contact             (EmpathyContact       *contact);
78 GdkPixbuf *     empathy_pixbuf_from_avatar_scaled         (EmpathyAvatar        *avatar,
79                                                           gint                 width,
80                                                           gint                 height);
81 GdkPixbuf *     empathy_pixbuf_avatar_from_contact_scaled (EmpathyContact       *contact,
82                                                           gint                 width,
83                                                           gint                 height);
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
96 /* Windows */
97 gboolean   empathy_window_get_is_visible             (GtkWindow           *window);
98 void       empathy_window_present                    (GtkWindow           *window,
99                                                      gboolean             steal_focus);
100 void       empathy_window_iconify                    (GtkWindow           *window,
101                                                       GtkStatusIcon       *status_icon);
102 GtkWindow *empathy_get_toplevel_window               (GtkWidget           *widget);
103 void       empathy_url_show                          (const char          *url);
104 void       empathy_toggle_button_set_state_quietly   (GtkWidget           *widget,
105                                                      GCallback            callback,
106                                                      gpointer             user_data,
107                                                      gboolean             active);
108 GtkWidget *empathy_link_button_new                   (const gchar         *url,
109                                                      const gchar         *title);
110
111
112 G_END_DECLS
113
114 #endif /*  __EMPATHY_UI_UTILS_H__ */