Add g_type_module_register_enum() and g_type_module_register_flags().
[glib.git] / gobject / gtypemodule.h
blob863ea153fdc337f65a02f2857a9add5c6e147ef8
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * Copyright (C) 2000 Red Hat, Inc.
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.
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.
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.
19 #if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION)
20 #error "Only <glib-object.h> can be included directly."
21 #endif
23 #ifndef __G_TYPE_MODULE_H__
24 #define __G_TYPE_MODULE_H__
26 #include <gobject/gobject.h>
28 G_BEGIN_DECLS
30 typedef struct _GTypeModule GTypeModule;
31 typedef struct _GTypeModuleClass GTypeModuleClass;
33 #define G_TYPE_TYPE_MODULE (g_type_module_get_type ())
34 #define G_TYPE_MODULE(module) (G_TYPE_CHECK_INSTANCE_CAST ((module), G_TYPE_TYPE_MODULE, GTypeModule))
35 #define G_TYPE_MODULE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_TYPE_MODULE, GTypeModuleClass))
36 #define G_IS_TYPE_MODULE(module) (G_TYPE_CHECK_INSTANCE_TYPE ((module), G_TYPE_TYPE_MODULE))
37 #define G_IS_TYPE_MODULE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_TYPE_MODULE))
38 #define G_TYPE_MODULE_GET_CLASS(module) (G_TYPE_INSTANCE_GET_CLASS ((module), G_TYPE_TYPE_MODULE, GTypeModuleClass))
40 struct _GTypeModule
42 GObject parent_instance;
44 guint use_count;
45 GSList *type_infos;
46 GSList *interface_infos;
48 /*< public >*/
49 gchar *name;
52 struct _GTypeModuleClass
54 GObjectClass parent_class;
56 /*< public >*/
57 gboolean (* load) (GTypeModule *module);
58 void (* unload) (GTypeModule *module);
60 /*< private >*/
61 /* Padding for future expansion */
62 void (*reserved1) (void);
63 void (*reserved2) (void);
64 void (*reserved3) (void);
65 void (*reserved4) (void);
68 GType g_type_module_get_type (void);
69 gboolean g_type_module_use (GTypeModule *module);
70 void g_type_module_unuse (GTypeModule *module);
71 void g_type_module_set_name (GTypeModule *module,
72 const gchar *name);
73 GType g_type_module_register_type (GTypeModule *module,
74 GType parent_type,
75 const gchar *type_name,
76 const GTypeInfo *type_info,
77 GTypeFlags flags);
78 void g_type_module_add_interface (GTypeModule *module,
79 GType instance_type,
80 GType interface_type,
81 const GInterfaceInfo *interface_info);
82 void g_type_module_register_enum (GTypeModule *module,
83 const gchar *name,
84 const GEnumValue *const_static_values);
85 void g_type_module_register_flags (GTypeModule *module,
86 const gchar *name,
87 const GFlagsValue *const_static_values);
89 G_END_DECLS
91 #endif /* __G_TYPE_MODULE_H__ */