~midori/midori/trunk

« back to all changes in this revision

Viewing changes to midori/midori-extension.h

  • Committer: Christian Dywan
  • Date: 2008-11-18 01:07:53 UTC
  • Revision ID: git-v1:3cd50f419b55c8ac81d557ddf5764f78bffd75ff
Introduce a C extension interface

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
 
3
 
 
4
 This library is free software; you can redistribute it and/or
 
5
 modify it under the terms of the GNU Lesser General Public
 
6
 License as published by the Free Software Foundation; either
 
7
 version 2.1 of the License, or (at your option) any later version.
 
8
 
 
9
 See the file COPYING for the full license text.
 
10
*/
 
11
 
 
12
#ifndef __MIDORI_EXTENSION_H__
 
13
#define __MIDORI_EXTENSION_H__
 
14
 
 
15
#include <glib-object.h>
 
16
 
 
17
G_BEGIN_DECLS
 
18
 
 
19
#define MIDORI_TYPE_EXTENSION \
 
20
    (midori_extension_get_type ())
 
21
#define MIDORI_EXTENSION(obj) \
 
22
    (G_TYPE_CHECK_INSTANCE_CAST ((obj), MIDORI_TYPE_EXTENSION, MidoriExtension))
 
23
#define MIDORI_EXTENSION_CLASS(klass) \
 
24
    (G_TYPE_CHECK_CLASS_CAST ((klass), MIDORI_TYPE_EXTENSION, MidoriExtensionClass))
 
25
#define MIDORI_IS_EXTENSION(obj) \
 
26
    (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MIDORI_TYPE_EXTENSION))
 
27
#define MIDORI_IS_EXTENSION_CLASS(klass) \
 
28
    (G_TYPE_CHECK_CLASS_TYPE ((klass), MIDORI_TYPE_EXTENSION))
 
29
#define MIDORI_EXTENSION_GET_CLASS(obj) \
 
30
    (G_TYPE_INSTANCE_GET_CLASS ((obj), MIDORI_TYPE_EXTENSION, MidoriExtensionClass))
 
31
 
 
32
typedef struct _MidoriExtension                MidoriExtension;
 
33
typedef struct _MidoriExtensionClass           MidoriExtensionClass;
 
34
typedef struct _MidoriExtensionPrivate         MidoriExtensionPrivate;
 
35
 
 
36
struct _MidoriExtension
 
37
{
 
38
    GObject parent_instance;
 
39
 
 
40
    MidoriExtensionPrivate* priv;
 
41
};
 
42
 
 
43
struct _MidoriExtensionClass
 
44
{
 
45
    GObjectClass parent_class;
 
46
};
 
47
 
 
48
GType
 
49
midori_extension_get_type            (void);
 
50
 
 
51
/* There is no API for MidoriExtension. Please use the
 
52
   available properties and signals. */
 
53
 
 
54
G_END_DECLS
 
55
 
 
56
#endif /* __MIDORI_EXTENSION_H__ */