Fri, 04 Sep 2009 03:04:33 +0000
Remove some win9x specific code.
| 18155 | 1 | /** |
|
18717
4c0284a98465
Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18704
diff
changeset
|
2 | * @file gntsound.c GNT Sound API |
|
4c0284a98465
Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18704
diff
changeset
|
3 | * @ingroup finch |
|
20147
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19933
diff
changeset
|
4 | */ |
|
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19933
diff
changeset
|
5 | |
|
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19933
diff
changeset
|
6 | /* finch |
|
18717
4c0284a98465
Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18704
diff
changeset
|
7 | * |
|
4c0284a98465
Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18704
diff
changeset
|
8 | * 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
|
9 | * 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
|
10 | * source distribution. |
|
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 free software; you can redistribute it and/or modify |
|
4c0284a98465
Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18704
diff
changeset
|
13 | * 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
|
14 | * the Free Software Foundation; either version 2 of the License, or |
|
4c0284a98465
Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18704
diff
changeset
|
15 | * (at your option) any later version. |
|
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 | * 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
|
18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
4c0284a98465
Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18704
diff
changeset
|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
4c0284a98465
Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18704
diff
changeset
|
20 | * GNU General Public License for more details. |
|
4c0284a98465
Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18704
diff
changeset
|
21 | * |
|
4c0284a98465
Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18704
diff
changeset
|
22 | * 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
|
23 | * 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
|
24 | * 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
|
25 | */ |
| 18155 | 26 | #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
|
27 | #include <internal.h> |
| 18155 | 28 | |
| 29 | #ifdef _WIN32 | |
| 30 | #include <windows.h> | |
| 31 | #include <mmsystem.h> | |
| 32 | #endif | |
| 33 | ||
| 34 | #ifdef USE_GSTREAMER | |
| 35 | #include <gst/gst.h> | |
| 36 | #endif /* USE_GSTREAMER */ | |
| 37 | ||
| 38 | #include "debug.h" | |
| 39 | #include "notify.h" | |
| 40 | #include "prefs.h" | |
| 41 | #include "sound.h" | |
| 42 | #include "util.h" | |
| 43 | ||
|
19612
043dcbf3a36e
Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19588
diff
changeset
|
44 | #include "gntconv.h" |
|
043dcbf3a36e
Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19588
diff
changeset
|
45 | |
|
18294
8186bc6ffbb4
Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents:
18292
diff
changeset
|
46 | #include "gntbox.h" |
|
8186bc6ffbb4
Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents:
18292
diff
changeset
|
47 | #include "gntwindow.h" |
|
8186bc6ffbb4
Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents:
18292
diff
changeset
|
48 | #include "gntcombobox.h" |
|
8186bc6ffbb4
Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents:
18292
diff
changeset
|
49 | #include "gntlabel.h" |
| 18155 | 50 | #include "gntconv.h" |
| 51 | #include "gntsound.h" | |
|
18294
8186bc6ffbb4
Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents:
18292
diff
changeset
|
52 | #include "gntwidget.h" |
|
8186bc6ffbb4
Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents:
18292
diff
changeset
|
53 | #include "gntentry.h" |
|
8186bc6ffbb4
Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents:
18292
diff
changeset
|
54 | #include "gntcheckbox.h" |
|
18295
bd26c37841f8
Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents:
18294
diff
changeset
|
55 | #include "gntline.h" |
|
18432
8fd3963b9ce0
Changed the volume changer to a GntSlider.
Eric Polino <aluink@pidgin.im>
parents:
18296
diff
changeset
|
56 | #include "gntslider.h" |
|
18439
5b6c9a328910
Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents:
18438
diff
changeset
|
57 | #include "gnttree.h" |
|
18440
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
58 | #include "gntfilesel.h" |
| 18155 | 59 | |
|
18440
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
60 | typedef struct { |
|
18678
2fc084ec99cd
Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18620
diff
changeset
|
61 | PurpleSoundEventID id; |
| 18155 | 62 | char *label; |
| 63 | char *pref; | |
| 64 | char *def; | |
|
18616
ce2f681adadf
merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents:
18440
diff
changeset
|
65 | char *file; |
|
18440
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
66 | } FinchSoundEvent; |
| 18155 | 67 | |
|
18296
9461f264ee5f
Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents:
18295
diff
changeset
|
68 | typedef struct { |
|
9461f264ee5f
Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents:
18295
diff
changeset
|
69 | GntWidget *method; |
|
9461f264ee5f
Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents:
18295
diff
changeset
|
70 | GntWidget *command; |
|
9461f264ee5f
Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents:
18295
diff
changeset
|
71 | GntWidget *conv_focus; |
|
9461f264ee5f
Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents:
18295
diff
changeset
|
72 | GntWidget *while_status; |
|
9461f264ee5f
Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents:
18295
diff
changeset
|
73 | GntWidget *volume; |
|
18439
5b6c9a328910
Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents:
18438
diff
changeset
|
74 | GntWidget *events; |
|
18296
9461f264ee5f
Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents:
18295
diff
changeset
|
75 | 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
|
76 | 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
|
77 | |
| 18683 | 78 | GntWidget *profiles; |
|
18696
6036397c0038
Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents:
18695
diff
changeset
|
79 | 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
|
80 | gchar * original_profile; |
|
18296
9461f264ee5f
Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents:
18295
diff
changeset
|
81 | } SoundPrefDialog; |
|
9461f264ee5f
Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents:
18295
diff
changeset
|
82 | |
|
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
|
83 | #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
|
84 | |
|
18691
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
85 | static SoundPrefDialog *pref_dialog; |
|
18295
bd26c37841f8
Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents:
18294
diff
changeset
|
86 | |
| 18155 | 87 | #define PLAY_SOUND_TIMEOUT 15000 |
| 88 | ||
| 89 | static guint mute_login_sounds_timeout = 0; | |
| 90 | static gboolean mute_login_sounds = FALSE; | |
| 91 | ||
| 92 | #ifdef USE_GSTREAMER | |
| 93 | static gboolean gst_init_failed; | |
| 94 | #endif /* USE_GSTREAMER */ | |
| 95 | ||
|
18440
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
96 | 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
|
97 | {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
|
98 | {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
|
99 | {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
|
100 | {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
|
101 | {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
|
102 | {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
|
103 | {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
|
104 | {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
|
105 | {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
|
106 | {PURPLE_SOUND_POUNCE_DEFAULT, NULL, "pounce_default", "alert.wav", NULL}, |
|
22942
2bf494f8e2a4
Change the string "screen name" to "username" everywhere. I think most
Mark Doliner <markdoliner@pidgin.im>
parents:
22568
diff
changeset
|
107 | {PURPLE_SOUND_CHAT_NICK, N_("Someone says your username in chat"), "nick_said", "alert.wav", NULL} |
| 18155 | 108 | }; |
| 109 | ||
| 18683 | 110 | const char * |
| 111 | finch_sound_get_active_profile() | |
| 112 | { | |
| 113 | return purple_prefs_get_string(FINCH_PREFS_ROOT "/sound/actprofile"); | |
| 114 | } | |
| 115 | ||
| 116 | /* This method creates a pref name based on the current active profile. | |
| 117 | * So if "Home" is the current active profile the pref name | |
| 118 | * [FINCH_PREFS_ROOT "/sound/profiles/Home/$NAME"] is created. | |
| 119 | */ | |
| 120 | static gchar * | |
| 121 | make_pref(const char *name) | |
| 122 | { | |
|
18691
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
123 | static char pref_string[512]; |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
124 | g_snprintf(pref_string, sizeof(pref_string), |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
125 | FINCH_PREFS_ROOT "/sound/profiles/%s%s", finch_sound_get_active_profile(), name); |
| 18683 | 126 | return pref_string; |
| 127 | } | |
| 128 | ||
| 129 | ||
| 18155 | 130 | static gboolean |
| 131 | unmute_login_sounds_cb(gpointer data) | |
| 132 | { | |
| 133 | mute_login_sounds = FALSE; | |
| 134 | mute_login_sounds_timeout = 0; | |
| 135 | return FALSE; | |
| 136 | } | |
| 137 | ||
| 138 | static gboolean | |
| 139 | chat_nick_matches_name(PurpleConversation *conv, const char *aname) | |
| 140 | { | |
| 141 | PurpleConvChat *chat = NULL; | |
| 142 | char *nick = NULL; | |
| 143 | char *name = NULL; | |
| 144 | gboolean ret = FALSE; | |
|
22337
9868137b6724
Update finch to not touch the internals of PurpleConversation.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22104
diff
changeset
|
145 | PurpleAccount *account; |
|
9868137b6724
Update finch to not touch the internals of PurpleConversation.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22104
diff
changeset
|
146 | |
| 18155 | 147 | chat = purple_conversation_get_chat_data(conv); |
|
18700
1cc3e27756ef
Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18699
diff
changeset
|
148 | if (chat == NULL) |
| 18155 | 149 | return ret; |
| 150 | ||
|
22337
9868137b6724
Update finch to not touch the internals of PurpleConversation.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22104
diff
changeset
|
151 | account = purple_conversation_get_account(conv); |
|
9868137b6724
Update finch to not touch the internals of PurpleConversation.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22104
diff
changeset
|
152 | nick = g_strdup(purple_normalize(account, chat->nick)); |
|
9868137b6724
Update finch to not touch the internals of PurpleConversation.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22104
diff
changeset
|
153 | name = g_strdup(purple_normalize(account, aname)); |
| 18155 | 154 | |
| 155 | if (g_utf8_collate(nick, name) == 0) | |
| 156 | ret = TRUE; | |
| 157 | ||
| 158 | g_free(nick); | |
| 159 | g_free(name); | |
| 160 | ||
| 161 | return ret; | |
| 162 | } | |
| 163 | ||
| 164 | /* | |
| 165 | * play a sound event for a conversation, honoring make_sound flag | |
| 166 | * of conversation and checking for focus if conv_focus pref is set | |
| 167 | */ | |
| 168 | static void | |
| 169 | play_conv_event(PurpleConversation *conv, PurpleSoundEventID event) | |
| 170 | { | |
| 171 | /* If we should not play the sound for some reason, then exit early */ | |
| 172 | if (conv != NULL) | |
| 173 | { | |
| 174 | FinchConv *gntconv; | |
| 175 | gboolean has_focus; | |
| 176 | ||
| 177 | gntconv = FINCH_CONV(conv); | |
| 178 | ||
| 179 | has_focus = purple_conversation_has_focus(conv); | |
| 180 | ||
|
19612
043dcbf3a36e
Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19588
diff
changeset
|
181 | 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
|
182 | (has_focus && !purple_prefs_get_bool(make_pref("/conv_focus")))) |
| 18155 | 183 | { |
| 184 | return; | |
| 185 | } | |
| 186 | } | |
| 187 | ||
| 188 | purple_sound_play_event(event, conv ? purple_conversation_get_account(conv) : NULL); | |
| 189 | } | |
| 190 | ||
| 191 | static void | |
| 192 | buddy_state_cb(PurpleBuddy *buddy, PurpleSoundEventID event) | |
| 193 | { | |
| 194 | purple_sound_play_event(event, purple_buddy_get_account(buddy)); | |
| 195 | } | |
| 196 | ||
| 197 | static void | |
| 198 | im_msg_received_cb(PurpleAccount *account, char *sender, | |
| 199 | char *message, PurpleConversation *conv, | |
| 200 | PurpleMessageFlags flags, PurpleSoundEventID event) | |
| 201 | { | |
| 202 | if (flags & PURPLE_MESSAGE_DELAYED) | |
| 203 | return; | |
| 204 | ||
|
18700
1cc3e27756ef
Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18699
diff
changeset
|
205 | if (conv == NULL) { |
| 18155 | 206 | 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
|
207 | } else { |
| 18155 | 208 | play_conv_event(conv, event); |
| 209 | } | |
| 210 | } | |
| 211 | ||
| 212 | static void | |
| 213 | im_msg_sent_cb(PurpleAccount *account, const char *receiver, | |
| 214 | const char *message, PurpleSoundEventID event) | |
| 215 | { | |
| 216 | PurpleConversation *conv = purple_find_conversation_with_account( | |
|
27953
e87037512533
Minor cleanup: This callback is also IM-only.
Paul Aurich <darkrain42@pidgin.im>
parents:
27829
diff
changeset
|
217 | PURPLE_CONV_TYPE_IM, receiver, account); |
| 18155 | 218 | play_conv_event(conv, event); |
| 219 | } | |
| 220 | ||
| 221 | static void | |
| 222 | chat_buddy_join_cb(PurpleConversation *conv, const char *name, | |
| 223 | PurpleConvChatBuddyFlags flags, gboolean new_arrival, | |
| 224 | PurpleSoundEventID event) | |
| 225 | { | |
| 226 | if (new_arrival && !chat_nick_matches_name(conv, name)) | |
| 227 | play_conv_event(conv, event); | |
| 228 | } | |
| 229 | ||
| 230 | static void | |
| 231 | chat_buddy_left_cb(PurpleConversation *conv, const char *name, | |
| 232 | const char *reason, PurpleSoundEventID event) | |
| 233 | { | |
| 234 | if (!chat_nick_matches_name(conv, name)) | |
| 235 | play_conv_event(conv, event); | |
| 236 | } | |
| 237 | ||
| 238 | static void | |
| 239 | chat_msg_sent_cb(PurpleAccount *account, const char *message, | |
| 240 | int id, PurpleSoundEventID event) | |
| 241 | { | |
| 242 | PurpleConnection *conn = purple_account_get_connection(account); | |
| 243 | PurpleConversation *conv = NULL; | |
| 244 | ||
| 245 | if (conn!=NULL) | |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
246 | conv = purple_find_chat(conn, id); |
| 18155 | 247 | |
| 248 | play_conv_event(conv, event); | |
| 249 | } | |
| 250 | ||
| 251 | static void | |
| 252 | chat_msg_received_cb(PurpleAccount *account, char *sender, | |
| 253 | char *message, PurpleConversation *conv, | |
| 254 | PurpleMessageFlags flags, PurpleSoundEventID event) | |
| 255 | { | |
| 256 | PurpleConvChat *chat; | |
| 257 | ||
| 258 | if (flags & PURPLE_MESSAGE_DELAYED) | |
| 259 | return; | |
| 260 | ||
| 261 | chat = purple_conversation_get_chat_data(conv); | |
| 262 | g_return_if_fail(chat != NULL); | |
| 263 | ||
| 264 | if (purple_conv_chat_is_user_ignored(chat, sender)) | |
| 265 | return; | |
| 266 | ||
| 267 | if (chat_nick_matches_name(conv, sender)) | |
| 268 | return; | |
| 269 | ||
| 270 | if (flags & PURPLE_MESSAGE_NICK || purple_utf8_has_word(message, chat->nick)) | |
| 271 | play_conv_event(conv, PURPLE_SOUND_CHAT_NICK); | |
| 272 | else | |
| 273 | play_conv_event(conv, event); | |
| 274 | } | |
| 275 | ||
| 276 | /* | |
| 277 | * We mute sounds for the 10 seconds after you log in so that | |
| 278 | * you don't get flooded with sounds when the blist shows all | |
| 279 | * your buddies logging in. | |
| 280 | */ | |
| 281 | static void | |
| 282 | account_signon_cb(PurpleConnection *gc, gpointer data) | |
| 283 | { | |
| 284 | if (mute_login_sounds_timeout != 0) | |
| 285 | g_source_remove(mute_login_sounds_timeout); | |
| 286 | mute_login_sounds = TRUE; | |
|
18691
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
287 | mute_login_sounds_timeout = purple_timeout_add_seconds(10, unmute_login_sounds_cb, NULL); |
| 18155 | 288 | } |
| 289 | ||
|
19315
0bc6119bbf7b
Fix a memory leak.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18717
diff
changeset
|
290 | 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
|
291 | finch_sound_get_handle(void) |
| 18155 | 292 | { |
| 293 | static int handle; | |
| 294 | ||
| 295 | return &handle; | |
| 296 | } | |
| 297 | ||
| 18683 | 298 | |
| 299 | /* This gets called when the active profile changes */ | |
| 300 | 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
|
301 | initialize_profile(const char *name, PurplePrefType type, gconstpointer val, gpointer null) |
| 18683 | 302 | { |
|
18700
1cc3e27756ef
Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18699
diff
changeset
|
303 | if (purple_prefs_exists(make_pref(""))) |
|
18691
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
304 | return; |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
305 | |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
306 | purple_prefs_add_none(make_pref("")); |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
307 | purple_prefs_add_none(make_pref("/enabled")); |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
308 | purple_prefs_add_none(make_pref("/file")); |
|
19410
85956504e631
Don't enable the sounds by default.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19403
diff
changeset
|
309 | purple_prefs_add_bool(make_pref("/enabled/login"), FALSE); |
|
18691
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
310 | purple_prefs_add_path(make_pref("/file/login"), ""); |
|
19410
85956504e631
Don't enable the sounds by default.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19403
diff
changeset
|
311 | purple_prefs_add_bool(make_pref("/enabled/logout"), FALSE); |
|
18691
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
312 | purple_prefs_add_path(make_pref("/file/logout"), ""); |
|
19410
85956504e631
Don't enable the sounds by default.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19403
diff
changeset
|
313 | purple_prefs_add_bool(make_pref("/enabled/im_recv"), FALSE); |
|
18691
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
314 | purple_prefs_add_path(make_pref("/file/im_recv"), ""); |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
315 | purple_prefs_add_bool(make_pref("/enabled/first_im_recv"), FALSE); |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
316 | purple_prefs_add_path(make_pref("/file/first_im_recv"), ""); |
|
19410
85956504e631
Don't enable the sounds by default.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19403
diff
changeset
|
317 | purple_prefs_add_bool(make_pref("/enabled/send_im"), FALSE); |
|
18691
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
318 | purple_prefs_add_path(make_pref("/file/send_im"), ""); |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
319 | purple_prefs_add_bool(make_pref("/enabled/join_chat"), FALSE); |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
320 | purple_prefs_add_path(make_pref("/file/join_chat"), ""); |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
321 | purple_prefs_add_bool(make_pref("/enabled/left_chat"), FALSE); |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
322 | purple_prefs_add_path(make_pref("/file/left_chat"), ""); |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
323 | purple_prefs_add_bool(make_pref("/enabled/send_chat_msg"), FALSE); |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
324 | purple_prefs_add_path(make_pref("/file/send_chat_msg"), ""); |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
325 | purple_prefs_add_bool(make_pref("/enabled/chat_msg_recv"), FALSE); |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
326 | purple_prefs_add_path(make_pref("/file/chat_msg_recv"), ""); |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
327 | purple_prefs_add_bool(make_pref("/enabled/nick_said"), FALSE); |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
328 | purple_prefs_add_path(make_pref("/file/nick_said"), ""); |
|
19410
85956504e631
Don't enable the sounds by default.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19403
diff
changeset
|
329 | purple_prefs_add_bool(make_pref("/enabled/pounce_default"), FALSE); |
|
18691
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
330 | purple_prefs_add_path(make_pref("/file/pounce_default"), ""); |
|
19410
85956504e631
Don't enable the sounds by default.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19403
diff
changeset
|
331 | 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
|
332 | 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
|
333 | purple_prefs_add_path(make_pref("/command"), ""); |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
334 | purple_prefs_add_string(make_pref("/method"), "automatic"); |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
335 | purple_prefs_add_int(make_pref("/volume"), 50); |
| 18683 | 336 | } |
| 337 | ||
| 18155 | 338 | static void |
| 339 | finch_sound_init(void) | |
| 340 | { | |
| 341 | void *gnt_sound_handle = finch_sound_get_handle(); | |
| 342 | void *blist_handle = purple_blist_get_handle(); | |
| 343 | void *conv_handle = purple_conversations_get_handle(); | |
| 344 | #ifdef USE_GSTREAMER | |
| 345 | GError *error = NULL; | |
| 346 | #endif | |
| 347 | ||
| 348 | purple_signal_connect(purple_connections_get_handle(), "signed-on", | |
| 349 | gnt_sound_handle, PURPLE_CALLBACK(account_signon_cb), | |
| 350 | NULL); | |
| 351 | ||
| 352 | 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
|
353 | purple_prefs_add_string(FINCH_PREFS_ROOT "/sound/actprofile", DEFAULT_PROFILE); |
| 18683 | 354 | purple_prefs_add_none(FINCH_PREFS_ROOT "/sound/profiles"); |
| 18155 | 355 | |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
356 | purple_prefs_connect_callback(gnt_sound_handle, FINCH_PREFS_ROOT "/sound/actprofile", initialize_profile, NULL); |
| 18683 | 357 | purple_prefs_trigger_callback(FINCH_PREFS_ROOT "/sound/actprofile"); |
| 358 | ||
| 359 | ||
| 18155 | 360 | #ifdef USE_GSTREAMER |
| 361 | 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
|
362 | #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
|
363 | (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
|
364 | (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
|
365 | 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
|
366 | #endif |
| 18155 | 367 | if ((gst_init_failed = !gst_init_check(NULL, NULL, &error))) { |
| 368 | purple_notify_error(NULL, _("GStreamer Failure"), | |
| 369 | _("GStreamer failed to initialize."), | |
| 370 | error ? error->message : ""); | |
| 371 | if (error) { | |
| 372 | g_error_free(error); | |
| 373 | error = NULL; | |
| 374 | } | |
| 375 | } | |
| 376 | #endif /* USE_GSTREAMER */ | |
| 377 | ||
| 378 | purple_signal_connect(blist_handle, "buddy-signed-on", | |
| 379 | gnt_sound_handle, PURPLE_CALLBACK(buddy_state_cb), | |
| 380 | GINT_TO_POINTER(PURPLE_SOUND_BUDDY_ARRIVE)); | |
| 381 | purple_signal_connect(blist_handle, "buddy-signed-off", | |
| 382 | gnt_sound_handle, PURPLE_CALLBACK(buddy_state_cb), | |
| 383 | GINT_TO_POINTER(PURPLE_SOUND_BUDDY_LEAVE)); | |
| 384 | purple_signal_connect(conv_handle, "received-im-msg", | |
| 385 | gnt_sound_handle, PURPLE_CALLBACK(im_msg_received_cb), | |
| 386 | GINT_TO_POINTER(PURPLE_SOUND_RECEIVE)); | |
| 387 | purple_signal_connect(conv_handle, "sent-im-msg", | |
| 388 | gnt_sound_handle, PURPLE_CALLBACK(im_msg_sent_cb), | |
| 389 | GINT_TO_POINTER(PURPLE_SOUND_SEND)); | |
| 390 | purple_signal_connect(conv_handle, "chat-buddy-joined", | |
| 391 | gnt_sound_handle, PURPLE_CALLBACK(chat_buddy_join_cb), | |
| 392 | GINT_TO_POINTER(PURPLE_SOUND_CHAT_JOIN)); | |
| 393 | purple_signal_connect(conv_handle, "chat-buddy-left", | |
| 394 | gnt_sound_handle, PURPLE_CALLBACK(chat_buddy_left_cb), | |
| 395 | GINT_TO_POINTER(PURPLE_SOUND_CHAT_LEAVE)); | |
| 396 | purple_signal_connect(conv_handle, "sent-chat-msg", | |
| 397 | gnt_sound_handle, PURPLE_CALLBACK(chat_msg_sent_cb), | |
| 398 | GINT_TO_POINTER(PURPLE_SOUND_CHAT_YOU_SAY)); | |
| 399 | purple_signal_connect(conv_handle, "received-chat-msg", | |
| 400 | gnt_sound_handle, PURPLE_CALLBACK(chat_msg_received_cb), | |
| 401 | GINT_TO_POINTER(PURPLE_SOUND_CHAT_SAY)); | |
| 402 | } | |
| 403 | ||
| 404 | static void | |
| 405 | finch_sound_uninit(void) | |
| 406 | { | |
| 407 | #ifdef USE_GSTREAMER | |
| 408 | if (!gst_init_failed) | |
| 409 | gst_deinit(); | |
| 410 | #endif | |
| 411 | ||
| 412 | purple_signals_disconnect_by_handle(finch_sound_get_handle()); | |
| 413 | } | |
| 414 | ||
| 415 | #ifdef USE_GSTREAMER | |
| 416 | static gboolean | |
| 417 | bus_call (GstBus *bus, GstMessage *msg, gpointer data) | |
| 418 | { | |
| 419 | GstElement *play = data; | |
| 420 | GError *err = NULL; | |
| 421 | ||
| 422 | switch (GST_MESSAGE_TYPE (msg)) { | |
| 423 | case GST_MESSAGE_ERROR: | |
| 424 | gst_message_parse_error(msg, &err, NULL); | |
|
19323
576433b2c438
Print debug messages appropriately.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19322
diff
changeset
|
425 | purple_debug_error("gstreamer", "%s\n", err->message); |
| 18155 | 426 | 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
|
427 | /* 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
|
428 | 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
|
429 | 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
|
430 | gst_object_unref(GST_OBJECT(play)); |
| 18155 | 431 | break; |
| 432 | case GST_MESSAGE_WARNING: | |
| 433 | gst_message_parse_warning(msg, &err, NULL); | |
|
19323
576433b2c438
Print debug messages appropriately.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19322
diff
changeset
|
434 | purple_debug_warning("gstreamer", "%s\n", err->message); |
| 18155 | 435 | g_error_free(err); |
| 436 | break; | |
| 437 | default: | |
| 438 | break; | |
| 439 | } | |
| 440 | return TRUE; | |
| 441 | } | |
| 442 | #endif | |
| 443 | ||
| 444 | static void | |
| 445 | finch_sound_play_file(const char *filename) | |
| 446 | { | |
| 447 | const char *method; | |
| 448 | #ifdef USE_GSTREAMER | |
| 449 | float volume; | |
| 450 | char *uri; | |
| 451 | GstElement *sink = NULL; | |
| 452 | GstElement *play = NULL; | |
| 453 | GstBus *bus = NULL; | |
| 454 | #endif | |
| 18683 | 455 | if (purple_prefs_get_bool(make_pref("/mute"))) |
| 18155 | 456 | return; |
| 457 | ||
| 18683 | 458 | method = purple_prefs_get_string(make_pref("/method")); |
| 18155 | 459 | |
|
19403
e391da646b62
leak fix, and fix nosound
Richard Nelson <wabz@pidgin.im>
parents:
19323
diff
changeset
|
460 | if (!strcmp(method, "nosound")) { |
| 18155 | 461 | return; |
| 462 | } else if (!strcmp(method, "beep")) { | |
| 463 | beep(); | |
| 464 | return; | |
| 465 | } | |
| 466 | ||
| 467 | if (!g_file_test(filename, G_FILE_TEST_EXISTS)) { | |
| 468 | purple_debug_error("gntsound", "sound file (%s) does not exist.\n", filename); | |
| 469 | return; | |
| 470 | } | |
| 471 | ||
| 472 | #ifndef _WIN32 | |
| 473 | if (!strcmp(method, "custom")) { | |
| 474 | const char *sound_cmd; | |
| 475 | char *command; | |
| 476 | char *esc_filename; | |
| 477 | GError *error = NULL; | |
| 478 | ||
| 18683 | 479 | sound_cmd = purple_prefs_get_path(make_pref("/command")); |
| 18155 | 480 | |
| 481 | if (!sound_cmd || *sound_cmd == '\0') { | |
| 482 | purple_debug_error("gntsound", | |
| 483 | "'Command' sound method has been chosen, " | |
| 484 | "but no command has been set."); | |
| 485 | return; | |
| 486 | } | |
| 487 | ||
| 488 | esc_filename = g_shell_quote(filename); | |
| 489 | ||
|
18700
1cc3e27756ef
Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18699
diff
changeset
|
490 | if (strstr(sound_cmd, "%s")) |
| 18155 | 491 | command = purple_strreplace(sound_cmd, "%s", esc_filename); |
| 492 | else | |
| 493 | command = g_strdup_printf("%s %s", sound_cmd, esc_filename); | |
| 494 | ||
|
18700
1cc3e27756ef
Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18699
diff
changeset
|
495 | if (!g_spawn_command_line_async(command, &error)) { |
| 18155 | 496 | purple_debug_error("gntsound", "sound command could not be launched: %s\n", error->message); |
| 497 | g_error_free(error); | |
| 498 | } | |
| 499 | ||
| 500 | g_free(esc_filename); | |
| 501 | g_free(command); | |
| 502 | return; | |
| 503 | } | |
| 504 | #ifdef USE_GSTREAMER | |
| 505 | if (gst_init_failed) /* Perhaps do beep instead? */ | |
| 506 | return; | |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
507 | volume = (float)(CLAMP(purple_prefs_get_int(make_pref("/volume")), 0, 100)) / 50; |
| 18155 | 508 | if (!strcmp(method, "automatic")) { |
| 509 | if (purple_running_gnome()) { | |
| 510 | sink = gst_element_factory_make("gconfaudiosink", "sink"); | |
| 511 | } | |
| 512 | if (!sink) | |
| 513 | sink = gst_element_factory_make("autoaudiosink", "sink"); | |
| 514 | if (!sink) { | |
| 515 | purple_debug_error("sound", "Unable to create GStreamer audiosink.\n"); | |
| 516 | return; | |
| 517 | } | |
| 518 | } else if (!strcmp(method, "esd")) { | |
| 519 | sink = gst_element_factory_make("esdsink", "sink"); | |
| 520 | if (!sink) { | |
| 521 | purple_debug_error("sound", "Unable to create GStreamer audiosink.\n"); | |
| 522 | return; | |
| 523 | } | |
| 524 | } else if (!strcmp(method, "alsa")) { | |
| 525 | sink = gst_element_factory_make("alsasink", "sink"); | |
| 526 | if (!sink) { | |
| 527 | purple_debug_error("sound", "Unable to create GStreamer audiosink.\n"); | |
| 528 | return; | |
| 529 | } | |
| 530 | } else { | |
| 531 | purple_debug_error("sound", "Unknown sound method '%s'\n", method); | |
| 532 | return; | |
| 533 | } | |
| 534 | ||
| 535 | play = gst_element_factory_make("playbin", "play"); | |
| 536 | ||
| 537 | if (play == NULL) { | |
| 538 | return; | |
| 539 | } | |
| 540 | ||
| 541 | uri = g_strdup_printf("file://%s", filename); | |
| 542 | ||
| 543 | g_object_set(G_OBJECT(play), "uri", uri, | |
| 544 | "volume", volume, | |
| 545 | "audio-sink", sink, NULL); | |
| 546 | ||
| 547 | bus = gst_pipeline_get_bus(GST_PIPELINE(play)); | |
| 548 | gst_bus_add_watch(bus, bus_call, play); | |
| 549 | ||
| 550 | gst_element_set_state(play, GST_STATE_PLAYING); | |
| 551 | ||
| 552 | gst_object_unref(bus); | |
| 553 | g_free(uri); | |
| 554 | ||
| 555 | #else /* USE_GSTREAMER */ | |
| 556 | beep(); | |
| 557 | return; | |
| 558 | #endif /* USE_GSTREAMER */ | |
| 559 | #else /* _WIN32 */ | |
| 560 | purple_debug_info("sound", "Playing %s\n", filename); | |
| 561 | ||
|
29509
334fa8c0c750
Remove some win9x specific code.
Daniel Atallah <datallah@pidgin.im>
parents:
27953
diff
changeset
|
562 | { |
| 18155 | 563 | wchar_t *wc_filename = g_utf8_to_utf16(filename, |
| 564 | -1, NULL, NULL, NULL); | |
| 565 | if (!PlaySoundW(wc_filename, NULL, SND_ASYNC | SND_FILENAME)) | |
| 566 | purple_debug(PURPLE_DEBUG_ERROR, "sound", "Error playing sound.\n"); | |
| 567 | g_free(wc_filename); | |
| 568 | } | |
| 569 | #endif /* _WIN32 */ | |
| 570 | } | |
| 571 | ||
| 572 | static void | |
| 573 | finch_sound_play_event(PurpleSoundEventID event) | |
| 574 | { | |
| 575 | char *enable_pref; | |
| 576 | char *file_pref; | |
| 577 | if ((event == PURPLE_SOUND_BUDDY_ARRIVE) && mute_login_sounds) | |
| 578 | return; | |
| 579 | ||
| 580 | if (event >= PURPLE_NUM_SOUNDS) { | |
| 581 | purple_debug_error("sound", "got request for unknown sound: %d\n", event); | |
| 582 | return; | |
| 583 | } | |
| 584 | ||
| 18683 | 585 | enable_pref = g_strdup_printf(FINCH_PREFS_ROOT "/sound/profiles/%s/enabled/%s", |
| 586 | finch_sound_get_active_profile(), | |
| 18155 | 587 | 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
|
588 | file_pref = g_strdup_printf(FINCH_PREFS_ROOT "/sound/profiles/%s/file/%s", finch_sound_get_active_profile(), sounds[event].pref); |
| 18155 | 589 | |
| 590 | /* check NULL for sounds that don't have an option, ie buddy pounce */ | |
| 591 | if (purple_prefs_get_bool(enable_pref)) { | |
| 592 | char *filename = g_strdup(purple_prefs_get_path(file_pref)); | |
|
18700
1cc3e27756ef
Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18699
diff
changeset
|
593 | if (!filename || !strlen(filename)) { |
| 18155 | 594 | g_free(filename); |
| 18292 | 595 | /* XXX Consider creating a constant for "sounds/purple" to be shared with Pidgin */ |
| 596 | filename = g_build_filename(DATADIR, "sounds", "purple", sounds[event].def, NULL); | |
| 18155 | 597 | } |
| 598 | ||
| 599 | purple_sound_play_file(filename, NULL); | |
| 600 | g_free(filename); | |
| 601 | } | |
| 602 | ||
| 603 | g_free(enable_pref); | |
| 604 | g_free(file_pref); | |
| 605 | } | |
| 606 | ||
| 18683 | 607 | GList * |
| 608 | finch_sound_get_profiles() | |
| 609 | { | |
|
18693
399da3ec358f
Update the way _get_children_names is used.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18691
diff
changeset
|
610 | GList *list = NULL, *iter; |
|
399da3ec358f
Update the way _get_children_names is used.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18691
diff
changeset
|
611 | 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
|
612 | while (iter) { |
|
399da3ec358f
Update the way _get_children_names is used.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18691
diff
changeset
|
613 | 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
|
614 | g_free(iter->data); |
|
399da3ec358f
Update the way _get_children_names is used.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18691
diff
changeset
|
615 | 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
|
616 | } |
|
399da3ec358f
Update the way _get_children_names is used.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18691
diff
changeset
|
617 | return list; |
| 18683 | 618 | } |
| 619 | ||
|
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
|
620 | /* This will also create it if it doesn't exist */ |
| 18683 | 621 | void |
| 622 | finch_sound_set_active_profile(const char *name) | |
| 623 | { | |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
624 | purple_prefs_set_string(FINCH_PREFS_ROOT "/sound/actprofile", name); |
| 18683 | 625 | } |
| 626 | ||
|
19315
0bc6119bbf7b
Fix a memory leak.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18717
diff
changeset
|
627 | static gboolean |
|
18717
4c0284a98465
Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18704
diff
changeset
|
628 | finch_sound_profile_exists(const char *name) |
|
4c0284a98465
Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18704
diff
changeset
|
629 | { |
|
18697
5821988c1c4c
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
18696
diff
changeset
|
630 | gchar * tmp; |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
631 | 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
|
632 | g_free(tmp); |
|
5821988c1c4c
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
18696
diff
changeset
|
633 | return ret; |
|
5821988c1c4c
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
18696
diff
changeset
|
634 | } |
| 18683 | 635 | |
|
18438
972b13b06ba0
Cleaned up a few poorly written "activate" callbacks.
Eric Polino <aluink@pidgin.im>
parents:
18437
diff
changeset
|
636 | static void |
|
972b13b06ba0
Cleaned up a few poorly written "activate" callbacks.
Eric Polino <aluink@pidgin.im>
parents:
18437
diff
changeset
|
637 | save_cb(GntWidget *button, gpointer win) |
|
18295
bd26c37841f8
Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents:
18294
diff
changeset
|
638 | { |
|
18616
ce2f681adadf
merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents:
18440
diff
changeset
|
639 | GList * itr; |
|
18439
5b6c9a328910
Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents:
18438
diff
changeset
|
640 | |
| 18683 | 641 | purple_prefs_set_string(make_pref("/method"), gnt_combo_box_get_selected_data(GNT_COMBO_BOX(pref_dialog->method))); |
| 642 | 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
|
643 | 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
|
644 | purple_prefs_set_int("/purple/sound/while_status", GPOINTER_TO_INT(gnt_combo_box_get_selected_data(GNT_COMBO_BOX(pref_dialog->while_status)))); |
|
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
645 | purple_prefs_set_int(make_pref("/volume"), gnt_slider_get_value(GNT_SLIDER(pref_dialog->volume))); |
| 18437 | 646 | |
|
18700
1cc3e27756ef
Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18699
diff
changeset
|
647 | 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
|
648 | 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
|
649 | 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
|
650 | 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
|
651 | 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
|
652 | 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
|
653 | g_free(filepref); |
| 18618 | 654 | g_free(boolpref); |
|
18439
5b6c9a328910
Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents:
18438
diff
changeset
|
655 | } |
|
18296
9461f264ee5f
Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents:
18295
diff
changeset
|
656 | gnt_widget_destroy(GNT_WIDGET(win)); |
|
18295
bd26c37841f8
Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents:
18294
diff
changeset
|
657 | } |
|
18678
2fc084ec99cd
Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18620
diff
changeset
|
658 | |
|
18438
972b13b06ba0
Cleaned up a few poorly written "activate" callbacks.
Eric Polino <aluink@pidgin.im>
parents:
18437
diff
changeset
|
659 | static void |
|
18678
2fc084ec99cd
Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18620
diff
changeset
|
660 | 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
|
661 | { |
|
18678
2fc084ec99cd
Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18620
diff
changeset
|
662 | FinchSoundEvent *event = data; |
|
18440
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
663 | |
|
18616
ce2f681adadf
merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents:
18440
diff
changeset
|
664 | g_free(event->file); |
|
18678
2fc084ec99cd
Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18620
diff
changeset
|
665 | 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
|
666 | |
|
18678
2fc084ec99cd
Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18620
diff
changeset
|
667 | 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
|
668 | gnt_tree_set_choice(GNT_TREE(pref_dialog->events), GINT_TO_POINTER(event->id), TRUE); |
|
18440
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
669 | |
|
18678
2fc084ec99cd
Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18620
diff
changeset
|
670 | gnt_widget_destroy(GNT_WIDGET(w)); |
|
18295
bd26c37841f8
Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents:
18294
diff
changeset
|
671 | } |
|
bd26c37841f8
Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents:
18294
diff
changeset
|
672 | |
|
18440
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
673 | static void |
|
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
674 | test_cb(GntWidget *button, gpointer null) |
|
18295
bd26c37841f8
Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents:
18294
diff
changeset
|
675 | { |
|
18616
ce2f681adadf
merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents:
18440
diff
changeset
|
676 | 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
|
677 | FinchSoundEvent * event = &sounds[id]; |
|
19582
34527ff09932
Use the changed volume when 'Test'ing.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19564
diff
changeset
|
678 | char *enabled, *file, *tmpfile, *volpref; |
|
18440
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
679 | gboolean temp_value; |
|
19582
34527ff09932
Use the changed volume when 'Test'ing.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19564
diff
changeset
|
680 | int volume; |
|
18440
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
681 | |
|
19322
658540eb7eb1
Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19321
diff
changeset
|
682 | 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
|
683 | finch_sound_get_active_profile(), event->pref); |
|
658540eb7eb1
Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19321
diff
changeset
|
684 | 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
|
685 | finch_sound_get_active_profile(), event->pref); |
|
19582
34527ff09932
Use the changed volume when 'Test'ing.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19564
diff
changeset
|
686 | volpref = g_strdup(make_pref("/volume")); |
|
18440
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
687 | |
|
19322
658540eb7eb1
Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19321
diff
changeset
|
688 | 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
|
689 | tmpfile = g_strdup(purple_prefs_get_path(file)); |
|
19582
34527ff09932
Use the changed volume when 'Test'ing.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19564
diff
changeset
|
690 | volume = purple_prefs_get_int(volpref); |
|
18440
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
691 | |
|
19933
258c1ca27063
Fix a small bug in sound-test, thanks to igungor in #pidgin.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19859
diff
changeset
|
692 | 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
|
693 | if (!temp_value) purple_prefs_set_bool(enabled, TRUE); |
|
19582
34527ff09932
Use the changed volume when 'Test'ing.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19564
diff
changeset
|
694 | purple_prefs_set_int(volpref, gnt_slider_get_value(GNT_SLIDER(pref_dialog->volume))); |
|
18440
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
695 | |
|
18616
ce2f681adadf
merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents:
18440
diff
changeset
|
696 | purple_sound_play_event(id, NULL); |
|
18440
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
697 | |
|
19322
658540eb7eb1
Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19321
diff
changeset
|
698 | 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
|
699 | purple_prefs_set_path(file, tmpfile); |
|
19582
34527ff09932
Use the changed volume when 'Test'ing.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19564
diff
changeset
|
700 | purple_prefs_set_int(volpref, volume); |
|
18440
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
701 | |
|
19322
658540eb7eb1
Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19321
diff
changeset
|
702 | g_free(enabled); |
|
658540eb7eb1
Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19321
diff
changeset
|
703 | g_free(file); |
|
658540eb7eb1
Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19321
diff
changeset
|
704 | g_free(tmpfile); |
|
19582
34527ff09932
Use the changed volume when 'Test'ing.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19564
diff
changeset
|
705 | g_free(volpref); |
|
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 ! */ |
|
ce2f681adadf
merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents:
18440
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 | 720 | |
| 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 | |
|
19322
658540eb7eb1
Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19321
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 | 749 | static void |
| 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 | 762 | g_free(pref_dialog); |
| 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 | 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 | 768 | { |
| 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 | |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
781 | gnt_slider_set_value(GNT_SLIDER(pref_dialog->volume), CLAMP(purple_prefs_get_int(make_pref("/volume")), 0, 100)); |
|
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
|
782 | |
|
18700
1cc3e27756ef
Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18699
diff
changeset
|
783 | for (i = 0; i < PURPLE_NUM_SOUNDS; i++) { |
| 18683 | 784 | FinchSoundEvent * event = &sounds[i]; |
| 785 | gchar *boolpref; | |
|
19322
658540eb7eb1
Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19321
diff
changeset
|
786 | gchar *filepref, *basename = NULL; |
| 18683 | 787 | const char * profile = finch_sound_get_active_profile(); |
| 788 | ||
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
789 | 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
|
790 | |
|
19322
658540eb7eb1
Fix a couple of memory leaks.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19321
diff
changeset
|
791 | g_free(event->file); |
| 18683 | 792 | 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
|
793 | |
|
18691
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
794 | g_free(filepref); |
|
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
795 | if (event->label == NULL) { |
| 18683 | 796 | continue; |
| 797 | } | |
| 798 | ||
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
799 | 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
|
800 | |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
801 | 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
|
802 | 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
|
803 | 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
|
804 | 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
|
805 | |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
806 | 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
|
807 | |
| 18683 | 808 | g_free(boolpref); |
| 809 | } | |
|
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
|
810 | |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
811 | 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
|
812 | |
|
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
|
813 | 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
|
814 | } |
|
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 | |
|
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 | 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
|
817 | 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
|
818 | { |
|
18700
1cc3e27756ef
Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18699
diff
changeset
|
819 | if (!strcmp(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
|
820 | 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
|
821 | 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
|
822 | } |
|
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 | |
|
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 | 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
|
825 | 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
|
826 | { |
|
18704
26282ae9a28e
Deleting profile is now from the entry.
Eric Polino <aluink@pidgin.im>
parents:
18703
diff
changeset
|
827 | 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
|
828 | 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
|
829 | |
|
18700
1cc3e27756ef
Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18699
diff
changeset
|
830 | if (!strcmp(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
|
831 | 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
|
832 | |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
833 | 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
|
834 | 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
|
835 | 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
|
836 | |
|
18700
1cc3e27756ef
Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18699
diff
changeset
|
837 | if (!strcmp(pref_dialog->original_profile, profile)) { |
|
18697
5821988c1c4c
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
18696
diff
changeset
|
838 | g_free(pref_dialog->original_profile); |
|
5821988c1c4c
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
18696
diff
changeset
|
839 | 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
|
840 | } |
|
5821988c1c4c
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
18696
diff
changeset
|
841 | |
|
18717
4c0284a98465
Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18704
diff
changeset
|
842 | if(!strcmp(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
|
843 | 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
|
844 | |
|
18717
4c0284a98465
Whitespace fix.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18704
diff
changeset
|
845 | 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
|
846 | } |
|
48f64b271ad6
Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents:
18694
diff
changeset
|
847 | |
|
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 | static void |
|
18697
5821988c1c4c
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
18696
diff
changeset
|
849 | 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
|
850 | { |
|
48f64b271ad6
Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents:
18694
diff
changeset
|
851 | 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
|
852 | 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
|
853 | if (!finch_sound_profile_exists(profile)) { |
|
18697
5821988c1c4c
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
18696
diff
changeset
|
854 | 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
|
855 | 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
|
856 | 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
|
857 | row, |
|
1cc3e27756ef
Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18699
diff
changeset
|
858 | NULL, NULL); |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
859 | 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
|
860 | 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
|
861 | finch_sound_set_active_profile(key); |
|
1cc3e27756ef
Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18699
diff
changeset
|
862 | } else |
|
1cc3e27756ef
Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18699
diff
changeset
|
863 | 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
|
864 | } |
|
48f64b271ad6
Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents:
18694
diff
changeset
|
865 | |
|
48f64b271ad6
Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents:
18694
diff
changeset
|
866 | static void |
|
18697
5821988c1c4c
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
18696
diff
changeset
|
867 | 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
|
868 | { |
|
5821988c1c4c
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
18696
diff
changeset
|
869 | reload_pref_window(newkey); |
|
5821988c1c4c
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
18696
diff
changeset
|
870 | } |
|
5821988c1c4c
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
18696
diff
changeset
|
871 | |
|
5821988c1c4c
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
18696
diff
changeset
|
872 | 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
|
873 | 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
|
874 | { |
|
48f64b271ad6
Added sound profiles. First revision that's anywhere near stable, _shouldn't_ crash though.
Eric Polino <aluink@pidgin.im>
parents:
18694
diff
changeset
|
875 | 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
|
876 | gnt_widget_destroy(GNT_WIDGET(win)); |
| 18683 | 877 | } |
| 878 | ||
|
18294
8186bc6ffbb4
Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents:
18292
diff
changeset
|
879 | void |
|
18295
bd26c37841f8
Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents:
18294
diff
changeset
|
880 | finch_sounds_show_all(void) |
|
bd26c37841f8
Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents:
18294
diff
changeset
|
881 | { |
|
18696
6036397c0038
Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents:
18695
diff
changeset
|
882 | GntWidget *box, *tmpbox, *splitbox, *cmbox, *slider; |
|
18294
8186bc6ffbb4
Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents:
18292
diff
changeset
|
883 | GntWidget *entry; |
|
18295
bd26c37841f8
Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents:
18294
diff
changeset
|
884 | GntWidget *chkbox; |
|
bd26c37841f8
Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents:
18294
diff
changeset
|
885 | GntWidget *button; |
|
bd26c37841f8
Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents:
18294
diff
changeset
|
886 | GntWidget *label; |
|
18439
5b6c9a328910
Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents:
18438
diff
changeset
|
887 | GntWidget *tree; |
|
18296
9461f264ee5f
Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents:
18295
diff
changeset
|
888 | GntWidget *win; |
|
18295
bd26c37841f8
Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents:
18294
diff
changeset
|
889 | |
|
18439
5b6c9a328910
Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents:
18438
diff
changeset
|
890 | gint i; |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
891 | GList *itr, *list; |
|
18434
48c2aa1fc3a9
Made sound_pref_data a pointer
Eric Polino <aluink@pidgin.im>
parents:
18433
diff
changeset
|
892 | |
|
18700
1cc3e27756ef
Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18699
diff
changeset
|
893 | if (pref_dialog) { |
| 18435 | 894 | gnt_window_present(pref_dialog->window); |
|
18295
bd26c37841f8
Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents:
18294
diff
changeset
|
895 | return; |
|
bd26c37841f8
Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents:
18294
diff
changeset
|
896 | } |
|
bd26c37841f8
Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents:
18294
diff
changeset
|
897 | |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
898 | pref_dialog = g_new0(SoundPrefDialog, 1); |
|
18294
8186bc6ffbb4
Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents:
18292
diff
changeset
|
899 | |
|
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
|
900 | 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
|
901 | |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
902 | 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
|
903 | 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
|
904 | 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
|
905 | 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
|
906 | 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
|
907 | 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
|
908 | |
|
18696
6036397c0038
Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents:
18695
diff
changeset
|
909 | /* Profiles */ |
|
6036397c0038
Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents:
18695
diff
changeset
|
910 | splitbox = gnt_hbox_new(FALSE); |
|
18699
d8bc90509020
Reduce some of the paddings.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18698
diff
changeset
|
911 | gnt_box_set_pad(GNT_BOX(splitbox), 0); |
|
d8bc90509020
Reduce some of the paddings.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18698
diff
changeset
|
912 | 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
|
913 | |
|
6036397c0038
Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents:
18695
diff
changeset
|
914 | box = gnt_vbox_new(FALSE); |
|
18699
d8bc90509020
Reduce some of the paddings.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18698
diff
changeset
|
915 | 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
|
916 | 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
|
917 | 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
|
918 | 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
|
919 | 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
|
920 | 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
|
921 | |
|
5821988c1c4c
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
18696
diff
changeset
|
922 | 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
|
923 | for (; itr; itr = itr->next) { |
| 19320 | 924 | /* Do not free itr->data. It's the stored as a key for the tree, and will |
| 925 | * be freed when the tree is destroyed. */ | |
| 926 | gnt_tree_add_row_after(GNT_TREE(tree), itr->data, | |
| 927 | 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
|
928 | } |
|
5821988c1c4c
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
18696
diff
changeset
|
929 | g_list_free(list); |
|
5821988c1c4c
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
18696
diff
changeset
|
930 | |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
931 | 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
|
932 | |
|
6036397c0038
Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents:
18695
diff
changeset
|
933 | 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
|
934 | 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
|
935 | |
|
6036397c0038
Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents:
18695
diff
changeset
|
936 | tmpbox = gnt_hbox_new(FALSE); |
|
6036397c0038
Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents:
18695
diff
changeset
|
937 | 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
|
938 | 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
|
939 | 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
|
940 | 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
|
941 | 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
|
942 | 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
|
943 | 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
|
944 | 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
|
945 | |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
946 | 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
|
947 | |
|
6036397c0038
Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents:
18695
diff
changeset
|
948 | /* Sound method */ |
|
6036397c0038
Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents:
18695
diff
changeset
|
949 | |
|
6036397c0038
Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents:
18695
diff
changeset
|
950 | box = gnt_vbox_new(FALSE); |
|
18699
d8bc90509020
Reduce some of the paddings.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18698
diff
changeset
|
951 | 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
|
952 | |
| 18435 | 953 | pref_dialog->method = cmbox = gnt_combo_box_new(); |
| 18437 | 954 | 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
|
955 | 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
|
956 | 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
|
957 | 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
|
958 | 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
|
959 | 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
|
960 | 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
|
961 | |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
962 | label = gnt_label_new_with_format(_("Sound Method"), GNT_TEXT_FLAG_BOLD); |
|
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
963 | 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
|
964 | 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
|
965 | 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
|
966 | 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
|
967 | 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
|
968 | 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
|
969 | 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
|
970 | |
|
18696
6036397c0038
Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents:
18695
diff
changeset
|
971 | 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
|
972 | 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
|
973 | 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
|
974 | gnt_box_add_widget(GNT_BOX(tmpbox), gnt_label_new(_("Sound Command\n(%s for filename)"))); |
| 18683 | 975 | 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
|
976 | 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
|
977 | 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
|
978 | |
|
18696
6036397c0038
Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents:
18695
diff
changeset
|
979 | 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
|
980 | |
|
18691
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
981 | /* Sound options */ |
|
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), gnt_label_new_with_format(_("Sound Options"), GNT_TEXT_FLAG_BOLD)); |
| 18437 | 983 | 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
|
984 | 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
|
985 | |
|
18696
6036397c0038
Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents:
18695
diff
changeset
|
986 | 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
|
987 | 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
|
988 | 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
|
989 | gnt_box_add_widget(GNT_BOX(tmpbox), gnt_label_new("Enable Sounds:")); |
| 18435 | 990 | 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
|
991 | 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
|
992 | 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
|
993 | 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
|
994 | 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
|
995 | 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
|
996 | |
|
18696
6036397c0038
Redid the look to the Sound Prefs
Eric Polino <aluink@pidgin.im>
parents:
18695
diff
changeset
|
997 | 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
|
998 | 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
|
999 | 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
|
1000 | gnt_box_add_widget(GNT_BOX(tmpbox), gnt_label_new(_("Volume(0-100):"))); |
|
18295
bd26c37841f8
Added more to the Sounds Preferences
Eric Polino <aluink@pidgin.im>
parents:
18294
diff
changeset
|
1001 | |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
1002 | pref_dialog->volume = slider = gnt_slider_new(FALSE, 100, 0); |
|
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
1003 | gnt_slider_set_step(GNT_SLIDER(slider), 5); |
|
19588
d9a0bb5a99d0
Specify small and large step values for the volume slider.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19582
diff
changeset
|
1004 | gnt_slider_set_small_step(GNT_SLIDER(slider), 1); |
|
d9a0bb5a99d0
Specify small and large step values for the volume slider.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19582
diff
changeset
|
1005 | gnt_slider_set_large_step(GNT_SLIDER(slider), 20); |
|
18432
8fd3963b9ce0
Changed the volume changer to a GntSlider.
Eric Polino <aluink@pidgin.im>
parents:
18296
diff
changeset
|
1006 | label = gnt_label_new(""); |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
1007 | gnt_slider_reflect_label(GNT_SLIDER(slider), GNT_LABEL(label)); |
|
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
1008 | gnt_box_set_pad(GNT_BOX(tmpbox), 1); |
|
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
1009 | gnt_box_add_widget(GNT_BOX(tmpbox), slider); |
|
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
1010 | gnt_box_add_widget(GNT_BOX(tmpbox), label); |
|
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
1011 | 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
|
1012 | 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
|
1013 | |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
1014 | 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
|
1015 | |
|
18691
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
1016 | 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
|
1017 | |
|
18691
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
1018 | /* Sound events */ |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
1019 | 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
|
1020 | 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
|
1021 | 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
|
1022 | gnt_tree_set_show_title(GNT_TREE(tree), TRUE); |
|
18439
5b6c9a328910
Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents:
18438
diff
changeset
|
1023 | |
|
18700
1cc3e27756ef
Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18699
diff
changeset
|
1024 | 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
|
1025 | 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
|
1026 | |
|
18700
1cc3e27756ef
Fix some crashes when adding new profiles with the same name.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18699
diff
changeset
|
1027 | if (event->label == NULL) { |
|
18440
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
1028 | continue; |
|
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
1029 | } |
|
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
1030 | |
|
18616
ce2f681adadf
merged FinchSoundPrefEvent with FinchSoundEvent and removed id from FSE
Eric Polino <aluink@pidgin.im>
parents:
18440
diff
changeset
|
1031 | 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
|
1032 | 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
|
1033 | NULL, NULL); |
|
5b6c9a328910
Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents:
18438
diff
changeset
|
1034 | } |
|
5b6c9a328910
Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents:
18438
diff
changeset
|
1035 | |
|
18440
9d1e67686dfb
Some more work to the sound prefs
Eric Polino <aluink@pidgin.im>
parents:
18439
diff
changeset
|
1036 | 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
|
1037 | gnt_box_add_widget(GNT_BOX(win), tree); |
|
18439
5b6c9a328910
Fixed Cancel button callback
Eric Polino <aluink@pidgin.im>
parents:
18438
diff
changeset
|
1038 | |
|
18678
2fc084ec99cd
Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18620
diff
changeset
|
1039 | box = gnt_hbox_new(FALSE); |
|
18679
c81c8ce38789
Mark some strings for translation.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18678
diff
changeset
|
1040 | 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
|
1041 | 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
|
1042 | 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
|
1043 | 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
|
1044 | 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
|
1045 | 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
|
1046 | 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
|
1047 | 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
|
1048 | 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
|
1049 | 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
|
1050 | |
| 18683 | 1051 | gnt_box_add_widget(GNT_BOX(win), gnt_line_new(FALSE)); |
| 1052 | ||
| 1053 | /* Add new stuff before this */ | |
|
18678
2fc084ec99cd
Fix a potential bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18620
diff
changeset
|
1054 | 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
|
1055 | 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
|
1056 | 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
|
1057 | 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
|
1058 | 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
|
1059 | 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
|
1060 | 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
|
1061 | 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
|
1062 | 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
|
1063 | |
|
18698
c4a9247e5b5c
In case some decide to get anal about spaces after commas.
Eric Polino <aluink@pidgin.im>
parents:
18697
diff
changeset
|
1064 | 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
|
1065 | |
|
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
|
1066 | load_pref_window(finch_sound_get_active_profile()); |
| 18683 | 1067 | |
|
18296
9461f264ee5f
Created SoundPrefDialog to store dialog data.
Eric Polino <aluink@pidgin.im>
parents:
18295
diff
changeset
|
1068 | gnt_widget_show(win); |
|
19612
043dcbf3a36e
Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19588
diff
changeset
|
1069 | } |
|
043dcbf3a36e
Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19588
diff
changeset
|
1070 | |
|
043dcbf3a36e
Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19588
diff
changeset
|
1071 | gboolean finch_sound_is_enabled(void) |
|
043dcbf3a36e
Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19588
diff
changeset
|
1072 | { |
|
043dcbf3a36e
Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19588
diff
changeset
|
1073 | const char *pref = make_pref("/method"); |
|
043dcbf3a36e
Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19588
diff
changeset
|
1074 | 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
|
1075 | |
|
043dcbf3a36e
Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19588
diff
changeset
|
1076 | if (!method) |
|
043dcbf3a36e
Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19588
diff
changeset
|
1077 | return FALSE; |
|
043dcbf3a36e
Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19588
diff
changeset
|
1078 | if (strcmp(method, "nosound") == 0) |
|
043dcbf3a36e
Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19588
diff
changeset
|
1079 | return FALSE; |
|
043dcbf3a36e
Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19588
diff
changeset
|
1080 | if (purple_prefs_get_int(make_pref("/volume")) <= 0) |
|
043dcbf3a36e
Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19588
diff
changeset
|
1081 | return FALSE; |
|
043dcbf3a36e
Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19588
diff
changeset
|
1082 | |
|
043dcbf3a36e
Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19588
diff
changeset
|
1083 | return TRUE; |
|
043dcbf3a36e
Fix #2767 (per-conversation/chat mute option).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19588
diff
changeset
|
1084 | } |
|
18294
8186bc6ffbb4
Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents:
18292
diff
changeset
|
1085 | |
| 18155 | 1086 | static PurpleSoundUiOps sound_ui_ops = |
| 1087 | { | |
| 1088 | finch_sound_init, | |
| 1089 | finch_sound_uninit, | |
| 1090 | finch_sound_play_file, | |
| 1091 | finch_sound_play_event, | |
| 1092 | NULL, | |
| 1093 | NULL, | |
| 1094 | NULL, | |
| 1095 | NULL | |
| 1096 | }; | |
| 1097 | ||
| 1098 | PurpleSoundUiOps * | |
| 1099 | finch_sound_get_ui_ops(void) | |
| 1100 | { | |
| 1101 | return &sound_ui_ops; | |
| 1102 | } | |
|
18691
bde2c3303cae
One leak fix. Mostly cosmetic changes.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
18686
diff
changeset
|
1103 |