Mercurial > pidgin
annotate src/sound.c @ 9937:354487bb9586
[gaim-migrate @ 10829]
Removed credit to x-chat, considering that they've decided to rape the GPL.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Thu, 02 Sep 2004 16:15:50 +0000 |
parents | 4a15962c344a |
children | e4a27c9aec4c |
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 */ |
9730 | 29 #include "away.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
30 |
4019
e53d9f9969d0
[gaim-migrate @ 4219]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4014
diff
changeset
|
31 |
5684 | 32 static GaimSoundUiOps *sound_ui_ops = NULL; |
3319 | 33 |
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
34 void gaim_sound_set_ui_ops(GaimSoundUiOps *ops) |
4430 | 35 { |
5684 | 36 if(sound_ui_ops && sound_ui_ops->shutdown) |
37 sound_ui_ops->shutdown(); | |
38 sound_ui_ops = ops; | |
39 if(sound_ui_ops && sound_ui_ops->init) | |
40 sound_ui_ops->init(); | |
4430 | 41 } |
42 | |
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
43 GaimSoundUiOps *gaim_sound_get_ui_ops(void) |
4430 | 44 { |
5684 | 45 return sound_ui_ops; |
4581 | 46 } |
47 | |
5684 | 48 void gaim_sound_init() |
49 { | |
50 gaim_prefs_add_none("/core/sound"); | |
51 gaim_prefs_add_bool("/core/sound/while_away", FALSE); | |
52 } | |
4581 | 53 |
5684 | 54 void gaim_sound_shutdown() |
4430 | 55 { |
5684 | 56 if(sound_ui_ops && sound_ui_ops->shutdown) |
57 sound_ui_ops->shutdown(); | |
58 } | |
4430 | 59 |
5684 | 60 void gaim_sound_play_file(const char *filename) |
61 { | |
62 if(awaymessage && !gaim_prefs_get_bool("/core/sound/while_away")) | |
4561 | 63 return; |
4430 | 64 |
5684 | 65 if(sound_ui_ops && sound_ui_ops->play_file) |
66 sound_ui_ops->play_file(filename); | |
1006
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
899
diff
changeset
|
67 } |
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
899
diff
changeset
|
68 |
4561 | 69 void gaim_sound_play_event(GaimSoundEventID event) |
1 | 70 { |
5684 | 71 if(awaymessage && !gaim_prefs_get_bool("/core/sound/while_away")) |
4561 | 72 return; |
73 | |
5684 | 74 if(sound_ui_ops && sound_ui_ops->play_event) |
75 sound_ui_ops->play_event(event); | |
4561 | 76 } |