Initial import of ephy (rev# 7126) from svn
[ephy-soc.git] / embed / mozilla / mozilla-embed-find.h
blobf4f0d438e1d3de742a33ad11c025b2edfcefacca
1 /*
2 * Copyright © 2000-2004 Marco Pesenti Gritti
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: mozilla-embed-find.h 6952 2007-03-11 19:42:02Z chpe $
21 #ifndef MOZILLA_EMBED_FIND_H
22 #define MOZILLA_EMBED_FIND_H
24 #include <glib.h>
25 #include <glib-object.h>
27 G_BEGIN_DECLS
29 #define MOZILLA_TYPE_EMBED_FIND (mozilla_embed_find_get_type ())
30 #define MOZILLA_EMBED_FIND(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), MOZILLA_TYPE_EMBED_FIND, MozillaEmbedFind))
31 #define MOZILLA_EMBED_FIND_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), MOZILLA_TYPE_EMBED_FIND, MozillaEmbedFindClass))
32 #define MOZILLA_IS_EMBED_FIND(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), MOZILLA_TYPE_EMBED_FIND))
33 #define MOZILLA_IS_EMBED_FIND_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), MOZILLA_TYPE_EMBED_FIND))
34 #define MOZILLA_EMBED_FIND_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), MOZILLA_TYPE_EMBED_FIND, MozillaEmbedFindClass))
36 typedef struct _MozillaEmbedFindClass MozillaEmbedFindClass;
37 typedef struct _MozillaEmbedFind MozillaEmbedFind;
38 typedef struct _MozillaEmbedFindPrivate MozillaEmbedFindPrivate;
40 struct _MozillaEmbedFind
42 GObject parent_instance;
44 /*< private >*/
45 MozillaEmbedFindPrivate *priv;
48 struct _MozillaEmbedFindClass
50 GObjectClass parent_class;
53 GType mozilla_embed_find_get_type (void);
55 G_END_DECLS
57 #endif