Initial import of ephy (rev# 7126) from svn
[ephy-soc.git] / src / .svn / text-base / ephy-lockdown.h.svn-base
blob70d480c2e26f6bf20adcdfb0ea743e9042bf048e
1 /*
2  *  Copyright © 2003, 2004 Marco Pesenti Gritti
3  *  Copyright © 2003, 2004, 2005 Christian Persch
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2, or (at your option)
8  *  any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  *
19  *  $Id$
20  */
22 #ifndef EPHY_LOCKDOWN_H
23 #define EPHY_LOCKDOWN_H
25 #include <glib.h>
26 #include <glib-object.h>
28 G_BEGIN_DECLS
30 #define EPHY_TYPE_LOCKDOWN              (ephy_lockdown_get_type ())
31 #define EPHY_LOCKDOWN(o)                (G_TYPE_CHECK_INSTANCE_CAST ((o), EPHY_TYPE_LOCKDOWN, EphyLockdown))
32 #define EPHY_LOCKDOWN_CLASS(k)          (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_LOCKDOWN, EphyLockdownClass))
33 #define EPHY_IS_LOCKDOWN(o)             (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_LOCKDOWN))
34 #define EPHY_IS_LOCKDOWN_CLASS(k)       (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_LOCKDOWN))
35 #define EPHY_LOCKDOWN_GET_CLASS(o)      (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_LOCKDOWN, EphyLockdownClass))
37 typedef struct _EphyLockdownClass       EphyLockdownClass;
38 typedef struct _EphyLockdown            EphyLockdown;
39 typedef struct _EphyLockdownPrivate     EphyLockdownPrivate;
41 struct _EphyLockdownClass
43         GObjectClass parent_class;
46 struct _EphyLockdown
48         GObject parent_instance;
50         /*< private >*/
51         EphyLockdownPrivate *priv;
54 GType   ephy_lockdown_get_type          (void);
56 G_END_DECLS
58 #endif