2
* Copyright (c) 2005-2007 Jasper Huijsmans <jasper@xfce.org>
3
* Copyright (c) 2007-2009 Nick Schermer <nick@xfce.org>
5
* This program is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License as published by the Free
7
* Software Foundation; either version 2 of the License, or (at your option)
10
* This program is distributed in the hope that it will be useful, but WITHOUT
11
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15
* You should have received a copy of the GNU General Public License along with
16
* this program; if not, write to the Free Software Foundation, Inc., 59 Temple
17
* Place, Suite 330, Boston, MA 02111-1307 USA
20
#ifndef __SEPARATOR_H__
21
#define __SEPARATOR_H__
27
typedef struct _SeparatorPluginClass SeparatorPluginClass;
28
typedef struct _SeparatorPlugin SeparatorPlugin;
29
typedef enum _SeparatorPluginStyle SeparatorPluginStyle;
31
#define XFCE_TYPE_SEPARATOR_PLUGIN (separator_plugin_get_type ())
32
#define XFCE_SEPARATOR_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), XFCE_TYPE_SEPARATOR_PLUGIN, SeparatorPlugin))
33
#define XFCE_SEPARATOR_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), XFCE_TYPE_SEPARATOR_PLUGIN, SeparatorPluginClass))
34
#define XFCE_IS_SEPARATOR_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), XFCE_TYPE_SEPARATOR_PLUGIN))
35
#define XFCE_IS_SEPARATOR_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), XFCE_TYPE_SEPARATOR_PLUGIN))
36
#define XFCE_SEPARATOR_PLUGIN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), XFCE_TYPE_SEPARATOR_PLUGIN, SeparatorPluginClass))
38
GType separator_plugin_get_type (void) G_GNUC_CONST;
40
void separator_plugin_register_type (XfcePanelTypeModule *type_module);
44
#endif /* !__SEPARATOR_H__ */