]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-ui-utils.h
pixbuf-utils: copy the generic pixbuf-related utily functions from Empathy
[empathy.git] / libempathy-gtk / empathy-ui-utils.h
1 /*
2  * Copyright (C) 2002-2007 Imendio AB
3  * Copyright (C) 2007-2010 Collabora Ltd.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA  02110-1301  USA
19  *
20  * Authors: Mikael Hallendal <micke@imendio.com>
21  *          Richard Hult <richard@imendio.com>
22  *          Martyn Russell <martyn@imendio.com>
23  *          Xavier Claessens <xclaesse@gmail.com>
24  *          Jonny Lamb <jonny.lamb@collabora.co.uk>
25  *          Travis Reitter <travis.reitter@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 #include <folks/folks.h>
37
38 #include "empathy-contact.h"
39 #include "empathy-ft-handler.h"
40
41 G_BEGIN_DECLS
42
43 #define ACCOUNT_WIDGETS_RESOURCES_PREFIX "/org/gnome/AccountWidgets"
44
45 #define EMPATHY_RECT_IS_ON_SCREEN(x,y,w,h) ((x) + (w) > 0 && \
46               (y) + (h) > 0 && \
47               (x) < gdk_screen_width () && \
48               (y) < gdk_screen_height ())
49
50 typedef void (*EmpathyPixbufAvatarFromIndividualCb) (
51     FolksIndividual *individual,
52     GdkPixbuf *pixbuf,
53     gpointer user_data);
54
55 void empathy_gtk_init (void);
56
57 /* Pixbufs */
58 const gchar * empathy_icon_name_for_presence (
59     TpConnectionPresenceType presence);
60 const gchar * empathy_icon_name_for_contact (EmpathyContact *contact);
61 const gchar * empathy_icon_name_for_individual (FolksIndividual *individual);
62 const gchar * empathy_protocol_name_for_contact (EmpathyContact *contact);
63 void empathy_pixbuf_avatar_from_individual_scaled_async (
64     FolksIndividual *individual,
65     gint width,
66     gint height,
67     GCancellable *cancellable,
68     GAsyncReadyCallback callback,
69     gpointer user_data);
70 GdkPixbuf * empathy_pixbuf_avatar_from_individual_scaled_finish (
71     FolksIndividual *individual,
72     GAsyncResult *result,
73     GError **error);
74 GdkPixbuf * empathy_pixbuf_avatar_from_contact_scaled (EmpathyContact *contact,
75     gint width,
76     gint height);
77 GdkPixbuf * empathy_pixbuf_contact_status_icon (EmpathyContact *contact,
78     gboolean show_protocol);
79 GdkPixbuf * empathy_pixbuf_contact_status_icon_with_icon_name (
80     EmpathyContact *contact,
81     const gchar *icon_name,
82     gboolean show_protocol);
83
84 void empathy_move_to_window_desktop (GtkWindow *window,
85     guint32 timestamp);
86
87 /* URL */
88 void empathy_url_show (GtkWidget *parent,
89     const char *url);
90
91 /* File transfer */
92 void empathy_send_file (EmpathyContact *contact,
93     GFile *file);
94 void empathy_send_file_from_uri_list (EmpathyContact *contact,
95     const gchar *uri_list);
96 void empathy_send_file_with_file_chooser (EmpathyContact *contact);
97 void empathy_receive_file_with_file_chooser (EmpathyFTHandler *handler);
98
99 /* Misc */
100 void  empathy_make_color_whiter (GdkRGBA *color);
101
102 GtkWidget * empathy_context_menu_new (GtkWidget *attach_to);
103
104 gint64 empathy_get_current_action_time (void);
105
106 gboolean empathy_individual_match_string (
107     FolksIndividual *individual,
108     const gchar *text,
109     GPtrArray *words);
110
111 void empathy_launch_program (const gchar *dir,
112     const gchar *name,
113     const gchar *args);
114
115 void empathy_set_css_provider (GtkWidget *widget);
116
117 gboolean empathy_launch_external_app (const gchar *desktop_file,
118     const gchar *args,
119     GError **error);
120
121 G_END_DECLS
122
123 #endif /*  __EMPATHY_UI_UTILS_H__ */