/generated/gtkd/gio/DBusAnnotationInfo.d

http://github.com/gtkd-developers/GtkD · D · 211 lines · 104 code · 28 blank · 79 comment · 7 complexity · 1fcb415dd59cda99fdb98f86025c9230 MD5 · raw file

  1. /*
  2. * This file is part of gtkD.
  3. *
  4. * gtkD is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU Lesser General Public License
  6. * as published by the Free Software Foundation; either version 3
  7. * of the License, or (at your option) any later version, with
  8. * some exceptions, please read the COPYING file.
  9. *
  10. * gtkD is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public License
  16. * along with gtkD; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
  18. */
  19. // generated automatically - do not change
  20. // find conversion definition on APILookup.txt
  21. // implement new conversion functionalities on the wrap.utils pakage
  22. module gio.DBusAnnotationInfo;
  23. private import gio.c.functions;
  24. public import gio.c.types;
  25. private import glib.MemorySlice;
  26. private import glib.Str;
  27. private import gobject.ObjectG;
  28. public import gtkc.giotypes;
  29. private import gtkd.Loader;
  30. /**
  31. * Information about an annotation.
  32. *
  33. * Since: 2.26
  34. */
  35. public final class DBusAnnotationInfo
  36. {
  37. /** the main Gtk struct */
  38. protected GDBusAnnotationInfo* gDBusAnnotationInfo;
  39. protected bool ownedRef;
  40. /** Get the main Gtk struct */
  41. public GDBusAnnotationInfo* getDBusAnnotationInfoStruct(bool transferOwnership = false)
  42. {
  43. if (transferOwnership)
  44. ownedRef = false;
  45. return gDBusAnnotationInfo;
  46. }
  47. /** the main Gtk struct as a void* */
  48. protected void* getStruct()
  49. {
  50. return cast(void*)gDBusAnnotationInfo;
  51. }
  52. /**
  53. * Sets our main struct and passes it to the parent class.
  54. */
  55. public this (GDBusAnnotationInfo* gDBusAnnotationInfo, bool ownedRef = false)
  56. {
  57. this.gDBusAnnotationInfo = gDBusAnnotationInfo;
  58. this.ownedRef = ownedRef;
  59. }
  60. ~this ()
  61. {
  62. if ( Linker.isLoaded(LIBRARY_GIO) && ownedRef )
  63. g_dbus_annotation_info_unref(gDBusAnnotationInfo);
  64. }
  65. /**
  66. * Looks up the value of an annotation.
  67. *
  68. * The cost of this function is O(n) in number of annotations.
  69. *
  70. * Params:
  71. * annotations = A %NULL-terminated array of annotations or %NULL.
  72. * name = The name of the annotation to look up.
  73. *
  74. * Return: The value or %NULL if not found. Do not free, it is owned by @annotations.
  75. *
  76. * Since: 2.26
  77. */
  78. public static string lookup(DBusAnnotationInfo[] annotations, string name)
  79. {
  80. GDBusAnnotationInfo*[] annotationsArray = new GDBusAnnotationInfo*[annotations.length+1];
  81. for ( int i = 0; i < annotations.length ; i++ )
  82. {
  83. annotationsArray[i] = annotations[i].getDBusAnnotationInfoStruct();
  84. }
  85. annotationsArray[$-1] = null;
  86. return Str.toString(g_dbus_annotation_info_lookup(annotationsArray.ptr, Str.toStringz(name)));
  87. }
  88. /**
  89. */
  90. /**
  91. * The reference count or -1 if statically allocated.
  92. */
  93. public @property int refCount()
  94. {
  95. return gDBusAnnotationInfo.refCount;
  96. }
  97. /** Ditto */
  98. public @property void refCount(int value)
  99. {
  100. gDBusAnnotationInfo.refCount = value;
  101. }
  102. /**
  103. * The name of the annotation, e.g. "org.freedesktop.DBus.Deprecated".
  104. */
  105. public @property string key()
  106. {
  107. return Str.toString(gDBusAnnotationInfo.key);
  108. }
  109. /** Ditto */
  110. public @property void key(string value)
  111. {
  112. gDBusAnnotationInfo.key = Str.toStringz(value);
  113. }
  114. /**
  115. * The value of the annotation.
  116. */
  117. public @property string value()
  118. {
  119. return Str.toString(gDBusAnnotationInfo.value);
  120. }
  121. /** Ditto */
  122. public @property void value(string value)
  123. {
  124. gDBusAnnotationInfo.value = Str.toStringz(value);
  125. }
  126. /**
  127. * A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations.
  128. */
  129. public @property DBusAnnotationInfo[] annotations()
  130. {
  131. DBusAnnotationInfo[] arr = new DBusAnnotationInfo[getArrayLength(gDBusAnnotationInfo.annotations)];
  132. for ( int i = 0; i < arr.length; i++ )
  133. {
  134. arr[i] = ObjectG.getDObject!(DBusAnnotationInfo)(gDBusAnnotationInfo.annotations[i], false);
  135. }
  136. return arr;
  137. }
  138. /** Ditto */
  139. public @property void annotations(DBusAnnotationInfo[] value)
  140. {
  141. GDBusAnnotationInfo*[] arr = new GDBusAnnotationInfo*[value.length+1];
  142. for ( int i = 0; i < value.length; i++ )
  143. {
  144. arr[i] = value[i].getDBusAnnotationInfoStruct();
  145. }
  146. arr[value.length] = null;
  147. gDBusAnnotationInfo.annotations = arr.ptr;
  148. }
  149. /** */
  150. public static GType getType()
  151. {
  152. return g_dbus_annotation_info_get_type();
  153. }
  154. alias doref = ref_;
  155. /**
  156. * If @info is statically allocated does nothing. Otherwise increases
  157. * the reference count.
  158. *
  159. * Returns: The same @info.
  160. *
  161. * Since: 2.26
  162. */
  163. public DBusAnnotationInfo ref_()
  164. {
  165. auto __p = g_dbus_annotation_info_ref(gDBusAnnotationInfo);
  166. if(__p is null)
  167. {
  168. return null;
  169. }
  170. return ObjectG.getDObject!(DBusAnnotationInfo)(cast(GDBusAnnotationInfo*) __p, true);
  171. }
  172. /**
  173. * If @info is statically allocated, does nothing. Otherwise decreases
  174. * the reference count of @info. When its reference count drops to 0,
  175. * the memory used is freed.
  176. *
  177. * Since: 2.26
  178. */
  179. public void unref()
  180. {
  181. g_dbus_annotation_info_unref(gDBusAnnotationInfo);
  182. }
  183. }