~ubuntu-branches/debian/squeeze/galeon/squeeze

« back to all changes in this revision

Viewing changes to gtkhtml/gtkhtml-embed-persist.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Howard
  • Date: 2004-06-06 09:02:01 UTC
  • Revision ID: james.westby@ubuntu.com-20040606090201-yhx6ruhq8um7ggs2
Tags: upstream-1.3.15
ImportĀ upstreamĀ versionĀ 1.3.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Copyright (C) 2000, 2001, 2002 Marco Pesenti Gritti
 
3
 *
 
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.
 
8
 *
 
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.
 
13
 *
 
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
17
 */
 
18
 
 
19
#ifndef GTKHTML_EMBED_PERSIST_H
 
20
#define GTKHTML_EMBED_PERSIST_H
 
21
 
 
22
#ifdef __cplusplus
 
23
extern "C" {
 
24
#endif
 
25
 
 
26
#include "galeon-embed-persist.h"
 
27
        
 
28
#include <glib-object.h>
 
29
#include <glib.h>
 
30
 
 
31
typedef struct GtkhtmlEmbedPersistClass GtkhtmlEmbedPersistClass;
 
32
 
 
33
#define GTKHTML_EMBED_PERSIST_TYPE             (gtkhtml_embed_persist_get_type ())
 
34
#define GTKHTML_EMBED_PERSIST(obj)             (GTK_CHECK_CAST ((obj), GTKHTML_EMBED_PERSIST_TYPE, GtkhtmlEmbedPersist))
 
35
#define GTKHTML_EMBED_PERSIST_CLASS(klass)     (GTK_CHECK_CLASS_CAST ((klass), GTKHTML_PERSIST_SHELL, GtkhtmlEmbedPersistClass))
 
36
#define IS_GTKHTML_EMBED_PERSIST(obj)          (GTK_CHECK_TYPE ((obj), GTKHTML_EMBED_PERSIST_TYPE))
 
37
#define IS_GTKHTML_EMBED_PERSIST_CLASS(klass)  (GTK_CHECK_CLASS_TYPE ((klass), GTKHTML_EMBED_PERSIST))
 
38
#define GTKHTML_EMBED_PERSIST_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), GTKHTML_EMBED_SHELL_TYPE, GtkhtmlEmbedPersistClass))
 
39
 
 
40
typedef struct GtkhtmlEmbedPersist GtkhtmlEmbedPersist;
 
41
typedef struct GtkhtmlEmbedPersistPrivate GtkhtmlEmbedPersistPrivate;
 
42
 
 
43
struct GtkhtmlEmbedPersist 
 
44
{
 
45
        GaleonEmbedPersist parent;
 
46
        GtkhtmlEmbedPersistPrivate *priv;
 
47
};
 
48
 
 
49
struct GtkhtmlEmbedPersistClass
 
50
{
 
51
        GaleonEmbedPersistClass parent_class;
 
52
};
 
53
 
 
54
GType               gtkhtml_embed_persist_get_type   (void);
 
55
 
 
56
#ifdef __cplusplus
 
57
}
 
58
#endif
 
59
#endif