Changed EphyHistoryWindow to use the new backend, some things still remain (selected_...
[ephy-soc.git] / embed / mozilla / mozilla-embed-single.h
blob4c7e73229780370e8ea15ea50b08b8e19a80c309
1 /*
2 * Copyright © 2000-2003 Marco Pesenti Gritti
3 * Copyright © 2003 Christian Persch
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.
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.
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.
19 * $Id: mozilla-embed-single.h 6952 2007-03-11 19:42:02Z chpe $
22 #ifndef MOZILLA_EMBED_SINGLE_H
23 #define MOZILLA_EMBED_SINGLE_H
25 #include <glib-object.h>
27 G_BEGIN_DECLS
29 #define MOZILLA_TYPE_EMBED_SINGLE (mozilla_embed_single_get_type ())
30 #define MOZILLA_EMBED_SINGLE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), MOZILLA_TYPE_EMBED_SINGLE, MozillaEmbedSingle))
31 #define MOZILLA_EMBED_SINGLE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), MOZILLA_TYPE_EMBED_SINGLE, MozillaEmbedSingleClass))
32 #define MOZILLA_IS_EMBED_SINGLE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), MOZILLA_TYPE_EMBED_SINGLE))
33 #define MOZILLA_IS_EMBED_SINGLE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), MOZILLA_TYPE_EMBED_SINGLE))
34 #define MOZILLA_EMBED_SINGLE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), MOZILLA_TYPE_EMBED_SINGLE, MozillaEmbedSingleClass))
36 typedef struct MozillaEmbedSingle MozillaEmbedSingle;
37 typedef struct MozillaEmbedSingleClass MozillaEmbedSingleClass;
38 typedef struct MozillaEmbedSinglePrivate MozillaEmbedSinglePrivate;
40 struct MozillaEmbedSingle
42 GObject parent;
44 /*< private >*/
45 MozillaEmbedSinglePrivate *priv;
48 struct MozillaEmbedSingleClass
50 GObjectClass parent_class;
53 GType mozilla_embed_single_get_type (void);
55 G_END_DECLS
57 #endif