annotate finch/gntsound.c @ 19119:086cfcb71b01

Created SoundPrefDialog to store dialog data. Cleaned up the Sounds pref window to look better.
author Eric Polino <aluink@pidgin.im>
date Fri, 29 Jun 2007 01:51:13 +0000
parents cfe8f791d7c1
children 915ef65d68e3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
19100
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
1 /**
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
2 * @file gntsound.c GNT Sound API
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
3 * @ingroup finch
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
4 *
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
5 * finch
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
6 *
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
7 * Finch is the legal property of its developers, whose names are too numerous
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
8 * to list here. Please refer to the COPYRIGHT file distributed with this
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
9 * source distribution.
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
10 *
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
11 * This program is free software; you can redistribute it and/or modify
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
12 * it under the terms of the GNU General Public License as published by
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
13 * the Free Software Foundation; either version 2 of the License, or
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
14 * (at your option) any later version.
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
15 *
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
16 * This program is distributed in the hope that it will be useful,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
19 * GNU General Public License for more details.
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
20 *
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
21 * You should have received a copy of the GNU General Public License
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
22 * along with this program; if not, write to the Free Software
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
24 */
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
25 #include "internal.h"
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
26 #include "finch.h"
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
27
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
28 #ifdef _WIN32
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
29 #include <windows.h>
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
30 #include <mmsystem.h>
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
31 #endif
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
32
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
33 #ifdef USE_GSTREAMER
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
34 #include <gst/gst.h>
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
35 #endif /* USE_GSTREAMER */
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
36
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
37 #include "debug.h"
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
38 #include "notify.h"
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
39 #include "prefs.h"
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
40 #include "sound.h"
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
41 #include "util.h"
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
42
19117
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
43 #include "gntbox.h"
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
44 #include "gntwindow.h"
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
45 #include "gntcombobox.h"
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
46 #include "gntlabel.h"
19100
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
47 #include "gntconv.h"
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
48 #include "gntsound.h"
19117
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
49 #include "gntwidget.h"
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
50 #include "gntentry.h"
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
51 #include "gntcheckbox.h"
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
52 #include "gntline.h"
19100
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
53
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
54 struct finch_sound_event {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
55 char *label;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
56 char *pref;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
57 char *def;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
58 };
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
59
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
60 typedef struct {
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
61 GntWidget *method;
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
62 GntWidget *command;
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
63 GntWidget *conv_focus;
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
64 GntWidget *while_status;
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
65 GntWidget *volume;
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
66 GntWidget *window;
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
67 } SoundPrefDialog;
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
68
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
69 static struct {
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
70 const gchar *method;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
71 const gchar *command;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
72 gboolean conv_focus;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
73 gint while_status;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
74 gint volume;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
75 GntTree *events;
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
76 SoundPrefDialog *dialog;
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
77 } sound_pref_data;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
78
19100
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
79 #define PLAY_SOUND_TIMEOUT 15000
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
80
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
81 static guint mute_login_sounds_timeout = 0;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
82 static gboolean mute_login_sounds = FALSE;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
83
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
84 #ifdef USE_GSTREAMER
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
85 static gboolean gst_init_failed;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
86 #endif /* USE_GSTREAMER */
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
87
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
88 static struct finch_sound_event sounds[PURPLE_NUM_SOUNDS] = {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
89 {N_("Buddy logs in"), "login", "login.wav"},
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
90 {N_("Buddy logs out"), "logout", "logout.wav"},
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
91 {N_("Message received"), "im_recv", "receive.wav"},
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
92 {N_("Message received begins conversation"), "first_im_recv", "receive.wav"},
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
93 {N_("Message sent"), "send_im", "send.wav"},
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
94 {N_("Person enters chat"), "join_chat", "login.wav"},
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
95 {N_("Person leaves chat"), "left_chat", "logout.wav"},
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
96 {N_("You talk in chat"), "send_chat_msg", "send.wav"},
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
97 {N_("Others talk in chat"), "chat_msg_recv", "receive.wav"},
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
98 /* this isn't a terminator, it's the buddy pounce default sound event ;-) */
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
99 {NULL, "pounce_default", "alert.wav"},
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
100 {N_("Someone says your screen name in chat"), "nick_said", "alert.wav"}
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
101 };
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
102
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
103 static gboolean
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
104 unmute_login_sounds_cb(gpointer data)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
105 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
106 mute_login_sounds = FALSE;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
107 mute_login_sounds_timeout = 0;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
108 return FALSE;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
109 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
110
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
111 static gboolean
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
112 chat_nick_matches_name(PurpleConversation *conv, const char *aname)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
113 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
114 PurpleConvChat *chat = NULL;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
115 char *nick = NULL;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
116 char *name = NULL;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
117 gboolean ret = FALSE;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
118 chat = purple_conversation_get_chat_data(conv);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
119
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
120 if (chat==NULL)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
121 return ret;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
122
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
123 nick = g_strdup(purple_normalize(conv->account, chat->nick));
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
124 name = g_strdup(purple_normalize(conv->account, aname));
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
125
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
126 if (g_utf8_collate(nick, name) == 0)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
127 ret = TRUE;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
128
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
129 g_free(nick);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
130 g_free(name);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
131
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
132 return ret;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
133 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
134
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
135 /*
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
136 * play a sound event for a conversation, honoring make_sound flag
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
137 * of conversation and checking for focus if conv_focus pref is set
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
138 */
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
139 static void
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
140 play_conv_event(PurpleConversation *conv, PurpleSoundEventID event)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
141 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
142 /* If we should not play the sound for some reason, then exit early */
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
143 if (conv != NULL)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
144 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
145 FinchConv *gntconv;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
146 gboolean has_focus;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
147
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
148 gntconv = FINCH_CONV(conv);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
149
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
150 has_focus = purple_conversation_has_focus(conv);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
151
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
152 if (has_focus && !purple_prefs_get_bool(FINCH_PREFS_ROOT "/sound/conv_focus"))
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
153 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
154 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
155 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
156 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
157
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
158 purple_sound_play_event(event, conv ? purple_conversation_get_account(conv) : NULL);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
159 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
160
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
161 static void
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
162 buddy_state_cb(PurpleBuddy *buddy, PurpleSoundEventID event)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
163 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
164 purple_sound_play_event(event, purple_buddy_get_account(buddy));
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
165 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
166
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
167 static void
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
168 im_msg_received_cb(PurpleAccount *account, char *sender,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
169 char *message, PurpleConversation *conv,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
170 PurpleMessageFlags flags, PurpleSoundEventID event)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
171 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
172 if (flags & PURPLE_MESSAGE_DELAYED)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
173 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
174
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
175 if (conv==NULL){
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
176 purple_sound_play_event(PURPLE_SOUND_FIRST_RECEIVE, account);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
177 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
178 else{
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
179 play_conv_event(conv, event);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
180 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
181 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
182
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
183 static void
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
184 im_msg_sent_cb(PurpleAccount *account, const char *receiver,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
185 const char *message, PurpleSoundEventID event)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
186 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
187 PurpleConversation *conv = purple_find_conversation_with_account(
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
188 PURPLE_CONV_TYPE_ANY, receiver, account);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
189 play_conv_event(conv, event);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
190 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
191
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
192 static void
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
193 chat_buddy_join_cb(PurpleConversation *conv, const char *name,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
194 PurpleConvChatBuddyFlags flags, gboolean new_arrival,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
195 PurpleSoundEventID event)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
196 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
197 if (new_arrival && !chat_nick_matches_name(conv, name))
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
198 play_conv_event(conv, event);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
199 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
200
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
201 static void
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
202 chat_buddy_left_cb(PurpleConversation *conv, const char *name,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
203 const char *reason, PurpleSoundEventID event)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
204 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
205 if (!chat_nick_matches_name(conv, name))
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
206 play_conv_event(conv, event);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
207 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
208
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
209 static void
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
210 chat_msg_sent_cb(PurpleAccount *account, const char *message,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
211 int id, PurpleSoundEventID event)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
212 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
213 PurpleConnection *conn = purple_account_get_connection(account);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
214 PurpleConversation *conv = NULL;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
215
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
216 if (conn!=NULL)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
217 conv = purple_find_chat(conn,id);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
218
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
219 play_conv_event(conv, event);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
220 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
221
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
222 static void
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
223 chat_msg_received_cb(PurpleAccount *account, char *sender,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
224 char *message, PurpleConversation *conv,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
225 PurpleMessageFlags flags, PurpleSoundEventID event)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
226 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
227 PurpleConvChat *chat;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
228
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
229 if (flags & PURPLE_MESSAGE_DELAYED)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
230 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
231
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
232 chat = purple_conversation_get_chat_data(conv);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
233 g_return_if_fail(chat != NULL);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
234
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
235 if (purple_conv_chat_is_user_ignored(chat, sender))
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
236 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
237
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
238 if (chat_nick_matches_name(conv, sender))
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
239 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
240
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
241 if (flags & PURPLE_MESSAGE_NICK || purple_utf8_has_word(message, chat->nick))
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
242 play_conv_event(conv, PURPLE_SOUND_CHAT_NICK);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
243 else
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
244 play_conv_event(conv, event);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
245 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
246
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
247 /*
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
248 * We mute sounds for the 10 seconds after you log in so that
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
249 * you don't get flooded with sounds when the blist shows all
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
250 * your buddies logging in.
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
251 */
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
252 static void
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
253 account_signon_cb(PurpleConnection *gc, gpointer data)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
254 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
255 if (mute_login_sounds_timeout != 0)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
256 g_source_remove(mute_login_sounds_timeout);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
257 mute_login_sounds = TRUE;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
258 mute_login_sounds_timeout = purple_timeout_add(10000, unmute_login_sounds_cb, NULL);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
259 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
260
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
261 const char *
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
262 finch_sound_get_event_option(PurpleSoundEventID event)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
263 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
264 if(event >= PURPLE_NUM_SOUNDS)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
265 return 0;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
266
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
267 return sounds[event].pref;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
268 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
269
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
270 const char *
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
271 finch_sound_get_event_label(PurpleSoundEventID event)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
272 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
273 if(event >= PURPLE_NUM_SOUNDS)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
274 return NULL;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
275
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
276 return sounds[event].label;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
277 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
278
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
279 void *
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
280 finch_sound_get_handle()
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
281 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
282 static int handle;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
283
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
284 return &handle;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
285 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
286
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
287 static void
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
288 finch_sound_init(void)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
289 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
290 void *gnt_sound_handle = finch_sound_get_handle();
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
291 void *blist_handle = purple_blist_get_handle();
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
292 void *conv_handle = purple_conversations_get_handle();
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
293 #ifdef USE_GSTREAMER
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
294 GError *error = NULL;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
295 #endif
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
296
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
297 purple_signal_connect(purple_connections_get_handle(), "signed-on",
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
298 gnt_sound_handle, PURPLE_CALLBACK(account_signon_cb),
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
299 NULL);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
300
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
301 purple_prefs_add_none(FINCH_PREFS_ROOT "/sound");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
302 purple_prefs_add_none(FINCH_PREFS_ROOT "/sound/enabled");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
303 purple_prefs_add_none(FINCH_PREFS_ROOT "/sound/file");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
304 purple_prefs_add_bool(FINCH_PREFS_ROOT "/sound/enabled/login", TRUE);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
305 purple_prefs_add_path(FINCH_PREFS_ROOT "/sound/file/login", "");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
306 purple_prefs_add_bool(FINCH_PREFS_ROOT "/sound/enabled/logout", TRUE);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
307 purple_prefs_add_path(FINCH_PREFS_ROOT "/sound/file/logout", "");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
308 purple_prefs_add_bool(FINCH_PREFS_ROOT "/sound/enabled/im_recv", TRUE);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
309 purple_prefs_add_path(FINCH_PREFS_ROOT "/sound/file/im_recv", "");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
310 purple_prefs_add_bool(FINCH_PREFS_ROOT "/sound/enabled/first_im_recv", FALSE);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
311 purple_prefs_add_path(FINCH_PREFS_ROOT "/sound/file/first_im_recv", "");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
312 purple_prefs_add_bool(FINCH_PREFS_ROOT "/sound/enabled/send_im", TRUE);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
313 purple_prefs_add_path(FINCH_PREFS_ROOT "/sound/file/send_im", "");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
314 purple_prefs_add_bool(FINCH_PREFS_ROOT "/sound/enabled/join_chat", FALSE);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
315 purple_prefs_add_path(FINCH_PREFS_ROOT "/sound/file/join_chat", "");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
316 purple_prefs_add_bool(FINCH_PREFS_ROOT "/sound/enabled/left_chat", FALSE);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
317 purple_prefs_add_path(FINCH_PREFS_ROOT "/sound/file/left_chat", "");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
318 purple_prefs_add_bool(FINCH_PREFS_ROOT "/sound/enabled/send_chat_msg", FALSE);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
319 purple_prefs_add_path(FINCH_PREFS_ROOT "/sound/file/send_chat_msg", "");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
320 purple_prefs_add_bool(FINCH_PREFS_ROOT "/sound/enabled/chat_msg_recv", FALSE);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
321 purple_prefs_add_path(FINCH_PREFS_ROOT "/sound/file/chat_msg_recv", "");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
322 purple_prefs_add_bool(FINCH_PREFS_ROOT "/sound/enabled/nick_said", FALSE);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
323 purple_prefs_add_path(FINCH_PREFS_ROOT "/sound/file/nick_said", "");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
324 purple_prefs_add_bool(FINCH_PREFS_ROOT "/sound/enabled/pounce_default", TRUE);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
325 purple_prefs_add_path(FINCH_PREFS_ROOT "/sound/file/pounce_default", "");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
326 purple_prefs_add_bool(FINCH_PREFS_ROOT "/sound/conv_focus", TRUE);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
327 purple_prefs_add_bool(FINCH_PREFS_ROOT "/sound/mute", FALSE);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
328 purple_prefs_add_path(FINCH_PREFS_ROOT "/sound/command", "");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
329 purple_prefs_add_string(FINCH_PREFS_ROOT "/sound/method", "automatic");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
330 purple_prefs_add_int(FINCH_PREFS_ROOT "/sound/volume", 50);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
331
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
332 #ifdef USE_GSTREAMER
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
333 purple_debug_info("sound", "Initializing sound output drivers.\n");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
334 if ((gst_init_failed = !gst_init_check(NULL, NULL, &error))) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
335 purple_notify_error(NULL, _("GStreamer Failure"),
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
336 _("GStreamer failed to initialize."),
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
337 error ? error->message : "");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
338 if (error) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
339 g_error_free(error);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
340 error = NULL;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
341 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
342 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
343 #endif /* USE_GSTREAMER */
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
344
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
345 purple_signal_connect(blist_handle, "buddy-signed-on",
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
346 gnt_sound_handle, PURPLE_CALLBACK(buddy_state_cb),
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
347 GINT_TO_POINTER(PURPLE_SOUND_BUDDY_ARRIVE));
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
348 purple_signal_connect(blist_handle, "buddy-signed-off",
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
349 gnt_sound_handle, PURPLE_CALLBACK(buddy_state_cb),
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
350 GINT_TO_POINTER(PURPLE_SOUND_BUDDY_LEAVE));
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
351 purple_signal_connect(conv_handle, "received-im-msg",
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
352 gnt_sound_handle, PURPLE_CALLBACK(im_msg_received_cb),
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
353 GINT_TO_POINTER(PURPLE_SOUND_RECEIVE));
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
354 purple_signal_connect(conv_handle, "sent-im-msg",
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
355 gnt_sound_handle, PURPLE_CALLBACK(im_msg_sent_cb),
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
356 GINT_TO_POINTER(PURPLE_SOUND_SEND));
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
357 purple_signal_connect(conv_handle, "chat-buddy-joined",
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
358 gnt_sound_handle, PURPLE_CALLBACK(chat_buddy_join_cb),
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
359 GINT_TO_POINTER(PURPLE_SOUND_CHAT_JOIN));
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
360 purple_signal_connect(conv_handle, "chat-buddy-left",
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
361 gnt_sound_handle, PURPLE_CALLBACK(chat_buddy_left_cb),
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
362 GINT_TO_POINTER(PURPLE_SOUND_CHAT_LEAVE));
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
363 purple_signal_connect(conv_handle, "sent-chat-msg",
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
364 gnt_sound_handle, PURPLE_CALLBACK(chat_msg_sent_cb),
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
365 GINT_TO_POINTER(PURPLE_SOUND_CHAT_YOU_SAY));
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
366 purple_signal_connect(conv_handle, "received-chat-msg",
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
367 gnt_sound_handle, PURPLE_CALLBACK(chat_msg_received_cb),
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
368 GINT_TO_POINTER(PURPLE_SOUND_CHAT_SAY));
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
369 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
370
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
371 static void
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
372 finch_sound_uninit(void)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
373 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
374 #ifdef USE_GSTREAMER
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
375 if (!gst_init_failed)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
376 gst_deinit();
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
377 #endif
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
378
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
379 purple_signals_disconnect_by_handle(finch_sound_get_handle());
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
380 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
381
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
382 #ifdef USE_GSTREAMER
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
383 static gboolean
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
384 bus_call (GstBus *bus, GstMessage *msg, gpointer data)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
385 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
386 GstElement *play = data;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
387 GError *err = NULL;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
388
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
389 switch (GST_MESSAGE_TYPE (msg)) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
390 case GST_MESSAGE_EOS:
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
391 gst_element_set_state(play, GST_STATE_NULL);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
392 gst_object_unref(GST_OBJECT(play));
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
393 break;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
394 case GST_MESSAGE_ERROR:
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
395 gst_message_parse_error(msg, &err, NULL);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
396 purple_debug_error("gstreamer", err->message);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
397 g_error_free(err);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
398 break;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
399 case GST_MESSAGE_WARNING:
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
400 gst_message_parse_warning(msg, &err, NULL);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
401 purple_debug_warning("gstreamer", err->message);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
402 g_error_free(err);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
403 break;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
404 default:
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
405 break;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
406 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
407 return TRUE;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
408 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
409 #endif
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
410
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
411 static void
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
412 finch_sound_play_file(const char *filename)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
413 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
414 const char *method;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
415 #ifdef USE_GSTREAMER
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
416 float volume;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
417 char *uri;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
418 GstElement *sink = NULL;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
419 GstElement *play = NULL;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
420 GstBus *bus = NULL;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
421 #endif
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
422 if (purple_prefs_get_bool(FINCH_PREFS_ROOT "/sound/mute"))
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
423 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
424
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
425 method = purple_prefs_get_string(FINCH_PREFS_ROOT "/sound/method");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
426
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
427 if (!strcmp(method, "none")) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
428 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
429 } else if (!strcmp(method, "beep")) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
430 beep();
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
431 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
432 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
433
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
434 if (!g_file_test(filename, G_FILE_TEST_EXISTS)) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
435 purple_debug_error("gntsound", "sound file (%s) does not exist.\n", filename);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
436 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
437 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
438
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
439 #ifndef _WIN32
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
440 if (!strcmp(method, "custom")) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
441 const char *sound_cmd;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
442 char *command;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
443 char *esc_filename;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
444 GError *error = NULL;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
445
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
446 sound_cmd = purple_prefs_get_path(FINCH_PREFS_ROOT "/sound/command");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
447
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
448 if (!sound_cmd || *sound_cmd == '\0') {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
449 purple_debug_error("gntsound",
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
450 "'Command' sound method has been chosen, "
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
451 "but no command has been set.");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
452 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
453 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
454
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
455 esc_filename = g_shell_quote(filename);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
456
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
457 if(strstr(sound_cmd, "%s"))
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
458 command = purple_strreplace(sound_cmd, "%s", esc_filename);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
459 else
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
460 command = g_strdup_printf("%s %s", sound_cmd, esc_filename);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
461
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
462 if(!g_spawn_command_line_async(command, &error)) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
463 purple_debug_error("gntsound", "sound command could not be launched: %s\n", error->message);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
464 g_error_free(error);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
465 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
466
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
467 g_free(esc_filename);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
468 g_free(command);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
469 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
470 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
471 #ifdef USE_GSTREAMER
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
472 if (gst_init_failed) /* Perhaps do beep instead? */
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
473 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
474 volume = (float)(CLAMP(purple_prefs_get_int(FINCH_PREFS_ROOT "/sound/volume"),0,100)) / 50;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
475 if (!strcmp(method, "automatic")) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
476 if (purple_running_gnome()) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
477 sink = gst_element_factory_make("gconfaudiosink", "sink");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
478 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
479 if (!sink)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
480 sink = gst_element_factory_make("autoaudiosink", "sink");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
481 if (!sink) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
482 purple_debug_error("sound", "Unable to create GStreamer audiosink.\n");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
483 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
484 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
485 } else if (!strcmp(method, "esd")) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
486 sink = gst_element_factory_make("esdsink", "sink");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
487 if (!sink) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
488 purple_debug_error("sound", "Unable to create GStreamer audiosink.\n");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
489 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
490 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
491 } else if (!strcmp(method, "alsa")) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
492 sink = gst_element_factory_make("alsasink", "sink");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
493 if (!sink) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
494 purple_debug_error("sound", "Unable to create GStreamer audiosink.\n");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
495 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
496 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
497 } else {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
498 purple_debug_error("sound", "Unknown sound method '%s'\n", method);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
499 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
500 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
501
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
502 play = gst_element_factory_make("playbin", "play");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
503
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
504 if (play == NULL) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
505 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
506 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
507
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
508 uri = g_strdup_printf("file://%s", filename);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
509
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
510 g_object_set(G_OBJECT(play), "uri", uri,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
511 "volume", volume,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
512 "audio-sink", sink, NULL);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
513
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
514 bus = gst_pipeline_get_bus(GST_PIPELINE(play));
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
515 gst_bus_add_watch(bus, bus_call, play);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
516
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
517 gst_element_set_state(play, GST_STATE_PLAYING);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
518
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
519 gst_object_unref(bus);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
520 g_free(uri);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
521
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
522 #else /* USE_GSTREAMER */
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
523 beep();
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
524 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
525 #endif /* USE_GSTREAMER */
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
526 #else /* _WIN32 */
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
527 purple_debug_info("sound", "Playing %s\n", filename);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
528
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
529 if (G_WIN32_HAVE_WIDECHAR_API ()) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
530 wchar_t *wc_filename = g_utf8_to_utf16(filename,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
531 -1, NULL, NULL, NULL);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
532 if (!PlaySoundW(wc_filename, NULL, SND_ASYNC | SND_FILENAME))
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
533 purple_debug(PURPLE_DEBUG_ERROR, "sound", "Error playing sound.\n");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
534 g_free(wc_filename);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
535 } else {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
536 char *l_filename = g_locale_from_utf8(filename,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
537 -1, NULL, NULL, NULL);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
538 if (!PlaySoundA(l_filename, NULL, SND_ASYNC | SND_FILENAME))
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
539 purple_debug(PURPLE_DEBUG_ERROR, "sound", "Error playing sound.\n");
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
540 g_free(l_filename);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
541 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
542 #endif /* _WIN32 */
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
543 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
544
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
545 static void
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
546 finch_sound_play_event(PurpleSoundEventID event)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
547 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
548 char *enable_pref;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
549 char *file_pref;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
550 if ((event == PURPLE_SOUND_BUDDY_ARRIVE) && mute_login_sounds)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
551 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
552
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
553 if (event >= PURPLE_NUM_SOUNDS) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
554 purple_debug_error("sound", "got request for unknown sound: %d\n", event);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
555 return;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
556 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
557
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
558 enable_pref = g_strdup_printf(FINCH_PREFS_ROOT "/sound/enabled/%s",
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
559 sounds[event].pref);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
560 file_pref = g_strdup_printf(FINCH_PREFS_ROOT "/sound/file/%s", sounds[event].pref);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
561
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
562 /* check NULL for sounds that don't have an option, ie buddy pounce */
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
563 if (purple_prefs_get_bool(enable_pref)) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
564 char *filename = g_strdup(purple_prefs_get_path(file_pref));
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
565 if(!filename || !strlen(filename)) {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
566 g_free(filename);
19115
Eric Polino <aluink@pidgin.im>
parents: 19100
diff changeset
567 /* XXX Consider creating a constant for "sounds/purple" to be shared with Pidgin */
Eric Polino <aluink@pidgin.im>
parents: 19100
diff changeset
568 filename = g_build_filename(DATADIR, "sounds", "purple", sounds[event].def, NULL);
19100
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
569 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
570
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
571 purple_sound_play_file(filename, NULL);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
572 g_free(filename);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
573 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
574
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
575 g_free(enable_pref);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
576 g_free(file_pref);
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
577 }
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
578
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
579 static void init_pref_data()
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
580 {
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
581 GntTree *events = NULL;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
582
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
583 if(sound_pref_data.method){
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
584 return;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
585 }
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
586
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
587 /* TODO Setup the events tree */
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
588
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
589 sound_pref_data.method = purple_prefs_get_string(FINCH_PREFS_ROOT "/sound/method");
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
590 sound_pref_data.command = purple_prefs_get_string(FINCH_PREFS_ROOT "/sound/command");
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
591 sound_pref_data.conv_focus = purple_prefs_get_bool(FINCH_PREFS_ROOT "/sound/conv_focus");
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
592 sound_pref_data.while_status = purple_prefs_get_int(FINCH_PREFS_ROOT "/purple/sound/while_status");
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
593 sound_pref_data.volume = CLAMP(purple_prefs_get_int(FINCH_PREFS_ROOT "/sound/volume"),0,100);
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
594 sound_pref_data.events = events;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
595
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
596 return;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
597 }
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
598
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
599 static gboolean
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
600 save_cb(GntBindable *data, gpointer *win)
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
601 {
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
602 gnt_widget_destroy(GNT_WIDGET(win));
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
603 return TRUE;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
604 }
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
605
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
606 static gboolean
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
607 cancel_cb(GntBindable *data, gpointer win)
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
608 {
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
609 gnt_widget_destroy(GNT_WIDGET(win));
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
610 return TRUE;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
611 }
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
612
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
613 static void release_pref_window(GntBindable *data, gpointer null) {
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
614 g_free(sound_pref_data.dialog);
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
615 sound_pref_data.dialog = NULL;
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
616 }
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
617
19117
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
618 void
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
619 finch_sounds_show_all(void)
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
620 {
19117
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
621 GntWidget *box;
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
622 GntWidget *cmbox;
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
623 GntWidget *entry;
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
624 GntWidget *chkbox;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
625 GntWidget *button;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
626 GntWidget *label;
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
627 GntWidget *win;
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
628 gchar *buf;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
629
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
630 if(sound_pref_data.dialog){
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
631 gnt_window_present(sound_pref_data.dialog->window);
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
632 return;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
633 }
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
634
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
635 init_pref_data();
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
636
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
637 sound_pref_data.dialog = g_new0(SoundPrefDialog,1);
19117
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
638
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
639 sound_pref_data.dialog->window = win = gnt_window_box_new(FALSE,TRUE);
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
640 gnt_box_set_pad(GNT_BOX(win),0);
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
641 gnt_box_set_fill(GNT_BOX(win),FALSE);
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
642 gnt_box_set_toplevel(GNT_BOX(win), TRUE);
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
643 gnt_box_set_title(GNT_BOX(win),_("Sound Preferences"));
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
644 gnt_box_set_fill(GNT_BOX(win),TRUE);
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
645 gnt_box_set_alignment(GNT_BOX(win),GNT_ALIGN_MID);
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
646 gnt_widget_set_name(win, "sounds");
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
647
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
648 sound_pref_data.dialog->method = cmbox = gnt_combo_box_new();
19117
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
649 gnt_combo_box_add_data(GNT_COMBO_BOX(cmbox),"automatic",_("Automatic"));
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
650 gnt_combo_box_add_data(GNT_COMBO_BOX(cmbox),"alsa","ALSA");
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
651 gnt_combo_box_add_data(GNT_COMBO_BOX(cmbox),"esd","ESD");
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
652 gnt_combo_box_add_data(GNT_COMBO_BOX(cmbox),"beep",_("Console Beep"));
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
653 gnt_combo_box_add_data(GNT_COMBO_BOX(cmbox),"custom",_("Command"));
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
654 gnt_combo_box_add_data(GNT_COMBO_BOX(cmbox),"nosound",_("No Sound"));
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
655 gnt_combo_box_set_selected(GNT_COMBO_BOX(cmbox),sound_pref_data.method);
19117
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
656
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
657 label = gnt_label_new_with_format(_("Sound Method"),GNT_TEXT_FLAG_BOLD);
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
658 gnt_box_add_widget(GNT_BOX(win),label);
19117
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
659 box = gnt_hbox_new(TRUE);
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
660 gnt_box_set_fill(GNT_BOX(box),FALSE);
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
661 gnt_box_set_pad(GNT_BOX(box),0);
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
662 gnt_box_add_widget(GNT_BOX(box),gnt_label_new(_("Method: ")));
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
663 gnt_box_add_widget(GNT_BOX(box),cmbox);
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
664 gnt_box_add_widget(GNT_BOX(win),box);
19117
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
665
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
666 box = gnt_hbox_new(TRUE);
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
667 gnt_box_set_pad(GNT_BOX(box),0);
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
668 gnt_box_set_fill(GNT_BOX(box),FALSE);
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
669 gnt_box_add_widget(GNT_BOX(box),gnt_label_new(_("Sound Command\n(%s for filename)")));
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
670 sound_pref_data.dialog->command = entry = gnt_entry_new(sound_pref_data.command);
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
671 gnt_box_add_widget(GNT_BOX(box),entry);
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
672 gnt_box_add_widget(GNT_BOX(win),box);
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
673
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
674 gnt_box_add_widget(GNT_BOX(win), gnt_line_new(FALSE));
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
675
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
676 gnt_box_add_widget(GNT_BOX(win),gnt_label_new_with_format(_("Sound Options"),GNT_TEXT_FLAG_BOLD));
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
677 sound_pref_data.dialog->conv_focus = chkbox = gnt_check_box_new("Sounds when conversation has focus");
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
678 gnt_check_box_set_checked(GNT_CHECK_BOX(chkbox),sound_pref_data.conv_focus);
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
679 gnt_box_add_widget(GNT_BOX(win),chkbox);
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
680
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
681 box = gnt_hbox_new(TRUE);
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
682 gnt_box_set_pad(GNT_BOX(box),0);
19117
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
683 gnt_box_set_fill(GNT_BOX(box),FALSE);
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
684 gnt_box_add_widget(GNT_BOX(box),gnt_label_new("Enable Sounds:"));
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
685 sound_pref_data.dialog->while_status = cmbox = gnt_combo_box_new();
19117
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
686 gnt_combo_box_add_data(GNT_COMBO_BOX(cmbox),"always","Always");
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
687 gnt_combo_box_add_data(GNT_COMBO_BOX(cmbox),"available","Only when available");
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
688 gnt_combo_box_add_data(GNT_COMBO_BOX(cmbox),"away","Only when not available");
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
689 switch(sound_pref_data.while_status){
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
690 case 1:gnt_combo_box_set_selected(GNT_COMBO_BOX(cmbox),"available");break;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
691 case 2:gnt_combo_box_set_selected(GNT_COMBO_BOX(cmbox),"away");break;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
692 default:gnt_combo_box_set_selected(GNT_COMBO_BOX(cmbox),"always");break;
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
693 }
19117
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
694 gnt_box_add_widget(GNT_BOX(box),cmbox);
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
695 gnt_box_add_widget(GNT_BOX(win),box);
19117
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
696
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
697 box = gnt_hbox_new(TRUE);
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
698 gnt_box_set_pad(GNT_BOX(box),0);
19117
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
699 gnt_box_set_fill(GNT_BOX(box),FALSE);
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
700 gnt_box_add_widget(GNT_BOX(box),gnt_label_new("Volume(0-100):"));
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
701
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
702 buf = g_strdup_printf("%d",sound_pref_data.volume);
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
703 sound_pref_data.dialog->volume = entry = gnt_entry_new(buf);
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
704 g_free(buf);
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
705 gnt_widget_set_name(entry,"volume");
19117
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
706 gnt_box_add_widget(GNT_BOX(box),entry);
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
707 gnt_box_add_widget(GNT_BOX(win),box);
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
708
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
709 gnt_box_add_widget(GNT_BOX(win), gnt_line_new(FALSE));
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
710
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
711 gnt_box_add_widget(GNT_BOX(win),gnt_label_new_with_format(_("Sound Events"),GNT_TEXT_FLAG_BOLD));
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
712 /* Put events tree here */
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
713
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
714 box = gnt_hbox_new(TRUE);
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
715 gnt_box_set_pad(GNT_BOX(box),0);
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
716 gnt_box_set_fill(GNT_BOX(box),TRUE);
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
717 button = gnt_button_new("Save");
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
718 g_signal_connect(G_OBJECT(button),"activate",G_CALLBACK(save_cb),NULL);
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
719 gnt_box_add_widget(GNT_BOX(box),button);
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
720 button = gnt_button_new("Cancel");
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
721 g_signal_connect(G_OBJECT(button),"activate",G_CALLBACK(cancel_cb),NULL);
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
722 gnt_box_add_widget(GNT_BOX(box),button);
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
723 gnt_box_add_widget(GNT_BOX(win),box);
19117
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
724
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
725
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
726 g_signal_connect(G_OBJECT(win),"destroy",G_CALLBACK(release_pref_window),NULL);
19118
cfe8f791d7c1 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 19117
diff changeset
727
19119
086cfcb71b01 Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 19118
diff changeset
728 gnt_widget_show(win);
19117
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
729
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
730 }
907c41608ada Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 19115
diff changeset
731
19100
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
732 static PurpleSoundUiOps sound_ui_ops =
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
733 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
734 finch_sound_init,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
735 finch_sound_uninit,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
736 finch_sound_play_file,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
737 finch_sound_play_event,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
738 NULL,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
739 NULL,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
740 NULL,
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
741 NULL
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
742 };
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
743
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
744 PurpleSoundUiOps *
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
745 finch_sound_get_ui_ops(void)
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
746 {
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
747 return &sound_ui_ops;
68a3b83795c6 Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
748 }