~ubuntu-branches/debian/experimental/xfce4-panel/experimental

« back to all changes in this revision

Viewing changes to libxfce4panel/xfce-panel-external-plugin.h

  • Committer: Bazaar Package Importer
  • Author(s): Yves-Alexis Perez
  • Date: 2008-05-19 08:08:22 UTC
  • mfrom: (1.1.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20080519080822-c8ptdv1s8o9r4ou0
Tags: 4.4.2-6
* switch to triggers:
  - debian/postinst: remove xfce-mcs-manager refresh.
  - debian/prerm dropped.
  - debian/control: conflicts against non-triggers-enable xfce4-mcs-manager.
* debian/control: remove useless Conflicts/Replaces against Sarge stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* vim: set expandtab ts=8 sw=4: */
 
2
 
 
3
/*  $Id: xfce-panel-external-plugin.h 20070 2006-02-25 22:33:57Z jasper $
 
4
 *
 
5
 *  Copyright © 2005 Jasper Huijsmans <jasper@xfce.org>
 
6
 *
 
7
 *  This program is free software; you can redistribute it and/or modify
 
8
 *  it under the terms of the GNU Library General Public License as published 
 
9
 *  by the Free Software Foundation; either version 2 of the License, or
 
10
 *  (at your option) any later version.
 
11
 *
 
12
 *  This program is distributed in the hope that it will be useful,
 
13
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 *  GNU Library General Public License for more details.
 
16
 *
 
17
 *  You should have received a copy of the GNU Library General Public License
 
18
 *  along with this program; if not, write to the Free Software
 
19
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
20
 */
 
21
 
 
22
#ifndef _XFCE_EXTERNAL_PANEL_PLUGIN_H
 
23
#define _XFCE_EXTERNAL_PANEL_PLUGIN_H
 
24
 
 
25
#include <gtk/gtkplug.h>
 
26
#include <libxfce4panel/xfce-panel-plugin-iface.h>
 
27
 
 
28
#define XFCE_TYPE_EXTERNAL_PANEL_PLUGIN            (xfce_external_panel_plugin_get_type ())
 
29
#define XFCE_EXTERNAL_PANEL_PLUGIN(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), XFCE_TYPE_EXTERNAL_PANEL_PLUGIN, XfceExternalPanelPlugin))
 
30
#define XFCE_EXTERNAL_PANEL_PLUGIN_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), XFCE_TYPE_EXTERNAL_PANEL_PLUGIN, XfceExternalPanelPluginClass))
 
31
#define XFCE_IS_EXTERNAL_PANEL_PLUGIN(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), XFCE_TYPE_EXTERNAL_PANEL_PLUGIN))
 
32
#define XFCE_IS_EXTERNAL_PANEL_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), XFCE_TYPE_EXTERNAL_PANEL_PLUGIN))
 
33
#define XFCE_EXTERNAL_PANEL_PLUGIN_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), XFCE_TYPE_EXTERNAL_PANEL_PLUGIN, XfceExternalPanelPluginClass))
 
34
 
 
35
 
 
36
G_BEGIN_DECLS 
 
37
 
 
38
typedef struct _XfceExternalPanelPlugin         XfceExternalPanelPlugin;
 
39
typedef struct _XfceExternalPanelPluginClass    XfceExternalPanelPluginClass;
 
40
 
 
41
struct _XfceExternalPanelPlugin
 
42
{
 
43
    GtkPlug parent;
 
44
};
 
45
 
 
46
struct _XfceExternalPanelPluginClass
 
47
{
 
48
    GtkPlugClass parent_class;
 
49
};
 
50
 
 
51
 
 
52
GType xfce_external_panel_plugin_get_type (void) G_GNUC_CONST;
 
53
 
 
54
GtkWidget *xfce_external_panel_plugin_new (int argc, 
 
55
                                           char **argv,
 
56
                                           XfcePanelPluginFunc construct);
 
57
 
 
58
G_END_DECLS
 
59
 
 
60
#endif /* _XFCE_EXTERNAL_PANEL_PLUGIN_H */