gibaseinfo.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. #ifndef __GIBASEINFO_H__
  23. #define __GIBASEINFO_H__
  24. #if !defined (__GIREPOSITORY_H_INSIDE__) && !defined (GI_COMPILATION)
  25. #error "Only <girepository.h> can be included directly."
  26. #endif
  27. #include <glib-object.h>
  28. #include <gitypelib.h>
  29. #include <gitypes.h>
  30. G_BEGIN_DECLS
  31. /**
  32. * GIBaseInfoStub:
  33. *
  34. * TODO
  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. * GIAttributeIter:
  49. *
  50. * An opaque structure used to iterate over attributes
  51. * in a #GIBaseInfo struct.
  52. */
  53. typedef struct {
  54. /* <private> */
  55. gpointer data;
  56. gpointer data2;
  57. gpointer data3;
  58. gpointer data4;
  59. } GIAttributeIter;
  60. #define GI_TYPE_BASE_INFO (g_base_info_gtype_get_type ())
  61. GI_AVAILABLE_IN_ALL
  62. GType g_base_info_gtype_get_type (void) G_GNUC_CONST;
  63. GI_AVAILABLE_IN_ALL
  64. GIBaseInfo * g_base_info_ref (GIBaseInfo *info);
  65. GI_AVAILABLE_IN_ALL
  66. void g_base_info_unref (GIBaseInfo *info);
  67. GI_AVAILABLE_IN_ALL
  68. GIInfoType g_base_info_get_type (GIBaseInfo *info);
  69. GI_AVAILABLE_IN_ALL
  70. const gchar * g_base_info_get_name (GIBaseInfo *info);
  71. GI_AVAILABLE_IN_ALL
  72. const gchar * g_base_info_get_namespace (GIBaseInfo *info);
  73. GI_AVAILABLE_IN_ALL
  74. gboolean g_base_info_is_deprecated (GIBaseInfo *info);
  75. GI_AVAILABLE_IN_ALL
  76. const gchar * g_base_info_get_attribute (GIBaseInfo *info,
  77. const gchar *name);
  78. GI_AVAILABLE_IN_ALL
  79. gboolean g_base_info_iterate_attributes (GIBaseInfo *info,
  80. GIAttributeIter *iterator,
  81. char **name,
  82. char **value);
  83. GI_AVAILABLE_IN_ALL
  84. GIBaseInfo * g_base_info_get_container (GIBaseInfo *info);
  85. GI_AVAILABLE_IN_ALL
  86. GITypelib * g_base_info_get_typelib (GIBaseInfo *info);
  87. GI_AVAILABLE_IN_ALL
  88. gboolean g_base_info_equal (GIBaseInfo *info1,
  89. GIBaseInfo *info2);
  90. GI_AVAILABLE_IN_ALL
  91. GIBaseInfo * g_info_new (GIInfoType type,
  92. GIBaseInfo *container,
  93. GITypelib *typelib,
  94. guint32 offset);
  95. G_END_DECLS
  96. #endif /* __GIBASEINFO_H__ */