| 36 /*@{*/ |
36 /*@{*/ |
| 37 |
37 |
| 38 /** |
38 /** |
| 39 * Get the prefs option for an event. |
39 * Get the prefs option for an event. |
| 40 * |
40 * |
| 41 * @param event The event. |
41 * @event: The event. |
| 42 * @return The option. |
42 * Returns: The option. |
| 43 */ |
43 */ |
| 44 const char *pidgin_sound_get_event_option(PurpleSoundEventID event); |
44 const char *pidgin_sound_get_event_option(PurpleSoundEventID event); |
| 45 |
45 |
| 46 /** |
46 /** |
| 47 * Get the label for an event. |
47 * Get the label for an event. |
| 48 * |
48 * |
| 49 * @param event The event. |
49 * @event: The event. |
| 50 * @return The label. |
50 * Returns: The label. |
| 51 */ |
51 */ |
| 52 const char *pidgin_sound_get_event_label(PurpleSoundEventID event); |
52 const char *pidgin_sound_get_event_label(PurpleSoundEventID event); |
| 53 |
53 |
| 54 /** |
54 /** |
| 55 * Gets GTK+ sound UI ops. |
55 * Gets GTK+ sound UI ops. |
| 56 * |
56 * |
| 57 * @return The UI operations structure. |
57 * Returns: The UI operations structure. |
| 58 */ |
58 */ |
| 59 PurpleSoundUiOps *pidgin_sound_get_ui_ops(void); |
59 PurpleSoundUiOps *pidgin_sound_get_ui_ops(void); |
| 60 |
60 |
| 61 /** |
61 /** |
| 62 * Get the handle for the GTK+ sound system. |
62 * Get the handle for the GTK+ sound system. |
| 63 * |
63 * |
| 64 * @return The handle to the sound system |
64 * Returns: The handle to the sound system |
| 65 */ |
65 */ |
| 66 void *pidgin_sound_get_handle(void); |
66 void *pidgin_sound_get_handle(void); |
| 67 |
67 |
| 68 /** |
68 /** |
| 69 * Returns true Pidgin is using customized sounds |
69 * Returns true Pidgin is using customized sounds |
| 70 * |
70 * |
| 71 * @return TRUE if non default sounds are used. |
71 * Returns: TRUE if non default sounds are used. |
| 72 */ |
72 */ |
| 73 gboolean pidgin_sound_is_customized(void); |
73 gboolean pidgin_sound_is_customized(void); |
| 74 |
74 |
| 75 /*@}*/ |
75 /*@}*/ |
| 76 |
76 |