Added functions for getting Site nodes
[ephy-soc.git] / src / ephy-encoding-dialog.h
blob3aed8a6e0407f2123b183287d43c427e902b9b80
1 /*
2 * Copyright © 2000, 2001, 2002, 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: ephy-encoding-dialog.h 6952 2007-03-11 19:42:02Z chpe $
22 #ifndef EPHY_ENCODING_DIALOG_H
23 #define EPHY_ENCODING_DIALOG_H
25 #include "ephy-embed-dialog.h"
26 #include "ephy-window.h"
28 #include <glib.h>
29 #include <glib-object.h>
31 G_BEGIN_DECLS
33 #define EPHY_TYPE_ENCODING_DIALOG (ephy_encoding_dialog_get_type ())
34 #define EPHY_ENCODING_DIALOG(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EPHY_TYPE_ENCODING_DIALOG, EphyEncodingDialog))
35 #define EPHY_ENCODING_DIALOG_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_ENCODING_DIALOG, EphyEncodingDialogClass))
36 #define EPHY_IS_ENCODING_DIALOG(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_ENCODING_DIALOG))
37 #define EPHY_IS_ENCODING_DIALOG_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_ENCODING_DIALOG))
38 #define EPHY_ENCODING_DIALOG_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_ENCODING_DIALOG, EphyEncodingDialogClass))
40 typedef struct _EphyEncodingDialog EphyEncodingDialog;
41 typedef struct _EphyEncodingDialogClass EphyEncodingDialogClass;
42 typedef struct _EphyEncodingDialogPrivate EphyEncodingDialogPrivate;
44 struct _EphyEncodingDialog
46 EphyEmbedDialog parent;
48 /*< private >*/
49 EphyEncodingDialogPrivate *priv;
52 struct _EphyEncodingDialogClass
54 EphyEmbedDialogClass parent_class;
57 GType ephy_encoding_dialog_get_type (void);
59 EphyEncodingDialog *ephy_encoding_dialog_new (EphyWindow *window);
61 G_END_DECLS
63 #endif