annotate Plugins/Visualization/paranormal/pn/pnblur.h @ 1615:e402e0217870 trunk

[svn] - fix for the long-standing dependency oddness in our build system. now make tool surely picks up changed source files and builds required objectives.
author yaz
date Mon, 04 Sep 2006 19:47:32 -0700
parents 0c5fdcf3f947
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1507
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
1 /* Paranormal - A highly customizable audio visualization library
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
2 * Copyright (C) 2001 Jamie Gennis <jgennis@mindspring.com>
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
3 *
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
4 * This library is free software; you can redistribute it and/or
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
5 * modify it under the terms of the GNU Library General Public
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
6 * License as published by the Free Software Foundation; either
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
7 * version 2 of the License, or (at your option) any later version.
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
8 *
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
9 * This library is distributed in the hope that it will be useful,
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
12 * Library General Public License for more details.
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
13 *
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
14 * You should have received a copy of the GNU Library General Public
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
15 * License along with this library; if not, write to the Free
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
16 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
17 */
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
18
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
19 #ifndef __PN_BLUR_H__
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
20 #define __PN_BLUR_H__
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
21
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
22 #include "pnactuator.h"
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
23
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
24 G_BEGIN_DECLS
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
25
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
26
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
27 enum
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
28 {
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
29 PN_BLUR_OPT_LAST = PN_ACTUATOR_OPT_LAST
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
30 };
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
31
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
32 #define PN_TYPE_BLUR (pn_blur_get_type ())
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
33 #define PN_BLUR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PN_TYPE_BLUR, PnBlur))
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
34 #define PN_BLUR_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), PN_TYPE_BLUR, PnBlurClass))
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
35 #define PN_IS_BLUR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PN_TYPE_BLUR))
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
36 #define PN_IS_BLUR_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), PN_TYPE_BLUR))
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
37 #define PN_BLUR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PN_TYPE_BLUR, PnBlurClass))
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
38
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
39 typedef struct _PnBlur PnBlur;
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
40 typedef struct _PnBlurClass PnBlurClass;
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
41
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
42 struct _PnBlur
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
43 {
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
44 PnActuator parent;
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
45 };
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
46
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
47 struct _PnBlurClass
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
48 {
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
49 PnActuatorClass parent_class;
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
50 };
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
51
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
52 /* Creators */
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
53 GType pn_blur_get_type (void);
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
54 PnBlur *pn_blur_new (void);
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
55
0c5fdcf3f947 [svn] - incomplete stuff
nenolod
parents:
diff changeset
56 #endif /* __PN_BLUR_H__ */