summaryrefslogtreecommitdiff
path: root/libxfce4panel/xfce-panel-internal-plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'libxfce4panel/xfce-panel-internal-plugin.h')
-rw-r--r--libxfce4panel/xfce-panel-internal-plugin.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/libxfce4panel/xfce-panel-internal-plugin.h b/libxfce4panel/xfce-panel-internal-plugin.h
deleted file mode 100644
index ad50386c..00000000
--- a/libxfce4panel/xfce-panel-internal-plugin.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/* $Id$
- *
- * Copyright (c) 2005-2007 Jasper Huijsmans <jasper@xfce.org>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- */
-
-#ifndef __XFCE_PANEL_INTERNAL_PLUGIN_H__
-#define __XFCE_PANEL_INTERNAL_PLUGIN_H__
-
-#include <gtk/gtkeventbox.h>
-#include <libxfce4panel/xfce-panel-plugin-iface.h>
-
-G_BEGIN_DECLS
-
-typedef struct _XfceInternalPanelPlugin XfceInternalPanelPlugin;
-typedef struct _XfceInternalPanelPluginClass XfceInternalPanelPluginClass;
-
-#define XFCE_TYPE_INTERNAL_PANEL_PLUGIN (xfce_internal_panel_plugin_get_type ())
-#define XFCE_INTERNAL_PANEL_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), XFCE_TYPE_INTERNAL_PANEL_PLUGIN, XfceInternalPanelPlugin))
-#define XFCE_INTERNAL_PANEL_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), XFCE_TYPE_INTERNAL_PANEL_PLUGIN, XfceInternalPanelPluginClass))
-#define XFCE_IS_INTERNAL_PANEL_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), XFCE_TYPE_INTERNAL_PANEL_PLUGIN))
-#define XFCE_IS_INTERNAL_PANEL_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), XFCE_TYPE_INTERNAL_PANEL_PLUGIN))
-#define XFCE_INTERNAL_PANEL_PLUGIN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), XFCE_TYPE_INTERNAL_PANEL_PLUGIN, XfceInternalPanelPluginClass))
-
-struct _XfceInternalPanelPlugin
-{
- GtkEventBox parent;
-};
-
-struct _XfceInternalPanelPluginClass
-{
- GtkEventBoxClass parent_class;
-};
-
-GType xfce_internal_panel_plugin_get_type (void) G_GNUC_CONST;
-GtkWidget *xfce_internal_panel_plugin_new (const gchar *name,
- const gchar *id,
- const gchar *display_name,
- gint size,
- XfceScreenPosition position,
- XfcePanelPluginFunc construct) G_GNUC_MALLOC G_GNUC_WARN_UNUSED_RESULT;
-
-G_END_DECLS
-
-#endif /* !__XFCE_PANEL_INTERNAL_PLUGIN_H__ */