Mercurial > pidgin
annotate src/sound.c @ 7634:6c2115a8564e
[gaim-migrate @ 8259]
T.M.Thanh requests these updates
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Tue, 25 Nov 2003 23:21:31 +0000 |
| parents | feb3d21a7794 |
| children | fa6395637e2c |
| rev | line source |
|---|---|
| 1 | 1 /* |
| 2 * gaim | |
| 3 * | |
| 4561 | 4 * Copyright (C) 2003, Nathan Walp <faceprint@faceprint.com> |
| 1 | 5 * |
| 6 * This program is free software; you can redistribute it and/or modify | |
| 7 * it under the terms of the GNU General Public License as published by | |
| 8 * the Free Software Foundation; either version 2 of the License, or | |
| 9 * (at your option) any later version. | |
| 10 * | |
| 11 * This program is distributed in the hope that it will be useful, | |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 * GNU General Public License for more details. | |
| 15 * | |
| 16 * You should have received a copy of the GNU General Public License | |
| 17 * along with this program; if not, write to the Free Software | |
| 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 19 * | |
| 20 */ | |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
21 #include "internal.h" |
| 3630 | 22 |
| 4561 | 23 #include "sound.h" |
|
5545
7a64114641c3
[gaim-migrate @ 5946]
Christian Hammond <chipx86@chipx86.com>
parents:
5436
diff
changeset
|
24 #include "prefs.h" |
| 1 | 25 |
|
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
26 /* XXX CORE/UI: this goes away when away messages become sane */ |
|
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
27 #include "gtkinternal.h" |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
28 #include "ui.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
29 |
|
4019
e53d9f9969d0
[gaim-migrate @ 4219]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4014
diff
changeset
|
30 |
| 5684 | 31 static GaimSoundUiOps *sound_ui_ops = NULL; |
| 3319 | 32 |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
33 void gaim_sound_set_ui_ops(GaimSoundUiOps *ops) |
| 4430 | 34 { |
| 5684 | 35 if(sound_ui_ops && sound_ui_ops->shutdown) |
| 36 sound_ui_ops->shutdown(); | |
| 37 sound_ui_ops = ops; | |
| 38 if(sound_ui_ops && sound_ui_ops->init) | |
| 39 sound_ui_ops->init(); | |
| 4430 | 40 } |
| 41 | |
|
7035
feb3d21a7794
[gaim-migrate @ 7598]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
42 GaimSoundUiOps *gaim_sound_get_ui_ops(void) |
| 4430 | 43 { |
| 5684 | 44 return sound_ui_ops; |
| 4581 | 45 } |
| 46 | |
| 5684 | 47 void gaim_sound_init() |
| 48 { | |
| 49 gaim_prefs_add_none("/core/sound"); | |
| 50 gaim_prefs_add_bool("/core/sound/while_away", FALSE); | |
| 51 } | |
| 4581 | 52 |
| 5684 | 53 void gaim_sound_shutdown() |
| 4430 | 54 { |
| 5684 | 55 if(sound_ui_ops && sound_ui_ops->shutdown) |
| 56 sound_ui_ops->shutdown(); | |
| 57 } | |
| 4430 | 58 |
| 5684 | 59 void gaim_sound_play_file(const char *filename) |
| 60 { | |
| 61 if(awaymessage && !gaim_prefs_get_bool("/core/sound/while_away")) | |
| 4561 | 62 return; |
| 4430 | 63 |
| 5684 | 64 if(sound_ui_ops && sound_ui_ops->play_file) |
| 65 sound_ui_ops->play_file(filename); | |
|
1006
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
899
diff
changeset
|
66 } |
|
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
899
diff
changeset
|
67 |
| 4561 | 68 void gaim_sound_play_event(GaimSoundEventID event) |
| 1 | 69 { |
| 5684 | 70 if(awaymessage && !gaim_prefs_get_bool("/core/sound/while_away")) |
| 4561 | 71 return; |
| 72 | |
| 5684 | 73 if(sound_ui_ops && sound_ui_ops->play_event) |
| 74 sound_ui_ops->play_event(event); | |
| 4561 | 75 } |
