*** empty log message ***
[platform/upstream/glib.git] / gobject / gtypemodule.h
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2  * Copyright (C) 2000 Red Hat, Inc.
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 of the License, or (at your option) any later version.
8  *
9  * This library 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 GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __G_TYPE_MODULE_H__
21 #define __G_TYPE_MODULE_H__
22
23 #include <gobject/gobject.h>
24
25 G_BEGIN_DECLS
26
27 typedef struct _GTypeModule      GTypeModule;
28 typedef struct _GTypeModuleClass GTypeModuleClass;
29
30 #define G_TYPE_TYPE_MODULE              (g_type_module_get_type ())
31 #define G_TYPE_MODULE(module)           (G_TYPE_CHECK_INSTANCE_CAST ((module), G_TYPE_TYPE_MODULE, GTypeModule))
32 #define G_TYPE_MODULE_CLASS(class)      (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_TYPE_MODULE, GTypeModuleClass))
33 #define G_IS_TYPE_MODULE(module)        (G_TYPE_CHECK_INSTANCE_TYPE ((module), G_TYPE_TYPE_MODULE))
34 #define G_IS_TYPE_MODULE_CLASS(class)   (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_TYPE_MODULE))
35 #define G_TYPE_MODULE_GET_CLASS(module) (G_TYPE_INSTANCE_GET_CLASS ((module), G_TYPE_TYPE_MODULE, GTypeModuleClass))
36
37 struct _GTypeModule 
38 {
39   GObject parent_instance;
40
41   guint use_count;
42   GSList *type_infos;
43   GSList *interface_infos;
44   gchar *name;
45 };
46
47 struct _GTypeModuleClass
48 {
49   GObjectClass parent_class;
50
51   gboolean (* load)   (GTypeModule *module);
52   void     (* unload) (GTypeModule *module);
53 };
54
55 GType    g_type_module_get_type      (void);
56 gboolean g_type_module_use           (GTypeModule     *module);
57 void     g_type_module_unuse         (GTypeModule     *module);
58 void     g_type_module_set_name      (GTypeModule     *module,
59                                       const gchar     *name);
60 GType    g_type_module_register_type (GTypeModule     *module,
61                                       GType            parent_type,
62                                       const gchar     *type_name,
63                                       const GTypeInfo *type_info,
64                                       GTypeFlags       flags);
65 void     g_type_module_add_interface (GTypeModule     *module,
66                                       GType            instance_type,
67                                       GType            interface_type,
68                                       GInterfaceInfo  *interface_info);
69
70 G_END_DECLS
71
72 #endif /* __G_TYPE_MODULE_H__ */