]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-ui-utils.h
Add a empathy_sound_play_full function
[empathy.git] / libempathy-gtk / empathy-ui-utils.h
index b3b26f0bbc7de39394f251eed63ae370f7367748..69ec465bebec22de231dbc26661325f9ea95c59e 100644 (file)
 #include <gtk/gtk.h>
 #include <glade/glade.h>
 
+#include <canberra-gtk.h>
+
 #include <libmissioncontrol/mc-account.h>
 #include <libmissioncontrol/mc-profile.h>
 
+
 #include <libempathy/empathy-contact.h>
 
 #include "empathy-chat-view.h"
@@ -46,7 +49,7 @@ G_BEGIN_DECLS
 
 /* NOTE: Keep this sync with sound_entries in empathy-ui-utils.c */
 typedef enum {
-       EMPATHY_SOUND_MESSAGE_INCOMING,
+       EMPATHY_SOUND_MESSAGE_INCOMING = 0,
        EMPATHY_SOUND_MESSAGE_OUTGOING,
        EMPATHY_SOUND_CONVERSATION_NEW,
        EMPATHY_SOUND_CONTACT_CONNECTED,
@@ -56,7 +59,7 @@ typedef enum {
        EMPATHY_SOUND_PHONE_INCOMING,
        EMPATHY_SOUND_PHONE_OUTGOING,
        EMPATHY_SOUND_PHONE_HANGUP,
-       LAST_EMPATHY_SOUND
+       LAST_EMPATHY_SOUND,
 } EmpathySound;
 
 void            empathy_gtk_init                        (void);
@@ -98,6 +101,8 @@ GdkPixbuf * empathy_pixbuf_scale_down_if_necessary      (GdkPixbuf        *pixbu
                                                         gint              max_size);
 GdkPixbuf * empathy_pixbuf_from_icon_name               (const gchar      *icon_name,
                                                         GtkIconSize       icon_size);
+GdkPixbuf * empathy_pixbuf_from_icon_name_sized         (const gchar      *icon_name,
+                                                        gint              size);
 /* Text view */
 gboolean    empathy_text_iter_forward_search            (const GtkTextIter*iter,
                                                         const gchar      *str,
@@ -130,9 +135,11 @@ void        empathy_send_file_with_file_chooser         (EmpathyContact   *conta
 /* Sounds */
 void        empathy_sound_play                          (GtkWidget        *widget,
                                                         EmpathySound      sound_id);
-
-/* Notifications */
-gboolean    empathy_notification_should_show            (void);
+gboolean    empathy_sound_play_full                     (GtkWidget *widget,
+                                                        EmpathySound sound_id,
+                                                        ca_finish_callback_t callback,
+                                                        gpointer user_data);
+void        empathy_sound_stop                          (EmpathySound sound_id);
 
 G_END_DECLS