Initial import of ephy (rev# 7126) from svn
[ephy-soc.git] / src / ephy-home-action.h
blob26e6f005d77f9c1bf02be1691fd7fd016ba2debf
1 /*
2 * Copyright © 2004 Christian Persch
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2, or (at your option)
7 * any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * $Id: ephy-home-action.h 6952 2007-03-11 19:42:02Z chpe $
21 #ifndef EPHY_HOME_ACTION_H
22 #define EPHY_HOME_ACTION_H
24 #include "ephy-link-action.h"
26 G_BEGIN_DECLS
28 #define EPHY_TYPE_HOME_ACTION (ephy_home_action_get_type ())
29 #define EPHY_HOME_ACTION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EPHY_TYPE_HOME_ACTION, EphyHomeAction))
30 #define EPHY_HOME_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EPHY_TYPE_HOME_ACTION, EphyHomeActionClass))
31 #define EPHY_IS_HOME_ACTION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EPHY_TYPE_HOME_ACTION))
32 #define EPHY_IS_HOME_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), EPHY_TYPE_HOME_ACTION))
33 #define EPHY_HOME_ACTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), EPHY_TYPE_HOME_ACTION, EphyHomeActionClass))
35 typedef struct _EphyHomeAction EphyHomeAction;
36 typedef struct _EphyHomeActionClass EphyHomeActionClass;
38 struct _EphyHomeAction
40 EphyLinkAction parent_instance;
43 struct _EphyHomeActionClass
45 EphyLinkActionClass parent_class;
48 GType ephy_home_action_get_type (void);
50 G_END_DECLS
52 #endif /* EPHY_HOME_ACTION_H */