giobjectinfo.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
  2. * GObject introspection: Object
  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 __GIOBJECTINFO_H__
  23. #define __GIOBJECTINFO_H__
  24. #if !defined (__GIREPOSITORY_H_INSIDE__) && !defined (GI_COMPILATION)
  25. #error "Only <girepository.h> can be included directly."
  26. #endif
  27. #include <gitypes.h>
  28. G_BEGIN_DECLS
  29. /**
  30. * GIObjectInfoRefFunction: (skip)
  31. * @object: object instance pointer
  32. *
  33. * Increases the reference count of an object instance.
  34. *
  35. * Returns: (transfer full): the object instance
  36. */
  37. typedef void * (*GIObjectInfoRefFunction) (void *object);
  38. /**
  39. * GIObjectInfoUnrefFunction: (skip)
  40. * @object: object instance pointer
  41. *
  42. * Decreases the reference count of an object instance.
  43. */
  44. typedef void (*GIObjectInfoUnrefFunction) (void *object);
  45. /**
  46. * GIObjectInfoSetValueFunction: (skip)
  47. * @value: a #GValue
  48. * @object: object instance pointer
  49. *
  50. * Update @value and attach the object instance pointer @object to it.
  51. */
  52. typedef void (*GIObjectInfoSetValueFunction) (GValue *value, void *object);
  53. /**
  54. * GIObjectInfoGetValueFunction: (skip)
  55. * @value: a #GValue
  56. *
  57. * Extract an object instance out of @value
  58. *
  59. * Returns: (transfer full): the object instance
  60. */
  61. typedef void * (*GIObjectInfoGetValueFunction) (const GValue *value);
  62. /**
  63. * GI_IS_OBJECT_INFO
  64. * @info: an info structure
  65. *
  66. * Checks if @info is a #GIObjectInfo.
  67. */
  68. #define GI_IS_OBJECT_INFO(info) \
  69. (g_base_info_get_type((GIBaseInfo*)info) == GI_INFO_TYPE_OBJECT)
  70. GI_AVAILABLE_IN_ALL
  71. const gchar * g_object_info_get_type_name (GIObjectInfo *info);
  72. GI_AVAILABLE_IN_ALL
  73. const gchar * g_object_info_get_type_init (GIObjectInfo *info);
  74. GI_AVAILABLE_IN_ALL
  75. gboolean g_object_info_get_abstract (GIObjectInfo *info);
  76. GI_AVAILABLE_IN_ALL
  77. gboolean g_object_info_get_fundamental (GIObjectInfo *info);
  78. GI_AVAILABLE_IN_ALL
  79. GIObjectInfo * g_object_info_get_parent (GIObjectInfo *info);
  80. GI_AVAILABLE_IN_ALL
  81. gint g_object_info_get_n_interfaces (GIObjectInfo *info);
  82. GI_AVAILABLE_IN_ALL
  83. GIInterfaceInfo * g_object_info_get_interface (GIObjectInfo *info,
  84. gint n);
  85. GI_AVAILABLE_IN_ALL
  86. gint g_object_info_get_n_fields (GIObjectInfo *info);
  87. GI_AVAILABLE_IN_ALL
  88. GIFieldInfo * g_object_info_get_field (GIObjectInfo *info,
  89. gint n);
  90. GI_AVAILABLE_IN_ALL
  91. gint g_object_info_get_n_properties (GIObjectInfo *info);
  92. GI_AVAILABLE_IN_ALL
  93. GIPropertyInfo * g_object_info_get_property (GIObjectInfo *info,
  94. gint n);
  95. GI_AVAILABLE_IN_ALL
  96. gint g_object_info_get_n_methods (GIObjectInfo *info);
  97. GI_AVAILABLE_IN_ALL
  98. GIFunctionInfo * g_object_info_get_method (GIObjectInfo *info,
  99. gint n);
  100. GI_AVAILABLE_IN_ALL
  101. GIFunctionInfo * g_object_info_find_method (GIObjectInfo *info,
  102. const gchar *name);
  103. GI_AVAILABLE_IN_ALL
  104. GIFunctionInfo * g_object_info_find_method_using_interfaces (GIObjectInfo *info,
  105. const gchar *name,
  106. GIObjectInfo **implementor);
  107. GI_AVAILABLE_IN_ALL
  108. gint g_object_info_get_n_signals (GIObjectInfo *info);
  109. GI_AVAILABLE_IN_ALL
  110. GISignalInfo * g_object_info_get_signal (GIObjectInfo *info,
  111. gint n);
  112. GI_AVAILABLE_IN_ALL
  113. GISignalInfo * g_object_info_find_signal (GIObjectInfo *info,
  114. const gchar *name);
  115. GI_AVAILABLE_IN_ALL
  116. gint g_object_info_get_n_vfuncs (GIObjectInfo *info);
  117. GI_AVAILABLE_IN_ALL
  118. GIVFuncInfo * g_object_info_get_vfunc (GIObjectInfo *info,
  119. gint n);
  120. GI_AVAILABLE_IN_ALL
  121. GIVFuncInfo * g_object_info_find_vfunc (GIObjectInfo *info,
  122. const gchar *name);
  123. GI_AVAILABLE_IN_1_32
  124. GIVFuncInfo * g_object_info_find_vfunc_using_interfaces (GIObjectInfo *info,
  125. const gchar *name,
  126. GIObjectInfo **implementor);
  127. GI_AVAILABLE_IN_ALL
  128. gint g_object_info_get_n_constants (GIObjectInfo *info);
  129. GI_AVAILABLE_IN_ALL
  130. GIConstantInfo * g_object_info_get_constant (GIObjectInfo *info,
  131. gint n);
  132. GI_AVAILABLE_IN_ALL
  133. GIStructInfo * g_object_info_get_class_struct (GIObjectInfo *info);
  134. GI_AVAILABLE_IN_ALL
  135. const char * g_object_info_get_ref_function (GIObjectInfo *info);
  136. GI_AVAILABLE_IN_ALL
  137. GIObjectInfoRefFunction g_object_info_get_ref_function_pointer (GIObjectInfo *info);
  138. GI_AVAILABLE_IN_ALL
  139. const char * g_object_info_get_unref_function (GIObjectInfo *info);
  140. GI_AVAILABLE_IN_ALL
  141. GIObjectInfoUnrefFunction g_object_info_get_unref_function_pointer (GIObjectInfo *info);
  142. GI_AVAILABLE_IN_ALL
  143. const char * g_object_info_get_set_value_function (GIObjectInfo *info);
  144. GI_AVAILABLE_IN_ALL
  145. GIObjectInfoSetValueFunction g_object_info_get_set_value_function_pointer (GIObjectInfo *info);
  146. GI_AVAILABLE_IN_ALL
  147. const char * g_object_info_get_get_value_function (GIObjectInfo *info);
  148. GI_AVAILABLE_IN_ALL
  149. GIObjectInfoGetValueFunction g_object_info_get_get_value_function_pointer (GIObjectInfo *info);
  150. G_END_DECLS
  151. #endif /* __GIOBJECTINFO_H__ */