|
zacw@1739
|
1 |
/** |
|
zacw@1739
|
2 |
* @file sound-theme.h Purple Sound Theme Abstact Class API |
|
zacw@1739
|
3 |
*/ |
|
zacw@1739
|
4 |
|
|
zacw@1739
|
5 |
/* purple |
|
zacw@1739
|
6 |
* |
|
zacw@1739
|
7 |
* Purple is the legal property of its developers, whose names are too numerous |
|
zacw@1739
|
8 |
* to list here. Please refer to the COPYRIGHT file distributed with this |
|
zacw@1739
|
9 |
* source distribution. |
|
zacw@1739
|
10 |
* |
|
zacw@1739
|
11 |
* This program is free software; you can redistribute it and/or modify |
|
zacw@1739
|
12 |
* it under the terms of the GNU General Public License as published by |
|
zacw@1739
|
13 |
* the Free Software Foundation; either version 2 of the License, or |
|
zacw@1739
|
14 |
* (at your option) any later version. |
|
zacw@1739
|
15 |
* |
|
zacw@1739
|
16 |
* This program is distributed in the hope that it will be useful, |
|
zacw@1739
|
17 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
zacw@1739
|
18 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
zacw@1739
|
19 |
* GNU General Public License for more details. |
|
zacw@1739
|
20 |
* |
|
zacw@1739
|
21 |
* You should have received a copy of the GNU General Public License |
|
zacw@1739
|
22 |
* along with this program; if not, write to the Free Software |
|
zacw@1739
|
23 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
|
zacw@1739
|
24 |
*/ |
|
zacw@1739
|
25 |
|
|
zacw@1739
|
26 |
#ifndef PURPLE_SOUND_THEME_H |
|
zacw@1739
|
27 |
#define PURPLE_SOUND_THEME_H |
|
zacw@1739
|
28 |
|
|
zacw@1739
|
29 |
#include <glib.h> |
|
zacw@1739
|
30 |
#include <glib-object.h> |
|
zacw@1739
|
31 |
#include "theme.h" |
|
zacw@1739
|
32 |
#include "sound.h" |
|
zacw@1739
|
33 |
|
|
zacw@1739
|
34 |
/** |
|
zacw@1739
|
35 |
* extends PurpleTheme (theme.h) |
|
zacw@1739
|
36 |
* A purple sound theme. |
|
zacw@1739
|
37 |
* This is an object for Purple to represent a sound theme. |
|
zacw@1739
|
38 |
* |
|
zacw@1739
|
39 |
* PurpleSoundTheme is a PurpleTheme Object. |
|
zacw@1739
|
40 |
*/ |
|
zacw@1739
|
41 |
typedef struct _PurpleSoundTheme PurpleSoundTheme; |
|
zacw@1739
|
42 |
typedef struct _PurpleSoundThemeClass PurpleSoundThemeClass; |
|
zacw@1739
|
43 |
|
|
zacw@1739
|
44 |
#define PURPLE_TYPE_SOUND_THEME (purple_sound_theme_get_type()) |
|
zacw@1739
|
45 |
#define PURPLE_SOUND_THEME(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PURPLE_TYPE_SOUND_THEME, PurpleSoundTheme)) |
|
zacw@1739
|
46 |
#define PURPLE_SOUND_THEME_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), PURPLE_TYPE_SOUND_THEME, PurpleSoundThemeClass)) |
|
zacw@1739
|
47 |
#define PURPLE_IS_SOUND_THEME(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_SOUND_THEME)) |
|
zacw@1739
|
48 |
#define PURPLE_IS_SOUND_THEME_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), PURPLE_TYPE_SOUND_THEME)) |
|
zacw@1739
|
49 |
#define PURPLE_SOUND_THEME_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PURPLE_TYPE_SOUND_THEME, PurpleSoundThemeClass)) |
|
zacw@1739
|
50 |
|
|
zacw@1739
|
51 |
struct _PurpleSoundTheme |
|
zacw@1739
|
52 |
{ |
|
zacw@1739
|
53 |
PurpleTheme parent; |
|
zacw@1739
|
54 |
gpointer priv; |
|
zacw@1739
|
55 |
}; |
|
zacw@1739
|
56 |
|
|
zacw@1739
|
57 |
struct _PurpleSoundThemeClass |
|
zacw@1739
|
58 |
{ |
|
zacw@1739
|
59 |
PurpleThemeClass parent_class; |
|
zacw@1739
|
60 |
}; |
|
zacw@1739
|
61 |
|
|
zacw@1739
|
62 |
/**************************************************************************/ |
|
zacw@1739
|
63 |
/** @name Purple Sound Theme API */ |
|
zacw@1739
|
64 |
/**************************************************************************/ |
|
zacw@1739
|
65 |
G_BEGIN_DECLS |
|
zacw@1739
|
66 |
|
|
zacw@1739
|
67 |
/** |
|
zacw@1739
|
68 |
* GObject foo. |
|
zacw@1739
|
69 |
* @internal. |
|
zacw@1739
|
70 |
*/ |
|
zacw@1739
|
71 |
GType purple_sound_theme_get_type(void); |
|
zacw@1739
|
72 |
|
|
zacw@1739
|
73 |
/** |
|
zacw@1739
|
74 |
* Returns a copy of the filename for the sound event. |
|
zacw@1739
|
75 |
* |
|
zacw@2069
|
76 |
* @param theme The theme. |
|
zacw@1739
|
77 |
* @param event The purple sound event to look up. |
|
zacw@1739
|
78 |
* |
|
zacw@1739
|
79 |
* @returns The filename of the sound event. |
|
zacw@1739
|
80 |
*/ |
|
zacw@1739
|
81 |
const gchar *purple_sound_theme_get_file(PurpleSoundTheme *theme, |
|
zacw@1739
|
82 |
const gchar *event); |
|
zacw@1739
|
83 |
|
|
zacw@1739
|
84 |
/** |
|
zacw@1739
|
85 |
* Returns a copy of the directory and filename for the sound event |
|
zacw@1739
|
86 |
* |
|
zacw@2069
|
87 |
* @param theme The theme. |
|
zacw@1739
|
88 |
* @param event The purple sound event to look up |
|
zacw@1739
|
89 |
* |
|
zacw@1739
|
90 |
* @returns The directory + '/' + filename of the sound event. This is |
|
zacw@1739
|
91 |
* a newly allocated string that should be freed with g_free. |
|
zacw@1739
|
92 |
*/ |
|
zacw@1739
|
93 |
gchar *purple_sound_theme_get_file_full(PurpleSoundTheme *theme, |
|
zacw@1739
|
94 |
const gchar *event); |
|
zacw@1739
|
95 |
|
|
zacw@1739
|
96 |
/** |
|
zacw@1739
|
97 |
* Sets the filename for a given sound event |
|
zacw@1739
|
98 |
* |
|
zacw@2069
|
99 |
* @param theme The theme. |
|
zacw@2069
|
100 |
* @param event the purple sound event to look up |
|
zacw@2069
|
101 |
* @param filename the name of the file to be used for the event |
|
zacw@1739
|
102 |
*/ |
|
zacw@1739
|
103 |
void purple_sound_theme_set_file(PurpleSoundTheme *theme, |
|
zacw@1739
|
104 |
const gchar *event, |
|
zacw@1739
|
105 |
const gchar *filename); |
|
zacw@1739
|
106 |
|
|
zacw@1739
|
107 |
G_END_DECLS |
|
zacw@1739
|
108 |
#endif /* PURPLE_SOUND_THEME_H */ |