Mercurial > pidgin.yaz
annotate finch/gntsound.h @ 19175:c79177766e13
Fix faulty merge.
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Sat, 11 Aug 2007 09:32:06 +0000 |
parents | fbecc35c23bb |
children | 19a4594e939c |
rev | line source |
---|---|
19100 | 1 /** |
2 * @file gntsound.h GNT Sound API | |
3 * @ingroup finch | |
4 * | |
5 * finch | |
6 * | |
7 * Finch is the legal property of its developers, whose names are too numerous | |
8 * to list here. Please refer to the COPYRIGHT file distributed with this | |
9 * source distribution. | |
10 * | |
11 * This program is free software; you can redistribute it and/or modify | |
12 * it under the terms of the GNU General Public License as published by | |
13 * the Free Software Foundation; either version 2 of the License, or | |
14 * (at your option) any later version. | |
15 * | |
16 * This program is distributed in the hope that it will be useful, | |
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 * GNU General Public License for more details. | |
20 * | |
21 * You should have received a copy of the GNU General Public License | |
22 * along with this program; if not, write to the Free Software | |
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
24 */ | |
25 #ifndef _GNT_SOUND_H | |
26 #define _GNT_SOUND_H | |
27 | |
28 #include "sound.h" | |
29 | |
30 /**********************************************************************/ | |
19160
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
31 /** @name GNT Sound API */ |
19100 | 32 /**********************************************************************/ |
33 /*@{*/ | |
34 | |
35 /** | |
19160
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
36 * Get the prefs option for an event. |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
37 * |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
38 * @param event The event. |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
39 * @return The option. |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
40 */ |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
41 const char *finch_sound_get_event_option(PurpleSoundEventID event); |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
42 |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
43 /** |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
44 * Get the label for an event. |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
45 * |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
46 * @param event The event. |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
47 * @return The label. |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
48 */ |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
49 const char *finch_sound_get_event_label(PurpleSoundEventID event); |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
50 |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
51 /* |
19146 | 52 * Get the name of the active sound profile. |
53 * | |
19160
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
54 * @return the name |
19146 | 55 */ |
56 const char *finch_sound_get_active_profile(void); | |
57 | |
58 /** | |
59 * Set the active profile. If the profile doesn't exist, nothing is changed. | |
60 * | |
19160
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
61 * |
19146 | 62 */ |
63 void finch_sound_set_active_profile(const char *name); | |
64 | |
65 /** | |
19160
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
66 * Returns whether a profile exists or not. |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
67 * |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
68 * @parame name The name of the profile to check for |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
69 * return Existance value |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
70 * |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
71 */ |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
72 gboolean finch_sound_profile_exists(const char *name); |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
73 |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
74 |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
75 /** |
19146 | 76 * Get a list of available sound profiles. |
77 * | |
19160
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
78 * @return A list of strings denoting sound profile names. Free this list when you're done with it. |
19146 | 79 */ |
80 GList *finch_sound_get_profiles(void); | |
81 | |
19100 | 82 /** |
19160
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
83 * Gets GNT sound UI ops. |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
84 * |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
85 * @return The UI operations structure. |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
86 */ |
19100 | 87 PurpleSoundUiOps *finch_sound_get_ui_ops(void); |
88 | |
89 /** | |
19117
907c41608ada
Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents:
19100
diff
changeset
|
90 * Show the sound settings dialog. |
907c41608ada
Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents:
19100
diff
changeset
|
91 */ |
907c41608ada
Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents:
19100
diff
changeset
|
92 void finch_sounds_show_all(void); |
907c41608ada
Added Sounds to the actions list
Eric Polino <aluink@pidgin.im>
parents:
19100
diff
changeset
|
93 |
19160
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
94 /** |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
95 * Get the handle for the GNT sound system. |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
96 * |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
97 * @return The handle to the sound system |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
98 */ |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
99 void *finch_sound_get_handle(void); |
fbecc35c23bb
Profiles now work with the new layout
Eric Polino <aluink@pidgin.im>
parents:
19154
diff
changeset
|
100 |
19100 | 101 /*@}*/ |
102 | |
103 #endif |