]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-ui-utils.h
Merge branch 'irc-command'
[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-2008 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., 51 Franklin St, Fifth Floor,
19  * Boston, MA  02110-1301  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  *          Jonny Lamb <jonny.lamb@collabora.co.uk>
26  *
27  *          Part of this file is copied from GtkSourceView (gtksourceiter.c):
28  *          Paolo Maggi
29  *          Jeroen Zwartepoorte
30  */
31
32 #ifndef __EMPATHY_UI_UTILS_H__
33 #define __EMPATHY_UI_UTILS_H__
34
35 #include <gtk/gtk.h>
36
37 #include <libempathy/empathy-contact.h>
38 #include <libempathy/empathy-ft-handler.h>
39
40 #include "empathy-chat-view.h"
41
42 G_BEGIN_DECLS
43
44 void            empathy_gtk_init                        (void);
45 GRegex *        empathy_uri_regex_dup_singleton         (void);
46
47 /* Glade */
48 GtkBuilder *    empathy_builder_get_file                (const gchar      *filename,
49                                                          const gchar      *first_object,
50                                                          ...);
51 void            empathy_builder_connect                 (GtkBuilder       *gui,
52                                                          gpointer          user_data,
53                                                          gchar            *first_object,
54                                                          ...);
55 GtkWidget     *empathy_builder_unref_and_keep_widget    (GtkBuilder       *gui,
56                                                          GtkWidget        *root);
57
58 /* Pixbufs */
59 const gchar * empathy_icon_name_for_presence            (TpConnectionPresenceType  presence);
60 const gchar * empathy_icon_name_for_contact             (EmpathyContact   *contact);
61 GdkPixbuf *   empathy_pixbuf_from_data                  (gchar            *data,
62                                                          gsize             data_size);
63 GdkPixbuf *   empathy_pixbuf_from_data_and_mime         (gchar            *data,
64                                                          gsize             data_size,
65                                                          gchar           **mime_type);
66 GdkPixbuf *   empathy_pixbuf_from_avatar_scaled         (EmpathyAvatar    *avatar,
67                                                          gint              width,
68                                                          gint              height);
69 GdkPixbuf *   empathy_pixbuf_avatar_from_contact_scaled (EmpathyContact   *contact,
70                                                          gint              width,
71                                                          gint              height);
72 GdkPixbuf *   empathy_pixbuf_scale_down_if_necessary    (GdkPixbuf        *pixbuf,
73                                                          gint              max_size);
74 GdkPixbuf *   empathy_pixbuf_from_icon_name             (const gchar      *icon_name,
75                                                          GtkIconSize       icon_size);
76 GdkPixbuf *   empathy_pixbuf_from_icon_name_sized       (const gchar      *icon_name,
77                                                          gint              size);
78 gchar *       empathy_filename_from_icon_name           (const gchar      *icon_name,
79                                                          GtkIconSize       icon_size);
80
81 /* Text view */
82 gboolean    empathy_text_iter_forward_search            (const GtkTextIter*iter,
83                                                          const gchar      *str,
84                                                          GtkTextIter      *match_start,
85                                                          GtkTextIter      *match_end,
86                                                          const GtkTextIter*limit);
87 gboolean    empathy_text_iter_backward_search           (const GtkTextIter*iter,
88                                                          const gchar      *str,
89                                                          GtkTextIter      *match_start,
90                                                          GtkTextIter      *match_end,
91                                                          const GtkTextIter*limit);
92 /* Windows */
93 gboolean    empathy_window_get_is_visible               (GtkWindow        *window);
94 void        empathy_window_present                      (GtkWindow        *window,
95                                                          gboolean          steal_focus);
96 void        empathy_window_iconify                      (GtkWindow        *window,
97                                                          GtkStatusIcon    *status_icon);
98 GtkWindow * empathy_get_toplevel_window                 (GtkWidget        *widget);
99 void        empathy_url_show                            (GtkWidget        *parent,
100                                                          const char       *url);
101 void        empathy_toggle_button_set_state_quietly     (GtkWidget        *widget,
102                                                          GCallback         callback,
103                                                          gpointer          user_data,
104                                                          gboolean          active);
105 GtkWidget * empathy_link_button_new                     (const gchar      *url,
106                                                          const gchar      *title);
107
108 void        empathy_send_file_with_file_chooser         (EmpathyContact   *contact);
109 void        empathy_receive_file_with_file_chooser      (EmpathyFTHandler *handler);
110
111 gchar *     empathy_make_absolute_url                   (const gchar *url);
112 gchar *     empathy_make_absolute_url_len               (const gchar *url,
113                                                          guint len);
114
115 G_END_DECLS
116
117 #endif /*  __EMPATHY_UI_UTILS_H__ */