aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-sound-manager.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-11-30 17:14:33 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-11-30 17:16:21 +0800
commit0dca19234c147a94609c6659660e83135e765b9c (patch)
treea65de2c66b618717e085a188f8c3040503e749da /libempathy-gtk/empathy-sound-manager.h
parentac0dab19efa8d17f3d7b0c9489a2d3ea06a00c6b (diff)
downloadgsoc2013-empathy-0dca19234c147a94609c6659660e83135e765b9c.tar
gsoc2013-empathy-0dca19234c147a94609c6659660e83135e765b9c.tar.gz
gsoc2013-empathy-0dca19234c147a94609c6659660e83135e765b9c.tar.bz2
gsoc2013-empathy-0dca19234c147a94609c6659660e83135e765b9c.tar.lz
gsoc2013-empathy-0dca19234c147a94609c6659660e83135e765b9c.tar.xz
gsoc2013-empathy-0dca19234c147a94609c6659660e83135e765b9c.tar.zst
gsoc2013-empathy-0dca19234c147a94609c6659660e83135e765b9c.zip
move empathy-sound to empathy-sound-manager
Diffstat (limited to 'libempathy-gtk/empathy-sound-manager.h')
-rw-r--r--libempathy-gtk/empathy-sound-manager.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-sound-manager.h b/libempathy-gtk/empathy-sound-manager.h
new file mode 100644
index 000000000..95160b342
--- /dev/null
+++ b/libempathy-gtk/empathy-sound-manager.h
@@ -0,0 +1,56 @@
+/*
+ * empathy-sound-manager.h - Various sound related utility functions.
+ * Copyright (C) 2009 Collabora Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+
+#ifndef __EMPATHY_SOUND_MANAGER_H__
+#define __EMPATHY_SOUND_MANAGER_H__
+
+#include <gtk/gtk.h>
+
+#include <canberra-gtk.h>
+
+G_BEGIN_DECLS
+
+/* NOTE: Keep this sync with sound_entries in empathy-sound-manager.c */
+typedef enum {
+ EMPATHY_SOUND_MESSAGE_INCOMING = 0,
+ EMPATHY_SOUND_MESSAGE_OUTGOING,
+ EMPATHY_SOUND_CONVERSATION_NEW,
+ EMPATHY_SOUND_CONTACT_CONNECTED,
+ EMPATHY_SOUND_CONTACT_DISCONNECTED,
+ EMPATHY_SOUND_ACCOUNT_CONNECTED,
+ EMPATHY_SOUND_ACCOUNT_DISCONNECTED,
+ EMPATHY_SOUND_PHONE_INCOMING,
+ EMPATHY_SOUND_PHONE_OUTGOING,
+ EMPATHY_SOUND_PHONE_HANGUP,
+ LAST_EMPATHY_SOUND,
+} EmpathySound;
+
+gboolean empathy_sound_play (GtkWidget *widget, EmpathySound sound_id);
+void empathy_sound_stop (EmpathySound sound_id);
+
+gboolean empathy_sound_start_playing (GtkWidget *widget, EmpathySound sound_id,
+ guint timeout_before_replay);
+
+gboolean empathy_sound_play_full (GtkWidget *widget, EmpathySound sound_id,
+ ca_finish_callback_t callback, gpointer user_data);
+
+G_END_DECLS
+
+#endif /* #ifndef __EMPATHY_SOUND_MANAGER_H__ */