Mercurial > pidgin
annotate src/sound.c @ 6322:dd2be7cd66df
[gaim-migrate @ 6821]
This is:
-Alphabetize the translation things in ChangeLog
-Spell Brian Tarricone's name correctly (I hope...)
-A fix for a crash when renaming a group containing a chat, thanks to
javabsp. Me gusta this change.
-Make the rename group dialog use gaim_request_input(). The old dialog
may be a bit prettier, but this one uses the request code, which means
less work for UIs, which rocks.
-Change the TRUE and FALSE defines in aim.h to be more compatible with c++.
Thanks to Zack Rusin for this change.
-Declare aim.h as a C file when it is used in a c++ program. This should
let libfaim be used in C++ programs such as kopete. Thanks again to
Zack Rusin.
-Rename aimutil_itemidx() to aimutil_itemindex(). "idx" is not a standard
abbreviation, and code is written once and read many times--it should be
easily readable.
-Not an automatic laundry folding machine. So I'm going to do that.
(Fold my laundry)
(Not automatically)
(yet)
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Tue, 29 Jul 2003 04:27:31 +0000 |
| parents | 059d95c67cda |
| children | 8f94cce8faa5 |
| 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 |
|
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
26 /* XXX: this goes away when away messages become sane */ |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
27 #include "ui.h" |
|
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5684
diff
changeset
|
28 |
|
4019
e53d9f9969d0
[gaim-migrate @ 4219]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4014
diff
changeset
|
29 |
| 5684 | 30 static GaimSoundUiOps *sound_ui_ops = NULL; |
| 3319 | 31 |
| 5684 | 32 void gaim_set_sound_ui_ops(GaimSoundUiOps *ops) |
| 4430 | 33 { |
| 5684 | 34 if(sound_ui_ops && sound_ui_ops->shutdown) |
| 35 sound_ui_ops->shutdown(); | |
| 36 sound_ui_ops = ops; | |
| 37 if(sound_ui_ops && sound_ui_ops->init) | |
| 38 sound_ui_ops->init(); | |
| 4430 | 39 } |
| 40 | |
| 5684 | 41 GaimSoundUiOps *gaim_get_sound_ui_ops(void) |
| 4430 | 42 { |
| 5684 | 43 return sound_ui_ops; |
| 4581 | 44 } |
| 45 | |
| 5684 | 46 void gaim_sound_init() |
| 47 { | |
| 48 gaim_prefs_add_none("/core/sound"); | |
| 49 gaim_prefs_add_bool("/core/sound/while_away", FALSE); | |
| 50 } | |
| 4581 | 51 |
| 5684 | 52 void gaim_sound_shutdown() |
| 4430 | 53 { |
| 5684 | 54 if(sound_ui_ops && sound_ui_ops->shutdown) |
| 55 sound_ui_ops->shutdown(); | |
| 56 } | |
| 4430 | 57 |
| 5684 | 58 void gaim_sound_play_file(const char *filename) |
| 59 { | |
| 60 if(awaymessage && !gaim_prefs_get_bool("/core/sound/while_away")) | |
| 4561 | 61 return; |
| 4430 | 62 |
| 5684 | 63 if(sound_ui_ops && sound_ui_ops->play_file) |
| 64 sound_ui_ops->play_file(filename); | |
|
1006
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
899
diff
changeset
|
65 } |
|
0a4d0ed65e17
[gaim-migrate @ 1016]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
899
diff
changeset
|
66 |
| 4561 | 67 void gaim_sound_play_event(GaimSoundEventID event) |
| 1 | 68 { |
| 5684 | 69 if(awaymessage && !gaim_prefs_get_bool("/core/sound/while_away")) |
| 4561 | 70 return; |
| 71 | |
| 5684 | 72 if(sound_ui_ops && sound_ui_ops->play_event) |
| 73 sound_ui_ops->play_event(event); | |
| 4561 | 74 } |
