Initial packaging for Tizen
[profile/ivi/gobject-introspection.git] / girepository / gibaseinfo.h
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
2  * GObject introspection: GIBaseInfo
3  *
4  * Copyright (C) 2005 Matthias Clasen
5  * Copyright (C) 2008,2009 Red Hat, Inc.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #ifndef __GIBASEINFO_H__
24 #define __GIBASEINFO_H__
25
26 #if !defined (__GIREPOSITORY_H_INSIDE__) && !defined (GI_COMPILATION)
27 #error "Only <girepository.h> can be included directly."
28 #endif
29
30 #include <glib-object.h>
31 #include <gitypelib.h>
32 #include <gitypes.h>
33
34 G_BEGIN_DECLS
35
36 struct _GIBaseInfoStub {
37   /* <private> */
38   gint32 dummy1;
39   gint32 dummy2;
40   gpointer dummy3;
41   gpointer dummy4;
42   gpointer dummy5;
43   guint32  dummy6;
44   guint32  dummy7;
45   gpointer padding[4];
46 };
47
48 /**
49  * GIAttributeIter:
50  *
51  * An opaque structure used to iterate over attributes
52  * in a #GIBaseInfo struct.
53  */
54 typedef struct {
55   /* <private> */
56   gpointer data;
57   gpointer data2;
58   gpointer data3;
59   gpointer data4;
60 } GIAttributeIter;
61
62 #define GI_TYPE_BASE_INFO       (g_base_info_gtype_get_type ())
63
64 GType                  g_base_info_gtype_get_type   (void) G_GNUC_CONST;
65 GIBaseInfo *           g_base_info_ref              (GIBaseInfo   *info);
66 void                   g_base_info_unref            (GIBaseInfo   *info);
67 GIInfoType             g_base_info_get_type         (GIBaseInfo   *info);
68 const gchar *          g_base_info_get_name         (GIBaseInfo   *info);
69 const gchar *          g_base_info_get_namespace    (GIBaseInfo   *info);
70 gboolean               g_base_info_is_deprecated    (GIBaseInfo   *info);
71 const gchar *          g_base_info_get_attribute    (GIBaseInfo   *info,
72                                                      const gchar  *name);
73 gboolean               g_base_info_iterate_attributes (GIBaseInfo      *info,
74                                                        GIAttributeIter *iterator,
75                                                        char           **name,
76                                                        char          **value);
77 GIBaseInfo *           g_base_info_get_container    (GIBaseInfo   *info);
78 GITypelib *             g_base_info_get_typelib      (GIBaseInfo   *info);
79 gboolean               g_base_info_equal            (GIBaseInfo   *info1,
80                                                      GIBaseInfo   *info2);
81 GIBaseInfo *           g_info_new                   (GIInfoType    type,
82                                                      GIBaseInfo   *container,
83                                                      GITypelib     *typelib,
84                                                      guint32       offset);
85
86 G_END_DECLS
87
88 #endif  /* __GIBASEINFO_H__ */
89