finch/gntsound.c

Thu, 24 May 2018 14:13:35 -0500

author
Mike Ruprecht <cmaiku@gmail.com>
date
Thu, 24 May 2018 14:13:35 -0500
changeset 39064
d00b918ce190
parent 38433
361c801c4536
child 39362
3e92f470c176
permissions
-rw-r--r--

meson: Fix NLS by setting ENABLE_NLS in configuration

ENABLE_NLS was missing in the configuration header (config.h). This
caused none of our translations to be bound/looked for. This patch
adds that configuration setting back, fixing translations.

20147
66f05a854eee applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents: 19933
diff changeset
1 /* finch
18717
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
2 *
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
3 * Finch is the legal property of its developers, whose names are too numerous
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
4 * to list here. Please refer to the COPYRIGHT file distributed with this
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
5 * source distribution.
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
6 *
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
7 * This program is free software; you can redistribute it and/or modify
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
8 * it under the terms of the GNU General Public License as published by
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
9 * the Free Software Foundation; either version 2 of the License, or
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
10 * (at your option) any later version.
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
11 *
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
12 * This program is distributed in the hope that it will be useful,
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
15 * GNU General Public License for more details.
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
16 *
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
17 * You should have received a copy of the GNU General Public License
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
18 * along with this program; if not, write to the Free Software
19859
71d37b57eff2 The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents: 19612
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
18717
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
20 */
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
21 #include "finch.h"
27829
94b279f7c38c Don't include an internal header in the public finch headers.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents: 23087
diff changeset
22 #include <internal.h>
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
23
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
24 #ifdef _WIN32
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
25 #include <windows.h>
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
26 #include <mmsystem.h>
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
27 #endif
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
28
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
29 #ifdef USE_GSTREAMER
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
30 #include <gst/gst.h>
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
31 #endif /* USE_GSTREAMER */
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
32
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
33 #include "debug.h"
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
34 #include "notify.h"
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
35 #include "prefs.h"
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
36 #include "sound.h"
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
37 #include "util.h"
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
38
19612
043dcbf3a36e Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19588
diff changeset
39 #include "gntconv.h"
043dcbf3a36e Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19588
diff changeset
40
18294
8186bc6ffbb4 Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 18292
diff changeset
41 #include "gntbox.h"
8186bc6ffbb4 Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 18292
diff changeset
42 #include "gntwindow.h"
8186bc6ffbb4 Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 18292
diff changeset
43 #include "gntcombobox.h"
8186bc6ffbb4 Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 18292
diff changeset
44 #include "gntlabel.h"
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
45 #include "gntconv.h"
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
46 #include "gntsound.h"
18294
8186bc6ffbb4 Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 18292
diff changeset
47 #include "gntwidget.h"
8186bc6ffbb4 Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 18292
diff changeset
48 #include "gntentry.h"
8186bc6ffbb4 Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 18292
diff changeset
49 #include "gntcheckbox.h"
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
50 #include "gntline.h"
18439
5b6c9a328910 Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents: 18438
diff changeset
51 #include "gnttree.h"
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
52 #include "gntfilesel.h"
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
53
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
54 typedef struct {
18678
2fc084ec99cd Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18620
diff changeset
55 PurpleSoundEventID id;
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
56 char *label;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
57 char *pref;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
58 char *def;
18616
ce2f681adadf merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents: 18440
diff changeset
59 char *file;
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
60 } FinchSoundEvent;
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
61
18296
9461f264ee5f Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 18295
diff changeset
62 typedef struct {
9461f264ee5f Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 18295
diff changeset
63 GntWidget *method;
9461f264ee5f Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 18295
diff changeset
64 GntWidget *command;
9461f264ee5f Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 18295
diff changeset
65 GntWidget *conv_focus;
9461f264ee5f Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 18295
diff changeset
66 GntWidget *while_status;
18439
5b6c9a328910 Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents: 18438
diff changeset
67 GntWidget *events;
18296
9461f264ee5f Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 18295
diff changeset
68 GntWidget *window;
18680
1e8e7b2d644e Fix a potential crash if the file-selector window is closed after the pref-window.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18679
diff changeset
69 GntWidget *selector;
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
70
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
71 GntWidget *profiles;
18696
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
72 GntWidget *new_profile;
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
73 gchar * original_profile;
18296
9461f264ee5f Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 18295
diff changeset
74 } SoundPrefDialog;
9461f264ee5f Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 18295
diff changeset
75
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
76 #define DEFAULT_PROFILE "default"
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
77
18691
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
78 static SoundPrefDialog *pref_dialog;
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
79
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
80 #define PLAY_SOUND_TIMEOUT 15000
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
81
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
82 static guint mute_login_sounds_timeout = 0;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
83 static gboolean mute_login_sounds = FALSE;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
84
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
85 #ifdef USE_GSTREAMER
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
86 static gboolean gst_init_failed;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
87 #endif /* USE_GSTREAMER */
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
88
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
89 static FinchSoundEvent sounds[PURPLE_NUM_SOUNDS] = {
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
90 {PURPLE_SOUND_BUDDY_ARRIVE, N_("Buddy logs in"), "login", "login.wav", NULL},
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
91 {PURPLE_SOUND_BUDDY_LEAVE, N_("Buddy logs out"), "logout", "logout.wav", NULL},
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
92 {PURPLE_SOUND_RECEIVE, N_("Message received"), "im_recv", "receive.wav", NULL},
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
93 {PURPLE_SOUND_FIRST_RECEIVE, N_("Message received begins conversation"), "first_im_recv", "receive.wav", NULL},
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
94 {PURPLE_SOUND_SEND, N_("Message sent"), "send_im", "send.wav", NULL},
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
95 {PURPLE_SOUND_CHAT_JOIN, N_("Person enters chat"), "join_chat", "login.wav", NULL},
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
96 {PURPLE_SOUND_CHAT_LEAVE, N_("Person leaves chat"), "left_chat", "logout.wav", NULL},
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
97 {PURPLE_SOUND_CHAT_YOU_SAY, N_("You talk in chat"), "send_chat_msg", "send.wav", NULL},
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
98 {PURPLE_SOUND_CHAT_SAY, N_("Others talk in chat"), "chat_msg_recv", "receive.wav", NULL},
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
99 {PURPLE_SOUND_POUNCE_DEFAULT, NULL, "pounce_default", "alert.wav", NULL},
30502
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
100 {PURPLE_SOUND_CHAT_NICK, N_("Someone says your username in chat"), "nick_said", "alert.wav", NULL},
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
101 {PURPLE_SOUND_GOT_ATTENTION, N_("Attention received"), "got_attention", "alert.wav", NULL}
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
102 };
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
103
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
104 const char *
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
105 finch_sound_get_active_profile()
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
106 {
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
107 return purple_prefs_get_string(FINCH_PREFS_ROOT "/sound/actprofile");
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
108 }
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
109
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
110 /* This method creates a pref name based on the current active profile.
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
111 * So if "Home" is the current active profile the pref name
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
112 * [FINCH_PREFS_ROOT "/sound/profiles/Home/$NAME"] is created.
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
113 */
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
114 static gchar *
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
115 make_pref(const char *name)
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
116 {
18691
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
117 static char pref_string[512];
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
118 g_snprintf(pref_string, sizeof(pref_string),
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
119 FINCH_PREFS_ROOT "/sound/profiles/%s%s", finch_sound_get_active_profile(), name);
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
120 return pref_string;
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
121 }
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
122
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
123
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
124 static gboolean
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
125 unmute_login_sounds_cb(gpointer data)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
126 {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
127 mute_login_sounds = FALSE;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
128 mute_login_sounds_timeout = 0;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
129 return FALSE;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
130 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
131
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
132 static gboolean
34657
b10d6297ffd5 Refactored finch to use the GObject conversation API
Ankit Vani <a@nevitus.org>
parents: 34622
diff changeset
133 chat_nick_matches_name(PurpleChatConversation *chat, const char *aname)
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
134 {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
135 char *nick = NULL;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
136 char *name = NULL;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
137 gboolean ret = FALSE;
22337
9868137b6724 Update finch to not touch the internals of PurpleConversation.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22104
diff changeset
138 PurpleAccount *account;
9868137b6724 Update finch to not touch the internals of PurpleConversation.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22104
diff changeset
139
18700
1cc3e27756ef Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18699
diff changeset
140 if (chat == NULL)
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
141 return ret;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
142
34657
b10d6297ffd5 Refactored finch to use the GObject conversation API
Ankit Vani <a@nevitus.org>
parents: 34622
diff changeset
143 account = purple_conversation_get_account(PURPLE_CONVERSATION(chat));
34622
753f46dd000f Global replace - renamed functions and types according to GObject-based PurpleConversation API
Ankit Vani <a@nevitus.org>
parents: 33509
diff changeset
144 nick = g_strdup(purple_normalize(account, purple_chat_conversation_get_nick(chat)));
22337
9868137b6724 Update finch to not touch the internals of PurpleConversation.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22104
diff changeset
145 name = g_strdup(purple_normalize(account, aname));
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
146
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
147 if (g_utf8_collate(nick, name) == 0)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
148 ret = TRUE;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
149
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
150 g_free(nick);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
151 g_free(name);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
152
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
153 return ret;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
154 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
156 /*
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
157 * play a sound event for a conversation, honoring make_sound flag
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
158 * of conversation and checking for focus if conv_focus pref is set
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
159 */
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
160 static void
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
161 play_conv_event(PurpleConversation *conv, PurpleSoundEventID event)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
162 {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
163 /* If we should not play the sound for some reason, then exit early */
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
164 if (conv != NULL)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
165 {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
166 FinchConv *gntconv;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
167 gboolean has_focus;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
168
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
169 gntconv = FINCH_CONV(conv);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
170
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
171 has_focus = purple_conversation_has_focus(conv);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
172
19612
043dcbf3a36e Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19588
diff changeset
173 if ((gntconv->flags & FINCH_CONV_NO_SOUND) ||
043dcbf3a36e Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19588
diff changeset
174 (has_focus && !purple_prefs_get_bool(make_pref("/conv_focus"))))
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
175 {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
176 return;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
177 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
178 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
179
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
180 purple_sound_play_event(event, conv ? purple_conversation_get_account(conv) : NULL);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
181 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
182
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
183 static void
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
184 buddy_state_cb(PurpleBuddy *buddy, PurpleSoundEventID event)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
185 {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
186 purple_sound_play_event(event, purple_buddy_get_account(buddy));
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
187 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
188
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
189 static void
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
190 im_msg_received_cb(PurpleAccount *account, char *sender,
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
191 char *message, PurpleConversation *conv,
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
192 PurpleMessageFlags flags, PurpleSoundEventID event)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
193 {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
194 if (flags & PURPLE_MESSAGE_DELAYED)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
195 return;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
196
18700
1cc3e27756ef Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18699
diff changeset
197 if (conv == NULL) {
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
198 purple_sound_play_event(PURPLE_SOUND_FIRST_RECEIVE, account);
18691
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
199 } else {
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
200 play_conv_event(conv, event);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
201 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
202 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
203
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
204 static void
36081
6764e037a308 Switch sent-im-msg to PurpleMessage
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 35877
diff changeset
205 im_msg_sent_cb(PurpleAccount *account, PurpleMessage *msg,
6764e037a308 Switch sent-im-msg to PurpleMessage
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 35877
diff changeset
206 PurpleSoundEventID event)
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
207 {
34657
b10d6297ffd5 Refactored finch to use the GObject conversation API
Ankit Vani <a@nevitus.org>
parents: 34622
diff changeset
208 PurpleIMConversation *im = purple_conversations_find_im_with_account(
36098
4951752ad038 Split PurpleMessage into incoming, outgoing and system
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 36082
diff changeset
209 purple_message_get_recipient(msg), account);
34657
b10d6297ffd5 Refactored finch to use the GObject conversation API
Ankit Vani <a@nevitus.org>
parents: 34622
diff changeset
210 play_conv_event(PURPLE_CONVERSATION(im), event);
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
211 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
212
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
213 static void
34670
9bd5bd903dc7 Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents: 34657
diff changeset
214 chat_user_join_cb(PurpleChatConversation *chat, const char *name,
9bd5bd903dc7 Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents: 34657
diff changeset
215 PurpleChatUserFlags flags, gboolean new_arrival,
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
216 PurpleSoundEventID event)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
217 {
34657
b10d6297ffd5 Refactored finch to use the GObject conversation API
Ankit Vani <a@nevitus.org>
parents: 34622
diff changeset
218 if (new_arrival && !chat_nick_matches_name(chat, name))
b10d6297ffd5 Refactored finch to use the GObject conversation API
Ankit Vani <a@nevitus.org>
parents: 34622
diff changeset
219 play_conv_event(PURPLE_CONVERSATION(chat), event);
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
220 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
221
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
222 static void
34670
9bd5bd903dc7 Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents: 34657
diff changeset
223 chat_user_left_cb(PurpleChatConversation *chat, const char *name,
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
224 const char *reason, PurpleSoundEventID event)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
225 {
34657
b10d6297ffd5 Refactored finch to use the GObject conversation API
Ankit Vani <a@nevitus.org>
parents: 34622
diff changeset
226 if (!chat_nick_matches_name(chat, name))
b10d6297ffd5 Refactored finch to use the GObject conversation API
Ankit Vani <a@nevitus.org>
parents: 34622
diff changeset
227 play_conv_event(PURPLE_CONVERSATION(chat), event);
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
228 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
229
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
230 static void
36082
247d94c903c3 Switch sent-chat-msg to PurpleMessage
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 36081
diff changeset
231 chat_msg_sent_cb(PurpleAccount *account, PurpleMessage *msg, int id,
247d94c903c3 Switch sent-chat-msg to PurpleMessage
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 36081
diff changeset
232 PurpleSoundEventID event)
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
233 {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
234 PurpleConnection *conn = purple_account_get_connection(account);
34657
b10d6297ffd5 Refactored finch to use the GObject conversation API
Ankit Vani <a@nevitus.org>
parents: 34622
diff changeset
235 PurpleChatConversation *chat = NULL;
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
236
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
237 if (conn!=NULL)
34657
b10d6297ffd5 Refactored finch to use the GObject conversation API
Ankit Vani <a@nevitus.org>
parents: 34622
diff changeset
238 chat = purple_conversations_find_chat(conn, id);
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
239
34657
b10d6297ffd5 Refactored finch to use the GObject conversation API
Ankit Vani <a@nevitus.org>
parents: 34622
diff changeset
240 play_conv_event(PURPLE_CONVERSATION(chat), event);
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
241 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
242
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
243 static void
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
244 chat_msg_received_cb(PurpleAccount *account, char *sender,
34657
b10d6297ffd5 Refactored finch to use the GObject conversation API
Ankit Vani <a@nevitus.org>
parents: 34622
diff changeset
245 char *message, PurpleChatConversation *chat,
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
246 PurpleMessageFlags flags, PurpleSoundEventID event)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
247 {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
248 if (flags & PURPLE_MESSAGE_DELAYED)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
249 return;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
250
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
251 g_return_if_fail(chat != NULL);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
252
34657
b10d6297ffd5 Refactored finch to use the GObject conversation API
Ankit Vani <a@nevitus.org>
parents: 34622
diff changeset
253 if (purple_chat_conversation_is_ignored_user(chat, sender))
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
254 return;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
255
34657
b10d6297ffd5 Refactored finch to use the GObject conversation API
Ankit Vani <a@nevitus.org>
parents: 34622
diff changeset
256 if (chat_nick_matches_name(chat, sender))
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
257 return;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
258
34622
753f46dd000f Global replace - renamed functions and types according to GObject-based PurpleConversation API
Ankit Vani <a@nevitus.org>
parents: 33509
diff changeset
259 if (flags & PURPLE_MESSAGE_NICK || purple_utf8_has_word(message, purple_chat_conversation_get_nick(chat)))
34657
b10d6297ffd5 Refactored finch to use the GObject conversation API
Ankit Vani <a@nevitus.org>
parents: 34622
diff changeset
260 play_conv_event(PURPLE_CONVERSATION(chat), PURPLE_SOUND_CHAT_NICK);
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
261 else
34657
b10d6297ffd5 Refactored finch to use the GObject conversation API
Ankit Vani <a@nevitus.org>
parents: 34622
diff changeset
262 play_conv_event(PURPLE_CONVERSATION(chat), event);
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
263 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
264
30502
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
265 static void
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
266 got_attention_cb(PurpleAccount *account, const char *who,
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
267 PurpleConversation *conv, guint type, PurpleSoundEventID event)
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
268 {
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
269 play_conv_event(conv, event);
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
270 }
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
271
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
272
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
273 /*
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
274 * We mute sounds for the 10 seconds after you log in so that
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
275 * you don't get flooded with sounds when the blist shows all
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
276 * your buddies logging in.
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
277 */
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
278 static void
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
279 account_signon_cb(PurpleConnection *gc, gpointer data)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
280 {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
281 if (mute_login_sounds_timeout != 0)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
282 g_source_remove(mute_login_sounds_timeout);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
283 mute_login_sounds = TRUE;
38433
361c801c4536 Remove purple_timeout_* function usage
Mike Ruprecht <cmaiku@gmail.com>
parents: 38358
diff changeset
284 mute_login_sounds_timeout = g_timeout_add_seconds(10, unmute_login_sounds_cb, NULL);
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
285 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
286
19315
0bc6119bbf7b Fix a memory leak.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18717
diff changeset
287 static void *
22104
56970903b8e9 Probe for -Wstrict-prototypes to get some more warnings. I then cleaned up
Richard Laager <rlaager@pidgin.im>
parents: 20147
diff changeset
288 finch_sound_get_handle(void)
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
289 {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
290 static int handle;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
291
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
292 return &handle;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
293 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
294
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
295
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
296 /* This gets called when the active profile changes */
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
297 static void
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
298 initialize_profile(const char *name, PurplePrefType type, gconstpointer val, gpointer null)
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
299 {
30502
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
300 FinchSoundEvent *event;
18700
1cc3e27756ef Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18699
diff changeset
301 if (purple_prefs_exists(make_pref("")))
18691
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
302 return;
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
303
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
304 purple_prefs_add_none(make_pref(""));
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
305 purple_prefs_add_none(make_pref("/enabled"));
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
306 purple_prefs_add_none(make_pref("/file"));
30502
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
307
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
308 for (event = sounds; event - sounds < PURPLE_NUM_SOUNDS; event++) {
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
309 char pref[512];
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
310 g_snprintf(pref, sizeof(pref), "/enabled/%s", event->pref);
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
311 purple_prefs_add_bool(make_pref(pref), FALSE);
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
312 g_snprintf(pref, sizeof(pref), "/file/%s", event->pref);
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
313 purple_prefs_add_path(make_pref(pref), "");
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
314 }
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
315
19410
85956504e631 Don't enable the sounds by default.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19403
diff changeset
316 purple_prefs_add_bool(make_pref("/conv_focus"), FALSE);
18691
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
317 purple_prefs_add_bool(make_pref("/mute"), FALSE);
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
318 purple_prefs_add_path(make_pref("/command"), "");
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
319 purple_prefs_add_string(make_pref("/method"), "automatic");
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
320 }
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
321
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
322 static void
30502
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
323 update_profiles(void)
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
324 {
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
325 GList *list = finch_sound_get_profiles();
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
326 for (; list; list = g_list_delete_link(list, list)) {
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
327 char pname[512];
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
328
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
329 /* got_attention was added in libpurple 2.7.0 */
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
330 g_snprintf(pname, sizeof(pname), FINCH_PREFS_ROOT "/sound/profiles/%s%s",
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
331 (char *)list->data, "/enabled/got_attention");
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
332 purple_prefs_add_bool(pname, FALSE);
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
333 g_snprintf(pname, sizeof(pname), FINCH_PREFS_ROOT "/sound/profiles/%s%s",
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
334 (char *)list->data, "/file/got_attention");
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
335 purple_prefs_add_path(pname, "");
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
336
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
337 g_free(list->data);
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
338 }
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
339 }
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
340
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
341 static void
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
342 finch_sound_init(void)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
343 {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
344 void *gnt_sound_handle = finch_sound_get_handle();
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
345 void *blist_handle = purple_blist_get_handle();
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
346 void *conv_handle = purple_conversations_get_handle();
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
347 #ifdef USE_GSTREAMER
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
348 GError *error = NULL;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
349 #endif
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
350
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
351 purple_signal_connect(purple_connections_get_handle(), "signed-on",
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
352 gnt_sound_handle, PURPLE_CALLBACK(account_signon_cb),
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
353 NULL);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
354
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
355 purple_prefs_add_none(FINCH_PREFS_ROOT "/sound");
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
356 purple_prefs_add_string(FINCH_PREFS_ROOT "/sound/actprofile", DEFAULT_PROFILE);
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
357 purple_prefs_add_none(FINCH_PREFS_ROOT "/sound/profiles");
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
358
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
359 purple_prefs_connect_callback(gnt_sound_handle, FINCH_PREFS_ROOT "/sound/actprofile", initialize_profile, NULL);
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
360 purple_prefs_trigger_callback(FINCH_PREFS_ROOT "/sound/actprofile");
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
361
30502
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
362
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
363 #ifdef USE_GSTREAMER
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
364 purple_debug_info("sound", "Initializing sound output drivers.\n");
22568
1385c5f4a0b7 finch port of e4b22781 ('Tell gstreamer not to fork').
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22340
diff changeset
365 #if (GST_VERSION_MAJOR > 0 || \
1385c5f4a0b7 finch port of e4b22781 ('Tell gstreamer not to fork').
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22340
diff changeset
366 (GST_VERSION_MAJOR == 0 && GST_VERSION_MINOR > 10) || \
1385c5f4a0b7 finch port of e4b22781 ('Tell gstreamer not to fork').
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22340
diff changeset
367 (GST_VERSION_MAJOR == 0 && GST_VERSION_MINOR == 10 && GST_VERSION_MICRO >= 10))
1385c5f4a0b7 finch port of e4b22781 ('Tell gstreamer not to fork').
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22340
diff changeset
368 gst_registry_fork_set_enabled(FALSE);
1385c5f4a0b7 finch port of e4b22781 ('Tell gstreamer not to fork').
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22340
diff changeset
369 #endif
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
370 if ((gst_init_failed = !gst_init_check(NULL, NULL, &error))) {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
371 purple_notify_error(NULL, _("GStreamer Failure"),
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
372 _("GStreamer failed to initialize."),
34449
bbcb198650b7 Notify API: extend purple_notify_message with PurpleRequestCommonParameters
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 33509
diff changeset
373 error ? error->message : "", NULL);
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
374 if (error) {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
375 g_error_free(error);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
376 error = NULL;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
377 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
378 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
379 #endif /* USE_GSTREAMER */
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
380
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
381 purple_signal_connect(blist_handle, "buddy-signed-on",
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
382 gnt_sound_handle, PURPLE_CALLBACK(buddy_state_cb),
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
383 GINT_TO_POINTER(PURPLE_SOUND_BUDDY_ARRIVE));
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
384 purple_signal_connect(blist_handle, "buddy-signed-off",
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
385 gnt_sound_handle, PURPLE_CALLBACK(buddy_state_cb),
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
386 GINT_TO_POINTER(PURPLE_SOUND_BUDDY_LEAVE));
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
387 purple_signal_connect(conv_handle, "received-im-msg",
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
388 gnt_sound_handle, PURPLE_CALLBACK(im_msg_received_cb),
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
389 GINT_TO_POINTER(PURPLE_SOUND_RECEIVE));
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
390 purple_signal_connect(conv_handle, "sent-im-msg",
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
391 gnt_sound_handle, PURPLE_CALLBACK(im_msg_sent_cb),
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
392 GINT_TO_POINTER(PURPLE_SOUND_SEND));
34670
9bd5bd903dc7 Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents: 34657
diff changeset
393 purple_signal_connect(conv_handle, "chat-user-joined",
9bd5bd903dc7 Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents: 34657
diff changeset
394 gnt_sound_handle, PURPLE_CALLBACK(chat_user_join_cb),
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
395 GINT_TO_POINTER(PURPLE_SOUND_CHAT_JOIN));
34670
9bd5bd903dc7 Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents: 34657
diff changeset
396 purple_signal_connect(conv_handle, "chat-user-left",
9bd5bd903dc7 Renamed chat buddies to chat users, and IM conversation typing state to IM typing state.
Ankit Vani <a@nevitus.org>
parents: 34657
diff changeset
397 gnt_sound_handle, PURPLE_CALLBACK(chat_user_left_cb),
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
398 GINT_TO_POINTER(PURPLE_SOUND_CHAT_LEAVE));
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
399 purple_signal_connect(conv_handle, "sent-chat-msg",
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
400 gnt_sound_handle, PURPLE_CALLBACK(chat_msg_sent_cb),
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
401 GINT_TO_POINTER(PURPLE_SOUND_CHAT_YOU_SAY));
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
402 purple_signal_connect(conv_handle, "received-chat-msg",
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
403 gnt_sound_handle, PURPLE_CALLBACK(chat_msg_received_cb),
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
404 GINT_TO_POINTER(PURPLE_SOUND_CHAT_SAY));
30502
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
405 purple_signal_connect(conv_handle, "got-attention",
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
406 gnt_sound_handle, PURPLE_CALLBACK(got_attention_cb),
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
407 GINT_TO_POINTER(PURPLE_SOUND_GOT_ATTENTION));
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
408
1f2c325ec6d5 Add sound-support for got-attention event.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 30501
diff changeset
409 update_profiles();
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
410 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
411
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
412 static void
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
413 finch_sound_uninit(void)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
414 {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
415 #ifdef USE_GSTREAMER
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
416 if (!gst_init_failed)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
417 gst_deinit();
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
418 #endif
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
419
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
420 purple_signals_disconnect_by_handle(finch_sound_get_handle());
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
421 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
422
35877
6c3ab2fd4412 cross-win32: fix finch build
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 35850
diff changeset
423 #if defined(USE_GSTREAMER) && !defined(_WIN32)
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
424 static gboolean
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
425 bus_call (GstBus *bus, GstMessage *msg, gpointer data)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
426 {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
427 GstElement *play = data;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
428 GError *err = NULL;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
429
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
430 switch (GST_MESSAGE_TYPE (msg)) {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
431 case GST_MESSAGE_ERROR:
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
432 gst_message_parse_error(msg, &err, NULL);
19323
576433b2c438 Print debug messages appropriately.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19322
diff changeset
433 purple_debug_error("gstreamer", "%s\n", err->message);
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
434 g_error_free(err);
19564
6f04c6ab2897 Cleanup playbin on error. Thanks, Elliott Sales de Andrade. Fixes #2663
Sean Egan <seanegan@pidgin.im>
parents: 19410
diff changeset
435 /* fall-through and clean up */
6f04c6ab2897 Cleanup playbin on error. Thanks, Elliott Sales de Andrade. Fixes #2663
Sean Egan <seanegan@pidgin.im>
parents: 19410
diff changeset
436 case GST_MESSAGE_EOS:
6f04c6ab2897 Cleanup playbin on error. Thanks, Elliott Sales de Andrade. Fixes #2663
Sean Egan <seanegan@pidgin.im>
parents: 19410
diff changeset
437 gst_element_set_state(play, GST_STATE_NULL);
6f04c6ab2897 Cleanup playbin on error. Thanks, Elliott Sales de Andrade. Fixes #2663
Sean Egan <seanegan@pidgin.im>
parents: 19410
diff changeset
438 gst_object_unref(GST_OBJECT(play));
37243
902b1fd334bd Remove Gstreamer pipeline after playing a sound
Jorge Villaseñor <salinasv@pidgin.im>
parents: 31294
diff changeset
439 return FALSE;
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
440 break;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
441 case GST_MESSAGE_WARNING:
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
442 gst_message_parse_warning(msg, &err, NULL);
19323
576433b2c438 Print debug messages appropriately.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19322
diff changeset
443 purple_debug_warning("gstreamer", "%s\n", err->message);
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
444 g_error_free(err);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
445 break;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
446 default:
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
447 break;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
448 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
449 return TRUE;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
450 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
451 #endif
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
452
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
453 static void
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
454 finch_sound_play_file(const char *filename)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
455 {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
456 const char *method;
35877
6c3ab2fd4412 cross-win32: fix finch build
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 35850
diff changeset
457 #if defined(USE_GSTREAMER) && !defined(_WIN32)
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
458 char *uri;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
459 GstElement *sink = NULL;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
460 GstElement *play = NULL;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
461 GstBus *bus = NULL;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
462 #endif
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
463 if (purple_prefs_get_bool(make_pref("/mute")))
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
464 return;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
465
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
466 method = purple_prefs_get_string(make_pref("/method"));
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
467
38258
9a6551eba09c Replace !strcmp() with purple_strequal()
qarkai <qarkai@gmail.com>
parents: 37859
diff changeset
468 if (purple_strequal(method, "nosound")) {
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
469 return;
38258
9a6551eba09c Replace !strcmp() with purple_strequal()
qarkai <qarkai@gmail.com>
parents: 37859
diff changeset
470 } else if (purple_strequal(method, "beep")) {
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
471 beep();
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
472 return;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
473 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
474
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
475 if (!g_file_test(filename, G_FILE_TEST_EXISTS)) {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
476 purple_debug_error("gntsound", "sound file (%s) does not exist.\n", filename);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
477 return;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
478 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
479
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
480 #ifndef _WIN32
38258
9a6551eba09c Replace !strcmp() with purple_strequal()
qarkai <qarkai@gmail.com>
parents: 37859
diff changeset
481 if (purple_strequal(method, "custom")) {
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
482 const char *sound_cmd;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
483 char *command;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
484 char *esc_filename;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
485 GError *error = NULL;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
486
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
487 sound_cmd = purple_prefs_get_path(make_pref("/command"));
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
488
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
489 if (!sound_cmd || *sound_cmd == '\0') {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
490 purple_debug_error("gntsound",
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
491 "'Command' sound method has been chosen, "
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
492 "but no command has been set.");
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
493 return;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
494 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
495
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
496 esc_filename = g_shell_quote(filename);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
497
18700
1cc3e27756ef Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18699
diff changeset
498 if (strstr(sound_cmd, "%s"))
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
499 command = purple_strreplace(sound_cmd, "%s", esc_filename);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
500 else
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
501 command = g_strdup_printf("%s %s", sound_cmd, esc_filename);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
502
18700
1cc3e27756ef Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18699
diff changeset
503 if (!g_spawn_command_line_async(command, &error)) {
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
504 purple_debug_error("gntsound", "sound command could not be launched: %s\n", error->message);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
505 g_error_free(error);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
506 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
507
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
508 g_free(esc_filename);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
509 g_free(command);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
510 return;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
511 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
512 #ifdef USE_GSTREAMER
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
513 if (gst_init_failed) /* Perhaps do beep instead? */
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
514 return;
38258
9a6551eba09c Replace !strcmp() with purple_strequal()
qarkai <qarkai@gmail.com>
parents: 37859
diff changeset
515 if (purple_strequal(method, "automatic")) {
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
516 if (purple_running_gnome()) {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
517 sink = gst_element_factory_make("gconfaudiosink", "sink");
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
518 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
519 if (!sink)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
520 sink = gst_element_factory_make("autoaudiosink", "sink");
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
521 if (!sink) {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
522 purple_debug_error("sound", "Unable to create GStreamer audiosink.\n");
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
523 return;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
524 }
38258
9a6551eba09c Replace !strcmp() with purple_strequal()
qarkai <qarkai@gmail.com>
parents: 37859
diff changeset
525 } else if (purple_strequal(method, "esd")) {
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
526 sink = gst_element_factory_make("esdsink", "sink");
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
527 if (!sink) {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
528 purple_debug_error("sound", "Unable to create GStreamer audiosink.\n");
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
529 return;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
530 }
38258
9a6551eba09c Replace !strcmp() with purple_strequal()
qarkai <qarkai@gmail.com>
parents: 37859
diff changeset
531 } else if (purple_strequal(method, "alsa")) {
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
532 sink = gst_element_factory_make("alsasink", "sink");
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
533 if (!sink) {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
534 purple_debug_error("sound", "Unable to create GStreamer audiosink.\n");
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
535 return;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
536 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
537 } else {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
538 purple_debug_error("sound", "Unknown sound method '%s'\n", method);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
539 return;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
540 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
541
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
542 play = gst_element_factory_make("playbin", "play");
31294
73607ab89c6f Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents: 30502
diff changeset
543
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
544 if (play == NULL) {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
545 return;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
546 }
31294
73607ab89c6f Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents: 30502
diff changeset
547
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
548 uri = g_strdup_printf("file://%s", filename);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
549
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
550 g_object_set(G_OBJECT(play), "uri", uri,
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
551 "audio-sink", sink, NULL);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
552
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
553 bus = gst_pipeline_get_bus(GST_PIPELINE(play));
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
554 gst_bus_add_watch(bus, bus_call, play);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
555
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
556 gst_element_set_state(play, GST_STATE_PLAYING);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
557
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
558 gst_object_unref(bus);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
559 g_free(uri);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
560
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
561 #else /* USE_GSTREAMER */
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
562 beep();
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
563 return;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
564 #endif /* USE_GSTREAMER */
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
565 #else /* _WIN32 */
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
566 purple_debug_info("sound", "Playing %s\n", filename);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
567
29509
334fa8c0c750 Remove some win9x specific code.
Daniel Atallah <datallah@pidgin.im>
parents: 27953
diff changeset
568 {
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
569 wchar_t *wc_filename = g_utf8_to_utf16(filename,
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
570 -1, NULL, NULL, NULL);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
571 if (!PlaySoundW(wc_filename, NULL, SND_ASYNC | SND_FILENAME))
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
572 purple_debug(PURPLE_DEBUG_ERROR, "sound", "Error playing sound.\n");
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
573 g_free(wc_filename);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
574 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
575 #endif /* _WIN32 */
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
576 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
577
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
578 static void
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
579 finch_sound_play_event(PurpleSoundEventID event)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
580 {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
581 char *enable_pref;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
582 char *file_pref;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
583 if ((event == PURPLE_SOUND_BUDDY_ARRIVE) && mute_login_sounds)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
584 return;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
585
30501
c484f0dfc19b Fix a crash in Finch < 2.7.0 with purple >= 2.7.0.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 29509
diff changeset
586 if (event >= PURPLE_NUM_SOUNDS ||
c484f0dfc19b Fix a crash in Finch < 2.7.0 with purple >= 2.7.0.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 29509
diff changeset
587 event >= G_N_ELEMENTS(sounds)) {
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
588 purple_debug_error("sound", "got request for unknown sound: %d\n", event);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
589 return;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
590 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
591
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
592 enable_pref = g_strdup_printf(FINCH_PREFS_ROOT "/sound/profiles/%s/enabled/%s",
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
593 finch_sound_get_active_profile(),
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
594 sounds[event].pref);
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
595 file_pref = g_strdup_printf(FINCH_PREFS_ROOT "/sound/profiles/%s/file/%s", finch_sound_get_active_profile(), sounds[event].pref);
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
596
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
597 /* check NULL for sounds that don't have an option, ie buddy pounce */
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
598 if (purple_prefs_get_bool(enable_pref)) {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
599 char *filename = g_strdup(purple_prefs_get_path(file_pref));
37523
02346b6472b3 Simplify checks for empty strings
Michael McConville <mmcconville@mykolab.com>
parents: 37519
diff changeset
600 if (!filename || *filename == '\0') {
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
601 g_free(filename);
35850
1abeda205d6c cross-win32: make dirs more flexible, add them to the config.h
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 35454
diff changeset
602 filename = g_build_filename(PURPLE_DATADIR,
1abeda205d6c cross-win32: make dirs more flexible, add them to the config.h
Tomasz Wasilczyk <twasilczyk@pidgin.im>
parents: 35454
diff changeset
603 "sounds", "purple", sounds[event].def, NULL);
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
604 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
605
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
606 purple_sound_play_file(filename, NULL);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
607 g_free(filename);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
608 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
609
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
610 g_free(enable_pref);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
611 g_free(file_pref);
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
612 }
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
613
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
614 GList *
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
615 finch_sound_get_profiles()
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
616 {
18693
399da3ec358f Update the way _get_children_names is used.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18691
diff changeset
617 GList *list = NULL, *iter;
399da3ec358f Update the way _get_children_names is used.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18691
diff changeset
618 iter = purple_prefs_get_children_names(FINCH_PREFS_ROOT "/sound/profiles");
399da3ec358f Update the way _get_children_names is used.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18691
diff changeset
619 while (iter) {
399da3ec358f Update the way _get_children_names is used.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18691
diff changeset
620 list = g_list_append(list, g_strdup(strrchr(iter->data, '/') + 1));
399da3ec358f Update the way _get_children_names is used.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18691
diff changeset
621 g_free(iter->data);
399da3ec358f Update the way _get_children_names is used.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18691
diff changeset
622 iter = g_list_delete_link(iter, iter);
399da3ec358f Update the way _get_children_names is used.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18691
diff changeset
623 }
399da3ec358f Update the way _get_children_names is used.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18691
diff changeset
624 return list;
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
625 }
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
626
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
627 /* This will also create it if it doesn't exist */
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
628 void
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
629 finch_sound_set_active_profile(const char *name)
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
630 {
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
631 purple_prefs_set_string(FINCH_PREFS_ROOT "/sound/actprofile", name);
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
632 }
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
633
19315
0bc6119bbf7b Fix a memory leak.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18717
diff changeset
634 static gboolean
18717
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
635 finch_sound_profile_exists(const char *name)
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
636 {
18697
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
637 gchar * tmp;
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
638 gboolean ret = purple_prefs_exists(tmp = g_strdup_printf(FINCH_PREFS_ROOT "/sound/profiles/%s", name));
18697
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
639 g_free(tmp);
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
640 return ret;
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
641 }
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
642
18438
972b13b06ba0 Cleaned up a few poorly written "activate" callbacks.
Eric Polino <aluink@pidgin.im>
parents: 18437
diff changeset
643 static void
972b13b06ba0 Cleaned up a few poorly written "activate" callbacks.
Eric Polino <aluink@pidgin.im>
parents: 18437
diff changeset
644 save_cb(GntWidget *button, gpointer win)
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
645 {
18616
ce2f681adadf merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents: 18440
diff changeset
646 GList * itr;
18439
5b6c9a328910 Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents: 18438
diff changeset
647
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
648 purple_prefs_set_string(make_pref("/method"), gnt_combo_box_get_selected_data(GNT_COMBO_BOX(pref_dialog->method)));
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
649 purple_prefs_set_path(make_pref("/command"), gnt_entry_get_text(GNT_ENTRY(pref_dialog->command)));
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
650 purple_prefs_set_bool(make_pref("/conv_focus"), gnt_check_box_get_checked(GNT_CHECK_BOX(pref_dialog->conv_focus)));
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
651 purple_prefs_set_int("/purple/sound/while_status", GPOINTER_TO_INT(gnt_combo_box_get_selected_data(GNT_COMBO_BOX(pref_dialog->while_status))));
18437
df5e551ea4a8 Sound prefs now save.
Eric Polino <aluink@pidgin.im>
parents: 18435
diff changeset
652
18700
1cc3e27756ef Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18699
diff changeset
653 for (itr = gnt_tree_get_rows(GNT_TREE(pref_dialog->events)); itr; itr = itr->next) {
18616
ce2f681adadf merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents: 18440
diff changeset
654 FinchSoundEvent * event = &sounds[GPOINTER_TO_INT(itr->data)];
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
655 char * filepref = g_strdup_printf(FINCH_PREFS_ROOT "/sound/profiles/%s/file/%s", finch_sound_get_active_profile(), event->pref);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
656 char * boolpref = g_strdup_printf(FINCH_PREFS_ROOT "/sound/profiles/%s/enabled/%s", finch_sound_get_active_profile(), event->pref);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
657 purple_prefs_set_bool(boolpref, gnt_tree_get_choice(GNT_TREE(pref_dialog->events), itr->data));
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
658 purple_prefs_set_path(filepref, event->file ? event->file : "");
18616
ce2f681adadf merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents: 18440
diff changeset
659 g_free(filepref);
18618
68f30db28e96 Fixed a few merge errors
Eric Polino <aluink@pidgin.im>
parents: 18617
diff changeset
660 g_free(boolpref);
18439
5b6c9a328910 Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents: 18438
diff changeset
661 }
18296
9461f264ee5f Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 18295
diff changeset
662 gnt_widget_destroy(GNT_WIDGET(win));
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
663 }
18678
2fc084ec99cd Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18620
diff changeset
664
18438
972b13b06ba0 Cleaned up a few poorly written "activate" callbacks.
Eric Polino <aluink@pidgin.im>
parents: 18437
diff changeset
665 static void
18678
2fc084ec99cd Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18620
diff changeset
666 file_cb(GntFileSel *w, const char *path, const char *file, gpointer data)
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
667 {
18678
2fc084ec99cd Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18620
diff changeset
668 FinchSoundEvent *event = data;
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
669
18616
ce2f681adadf merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents: 18440
diff changeset
670 g_free(event->file);
18678
2fc084ec99cd Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18620
diff changeset
671 event->file = g_strdup(path);
18620
8e8d99ffa1f6 Made the display of files for sound events cleaner
Eric Polino <aluink@pidgin.im>
parents: 18618
diff changeset
672
18678
2fc084ec99cd Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18620
diff changeset
673 gnt_tree_change_text(GNT_TREE(pref_dialog->events), GINT_TO_POINTER(event->id), 1, file);
19322
658540eb7eb1 Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19321
diff changeset
674 gnt_tree_set_choice(GNT_TREE(pref_dialog->events), GINT_TO_POINTER(event->id), TRUE);
31294
73607ab89c6f Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents: 30502
diff changeset
675
18678
2fc084ec99cd Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18620
diff changeset
676 gnt_widget_destroy(GNT_WIDGET(w));
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
677 }
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
678
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
679 static void
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
680 test_cb(GntWidget *button, gpointer null)
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
681 {
18616
ce2f681adadf merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents: 18440
diff changeset
682 PurpleSoundEventID id = GPOINTER_TO_INT(gnt_tree_get_selection_data(GNT_TREE(pref_dialog->events)));
ce2f681adadf merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents: 18440
diff changeset
683 FinchSoundEvent * event = &sounds[id];
37519
09ff1d312b2a Remove volume option from Finch and Pidgin preferences
Mike Ruprecht <cmaiku@gmail.com>
parents: 37421
diff changeset
684 char *enabled, *file, *tmpfile;
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
685 gboolean temp_value;
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
686
19322
658540eb7eb1 Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19321
diff changeset
687 enabled = g_strdup_printf(FINCH_PREFS_ROOT "/sound/profiles/%s/enabled/%s",
658540eb7eb1 Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19321
diff changeset
688 finch_sound_get_active_profile(), event->pref);
658540eb7eb1 Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19321
diff changeset
689 file = g_strdup_printf(FINCH_PREFS_ROOT "/sound/profiles/%s/file/%s",
658540eb7eb1 Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19321
diff changeset
690 finch_sound_get_active_profile(), event->pref);
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
691
19322
658540eb7eb1 Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19321
diff changeset
692 temp_value = purple_prefs_get_bool(enabled);
19933
258c1ca27063 Fix a small bug in sound-test, thanks to igungor in #pidgin.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19859
diff changeset
693 tmpfile = g_strdup(purple_prefs_get_path(file));
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
694
19933
258c1ca27063 Fix a small bug in sound-test, thanks to igungor in #pidgin.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19859
diff changeset
695 purple_prefs_set_path(file, event->file);
19322
658540eb7eb1 Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19321
diff changeset
696 if (!temp_value) purple_prefs_set_bool(enabled, TRUE);
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
697
18616
ce2f681adadf merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents: 18440
diff changeset
698 purple_sound_play_event(id, NULL);
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
699
19322
658540eb7eb1 Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19321
diff changeset
700 if (!temp_value) purple_prefs_set_bool(enabled, FALSE);
19933
258c1ca27063 Fix a small bug in sound-test, thanks to igungor in #pidgin.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19859
diff changeset
701 purple_prefs_set_path(file, tmpfile);
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
702
19322
658540eb7eb1 Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19321
diff changeset
703 g_free(enabled);
658540eb7eb1 Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19321
diff changeset
704 g_free(file);
658540eb7eb1 Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19321
diff changeset
705 g_free(tmpfile);
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
706 }
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
707
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
708 static void
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
709 reset_cb(GntWidget *button, gpointer null)
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
710 {
18616
ce2f681adadf merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents: 18440
diff changeset
711 /* Don't dereference this pointer ! */
31294
73607ab89c6f Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents: 30502
diff changeset
712 gpointer key = gnt_tree_get_selection_data(GNT_TREE(pref_dialog->events));
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
713
18616
ce2f681adadf merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents: 18440
diff changeset
714 FinchSoundEvent * event = &sounds[GPOINTER_TO_INT(key)];
ce2f681adadf merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents: 18440
diff changeset
715 g_free(event->file);
ce2f681adadf merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents: 18440
diff changeset
716 event->file = NULL;
19321
28c9dd86c4dc Mark a string for translation.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19320
diff changeset
717 gnt_tree_change_text(GNT_TREE(pref_dialog->events), key, 1, _("(default)"));
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
718 }
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
719
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
720
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
721 static void
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
722 choose_cb(GntWidget *button, gpointer null)
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
723 {
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
724 GntWidget *w = gnt_file_sel_new();
18678
2fc084ec99cd Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18620
diff changeset
725 GntFileSel *sel = GNT_FILE_SEL(w);
2fc084ec99cd Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18620
diff changeset
726 PurpleSoundEventID id = GPOINTER_TO_INT(gnt_tree_get_selection_data(GNT_TREE(pref_dialog->events)));
2fc084ec99cd Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18620
diff changeset
727 FinchSoundEvent * event = &sounds[id];
18680
1e8e7b2d644e Fix a potential crash if the file-selector window is closed after the pref-window.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18679
diff changeset
728 char *path = NULL;
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
729
37859
1448543681b6 Remove a space before an ellipse
Richard Laager <rlaager@pidgin.im>
parents: 37243
diff changeset
730 gnt_box_set_title(GNT_BOX(w), _("Select Sound File..."));
18678
2fc084ec99cd Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18620
diff changeset
731 gnt_file_sel_set_current_location(sel,
18680
1e8e7b2d644e Fix a potential crash if the file-selector window is closed after the pref-window.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18679
diff changeset
732 (event && event->file) ? (path = g_path_get_dirname(event->file))
1e8e7b2d644e Fix a potential crash if the file-selector window is closed after the pref-window.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18679
diff changeset
733 : purple_home_dir());
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
734
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
735 g_signal_connect_swapped(G_OBJECT(sel->cancel), "activate", G_CALLBACK(gnt_widget_destroy), sel);
18678
2fc084ec99cd Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18620
diff changeset
736 g_signal_connect(G_OBJECT(sel), "file_selected", G_CALLBACK(file_cb), event);
18680
1e8e7b2d644e Fix a potential crash if the file-selector window is closed after the pref-window.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18679
diff changeset
737 g_signal_connect_swapped(G_OBJECT(sel), "destroy", G_CALLBACK(g_nullify_pointer), &pref_dialog->selector);
1e8e7b2d644e Fix a potential crash if the file-selector window is closed after the pref-window.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18679
diff changeset
738
1e8e7b2d644e Fix a potential crash if the file-selector window is closed after the pref-window.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18679
diff changeset
739 /* If there's an already open file-selector, close that one. */
1e8e7b2d644e Fix a potential crash if the file-selector window is closed after the pref-window.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18679
diff changeset
740 if (pref_dialog->selector)
1e8e7b2d644e Fix a potential crash if the file-selector window is closed after the pref-window.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18679
diff changeset
741 gnt_widget_destroy(pref_dialog->selector);
1e8e7b2d644e Fix a potential crash if the file-selector window is closed after the pref-window.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18679
diff changeset
742
1e8e7b2d644e Fix a potential crash if the file-selector window is closed after the pref-window.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18679
diff changeset
743 pref_dialog->selector = w;
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
744
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
745 gnt_widget_show(w);
18680
1e8e7b2d644e Fix a potential crash if the file-selector window is closed after the pref-window.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18679
diff changeset
746 g_free(path);
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
747 }
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
748
18435
d2cfad03e891 Removed sound_pref_data
Eric Polino <aluink@pidgin.im>
parents: 18434
diff changeset
749 static void
d2cfad03e891 Removed sound_pref_data
Eric Polino <aluink@pidgin.im>
parents: 18434
diff changeset
750 release_pref_dialog(GntBindable *data, gpointer null)
18432
8fd3963b9ce0 Changed the volume changer to a GntSlider.
Eric Polino <aluink@pidgin.im>
parents: 18296
diff changeset
751 {
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
752 GList * itr;
18700
1cc3e27756ef Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18699
diff changeset
753 for (itr = gnt_tree_get_rows(GNT_TREE(pref_dialog->events)); itr; itr = itr->next) {
18616
ce2f681adadf merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents: 18440
diff changeset
754 PurpleSoundEventID id = GPOINTER_TO_INT(itr->data);
ce2f681adadf merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents: 18440
diff changeset
755 FinchSoundEvent * e = &sounds[id];
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
756 g_free(e->file);
19322
658540eb7eb1 Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19321
diff changeset
757 e->file = NULL;
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
758 }
18680
1e8e7b2d644e Fix a potential crash if the file-selector window is closed after the pref-window.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18679
diff changeset
759 if (pref_dialog->selector)
1e8e7b2d644e Fix a potential crash if the file-selector window is closed after the pref-window.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18679
diff changeset
760 gnt_widget_destroy(pref_dialog->selector);
19403
e391da646b62 leak fix, and fix nosound
Richard Nelson <wabz@pidgin.im>
parents: 19323
diff changeset
761 g_free(pref_dialog->original_profile);
18435
d2cfad03e891 Removed sound_pref_data
Eric Polino <aluink@pidgin.im>
parents: 18434
diff changeset
762 g_free(pref_dialog);
d2cfad03e891 Removed sound_pref_data
Eric Polino <aluink@pidgin.im>
parents: 18434
diff changeset
763 pref_dialog = NULL;
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
764 }
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
765
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
766 static void
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
767 load_pref_window(const char * profile)
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
768 {
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
769 gint i;
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
770
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
771 finch_sound_set_active_profile(profile);
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
772
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
773 gnt_combo_box_set_selected(GNT_COMBO_BOX(pref_dialog->method), (gchar *)purple_prefs_get_string(make_pref("/method")));
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
774
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
775 gnt_entry_set_text(GNT_ENTRY(pref_dialog->command), purple_prefs_get_path(make_pref("/command")));
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
776
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
777 gnt_check_box_set_checked(GNT_CHECK_BOX(pref_dialog->conv_focus), purple_prefs_get_bool(make_pref("/conv_focus")));
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
778
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
779 gnt_combo_box_set_selected(GNT_COMBO_BOX(pref_dialog->while_status), GINT_TO_POINTER(purple_prefs_get_int("/purple" "/sound/while_status")));
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
780
18700
1cc3e27756ef Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18699
diff changeset
781 for (i = 0; i < PURPLE_NUM_SOUNDS; i++) {
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
782 FinchSoundEvent * event = &sounds[i];
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
783 gchar *boolpref;
19322
658540eb7eb1 Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19321
diff changeset
784 gchar *filepref, *basename = NULL;
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
785 const char * profile = finch_sound_get_active_profile();
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
786
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
787 filepref = g_strdup_printf(FINCH_PREFS_ROOT "/sound/profiles/%s/file/%s", profile, event->pref);
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
788
19322
658540eb7eb1 Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19321
diff changeset
789 g_free(event->file);
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
790 event->file = g_strdup(purple_prefs_get_path(filepref));
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
791
18691
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
792 g_free(filepref);
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
793 if (event->label == NULL) {
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
794 continue;
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
795 }
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
796
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
797 boolpref = g_strdup_printf(FINCH_PREFS_ROOT "/sound/profiles/%s/enabled/%s", profile, event->pref);
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
798
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
799 gnt_tree_change_text(GNT_TREE(pref_dialog->events), GINT_TO_POINTER(i), 0, event->label);
19322
658540eb7eb1 Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19321
diff changeset
800 gnt_tree_change_text(GNT_TREE(pref_dialog->events), GINT_TO_POINTER(i), 1,
658540eb7eb1 Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19321
diff changeset
801 event->file[0] ? (basename = g_path_get_basename(event->file)) : _("(default)"));
658540eb7eb1 Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19321
diff changeset
802 g_free(basename);
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
803
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
804 gnt_tree_set_choice(GNT_TREE(pref_dialog->events), GINT_TO_POINTER(i), purple_prefs_get_bool(boolpref));
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
805
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
806 g_free(boolpref);
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
807 }
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
808
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
809 gnt_tree_set_selected(GNT_TREE(pref_dialog->profiles), (gchar *)finch_sound_get_active_profile());
18697
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
810
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
811 gnt_widget_draw(pref_dialog->window);
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
812 }
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
813
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
814 static void
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
815 reload_pref_window(const char *profile)
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
816 {
38258
9a6551eba09c Replace !strcmp() with purple_strequal()
qarkai <qarkai@gmail.com>
parents: 37859
diff changeset
817 if (purple_strequal(profile, finch_sound_get_active_profile()))
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
818 return;
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
819 load_pref_window(profile);
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
820 }
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
821
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
822 static void
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
823 prof_del_cb(GntWidget *button, gpointer null)
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
824 {
18704
26282ae9a28e Deleting profile is now from the entry.
Eric Polino <aluink@pidgin.im>
parents: 18703
diff changeset
825 const char * profile = gnt_entry_get_text(GNT_ENTRY(pref_dialog->new_profile));
18697
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
826 gchar * pref;
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
827
38258
9a6551eba09c Replace !strcmp() with purple_strequal()
qarkai <qarkai@gmail.com>
parents: 37859
diff changeset
828 if (purple_strequal(profile, DEFAULT_PROFILE))
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
829 return;
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
830
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
831 pref = g_strdup_printf(FINCH_PREFS_ROOT "/sound/profiles/%s", profile);
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
832 purple_prefs_remove(pref);
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
833 g_free(pref);
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
834
38258
9a6551eba09c Replace !strcmp() with purple_strequal()
qarkai <qarkai@gmail.com>
parents: 37859
diff changeset
835 if (purple_strequal(pref_dialog->original_profile, profile)) {
18697
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
836 g_free(pref_dialog->original_profile);
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
837 pref_dialog->original_profile = g_strdup(DEFAULT_PROFILE);
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
838 }
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
839
38258
9a6551eba09c Replace !strcmp() with purple_strequal()
qarkai <qarkai@gmail.com>
parents: 37859
diff changeset
840 if(purple_strequal(profile, finch_sound_get_active_profile()))
18703
a76d25227728 Reset to the default profile when the active profile is deleted.
Eric Polino <aluink@pidgin.im>
parents: 18702
diff changeset
841 reload_pref_window(DEFAULT_PROFILE);
a76d25227728 Reset to the default profile when the active profile is deleted.
Eric Polino <aluink@pidgin.im>
parents: 18702
diff changeset
842
18717
4c0284a98465 Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18704
diff changeset
843 gnt_tree_remove(GNT_TREE(pref_dialog->profiles), (gchar *) profile);
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
844 }
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
845
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
846 static void
18697
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
847 prof_add_cb(GntButton *button, GntEntry * entry)
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
848 {
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
849 const char * profile = gnt_entry_get_text(entry);
18697
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
850 GntTreeRow * row;
18700
1cc3e27756ef Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18699
diff changeset
851 if (!finch_sound_profile_exists(profile)) {
18697
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
852 gpointer key = g_strdup(profile);
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
853 row = gnt_tree_create_row(GNT_TREE(pref_dialog->profiles), profile);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
854 gnt_tree_add_row_after(GNT_TREE(pref_dialog->profiles), key,
18700
1cc3e27756ef Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18699
diff changeset
855 row,
1cc3e27756ef Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18699
diff changeset
856 NULL, NULL);
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
857 gnt_entry_set_text(entry, "");
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
858 gnt_tree_set_selected(GNT_TREE(pref_dialog->profiles), key);
18700
1cc3e27756ef Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18699
diff changeset
859 finch_sound_set_active_profile(key);
31294
73607ab89c6f Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents: 30502
diff changeset
860 } else
18700
1cc3e27756ef Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18699
diff changeset
861 reload_pref_window(profile);
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
862 }
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
863
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
864 static void
18697
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
865 prof_load_cb(GntTree *tree, gpointer oldkey, gpointer newkey, gpointer null)
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
866 {
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
867 reload_pref_window(newkey);
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
868 }
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
869
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
870 static void
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
871 cancel_cb(GntButton *button, gpointer win)
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
872 {
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
873 finch_sound_set_active_profile(pref_dialog->original_profile);
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
874 gnt_widget_destroy(GNT_WIDGET(win));
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
875 }
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
876
18294
8186bc6ffbb4 Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 18292
diff changeset
877 void
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
878 finch_sounds_show_all(void)
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
879 {
37519
09ff1d312b2a Remove volume option from Finch and Pidgin preferences
Mike Ruprecht <cmaiku@gmail.com>
parents: 37421
diff changeset
880 GntWidget *box, *tmpbox, *splitbox, *cmbox;
18294
8186bc6ffbb4 Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 18292
diff changeset
881 GntWidget *entry;
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
882 GntWidget *chkbox;
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
883 GntWidget *button;
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
884 GntWidget *label;
18439
5b6c9a328910 Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents: 18438
diff changeset
885 GntWidget *tree;
18296
9461f264ee5f Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 18295
diff changeset
886 GntWidget *win;
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
887
18439
5b6c9a328910 Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents: 18438
diff changeset
888 gint i;
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
889 GList *itr, *list;
18434
48c2aa1fc3a9 Made sound_pref_data a pointer
Eric Polino <aluink@pidgin.im>
parents: 18433
diff changeset
890
18700
1cc3e27756ef Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18699
diff changeset
891 if (pref_dialog) {
18435
d2cfad03e891 Removed sound_pref_data
Eric Polino <aluink@pidgin.im>
parents: 18434
diff changeset
892 gnt_window_present(pref_dialog->window);
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
893 return;
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
894 }
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
895
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
896 pref_dialog = g_new0(SoundPrefDialog, 1);
18294
8186bc6ffbb4 Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 18292
diff changeset
897
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
898 pref_dialog->original_profile = g_strdup(finch_sound_get_active_profile());
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
899
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
900 pref_dialog->window = win = gnt_window_box_new(FALSE, TRUE);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
901 gnt_box_set_pad(GNT_BOX(win), 0);
18296
9461f264ee5f Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 18295
diff changeset
902 gnt_box_set_toplevel(GNT_BOX(win), TRUE);
18679
c81c8ce38789 Mark some strings for translation.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18678
diff changeset
903 gnt_box_set_title(GNT_BOX(win), _("Sound Preferences"));
c81c8ce38789 Mark some strings for translation.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18678
diff changeset
904 gnt_box_set_fill(GNT_BOX(win), TRUE);
18702
321d556be2f8 This makes things look nicer.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18701
diff changeset
905 gnt_box_set_alignment(GNT_BOX(win), GNT_ALIGN_MID);
18296
9461f264ee5f Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 18295
diff changeset
906
18696
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
907 /* Profiles */
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
908 splitbox = gnt_hbox_new(FALSE);
18699
d8bc90509020 Reduce some of the paddings.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18698
diff changeset
909 gnt_box_set_pad(GNT_BOX(splitbox), 0);
d8bc90509020 Reduce some of the paddings.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18698
diff changeset
910 gnt_box_set_alignment(GNT_BOX(splitbox), GNT_ALIGN_TOP);
18696
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
911
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
912 box = gnt_vbox_new(FALSE);
18699
d8bc90509020 Reduce some of the paddings.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18698
diff changeset
913 gnt_box_set_pad(GNT_BOX(box), 0);
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
914 gnt_box_add_widget(GNT_BOX(box), gnt_label_new_with_format(_("Profiles"), GNT_TEXT_FLAG_BOLD));
18696
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
915 pref_dialog->profiles = tree = gnt_tree_new();
18697
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
916 gnt_tree_set_hash_fns(GNT_TREE(tree), g_str_hash, g_str_equal, g_free);
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
917 gnt_tree_set_compare_func(GNT_TREE(tree), (GCompareFunc)g_ascii_strcasecmp);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
918 g_signal_connect(G_OBJECT(tree), "selection-changed", G_CALLBACK(prof_load_cb), NULL);
18697
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
919
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
920 itr = list = finch_sound_get_profiles();
18700
1cc3e27756ef Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18699
diff changeset
921 for (; itr; itr = itr->next) {
19320
b110e600815e Crash fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19317
diff changeset
922 /* Do not free itr->data. It's the stored as a key for the tree, and will
b110e600815e Crash fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19317
diff changeset
923 * be freed when the tree is destroyed. */
b110e600815e Crash fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19317
diff changeset
924 gnt_tree_add_row_after(GNT_TREE(tree), itr->data,
b110e600815e Crash fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19317
diff changeset
925 gnt_tree_create_row(GNT_TREE(tree), itr->data), NULL, NULL);
18697
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
926 }
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
927 g_list_free(list);
5821988c1c4c Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents: 18696
diff changeset
928
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
929 gnt_box_add_widget(GNT_BOX(box), tree);
18696
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
930
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
931 pref_dialog->new_profile = entry = gnt_entry_new("");
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
932 gnt_box_add_widget(GNT_BOX(box), entry);
18696
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
933
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
934 tmpbox = gnt_hbox_new(FALSE);
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
935 button = gnt_button_new("Add");
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
936 g_signal_connect(G_OBJECT(button), "activate", G_CALLBACK(prof_add_cb), entry);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
937 gnt_box_add_widget(GNT_BOX(tmpbox), button);
18696
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
938 button = gnt_button_new("Delete");
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
939 g_signal_connect(G_OBJECT(button), "activate", G_CALLBACK(prof_del_cb), NULL);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
940 gnt_box_add_widget(GNT_BOX(tmpbox), button);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
941 gnt_box_add_widget(GNT_BOX(box), tmpbox);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
942 gnt_box_add_widget(GNT_BOX(splitbox), box);
18696
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
943
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
944 gnt_box_add_widget(GNT_BOX(splitbox), gnt_vline_new());
18696
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
945
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
946 /* Sound method */
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
947
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
948 box = gnt_vbox_new(FALSE);
18699
d8bc90509020 Reduce some of the paddings.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18698
diff changeset
949 gnt_box_set_pad(GNT_BOX(box), 0);
18696
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
950
18435
d2cfad03e891 Removed sound_pref_data
Eric Polino <aluink@pidgin.im>
parents: 18434
diff changeset
951 pref_dialog->method = cmbox = gnt_combo_box_new();
18437
df5e551ea4a8 Sound prefs now save.
Eric Polino <aluink@pidgin.im>
parents: 18435
diff changeset
952 gnt_tree_set_hash_fns(GNT_TREE(GNT_COMBO_BOX(cmbox)->dropdown), g_str_hash, g_str_equal, NULL);
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
953 gnt_combo_box_add_data(GNT_COMBO_BOX(cmbox), "automatic", _("Automatic"));
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
954 gnt_combo_box_add_data(GNT_COMBO_BOX(cmbox), "alsa", "ALSA");
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
955 gnt_combo_box_add_data(GNT_COMBO_BOX(cmbox), "esd", "ESD");
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
956 gnt_combo_box_add_data(GNT_COMBO_BOX(cmbox), "beep", _("Console Beep"));
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
957 gnt_combo_box_add_data(GNT_COMBO_BOX(cmbox), "custom", _("Command"));
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
958 gnt_combo_box_add_data(GNT_COMBO_BOX(cmbox), "nosound", _("No Sound"));
18294
8186bc6ffbb4 Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 18292
diff changeset
959
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
960 label = gnt_label_new_with_format(_("Sound Method"), GNT_TEXT_FLAG_BOLD);
31294
73607ab89c6f Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents: 30502
diff changeset
961 gnt_box_add_widget(GNT_BOX(box), label);
18696
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
962 tmpbox = gnt_hbox_new(TRUE);
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
963 gnt_box_set_fill(GNT_BOX(tmpbox), FALSE);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
964 gnt_box_set_pad(GNT_BOX(tmpbox), 0);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
965 gnt_box_add_widget(GNT_BOX(tmpbox), gnt_label_new(_("Method: ")));
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
966 gnt_box_add_widget(GNT_BOX(tmpbox), cmbox);
31294
73607ab89c6f Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents: 30502
diff changeset
967 gnt_box_add_widget(GNT_BOX(box), tmpbox);
18294
8186bc6ffbb4 Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 18292
diff changeset
968
18696
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
969 tmpbox = gnt_hbox_new(TRUE);
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
970 gnt_box_set_pad(GNT_BOX(tmpbox), 0);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
971 gnt_box_set_fill(GNT_BOX(tmpbox), FALSE);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
972 gnt_box_add_widget(GNT_BOX(tmpbox), gnt_label_new(_("Sound Command\n(%s for filename)")));
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
973 pref_dialog->command = entry = gnt_entry_new("");
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
974 gnt_box_add_widget(GNT_BOX(tmpbox), entry);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
975 gnt_box_add_widget(GNT_BOX(box), tmpbox);
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
976
18696
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
977 gnt_box_add_widget(GNT_BOX(box), gnt_line_new(FALSE));
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
978
18691
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
979 /* Sound options */
31294
73607ab89c6f Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents: 30502
diff changeset
980 gnt_box_add_widget(GNT_BOX(box), gnt_label_new_with_format(_("Sound Options"), GNT_TEXT_FLAG_BOLD));
18437
df5e551ea4a8 Sound prefs now save.
Eric Polino <aluink@pidgin.im>
parents: 18435
diff changeset
981 pref_dialog->conv_focus = chkbox = gnt_check_box_new(_("Sounds when conversation has focus"));
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
982 gnt_box_add_widget(GNT_BOX(box), chkbox);
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
983
18696
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
984 tmpbox = gnt_hbox_new(TRUE);
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
985 gnt_box_set_pad(GNT_BOX(tmpbox), 0);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
986 gnt_box_set_fill(GNT_BOX(tmpbox), FALSE);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
987 gnt_box_add_widget(GNT_BOX(tmpbox), gnt_label_new("Enable Sounds:"));
18435
d2cfad03e891 Removed sound_pref_data
Eric Polino <aluink@pidgin.im>
parents: 18434
diff changeset
988 pref_dialog->while_status = cmbox = gnt_combo_box_new();
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
989 gnt_combo_box_add_data(GNT_COMBO_BOX(cmbox), GINT_TO_POINTER(3), _("Always"));
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
990 gnt_combo_box_add_data(GNT_COMBO_BOX(cmbox), GINT_TO_POINTER(1), _("Only when available"));
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
991 gnt_combo_box_add_data(GNT_COMBO_BOX(cmbox), GINT_TO_POINTER(2), _("Only when not available"));
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
992 gnt_box_add_widget(GNT_BOX(tmpbox), cmbox);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
993 gnt_box_add_widget(GNT_BOX(box), tmpbox);
18294
8186bc6ffbb4 Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 18292
diff changeset
994
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
995 gnt_box_add_widget(GNT_BOX(splitbox), box);
18696
6036397c0038 Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents: 18695
diff changeset
996
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
997 gnt_box_add_widget(GNT_BOX(win), splitbox);
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
998
18691
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
999 gnt_box_add_widget(GNT_BOX(win), gnt_hline_new());
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
1000
18691
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
1001 /* Sound events */
31294
73607ab89c6f Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents: 30502
diff changeset
1002 gnt_box_add_widget(GNT_BOX(win), gnt_label_new_with_format(_("Sound Events"), GNT_TEXT_FLAG_BOLD));
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
1003 pref_dialog->events = tree = gnt_tree_new_with_columns(2);
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
1004 gnt_tree_set_column_titles(GNT_TREE(tree), _("Event"), _("File"));
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
1005 gnt_tree_set_show_title(GNT_TREE(tree), TRUE);
18439
5b6c9a328910 Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents: 18438
diff changeset
1006
18700
1cc3e27756ef Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18699
diff changeset
1007 for (i = 0; i < PURPLE_NUM_SOUNDS; i++) {
18616
ce2f681adadf merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents: 18440
diff changeset
1008 FinchSoundEvent * event = &sounds[i];
23087
b2fc09cf23d1 This should make the column widths a bit better. Thanks to vekin in
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22942
diff changeset
1009
18700
1cc3e27756ef Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18699
diff changeset
1010 if (event->label == NULL) {
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
1011 continue;
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
1012 }
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
1013
18616
ce2f681adadf merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents: 18440
diff changeset
1014 gnt_tree_add_choice(GNT_TREE(tree), GINT_TO_POINTER(i),
23087
b2fc09cf23d1 This should make the column widths a bit better. Thanks to vekin in
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 22942
diff changeset
1015 gnt_tree_create_row(GNT_TREE(tree), event->label, event->def),
18439
5b6c9a328910 Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents: 18438
diff changeset
1016 NULL, NULL);
5b6c9a328910 Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents: 18438
diff changeset
1017 }
5b6c9a328910 Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents: 18438
diff changeset
1018
18440
9d1e67686dfb Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents: 18439
diff changeset
1019 gnt_tree_adjust_columns(GNT_TREE(tree));
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
1020 gnt_box_add_widget(GNT_BOX(win), tree);
18439
5b6c9a328910 Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents: 18438
diff changeset
1021
18678
2fc084ec99cd Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18620
diff changeset
1022 box = gnt_hbox_new(FALSE);
18679
c81c8ce38789 Mark some strings for translation.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18678
diff changeset
1023 button = gnt_button_new(_("Test"));
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
1024 g_signal_connect(G_OBJECT(button), "activate", G_CALLBACK(test_cb), NULL);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
1025 gnt_box_add_widget(GNT_BOX(box), button);
18679
c81c8ce38789 Mark some strings for translation.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18678
diff changeset
1026 button = gnt_button_new(_("Reset"));
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
1027 g_signal_connect(G_OBJECT(button), "activate", G_CALLBACK(reset_cb), NULL);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
1028 gnt_box_add_widget(GNT_BOX(box), button);
18679
c81c8ce38789 Mark some strings for translation.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18678
diff changeset
1029 button = gnt_button_new(_("Choose..."));
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
1030 g_signal_connect(G_OBJECT(button), "activate", G_CALLBACK(choose_cb), NULL);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
1031 gnt_box_add_widget(GNT_BOX(box), button);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
1032 gnt_box_add_widget(GNT_BOX(win), box);
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
1033
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
1034 gnt_box_add_widget(GNT_BOX(win), gnt_line_new(FALSE));
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
1035
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
1036 /* Add new stuff before this */
18678
2fc084ec99cd Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18620
diff changeset
1037 box = gnt_hbox_new(FALSE);
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
1038 gnt_box_set_fill(GNT_BOX(box), TRUE);
18679
c81c8ce38789 Mark some strings for translation.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18678
diff changeset
1039 button = gnt_button_new(_("Save"));
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
1040 g_signal_connect(G_OBJECT(button), "activate", G_CALLBACK(save_cb), win);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
1041 gnt_box_add_widget(GNT_BOX(box), button);
18679
c81c8ce38789 Mark some strings for translation.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18678
diff changeset
1042 button = gnt_button_new(_("Cancel"));
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
1043 g_signal_connect(G_OBJECT(button), "activate", G_CALLBACK(cancel_cb), win);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
1044 gnt_box_add_widget(GNT_BOX(box), button);
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
1045 gnt_box_add_widget(GNT_BOX(win), box);
18294
8186bc6ffbb4 Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 18292
diff changeset
1046
18698
c4a9247e5b5c In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents: 18697
diff changeset
1047 g_signal_connect(G_OBJECT(win), "destroy", G_CALLBACK(release_pref_dialog), NULL);
18295
bd26c37841f8 Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents: 18294
diff changeset
1048
18695
48f64b271ad6 Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents: 18694
diff changeset
1049 load_pref_window(finch_sound_get_active_profile());
18683
3bc4a997ad14 Added sound profiles
Eric Polino <aluink@pidgin.im>
parents: 18680
diff changeset
1050
18296
9461f264ee5f Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents: 18295
diff changeset
1051 gnt_widget_show(win);
19612
043dcbf3a36e Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19588
diff changeset
1052 }
043dcbf3a36e Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19588
diff changeset
1053
043dcbf3a36e Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19588
diff changeset
1054 gboolean finch_sound_is_enabled(void)
043dcbf3a36e Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19588
diff changeset
1055 {
043dcbf3a36e Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19588
diff changeset
1056 const char *pref = make_pref("/method");
043dcbf3a36e Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19588
diff changeset
1057 const char *method = purple_prefs_get_string(pref);
043dcbf3a36e Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19588
diff changeset
1058
043dcbf3a36e Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19588
diff changeset
1059 if (!method)
043dcbf3a36e Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19588
diff changeset
1060 return FALSE;
38259
c593fc9f5438 Replace strcmp() with purple_strequal()
qarkai <qarkai@gmail.com>
parents: 38258
diff changeset
1061 if (purple_strequal(method, "nosound"))
19612
043dcbf3a36e Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19588
diff changeset
1062 return FALSE;
043dcbf3a36e Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19588
diff changeset
1063
043dcbf3a36e Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19588
diff changeset
1064 return TRUE;
043dcbf3a36e Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 19588
diff changeset
1065 }
18294
8186bc6ffbb4 Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents: 18292
diff changeset
1066
18155
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
1067 static PurpleSoundUiOps sound_ui_ops =
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
1068 {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
1069 finch_sound_init,
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
1070 finch_sound_uninit,
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
1071 finch_sound_play_file,
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
1072 finch_sound_play_event,
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
1073 NULL,
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
1074 NULL,
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
1075 NULL,
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
1076 NULL
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
1077 };
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
1078
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
1079 PurpleSoundUiOps *
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
1080 finch_sound_get_ui_ops(void)
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
1081 {
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
1082 return &sound_ui_ops;
3bb5605ea11e Added sound to Finch.
Eric Polino <aluink@pidgin.im>
parents:
diff changeset
1083 }
18691
bde2c3303cae One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents: 18686
diff changeset
1084

mercurial