Mercurial > pidgin.yaz
annotate src/sound.c @ 9363:997c28571364
[gaim-migrate @ 10171]
Patches by Felipe (shx) to clean up some code, add some segfault
precautions, fix chats so that we'll see the other users in the chat
correctly after invites, and to have MSN ignore the local buddy list adds
if we're not already signed on (which fixes a *very* annoying bug I was
having). Thanks again!
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Wed, 23 Jun 2004 19:38:58 +0000 |
parents | fa6395637e2c |
children | 4d05b6e9e9cd |
rev | line source |
---|---|
1 | 1 /* |
2 * gaim | |
3 * | |
8046 | 4 * Gaim is the legal property of its developers, whose names are too numerous |
5 * to list here. Please refer to the COPYRIGHT file distributed with this | |
6 * source distribution. | |
1 | 7 * |
8 * This program is free software; you can redistribute it and/or modify | |
9 * it under the terms of the GNU General Public License as published by | |
10 * the Free Software Foundation; either version 2 of the License, or | |
11 * (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, | |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 * GNU General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU General Public License | |
19 * along with this program; if not, write to the Free Software | |
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
21 * | |
22 */ | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
23 #include "internal.h" |
3630 | 24 |
4561 | 25 #include "sound.h" |
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
26 #include "prefs.h" |
1 | 27 |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
28 /* XXX CORE/UI: this goes away when away messages become sane */ |
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
29 #include "gtkinternal.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
30 #include "ui.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
31 |
4019
e53d9f9969d0
[gaim-migrate @ 4219]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4014
diff
changeset
|
32 |
5684 | 33 static GaimSoundUiOps *sound_ui_ops = NULL; |
3319 | 34 |
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
35 void gaim_sound_set_ui_ops(GaimSoundUiOps *ops) |
4430 | 36 { |
5684 | 37 if(sound_ui_ops && sound_ui_ops->shutdown) |
38 sound_ui_ops->shutdown(); | |
39 sound_ui_ops = ops; | |
40 if(sound_ui_ops && sound_ui_ops->init) | |
41 sound_ui_ops->init(); | |
4430 | 42 } |
43 | |
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
44 GaimSoundUiOps *gaim_sound_get_ui_ops(void) |
4430 | 45 { |
5684 | 46 return sound_ui_ops; |
4581 | 47 } |
48 | |
5684 | 49 void gaim_sound_init() |
50 { | |
51 gaim_prefs_add_none("/core/sound"); | |
52 gaim_prefs_add_bool("/core/sound/while_away", FALSE); | |
53 } | |
4581 | 54 |
5684 | 55 void gaim_sound_shutdown() |
4430 | 56 { |
5684 | 57 if(sound_ui_ops && sound_ui_ops->shutdown) |
58 sound_ui_ops->shutdown(); | |
59 } | |
4430 | 60 |
5684 | 61 void gaim_sound_play_file(const char *filename) |
62 { | |
63 if(awaymessage && !gaim_prefs_get_bool("/core/sound/while_away")) | |
4561 | 64 return; |
4430 | 65 |
5684 | 66 if(sound_ui_ops && sound_ui_ops->play_file) |
67 sound_ui_ops->play_file(filename); | |
1006
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
899
diff
changeset
|
68 } |
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
899
diff
changeset
|
69 |
4561 | 70 void gaim_sound_play_event(GaimSoundEventID event) |
1 | 71 { |
5684 | 72 if(awaymessage && !gaim_prefs_get_bool("/core/sound/while_away")) |
4561 | 73 return; |
74 | |
5684 | 75 if(sound_ui_ops && sound_ui_ops->play_event) |
76 sound_ui_ops->play_event(event); | |
4561 | 77 } |