gdk3 1.2.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1337) hide show
  1. data/Rakefile +53 -0
  2. data/ext/gdk3/depend +11 -0
  3. data/ext/gdk3/extconf.rb +127 -0
  4. data/ext/gdk3/gdk3.def +12 -0
  5. data/ext/gdk3/init.c +35 -0
  6. data/ext/gdk3/rbgdk.c +540 -0
  7. data/ext/gdk3/rbgdk3.h +71 -0
  8. data/ext/gdk3/rbgdk3conversions.h +118 -0
  9. data/ext/gdk3/rbgdk3private.h +93 -0
  10. data/ext/gdk3/rbgdkatom.c +122 -0
  11. data/ext/gdk3/rbgdkcairo.c +95 -0
  12. data/ext/gdk3/rbgdkcolor.c +137 -0
  13. data/ext/gdk3/rbgdkconst.c +33 -0
  14. data/ext/gdk3/rbgdkcursor.c +99 -0
  15. data/ext/gdk3/rbgdkdevice.c +197 -0
  16. data/ext/gdk3/rbgdkdisplay.c +482 -0
  17. data/ext/gdk3/rbgdkdisplaymanager.c +55 -0
  18. data/ext/gdk3/rbgdkdragcontext.c +191 -0
  19. data/ext/gdk3/rbgdkdraw.c +520 -0
  20. data/ext/gdk3/rbgdkevent.c +926 -0
  21. data/ext/gdk3/rbgdkgeometry.c +252 -0
  22. data/ext/gdk3/rbgdkkeymap.c +151 -0
  23. data/ext/gdk3/rbgdkkeyval.c +108 -0
  24. data/ext/gdk3/rbgdkpango.c +197 -0
  25. data/ext/gdk3/rbgdkpangorenderer.c +144 -0
  26. data/ext/gdk3/rbgdkpixbuf.c +176 -0
  27. data/ext/gdk3/rbgdkproperty.c +305 -0
  28. data/ext/gdk3/rbgdkrectangle.c +140 -0
  29. data/ext/gdk3/rbgdkrgb.c +199 -0
  30. data/ext/gdk3/rbgdkrgba.c +142 -0
  31. data/ext/gdk3/rbgdkscreen.c +443 -0
  32. data/ext/gdk3/rbgdkselection.c +146 -0
  33. data/ext/gdk3/rbgdkthreads.c +77 -0
  34. data/ext/gdk3/rbgdktimecoord.c +133 -0
  35. data/ext/gdk3/rbgdkvisual.c +251 -0
  36. data/ext/gdk3/rbgdkwindow.c +1044 -0
  37. data/ext/gdk3/rbgdkwindowattr.c +191 -0
  38. data/ext/gdk3/rbgdkx11.c +102 -0
  39. data/ext/gdk3/rbgdkx11x11window.c +66 -0
  40. data/extconf.rb +49 -0
  41. data/lib/1.8/gdk3.so +0 -0
  42. data/lib/1.9/gdk3.so +0 -0
  43. data/lib/gdk3.rb +3 -0
  44. data/lib/gdk3/base.rb +50 -0
  45. data/lib/gdk3/deprecated.rb +152 -0
  46. data/vendor/local/bin/gtk-launch.exe +0 -0
  47. data/vendor/local/bin/gtk-query-immodules-3.0.exe +0 -0
  48. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  49. data/vendor/local/bin/gtk-update-icon-cache.exe.manifest +17 -0
  50. data/vendor/local/bin/gtk3-demo-application.exe +0 -0
  51. data/vendor/local/bin/gtk3-demo.exe +0 -0
  52. data/vendor/local/bin/gtk3-widget-factory.exe +0 -0
  53. data/vendor/local/bin/libgailutil-3-0.dll +0 -0
  54. data/vendor/local/bin/libgdk-3-0.dll +0 -0
  55. data/vendor/local/bin/libgtk-3-0.dll +0 -0
  56. data/vendor/local/etc/gtk-3.0/im-multipress.conf +22 -0
  57. data/vendor/local/etc/gtk-3.0/settings.ini +2 -0
  58. data/vendor/local/include/gail-3.0/libgail-util/gail-util.h +2 -0
  59. data/vendor/local/include/gail-3.0/libgail-util/gailmisc.h +76 -0
  60. data/vendor/local/include/gail-3.0/libgail-util/gailtextutil.h +85 -0
  61. data/vendor/local/include/gtk-3.0/gdk/gdk.h +61 -0
  62. data/vendor/local/include/gtk-3.0/gdk/gdkapplaunchcontext.h +60 -0
  63. data/vendor/local/include/gtk-3.0/gdk/gdkcairo.h +63 -0
  64. data/vendor/local/include/gtk-3.0/gdk/gdkcolor.h +77 -0
  65. data/vendor/local/include/gtk-3.0/gdk/gdkconfig.h +22 -0
  66. data/vendor/local/include/gtk-3.0/gdk/gdkcursor.h +240 -0
  67. data/vendor/local/include/gtk-3.0/gdk/gdkdevice.h +237 -0
  68. data/vendor/local/include/gtk-3.0/gdk/gdkdevicemanager.h +44 -0
  69. data/vendor/local/include/gtk-3.0/gdk/gdkdisplay.h +141 -0
  70. data/vendor/local/include/gtk-3.0/gdk/gdkdisplaymanager.h +55 -0
  71. data/vendor/local/include/gtk-3.0/gdk/gdkdnd.h +153 -0
  72. data/vendor/local/include/gtk-3.0/gdk/gdkenumtypes.h +105 -0
  73. data/vendor/local/include/gtk-3.0/gdk/gdkevents.h +1277 -0
  74. data/vendor/local/include/gtk-3.0/gdk/gdkkeys.h +142 -0
  75. data/vendor/local/include/gtk-3.0/gdk/gdkkeysyms-compat.h +2300 -0
  76. data/vendor/local/include/gtk-3.0/gdk/gdkkeysyms.h +2309 -0
  77. data/vendor/local/include/gtk-3.0/gdk/gdkmain.h +122 -0
  78. data/vendor/local/include/gtk-3.0/gdk/gdkpango.h +56 -0
  79. data/vendor/local/include/gtk-3.0/gdk/gdkpixbuf.h +52 -0
  80. data/vendor/local/include/gtk-3.0/gdk/gdkprivate.h +40 -0
  81. data/vendor/local/include/gtk-3.0/gdk/gdkproperty.h +91 -0
  82. data/vendor/local/include/gtk-3.0/gdk/gdkrectangle.h +51 -0
  83. data/vendor/local/include/gtk-3.0/gdk/gdkrgba.h +62 -0
  84. data/vendor/local/include/gtk-3.0/gdk/gdkscreen.h +100 -0
  85. data/vendor/local/include/gtk-3.0/gdk/gdkselection.h +208 -0
  86. data/vendor/local/include/gtk-3.0/gdk/gdktestutils.h +58 -0
  87. data/vendor/local/include/gtk-3.0/gdk/gdkthreads.h +105 -0
  88. data/vendor/local/include/gtk-3.0/gdk/gdktypes.h +421 -0
  89. data/vendor/local/include/gtk-3.0/gdk/gdkversionmacros.h +220 -0
  90. data/vendor/local/include/gtk-3.0/gdk/gdkvisual.h +123 -0
  91. data/vendor/local/include/gtk-3.0/gdk/gdkwin32.h +105 -0
  92. data/vendor/local/include/gtk-3.0/gdk/gdkwindow.h +884 -0
  93. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32cursor.h +54 -0
  94. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32display.h +54 -0
  95. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32displaymanager.h +47 -0
  96. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32dnd.h +47 -0
  97. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32keys.h +47 -0
  98. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32screen.h +54 -0
  99. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32window.h +54 -0
  100. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h +157 -0
  101. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h +80 -0
  102. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkfontsel.h +165 -0
  103. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h +100 -0
  104. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhbbox.h +65 -0
  105. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhbox.h +67 -0
  106. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhpaned.h +64 -0
  107. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhscale.h +68 -0
  108. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h +64 -0
  109. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhseparator.h +64 -0
  110. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhsv.h +106 -0
  111. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkrc.h +322 -0
  112. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkstyle.h +703 -0
  113. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtktable.h +162 -0
  114. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h +74 -0
  115. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvbbox.h +64 -0
  116. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvbox.h +65 -0
  117. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvpaned.h +64 -0
  118. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvscale.h +74 -0
  119. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h +70 -0
  120. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvseparator.h +70 -0
  121. data/vendor/local/include/gtk-3.0/gtk/gtk.h +253 -0
  122. data/vendor/local/include/gtk-3.0/gtk/gtkaboutdialog.h +169 -0
  123. data/vendor/local/include/gtk-3.0/gtk/gtkaccelgroup.h +209 -0
  124. data/vendor/local/include/gtk-3.0/gtk/gtkaccellabel.h +105 -0
  125. data/vendor/local/include/gtk-3.0/gtk/gtkaccelmap.h +93 -0
  126. data/vendor/local/include/gtk-3.0/gtk/gtkaccessible.h +75 -0
  127. data/vendor/local/include/gtk-3.0/gtk/gtkaction.h +166 -0
  128. data/vendor/local/include/gtk-3.0/gtk/gtkactionable.h +77 -0
  129. data/vendor/local/include/gtk-3.0/gtk/gtkactiongroup.h +238 -0
  130. data/vendor/local/include/gtk-3.0/gtk/gtkactivatable.h +85 -0
  131. data/vendor/local/include/gtk-3.0/gtk/gtkadjustment.h +121 -0
  132. data/vendor/local/include/gtk-3.0/gtk/gtkalignment.h +96 -0
  133. data/vendor/local/include/gtk-3.0/gtk/gtkappchooser.h +49 -0
  134. data/vendor/local/include/gtk-3.0/gtk/gtkappchooserbutton.h +89 -0
  135. data/vendor/local/include/gtk-3.0/gtk/gtkappchooserdialog.h +78 -0
  136. data/vendor/local/include/gtk-3.0/gtk/gtkappchooserwidget.h +103 -0
  137. data/vendor/local/include/gtk-3.0/gtk/gtkapplication.h +128 -0
  138. data/vendor/local/include/gtk-3.0/gtk/gtkapplicationwindow.h +75 -0
  139. data/vendor/local/include/gtk-3.0/gtk/gtkarrow.h +81 -0
  140. data/vendor/local/include/gtk-3.0/gtk/gtkaspectframe.h +84 -0
  141. data/vendor/local/include/gtk-3.0/gtk/gtkassistant.h +188 -0
  142. data/vendor/local/include/gtk-3.0/gtk/gtkbbox.h +90 -0
  143. data/vendor/local/include/gtk-3.0/gtk/gtkbin.h +79 -0
  144. data/vendor/local/include/gtk-3.0/gtk/gtkbindings.h +189 -0
  145. data/vendor/local/include/gtk-3.0/gtk/gtkborder.h +66 -0
  146. data/vendor/local/include/gtk-3.0/gtk/gtkbox.h +112 -0
  147. data/vendor/local/include/gtk-3.0/gtk/gtkbuildable.h +173 -0
  148. data/vendor/local/include/gtk-3.0/gtk/gtkbuilder.h +179 -0
  149. data/vendor/local/include/gtk-3.0/gtk/gtkbutton.h +130 -0
  150. data/vendor/local/include/gtk-3.0/gtk/gtkcalendar.h +169 -0
  151. data/vendor/local/include/gtk-3.0/gtk/gtkcellarea.h +482 -0
  152. data/vendor/local/include/gtk-3.0/gtk/gtkcellareabox.h +87 -0
  153. data/vendor/local/include/gtk-3.0/gtk/gtkcellareacontext.h +135 -0
  154. data/vendor/local/include/gtk-3.0/gtk/gtkcelleditable.h +62 -0
  155. data/vendor/local/include/gtk-3.0/gtk/gtkcelllayout.h +135 -0
  156. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderer.h +280 -0
  157. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendereraccel.h +84 -0
  158. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderercombo.h +65 -0
  159. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h +68 -0
  160. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererprogress.h +72 -0
  161. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererspin.h +64 -0
  162. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererspinner.h +67 -0
  163. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderertext.h +75 -0
  164. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderertoggle.h +82 -0
  165. data/vendor/local/include/gtk-3.0/gtk/gtkcellview.h +95 -0
  166. data/vendor/local/include/gtk-3.0/gtk/gtkcheckbutton.h +80 -0
  167. data/vendor/local/include/gtk-3.0/gtk/gtkcheckmenuitem.h +98 -0
  168. data/vendor/local/include/gtk-3.0/gtk/gtkclipboard.h +237 -0
  169. data/vendor/local/include/gtk-3.0/gtk/gtkcolorbutton.h +108 -0
  170. data/vendor/local/include/gtk-3.0/gtk/gtkcolorchooser.h +87 -0
  171. data/vendor/local/include/gtk-3.0/gtk/gtkcolorchooserdialog.h +68 -0
  172. data/vendor/local/include/gtk-3.0/gtk/gtkcolorchooserwidget.h +71 -0
  173. data/vendor/local/include/gtk-3.0/gtk/gtkcolorutils.h +48 -0
  174. data/vendor/local/include/gtk-3.0/gtk/gtkcombobox.h +147 -0
  175. data/vendor/local/include/gtk-3.0/gtk/gtkcomboboxtext.h +88 -0
  176. data/vendor/local/include/gtk-3.0/gtk/gtkcontainer.h +227 -0
  177. data/vendor/local/include/gtk-3.0/gtk/gtkcssprovider.h +96 -0
  178. data/vendor/local/include/gtk-3.0/gtk/gtkcsssection.h +97 -0
  179. data/vendor/local/include/gtk-3.0/gtk/gtkdebug.h +70 -0
  180. data/vendor/local/include/gtk-3.0/gtk/gtkdialog.h +181 -0
  181. data/vendor/local/include/gtk-3.0/gtk/gtkdnd.h +212 -0
  182. data/vendor/local/include/gtk-3.0/gtk/gtkdrawingarea.h +74 -0
  183. data/vendor/local/include/gtk-3.0/gtk/gtkeditable.h +113 -0
  184. data/vendor/local/include/gtk-3.0/gtk/gtkentry.h +304 -0
  185. data/vendor/local/include/gtk-3.0/gtk/gtkentrybuffer.h +133 -0
  186. data/vendor/local/include/gtk-3.0/gtk/gtkentrycompletion.h +154 -0
  187. data/vendor/local/include/gtk-3.0/gtk/gtkenums.h +1041 -0
  188. data/vendor/local/include/gtk-3.0/gtk/gtkeventbox.h +79 -0
  189. data/vendor/local/include/gtk-3.0/gtk/gtkexpander.h +107 -0
  190. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooser.h +247 -0
  191. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserbutton.h +81 -0
  192. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserdialog.h +69 -0
  193. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserwidget.h +65 -0
  194. data/vendor/local/include/gtk-3.0/gtk/gtkfilefilter.h +116 -0
  195. data/vendor/local/include/gtk-3.0/gtk/gtkfixed.h +91 -0
  196. data/vendor/local/include/gtk-3.0/gtk/gtkfontbutton.h +99 -0
  197. data/vendor/local/include/gtk-3.0/gtk/gtkfontchooser.h +118 -0
  198. data/vendor/local/include/gtk-3.0/gtk/gtkfontchooserdialog.h +67 -0
  199. data/vendor/local/include/gtk-3.0/gtk/gtkfontchooserwidget.h +71 -0
  200. data/vendor/local/include/gtk-3.0/gtk/gtkframe.h +96 -0
  201. data/vendor/local/include/gtk-3.0/gtk/gtkgradient.h +66 -0
  202. data/vendor/local/include/gtk-3.0/gtk/gtkgrid.h +110 -0
  203. data/vendor/local/include/gtk-3.0/gtk/gtkiconfactory.h +183 -0
  204. data/vendor/local/include/gtk-3.0/gtk/gtkicontheme.h +233 -0
  205. data/vendor/local/include/gtk-3.0/gtk/gtkiconview.h +266 -0
  206. data/vendor/local/include/gtk-3.0/gtk/gtkimage.h +168 -0
  207. data/vendor/local/include/gtk-3.0/gtk/gtkimagemenuitem.h +90 -0
  208. data/vendor/local/include/gtk-3.0/gtk/gtkimcontext.h +126 -0
  209. data/vendor/local/include/gtk-3.0/gtk/gtkimcontextinfo.h +44 -0
  210. data/vendor/local/include/gtk-3.0/gtk/gtkimcontextsimple.h +74 -0
  211. data/vendor/local/include/gtk-3.0/gtk/gtkimmodule.h +34 -0
  212. data/vendor/local/include/gtk-3.0/gtk/gtkimmulticontext.h +73 -0
  213. data/vendor/local/include/gtk-3.0/gtk/gtkinfobar.h +116 -0
  214. data/vendor/local/include/gtk-3.0/gtk/gtkinvisible.h +77 -0
  215. data/vendor/local/include/gtk-3.0/gtk/gtklabel.h +176 -0
  216. data/vendor/local/include/gtk-3.0/gtk/gtklayout.h +108 -0
  217. data/vendor/local/include/gtk-3.0/gtk/gtklevelbar.h +127 -0
  218. data/vendor/local/include/gtk-3.0/gtk/gtklinkbutton.h +100 -0
  219. data/vendor/local/include/gtk-3.0/gtk/gtkliststore.h +133 -0
  220. data/vendor/local/include/gtk-3.0/gtk/gtklockbutton.h +72 -0
  221. data/vendor/local/include/gtk-3.0/gtk/gtkmain.h +172 -0
  222. data/vendor/local/include/gtk-3.0/gtk/gtkmenu.h +215 -0
  223. data/vendor/local/include/gtk-3.0/gtk/gtkmenubar.h +90 -0
  224. data/vendor/local/include/gtk-3.0/gtk/gtkmenubutton.h +94 -0
  225. data/vendor/local/include/gtk-3.0/gtk/gtkmenuitem.h +128 -0
  226. data/vendor/local/include/gtk-3.0/gtk/gtkmenushell.h +123 -0
  227. data/vendor/local/include/gtk-3.0/gtk/gtkmenutoolbutton.h +79 -0
  228. data/vendor/local/include/gtk-3.0/gtk/gtkmessagedialog.h +132 -0
  229. data/vendor/local/include/gtk-3.0/gtk/gtkmisc.h +89 -0
  230. data/vendor/local/include/gtk-3.0/gtk/gtkmodules.h +58 -0
  231. data/vendor/local/include/gtk-3.0/gtk/gtkmountoperation.h +81 -0
  232. data/vendor/local/include/gtk-3.0/gtk/gtknotebook.h +250 -0
  233. data/vendor/local/include/gtk-3.0/gtk/gtknumerableicon.h +87 -0
  234. data/vendor/local/include/gtk-3.0/gtk/gtkoffscreenwindow.h +64 -0
  235. data/vendor/local/include/gtk-3.0/gtk/gtkorientable.h +58 -0
  236. data/vendor/local/include/gtk-3.0/gtk/gtkoverlay.h +79 -0
  237. data/vendor/local/include/gtk-3.0/gtk/gtkpagesetup.h +106 -0
  238. data/vendor/local/include/gtk-3.0/gtk/gtkpaned.h +105 -0
  239. data/vendor/local/include/gtk-3.0/gtk/gtkpapersize.h +140 -0
  240. data/vendor/local/include/gtk-3.0/gtk/gtkplug.h +97 -0
  241. data/vendor/local/include/gtk-3.0/gtk/gtkprintcontext.h +69 -0
  242. data/vendor/local/include/gtk-3.0/gtk/gtkprintoperation.h +280 -0
  243. data/vendor/local/include/gtk-3.0/gtk/gtkprintoperationpreview.h +79 -0
  244. data/vendor/local/include/gtk-3.0/gtk/gtkprintsettings.h +248 -0
  245. data/vendor/local/include/gtk-3.0/gtk/gtkprogressbar.h +97 -0
  246. data/vendor/local/include/gtk-3.0/gtk/gtkradioaction.h +89 -0
  247. data/vendor/local/include/gtk-3.0/gtk/gtkradiobutton.h +92 -0
  248. data/vendor/local/include/gtk-3.0/gtk/gtkradiomenuitem.h +91 -0
  249. data/vendor/local/include/gtk-3.0/gtk/gtkradiotoolbutton.h +72 -0
  250. data/vendor/local/include/gtk-3.0/gtk/gtkrange.h +167 -0
  251. data/vendor/local/include/gtk-3.0/gtk/gtkrecentaction.h +78 -0
  252. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooser.h +203 -0
  253. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooserdialog.h +78 -0
  254. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchoosermenu.h +72 -0
  255. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooserwidget.h +68 -0
  256. data/vendor/local/include/gtk-3.0/gtk/gtkrecentfilter.h +125 -0
  257. data/vendor/local/include/gtk-3.0/gtk/gtkrecentmanager.h +234 -0
  258. data/vendor/local/include/gtk-3.0/gtk/gtkscale.h +114 -0
  259. data/vendor/local/include/gtk-3.0/gtk/gtkscalebutton.h +99 -0
  260. data/vendor/local/include/gtk-3.0/gtk/gtkscrollable.h +60 -0
  261. data/vendor/local/include/gtk-3.0/gtk/gtkscrollbar.h +72 -0
  262. data/vendor/local/include/gtk-3.0/gtk/gtkscrolledwindow.h +136 -0
  263. data/vendor/local/include/gtk-3.0/gtk/gtksearchentry.h +73 -0
  264. data/vendor/local/include/gtk-3.0/gtk/gtkselection.h +192 -0
  265. data/vendor/local/include/gtk-3.0/gtk/gtkseparator.h +75 -0
  266. data/vendor/local/include/gtk-3.0/gtk/gtkseparatormenuitem.h +72 -0
  267. data/vendor/local/include/gtk-3.0/gtk/gtkseparatortoolitem.h +70 -0
  268. data/vendor/local/include/gtk-3.0/gtk/gtksettings.h +127 -0
  269. data/vendor/local/include/gtk-3.0/gtk/gtkshow.h +37 -0
  270. data/vendor/local/include/gtk-3.0/gtk/gtksizegroup.h +95 -0
  271. data/vendor/local/include/gtk-3.0/gtk/gtksizerequest.h +57 -0
  272. data/vendor/local/include/gtk-3.0/gtk/gtksocket.h +84 -0
  273. data/vendor/local/include/gtk-3.0/gtk/gtkspinbutton.h +213 -0
  274. data/vendor/local/include/gtk-3.0/gtk/gtkspinner.h +71 -0
  275. data/vendor/local/include/gtk-3.0/gtk/gtkstatusbar.h +101 -0
  276. data/vendor/local/include/gtk-3.0/gtk/gtkstatusicon.h +147 -0
  277. data/vendor/local/include/gtk-3.0/gtk/gtkstock.h +1029 -0
  278. data/vendor/local/include/gtk-3.0/gtk/gtkstylecontext.h +1014 -0
  279. data/vendor/local/include/gtk-3.0/gtk/gtkstyleproperties.h +117 -0
  280. data/vendor/local/include/gtk-3.0/gtk/gtkstyleprovider.h +126 -0
  281. data/vendor/local/include/gtk-3.0/gtk/gtkswitch.h +93 -0
  282. data/vendor/local/include/gtk-3.0/gtk/gtksymboliccolor.h +57 -0
  283. data/vendor/local/include/gtk-3.0/gtk/gtktestutils.h +72 -0
  284. data/vendor/local/include/gtk-3.0/gtk/gtktextattributes.h +180 -0
  285. data/vendor/local/include/gtk-3.0/gtk/gtktextbuffer.h +408 -0
  286. data/vendor/local/include/gtk-3.0/gtk/gtktextbufferrichtext.h +126 -0
  287. data/vendor/local/include/gtk-3.0/gtk/gtktextchild.h +83 -0
  288. data/vendor/local/include/gtk-3.0/gtk/gtktextdisplay.h +101 -0
  289. data/vendor/local/include/gtk-3.0/gtk/gtktextiter.h +306 -0
  290. data/vendor/local/include/gtk-3.0/gtk/gtktextlayout.h +433 -0
  291. data/vendor/local/include/gtk-3.0/gtk/gtktextmark.h +103 -0
  292. data/vendor/local/include/gtk-3.0/gtk/gtktexttag.h +115 -0
  293. data/vendor/local/include/gtk-3.0/gtk/gtktexttagtable.h +96 -0
  294. data/vendor/local/include/gtk-3.0/gtk/gtktextview.h +298 -0
  295. data/vendor/local/include/gtk-3.0/gtk/gtkthemingengine.h +260 -0
  296. data/vendor/local/include/gtk-3.0/gtk/gtktoggleaction.h +92 -0
  297. data/vendor/local/include/gtk-3.0/gtk/gtktogglebutton.h +93 -0
  298. data/vendor/local/include/gtk-3.0/gtk/gtktoggletoolbutton.h +75 -0
  299. data/vendor/local/include/gtk-3.0/gtk/gtktoolbar.h +135 -0
  300. data/vendor/local/include/gtk-3.0/gtk/gtktoolbutton.h +97 -0
  301. data/vendor/local/include/gtk-3.0/gtk/gtktoolitem.h +124 -0
  302. data/vendor/local/include/gtk-3.0/gtk/gtktoolitemgroup.h +104 -0
  303. data/vendor/local/include/gtk-3.0/gtk/gtktoolpalette.h +140 -0
  304. data/vendor/local/include/gtk-3.0/gtk/gtktoolshell.h +89 -0
  305. data/vendor/local/include/gtk-3.0/gtk/gtktooltip.h +75 -0
  306. data/vendor/local/include/gtk-3.0/gtk/gtktreednd.h +123 -0
  307. data/vendor/local/include/gtk-3.0/gtk/gtktreemodel.h +305 -0
  308. data/vendor/local/include/gtk-3.0/gtk/gtktreemodelfilter.h +144 -0
  309. data/vendor/local/include/gtk-3.0/gtk/gtktreemodelsort.h +84 -0
  310. data/vendor/local/include/gtk-3.0/gtk/gtktreeselection.h +146 -0
  311. data/vendor/local/include/gtk-3.0/gtk/gtktreesortable.h +123 -0
  312. data/vendor/local/include/gtk-3.0/gtk/gtktreestore.h +147 -0
  313. data/vendor/local/include/gtk-3.0/gtk/gtktreeview.h +501 -0
  314. data/vendor/local/include/gtk-3.0/gtk/gtktreeviewcolumn.h +224 -0
  315. data/vendor/local/include/gtk-3.0/gtk/gtktypebuiltins.h +307 -0
  316. data/vendor/local/include/gtk-3.0/gtk/gtktypes.h +56 -0
  317. data/vendor/local/include/gtk-3.0/gtk/gtkuimanager.h +171 -0
  318. data/vendor/local/include/gtk-3.0/gtk/gtkversion.h +102 -0
  319. data/vendor/local/include/gtk-3.0/gtk/gtkviewport.h +96 -0
  320. data/vendor/local/include/gtk-3.0/gtk/gtkvolumebutton.h +70 -0
  321. data/vendor/local/include/gtk-3.0/gtk/gtkwidget.h +896 -0
  322. data/vendor/local/include/gtk-3.0/gtk/gtkwidgetpath.h +132 -0
  323. data/vendor/local/include/gtk-3.0/gtk/gtkwindow.h +351 -0
  324. data/vendor/local/include/gtk-3.0/gtk/gtkx.h +28 -0
  325. data/vendor/local/lib/gailutil.def +14 -0
  326. data/vendor/local/lib/gdk-win32-3.0.def +514 -0
  327. data/vendor/local/lib/gtk-3.0/3.0.0/immodules.cache +40 -0
  328. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.dll +0 -0
  329. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.dll.a +0 -0
  330. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.la +41 -0
  331. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.dll +0 -0
  332. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.dll.a +0 -0
  333. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.la +41 -0
  334. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.dll +0 -0
  335. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.dll.a +0 -0
  336. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.la +41 -0
  337. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.dll +0 -0
  338. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.dll.a +0 -0
  339. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.la +41 -0
  340. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.dll +0 -0
  341. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.dll.a +0 -0
  342. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.la +41 -0
  343. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.dll +0 -0
  344. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.dll.a +0 -0
  345. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.la +41 -0
  346. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.dll +0 -0
  347. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.dll.a +0 -0
  348. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.la +41 -0
  349. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.dll +0 -0
  350. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.dll.a +0 -0
  351. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.la +41 -0
  352. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.dll +0 -0
  353. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.dll.a +0 -0
  354. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.la +41 -0
  355. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.dll +0 -0
  356. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.dll.a +0 -0
  357. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.la +41 -0
  358. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.dll +0 -0
  359. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.dll.a +0 -0
  360. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.la +41 -0
  361. data/vendor/local/lib/gtk-win32-3.0.def +3790 -0
  362. data/vendor/local/lib/libgailutil-3.dll.a +0 -0
  363. data/vendor/local/lib/libgailutil-3.la +41 -0
  364. data/vendor/local/lib/libgdk-3.dll.a +0 -0
  365. data/vendor/local/lib/libgdk-3.la +41 -0
  366. data/vendor/local/lib/libgtk-3.dll.a +0 -0
  367. data/vendor/local/lib/libgtk-3.la +41 -0
  368. data/vendor/local/lib/pkgconfig/gail-3.0.pc +11 -0
  369. data/vendor/local/lib/pkgconfig/gdk-3.0.pc +13 -0
  370. data/vendor/local/lib/pkgconfig/gdk-win32-3.0.pc +13 -0
  371. data/vendor/local/lib/pkgconfig/gtk+-3.0.pc +16 -0
  372. data/vendor/local/lib/pkgconfig/gtk+-win32-3.0.pc +16 -0
  373. data/vendor/local/share/aclocal/gtk-3.0.m4 +219 -0
  374. data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
  375. data/vendor/local/share/glib-2.0/schemas/org.gtk.Demo.gschema.xml +17 -0
  376. data/vendor/local/share/glib-2.0/schemas/org.gtk.Settings.ColorChooser.gschema.xml +13 -0
  377. data/vendor/local/share/glib-2.0/schemas/org.gtk.Settings.FileChooser.gschema.xml +66 -0
  378. data/vendor/local/share/gtk-3.0/demo/alphatest.png +0 -0
  379. data/vendor/local/share/gtk-3.0/demo/apple-red.png +0 -0
  380. data/vendor/local/share/gtk-3.0/demo/application.c +485 -0
  381. data/vendor/local/share/gtk-3.0/demo/application.ui +104 -0
  382. data/vendor/local/share/gtk-3.0/demo/appwindow.c +570 -0
  383. data/vendor/local/share/gtk-3.0/demo/assistant.c +201 -0
  384. data/vendor/local/share/gtk-3.0/demo/background.jpg +0 -0
  385. data/vendor/local/share/gtk-3.0/demo/builder.c +74 -0
  386. data/vendor/local/share/gtk-3.0/demo/button_box.c +127 -0
  387. data/vendor/local/share/gtk-3.0/demo/changedisplay.c +654 -0
  388. data/vendor/local/share/gtk-3.0/demo/clipboard.c +326 -0
  389. data/vendor/local/share/gtk-3.0/demo/colorsel.c +133 -0
  390. data/vendor/local/share/gtk-3.0/demo/combobox.c +473 -0
  391. data/vendor/local/share/gtk-3.0/demo/css_accordion.c +78 -0
  392. data/vendor/local/share/gtk-3.0/demo/css_accordion.css +52 -0
  393. data/vendor/local/share/gtk-3.0/demo/css_basics.c +122 -0
  394. data/vendor/local/share/gtk-3.0/demo/css_basics.css +22 -0
  395. data/vendor/local/share/gtk-3.0/demo/css_multiplebgs.c +171 -0
  396. data/vendor/local/share/gtk-3.0/demo/css_multiplebgs.css +136 -0
  397. data/vendor/local/share/gtk-3.0/demo/css_pixbufs.c +127 -0
  398. data/vendor/local/share/gtk-3.0/demo/css_pixbufs.css +76 -0
  399. data/vendor/local/share/gtk-3.0/demo/css_shadows.c +147 -0
  400. data/vendor/local/share/gtk-3.0/demo/css_shadows.css +44 -0
  401. data/vendor/local/share/gtk-3.0/demo/cssview.css +41 -0
  402. data/vendor/local/share/gtk-3.0/demo/demo.ui +266 -0
  403. data/vendor/local/share/gtk-3.0/demo/dialog.c +175 -0
  404. data/vendor/local/share/gtk-3.0/demo/drawingarea.c +296 -0
  405. data/vendor/local/share/gtk-3.0/demo/editable_cells.c +392 -0
  406. data/vendor/local/share/gtk-3.0/demo/entry_buffer.c +66 -0
  407. data/vendor/local/share/gtk-3.0/demo/entry_completion.c +98 -0
  408. data/vendor/local/share/gtk-3.0/demo/expander.c +59 -0
  409. data/vendor/local/share/gtk-3.0/demo/fancy.css +65 -0
  410. data/vendor/local/share/gtk-3.0/demo/floppybuddy.gif +0 -0
  411. data/vendor/local/share/gtk-3.0/demo/gnome-applets.png +0 -0
  412. data/vendor/local/share/gtk-3.0/demo/gnome-calendar.png +0 -0
  413. data/vendor/local/share/gtk-3.0/demo/gnome-foot.png +0 -0
  414. data/vendor/local/share/gtk-3.0/demo/gnome-fs-directory.png +0 -0
  415. data/vendor/local/share/gtk-3.0/demo/gnome-fs-regular.png +0 -0
  416. data/vendor/local/share/gtk-3.0/demo/gnome-gimp.png +0 -0
  417. data/vendor/local/share/gtk-3.0/demo/gnome-gmush.png +0 -0
  418. data/vendor/local/share/gtk-3.0/demo/gnome-gsame.png +0 -0
  419. data/vendor/local/share/gtk-3.0/demo/gnu-keys.png +0 -0
  420. data/vendor/local/share/gtk-3.0/demo/gtk-logo-24.png +0 -0
  421. data/vendor/local/share/gtk-3.0/demo/gtk-logo-48.png +0 -0
  422. data/vendor/local/share/gtk-3.0/demo/gtk-logo-rgb.gif +0 -0
  423. data/vendor/local/share/gtk-3.0/demo/hypertext.c +291 -0
  424. data/vendor/local/share/gtk-3.0/demo/iconview.c +371 -0
  425. data/vendor/local/share/gtk-3.0/demo/iconview_edit.c +158 -0
  426. data/vendor/local/share/gtk-3.0/demo/images.c +472 -0
  427. data/vendor/local/share/gtk-3.0/demo/infobar.c +109 -0
  428. data/vendor/local/share/gtk-3.0/demo/links.c +90 -0
  429. data/vendor/local/share/gtk-3.0/demo/list_store.c +325 -0
  430. data/vendor/local/share/gtk-3.0/demo/menus.c +171 -0
  431. data/vendor/local/share/gtk-3.0/demo/menus.ui +107 -0
  432. data/vendor/local/share/gtk-3.0/demo/offscreen_window.c +615 -0
  433. data/vendor/local/share/gtk-3.0/demo/offscreen_window2.c +526 -0
  434. data/vendor/local/share/gtk-3.0/demo/overlay.c +181 -0
  435. data/vendor/local/share/gtk-3.0/demo/panes.c +205 -0
  436. data/vendor/local/share/gtk-3.0/demo/pickers.c +89 -0
  437. data/vendor/local/share/gtk-3.0/demo/pixbufs.c +261 -0
  438. data/vendor/local/share/gtk-3.0/demo/printing.c +199 -0
  439. data/vendor/local/share/gtk-3.0/demo/reset.css +68 -0
  440. data/vendor/local/share/gtk-3.0/demo/rotated_text.c +236 -0
  441. data/vendor/local/share/gtk-3.0/demo/search_entry.c +322 -0
  442. data/vendor/local/share/gtk-3.0/demo/sizegroup.c +164 -0
  443. data/vendor/local/share/gtk-3.0/demo/spinner.c +95 -0
  444. data/vendor/local/share/gtk-3.0/demo/stock_browser.c +535 -0
  445. data/vendor/local/share/gtk-3.0/demo/textscroll.c +201 -0
  446. data/vendor/local/share/gtk-3.0/demo/textview.c +634 -0
  447. data/vendor/local/share/gtk-3.0/demo/theming.ui +319 -0
  448. data/vendor/local/share/gtk-3.0/demo/theming_custom_css.c +66 -0
  449. data/vendor/local/share/gtk-3.0/demo/theming_style_classes.c +58 -0
  450. data/vendor/local/share/gtk-3.0/demo/toolpalette.c +794 -0
  451. data/vendor/local/share/gtk-3.0/demo/transparent.c +248 -0
  452. data/vendor/local/share/gtk-3.0/demo/tree_store.c +450 -0
  453. data/vendor/local/share/gtk-3.0/demo/ui_manager.c +235 -0
  454. data/vendor/local/share/gtk-3.0/gtkbuilder.rng +305 -0
  455. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3-GailMisc.html +434 -0
  456. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3-GailTextUtil.html +291 -0
  457. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3.devhelp2 +29 -0
  458. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/home.png +0 -0
  459. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/index.html +45 -0
  460. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/index.sgml +26 -0
  461. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/left.png +0 -0
  462. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/libgail-util-main.html +41 -0
  463. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/right.png +0 -0
  464. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/style.css +266 -0
  465. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/up.png +0 -0
  466. data/vendor/local/share/gtk-doc/html/gdk3/GdkDevice.html +1532 -0
  467. data/vendor/local/share/gtk-doc/html/gdk3/GdkDeviceManager.html +445 -0
  468. data/vendor/local/share/gtk-doc/html/gdk3/GdkDisplay.html +1482 -0
  469. data/vendor/local/share/gtk-doc/html/gdk3/GdkDisplayManager.html +354 -0
  470. data/vendor/local/share/gtk-doc/html/gdk3/GdkScreen.html +1213 -0
  471. data/vendor/local/share/gtk-doc/html/gdk3/X_cursor.png +0 -0
  472. data/vendor/local/share/gtk-doc/html/gdk3/annotation-glossary.html +98 -0
  473. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-0.html +298 -0
  474. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-2.html +71 -0
  475. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-4.html +130 -0
  476. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-6.html +42 -0
  477. data/vendor/local/share/gtk-doc/html/gdk3/api-index-deprecated.html +158 -0
  478. data/vendor/local/share/gtk-doc/html/gdk3/api-index-full.html +2711 -0
  479. data/vendor/local/share/gtk-doc/html/gdk3/arrow.png +0 -0
  480. data/vendor/local/share/gtk-doc/html/gdk3/based_arrow_down.png +0 -0
  481. data/vendor/local/share/gtk-doc/html/gdk3/based_arrow_up.png +0 -0
  482. data/vendor/local/share/gtk-doc/html/gdk3/boat.png +0 -0
  483. data/vendor/local/share/gtk-doc/html/gdk3/bogosity.png +0 -0
  484. data/vendor/local/share/gtk-doc/html/gdk3/bottom_left_corner.png +0 -0
  485. data/vendor/local/share/gtk-doc/html/gdk3/bottom_right_corner.png +0 -0
  486. data/vendor/local/share/gtk-doc/html/gdk3/bottom_side.png +0 -0
  487. data/vendor/local/share/gtk-doc/html/gdk3/bottom_tee.png +0 -0
  488. data/vendor/local/share/gtk-doc/html/gdk3/box_spiral.png +0 -0
  489. data/vendor/local/share/gtk-doc/html/gdk3/center_ptr.png +0 -0
  490. data/vendor/local/share/gtk-doc/html/gdk3/circle.png +0 -0
  491. data/vendor/local/share/gtk-doc/html/gdk3/clock.png +0 -0
  492. data/vendor/local/share/gtk-doc/html/gdk3/coffee_mug.png +0 -0
  493. data/vendor/local/share/gtk-doc/html/gdk3/cross.png +0 -0
  494. data/vendor/local/share/gtk-doc/html/gdk3/cross_reverse.png +0 -0
  495. data/vendor/local/share/gtk-doc/html/gdk3/crosshair.png +0 -0
  496. data/vendor/local/share/gtk-doc/html/gdk3/diamond_cross.png +0 -0
  497. data/vendor/local/share/gtk-doc/html/gdk3/dot.png +0 -0
  498. data/vendor/local/share/gtk-doc/html/gdk3/dotbox.png +0 -0
  499. data/vendor/local/share/gtk-doc/html/gdk3/double_arrow.png +0 -0
  500. data/vendor/local/share/gtk-doc/html/gdk3/draft_large.png +0 -0
  501. data/vendor/local/share/gtk-doc/html/gdk3/draft_small.png +0 -0
  502. data/vendor/local/share/gtk-doc/html/gdk3/draped_box.png +0 -0
  503. data/vendor/local/share/gtk-doc/html/gdk3/exchange.png +0 -0
  504. data/vendor/local/share/gtk-doc/html/gdk3/fleur.png +0 -0
  505. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Application-launching.html +379 -0
  506. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Cairo-Interaction.html +453 -0
  507. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Colors.html +296 -0
  508. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Cursors.html +1055 -0
  509. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Drag-and-Drop.html +949 -0
  510. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Event-Structures.html +1873 -0
  511. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Events.html +1839 -0
  512. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-General.html +952 -0
  513. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Keyboard-Handling.html +1180 -0
  514. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Pango-Interaction.html +427 -0
  515. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Pixbufs.html +206 -0
  516. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Points-Rectangles-and-Regions.html +199 -0
  517. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Properties-and-Atoms.html +598 -0
  518. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-RGBA-Colors.html +326 -0
  519. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Selections.html +622 -0
  520. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Testing.html +230 -0
  521. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Threads.html +1050 -0
  522. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Visuals.html +777 -0
  523. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Windows.html +6690 -0
  524. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-X-Window-System-Interaction.html +2083 -0
  525. data/vendor/local/share/gtk-doc/html/gdk3/gdk3.devhelp2 +1042 -0
  526. data/vendor/local/share/gtk-doc/html/gdk3/gobbler.png +0 -0
  527. data/vendor/local/share/gtk-doc/html/gdk3/gumby.png +0 -0
  528. data/vendor/local/share/gtk-doc/html/gdk3/hand1.png +0 -0
  529. data/vendor/local/share/gtk-doc/html/gdk3/hand2.png +0 -0
  530. data/vendor/local/share/gtk-doc/html/gdk3/heart.png +0 -0
  531. data/vendor/local/share/gtk-doc/html/gdk3/home.png +0 -0
  532. data/vendor/local/share/gtk-doc/html/gdk3/icon.png +0 -0
  533. data/vendor/local/share/gtk-doc/html/gdk3/index.html +120 -0
  534. data/vendor/local/share/gtk-doc/html/gdk3/index.sgml +1162 -0
  535. data/vendor/local/share/gtk-doc/html/gdk3/iron_cross.png +0 -0
  536. data/vendor/local/share/gtk-doc/html/gdk3/left.png +0 -0
  537. data/vendor/local/share/gtk-doc/html/gdk3/left_ptr.png +0 -0
  538. data/vendor/local/share/gtk-doc/html/gdk3/left_side.png +0 -0
  539. data/vendor/local/share/gtk-doc/html/gdk3/left_tee.png +0 -0
  540. data/vendor/local/share/gtk-doc/html/gdk3/leftbutton.png +0 -0
  541. data/vendor/local/share/gtk-doc/html/gdk3/ll_angle.png +0 -0
  542. data/vendor/local/share/gtk-doc/html/gdk3/lr_angle.png +0 -0
  543. data/vendor/local/share/gtk-doc/html/gdk3/man.png +0 -0
  544. data/vendor/local/share/gtk-doc/html/gdk3/middlebutton.png +0 -0
  545. data/vendor/local/share/gtk-doc/html/gdk3/mouse.png +0 -0
  546. data/vendor/local/share/gtk-doc/html/gdk3/pencil.png +0 -0
  547. data/vendor/local/share/gtk-doc/html/gdk3/pirate.png +0 -0
  548. data/vendor/local/share/gtk-doc/html/gdk3/plus.png +0 -0
  549. data/vendor/local/share/gtk-doc/html/gdk3/question_arrow.png +0 -0
  550. data/vendor/local/share/gtk-doc/html/gdk3/reference.html +113 -0
  551. data/vendor/local/share/gtk-doc/html/gdk3/right.png +0 -0
  552. data/vendor/local/share/gtk-doc/html/gdk3/right_ptr.png +0 -0
  553. data/vendor/local/share/gtk-doc/html/gdk3/right_side.png +0 -0
  554. data/vendor/local/share/gtk-doc/html/gdk3/right_tee.png +0 -0
  555. data/vendor/local/share/gtk-doc/html/gdk3/rightbutton.png +0 -0
  556. data/vendor/local/share/gtk-doc/html/gdk3/rotated-text.png +0 -0
  557. data/vendor/local/share/gtk-doc/html/gdk3/rtl_logo.png +0 -0
  558. data/vendor/local/share/gtk-doc/html/gdk3/sailboat.png +0 -0
  559. data/vendor/local/share/gtk-doc/html/gdk3/sb_down_arrow.png +0 -0
  560. data/vendor/local/share/gtk-doc/html/gdk3/sb_h_double_arrow.png +0 -0
  561. data/vendor/local/share/gtk-doc/html/gdk3/sb_left_arrow.png +0 -0
  562. data/vendor/local/share/gtk-doc/html/gdk3/sb_right_arrow.png +0 -0
  563. data/vendor/local/share/gtk-doc/html/gdk3/sb_up_arrow.png +0 -0
  564. data/vendor/local/share/gtk-doc/html/gdk3/sb_v_double_arrow.png +0 -0
  565. data/vendor/local/share/gtk-doc/html/gdk3/shuttle.png +0 -0
  566. data/vendor/local/share/gtk-doc/html/gdk3/sizing.png +0 -0
  567. data/vendor/local/share/gtk-doc/html/gdk3/spider.png +0 -0
  568. data/vendor/local/share/gtk-doc/html/gdk3/spraycan.png +0 -0
  569. data/vendor/local/share/gtk-doc/html/gdk3/star.png +0 -0
  570. data/vendor/local/share/gtk-doc/html/gdk3/style.css +266 -0
  571. data/vendor/local/share/gtk-doc/html/gdk3/target.png +0 -0
  572. data/vendor/local/share/gtk-doc/html/gdk3/tcross.png +0 -0
  573. data/vendor/local/share/gtk-doc/html/gdk3/top_left_arrow.png +0 -0
  574. data/vendor/local/share/gtk-doc/html/gdk3/top_left_corner.png +0 -0
  575. data/vendor/local/share/gtk-doc/html/gdk3/top_right_corner.png +0 -0
  576. data/vendor/local/share/gtk-doc/html/gdk3/top_side.png +0 -0
  577. data/vendor/local/share/gtk-doc/html/gdk3/top_tee.png +0 -0
  578. data/vendor/local/share/gtk-doc/html/gdk3/trek.png +0 -0
  579. data/vendor/local/share/gtk-doc/html/gdk3/ul_angle.png +0 -0
  580. data/vendor/local/share/gtk-doc/html/gdk3/umbrella.png +0 -0
  581. data/vendor/local/share/gtk-doc/html/gdk3/up.png +0 -0
  582. data/vendor/local/share/gtk-doc/html/gdk3/ur_angle.png +0 -0
  583. data/vendor/local/share/gtk-doc/html/gdk3/watch.png +0 -0
  584. data/vendor/local/share/gtk-doc/html/gdk3/xterm.png +0 -0
  585. data/vendor/local/share/gtk-doc/html/gtk3/AbstractObjects.html +53 -0
  586. data/vendor/local/share/gtk-doc/html/gtk3/Actions.html +53 -0
  587. data/vendor/local/share/gtk-doc/html/gtk3/Application.html +42 -0
  588. data/vendor/local/share/gtk-doc/html/gtk3/ApplicationChoosing.html +44 -0
  589. data/vendor/local/share/gtk-doc/html/gtk3/Builder.html +38 -0
  590. data/vendor/local/share/gtk-doc/html/gtk3/ButtonWidgets.html +62 -0
  591. data/vendor/local/share/gtk-doc/html/gtk3/DisplayWidgets.html +59 -0
  592. data/vendor/local/share/gtk-doc/html/gtk3/GtkAboutDialog.html +1501 -0
  593. data/vendor/local/share/gtk-doc/html/gtk3/GtkAccelLabel.html +400 -0
  594. data/vendor/local/share/gtk-doc/html/gtk3/GtkAccessible.html +200 -0
  595. data/vendor/local/share/gtk-doc/html/gtk3/GtkAction.html +1580 -0
  596. data/vendor/local/share/gtk-doc/html/gtk3/GtkActionGroup.html +1389 -0
  597. data/vendor/local/share/gtk-doc/html/gtk3/GtkActionable.html +425 -0
  598. data/vendor/local/share/gtk-doc/html/gtk3/GtkActivatable.html +876 -0
  599. data/vendor/local/share/gtk-doc/html/gtk3/GtkAdjustment.html +845 -0
  600. data/vendor/local/share/gtk-doc/html/gtk3/GtkAlignment.html +411 -0
  601. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooser.html +212 -0
  602. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserButton.html +518 -0
  603. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserDialog.html +297 -0
  604. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserWidget.html +712 -0
  605. data/vendor/local/share/gtk-doc/html/gtk3/GtkApplication.html +1877 -0
  606. data/vendor/local/share/gtk-doc/html/gtk3/GtkApplicationWindow.html +788 -0
  607. data/vendor/local/share/gtk-doc/html/gtk3/GtkArrow.html +208 -0
  608. data/vendor/local/share/gtk-doc/html/gtk3/GtkAspectFrame.html +241 -0
  609. data/vendor/local/share/gtk-doc/html/gtk3/GtkAssistant.html +1389 -0
  610. data/vendor/local/share/gtk-doc/html/gtk3/GtkBin.html +132 -0
  611. data/vendor/local/share/gtk-doc/html/gtk3/GtkBox.html +683 -0
  612. data/vendor/local/share/gtk-doc/html/gtk3/GtkBuildable.html +677 -0
  613. data/vendor/local/share/gtk-doc/html/gtk3/GtkBuilder.html +1354 -0
  614. data/vendor/local/share/gtk-doc/html/gtk3/GtkButton.html +1292 -0
  615. data/vendor/local/share/gtk-doc/html/gtk3/GtkButtonBox.html +432 -0
  616. data/vendor/local/share/gtk-doc/html/gtk3/GtkCalendar.html +1031 -0
  617. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellArea.html +3227 -0
  618. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellAreaBox.html +369 -0
  619. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellAreaContext.html +675 -0
  620. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellEditable.html +286 -0
  621. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellLayout.html +750 -0
  622. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRenderer.html +1596 -0
  623. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererAccel.html +275 -0
  624. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererCombo.html +228 -0
  625. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererPixbuf.html +203 -0
  626. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererProgress.html +202 -0
  627. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererSpin.html +159 -0
  628. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererSpinner.html +155 -0
  629. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererText.html +653 -0
  630. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererToggle.html +372 -0
  631. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellView.html +729 -0
  632. data/vendor/local/share/gtk-doc/html/gtk3/GtkCheckButton.html +198 -0
  633. data/vendor/local/share/gtk-doc/html/gtk3/GtkCheckMenuItem.html +462 -0
  634. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorButton.html +607 -0
  635. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooser.html +370 -0
  636. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooserDialog.html +144 -0
  637. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooserWidget.html +150 -0
  638. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorSelection.html +889 -0
  639. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorSelectionDialog.html +200 -0
  640. data/vendor/local/share/gtk-doc/html/gtk3/GtkComboBox.html +1893 -0
  641. data/vendor/local/share/gtk-doc/html/gtk3/GtkComboBoxText.html +519 -0
  642. data/vendor/local/share/gtk-doc/html/gtk3/GtkContainer.html +1692 -0
  643. data/vendor/local/share/gtk-doc/html/gtk3/GtkCssProvider.html +2108 -0
  644. data/vendor/local/share/gtk-doc/html/gtk3/GtkDialog.html +1288 -0
  645. data/vendor/local/share/gtk-doc/html/gtk3/GtkDrawingArea.html +234 -0
  646. data/vendor/local/share/gtk-doc/html/gtk3/GtkEditable.html +723 -0
  647. data/vendor/local/share/gtk-doc/html/gtk3/GtkEntry.html +3957 -0
  648. data/vendor/local/share/gtk-doc/html/gtk3/GtkEntryBuffer.html +627 -0
  649. data/vendor/local/share/gtk-doc/html/gtk3/GtkEntryCompletion.html +1331 -0
  650. data/vendor/local/share/gtk-doc/html/gtk3/GtkEventBox.html +305 -0
  651. data/vendor/local/share/gtk-doc/html/gtk3/GtkExpander.html +851 -0
  652. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooser.html +3403 -0
  653. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserButton.html +486 -0
  654. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserDialog.html +396 -0
  655. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserWidget.html +127 -0
  656. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileFilter.html +595 -0
  657. data/vendor/local/share/gtk-doc/html/gtk3/GtkFixed.html +253 -0
  658. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontButton.html +609 -0
  659. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooser.html +605 -0
  660. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooserDialog.html +137 -0
  661. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooserWidget.html +125 -0
  662. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontSelection.html +571 -0
  663. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontSelectionDialog.html +400 -0
  664. data/vendor/local/share/gtk-doc/html/gtk3/GtkFrame.html +464 -0
  665. data/vendor/local/share/gtk-doc/html/gtk3/GtkGrid.html +701 -0
  666. data/vendor/local/share/gtk-doc/html/gtk3/GtkHBox.html +147 -0
  667. data/vendor/local/share/gtk-doc/html/gtk3/GtkHButtonBox.html +134 -0
  668. data/vendor/local/share/gtk-doc/html/gtk3/GtkHPaned.html +115 -0
  669. data/vendor/local/share/gtk-doc/html/gtk3/GtkHSV.html +445 -0
  670. data/vendor/local/share/gtk-doc/html/gtk3/GtkHScale.html +172 -0
  671. data/vendor/local/share/gtk-doc/html/gtk3/GtkHScrollbar.html +128 -0
  672. data/vendor/local/share/gtk-doc/html/gtk3/GtkHSeparator.html +127 -0
  673. data/vendor/local/share/gtk-doc/html/gtk3/GtkHandleBox.html +514 -0
  674. data/vendor/local/share/gtk-doc/html/gtk3/GtkIMContext.html +1027 -0
  675. data/vendor/local/share/gtk-doc/html/gtk3/GtkIMContextSimple.html +150 -0
  676. data/vendor/local/share/gtk-doc/html/gtk3/GtkIMMulticontext.html +183 -0
  677. data/vendor/local/share/gtk-doc/html/gtk3/GtkIconTheme.html +1755 -0
  678. data/vendor/local/share/gtk-doc/html/gtk3/GtkIconView.html +2896 -0
  679. data/vendor/local/share/gtk-doc/html/gtk3/GtkImage.html +1349 -0
  680. data/vendor/local/share/gtk-doc/html/gtk3/GtkImageMenuItem.html +486 -0
  681. data/vendor/local/share/gtk-doc/html/gtk3/GtkInfoBar.html +764 -0
  682. data/vendor/local/share/gtk-doc/html/gtk3/GtkInvisible.html +205 -0
  683. data/vendor/local/share/gtk-doc/html/gtk3/GtkLabel.html +2208 -0
  684. data/vendor/local/share/gtk-doc/html/gtk3/GtkLayout.html +518 -0
  685. data/vendor/local/share/gtk-doc/html/gtk3/GtkLevelBar.html +782 -0
  686. data/vendor/local/share/gtk-doc/html/gtk3/GtkLinkButton.html +369 -0
  687. data/vendor/local/share/gtk-doc/html/gtk3/GtkListStore.html +1159 -0
  688. data/vendor/local/share/gtk-doc/html/gtk3/GtkLockButton.html +259 -0
  689. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenu.html +1527 -0
  690. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuBar.html +369 -0
  691. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuButton.html +535 -0
  692. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuItem.html +940 -0
  693. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuShell.html +904 -0
  694. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuToolButton.html +387 -0
  695. data/vendor/local/share/gtk-doc/html/gtk3/GtkMessageDialog.html +814 -0
  696. data/vendor/local/share/gtk-doc/html/gtk3/GtkMisc.html +296 -0
  697. data/vendor/local/share/gtk-doc/html/gtk3/GtkNotebook.html +2219 -0
  698. data/vendor/local/share/gtk-doc/html/gtk3/GtkNumerableIcon.html +557 -0
  699. data/vendor/local/share/gtk-doc/html/gtk3/GtkOffscreenWindow.html +187 -0
  700. data/vendor/local/share/gtk-doc/html/gtk3/GtkOverlay.html +229 -0
  701. data/vendor/local/share/gtk-doc/html/gtk3/GtkPageSetup.html +1031 -0
  702. data/vendor/local/share/gtk-doc/html/gtk3/GtkPageSetupUnixDialog.html +254 -0
  703. data/vendor/local/share/gtk-doc/html/gtk3/GtkPaned.html +783 -0
  704. data/vendor/local/share/gtk-doc/html/gtk3/GtkPaperSize.html +905 -0
  705. data/vendor/local/share/gtk-doc/html/gtk3/GtkPlug.html +388 -0
  706. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintContext.html +571 -0
  707. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintJob.html +1133 -0
  708. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintSettings.html +2948 -0
  709. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintUnixDialog.html +919 -0
  710. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrinter.html +1003 -0
  711. data/vendor/local/share/gtk-doc/html/gtk3/GtkProgressBar.html +668 -0
  712. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioAction.html +451 -0
  713. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioButton.html +586 -0
  714. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioMenuItem.html +436 -0
  715. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioToolButton.html +316 -0
  716. data/vendor/local/share/gtk-doc/html/gtk3/GtkRange.html +1365 -0
  717. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentAction.html +279 -0
  718. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooser.html +1415 -0
  719. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserDialog.html +247 -0
  720. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserMenu.html +266 -0
  721. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserWidget.html +155 -0
  722. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentFilter.html +685 -0
  723. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentManager.html +1641 -0
  724. data/vendor/local/share/gtk-doc/html/gtk3/GtkScale.html +726 -0
  725. data/vendor/local/share/gtk-doc/html/gtk3/GtkScaleButton.html +546 -0
  726. data/vendor/local/share/gtk-doc/html/gtk3/GtkScrollable.html +452 -0
  727. data/vendor/local/share/gtk-doc/html/gtk3/GtkScrollbar.html +194 -0
  728. data/vendor/local/share/gtk-doc/html/gtk3/GtkScrolledWindow.html +1106 -0
  729. data/vendor/local/share/gtk-doc/html/gtk3/GtkSearchEntry.html +118 -0
  730. data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparator.html +114 -0
  731. data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparatorMenuItem.html +107 -0
  732. data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparatorToolItem.html +199 -0
  733. data/vendor/local/share/gtk-doc/html/gtk3/GtkSettings.html +1357 -0
  734. data/vendor/local/share/gtk-doc/html/gtk3/GtkSizeGroup.html +487 -0
  735. data/vendor/local/share/gtk-doc/html/gtk3/GtkSocket.html +360 -0
  736. data/vendor/local/share/gtk-doc/html/gtk3/GtkSpinButton.html +1380 -0
  737. data/vendor/local/share/gtk-doc/html/gtk3/GtkSpinner.html +173 -0
  738. data/vendor/local/share/gtk-doc/html/gtk3/GtkStatusIcon.html +1743 -0
  739. data/vendor/local/share/gtk-doc/html/gtk3/GtkStatusbar.html +441 -0
  740. data/vendor/local/share/gtk-doc/html/gtk3/GtkStyle.html +2534 -0
  741. data/vendor/local/share/gtk-doc/html/gtk3/GtkStyleContext.html +4505 -0
  742. data/vendor/local/share/gtk-doc/html/gtk3/GtkStyleProvider.html +324 -0
  743. data/vendor/local/share/gtk-doc/html/gtk3/GtkSwitch.html +248 -0
  744. data/vendor/local/share/gtk-doc/html/gtk3/GtkTable.html +897 -0
  745. data/vendor/local/share/gtk-doc/html/gtk3/GtkTearoffMenuItem.html +135 -0
  746. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextBuffer.html +3895 -0
  747. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextIter.html +3183 -0
  748. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextMark.html +342 -0
  749. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextTag.html +1124 -0
  750. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextTagTable.html +410 -0
  751. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextView.html +3390 -0
  752. data/vendor/local/share/gtk-doc/html/gtk3/GtkThemingEngine.html +1197 -0
  753. data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleAction.html +335 -0
  754. data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleButton.html +518 -0
  755. data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleToolButton.html +268 -0
  756. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolButton.html +677 -0
  757. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolItem.html +1139 -0
  758. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolItemGroup.html +755 -0
  759. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolPalette.html +1037 -0
  760. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolShell.html +425 -0
  761. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolbar.html +946 -0
  762. data/vendor/local/share/gtk-doc/html/gtk3/GtkTooltip.html +432 -0
  763. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModel.html +2814 -0
  764. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModelFilter.html +742 -0
  765. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModelSort.html +591 -0
  766. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeSelection.html +891 -0
  767. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeSortable.html +481 -0
  768. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeStore.html +1108 -0
  769. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeView.html +4864 -0
  770. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeViewColumn.html +2067 -0
  771. data/vendor/local/share/gtk-doc/html/gtk3/GtkUIManager.html +1467 -0
  772. data/vendor/local/share/gtk-doc/html/gtk3/GtkVBox.html +162 -0
  773. data/vendor/local/share/gtk-doc/html/gtk3/GtkVButtonBox.html +134 -0
  774. data/vendor/local/share/gtk-doc/html/gtk3/GtkVPaned.html +115 -0
  775. data/vendor/local/share/gtk-doc/html/gtk3/GtkVScale.html +176 -0
  776. data/vendor/local/share/gtk-doc/html/gtk3/GtkVScrollbar.html +132 -0
  777. data/vendor/local/share/gtk-doc/html/gtk3/GtkVSeparator.html +120 -0
  778. data/vendor/local/share/gtk-doc/html/gtk3/GtkViewport.html +387 -0
  779. data/vendor/local/share/gtk-doc/html/gtk3/GtkVolumeButton.html +135 -0
  780. data/vendor/local/share/gtk-doc/html/gtk3/GtkWidget.html +12811 -0
  781. data/vendor/local/share/gtk-doc/html/gtk3/GtkWindow.html +4647 -0
  782. data/vendor/local/share/gtk-doc/html/gtk3/GtkWindowGroup.html +250 -0
  783. data/vendor/local/share/gtk-doc/html/gtk3/LayoutContainers.html +91 -0
  784. data/vendor/local/share/gtk-doc/html/gtk3/MenusAndCombos.html +93 -0
  785. data/vendor/local/share/gtk-doc/html/gtk3/MiscObjects.html +69 -0
  786. data/vendor/local/share/gtk-doc/html/gtk3/NumericEntry.html +60 -0
  787. data/vendor/local/share/gtk-doc/html/gtk3/Ornaments.html +44 -0
  788. data/vendor/local/share/gtk-doc/html/gtk3/PlugSocket.html +38 -0
  789. data/vendor/local/share/gtk-doc/html/gtk3/Printing.html +59 -0
  790. data/vendor/local/share/gtk-doc/html/gtk3/RecentDocuments.html +51 -0
  791. data/vendor/local/share/gtk-doc/html/gtk3/ScrollingWidgets.html +47 -0
  792. data/vendor/local/share/gtk-doc/html/gtk3/SelectorWidgets.html +86 -0
  793. data/vendor/local/share/gtk-doc/html/gtk3/TextWidget.html +266 -0
  794. data/vendor/local/share/gtk-doc/html/gtk3/TextWidgetObjects.html +53 -0
  795. data/vendor/local/share/gtk-doc/html/gtk3/TreeWidget.html +556 -0
  796. data/vendor/local/share/gtk-doc/html/gtk3/TreeWidgetObjects.html +115 -0
  797. data/vendor/local/share/gtk-doc/html/gtk3/WindowWidgets.html +56 -0
  798. data/vendor/local/share/gtk-doc/html/gtk3/aboutdialog.png +0 -0
  799. data/vendor/local/share/gtk-doc/html/gtk3/accel-label.png +0 -0
  800. data/vendor/local/share/gtk-doc/html/gtk3/annotation-glossary.html +110 -0
  801. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-0.html +1901 -0
  802. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-2.html +378 -0
  803. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-4.html +322 -0
  804. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-6.html +332 -0
  805. data/vendor/local/share/gtk-doc/html/gtk3/api-index-deprecated.html +1006 -0
  806. data/vendor/local/share/gtk-doc/html/gtk3/api-index-full.html +22583 -0
  807. data/vendor/local/share/gtk-doc/html/gtk3/appchooserbutton.png +0 -0
  808. data/vendor/local/share/gtk-doc/html/gtk3/appchooserdialog.png +0 -0
  809. data/vendor/local/share/gtk-doc/html/gtk3/application-exit.png +0 -0
  810. data/vendor/local/share/gtk-doc/html/gtk3/arrows.png +0 -0
  811. data/vendor/local/share/gtk-doc/html/gtk3/assistant.png +0 -0
  812. data/vendor/local/share/gtk-doc/html/gtk3/background.png +0 -0
  813. data/vendor/local/share/gtk-doc/html/gtk3/bloatpad-gnome.png +0 -0
  814. data/vendor/local/share/gtk-doc/html/gtk3/bloatpad-osx.png +0 -0
  815. data/vendor/local/share/gtk-doc/html/gtk3/bloatpad-xfce.png +0 -0
  816. data/vendor/local/share/gtk-doc/html/gtk3/border1.png +0 -0
  817. data/vendor/local/share/gtk-doc/html/gtk3/border2.png +0 -0
  818. data/vendor/local/share/gtk-doc/html/gtk3/border3.png +0 -0
  819. data/vendor/local/share/gtk-doc/html/gtk3/box-expand.png +0 -0
  820. data/vendor/local/share/gtk-doc/html/gtk3/box-packing.png +0 -0
  821. data/vendor/local/share/gtk-doc/html/gtk3/button.png +0 -0
  822. data/vendor/local/share/gtk-doc/html/gtk3/ch02.html +252 -0
  823. data/vendor/local/share/gtk-doc/html/gtk3/ch03.html +178 -0
  824. data/vendor/local/share/gtk-doc/html/gtk3/ch24s02.html +1407 -0
  825. data/vendor/local/share/gtk-doc/html/gtk3/ch26s02.html +53 -0
  826. data/vendor/local/share/gtk-doc/html/gtk3/ch28s02.html +117 -0
  827. data/vendor/local/share/gtk-doc/html/gtk3/ch28s03.html +70 -0
  828. data/vendor/local/share/gtk-doc/html/gtk3/chap-drawing-model.html +461 -0
  829. data/vendor/local/share/gtk-doc/html/gtk3/check-button.png +0 -0
  830. data/vendor/local/share/gtk-doc/html/gtk3/checklist-gdkeventexpose-region.html +82 -0
  831. data/vendor/local/share/gtk-doc/html/gtk3/checklist-modifiers.html +89 -0
  832. data/vendor/local/share/gtk-doc/html/gtk3/checklist-named-icons.html +40 -0
  833. data/vendor/local/share/gtk-doc/html/gtk3/checks.png +0 -0
  834. data/vendor/local/share/gtk-doc/html/gtk3/color-button.png +0 -0
  835. data/vendor/local/share/gtk-doc/html/gtk3/colorchooser.png +0 -0
  836. data/vendor/local/share/gtk-doc/html/gtk3/colorsel.png +0 -0
  837. data/vendor/local/share/gtk-doc/html/gtk3/combo-box-entry.png +0 -0
  838. data/vendor/local/share/gtk-doc/html/gtk3/combo-box.png +0 -0
  839. data/vendor/local/share/gtk-doc/html/gtk3/dialog-error.png +0 -0
  840. data/vendor/local/share/gtk-doc/html/gtk3/dialog-information.png +0 -0
  841. data/vendor/local/share/gtk-doc/html/gtk3/dialog-password.png +0 -0
  842. data/vendor/local/share/gtk-doc/html/gtk3/dialog-question.png +0 -0
  843. data/vendor/local/share/gtk-doc/html/gtk3/dialog-warning.png +0 -0
  844. data/vendor/local/share/gtk-doc/html/gtk3/document-new.png +0 -0
  845. data/vendor/local/share/gtk-doc/html/gtk3/document-open.png +0 -0
  846. data/vendor/local/share/gtk-doc/html/gtk3/document-print-preview.png +0 -0
  847. data/vendor/local/share/gtk-doc/html/gtk3/document-print.png +0 -0
  848. data/vendor/local/share/gtk-doc/html/gtk3/document-properties.png +0 -0
  849. data/vendor/local/share/gtk-doc/html/gtk3/document-revert-ltr.png +0 -0
  850. data/vendor/local/share/gtk-doc/html/gtk3/document-revert-rtl.png +0 -0
  851. data/vendor/local/share/gtk-doc/html/gtk3/document-save-as.png +0 -0
  852. data/vendor/local/share/gtk-doc/html/gtk3/document-save.png +0 -0
  853. data/vendor/local/share/gtk-doc/html/gtk3/down-center.png +0 -0
  854. data/vendor/local/share/gtk-doc/html/gtk3/down-end.png +0 -0
  855. data/vendor/local/share/gtk-doc/html/gtk3/down-start.png +0 -0
  856. data/vendor/local/share/gtk-doc/html/gtk3/drawing.png +0 -0
  857. data/vendor/local/share/gtk-doc/html/gtk3/drive-harddisk.png +0 -0
  858. data/vendor/local/share/gtk-doc/html/gtk3/ease-in-out.png +0 -0
  859. data/vendor/local/share/gtk-doc/html/gtk3/ease-in.png +0 -0
  860. data/vendor/local/share/gtk-doc/html/gtk3/ease-out.png +0 -0
  861. data/vendor/local/share/gtk-doc/html/gtk3/ease.png +0 -0
  862. data/vendor/local/share/gtk-doc/html/gtk3/edit-clear.png +0 -0
  863. data/vendor/local/share/gtk-doc/html/gtk3/edit-copy.png +0 -0
  864. data/vendor/local/share/gtk-doc/html/gtk3/edit-cut.png +0 -0
  865. data/vendor/local/share/gtk-doc/html/gtk3/edit-delete.png +0 -0
  866. data/vendor/local/share/gtk-doc/html/gtk3/edit-find-replace.png +0 -0
  867. data/vendor/local/share/gtk-doc/html/gtk3/edit-find.png +0 -0
  868. data/vendor/local/share/gtk-doc/html/gtk3/edit-paste.png +0 -0
  869. data/vendor/local/share/gtk-doc/html/gtk3/edit-redo-ltr.png +0 -0
  870. data/vendor/local/share/gtk-doc/html/gtk3/edit-redo-rtl.png +0 -0
  871. data/vendor/local/share/gtk-doc/html/gtk3/edit-select-all.png +0 -0
  872. data/vendor/local/share/gtk-doc/html/gtk3/edit-undo-ltr.png +0 -0
  873. data/vendor/local/share/gtk-doc/html/gtk3/edit-undo-rtl.png +0 -0
  874. data/vendor/local/share/gtk-doc/html/gtk3/entry.png +0 -0
  875. data/vendor/local/share/gtk-doc/html/gtk3/expanders.png +0 -0
  876. data/vendor/local/share/gtk-doc/html/gtk3/extensions.png +0 -0
  877. data/vendor/local/share/gtk-doc/html/gtk3/figure-hierarchical-drawing.png +0 -0
  878. data/vendor/local/share/gtk-doc/html/gtk3/figure-windowed-label.png +0 -0
  879. data/vendor/local/share/gtk-doc/html/gtk3/file-button.png +0 -0
  880. data/vendor/local/share/gtk-doc/html/gtk3/filechooser.png +0 -0
  881. data/vendor/local/share/gtk-doc/html/gtk3/focus.png +0 -0
  882. data/vendor/local/share/gtk-doc/html/gtk3/folder.png +0 -0
  883. data/vendor/local/share/gtk-doc/html/gtk3/font-button.png +0 -0
  884. data/vendor/local/share/gtk-doc/html/gtk3/fontchooser.png +0 -0
  885. data/vendor/local/share/gtk-doc/html/gtk3/fontsel.png +0 -0
  886. data/vendor/local/share/gtk-doc/html/gtk3/format-indent-less-ltr.png +0 -0
  887. data/vendor/local/share/gtk-doc/html/gtk3/format-indent-less-rtl.png +0 -0
  888. data/vendor/local/share/gtk-doc/html/gtk3/format-indent-more-ltr.png +0 -0
  889. data/vendor/local/share/gtk-doc/html/gtk3/format-indent-more-rtl.png +0 -0
  890. data/vendor/local/share/gtk-doc/html/gtk3/format-justify-center.png +0 -0
  891. data/vendor/local/share/gtk-doc/html/gtk3/format-justify-fill.png +0 -0
  892. data/vendor/local/share/gtk-doc/html/gtk3/format-justify-left.png +0 -0
  893. data/vendor/local/share/gtk-doc/html/gtk3/format-justify-right.png +0 -0
  894. data/vendor/local/share/gtk-doc/html/gtk3/format-text-bold.png +0 -0
  895. data/vendor/local/share/gtk-doc/html/gtk3/format-text-italic.png +0 -0
  896. data/vendor/local/share/gtk-doc/html/gtk3/format-text-strikethrough.png +0 -0
  897. data/vendor/local/share/gtk-doc/html/gtk3/format-text-underline.png +0 -0
  898. data/vendor/local/share/gtk-doc/html/gtk3/frame-gap.png +0 -0
  899. data/vendor/local/share/gtk-doc/html/gtk3/frame.png +0 -0
  900. data/vendor/local/share/gtk-doc/html/gtk3/frames.png +0 -0
  901. data/vendor/local/share/gtk-doc/html/gtk3/glossary.html +312 -0
  902. data/vendor/local/share/gtk-doc/html/gtk3/go-bottom.png +0 -0
  903. data/vendor/local/share/gtk-doc/html/gtk3/go-down.png +0 -0
  904. data/vendor/local/share/gtk-doc/html/gtk3/go-first-ltr.png +0 -0
  905. data/vendor/local/share/gtk-doc/html/gtk3/go-first-rtl.png +0 -0
  906. data/vendor/local/share/gtk-doc/html/gtk3/go-home.png +0 -0
  907. data/vendor/local/share/gtk-doc/html/gtk3/go-jump-ltr.png +0 -0
  908. data/vendor/local/share/gtk-doc/html/gtk3/go-jump-rtl.png +0 -0
  909. data/vendor/local/share/gtk-doc/html/gtk3/go-last-ltr.png +0 -0
  910. data/vendor/local/share/gtk-doc/html/gtk3/go-last-rtl.png +0 -0
  911. data/vendor/local/share/gtk-doc/html/gtk3/go-next-ltr.png +0 -0
  912. data/vendor/local/share/gtk-doc/html/gtk3/go-next-rtl.png +0 -0
  913. data/vendor/local/share/gtk-doc/html/gtk3/go-previous-ltr.png +0 -0
  914. data/vendor/local/share/gtk-doc/html/gtk3/go-previous-rtl.png +0 -0
  915. data/vendor/local/share/gtk-doc/html/gtk3/go-top.png +0 -0
  916. data/vendor/local/share/gtk-doc/html/gtk3/go-up.png +0 -0
  917. data/vendor/local/share/gtk-doc/html/gtk3/gradient1.png +0 -0
  918. data/vendor/local/share/gtk-doc/html/gtk3/gradient2.png +0 -0
  919. data/vendor/local/share/gtk-doc/html/gtk3/gradient3.png +0 -0
  920. data/vendor/local/share/gtk-doc/html/gtk3/gradient4.png +0 -0
  921. data/vendor/local/share/gtk-doc/html/gtk3/grid-packing.png +0 -0
  922. data/vendor/local/share/gtk-doc/html/gtk3/gtk-apply.png +0 -0
  923. data/vendor/local/share/gtk-doc/html/gtk3/gtk-broadway.html +55 -0
  924. data/vendor/local/share/gtk-doc/html/gtk3/gtk-building.html +459 -0
  925. data/vendor/local/share/gtk-doc/html/gtk3/gtk-cancel.png +0 -0
  926. data/vendor/local/share/gtk-doc/html/gtk3/gtk-caps-lock-warning.png +0 -0
  927. data/vendor/local/share/gtk-doc/html/gtk3/gtk-color-picker.png +0 -0
  928. data/vendor/local/share/gtk-doc/html/gtk3/gtk-compiling.html +161 -0
  929. data/vendor/local/share/gtk-doc/html/gtk3/gtk-connect.png +0 -0
  930. data/vendor/local/share/gtk-doc/html/gtk3/gtk-convert.png +0 -0
  931. data/vendor/local/share/gtk-doc/html/gtk3/gtk-disconnect.png +0 -0
  932. data/vendor/local/share/gtk-doc/html/gtk3/gtk-dnd-multiple.png +0 -0
  933. data/vendor/local/share/gtk-doc/html/gtk3/gtk-dnd.png +0 -0
  934. data/vendor/local/share/gtk-doc/html/gtk3/gtk-edit.png +0 -0
  935. data/vendor/local/share/gtk-doc/html/gtk3/gtk-font.png +0 -0
  936. data/vendor/local/share/gtk-doc/html/gtk3/gtk-getting-started.html +1095 -0
  937. data/vendor/local/share/gtk-doc/html/gtk3/gtk-index.png +0 -0
  938. data/vendor/local/share/gtk-doc/html/gtk3/gtk-launch.html +72 -0
  939. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-2-to-3.html +688 -0
  940. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkGrid.html +102 -0
  941. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-bonus-points.html +136 -0
  942. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-checklist.html +221 -0
  943. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-css.html +437 -0
  944. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-parser-extensions.html +69 -0
  945. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-parsing.html +82 -0
  946. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext.html +74 -0
  947. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-checklist.html +164 -0
  948. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-smclient-GtkApplication.html +89 -0
  949. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-theme-GtkStyleContext-engines.html +133 -0
  950. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-unique-GtkApplication.html +228 -0
  951. data/vendor/local/share/gtk-doc/html/gtk3/gtk-no.png +0 -0
  952. data/vendor/local/share/gtk-doc/html/gtk3/gtk-ok.png +0 -0
  953. data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-landscape.png +0 -0
  954. data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-portrait.png +0 -0
  955. data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-reverse-landscape.png +0 -0
  956. data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-reverse-portrait.png +0 -0
  957. data/vendor/local/share/gtk-doc/html/gtk3/gtk-osx.html +54 -0
  958. data/vendor/local/share/gtk-doc/html/gtk3/gtk-page-setup.png +0 -0
  959. data/vendor/local/share/gtk-doc/html/gtk3/gtk-preferences.png +0 -0
  960. data/vendor/local/share/gtk-doc/html/gtk3/gtk-query-immodules-3.0.html +110 -0
  961. data/vendor/local/share/gtk-doc/html/gtk3/gtk-question-index.html +1395 -0
  962. data/vendor/local/share/gtk-doc/html/gtk3/gtk-resources.html +146 -0
  963. data/vendor/local/share/gtk-doc/html/gtk3/gtk-running.html +427 -0
  964. data/vendor/local/share/gtk-doc/html/gtk3/gtk-select-color.png +0 -0
  965. data/vendor/local/share/gtk-doc/html/gtk3/gtk-undelete-ltr.png +0 -0
  966. data/vendor/local/share/gtk-doc/html/gtk3/gtk-undelete-rtl.png +0 -0
  967. data/vendor/local/share/gtk-doc/html/gtk3/gtk-update-icon-cache.html +106 -0
  968. data/vendor/local/share/gtk-doc/html/gtk3/gtk-windows.html +93 -0
  969. data/vendor/local/share/gtk-doc/html/gtk3/gtk-x11.html +122 -0
  970. data/vendor/local/share/gtk-doc/html/gtk3/gtk-yes.png +0 -0
  971. data/vendor/local/share/gtk-doc/html/gtk3/gtk.html +187 -0
  972. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Accelerator-Maps.html +674 -0
  973. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Bindings.html +920 -0
  974. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Clipboards.html +1622 -0
  975. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Drag-and-Drop.html +1483 -0
  976. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Feature-Test-Macros.html +346 -0
  977. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Filesystem-utilities.html +368 -0
  978. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-General.html +1325 -0
  979. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkGradient.html +346 -0
  980. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkStyleProperties.html +590 -0
  981. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkSymbolicColor.html +420 -0
  982. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkTreeView-drag-and-drop.html +452 -0
  983. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkWidgetPath.html +1361 -0
  984. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-High-level-Printing-API.html +2748 -0
  985. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Keyboard-Accelerators.html +1143 -0
  986. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Orientable.html +173 -0
  987. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Resource-Files.html +2004 -0
  988. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Selections.html +1844 -0
  989. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Standard-Enumerations.html +1753 -0
  990. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Stock-Items.html +1587 -0
  991. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Testing.html +646 -0
  992. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Themeable-Stock-Images.html +1730 -0
  993. data/vendor/local/share/gtk-doc/html/gtk3/gtk3.devhelp2 +6619 -0
  994. data/vendor/local/share/gtk-doc/html/gtk3/gtkbase.html +76 -0
  995. data/vendor/local/share/gtk-doc/html/gtk3/gtkobjects.html +670 -0
  996. data/vendor/local/share/gtk-doc/html/gtk3/handles.png +0 -0
  997. data/vendor/local/share/gtk-doc/html/gtk3/hello-world.png +0 -0
  998. data/vendor/local/share/gtk-doc/html/gtk3/help-about.png +0 -0
  999. data/vendor/local/share/gtk-doc/html/gtk3/help-contents.png +0 -0
  1000. data/vendor/local/share/gtk-doc/html/gtk3/home.png +0 -0
  1001. data/vendor/local/share/gtk-doc/html/gtk3/icon-view.png +0 -0
  1002. data/vendor/local/share/gtk-doc/html/gtk3/image-missing.png +0 -0
  1003. data/vendor/local/share/gtk-doc/html/gtk3/image.png +0 -0
  1004. data/vendor/local/share/gtk-doc/html/gtk3/index.html +903 -0
  1005. data/vendor/local/share/gtk-doc/html/gtk3/index.sgml +8183 -0
  1006. data/vendor/local/share/gtk-doc/html/gtk3/label.png +0 -0
  1007. data/vendor/local/share/gtk-doc/html/gtk3/layout-btlr.png +0 -0
  1008. data/vendor/local/share/gtk-doc/html/gtk3/layout-btrl.png +0 -0
  1009. data/vendor/local/share/gtk-doc/html/gtk3/layout-lrbt.png +0 -0
  1010. data/vendor/local/share/gtk-doc/html/gtk3/layout-lrtb.png +0 -0
  1011. data/vendor/local/share/gtk-doc/html/gtk3/layout-rlbt.png +0 -0
  1012. data/vendor/local/share/gtk-doc/html/gtk3/layout-rltb.png +0 -0
  1013. data/vendor/local/share/gtk-doc/html/gtk3/layout-tblr.png +0 -0
  1014. data/vendor/local/share/gtk-doc/html/gtk3/layout-tbrl.png +0 -0
  1015. data/vendor/local/share/gtk-doc/html/gtk3/left-center.png +0 -0
  1016. data/vendor/local/share/gtk-doc/html/gtk3/left-end.png +0 -0
  1017. data/vendor/local/share/gtk-doc/html/gtk3/left-start.png +0 -0
  1018. data/vendor/local/share/gtk-doc/html/gtk3/left.png +0 -0
  1019. data/vendor/local/share/gtk-doc/html/gtk3/levelbar.png +0 -0
  1020. data/vendor/local/share/gtk-doc/html/gtk3/linear.png +0 -0
  1021. data/vendor/local/share/gtk-doc/html/gtk3/link-button.png +0 -0
  1022. data/vendor/local/share/gtk-doc/html/gtk3/list-add.png +0 -0
  1023. data/vendor/local/share/gtk-doc/html/gtk3/list-and-tree.png +0 -0
  1024. data/vendor/local/share/gtk-doc/html/gtk3/list-remove.png +0 -0
  1025. data/vendor/local/share/gtk-doc/html/gtk3/lock-button.png +0 -0
  1026. data/vendor/local/share/gtk-doc/html/gtk3/lockbutton-locked.png +0 -0
  1027. data/vendor/local/share/gtk-doc/html/gtk3/lockbutton-sorry.png +0 -0
  1028. data/vendor/local/share/gtk-doc/html/gtk3/lockbutton-unlocked.png +0 -0
  1029. data/vendor/local/share/gtk-doc/html/gtk3/lockbutton.png +0 -0
  1030. data/vendor/local/share/gtk-doc/html/gtk3/media-floppy.png +0 -0
  1031. data/vendor/local/share/gtk-doc/html/gtk3/media-optical.png +0 -0
  1032. data/vendor/local/share/gtk-doc/html/gtk3/media-playback-pause.png +0 -0
  1033. data/vendor/local/share/gtk-doc/html/gtk3/media-playback-start-ltr.png +0 -0
  1034. data/vendor/local/share/gtk-doc/html/gtk3/media-playback-start-rtl.png +0 -0
  1035. data/vendor/local/share/gtk-doc/html/gtk3/media-playback-stop.png +0 -0
  1036. data/vendor/local/share/gtk-doc/html/gtk3/media-record.png +0 -0
  1037. data/vendor/local/share/gtk-doc/html/gtk3/media-seek-backward-ltr.png +0 -0
  1038. data/vendor/local/share/gtk-doc/html/gtk3/media-seek-backward-rtl.png +0 -0
  1039. data/vendor/local/share/gtk-doc/html/gtk3/media-seek-forward-ltr.png +0 -0
  1040. data/vendor/local/share/gtk-doc/html/gtk3/media-seek-forward-rtl.png +0 -0
  1041. data/vendor/local/share/gtk-doc/html/gtk3/media-skip-backward-ltr.png +0 -0
  1042. data/vendor/local/share/gtk-doc/html/gtk3/media-skip-backward-rtl.png +0 -0
  1043. data/vendor/local/share/gtk-doc/html/gtk3/media-skip-forward-ltr.png +0 -0
  1044. data/vendor/local/share/gtk-doc/html/gtk3/media-skip-forward-rtl.png +0 -0
  1045. data/vendor/local/share/gtk-doc/html/gtk3/menu-button.png +0 -0
  1046. data/vendor/local/share/gtk-doc/html/gtk3/menubar.png +0 -0
  1047. data/vendor/local/share/gtk-doc/html/gtk3/messagedialog.png +0 -0
  1048. data/vendor/local/share/gtk-doc/html/gtk3/migrating.html +106 -0
  1049. data/vendor/local/share/gtk-doc/html/gtk3/multiline-text.png +0 -0
  1050. data/vendor/local/share/gtk-doc/html/gtk3/network-idle.png +0 -0
  1051. data/vendor/local/share/gtk-doc/html/gtk3/notebook.png +0 -0
  1052. data/vendor/local/share/gtk-doc/html/gtk3/numerableicon.png +0 -0
  1053. data/vendor/local/share/gtk-doc/html/gtk3/numerableicon2.png +0 -0
  1054. data/vendor/local/share/gtk-doc/html/gtk3/options.png +0 -0
  1055. data/vendor/local/share/gtk-doc/html/gtk3/pagesetupdialog.png +0 -0
  1056. data/vendor/local/share/gtk-doc/html/gtk3/panes.png +0 -0
  1057. data/vendor/local/share/gtk-doc/html/gtk3/printdialog.png +0 -0
  1058. data/vendor/local/share/gtk-doc/html/gtk3/printer-error.png +0 -0
  1059. data/vendor/local/share/gtk-doc/html/gtk3/printer-info.png +0 -0
  1060. data/vendor/local/share/gtk-doc/html/gtk3/printer-paused.png +0 -0
  1061. data/vendor/local/share/gtk-doc/html/gtk3/printer-warning.png +0 -0
  1062. data/vendor/local/share/gtk-doc/html/gtk3/process-stop.png +0 -0
  1063. data/vendor/local/share/gtk-doc/html/gtk3/progressbar.png +0 -0
  1064. data/vendor/local/share/gtk-doc/html/gtk3/pt06.html +44 -0
  1065. data/vendor/local/share/gtk-doc/html/gtk3/radio-group.png +0 -0
  1066. data/vendor/local/share/gtk-doc/html/gtk3/recentchooserdialog.png +0 -0
  1067. data/vendor/local/share/gtk-doc/html/gtk3/right-center.png +0 -0
  1068. data/vendor/local/share/gtk-doc/html/gtk3/right-end.png +0 -0
  1069. data/vendor/local/share/gtk-doc/html/gtk3/right-start.png +0 -0
  1070. data/vendor/local/share/gtk-doc/html/gtk3/right.png +0 -0
  1071. data/vendor/local/share/gtk-doc/html/gtk3/scales.png +0 -0
  1072. data/vendor/local/share/gtk-doc/html/gtk3/scrolledwindow.png +0 -0
  1073. data/vendor/local/share/gtk-doc/html/gtk3/search-entry.png +0 -0
  1074. data/vendor/local/share/gtk-doc/html/gtk3/separator.png +0 -0
  1075. data/vendor/local/share/gtk-doc/html/gtk3/slices.png +0 -0
  1076. data/vendor/local/share/gtk-doc/html/gtk3/sliders.png +0 -0
  1077. data/vendor/local/share/gtk-doc/html/gtk3/spinbutton.png +0 -0
  1078. data/vendor/local/share/gtk-doc/html/gtk3/spinner.png +0 -0
  1079. data/vendor/local/share/gtk-doc/html/gtk3/statusbar.png +0 -0
  1080. data/vendor/local/share/gtk-doc/html/gtk3/style.css +266 -0
  1081. data/vendor/local/share/gtk-doc/html/gtk3/switch.png +0 -0
  1082. data/vendor/local/share/gtk-doc/html/gtk3/system-run.png +0 -0
  1083. data/vendor/local/share/gtk-doc/html/gtk3/text-x-generic.png +0 -0
  1084. data/vendor/local/share/gtk-doc/html/gtk3/theming.html +75 -0
  1085. data/vendor/local/share/gtk-doc/html/gtk3/toggle-button.png +0 -0
  1086. data/vendor/local/share/gtk-doc/html/gtk3/toolbar.png +0 -0
  1087. data/vendor/local/share/gtk-doc/html/gtk3/toolpalette.png +0 -0
  1088. data/vendor/local/share/gtk-doc/html/gtk3/tools-check-spelling.png +0 -0
  1089. data/vendor/local/share/gtk-doc/html/gtk3/tree-view-coordinates.png +0 -0
  1090. data/vendor/local/share/gtk-doc/html/gtk3/up-center.png +0 -0
  1091. data/vendor/local/share/gtk-doc/html/gtk3/up-end.png +0 -0
  1092. data/vendor/local/share/gtk-doc/html/gtk3/up-start.png +0 -0
  1093. data/vendor/local/share/gtk-doc/html/gtk3/up.png +0 -0
  1094. data/vendor/local/share/gtk-doc/html/gtk3/view-fullscreen.png +0 -0
  1095. data/vendor/local/share/gtk-doc/html/gtk3/view-refresh.png +0 -0
  1096. data/vendor/local/share/gtk-doc/html/gtk3/view-restore.png +0 -0
  1097. data/vendor/local/share/gtk-doc/html/gtk3/view-sort-ascending.png +0 -0
  1098. data/vendor/local/share/gtk-doc/html/gtk3/view-sort-descending.png +0 -0
  1099. data/vendor/local/share/gtk-doc/html/gtk3/volumebutton.png +0 -0
  1100. data/vendor/local/share/gtk-doc/html/gtk3/widget-hvalign.png +0 -0
  1101. data/vendor/local/share/gtk-doc/html/gtk3/window-close.png +0 -0
  1102. data/vendor/local/share/gtk-doc/html/gtk3/window-default.png +0 -0
  1103. data/vendor/local/share/gtk-doc/html/gtk3/window.png +0 -0
  1104. data/vendor/local/share/gtk-doc/html/gtk3/zoom-fit-best.png +0 -0
  1105. data/vendor/local/share/gtk-doc/html/gtk3/zoom-in.png +0 -0
  1106. data/vendor/local/share/gtk-doc/html/gtk3/zoom-original.png +0 -0
  1107. data/vendor/local/share/gtk-doc/html/gtk3/zoom-out.png +0 -0
  1108. data/vendor/local/share/license/gtk+/AUTHORS +65 -0
  1109. data/vendor/local/share/license/gtk+/COPYING +481 -0
  1110. data/vendor/local/share/locale/af/LC_MESSAGES/gtk30-properties.mo +0 -0
  1111. data/vendor/local/share/locale/af/LC_MESSAGES/gtk30.mo +0 -0
  1112. data/vendor/local/share/locale/am/LC_MESSAGES/gtk30-properties.mo +0 -0
  1113. data/vendor/local/share/locale/am/LC_MESSAGES/gtk30.mo +0 -0
  1114. data/vendor/local/share/locale/ang/LC_MESSAGES/gtk30-properties.mo +0 -0
  1115. data/vendor/local/share/locale/ang/LC_MESSAGES/gtk30.mo +0 -0
  1116. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk30-properties.mo +0 -0
  1117. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk30.mo +0 -0
  1118. data/vendor/local/share/locale/as/LC_MESSAGES/gtk30-properties.mo +0 -0
  1119. data/vendor/local/share/locale/as/LC_MESSAGES/gtk30.mo +0 -0
  1120. data/vendor/local/share/locale/ast/LC_MESSAGES/gtk30-properties.mo +0 -0
  1121. data/vendor/local/share/locale/ast/LC_MESSAGES/gtk30.mo +0 -0
  1122. data/vendor/local/share/locale/az/LC_MESSAGES/gtk30-properties.mo +0 -0
  1123. data/vendor/local/share/locale/az/LC_MESSAGES/gtk30.mo +0 -0
  1124. data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk30-properties.mo +0 -0
  1125. data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk30.mo +0 -0
  1126. data/vendor/local/share/locale/be/LC_MESSAGES/gtk30-properties.mo +0 -0
  1127. data/vendor/local/share/locale/be/LC_MESSAGES/gtk30.mo +0 -0
  1128. data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk30-properties.mo +0 -0
  1129. data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk30.mo +0 -0
  1130. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk30-properties.mo +0 -0
  1131. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk30.mo +0 -0
  1132. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk30-properties.mo +0 -0
  1133. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk30.mo +0 -0
  1134. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk30-properties.mo +0 -0
  1135. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk30.mo +0 -0
  1136. data/vendor/local/share/locale/br/LC_MESSAGES/gtk30-properties.mo +0 -0
  1137. data/vendor/local/share/locale/br/LC_MESSAGES/gtk30.mo +0 -0
  1138. data/vendor/local/share/locale/bs/LC_MESSAGES/gtk30-properties.mo +0 -0
  1139. data/vendor/local/share/locale/bs/LC_MESSAGES/gtk30.mo +0 -0
  1140. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk30-properties.mo +0 -0
  1141. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk30.mo +0 -0
  1142. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk30-properties.mo +0 -0
  1143. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk30.mo +0 -0
  1144. data/vendor/local/share/locale/crh/LC_MESSAGES/gtk30-properties.mo +0 -0
  1145. data/vendor/local/share/locale/crh/LC_MESSAGES/gtk30.mo +0 -0
  1146. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk30-properties.mo +0 -0
  1147. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk30.mo +0 -0
  1148. data/vendor/local/share/locale/cy/LC_MESSAGES/gtk30-properties.mo +0 -0
  1149. data/vendor/local/share/locale/cy/LC_MESSAGES/gtk30.mo +0 -0
  1150. data/vendor/local/share/locale/da/LC_MESSAGES/gtk30-properties.mo +0 -0
  1151. data/vendor/local/share/locale/da/LC_MESSAGES/gtk30.mo +0 -0
  1152. data/vendor/local/share/locale/de/LC_MESSAGES/gtk30-properties.mo +0 -0
  1153. data/vendor/local/share/locale/de/LC_MESSAGES/gtk30.mo +0 -0
  1154. data/vendor/local/share/locale/dz/LC_MESSAGES/gtk30-properties.mo +0 -0
  1155. data/vendor/local/share/locale/dz/LC_MESSAGES/gtk30.mo +0 -0
  1156. data/vendor/local/share/locale/el/LC_MESSAGES/gtk30-properties.mo +0 -0
  1157. data/vendor/local/share/locale/el/LC_MESSAGES/gtk30.mo +0 -0
  1158. data/vendor/local/share/locale/en/LC_MESSAGES/gtk30-properties.mo +0 -0
  1159. data/vendor/local/share/locale/en/LC_MESSAGES/gtk30.mo +0 -0
  1160. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/gtk30-properties.mo +0 -0
  1161. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/gtk30.mo +0 -0
  1162. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk30-properties.mo +0 -0
  1163. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk30.mo +0 -0
  1164. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk30-properties.mo +0 -0
  1165. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk30.mo +0 -0
  1166. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk30-properties.mo +0 -0
  1167. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk30.mo +0 -0
  1168. data/vendor/local/share/locale/es/LC_MESSAGES/gtk30-properties.mo +0 -0
  1169. data/vendor/local/share/locale/es/LC_MESSAGES/gtk30.mo +0 -0
  1170. data/vendor/local/share/locale/et/LC_MESSAGES/gtk30-properties.mo +0 -0
  1171. data/vendor/local/share/locale/et/LC_MESSAGES/gtk30.mo +0 -0
  1172. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk30-properties.mo +0 -0
  1173. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk30.mo +0 -0
  1174. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk30-properties.mo +0 -0
  1175. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk30.mo +0 -0
  1176. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1177. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk30.mo +0 -0
  1178. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1179. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk30.mo +0 -0
  1180. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk30-properties.mo +0 -0
  1181. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk30.mo +0 -0
  1182. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk30-properties.mo +0 -0
  1183. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk30.mo +0 -0
  1184. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk30-properties.mo +0 -0
  1185. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk30.mo +0 -0
  1186. data/vendor/local/share/locale/he/LC_MESSAGES/gtk30-properties.mo +0 -0
  1187. data/vendor/local/share/locale/he/LC_MESSAGES/gtk30.mo +0 -0
  1188. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1189. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk30.mo +0 -0
  1190. data/vendor/local/share/locale/hr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1191. data/vendor/local/share/locale/hr/LC_MESSAGES/gtk30.mo +0 -0
  1192. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk30-properties.mo +0 -0
  1193. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk30.mo +0 -0
  1194. data/vendor/local/share/locale/hy/LC_MESSAGES/gtk30-properties.mo +0 -0
  1195. data/vendor/local/share/locale/hy/LC_MESSAGES/gtk30.mo +0 -0
  1196. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk30-properties.mo +0 -0
  1197. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk30.mo +0 -0
  1198. data/vendor/local/share/locale/id/LC_MESSAGES/gtk30-properties.mo +0 -0
  1199. data/vendor/local/share/locale/id/LC_MESSAGES/gtk30.mo +0 -0
  1200. data/vendor/local/share/locale/io/LC_MESSAGES/gtk30-properties.mo +0 -0
  1201. data/vendor/local/share/locale/io/LC_MESSAGES/gtk30.mo +0 -0
  1202. data/vendor/local/share/locale/is/LC_MESSAGES/gtk30-properties.mo +0 -0
  1203. data/vendor/local/share/locale/is/LC_MESSAGES/gtk30.mo +0 -0
  1204. data/vendor/local/share/locale/it/LC_MESSAGES/gtk30-properties.mo +0 -0
  1205. data/vendor/local/share/locale/it/LC_MESSAGES/gtk30.mo +0 -0
  1206. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk30-properties.mo +0 -0
  1207. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk30.mo +0 -0
  1208. data/vendor/local/share/locale/ka/LC_MESSAGES/gtk30-properties.mo +0 -0
  1209. data/vendor/local/share/locale/ka/LC_MESSAGES/gtk30.mo +0 -0
  1210. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk30-properties.mo +0 -0
  1211. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk30.mo +0 -0
  1212. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1213. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk30.mo +0 -0
  1214. data/vendor/local/share/locale/km/LC_MESSAGES/gtk30-properties.mo +0 -0
  1215. data/vendor/local/share/locale/km/LC_MESSAGES/gtk30.mo +0 -0
  1216. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk30-properties.mo +0 -0
  1217. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk30.mo +0 -0
  1218. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk30-properties.mo +0 -0
  1219. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk30.mo +0 -0
  1220. data/vendor/local/share/locale/ku/LC_MESSAGES/gtk30-properties.mo +0 -0
  1221. data/vendor/local/share/locale/ku/LC_MESSAGES/gtk30.mo +0 -0
  1222. data/vendor/local/share/locale/ky/LC_MESSAGES/gtk30-properties.mo +0 -0
  1223. data/vendor/local/share/locale/ky/LC_MESSAGES/gtk30.mo +0 -0
  1224. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk30-properties.mo +0 -0
  1225. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk30.mo +0 -0
  1226. data/vendor/local/share/locale/li/LC_MESSAGES/gtk30-properties.mo +0 -0
  1227. data/vendor/local/share/locale/li/LC_MESSAGES/gtk30.mo +0 -0
  1228. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk30-properties.mo +0 -0
  1229. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk30.mo +0 -0
  1230. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk30-properties.mo +0 -0
  1231. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk30.mo +0 -0
  1232. data/vendor/local/share/locale/mai/LC_MESSAGES/gtk30-properties.mo +0 -0
  1233. data/vendor/local/share/locale/mai/LC_MESSAGES/gtk30.mo +0 -0
  1234. data/vendor/local/share/locale/mi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1235. data/vendor/local/share/locale/mi/LC_MESSAGES/gtk30.mo +0 -0
  1236. data/vendor/local/share/locale/mk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1237. data/vendor/local/share/locale/mk/LC_MESSAGES/gtk30.mo +0 -0
  1238. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk30-properties.mo +0 -0
  1239. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk30.mo +0 -0
  1240. data/vendor/local/share/locale/mn/LC_MESSAGES/gtk30-properties.mo +0 -0
  1241. data/vendor/local/share/locale/mn/LC_MESSAGES/gtk30.mo +0 -0
  1242. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1243. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk30.mo +0 -0
  1244. data/vendor/local/share/locale/ms/LC_MESSAGES/gtk30-properties.mo +0 -0
  1245. data/vendor/local/share/locale/ms/LC_MESSAGES/gtk30.mo +0 -0
  1246. data/vendor/local/share/locale/my/LC_MESSAGES/gtk30-properties.mo +0 -0
  1247. data/vendor/local/share/locale/my/LC_MESSAGES/gtk30.mo +0 -0
  1248. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk30-properties.mo +0 -0
  1249. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk30.mo +0 -0
  1250. data/vendor/local/share/locale/nds/LC_MESSAGES/gtk30-properties.mo +0 -0
  1251. data/vendor/local/share/locale/nds/LC_MESSAGES/gtk30.mo +0 -0
  1252. data/vendor/local/share/locale/ne/LC_MESSAGES/gtk30-properties.mo +0 -0
  1253. data/vendor/local/share/locale/ne/LC_MESSAGES/gtk30.mo +0 -0
  1254. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk30-properties.mo +0 -0
  1255. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk30.mo +0 -0
  1256. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk30-properties.mo +0 -0
  1257. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk30.mo +0 -0
  1258. data/vendor/local/share/locale/nso/LC_MESSAGES/gtk30-properties.mo +0 -0
  1259. data/vendor/local/share/locale/nso/LC_MESSAGES/gtk30.mo +0 -0
  1260. data/vendor/local/share/locale/oc/LC_MESSAGES/gtk30-properties.mo +0 -0
  1261. data/vendor/local/share/locale/oc/LC_MESSAGES/gtk30.mo +0 -0
  1262. data/vendor/local/share/locale/or/LC_MESSAGES/gtk30-properties.mo +0 -0
  1263. data/vendor/local/share/locale/or/LC_MESSAGES/gtk30.mo +0 -0
  1264. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk30-properties.mo +0 -0
  1265. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk30.mo +0 -0
  1266. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk30-properties.mo +0 -0
  1267. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk30.mo +0 -0
  1268. data/vendor/local/share/locale/ps/LC_MESSAGES/gtk30-properties.mo +0 -0
  1269. data/vendor/local/share/locale/ps/LC_MESSAGES/gtk30.mo +0 -0
  1270. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk30-properties.mo +0 -0
  1271. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk30.mo +0 -0
  1272. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk30-properties.mo +0 -0
  1273. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk30.mo +0 -0
  1274. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk30-properties.mo +0 -0
  1275. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk30.mo +0 -0
  1276. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk30-properties.mo +0 -0
  1277. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk30.mo +0 -0
  1278. data/vendor/local/share/locale/rw/LC_MESSAGES/gtk30-properties.mo +0 -0
  1279. data/vendor/local/share/locale/rw/LC_MESSAGES/gtk30.mo +0 -0
  1280. data/vendor/local/share/locale/si/LC_MESSAGES/gtk30-properties.mo +0 -0
  1281. data/vendor/local/share/locale/si/LC_MESSAGES/gtk30.mo +0 -0
  1282. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1283. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk30.mo +0 -0
  1284. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk30-properties.mo +0 -0
  1285. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk30.mo +0 -0
  1286. data/vendor/local/share/locale/sq/LC_MESSAGES/gtk30-properties.mo +0 -0
  1287. data/vendor/local/share/locale/sq/LC_MESSAGES/gtk30.mo +0 -0
  1288. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1289. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk30.mo +0 -0
  1290. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk30-properties.mo +0 -0
  1291. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk30.mo +0 -0
  1292. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk30-properties.mo +0 -0
  1293. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk30.mo +0 -0
  1294. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk30-properties.mo +0 -0
  1295. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk30.mo +0 -0
  1296. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk30-properties.mo +0 -0
  1297. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk30.mo +0 -0
  1298. data/vendor/local/share/locale/te/LC_MESSAGES/gtk30-properties.mo +0 -0
  1299. data/vendor/local/share/locale/te/LC_MESSAGES/gtk30.mo +0 -0
  1300. data/vendor/local/share/locale/th/LC_MESSAGES/gtk30-properties.mo +0 -0
  1301. data/vendor/local/share/locale/th/LC_MESSAGES/gtk30.mo +0 -0
  1302. data/vendor/local/share/locale/tk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1303. data/vendor/local/share/locale/tk/LC_MESSAGES/gtk30.mo +0 -0
  1304. data/vendor/local/share/locale/tr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1305. data/vendor/local/share/locale/tr/LC_MESSAGES/gtk30.mo +0 -0
  1306. data/vendor/local/share/locale/tt/LC_MESSAGES/gtk30-properties.mo +0 -0
  1307. data/vendor/local/share/locale/tt/LC_MESSAGES/gtk30.mo +0 -0
  1308. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk30-properties.mo +0 -0
  1309. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk30.mo +0 -0
  1310. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1311. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk30.mo +0 -0
  1312. data/vendor/local/share/locale/ur/LC_MESSAGES/gtk30-properties.mo +0 -0
  1313. data/vendor/local/share/locale/ur/LC_MESSAGES/gtk30.mo +0 -0
  1314. data/vendor/local/share/locale/uz/LC_MESSAGES/gtk30-properties.mo +0 -0
  1315. data/vendor/local/share/locale/uz/LC_MESSAGES/gtk30.mo +0 -0
  1316. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk30-properties.mo +0 -0
  1317. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk30.mo +0 -0
  1318. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1319. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk30.mo +0 -0
  1320. data/vendor/local/share/locale/wa/LC_MESSAGES/gtk30-properties.mo +0 -0
  1321. data/vendor/local/share/locale/wa/LC_MESSAGES/gtk30.mo +0 -0
  1322. data/vendor/local/share/locale/xh/LC_MESSAGES/gtk30-properties.mo +0 -0
  1323. data/vendor/local/share/locale/xh/LC_MESSAGES/gtk30.mo +0 -0
  1324. data/vendor/local/share/locale/yi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1325. data/vendor/local/share/locale/yi/LC_MESSAGES/gtk30.mo +0 -0
  1326. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk30-properties.mo +0 -0
  1327. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk30.mo +0 -0
  1328. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk30-properties.mo +0 -0
  1329. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk30.mo +0 -0
  1330. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk30-properties.mo +0 -0
  1331. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk30.mo +0 -0
  1332. data/vendor/local/share/man/man1/gtk-launch.1 +53 -0
  1333. data/vendor/local/share/man/man1/gtk-query-immodules-3.0.1 +75 -0
  1334. data/vendor/local/share/man/man1/gtk-update-icon-cache.1 +88 -0
  1335. data/vendor/local/share/themes/Default/gtk-3.0/gtk-keys.css +3 -0
  1336. data/vendor/local/share/themes/Emacs/gtk-3.0/gtk-keys.css +121 -0
  1337. metadata +1449 -0
@@ -0,0 +1,432 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GtkTooltip</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.0">
7
+ <link rel="home" href="index.html" title="GTK+ 3 Reference Manual">
8
+ <link rel="up" href="MiscObjects.html" title="Miscellaneous">
9
+ <link rel="prev" href="GtkSizeGroup.html" title="GtkSizeGroup">
10
+ <link rel="next" href="GtkViewport.html" title="GtkViewport">
11
+ <meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
16
+ <tr valign="middle">
17
+ <td><a accesskey="p" href="GtkSizeGroup.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="MiscObjects.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
+ <th width="100%" align="center">GTK+ 3 Reference Manual</th>
21
+ <td><a accesskey="n" href="GtkViewport.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
+ </tr>
23
+ <tr><td colspan="5" class="shortcuts">
24
+ <a href="#GtkTooltip.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GtkTooltip.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GtkTooltip.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+ </td></tr>
30
+ </table>
31
+ <div class="refentry">
32
+ <a name="GtkTooltip"></a><div class="titlepage"></div>
33
+ <div class="refnamediv"><table width="100%"><tr>
34
+ <td valign="top">
35
+ <h2><span class="refentrytitle"><a name="GtkTooltip.top_of_page"></a>GtkTooltip</span></h2>
36
+ <p>GtkTooltip — Add tips to your widgets</p>
37
+ </td>
38
+ <td valign="top" align="right"></td>
39
+ </tr></table></div>
40
+ <div class="refsynopsisdiv">
41
+ <a name="GtkTooltip.synopsis"></a><h2>Synopsis</h2>
42
+ <pre class="synopsis">
43
+ #include &lt;gtk/gtk.h&gt;
44
+
45
+ <a class="link" href="GtkTooltip.html#GtkTooltip-struct" title="GtkTooltip">GtkTooltip</a>;
46
+ <span class="returnvalue">void</span> <a class="link" href="GtkTooltip.html#gtk-tooltip-set-markup" title="gtk_tooltip_set_markup ()">gtk_tooltip_set_markup</a> (<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
47
+ <em class="parameter"><code>const <span class="type">gchar</span> *markup</code></em>);
48
+ <span class="returnvalue">void</span> <a class="link" href="GtkTooltip.html#gtk-tooltip-set-text" title="gtk_tooltip_set_text ()">gtk_tooltip_set_text</a> (<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
49
+ <em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>);
50
+ <span class="returnvalue">void</span> <a class="link" href="GtkTooltip.html#gtk-tooltip-set-icon" title="gtk_tooltip_set_icon ()">gtk_tooltip_set_icon</a> (<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
51
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);
52
+ <span class="returnvalue">void</span> <a class="link" href="GtkTooltip.html#gtk-tooltip-set-icon-from-stock" title="gtk_tooltip_set_icon_from_stock ()">gtk_tooltip_set_icon_from_stock</a> (<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
53
+ <em class="parameter"><code>const <span class="type">gchar</span> *stock_id</code></em>,
54
+ <em class="parameter"><code><a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);
55
+ <span class="returnvalue">void</span> <a class="link" href="GtkTooltip.html#gtk-tooltip-set-icon-from-icon-name" title="gtk_tooltip_set_icon_from_icon_name ()">gtk_tooltip_set_icon_from_icon_name</a> (<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
56
+ <em class="parameter"><code>const <span class="type">gchar</span> *icon_name</code></em>,
57
+ <em class="parameter"><code><a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);
58
+ <span class="returnvalue">void</span> <a class="link" href="GtkTooltip.html#gtk-tooltip-set-icon-from-gicon" title="gtk_tooltip_set_icon_from_gicon ()">gtk_tooltip_set_icon_from_gicon</a> (<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
59
+ <em class="parameter"><code><span class="type">GIcon</span> *gicon</code></em>,
60
+ <em class="parameter"><code><a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);
61
+ <span class="returnvalue">void</span> <a class="link" href="GtkTooltip.html#gtk-tooltip-set-custom" title="gtk_tooltip_set_custom ()">gtk_tooltip_set_custom</a> (<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
62
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *custom_widget</code></em>);
63
+ <span class="returnvalue">void</span> <a class="link" href="GtkTooltip.html#gtk-tooltip-trigger-tooltip-query" title="gtk_tooltip_trigger_tooltip_query ()">gtk_tooltip_trigger_tooltip_query</a> (<em class="parameter"><code><a href="../gdk3/GdkDisplay.html"><span class="type">GdkDisplay</span></a> *display</code></em>);
64
+ <span class="returnvalue">void</span> <a class="link" href="GtkTooltip.html#gtk-tooltip-set-tip-area" title="gtk_tooltip_set_tip_area ()">gtk_tooltip_set_tip_area</a> (<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
65
+ <em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *rect</code></em>);
66
+ </pre>
67
+ </div>
68
+ <div class="refsect1">
69
+ <a name="GtkTooltip.object-hierarchy"></a><h2>Object Hierarchy</h2>
70
+ <pre class="synopsis">
71
+ GObject
72
+ +----GtkTooltip
73
+ </pre>
74
+ </div>
75
+ <div class="refsect1">
76
+ <a name="GtkTooltip.description"></a><h2>Description</h2>
77
+ <p>
78
+ Basic tooltips can be realized simply by using <a class="link" href="GtkWidget.html#gtk-widget-set-tooltip-text" title="gtk_widget_set_tooltip_text ()"><code class="function">gtk_widget_set_tooltip_text()</code></a>
79
+ or <a class="link" href="GtkWidget.html#gtk-widget-set-tooltip-markup" title="gtk_widget_set_tooltip_markup ()"><code class="function">gtk_widget_set_tooltip_markup()</code></a> without any explicit tooltip object.
80
+ </p>
81
+ <p>
82
+ When you need a tooltip with a little more fancy contents, like adding an
83
+ image, or you want the tooltip to have different contents per <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>
84
+ row or cell, you will have to do a little more work:
85
+ </p>
86
+ <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
87
+ <li class="listitem"><p>
88
+ Set the <a class="link" href="GtkWidget.html#GtkWidget--has-tooltip" title='The "has-tooltip" property'><span class="type">"has-tooltip"</span></a> property to <code class="literal">TRUE</code>, this will make GTK+
89
+ monitor the widget for motion and related events which are needed to
90
+ determine when and where to show a tooltip.
91
+ </p></li>
92
+ <li class="listitem"><p>
93
+ Connect to the <a class="link" href="GtkWidget.html#GtkWidget-query-tooltip" title='The "query-tooltip" signal'><span class="type">"query-tooltip"</span></a> signal. This signal will be
94
+ emitted when a tooltip is supposed to be shown. One of the arguments passed
95
+ to the signal handler is a GtkTooltip object. This is the object that we
96
+ are about to display as a tooltip, and can be manipulated in your callback
97
+ using functions like <a class="link" href="GtkTooltip.html#gtk-tooltip-set-icon" title="gtk_tooltip_set_icon ()"><code class="function">gtk_tooltip_set_icon()</code></a>. There are functions for setting
98
+ the tooltip's markup, setting an image from a stock icon, or even putting in
99
+ a custom widget.
100
+ </p></li>
101
+ <li class="listitem"><p>
102
+ Return <code class="literal">TRUE</code> from your query-tooltip handler. This causes the tooltip to be
103
+ show. If you return <code class="literal">FALSE</code>, it will not be shown.
104
+ </p></li>
105
+ </ul></div>
106
+ <p>
107
+ </p>
108
+ <p>
109
+ In the probably rare case where you want to have even more control over the
110
+ tooltip that is about to be shown, you can set your own <a class="link" href="GtkWindow.html" title="GtkWindow"><span class="type">GtkWindow</span></a> which
111
+ will be used as tooltip window. This works as follows:
112
+ </p>
113
+ <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
114
+ <li class="listitem"><p>
115
+ Set <a class="link" href="GtkWidget.html#GtkWidget--has-tooltip" title='The "has-tooltip" property'><span class="type">"has-tooltip"</span></a> and connect to <a class="link" href="GtkWidget.html#GtkWidget-query-tooltip" title='The "query-tooltip" signal'><span class="type">"query-tooltip"</span></a> as
116
+ before.
117
+ </p></li>
118
+ <li class="listitem"><p>
119
+ Use <a class="link" href="GtkWidget.html#gtk-widget-set-tooltip-window" title="gtk_widget_set_tooltip_window ()"><code class="function">gtk_widget_set_tooltip_window()</code></a> to set a <a class="link" href="GtkWindow.html" title="GtkWindow"><span class="type">GtkWindow</span></a> created by you as
120
+ tooltip window.
121
+ </p></li>
122
+ <li class="listitem"><p>
123
+ In the <a class="link" href="GtkWidget.html#GtkWidget-query-tooltip" title='The "query-tooltip" signal'><span class="type">"query-tooltip"</span></a> callback you can access your window using
124
+ <a class="link" href="GtkWidget.html#gtk-widget-get-tooltip-window" title="gtk_widget_get_tooltip_window ()"><code class="function">gtk_widget_get_tooltip_window()</code></a> and manipulate as you wish. The semantics of
125
+ the return value are exactly as before, return <code class="literal">TRUE</code> to show the window,
126
+ <code class="literal">FALSE</code> to not show it.
127
+ </p></li>
128
+ </ul></div>
129
+ <p>
130
+ </p>
131
+ </div>
132
+ <div class="refsect1">
133
+ <a name="GtkTooltip.details"></a><h2>Details</h2>
134
+ <div class="refsect2">
135
+ <a name="GtkTooltip-struct"></a><h3>GtkTooltip</h3>
136
+ <pre class="programlisting">typedef struct _GtkTooltip GtkTooltip;</pre>
137
+ </div>
138
+ <hr>
139
+ <div class="refsect2">
140
+ <a name="gtk-tooltip-set-markup"></a><h3>gtk_tooltip_set_markup ()</h3>
141
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tooltip_set_markup (<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
142
+ <em class="parameter"><code>const <span class="type">gchar</span> *markup</code></em>);</pre>
143
+ <p>
144
+ Sets the text of the tooltip to be <em class="parameter"><code>markup</code></em>, which is marked up
145
+ with the Pango text markup language.
146
+ If <em class="parameter"><code>markup</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, the label will be hidden.
147
+ </p>
148
+ <div class="variablelist"><table border="0" class="variablelist">
149
+ <colgroup>
150
+ <col align="left" valign="top">
151
+ <col>
152
+ </colgroup>
153
+ <tbody>
154
+ <tr>
155
+ <td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
156
+ <td>a <a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a>
157
+ </td>
158
+ </tr>
159
+ <tr>
160
+ <td><p><span class="term"><em class="parameter"><code>markup</code></em> :</span></p></td>
161
+ <td>a markup string (see Pango markup format) or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
162
+ </td>
163
+ </tr>
164
+ </tbody>
165
+ </table></div>
166
+ <p class="since">Since 2.12</p>
167
+ </div>
168
+ <hr>
169
+ <div class="refsect2">
170
+ <a name="gtk-tooltip-set-text"></a><h3>gtk_tooltip_set_text ()</h3>
171
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tooltip_set_text (<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
172
+ <em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>);</pre>
173
+ <p>
174
+ Sets the text of the tooltip to be <em class="parameter"><code>text</code></em>. If <em class="parameter"><code>text</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, the label
175
+ will be hidden. See also <a class="link" href="GtkTooltip.html#gtk-tooltip-set-markup" title="gtk_tooltip_set_markup ()"><code class="function">gtk_tooltip_set_markup()</code></a>.
176
+ </p>
177
+ <div class="variablelist"><table border="0" class="variablelist">
178
+ <colgroup>
179
+ <col align="left" valign="top">
180
+ <col>
181
+ </colgroup>
182
+ <tbody>
183
+ <tr>
184
+ <td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
185
+ <td>a <a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a>
186
+ </td>
187
+ </tr>
188
+ <tr>
189
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
190
+ <td>a text string or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
191
+ </td>
192
+ </tr>
193
+ </tbody>
194
+ </table></div>
195
+ <p class="since">Since 2.12</p>
196
+ </div>
197
+ <hr>
198
+ <div class="refsect2">
199
+ <a name="gtk-tooltip-set-icon"></a><h3>gtk_tooltip_set_icon ()</h3>
200
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tooltip_set_icon (<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
201
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
202
+ <p>
203
+ Sets the icon of the tooltip (which is in front of the text) to be
204
+ <em class="parameter"><code>pixbuf</code></em>. If <em class="parameter"><code>pixbuf</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, the image will be hidden.
205
+ </p>
206
+ <div class="variablelist"><table border="0" class="variablelist">
207
+ <colgroup>
208
+ <col align="left" valign="top">
209
+ <col>
210
+ </colgroup>
211
+ <tbody>
212
+ <tr>
213
+ <td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
214
+ <td>a <a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a>
215
+ </td>
216
+ </tr>
217
+ <tr>
218
+ <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
219
+ <td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
220
+ </td>
221
+ </tr>
222
+ </tbody>
223
+ </table></div>
224
+ <p class="since">Since 2.12</p>
225
+ </div>
226
+ <hr>
227
+ <div class="refsect2">
228
+ <a name="gtk-tooltip-set-icon-from-stock"></a><h3>gtk_tooltip_set_icon_from_stock ()</h3>
229
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tooltip_set_icon_from_stock (<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
230
+ <em class="parameter"><code>const <span class="type">gchar</span> *stock_id</code></em>,
231
+ <em class="parameter"><code><a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);</pre>
232
+ <p>
233
+ Sets the icon of the tooltip (which is in front of the text) to be
234
+ the stock item indicated by <em class="parameter"><code>stock_id</code></em> with the size indicated
235
+ by <em class="parameter"><code>size</code></em>. If <em class="parameter"><code>stock_id</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, the image will be hidden.
236
+ </p>
237
+ <div class="variablelist"><table border="0" class="variablelist">
238
+ <colgroup>
239
+ <col align="left" valign="top">
240
+ <col>
241
+ </colgroup>
242
+ <tbody>
243
+ <tr>
244
+ <td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
245
+ <td>a <a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a>
246
+ </td>
247
+ </tr>
248
+ <tr>
249
+ <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
250
+ <td>a stock id, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
251
+ </td>
252
+ </tr>
253
+ <tr>
254
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
255
+ <td>a stock icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> int]</span>
256
+ </td>
257
+ </tr>
258
+ </tbody>
259
+ </table></div>
260
+ <p class="since">Since 2.12</p>
261
+ </div>
262
+ <hr>
263
+ <div class="refsect2">
264
+ <a name="gtk-tooltip-set-icon-from-icon-name"></a><h3>gtk_tooltip_set_icon_from_icon_name ()</h3>
265
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tooltip_set_icon_from_icon_name (<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
266
+ <em class="parameter"><code>const <span class="type">gchar</span> *icon_name</code></em>,
267
+ <em class="parameter"><code><a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);</pre>
268
+ <p>
269
+ Sets the icon of the tooltip (which is in front of the text) to be
270
+ the icon indicated by <em class="parameter"><code>icon_name</code></em> with the size indicated
271
+ by <em class="parameter"><code>size</code></em>. If <em class="parameter"><code>icon_name</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, the image will be hidden.
272
+ </p>
273
+ <div class="variablelist"><table border="0" class="variablelist">
274
+ <colgroup>
275
+ <col align="left" valign="top">
276
+ <col>
277
+ </colgroup>
278
+ <tbody>
279
+ <tr>
280
+ <td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
281
+ <td>a <a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a>
282
+ </td>
283
+ </tr>
284
+ <tr>
285
+ <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
286
+ <td>an icon name, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
287
+ </td>
288
+ </tr>
289
+ <tr>
290
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
291
+ <td>a stock icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> int]</span>
292
+ </td>
293
+ </tr>
294
+ </tbody>
295
+ </table></div>
296
+ <p class="since">Since 2.14</p>
297
+ </div>
298
+ <hr>
299
+ <div class="refsect2">
300
+ <a name="gtk-tooltip-set-icon-from-gicon"></a><h3>gtk_tooltip_set_icon_from_gicon ()</h3>
301
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tooltip_set_icon_from_gicon (<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
302
+ <em class="parameter"><code><span class="type">GIcon</span> *gicon</code></em>,
303
+ <em class="parameter"><code><a class="link" href="gtk3-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);</pre>
304
+ <p>
305
+ Sets the icon of the tooltip (which is in front of the text)
306
+ to be the icon indicated by <em class="parameter"><code>gicon</code></em> with the size indicated
307
+ by <em class="parameter"><code>size</code></em>. If <em class="parameter"><code>gicon</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, the image will be hidden.
308
+ </p>
309
+ <div class="variablelist"><table border="0" class="variablelist">
310
+ <colgroup>
311
+ <col align="left" valign="top">
312
+ <col>
313
+ </colgroup>
314
+ <tbody>
315
+ <tr>
316
+ <td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
317
+ <td>a <a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a>
318
+ </td>
319
+ </tr>
320
+ <tr>
321
+ <td><p><span class="term"><em class="parameter"><code>gicon</code></em> :</span></p></td>
322
+ <td>a <span class="type">GIcon</span> representing the icon, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
323
+ </td>
324
+ </tr>
325
+ <tr>
326
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
327
+ <td>a stock icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> int]</span>
328
+ </td>
329
+ </tr>
330
+ </tbody>
331
+ </table></div>
332
+ <p class="since">Since 2.20</p>
333
+ </div>
334
+ <hr>
335
+ <div class="refsect2">
336
+ <a name="gtk-tooltip-set-custom"></a><h3>gtk_tooltip_set_custom ()</h3>
337
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tooltip_set_custom (<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
338
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *custom_widget</code></em>);</pre>
339
+ <p>
340
+ Replaces the widget packed into the tooltip with
341
+ <em class="parameter"><code>custom_widget</code></em>. <em class="parameter"><code>custom_widget</code></em> does not get destroyed when the tooltip goes
342
+ away.
343
+ By default a box with a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> and <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> is embedded in
344
+ the tooltip, which can be configured using <a class="link" href="GtkTooltip.html#gtk-tooltip-set-markup" title="gtk_tooltip_set_markup ()"><code class="function">gtk_tooltip_set_markup()</code></a>
345
+ and <a class="link" href="GtkTooltip.html#gtk-tooltip-set-icon" title="gtk_tooltip_set_icon ()"><code class="function">gtk_tooltip_set_icon()</code></a>.
346
+ </p>
347
+ <div class="variablelist"><table border="0" class="variablelist">
348
+ <colgroup>
349
+ <col align="left" valign="top">
350
+ <col>
351
+ </colgroup>
352
+ <tbody>
353
+ <tr>
354
+ <td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
355
+ <td>a <a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a>
356
+ </td>
357
+ </tr>
358
+ <tr>
359
+ <td><p><span class="term"><em class="parameter"><code>custom_widget</code></em> :</span></p></td>
360
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> to unset the old custom widget. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
361
+ </td>
362
+ </tr>
363
+ </tbody>
364
+ </table></div>
365
+ <p class="since">Since 2.12</p>
366
+ </div>
367
+ <hr>
368
+ <div class="refsect2">
369
+ <a name="gtk-tooltip-trigger-tooltip-query"></a><h3>gtk_tooltip_trigger_tooltip_query ()</h3>
370
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tooltip_trigger_tooltip_query (<em class="parameter"><code><a href="../gdk3/GdkDisplay.html"><span class="type">GdkDisplay</span></a> *display</code></em>);</pre>
371
+ <p>
372
+ Triggers a new tooltip query on <em class="parameter"><code>display</code></em>, in order to update the current
373
+ visible tooltip, or to show/hide the current tooltip. This function is
374
+ useful to call when, for example, the state of the widget changed by a
375
+ key press.
376
+ </p>
377
+ <div class="variablelist"><table border="0" class="variablelist">
378
+ <colgroup>
379
+ <col align="left" valign="top">
380
+ <col>
381
+ </colgroup>
382
+ <tbody><tr>
383
+ <td><p><span class="term"><em class="parameter"><code>display</code></em> :</span></p></td>
384
+ <td>a <a href="../gdk3/GdkDisplay.html"><span class="type">GdkDisplay</span></a>
385
+ </td>
386
+ </tr></tbody>
387
+ </table></div>
388
+ <p class="since">Since 2.12</p>
389
+ </div>
390
+ <hr>
391
+ <div class="refsect2">
392
+ <a name="gtk-tooltip-set-tip-area"></a><h3>gtk_tooltip_set_tip_area ()</h3>
393
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tooltip_set_tip_area (<em class="parameter"><code><a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip</code></em>,
394
+ <em class="parameter"><code>const <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *rect</code></em>);</pre>
395
+ <p>
396
+ Sets the area of the widget, where the contents of this tooltip apply,
397
+ to be <em class="parameter"><code>rect</code></em> (in widget coordinates). This is especially useful for
398
+ properly setting tooltips on <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> rows and cells, <a href="GtkIconView.html"><span class="type">GtkIconViews</span></a>,
399
+ etc.
400
+ </p>
401
+ <p>
402
+ For setting tooltips on <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>, please refer to the convenience
403
+ functions for this: <a class="link" href="GtkTreeView.html#gtk-tree-view-set-tooltip-row" title="gtk_tree_view_set_tooltip_row ()"><code class="function">gtk_tree_view_set_tooltip_row()</code></a> and
404
+ <a class="link" href="GtkTreeView.html#gtk-tree-view-set-tooltip-cell" title="gtk_tree_view_set_tooltip_cell ()"><code class="function">gtk_tree_view_set_tooltip_cell()</code></a>.
405
+ </p>
406
+ <div class="variablelist"><table border="0" class="variablelist">
407
+ <colgroup>
408
+ <col align="left" valign="top">
409
+ <col>
410
+ </colgroup>
411
+ <tbody>
412
+ <tr>
413
+ <td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
414
+ <td>a <a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a>
415
+ </td>
416
+ </tr>
417
+ <tr>
418
+ <td><p><span class="term"><em class="parameter"><code>rect</code></em> :</span></p></td>
419
+ <td>a <a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a>
420
+ </td>
421
+ </tr>
422
+ </tbody>
423
+ </table></div>
424
+ <p class="since">Since 2.12</p>
425
+ </div>
426
+ </div>
427
+ </div>
428
+ <div class="footer">
429
+ <hr>
430
+ Generated by GTK-Doc V1.18.1</div>
431
+ </body>
432
+ </html>
@@ -0,0 +1,2814 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GtkTreeModel</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.0">
7
+ <link rel="home" href="index.html" title="GTK+ 3 Reference Manual">
8
+ <link rel="up" href="TreeWidgetObjects.html" title="Tree, List and Icon Grid Widgets">
9
+ <link rel="prev" href="TreeWidget.html" title="Tree and List Widget Overview">
10
+ <link rel="next" href="GtkTreeSelection.html" title="GtkTreeSelection">
11
+ <meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
16
+ <tr valign="middle">
17
+ <td><a accesskey="p" href="TreeWidget.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="TreeWidgetObjects.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
+ <th width="100%" align="center">GTK+ 3 Reference Manual</th>
21
+ <td><a accesskey="n" href="GtkTreeSelection.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
+ </tr>
23
+ <tr><td colspan="5" class="shortcuts">
24
+ <a href="#GtkTreeModel.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GtkTreeModel.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GtkTreeModel.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#GtkTreeModel.prerequisites" class="shortcut">Prerequisites</a>
31
+  | 
32
+ <a href="#GtkTreeModel.derived-interfaces" class="shortcut">Known Derived Interfaces</a>
33
+  | 
34
+ <a href="#GtkTreeModel.implementations" class="shortcut">Known Implementations</a>
35
+  | 
36
+ <a href="#GtkTreeModel.signals" class="shortcut">Signals</a>
37
+ </td></tr>
38
+ </table>
39
+ <div class="refentry">
40
+ <a name="GtkTreeModel"></a><div class="titlepage"></div>
41
+ <div class="refnamediv"><table width="100%"><tr>
42
+ <td valign="top">
43
+ <h2><span class="refentrytitle"><a name="GtkTreeModel.top_of_page"></a>GtkTreeModel</span></h2>
44
+ <p>GtkTreeModel — The tree interface used by GtkTreeView</p>
45
+ </td>
46
+ <td valign="top" align="right"></td>
47
+ </tr></table></div>
48
+ <div class="refsynopsisdiv">
49
+ <a name="GtkTreeModel.synopsis"></a><h2>Synopsis</h2>
50
+ <a name="GtkTreeIter"></a><a name="GtkTreePath"></a><pre class="synopsis">
51
+ #include &lt;gtk/gtk.h&gt;
52
+
53
+ <a class="link" href="GtkTreeModel.html#GtkTreeModel-struct" title="GtkTreeModel">GtkTreeModel</a>;
54
+ struct <a class="link" href="GtkTreeModel.html#GtkTreeIter-struct" title="struct GtkTreeIter">GtkTreeIter</a>;
55
+ <a class="link" href="GtkTreeModel.html#GtkTreePath-struct" title="GtkTreePath">GtkTreePath</a>;
56
+ <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference">GtkTreeRowReference</a>;
57
+ struct <a class="link" href="GtkTreeModel.html#GtkTreeModelIface" title="struct GtkTreeModelIface">GtkTreeModelIface</a>;
58
+ <span class="returnvalue">gboolean</span> (<a class="link" href="GtkTreeModel.html#GtkTreeModelForeachFunc" title="GtkTreeModelForeachFunc ()">*GtkTreeModelForeachFunc</a>) (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
59
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
60
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
61
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>);
62
+ enum <a class="link" href="GtkTreeModel.html#GtkTreeModelFlags" title="enum GtkTreeModelFlags">GtkTreeModelFlags</a>;
63
+ <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> * <a class="link" href="GtkTreeModel.html#gtk-tree-path-new" title="gtk_tree_path_new ()">gtk_tree_path_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
64
+ <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> * <a class="link" href="GtkTreeModel.html#gtk-tree-path-new-from-string" title="gtk_tree_path_new_from_string ()">gtk_tree_path_new_from_string</a> (<em class="parameter"><code>const <span class="type">gchar</span> *path</code></em>);
65
+ <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> * <a class="link" href="GtkTreeModel.html#gtk-tree-path-new-from-indices" title="gtk_tree_path_new_from_indices ()">gtk_tree_path_new_from_indices</a> (<em class="parameter"><code><span class="type">gint</span> first_index</code></em>,
66
+ <em class="parameter"><code>...</code></em>);
67
+ <span class="returnvalue">gchar</span> * <a class="link" href="GtkTreeModel.html#gtk-tree-path-to-string" title="gtk_tree_path_to_string ()">gtk_tree_path_to_string</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
68
+ <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> * <a class="link" href="GtkTreeModel.html#gtk-tree-path-new-first" title="gtk_tree_path_new_first ()">gtk_tree_path_new_first</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
69
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-path-append-index" title="gtk_tree_path_append_index ()">gtk_tree_path_append_index</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
70
+ <em class="parameter"><code><span class="type">gint</span> index_</code></em>);
71
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-path-prepend-index" title="gtk_tree_path_prepend_index ()">gtk_tree_path_prepend_index</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
72
+ <em class="parameter"><code><span class="type">gint</span> index_</code></em>);
73
+ <span class="returnvalue">gint</span> <a class="link" href="GtkTreeModel.html#gtk-tree-path-get-depth" title="gtk_tree_path_get_depth ()">gtk_tree_path_get_depth</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
74
+ <span class="returnvalue">gint</span> * <a class="link" href="GtkTreeModel.html#gtk-tree-path-get-indices" title="gtk_tree_path_get_indices ()">gtk_tree_path_get_indices</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
75
+ <span class="returnvalue">gint</span> * <a class="link" href="GtkTreeModel.html#gtk-tree-path-get-indices-with-depth" title="gtk_tree_path_get_indices_with_depth ()">gtk_tree_path_get_indices_with_depth</a>
76
+ (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
77
+ <em class="parameter"><code><span class="type">gint</span> *depth</code></em>);
78
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-path-free" title="gtk_tree_path_free ()">gtk_tree_path_free</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
79
+ <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> * <a class="link" href="GtkTreeModel.html#gtk-tree-path-copy" title="gtk_tree_path_copy ()">gtk_tree_path_copy</a> (<em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
80
+ <span class="returnvalue">gint</span> <a class="link" href="GtkTreeModel.html#gtk-tree-path-compare" title="gtk_tree_path_compare ()">gtk_tree_path_compare</a> (<em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *a</code></em>,
81
+ <em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *b</code></em>);
82
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-path-next" title="gtk_tree_path_next ()">gtk_tree_path_next</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
83
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTreeModel.html#gtk-tree-path-prev" title="gtk_tree_path_prev ()">gtk_tree_path_prev</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
84
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTreeModel.html#gtk-tree-path-up" title="gtk_tree_path_up ()">gtk_tree_path_up</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
85
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-path-down" title="gtk_tree_path_down ()">gtk_tree_path_down</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
86
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTreeModel.html#gtk-tree-path-is-ancestor" title="gtk_tree_path_is_ancestor ()">gtk_tree_path_is_ancestor</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
87
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *descendant</code></em>);
88
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTreeModel.html#gtk-tree-path-is-descendant" title="gtk_tree_path_is_descendant ()">gtk_tree_path_is_descendant</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
89
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *ancestor</code></em>);
90
+ <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="returnvalue">GtkTreeRowReference</span></a> * <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new" title="gtk_tree_row_reference_new ()">gtk_tree_row_reference_new</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
91
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
92
+ <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="returnvalue">GtkTreeRowReference</span></a> * <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new-proxy" title="gtk_tree_row_reference_new_proxy ()">gtk_tree_row_reference_new_proxy</a> (<em class="parameter"><code><span class="type">GObject</span> *proxy</code></em>,
93
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
94
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
95
+ <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> * <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-get-model" title="gtk_tree_row_reference_get_model ()">gtk_tree_row_reference_get_model</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);
96
+ <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> * <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-get-path" title="gtk_tree_row_reference_get_path ()">gtk_tree_row_reference_get_path</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);
97
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-valid" title="gtk_tree_row_reference_valid ()">gtk_tree_row_reference_valid</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);
98
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-free" title="gtk_tree_row_reference_free ()">gtk_tree_row_reference_free</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);
99
+ <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="returnvalue">GtkTreeRowReference</span></a> * <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-copy" title="gtk_tree_row_reference_copy ()">gtk_tree_row_reference_copy</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);
100
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-inserted" title="gtk_tree_row_reference_inserted ()">gtk_tree_row_reference_inserted</a> (<em class="parameter"><code><span class="type">GObject</span> *proxy</code></em>,
101
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
102
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-deleted" title="gtk_tree_row_reference_deleted ()">gtk_tree_row_reference_deleted</a> (<em class="parameter"><code><span class="type">GObject</span> *proxy</code></em>,
103
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
104
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-reordered" title="gtk_tree_row_reference_reordered ()">gtk_tree_row_reference_reordered</a> (<em class="parameter"><code><span class="type">GObject</span> *proxy</code></em>,
105
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
106
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
107
+ <em class="parameter"><code><span class="type">gint</span> *new_order</code></em>);
108
+ <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="returnvalue">GtkTreeIter</span></a> * <a class="link" href="GtkTreeModel.html#gtk-tree-iter-copy" title="gtk_tree_iter_copy ()">gtk_tree_iter_copy</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
109
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-iter-free" title="gtk_tree_iter_free ()">gtk_tree_iter_free</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
110
+ <a class="link" href="GtkTreeModel.html#GtkTreeModelFlags" title="enum GtkTreeModelFlags"><span class="returnvalue">GtkTreeModelFlags</span></a> <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-flags" title="gtk_tree_model_get_flags ()">gtk_tree_model_get_flags</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>);
111
+ <span class="returnvalue">gint</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-n-columns" title="gtk_tree_model_get_n_columns ()">gtk_tree_model_get_n_columns</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>);
112
+ <span class="returnvalue">GType</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-column-type" title="gtk_tree_model_get_column_type ()">gtk_tree_model_get_column_type</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
113
+ <em class="parameter"><code><span class="type">gint</span> index_</code></em>);
114
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-iter" title="gtk_tree_model_get_iter ()">gtk_tree_model_get_iter</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
115
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
116
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
117
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-iter-from-string" title="gtk_tree_model_get_iter_from_string ()">gtk_tree_model_get_iter_from_string</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
118
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
119
+ <em class="parameter"><code>const <span class="type">gchar</span> *path_string</code></em>);
120
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-iter-first" title="gtk_tree_model_get_iter_first ()">gtk_tree_model_get_iter_first</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
121
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
122
+ <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> * <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-path" title="gtk_tree_model_get_path ()">gtk_tree_model_get_path</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
123
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
124
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-value" title="gtk_tree_model_get_value ()">gtk_tree_model_get_value</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
125
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
126
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>,
127
+ <em class="parameter"><code><span class="type">GValue</span> *value</code></em>);
128
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-next" title="gtk_tree_model_iter_next ()">gtk_tree_model_iter_next</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
129
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
130
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-previous" title="gtk_tree_model_iter_previous ()">gtk_tree_model_iter_previous</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
131
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
132
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-children" title="gtk_tree_model_iter_children ()">gtk_tree_model_iter_children</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
133
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
134
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>);
135
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-has-child" title="gtk_tree_model_iter_has_child ()">gtk_tree_model_iter_has_child</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
136
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
137
+ <span class="returnvalue">gint</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-n-children" title="gtk_tree_model_iter_n_children ()">gtk_tree_model_iter_n_children</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
138
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
139
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-nth-child" title="gtk_tree_model_iter_nth_child ()">gtk_tree_model_iter_nth_child</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
140
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
141
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
142
+ <em class="parameter"><code><span class="type">gint</span> n</code></em>);
143
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-iter-parent" title="gtk_tree_model_iter_parent ()">gtk_tree_model_iter_parent</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
144
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
145
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *child</code></em>);
146
+ <span class="returnvalue">gchar</span> * <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-string-from-iter" title="gtk_tree_model_get_string_from_iter ()">gtk_tree_model_get_string_from_iter</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
147
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
148
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-ref-node" title="gtk_tree_model_ref_node ()">gtk_tree_model_ref_node</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
149
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
150
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-unref-node" title="gtk_tree_model_unref_node ()">gtk_tree_model_unref_node</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
151
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
152
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-get" title="gtk_tree_model_get ()">gtk_tree_model_get</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
153
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
154
+ <em class="parameter"><code>...</code></em>);
155
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-valist" title="gtk_tree_model_get_valist ()">gtk_tree_model_get_valist</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
156
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
157
+ <em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);
158
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-foreach" title="gtk_tree_model_foreach ()">gtk_tree_model_foreach</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
159
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeModelForeachFunc" title="GtkTreeModelForeachFunc ()"><span class="type">GtkTreeModelForeachFunc</span></a> func</code></em>,
160
+ <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
161
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-row-changed" title="gtk_tree_model_row_changed ()">gtk_tree_model_row_changed</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
162
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
163
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
164
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-row-inserted" title="gtk_tree_model_row_inserted ()">gtk_tree_model_row_inserted</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
165
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
166
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
167
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-row-has-child-toggled" title="gtk_tree_model_row_has_child_toggled ()">gtk_tree_model_row_has_child_toggled</a>
168
+ (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
169
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
170
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
171
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-row-deleted" title="gtk_tree_model_row_deleted ()">gtk_tree_model_row_deleted</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
172
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);
173
+ <span class="returnvalue">void</span> <a class="link" href="GtkTreeModel.html#gtk-tree-model-rows-reordered" title="gtk_tree_model_rows_reordered ()">gtk_tree_model_rows_reordered</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
174
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
175
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
176
+ <em class="parameter"><code><span class="type">gint</span> *new_order</code></em>);
177
+ </pre>
178
+ </div>
179
+ <div class="refsect1">
180
+ <a name="GtkTreeModel.object-hierarchy"></a><h2>Object Hierarchy</h2>
181
+ <pre class="synopsis">
182
+ GInterface
183
+ +----GtkTreeModel
184
+ </pre>
185
+ <pre class="synopsis">
186
+ GBoxed
187
+ +----GtkTreeIter
188
+ </pre>
189
+ <pre class="synopsis">
190
+ GBoxed
191
+ +----GtkTreePath
192
+ </pre>
193
+ </div>
194
+ <div class="refsect1">
195
+ <a name="GtkTreeModel.prerequisites"></a><h2>Prerequisites</h2>
196
+ <p>
197
+ GtkTreeModel requires
198
+ GObject.</p>
199
+ </div>
200
+ <div class="refsect1">
201
+ <a name="GtkTreeModel.derived-interfaces"></a><h2>Known Derived Interfaces</h2>
202
+ <p>
203
+ GtkTreeModel is required by
204
+ <a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable">GtkTreeSortable</a>.</p>
205
+ </div>
206
+ <div class="refsect1">
207
+ <a name="GtkTreeModel.implementations"></a><h2>Known Implementations</h2>
208
+ <p>
209
+ GtkTreeModel is implemented by
210
+ <a class="link" href="GtkListStore.html" title="GtkListStore">GtkListStore</a>, <a class="link" href="GtkTreeModelFilter.html" title="GtkTreeModelFilter">GtkTreeModelFilter</a>, <a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort">GtkTreeModelSort</a> and <a class="link" href="GtkTreeStore.html" title="GtkTreeStore">GtkTreeStore</a>.</p>
211
+ </div>
212
+ <div class="refsect1">
213
+ <a name="GtkTreeModel.signals"></a><h2>Signals</h2>
214
+ <pre class="synopsis">
215
+ "<a class="link" href="GtkTreeModel.html#GtkTreeModel-row-changed" title='The "row-changed" signal'>row-changed</a>" : <code class="literal">Run Last</code>
216
+ "<a class="link" href="GtkTreeModel.html#GtkTreeModel-row-deleted" title='The "row-deleted" signal'>row-deleted</a>" : <code class="literal">Run First</code>
217
+ "<a class="link" href="GtkTreeModel.html#GtkTreeModel-row-has-child-toggled" title='The "row-has-child-toggled" signal'>row-has-child-toggled</a>" : <code class="literal">Run Last</code>
218
+ "<a class="link" href="GtkTreeModel.html#GtkTreeModel-row-inserted" title='The "row-inserted" signal'>row-inserted</a>" : <code class="literal">Run First</code>
219
+ "<a class="link" href="GtkTreeModel.html#GtkTreeModel-rows-reordered" title='The "rows-reordered" signal'>rows-reordered</a>" : <code class="literal">Run First</code>
220
+ </pre>
221
+ </div>
222
+ <div class="refsect1">
223
+ <a name="GtkTreeModel.description"></a><h2>Description</h2>
224
+ <p>
225
+ The <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> interface defines a generic tree interface for
226
+ use by the <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> widget. It is an abstract interface, and
227
+ is designed to be usable with any appropriate data structure. The
228
+ programmer just has to implement this interface on their own data
229
+ type for it to be viewable by a <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> widget.
230
+ </p>
231
+ <p>
232
+ The model is represented as a hierarchical tree of strongly-typed,
233
+ columned data. In other words, the model can be seen as a tree where
234
+ every node has different values depending on which column is being
235
+ queried. The type of data found in a column is determined by using
236
+ the GType system (ie. <span class="type">G_TYPE_INT</span>, <span class="type">GTK_TYPE_BUTTON</span>, <span class="type">G_TYPE_POINTER</span>,
237
+ etc). The types are homogeneous per column across all nodes. It is
238
+ important to note that this interface only provides a way of examining
239
+ a model and observing changes. The implementation of each individual
240
+ model decides how and if changes are made.
241
+ </p>
242
+ <p>
243
+ In order to make life simpler for programmers who do not need to
244
+ write their own specialized model, two generic models are provided
245
+ — the <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> and the <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a>. To use these, the
246
+ developer simply pushes data into these models as necessary. These
247
+ models provide the data structure as well as all appropriate tree
248
+ interfaces. As a result, implementing drag and drop, sorting, and
249
+ storing data is trivial. For the vast majority of trees and lists,
250
+ these two models are sufficient.
251
+ </p>
252
+ <p>
253
+ Models are accessed on a node/column level of granularity. One can
254
+ query for the value of a model at a certain node and a certain
255
+ column on that node. There are two structures used to reference
256
+ a particular node in a model. They are the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> and the
257
+ <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a><a href="#ftn.idm140520365686224" class="footnote" name="idm140520365686224"><sup class="footnote">[4]</sup></a>. Most of the interface
258
+ consists of operations on a <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>.
259
+ </p>
260
+ <p>
261
+ A path is essentially a potential node. It is a location on a model
262
+ that may or may not actually correspond to a node on a specific
263
+ model. The <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> struct can be converted into either an
264
+ array of unsigned integers or a string. The string form is a list
265
+ of numbers separated by a colon. Each number refers to the offset
266
+ at that level. Thus, the path <span class="quote">“<span class="quote">0</span>”</span> refers to the root
267
+ node and the path <span class="quote">“<span class="quote">2:4</span>”</span> refers to the fifth child of
268
+ the third node.
269
+ </p>
270
+ <p>
271
+ By contrast, a <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> is a reference to a specific node on
272
+ a specific model. It is a generic struct with an integer and three
273
+ generic pointers. These are filled in by the model in a model-specific
274
+ way. One can convert a path to an iterator by calling
275
+ <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-iter" title="gtk_tree_model_get_iter ()"><code class="function">gtk_tree_model_get_iter()</code></a>. These iterators are the primary way
276
+ of accessing a model and are similar to the iterators used by
277
+ <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>. They are generally statically allocated on the
278
+ stack and only used for a short time. The model interface defines
279
+ a set of operations using them for navigating the model.
280
+ </p>
281
+ <p>
282
+ It is expected that models fill in the iterator with private data.
283
+ For example, the <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a> model, which is internally a simple
284
+ linked list, stores a list node in one of the pointers. The
285
+ <a class="link" href="GtkTreeModelSort.html" title="GtkTreeModelSort"><span class="type">GtkTreeModelSort</span></a> stores an array and an offset in two of the
286
+ pointers. Additionally, there is an integer field. This field is
287
+ generally filled with a unique stamp per model. This stamp is for
288
+ catching errors resulting from using invalid iterators with a model.
289
+ </p>
290
+ <p>
291
+ The lifecycle of an iterator can be a little confusing at first.
292
+ Iterators are expected to always be valid for as long as the model
293
+ is unchanged (and doesn't emit a signal). The model is considered
294
+ to own all outstanding iterators and nothing needs to be done to
295
+ free them from the user's point of view. Additionally, some models
296
+ guarantee that an iterator is valid for as long as the node it refers
297
+ to is valid (most notably the <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a> and <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a>).
298
+ Although generally uninteresting, as one always has to allow for
299
+ the case where iterators do not persist beyond a signal, some very
300
+ important performance enhancements were made in the sort model.
301
+ As a result, the <a class="link" href="GtkTreeModel.html#GTK-TREE-MODEL-ITERS-PERSIST:CAPS"><span class="type">GTK_TREE_MODEL_ITERS_PERSIST</span></a> flag was added to
302
+ indicate this behavior.
303
+ </p>
304
+ <p>
305
+ To help show some common operation of a model, some examples are
306
+ provided. The first example shows three ways of getting the iter at
307
+ the location <span class="quote">“<span class="quote">3:2:5</span>”</span>. While the first method shown is
308
+ easier, the second is much more common, as you often get paths from
309
+ callbacks.
310
+ </p>
311
+ <p>
312
+ </p>
313
+ <div class="example">
314
+ <a name="idm140520365670240"></a><p class="title"><b>Example 60. Acquiring a <span class="structname">GtkTreeIter</span></b></p>
315
+ <div class="example-contents">
316
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
317
+ <tbody>
318
+ <tr>
319
+ <td class="listing_lines" align="right"><pre>1
320
+ 2
321
+ 3
322
+ 4
323
+ 5
324
+ 6
325
+ 7
326
+ 8
327
+ 9
328
+ 10
329
+ 11
330
+ 12
331
+ 13
332
+ 14
333
+ 15
334
+ 16
335
+ 17
336
+ 18
337
+ 19</pre></td>
338
+ <td class="listing_code"><pre class="programlisting"><span class="comment">/* Three ways of getting the iter pointing to the location */</span>
339
+ <span class="usertype">GtkTreePath</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">path</span><span class="symbol">;</span>
340
+ <span class="usertype">GtkTreeIter</span><span class="normal"> iter</span><span class="symbol">;</span>
341
+ <span class="usertype">GtkTreeIter</span><span class="normal"> parent_iter</span><span class="symbol">;</span>
342
+
343
+ <span class="comment">/* get the iterator from a string */</span>
344
+ <span class="function"><a href="GtkTreeModel.html#gtk-tree-model-get-iter-from-string">gtk_tree_model_get_iter_from_string</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"3:2:5"</span><span class="symbol">);</span>
345
+
346
+ <span class="comment">/* get the iterator from a path */</span>
347
+ <span class="normal">path </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-path-new-from-string">gtk_tree_path_new_from_string</a></span><span class="normal"> </span><span class="symbol">(</span><span class="string">"3:2:5"</span><span class="symbol">);</span>
348
+ <span class="function"><a href="GtkTreeModel.html#gtk-tree-model-get-iter">gtk_tree_model_get_iter</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> path</span><span class="symbol">);</span>
349
+ <span class="function"><a href="GtkTreeModel.html#gtk-tree-path-free">gtk_tree_path_free</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">path</span><span class="symbol">);</span>
350
+
351
+ <span class="comment">/* walk the tree to find the iterator */</span>
352
+ <span class="function"><a href="GtkTreeModel.html#gtk-tree-model-iter-nth-child">gtk_tree_model_iter_nth_child</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS">NULL</a></span><span class="symbol">,</span><span class="normal"> </span><span class="number">3</span><span class="symbol">);</span>
353
+ <span class="normal">parent_iter </span><span class="symbol">=</span><span class="normal"> iter</span><span class="symbol">;</span>
354
+ <span class="function"><a href="GtkTreeModel.html#gtk-tree-model-iter-nth-child">gtk_tree_model_iter_nth_child</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">parent_iter</span><span class="symbol">,</span><span class="normal"> </span><span class="number">2</span><span class="symbol">);</span>
355
+ <span class="normal">parent_iter </span><span class="symbol">=</span><span class="normal"> iter</span><span class="symbol">;</span>
356
+ <span class="function"><a href="GtkTreeModel.html#gtk-tree-model-iter-nth-child">gtk_tree_model_iter_nth_child</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">parent_iter</span><span class="symbol">,</span><span class="normal"> </span><span class="number">5</span><span class="symbol">);</span></pre></td>
357
+ </tr>
358
+ </tbody>
359
+ </table>
360
+ </div>
361
+
362
+ </div>
363
+ <p><br class="example-break">
364
+ </p>
365
+ <p>
366
+ This second example shows a quick way of iterating through a list
367
+ and getting a string and an integer from each row. The
368
+ <code class="function">populate_model</code> function used below is not
369
+ shown, as it is specific to the <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a>. For information on
370
+ how to write such a function, see the <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a> documentation.
371
+ </p>
372
+ <p>
373
+ </p>
374
+ <div class="example">
375
+ <a name="idm140520365664032"></a><p class="title"><b>Example 61. Reading data from a <span class="structname">GtkTreeModel</span></b></p>
376
+ <div class="example-contents">
377
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
378
+ <tbody>
379
+ <tr>
380
+ <td class="listing_lines" align="right"><pre>1
381
+ 2
382
+ 3
383
+ 4
384
+ 5
385
+ 6
386
+ 7
387
+ 8
388
+ 9
389
+ 10
390
+ 11
391
+ 12
392
+ 13
393
+ 14
394
+ 15
395
+ 16
396
+ 17
397
+ 18
398
+ 19
399
+ 20
400
+ 21
401
+ 22
402
+ 23
403
+ 24
404
+ 25
405
+ 26
406
+ 27
407
+ 28
408
+ 29
409
+ 30
410
+ 31
411
+ 32
412
+ 33
413
+ 34
414
+ 35
415
+ 36
416
+ 37
417
+ 38
418
+ 39
419
+ 40
420
+ 41
421
+ 42
422
+ 43</pre></td>
423
+ <td class="listing_code"><pre class="programlisting"><span class="keyword">enum</span>
424
+ <span class="cbracket">{</span>
425
+ <span class="normal"> STRING_COLUMN</span><span class="symbol">,</span>
426
+ <span class="normal"> INT_COLUMN</span><span class="symbol">,</span>
427
+ <span class="normal"> N_COLUMNS</span>
428
+ <span class="cbracket">}</span><span class="symbol">;</span>
429
+
430
+ <span class="symbol">...</span>
431
+
432
+ <span class="usertype">GtkTreeModel</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">list_store</span><span class="symbol">;</span>
433
+ <span class="usertype">GtkTreeIter</span><span class="normal"> iter</span><span class="symbol">;</span>
434
+ <span class="usertype">gboolean</span><span class="normal"> valid</span><span class="symbol">;</span>
435
+ <span class="usertype">gint</span><span class="normal"> row_count </span><span class="symbol">=</span><span class="normal"> </span><span class="number">0</span><span class="symbol">;</span>
436
+
437
+ <span class="comment">/* make a new list_store */</span>
438
+ <span class="normal">list_store </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkListStore.html#gtk-list-store-new">gtk_list_store_new</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">N_COLUMNS</span><span class="symbol">,</span><span class="normal"> G_TYPE_STRING</span><span class="symbol">,</span><span class="normal"> G_TYPE_INT</span><span class="symbol">);</span>
439
+
440
+ <span class="comment">/* Fill the list store with data */</span>
441
+ <span class="function">populate_model</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">list_store</span><span class="symbol">);</span>
442
+
443
+ <span class="comment">/* Get the first iter in the list, check it is valid and walk</span>
444
+ <span class="comment"> * through the list, reading each row. */</span>
445
+ <span class="keyword">for</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">valid </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-get-iter-first">gtk_tree_model_get_iter_first</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">list_store</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">iter</span><span class="symbol">);</span>
446
+ <span class="normal"> valid</span><span class="symbol">;</span>
447
+ <span class="normal"> valid </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-iter-next">gtk_tree_model_iter_next</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">list_store</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">iter</span><span class="symbol">))</span>
448
+ <span class="normal"> </span><span class="cbracket">{</span>
449
+ <span class="normal"> </span><span class="usertype">gchar</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">str_data</span><span class="symbol">;</span>
450
+ <span class="normal"> </span><span class="usertype">gint</span><span class="normal"> int_data</span><span class="symbol">;</span>
451
+
452
+ <span class="normal"> </span><span class="comment">/* Make sure you terminate calls to gtk_tree_model_get()</span>
453
+ <span class="comment"> * with a '-1' value</span>
454
+ <span class="comment"> */</span>
455
+ <span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-get">gtk_tree_model_get</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">list_store</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">iter</span><span class="symbol">,</span>
456
+ <span class="normal"> STRING_COLUMN</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">str_data</span><span class="symbol">,</span>
457
+ <span class="normal"> INT_COLUMN</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">int_data</span><span class="symbol">,</span>
458
+ <span class="normal"> </span><span class="symbol">-</span><span class="number">1</span><span class="symbol">);</span>
459
+
460
+ <span class="normal"> </span><span class="comment">/* Do something with the data */</span>
461
+ <span class="normal"> </span><span class="function">g_print</span><span class="normal"> </span><span class="symbol">(</span><span class="string">"Row %d: (%s,%d)</span><span class="specialchar">\n</span><span class="string">"</span><span class="symbol">,</span><span class="normal"> row_count</span><span class="symbol">,</span><span class="normal"> str_data</span><span class="symbol">,</span><span class="normal"> int_data</span><span class="symbol">);</span>
462
+ <span class="normal"> </span><span class="function">g_free</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">str_data</span><span class="symbol">);</span>
463
+
464
+ <span class="normal"> row_count</span><span class="symbol">++;</span>
465
+ <span class="normal"> </span><span class="cbracket">}</span></pre></td>
466
+ </tr>
467
+ </tbody>
468
+ </table>
469
+ </div>
470
+
471
+ </div>
472
+ <p><br class="example-break">
473
+ </p>
474
+ <p>
475
+ The <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> interface contains two methods for reference
476
+ counting: <a class="link" href="GtkTreeModel.html#gtk-tree-model-ref-node" title="gtk_tree_model_ref_node ()"><code class="function">gtk_tree_model_ref_node()</code></a> and <a class="link" href="GtkTreeModel.html#gtk-tree-model-unref-node" title="gtk_tree_model_unref_node ()"><code class="function">gtk_tree_model_unref_node()</code></a>.
477
+ These two methods are optional to implement. The reference counting
478
+ is meant as a way for views to let models know when nodes are being
479
+ displayed. <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> will take a reference on a node when it is
480
+ visible, which means the node is either in the toplevel or expanded.
481
+ Being displayed does not mean that the node is currently directly
482
+ visible to the user in the viewport. Based on this reference counting
483
+ scheme a caching model, for example, can decide whether or not to cache
484
+ a node based on the reference count. A file-system based model would
485
+ not want to keep the entire file hierarchy in memory, but just the
486
+ folders that are currently expanded in every current view.
487
+ </p>
488
+ <p>
489
+ When working with reference counting, the following rules must be taken
490
+ into account:
491
+ </p>
492
+ <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
493
+ <li class="listitem"><p>Never take a reference on a node without owning a
494
+ reference on its parent. This means that all parent nodes of a referenced
495
+ node must be referenced as well.</p></li>
496
+ <li class="listitem"><p>Outstanding references on a deleted node are not released.
497
+ This is not possible because the node has already been deleted by the
498
+ time the row-deleted signal is received.
499
+ </p></li>
500
+ <li class="listitem"><p>Models are not obligated to emit a signal on rows of
501
+ which none of its siblings are referenced. To phrase this differently,
502
+ signals are only required for levels in which nodes are referenced. For
503
+ the root level however, signals must be emitted at all times (however the
504
+ root level is always referenced when any view is attached).
505
+ </p></li>
506
+ </ul></div>
507
+ <p>
508
+ </p>
509
+ </div>
510
+ <div class="refsect1">
511
+ <a name="GtkTreeModel.details"></a><h2>Details</h2>
512
+ <div class="refsect2">
513
+ <a name="GtkTreeModel-struct"></a><h3>GtkTreeModel</h3>
514
+ <pre class="programlisting">typedef struct _GtkTreeModel GtkTreeModel;</pre>
515
+ </div>
516
+ <hr>
517
+ <div class="refsect2">
518
+ <a name="GtkTreeIter-struct"></a><h3>struct GtkTreeIter</h3>
519
+ <pre class="programlisting">struct GtkTreeIter {
520
+ gint stamp;
521
+ gpointer user_data;
522
+ gpointer user_data2;
523
+ gpointer user_data3;
524
+ };
525
+ </pre>
526
+ <p>
527
+ The <span class="structname">GtkTreeIter</span> is the primary structure
528
+ for accessing a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>. Models are expected to put a unique
529
+ integer in the <em class="structfield"><code>stamp</code></em> member, and put
530
+ model-specific data in the three <em class="structfield"><code>user_data</code></em>
531
+ members.
532
+ </p>
533
+ <div class="variablelist"><table border="0" class="variablelist">
534
+ <colgroup>
535
+ <col align="left" valign="top">
536
+ <col>
537
+ </colgroup>
538
+ <tbody>
539
+ <tr>
540
+ <td><p><span class="term"><span class="type">gint</span> <em class="structfield"><code><a name="GtkTreeIter-struct.stamp"></a>stamp</code></em>;</span></p></td>
541
+ <td>a unique stamp to catch invalid iterators</td>
542
+ </tr>
543
+ <tr>
544
+ <td><p><span class="term"><span class="type">gpointer</span> <em class="structfield"><code><a name="GtkTreeIter-struct.user-data"></a>user_data</code></em>;</span></p></td>
545
+ <td>model-specific data</td>
546
+ </tr>
547
+ <tr>
548
+ <td><p><span class="term"><span class="type">gpointer</span> <em class="structfield"><code><a name="GtkTreeIter-struct.user-data2"></a>user_data2</code></em>;</span></p></td>
549
+ <td>model-specific data</td>
550
+ </tr>
551
+ <tr>
552
+ <td><p><span class="term"><span class="type">gpointer</span> <em class="structfield"><code><a name="GtkTreeIter-struct.user-data3"></a>user_data3</code></em>;</span></p></td>
553
+ <td>model-specific data</td>
554
+ </tr>
555
+ </tbody>
556
+ </table></div>
557
+ </div>
558
+ <hr>
559
+ <div class="refsect2">
560
+ <a name="GtkTreePath-struct"></a><h3>GtkTreePath</h3>
561
+ <pre class="programlisting">typedef struct _GtkTreePath GtkTreePath;</pre>
562
+ </div>
563
+ <hr>
564
+ <div class="refsect2">
565
+ <a name="GtkTreeRowReference"></a><h3>GtkTreeRowReference</h3>
566
+ <pre class="programlisting">typedef struct _GtkTreeRowReference GtkTreeRowReference;</pre>
567
+ <p>
568
+ A GtkTreeRowReference tracks model changes so that it always refers to the
569
+ same row (a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> refers to a position, not a fixed row). Create a
570
+ new GtkTreeRowReference with <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new" title="gtk_tree_row_reference_new ()"><code class="function">gtk_tree_row_reference_new()</code></a>.
571
+ </p>
572
+ </div>
573
+ <hr>
574
+ <div class="refsect2">
575
+ <a name="GtkTreeModelIface"></a><h3>struct GtkTreeModelIface</h3>
576
+ <pre class="programlisting">struct GtkTreeModelIface {
577
+ GTypeInterface g_iface;
578
+
579
+ /* Signals */
580
+ void (* row_changed) (GtkTreeModel *tree_model,
581
+ GtkTreePath *path,
582
+ GtkTreeIter *iter);
583
+ void (* row_inserted) (GtkTreeModel *tree_model,
584
+ GtkTreePath *path,
585
+ GtkTreeIter *iter);
586
+ void (* row_has_child_toggled) (GtkTreeModel *tree_model,
587
+ GtkTreePath *path,
588
+ GtkTreeIter *iter);
589
+ void (* row_deleted) (GtkTreeModel *tree_model,
590
+ GtkTreePath *path);
591
+ void (* rows_reordered) (GtkTreeModel *tree_model,
592
+ GtkTreePath *path,
593
+ GtkTreeIter *iter,
594
+ gint *new_order);
595
+
596
+ /* Virtual Table */
597
+ GtkTreeModelFlags (* get_flags) (GtkTreeModel *tree_model);
598
+
599
+ gint (* get_n_columns) (GtkTreeModel *tree_model);
600
+ GType (* get_column_type) (GtkTreeModel *tree_model,
601
+ gint index_);
602
+ gboolean (* get_iter) (GtkTreeModel *tree_model,
603
+ GtkTreeIter *iter,
604
+ GtkTreePath *path);
605
+ GtkTreePath *(* get_path) (GtkTreeModel *tree_model,
606
+ GtkTreeIter *iter);
607
+ void (* get_value) (GtkTreeModel *tree_model,
608
+ GtkTreeIter *iter,
609
+ gint column,
610
+ GValue *value);
611
+ gboolean (* iter_next) (GtkTreeModel *tree_model,
612
+ GtkTreeIter *iter);
613
+ gboolean (* iter_previous) (GtkTreeModel *tree_model,
614
+ GtkTreeIter *iter);
615
+ gboolean (* iter_children) (GtkTreeModel *tree_model,
616
+ GtkTreeIter *iter,
617
+ GtkTreeIter *parent);
618
+ gboolean (* iter_has_child) (GtkTreeModel *tree_model,
619
+ GtkTreeIter *iter);
620
+ gint (* iter_n_children) (GtkTreeModel *tree_model,
621
+ GtkTreeIter *iter);
622
+ gboolean (* iter_nth_child) (GtkTreeModel *tree_model,
623
+ GtkTreeIter *iter,
624
+ GtkTreeIter *parent,
625
+ gint n);
626
+ gboolean (* iter_parent) (GtkTreeModel *tree_model,
627
+ GtkTreeIter *iter,
628
+ GtkTreeIter *child);
629
+ void (* ref_node) (GtkTreeModel *tree_model,
630
+ GtkTreeIter *iter);
631
+ void (* unref_node) (GtkTreeModel *tree_model,
632
+ GtkTreeIter *iter);
633
+ };
634
+ </pre>
635
+ </div>
636
+ <hr>
637
+ <div class="refsect2">
638
+ <a name="GtkTreeModelForeachFunc"></a><h3>GtkTreeModelForeachFunc ()</h3>
639
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> (*GtkTreeModelForeachFunc) (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
640
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
641
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
642
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>);</pre>
643
+ <p>
644
+ Type of the callback passed to <a class="link" href="GtkTreeModel.html#gtk-tree-model-foreach" title="gtk_tree_model_foreach ()"><code class="function">gtk_tree_model_foreach()</code></a> to
645
+ iterate over the rows in a tree model.
646
+ </p>
647
+ <div class="variablelist"><table border="0" class="variablelist">
648
+ <colgroup>
649
+ <col align="left" valign="top">
650
+ <col>
651
+ </colgroup>
652
+ <tbody>
653
+ <tr>
654
+ <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
655
+ <td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> being iterated</td>
656
+ </tr>
657
+ <tr>
658
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
659
+ <td>the current <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
660
+ </td>
661
+ </tr>
662
+ <tr>
663
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
664
+ <td>the current <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
665
+ </td>
666
+ </tr>
667
+ <tr>
668
+ <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
669
+ <td>The user data passed to <a class="link" href="GtkTreeModel.html#gtk-tree-model-foreach" title="gtk_tree_model_foreach ()"><code class="function">gtk_tree_model_foreach()</code></a>
670
+ </td>
671
+ </tr>
672
+ <tr>
673
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
674
+ <td>
675
+ <code class="literal">TRUE</code> to stop iterating, <code class="literal">FALSE</code> to continue</td>
676
+ </tr>
677
+ </tbody>
678
+ </table></div>
679
+ </div>
680
+ <hr>
681
+ <div class="refsect2">
682
+ <a name="GtkTreeModelFlags"></a><h3>enum GtkTreeModelFlags</h3>
683
+ <pre class="programlisting">typedef enum {
684
+ GTK_TREE_MODEL_ITERS_PERSIST = 1 &lt;&lt; 0,
685
+ GTK_TREE_MODEL_LIST_ONLY = 1 &lt;&lt; 1
686
+ } GtkTreeModelFlags;
687
+ </pre>
688
+ <p>
689
+ These flags indicate various properties of a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.
690
+ </p>
691
+ <p>
692
+ They are returned by <a class="link" href="GtkTreeModel.html#gtk-tree-model-get-flags" title="gtk_tree_model_get_flags ()"><code class="function">gtk_tree_model_get_flags()</code></a>, and must be
693
+ static for the lifetime of the object. A more complete description
694
+ of <a class="link" href="GtkTreeModel.html#GTK-TREE-MODEL-ITERS-PERSIST:CAPS"><span class="type">GTK_TREE_MODEL_ITERS_PERSIST</span></a> can be found in the overview of
695
+ this section.
696
+ </p>
697
+ <div class="variablelist"><table border="0" class="variablelist">
698
+ <colgroup>
699
+ <col align="left" valign="top">
700
+ <col>
701
+ </colgroup>
702
+ <tbody>
703
+ <tr>
704
+ <td><p><a name="GTK-TREE-MODEL-ITERS-PERSIST:CAPS"></a><span class="term"><code class="literal">GTK_TREE_MODEL_ITERS_PERSIST</code></span></p></td>
705
+ <td>iterators survive all signals
706
+ emitted by the tree
707
+ </td>
708
+ </tr>
709
+ <tr>
710
+ <td><p><a name="GTK-TREE-MODEL-LIST-ONLY:CAPS"></a><span class="term"><code class="literal">GTK_TREE_MODEL_LIST_ONLY</code></span></p></td>
711
+ <td>the model is a list only, and never
712
+ has children
713
+ </td>
714
+ </tr>
715
+ </tbody>
716
+ </table></div>
717
+ </div>
718
+ <hr>
719
+ <div class="refsect2">
720
+ <a name="gtk-tree-path-new"></a><h3>gtk_tree_path_new ()</h3>
721
+ <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> * gtk_tree_path_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
722
+ <p>
723
+ Creates a new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.
724
+ This structure refers to a row.
725
+ </p>
726
+ <div class="variablelist"><table border="0" class="variablelist">
727
+ <colgroup>
728
+ <col align="left" valign="top">
729
+ <col>
730
+ </colgroup>
731
+ <tbody><tr>
732
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
733
+ <td>A newly created <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.</td>
734
+ </tr></tbody>
735
+ </table></div>
736
+ </div>
737
+ <hr>
738
+ <div class="refsect2">
739
+ <a name="gtk-tree-path-new-from-string"></a><h3>gtk_tree_path_new_from_string ()</h3>
740
+ <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> * gtk_tree_path_new_from_string (<em class="parameter"><code>const <span class="type">gchar</span> *path</code></em>);</pre>
741
+ <p>
742
+ Creates a new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> initialized to <em class="parameter"><code>path</code></em>.
743
+ </p>
744
+ <p>
745
+ <em class="parameter"><code>path</code></em> is expected to be a colon separated list of numbers.
746
+ For example, the string "10:4:0" would create a path of depth
747
+ 3 pointing to the 11th child of the root node, the 5th
748
+ child of that 11th child, and the 1st child of that 5th child.
749
+ If an invalid path string is passed in, <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> is returned.
750
+ </p>
751
+ <div class="variablelist"><table border="0" class="variablelist">
752
+ <colgroup>
753
+ <col align="left" valign="top">
754
+ <col>
755
+ </colgroup>
756
+ <tbody>
757
+ <tr>
758
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
759
+ <td>The string representation of a path</td>
760
+ </tr>
761
+ <tr>
762
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
763
+ <td>A newly-created <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
764
+ </td>
765
+ </tr>
766
+ </tbody>
767
+ </table></div>
768
+ </div>
769
+ <hr>
770
+ <div class="refsect2">
771
+ <a name="gtk-tree-path-new-from-indices"></a><h3>gtk_tree_path_new_from_indices ()</h3>
772
+ <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> * gtk_tree_path_new_from_indices (<em class="parameter"><code><span class="type">gint</span> first_index</code></em>,
773
+ <em class="parameter"><code>...</code></em>);</pre>
774
+ <p>
775
+ Creates a new path with <em class="parameter"><code>first_index</code></em> and <em class="parameter"><code>varargs</code></em> as indices.
776
+ </p>
777
+ <div class="variablelist"><table border="0" class="variablelist">
778
+ <colgroup>
779
+ <col align="left" valign="top">
780
+ <col>
781
+ </colgroup>
782
+ <tbody>
783
+ <tr>
784
+ <td><p><span class="term"><em class="parameter"><code>first_index</code></em> :</span></p></td>
785
+ <td>first integer</td>
786
+ </tr>
787
+ <tr>
788
+ <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
789
+ <td>list of integers terminated by -1</td>
790
+ </tr>
791
+ <tr>
792
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
793
+ <td>A newly created <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
794
+ </td>
795
+ </tr>
796
+ </tbody>
797
+ </table></div>
798
+ <p class="since">Since 2.2</p>
799
+ </div>
800
+ <hr>
801
+ <div class="refsect2">
802
+ <a name="gtk-tree-path-to-string"></a><h3>gtk_tree_path_to_string ()</h3>
803
+ <pre class="programlisting"><span class="returnvalue">gchar</span> * gtk_tree_path_to_string (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
804
+ <p>
805
+ Generates a string representation of the path.
806
+ </p>
807
+ <p>
808
+ This string is a ':' separated list of numbers.
809
+ For example, "4:10:0:3" would be an acceptable
810
+ return value for this string.
811
+ </p>
812
+ <div class="variablelist"><table border="0" class="variablelist">
813
+ <colgroup>
814
+ <col align="left" valign="top">
815
+ <col>
816
+ </colgroup>
817
+ <tbody>
818
+ <tr>
819
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
820
+ <td>A <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
821
+ </td>
822
+ </tr>
823
+ <tr>
824
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
825
+ <td>A newly-allocated string.
826
+ Must be freed with <code class="function">g_free()</code>.</td>
827
+ </tr>
828
+ </tbody>
829
+ </table></div>
830
+ </div>
831
+ <hr>
832
+ <div class="refsect2">
833
+ <a name="gtk-tree-path-new-first"></a><h3>gtk_tree_path_new_first ()</h3>
834
+ <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> * gtk_tree_path_new_first (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
835
+ <p>
836
+ Creates a new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>.
837
+ </p>
838
+ <p>
839
+ The string representation of this path is "0".
840
+ </p>
841
+ <div class="variablelist"><table border="0" class="variablelist">
842
+ <colgroup>
843
+ <col align="left" valign="top">
844
+ <col>
845
+ </colgroup>
846
+ <tbody><tr>
847
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
848
+ <td>A new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
849
+ </td>
850
+ </tr></tbody>
851
+ </table></div>
852
+ </div>
853
+ <hr>
854
+ <div class="refsect2">
855
+ <a name="gtk-tree-path-append-index"></a><h3>gtk_tree_path_append_index ()</h3>
856
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_path_append_index (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
857
+ <em class="parameter"><code><span class="type">gint</span> index_</code></em>);</pre>
858
+ <p>
859
+ Appends a new index to a path.
860
+ </p>
861
+ <p>
862
+ As a result, the depth of the path is increased.
863
+ </p>
864
+ <div class="variablelist"><table border="0" class="variablelist">
865
+ <colgroup>
866
+ <col align="left" valign="top">
867
+ <col>
868
+ </colgroup>
869
+ <tbody>
870
+ <tr>
871
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
872
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
873
+ </td>
874
+ </tr>
875
+ <tr>
876
+ <td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
877
+ <td>the index</td>
878
+ </tr>
879
+ </tbody>
880
+ </table></div>
881
+ </div>
882
+ <hr>
883
+ <div class="refsect2">
884
+ <a name="gtk-tree-path-prepend-index"></a><h3>gtk_tree_path_prepend_index ()</h3>
885
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_path_prepend_index (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
886
+ <em class="parameter"><code><span class="type">gint</span> index_</code></em>);</pre>
887
+ <p>
888
+ Prepends a new index to a path.
889
+ </p>
890
+ <p>
891
+ As a result, the depth of the path is increased.
892
+ </p>
893
+ <div class="variablelist"><table border="0" class="variablelist">
894
+ <colgroup>
895
+ <col align="left" valign="top">
896
+ <col>
897
+ </colgroup>
898
+ <tbody>
899
+ <tr>
900
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
901
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
902
+ </td>
903
+ </tr>
904
+ <tr>
905
+ <td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
906
+ <td>the index</td>
907
+ </tr>
908
+ </tbody>
909
+ </table></div>
910
+ </div>
911
+ <hr>
912
+ <div class="refsect2">
913
+ <a name="gtk-tree-path-get-depth"></a><h3>gtk_tree_path_get_depth ()</h3>
914
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_tree_path_get_depth (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
915
+ <p>
916
+ Returns the current depth of <em class="parameter"><code>path</code></em>.
917
+ </p>
918
+ <div class="variablelist"><table border="0" class="variablelist">
919
+ <colgroup>
920
+ <col align="left" valign="top">
921
+ <col>
922
+ </colgroup>
923
+ <tbody>
924
+ <tr>
925
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
926
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
927
+ </td>
928
+ </tr>
929
+ <tr>
930
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
931
+ <td>The depth of <em class="parameter"><code>path</code></em>
932
+ </td>
933
+ </tr>
934
+ </tbody>
935
+ </table></div>
936
+ </div>
937
+ <hr>
938
+ <div class="refsect2">
939
+ <a name="gtk-tree-path-get-indices"></a><h3>gtk_tree_path_get_indices ()</h3>
940
+ <pre class="programlisting"><span class="returnvalue">gint</span> * gtk_tree_path_get_indices (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
941
+ <p>
942
+ Returns the current indices of <em class="parameter"><code>path</code></em>.
943
+ </p>
944
+ <p>
945
+ This is an array of integers, each representing a node in a tree.
946
+ This value should not be freed.
947
+ </p>
948
+ <p>
949
+ The length of the array can be obtained with <a class="link" href="GtkTreeModel.html#gtk-tree-path-get-depth" title="gtk_tree_path_get_depth ()"><code class="function">gtk_tree_path_get_depth()</code></a>.
950
+ </p>
951
+ <div class="variablelist"><table border="0" class="variablelist">
952
+ <colgroup>
953
+ <col align="left" valign="top">
954
+ <col>
955
+ </colgroup>
956
+ <tbody>
957
+ <tr>
958
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
959
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
960
+ </td>
961
+ </tr>
962
+ <tr>
963
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
964
+ <td>The current indices, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
965
+ </td>
966
+ </tr>
967
+ </tbody>
968
+ </table></div>
969
+ </div>
970
+ <hr>
971
+ <div class="refsect2">
972
+ <a name="gtk-tree-path-get-indices-with-depth"></a><h3>gtk_tree_path_get_indices_with_depth ()</h3>
973
+ <pre class="programlisting"><span class="returnvalue">gint</span> * gtk_tree_path_get_indices_with_depth
974
+ (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
975
+ <em class="parameter"><code><span class="type">gint</span> *depth</code></em>);</pre>
976
+ <p>
977
+ Returns the current indices of <em class="parameter"><code>path</code></em>.
978
+ </p>
979
+ <p>
980
+ This is an array of integers, each representing a node in a tree.
981
+ It also returns the number of elements in the array.
982
+ The array should not be freed.
983
+ </p>
984
+ <div class="variablelist"><table border="0" class="variablelist">
985
+ <colgroup>
986
+ <col align="left" valign="top">
987
+ <col>
988
+ </colgroup>
989
+ <tbody>
990
+ <tr>
991
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
992
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
993
+ </td>
994
+ </tr>
995
+ <tr>
996
+ <td><p><span class="term"><em class="parameter"><code>depth</code></em> :</span></p></td>
997
+ <td>return location for number of elements
998
+ returned in the integer array, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
999
+ </td>
1000
+ </tr>
1001
+ <tr>
1002
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1003
+ <td>The current
1004
+ indices, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=depth][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1005
+ </td>
1006
+ </tr>
1007
+ </tbody>
1008
+ </table></div>
1009
+ <p class="since">Since 3.0</p>
1010
+ </div>
1011
+ <hr>
1012
+ <div class="refsect2">
1013
+ <a name="gtk-tree-path-free"></a><h3>gtk_tree_path_free ()</h3>
1014
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_path_free (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1015
+ <p>
1016
+ Frees <em class="parameter"><code>path</code></em>. If <em class="parameter"><code>path</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, it simply returns.
1017
+ </p>
1018
+ <div class="variablelist"><table border="0" class="variablelist">
1019
+ <colgroup>
1020
+ <col align="left" valign="top">
1021
+ <col>
1022
+ </colgroup>
1023
+ <tbody><tr>
1024
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1025
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1026
+ </td>
1027
+ </tr></tbody>
1028
+ </table></div>
1029
+ </div>
1030
+ <hr>
1031
+ <div class="refsect2">
1032
+ <a name="gtk-tree-path-copy"></a><h3>gtk_tree_path_copy ()</h3>
1033
+ <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> * gtk_tree_path_copy (<em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1034
+ <p>
1035
+ Creates a new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> as a copy of <em class="parameter"><code>path</code></em>.
1036
+ </p>
1037
+ <div class="variablelist"><table border="0" class="variablelist">
1038
+ <colgroup>
1039
+ <col align="left" valign="top">
1040
+ <col>
1041
+ </colgroup>
1042
+ <tbody>
1043
+ <tr>
1044
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1045
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1046
+ </td>
1047
+ </tr>
1048
+ <tr>
1049
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1050
+ <td>a new <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1051
+ </td>
1052
+ </tr>
1053
+ </tbody>
1054
+ </table></div>
1055
+ </div>
1056
+ <hr>
1057
+ <div class="refsect2">
1058
+ <a name="gtk-tree-path-compare"></a><h3>gtk_tree_path_compare ()</h3>
1059
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_tree_path_compare (<em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *a</code></em>,
1060
+ <em class="parameter"><code>const <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *b</code></em>);</pre>
1061
+ <p>
1062
+ Compares two paths.
1063
+ </p>
1064
+ <p>
1065
+ If <em class="parameter"><code>a</code></em> appears before <em class="parameter"><code>b</code></em> in a tree, then -1 is returned.
1066
+ If <em class="parameter"><code>b</code></em> appears before <em class="parameter"><code>a</code></em>, then 1 is returned.
1067
+ If the two nodes are equal, then 0 is returned.
1068
+ </p>
1069
+ <div class="variablelist"><table border="0" class="variablelist">
1070
+ <colgroup>
1071
+ <col align="left" valign="top">
1072
+ <col>
1073
+ </colgroup>
1074
+ <tbody>
1075
+ <tr>
1076
+ <td><p><span class="term"><em class="parameter"><code>a</code></em> :</span></p></td>
1077
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1078
+ </td>
1079
+ </tr>
1080
+ <tr>
1081
+ <td><p><span class="term"><em class="parameter"><code>b</code></em> :</span></p></td>
1082
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to compare with</td>
1083
+ </tr>
1084
+ <tr>
1085
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1086
+ <td>the relative positions of <em class="parameter"><code>a</code></em> and <em class="parameter"><code>b</code></em>
1087
+ </td>
1088
+ </tr>
1089
+ </tbody>
1090
+ </table></div>
1091
+ </div>
1092
+ <hr>
1093
+ <div class="refsect2">
1094
+ <a name="gtk-tree-path-next"></a><h3>gtk_tree_path_next ()</h3>
1095
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_path_next (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1096
+ <p>
1097
+ Moves the <em class="parameter"><code>path</code></em> to point to the next node at the current depth.
1098
+ </p>
1099
+ <div class="variablelist"><table border="0" class="variablelist">
1100
+ <colgroup>
1101
+ <col align="left" valign="top">
1102
+ <col>
1103
+ </colgroup>
1104
+ <tbody><tr>
1105
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1106
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1107
+ </td>
1108
+ </tr></tbody>
1109
+ </table></div>
1110
+ </div>
1111
+ <hr>
1112
+ <div class="refsect2">
1113
+ <a name="gtk-tree-path-prev"></a><h3>gtk_tree_path_prev ()</h3>
1114
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_tree_path_prev (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1115
+ <p>
1116
+ Moves the <em class="parameter"><code>path</code></em> to point to the previous node at the
1117
+ current depth, if it exists.
1118
+ </p>
1119
+ <div class="variablelist"><table border="0" class="variablelist">
1120
+ <colgroup>
1121
+ <col align="left" valign="top">
1122
+ <col>
1123
+ </colgroup>
1124
+ <tbody>
1125
+ <tr>
1126
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1127
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1128
+ </td>
1129
+ </tr>
1130
+ <tr>
1131
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1132
+ <td>
1133
+ <code class="literal">TRUE</code> if <em class="parameter"><code>path</code></em> has a previous node, and
1134
+ the move was made</td>
1135
+ </tr>
1136
+ </tbody>
1137
+ </table></div>
1138
+ </div>
1139
+ <hr>
1140
+ <div class="refsect2">
1141
+ <a name="gtk-tree-path-up"></a><h3>gtk_tree_path_up ()</h3>
1142
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_tree_path_up (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1143
+ <p>
1144
+ Moves the <em class="parameter"><code>path</code></em> to point to its parent node, if it has a parent.
1145
+ </p>
1146
+ <div class="variablelist"><table border="0" class="variablelist">
1147
+ <colgroup>
1148
+ <col align="left" valign="top">
1149
+ <col>
1150
+ </colgroup>
1151
+ <tbody>
1152
+ <tr>
1153
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1154
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1155
+ </td>
1156
+ </tr>
1157
+ <tr>
1158
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1159
+ <td>
1160
+ <code class="literal">TRUE</code> if <em class="parameter"><code>path</code></em> has a parent, and the move was made</td>
1161
+ </tr>
1162
+ </tbody>
1163
+ </table></div>
1164
+ </div>
1165
+ <hr>
1166
+ <div class="refsect2">
1167
+ <a name="gtk-tree-path-down"></a><h3>gtk_tree_path_down ()</h3>
1168
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_path_down (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1169
+ <p>
1170
+ Moves <em class="parameter"><code>path</code></em> to point to the first child of the current path.
1171
+ </p>
1172
+ <div class="variablelist"><table border="0" class="variablelist">
1173
+ <colgroup>
1174
+ <col align="left" valign="top">
1175
+ <col>
1176
+ </colgroup>
1177
+ <tbody><tr>
1178
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1179
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1180
+ </td>
1181
+ </tr></tbody>
1182
+ </table></div>
1183
+ </div>
1184
+ <hr>
1185
+ <div class="refsect2">
1186
+ <a name="gtk-tree-path-is-ancestor"></a><h3>gtk_tree_path_is_ancestor ()</h3>
1187
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_tree_path_is_ancestor (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1188
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *descendant</code></em>);</pre>
1189
+ <p>
1190
+ Returns <code class="literal">TRUE</code> if <em class="parameter"><code>descendant</code></em> is a descendant of <em class="parameter"><code>path</code></em>.
1191
+ </p>
1192
+ <div class="variablelist"><table border="0" class="variablelist">
1193
+ <colgroup>
1194
+ <col align="left" valign="top">
1195
+ <col>
1196
+ </colgroup>
1197
+ <tbody>
1198
+ <tr>
1199
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1200
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1201
+ </td>
1202
+ </tr>
1203
+ <tr>
1204
+ <td><p><span class="term"><em class="parameter"><code>descendant</code></em> :</span></p></td>
1205
+ <td>another <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1206
+ </td>
1207
+ </tr>
1208
+ <tr>
1209
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1210
+ <td>
1211
+ <code class="literal">TRUE</code> if <em class="parameter"><code>descendant</code></em> is contained inside <em class="parameter"><code>path</code></em>
1212
+ </td>
1213
+ </tr>
1214
+ </tbody>
1215
+ </table></div>
1216
+ </div>
1217
+ <hr>
1218
+ <div class="refsect2">
1219
+ <a name="gtk-tree-path-is-descendant"></a><h3>gtk_tree_path_is_descendant ()</h3>
1220
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_tree_path_is_descendant (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1221
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *ancestor</code></em>);</pre>
1222
+ <p>
1223
+ Returns <code class="literal">TRUE</code> if <em class="parameter"><code>path</code></em> is a descendant of <em class="parameter"><code>ancestor</code></em>.
1224
+ </p>
1225
+ <div class="variablelist"><table border="0" class="variablelist">
1226
+ <colgroup>
1227
+ <col align="left" valign="top">
1228
+ <col>
1229
+ </colgroup>
1230
+ <tbody>
1231
+ <tr>
1232
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1233
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1234
+ </td>
1235
+ </tr>
1236
+ <tr>
1237
+ <td><p><span class="term"><em class="parameter"><code>ancestor</code></em> :</span></p></td>
1238
+ <td>another <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1239
+ </td>
1240
+ </tr>
1241
+ <tr>
1242
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1243
+ <td>
1244
+ <code class="literal">TRUE</code> if <em class="parameter"><code>ancestor</code></em> contains <em class="parameter"><code>path</code></em> somewhere below it</td>
1245
+ </tr>
1246
+ </tbody>
1247
+ </table></div>
1248
+ </div>
1249
+ <hr>
1250
+ <div class="refsect2">
1251
+ <a name="gtk-tree-row-reference-new"></a><h3>gtk_tree_row_reference_new ()</h3>
1252
+ <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="returnvalue">GtkTreeRowReference</span></a> * gtk_tree_row_reference_new (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
1253
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1254
+ <p>
1255
+ Creates a row reference based on <em class="parameter"><code>path</code></em>.
1256
+ </p>
1257
+ <p>
1258
+ This reference will keep pointing to the node pointed to
1259
+ by <em class="parameter"><code>path</code></em>, so long as it exists. Any changes that occur on <em class="parameter"><code>model</code></em> are
1260
+ propagated, and the path is updated appropriately. If
1261
+ <em class="parameter"><code>path</code></em> isn't a valid path in <em class="parameter"><code>model</code></em>, then <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> is returned.
1262
+ </p>
1263
+ <div class="variablelist"><table border="0" class="variablelist">
1264
+ <colgroup>
1265
+ <col align="left" valign="top">
1266
+ <col>
1267
+ </colgroup>
1268
+ <tbody>
1269
+ <tr>
1270
+ <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
1271
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
1272
+ </td>
1273
+ </tr>
1274
+ <tr>
1275
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1276
+ <td>a valid <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to monitor</td>
1277
+ </tr>
1278
+ <tr>
1279
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1280
+ <td>a newly allocated <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
1281
+ </td>
1282
+ </tr>
1283
+ </tbody>
1284
+ </table></div>
1285
+ </div>
1286
+ <hr>
1287
+ <div class="refsect2">
1288
+ <a name="gtk-tree-row-reference-new-proxy"></a><h3>gtk_tree_row_reference_new_proxy ()</h3>
1289
+ <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="returnvalue">GtkTreeRowReference</span></a> * gtk_tree_row_reference_new_proxy (<em class="parameter"><code><span class="type">GObject</span> *proxy</code></em>,
1290
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
1291
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1292
+ <p>
1293
+ You do not need to use this function.
1294
+ </p>
1295
+ <p>
1296
+ Creates a row reference based on <em class="parameter"><code>path</code></em>.
1297
+ </p>
1298
+ <p>
1299
+ This reference will keep pointing to the node pointed to
1300
+ by <em class="parameter"><code>path</code></em>, so long as it exists. If <em class="parameter"><code>path</code></em> isn't a valid
1301
+ path in <em class="parameter"><code>model</code></em>, then <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> is returned. However, unlike
1302
+ references created with <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new" title="gtk_tree_row_reference_new ()"><code class="function">gtk_tree_row_reference_new()</code></a>, it
1303
+ does not listen to the model for changes. The creator of
1304
+ the row reference must do this explicitly using
1305
+ <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-inserted" title="gtk_tree_row_reference_inserted ()"><code class="function">gtk_tree_row_reference_inserted()</code></a>, <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-deleted" title="gtk_tree_row_reference_deleted ()"><code class="function">gtk_tree_row_reference_deleted()</code></a>,
1306
+ <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-reordered" title="gtk_tree_row_reference_reordered ()"><code class="function">gtk_tree_row_reference_reordered()</code></a>.
1307
+ </p>
1308
+ <p>
1309
+ These functions must be called exactly once per proxy when the
1310
+ corresponding signal on the model is emitted. This single call
1311
+ updates all row references for that proxy. Since built-in GTK+
1312
+ objects like <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> already use this mechanism internally,
1313
+ using them as the proxy object will produce unpredictable results.
1314
+ Further more, passing the same object as <em class="parameter"><code>model</code></em> and <em class="parameter"><code>proxy</code></em>
1315
+ doesn't work for reasons of internal implementation.
1316
+ </p>
1317
+ <p>
1318
+ This type of row reference is primarily meant by structures that
1319
+ need to carefully monitor exactly when a row reference updates
1320
+ itself, and is not generally needed by most applications.
1321
+ </p>
1322
+ <div class="variablelist"><table border="0" class="variablelist">
1323
+ <colgroup>
1324
+ <col align="left" valign="top">
1325
+ <col>
1326
+ </colgroup>
1327
+ <tbody>
1328
+ <tr>
1329
+ <td><p><span class="term"><em class="parameter"><code>proxy</code></em> :</span></p></td>
1330
+ <td>a proxy <span class="type">GObject</span>
1331
+ </td>
1332
+ </tr>
1333
+ <tr>
1334
+ <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
1335
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
1336
+ </td>
1337
+ </tr>
1338
+ <tr>
1339
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1340
+ <td>a valid <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> to monitor</td>
1341
+ </tr>
1342
+ <tr>
1343
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1344
+ <td>a newly allocated <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
1345
+ </td>
1346
+ </tr>
1347
+ </tbody>
1348
+ </table></div>
1349
+ </div>
1350
+ <hr>
1351
+ <div class="refsect2">
1352
+ <a name="gtk-tree-row-reference-get-model"></a><h3>gtk_tree_row_reference_get_model ()</h3>
1353
+ <pre class="programlisting"><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> * gtk_tree_row_reference_get_model (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);</pre>
1354
+ <p>
1355
+ Returns the model that the row reference is monitoring.
1356
+ </p>
1357
+ <div class="variablelist"><table border="0" class="variablelist">
1358
+ <colgroup>
1359
+ <col align="left" valign="top">
1360
+ <col>
1361
+ </colgroup>
1362
+ <tbody>
1363
+ <tr>
1364
+ <td><p><span class="term"><em class="parameter"><code>reference</code></em> :</span></p></td>
1365
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>
1366
+ </td>
1367
+ </tr>
1368
+ <tr>
1369
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1370
+ <td>the model. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1371
+ </td>
1372
+ </tr>
1373
+ </tbody>
1374
+ </table></div>
1375
+ <p class="since">Since 2.8</p>
1376
+ </div>
1377
+ <hr>
1378
+ <div class="refsect2">
1379
+ <a name="gtk-tree-row-reference-get-path"></a><h3>gtk_tree_row_reference_get_path ()</h3>
1380
+ <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> * gtk_tree_row_reference_get_path (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);</pre>
1381
+ <p>
1382
+ Returns a path that the row reference currently points to,
1383
+ or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if the path pointed to is no longer valid.
1384
+ </p>
1385
+ <div class="variablelist"><table border="0" class="variablelist">
1386
+ <colgroup>
1387
+ <col align="left" valign="top">
1388
+ <col>
1389
+ </colgroup>
1390
+ <tbody>
1391
+ <tr>
1392
+ <td><p><span class="term"><em class="parameter"><code>reference</code></em> :</span></p></td>
1393
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>
1394
+ </td>
1395
+ </tr>
1396
+ <tr>
1397
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1398
+ <td>a current path, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
1399
+ </td>
1400
+ </tr>
1401
+ </tbody>
1402
+ </table></div>
1403
+ </div>
1404
+ <hr>
1405
+ <div class="refsect2">
1406
+ <a name="gtk-tree-row-reference-valid"></a><h3>gtk_tree_row_reference_valid ()</h3>
1407
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_tree_row_reference_valid (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);</pre>
1408
+ <p>
1409
+ Returns <code class="literal">TRUE</code> if the <em class="parameter"><code>reference</code></em> is non-<a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> and refers to
1410
+ a current valid path.
1411
+ </p>
1412
+ <div class="variablelist"><table border="0" class="variablelist">
1413
+ <colgroup>
1414
+ <col align="left" valign="top">
1415
+ <col>
1416
+ </colgroup>
1417
+ <tbody>
1418
+ <tr>
1419
+ <td><p><span class="term"><em class="parameter"><code>reference</code></em> :</span></p></td>
1420
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1421
+ </td>
1422
+ </tr>
1423
+ <tr>
1424
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1425
+ <td>
1426
+ <code class="literal">TRUE</code> if <em class="parameter"><code>reference</code></em> points to a valid path</td>
1427
+ </tr>
1428
+ </tbody>
1429
+ </table></div>
1430
+ </div>
1431
+ <hr>
1432
+ <div class="refsect2">
1433
+ <a name="gtk-tree-row-reference-free"></a><h3>gtk_tree_row_reference_free ()</h3>
1434
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_row_reference_free (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);</pre>
1435
+ <p>
1436
+ Free's <em class="parameter"><code>reference</code></em>. <em class="parameter"><code>reference</code></em> may be <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
1437
+ </p>
1438
+ <div class="variablelist"><table border="0" class="variablelist">
1439
+ <colgroup>
1440
+ <col align="left" valign="top">
1441
+ <col>
1442
+ </colgroup>
1443
+ <tbody><tr>
1444
+ <td><p><span class="term"><em class="parameter"><code>reference</code></em> :</span></p></td>
1445
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1446
+ </td>
1447
+ </tr></tbody>
1448
+ </table></div>
1449
+ </div>
1450
+ <hr>
1451
+ <div class="refsect2">
1452
+ <a name="gtk-tree-row-reference-copy"></a><h3>gtk_tree_row_reference_copy ()</h3>
1453
+ <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="returnvalue">GtkTreeRowReference</span></a> * gtk_tree_row_reference_copy (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a> *reference</code></em>);</pre>
1454
+ <p>
1455
+ Copies a <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>.
1456
+ </p>
1457
+ <div class="variablelist"><table border="0" class="variablelist">
1458
+ <colgroup>
1459
+ <col align="left" valign="top">
1460
+ <col>
1461
+ </colgroup>
1462
+ <tbody>
1463
+ <tr>
1464
+ <td><p><span class="term"><em class="parameter"><code>reference</code></em> :</span></p></td>
1465
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreeRowReference" title="GtkTreeRowReference"><span class="type">GtkTreeRowReference</span></a>
1466
+ </td>
1467
+ </tr>
1468
+ <tr>
1469
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1470
+ <td>a copy of <em class="parameter"><code>reference</code></em>
1471
+ </td>
1472
+ </tr>
1473
+ </tbody>
1474
+ </table></div>
1475
+ <p class="since">Since 2.2</p>
1476
+ </div>
1477
+ <hr>
1478
+ <div class="refsect2">
1479
+ <a name="gtk-tree-row-reference-inserted"></a><h3>gtk_tree_row_reference_inserted ()</h3>
1480
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_row_reference_inserted (<em class="parameter"><code><span class="type">GObject</span> *proxy</code></em>,
1481
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1482
+ <p>
1483
+ Lets a set of row reference created by
1484
+ <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new-proxy" title="gtk_tree_row_reference_new_proxy ()"><code class="function">gtk_tree_row_reference_new_proxy()</code></a> know that the
1485
+ model emitted the <a class="link" href="GtkTreeModel.html#GtkTreeModel-row-inserted" title='The "row-inserted" signal'><span class="type">"row-inserted"</span></a> signal.
1486
+ </p>
1487
+ <div class="variablelist"><table border="0" class="variablelist">
1488
+ <colgroup>
1489
+ <col align="left" valign="top">
1490
+ <col>
1491
+ </colgroup>
1492
+ <tbody>
1493
+ <tr>
1494
+ <td><p><span class="term"><em class="parameter"><code>proxy</code></em> :</span></p></td>
1495
+ <td>a <span class="type">GObject</span>
1496
+ </td>
1497
+ </tr>
1498
+ <tr>
1499
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1500
+ <td>the row position that was inserted</td>
1501
+ </tr>
1502
+ </tbody>
1503
+ </table></div>
1504
+ </div>
1505
+ <hr>
1506
+ <div class="refsect2">
1507
+ <a name="gtk-tree-row-reference-deleted"></a><h3>gtk_tree_row_reference_deleted ()</h3>
1508
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_row_reference_deleted (<em class="parameter"><code><span class="type">GObject</span> *proxy</code></em>,
1509
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1510
+ <p>
1511
+ Lets a set of row reference created by
1512
+ <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new-proxy" title="gtk_tree_row_reference_new_proxy ()"><code class="function">gtk_tree_row_reference_new_proxy()</code></a> know that the
1513
+ model emitted the <a class="link" href="GtkTreeModel.html#GtkTreeModel-row-deleted" title='The "row-deleted" signal'><span class="type">"row-deleted"</span></a> signal.
1514
+ </p>
1515
+ <div class="variablelist"><table border="0" class="variablelist">
1516
+ <colgroup>
1517
+ <col align="left" valign="top">
1518
+ <col>
1519
+ </colgroup>
1520
+ <tbody>
1521
+ <tr>
1522
+ <td><p><span class="term"><em class="parameter"><code>proxy</code></em> :</span></p></td>
1523
+ <td>a <span class="type">GObject</span>
1524
+ </td>
1525
+ </tr>
1526
+ <tr>
1527
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1528
+ <td>the path position that was deleted</td>
1529
+ </tr>
1530
+ </tbody>
1531
+ </table></div>
1532
+ </div>
1533
+ <hr>
1534
+ <div class="refsect2">
1535
+ <a name="gtk-tree-row-reference-reordered"></a><h3>gtk_tree_row_reference_reordered ()</h3>
1536
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_row_reference_reordered (<em class="parameter"><code><span class="type">GObject</span> *proxy</code></em>,
1537
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
1538
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
1539
+ <em class="parameter"><code><span class="type">gint</span> *new_order</code></em>);</pre>
1540
+ <p>
1541
+ Lets a set of row reference created by
1542
+ <a class="link" href="GtkTreeModel.html#gtk-tree-row-reference-new-proxy" title="gtk_tree_row_reference_new_proxy ()"><code class="function">gtk_tree_row_reference_new_proxy()</code></a> know that the
1543
+ model emitted the <a class="link" href="GtkTreeModel.html#GtkTreeModel-rows-reordered" title='The "rows-reordered" signal'><span class="type">"rows-reordered"</span></a> signal.
1544
+ </p>
1545
+ <div class="variablelist"><table border="0" class="variablelist">
1546
+ <colgroup>
1547
+ <col align="left" valign="top">
1548
+ <col>
1549
+ </colgroup>
1550
+ <tbody>
1551
+ <tr>
1552
+ <td><p><span class="term"><em class="parameter"><code>proxy</code></em> :</span></p></td>
1553
+ <td>a <span class="type">GObject</span>
1554
+ </td>
1555
+ </tr>
1556
+ <tr>
1557
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1558
+ <td>the parent path of the reordered signal</td>
1559
+ </tr>
1560
+ <tr>
1561
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1562
+ <td>the iter pointing to the parent of the reordered</td>
1563
+ </tr>
1564
+ <tr>
1565
+ <td><p><span class="term"><em class="parameter"><code>new_order</code></em> :</span></p></td>
1566
+ <td>the new order of rows</td>
1567
+ </tr>
1568
+ </tbody>
1569
+ </table></div>
1570
+ </div>
1571
+ <hr>
1572
+ <div class="refsect2">
1573
+ <a name="gtk-tree-iter-copy"></a><h3>gtk_tree_iter_copy ()</h3>
1574
+ <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="returnvalue">GtkTreeIter</span></a> * gtk_tree_iter_copy (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
1575
+ <p>
1576
+ Creates a dynamically allocated tree iterator as a copy of <em class="parameter"><code>iter</code></em>.
1577
+ </p>
1578
+ <p>
1579
+ This function is not intended for use in applications,
1580
+ because you can just copy the structs by value
1581
+ (<code class="literal">GtkTreeIter new_iter = iter;</code>).
1582
+ You must free this iter with <a class="link" href="GtkTreeModel.html#gtk-tree-iter-free" title="gtk_tree_iter_free ()"><code class="function">gtk_tree_iter_free()</code></a>.
1583
+ </p>
1584
+ <div class="variablelist"><table border="0" class="variablelist">
1585
+ <colgroup>
1586
+ <col align="left" valign="top">
1587
+ <col>
1588
+ </colgroup>
1589
+ <tbody>
1590
+ <tr>
1591
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1592
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
1593
+ </td>
1594
+ </tr>
1595
+ <tr>
1596
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1597
+ <td>a newly-allocated copy of <em class="parameter"><code>iter</code></em>
1598
+ </td>
1599
+ </tr>
1600
+ </tbody>
1601
+ </table></div>
1602
+ </div>
1603
+ <hr>
1604
+ <div class="refsect2">
1605
+ <a name="gtk-tree-iter-free"></a><h3>gtk_tree_iter_free ()</h3>
1606
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_iter_free (<em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
1607
+ <p>
1608
+ Frees an iterator that has been allocated by <a class="link" href="GtkTreeModel.html#gtk-tree-iter-copy" title="gtk_tree_iter_copy ()"><code class="function">gtk_tree_iter_copy()</code></a>.
1609
+ </p>
1610
+ <p>
1611
+ This function is mainly used for language bindings.
1612
+ </p>
1613
+ <div class="variablelist"><table border="0" class="variablelist">
1614
+ <colgroup>
1615
+ <col align="left" valign="top">
1616
+ <col>
1617
+ </colgroup>
1618
+ <tbody><tr>
1619
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1620
+ <td>a dynamically allocated tree iterator</td>
1621
+ </tr></tbody>
1622
+ </table></div>
1623
+ </div>
1624
+ <hr>
1625
+ <div class="refsect2">
1626
+ <a name="gtk-tree-model-get-flags"></a><h3>gtk_tree_model_get_flags ()</h3>
1627
+ <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreeModelFlags" title="enum GtkTreeModelFlags"><span class="returnvalue">GtkTreeModelFlags</span></a> gtk_tree_model_get_flags (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>);</pre>
1628
+ <p>
1629
+ Returns a set of flags supported by this interface.
1630
+ </p>
1631
+ <p>
1632
+ The flags are a bitwise combination of <a class="link" href="GtkTreeModel.html#GtkTreeModelFlags" title="enum GtkTreeModelFlags"><span class="type">GtkTreeModelFlags</span></a>.
1633
+ The flags supported should not change during the lifetime
1634
+ of the <em class="parameter"><code>tree_model</code></em>.
1635
+ </p>
1636
+ <div class="variablelist"><table border="0" class="variablelist">
1637
+ <colgroup>
1638
+ <col align="left" valign="top">
1639
+ <col>
1640
+ </colgroup>
1641
+ <tbody>
1642
+ <tr>
1643
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
1644
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
1645
+ </td>
1646
+ </tr>
1647
+ <tr>
1648
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1649
+ <td>the flags supported by this interface</td>
1650
+ </tr>
1651
+ </tbody>
1652
+ </table></div>
1653
+ </div>
1654
+ <hr>
1655
+ <div class="refsect2">
1656
+ <a name="gtk-tree-model-get-n-columns"></a><h3>gtk_tree_model_get_n_columns ()</h3>
1657
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_tree_model_get_n_columns (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>);</pre>
1658
+ <p>
1659
+ Returns the number of columns supported by <em class="parameter"><code>tree_model</code></em>.
1660
+ </p>
1661
+ <div class="variablelist"><table border="0" class="variablelist">
1662
+ <colgroup>
1663
+ <col align="left" valign="top">
1664
+ <col>
1665
+ </colgroup>
1666
+ <tbody>
1667
+ <tr>
1668
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
1669
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
1670
+ </td>
1671
+ </tr>
1672
+ <tr>
1673
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1674
+ <td>the number of columns</td>
1675
+ </tr>
1676
+ </tbody>
1677
+ </table></div>
1678
+ </div>
1679
+ <hr>
1680
+ <div class="refsect2">
1681
+ <a name="gtk-tree-model-get-column-type"></a><h3>gtk_tree_model_get_column_type ()</h3>
1682
+ <pre class="programlisting"><span class="returnvalue">GType</span> gtk_tree_model_get_column_type (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
1683
+ <em class="parameter"><code><span class="type">gint</span> index_</code></em>);</pre>
1684
+ <p>
1685
+ Returns the type of the column.
1686
+ </p>
1687
+ <div class="variablelist"><table border="0" class="variablelist">
1688
+ <colgroup>
1689
+ <col align="left" valign="top">
1690
+ <col>
1691
+ </colgroup>
1692
+ <tbody>
1693
+ <tr>
1694
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
1695
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
1696
+ </td>
1697
+ </tr>
1698
+ <tr>
1699
+ <td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
1700
+ <td>the column index</td>
1701
+ </tr>
1702
+ <tr>
1703
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1704
+ <td>the type of the column. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1705
+ </td>
1706
+ </tr>
1707
+ </tbody>
1708
+ </table></div>
1709
+ </div>
1710
+ <hr>
1711
+ <div class="refsect2">
1712
+ <a name="gtk-tree-model-get-iter"></a><h3>gtk_tree_model_get_iter ()</h3>
1713
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_tree_model_get_iter (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
1714
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
1715
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
1716
+ <p>
1717
+ Sets <em class="parameter"><code>iter</code></em> to a valid iterator pointing to <em class="parameter"><code>path</code></em>. If <em class="parameter"><code>path</code></em> does
1718
+ not exist, <em class="parameter"><code>iter</code></em> is set to an invalid iterator and <code class="literal">FALSE</code> is returned.
1719
+ </p>
1720
+ <div class="variablelist"><table border="0" class="variablelist">
1721
+ <colgroup>
1722
+ <col align="left" valign="top">
1723
+ <col>
1724
+ </colgroup>
1725
+ <tbody>
1726
+ <tr>
1727
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
1728
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
1729
+ </td>
1730
+ </tr>
1731
+ <tr>
1732
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1733
+ <td>the uninitialized <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1734
+ </td>
1735
+ </tr>
1736
+ <tr>
1737
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1738
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1739
+ </td>
1740
+ </tr>
1741
+ <tr>
1742
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1743
+ <td>
1744
+ <code class="literal">TRUE</code>, if <em class="parameter"><code>iter</code></em> was set</td>
1745
+ </tr>
1746
+ </tbody>
1747
+ </table></div>
1748
+ </div>
1749
+ <hr>
1750
+ <div class="refsect2">
1751
+ <a name="gtk-tree-model-get-iter-from-string"></a><h3>gtk_tree_model_get_iter_from_string ()</h3>
1752
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_tree_model_get_iter_from_string (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
1753
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
1754
+ <em class="parameter"><code>const <span class="type">gchar</span> *path_string</code></em>);</pre>
1755
+ <p>
1756
+ Sets <em class="parameter"><code>iter</code></em> to a valid iterator pointing to <em class="parameter"><code>path_string</code></em>, if it
1757
+ exists. Otherwise, <em class="parameter"><code>iter</code></em> is left invalid and <code class="literal">FALSE</code> is returned.
1758
+ </p>
1759
+ <div class="variablelist"><table border="0" class="variablelist">
1760
+ <colgroup>
1761
+ <col align="left" valign="top">
1762
+ <col>
1763
+ </colgroup>
1764
+ <tbody>
1765
+ <tr>
1766
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
1767
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
1768
+ </td>
1769
+ </tr>
1770
+ <tr>
1771
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1772
+ <td>an uninitialized <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1773
+ </td>
1774
+ </tr>
1775
+ <tr>
1776
+ <td><p><span class="term"><em class="parameter"><code>path_string</code></em> :</span></p></td>
1777
+ <td>a string representation of a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1778
+ </td>
1779
+ </tr>
1780
+ <tr>
1781
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1782
+ <td>
1783
+ <code class="literal">TRUE</code>, if <em class="parameter"><code>iter</code></em> was set</td>
1784
+ </tr>
1785
+ </tbody>
1786
+ </table></div>
1787
+ </div>
1788
+ <hr>
1789
+ <div class="refsect2">
1790
+ <a name="gtk-tree-model-get-iter-first"></a><h3>gtk_tree_model_get_iter_first ()</h3>
1791
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_tree_model_get_iter_first (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
1792
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
1793
+ <p>
1794
+ Initializes <em class="parameter"><code>iter</code></em> with the first iterator in the tree
1795
+ (the one at the path "0") and returns <code class="literal">TRUE</code>. Returns
1796
+ <code class="literal">FALSE</code> if the tree is empty.
1797
+ </p>
1798
+ <div class="variablelist"><table border="0" class="variablelist">
1799
+ <colgroup>
1800
+ <col align="left" valign="top">
1801
+ <col>
1802
+ </colgroup>
1803
+ <tbody>
1804
+ <tr>
1805
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
1806
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
1807
+ </td>
1808
+ </tr>
1809
+ <tr>
1810
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1811
+ <td>the uninitialized <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1812
+ </td>
1813
+ </tr>
1814
+ <tr>
1815
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1816
+ <td>
1817
+ <code class="literal">TRUE</code>, if <em class="parameter"><code>iter</code></em> was set</td>
1818
+ </tr>
1819
+ </tbody>
1820
+ </table></div>
1821
+ </div>
1822
+ <hr>
1823
+ <div class="refsect2">
1824
+ <a name="gtk-tree-model-get-path"></a><h3>gtk_tree_model_get_path ()</h3>
1825
+ <pre class="programlisting"><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="returnvalue">GtkTreePath</span></a> * gtk_tree_model_get_path (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
1826
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
1827
+ <p>
1828
+ Returns a newly-created <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> referenced by <em class="parameter"><code>iter</code></em>.
1829
+ </p>
1830
+ <p>
1831
+ This path should be freed with <a class="link" href="GtkTreeModel.html#gtk-tree-path-free" title="gtk_tree_path_free ()"><code class="function">gtk_tree_path_free()</code></a>.
1832
+ </p>
1833
+ <div class="variablelist"><table border="0" class="variablelist">
1834
+ <colgroup>
1835
+ <col align="left" valign="top">
1836
+ <col>
1837
+ </colgroup>
1838
+ <tbody>
1839
+ <tr>
1840
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
1841
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
1842
+ </td>
1843
+ </tr>
1844
+ <tr>
1845
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1846
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
1847
+ </td>
1848
+ </tr>
1849
+ <tr>
1850
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1851
+ <td>a newly-created <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a>
1852
+ </td>
1853
+ </tr>
1854
+ </tbody>
1855
+ </table></div>
1856
+ </div>
1857
+ <hr>
1858
+ <div class="refsect2">
1859
+ <a name="gtk-tree-model-get-value"></a><h3>gtk_tree_model_get_value ()</h3>
1860
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_model_get_value (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
1861
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
1862
+ <em class="parameter"><code><span class="type">gint</span> column</code></em>,
1863
+ <em class="parameter"><code><span class="type">GValue</span> *value</code></em>);</pre>
1864
+ <p>
1865
+ Initializes and sets <em class="parameter"><code>value</code></em> to that at <em class="parameter"><code>column</code></em>.
1866
+ </p>
1867
+ <p>
1868
+ When done with <em class="parameter"><code>value</code></em>, <code class="function">g_value_unset()</code> needs to be called
1869
+ to free any allocated memory.
1870
+ </p>
1871
+ <div class="variablelist"><table border="0" class="variablelist">
1872
+ <colgroup>
1873
+ <col align="left" valign="top">
1874
+ <col>
1875
+ </colgroup>
1876
+ <tbody>
1877
+ <tr>
1878
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
1879
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
1880
+ </td>
1881
+ </tr>
1882
+ <tr>
1883
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1884
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
1885
+ </td>
1886
+ </tr>
1887
+ <tr>
1888
+ <td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
1889
+ <td>the column to lookup the value at</td>
1890
+ </tr>
1891
+ <tr>
1892
+ <td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
1893
+ <td>an empty <span class="type">GValue</span> to set. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1894
+ </td>
1895
+ </tr>
1896
+ </tbody>
1897
+ </table></div>
1898
+ </div>
1899
+ <hr>
1900
+ <div class="refsect2">
1901
+ <a name="gtk-tree-model-iter-next"></a><h3>gtk_tree_model_iter_next ()</h3>
1902
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_tree_model_iter_next (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
1903
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
1904
+ <p>
1905
+ Sets <em class="parameter"><code>iter</code></em> to point to the node following it at the current level.
1906
+ </p>
1907
+ <p>
1908
+ If there is no next <em class="parameter"><code>iter</code></em>, <code class="literal">FALSE</code> is returned and <em class="parameter"><code>iter</code></em> is set
1909
+ to be invalid.
1910
+ </p>
1911
+ <div class="variablelist"><table border="0" class="variablelist">
1912
+ <colgroup>
1913
+ <col align="left" valign="top">
1914
+ <col>
1915
+ </colgroup>
1916
+ <tbody>
1917
+ <tr>
1918
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
1919
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
1920
+ </td>
1921
+ </tr>
1922
+ <tr>
1923
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1924
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>. <span class="annotation">[<acronym title="Parameter for input. Default is transfer none."><span class="acronym">in</span></acronym>]</span>
1925
+ </td>
1926
+ </tr>
1927
+ <tr>
1928
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1929
+ <td>
1930
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> has been changed to the next node</td>
1931
+ </tr>
1932
+ </tbody>
1933
+ </table></div>
1934
+ </div>
1935
+ <hr>
1936
+ <div class="refsect2">
1937
+ <a name="gtk-tree-model-iter-previous"></a><h3>gtk_tree_model_iter_previous ()</h3>
1938
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_tree_model_iter_previous (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
1939
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
1940
+ <p>
1941
+ Sets <em class="parameter"><code>iter</code></em> to point to the previous node at the current level.
1942
+ </p>
1943
+ <p>
1944
+ If there is no previous <em class="parameter"><code>iter</code></em>, <code class="literal">FALSE</code> is returned and <em class="parameter"><code>iter</code></em> is
1945
+ set to be invalid.
1946
+ </p>
1947
+ <div class="variablelist"><table border="0" class="variablelist">
1948
+ <colgroup>
1949
+ <col align="left" valign="top">
1950
+ <col>
1951
+ </colgroup>
1952
+ <tbody>
1953
+ <tr>
1954
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
1955
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
1956
+ </td>
1957
+ </tr>
1958
+ <tr>
1959
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1960
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>. <span class="annotation">[<acronym title="Parameter for input. Default is transfer none."><span class="acronym">in</span></acronym>]</span>
1961
+ </td>
1962
+ </tr>
1963
+ <tr>
1964
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1965
+ <td>
1966
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> has been changed to the previous node</td>
1967
+ </tr>
1968
+ </tbody>
1969
+ </table></div>
1970
+ <p class="since">Since 3.0</p>
1971
+ </div>
1972
+ <hr>
1973
+ <div class="refsect2">
1974
+ <a name="gtk-tree-model-iter-children"></a><h3>gtk_tree_model_iter_children ()</h3>
1975
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_tree_model_iter_children (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
1976
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
1977
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>);</pre>
1978
+ <p>
1979
+ Sets <em class="parameter"><code>iter</code></em> to point to the first child of <em class="parameter"><code>parent</code></em>.
1980
+ </p>
1981
+ <p>
1982
+ If <em class="parameter"><code>parent</code></em> has no children, <code class="literal">FALSE</code> is returned and <em class="parameter"><code>iter</code></em> is
1983
+ set to be invalid. <em class="parameter"><code>parent</code></em> will remain a valid node after this
1984
+ function has been called.
1985
+ </p>
1986
+ <p>
1987
+ If <em class="parameter"><code>parent</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> returns the first node, equivalent to
1988
+ <code class="literal">gtk_tree_model_get_iter_first (tree_model, iter);</code>
1989
+ </p>
1990
+ <div class="variablelist"><table border="0" class="variablelist">
1991
+ <colgroup>
1992
+ <col align="left" valign="top">
1993
+ <col>
1994
+ </colgroup>
1995
+ <tbody>
1996
+ <tr>
1997
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
1998
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
1999
+ </td>
2000
+ </tr>
2001
+ <tr>
2002
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2003
+ <td>the new <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to be set to the child. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
2004
+ </td>
2005
+ </tr>
2006
+ <tr>
2007
+ <td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
2008
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2009
+ </td>
2010
+ </tr>
2011
+ <tr>
2012
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2013
+ <td>
2014
+ <code class="literal">TRUE</code>, if <em class="parameter"><code>child</code></em> has been set to the first child</td>
2015
+ </tr>
2016
+ </tbody>
2017
+ </table></div>
2018
+ </div>
2019
+ <hr>
2020
+ <div class="refsect2">
2021
+ <a name="gtk-tree-model-iter-has-child"></a><h3>gtk_tree_model_iter_has_child ()</h3>
2022
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_tree_model_iter_has_child (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
2023
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
2024
+ <p>
2025
+ Returns <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> has children, <code class="literal">FALSE</code> otherwise.
2026
+ </p>
2027
+ <div class="variablelist"><table border="0" class="variablelist">
2028
+ <colgroup>
2029
+ <col align="left" valign="top">
2030
+ <col>
2031
+ </colgroup>
2032
+ <tbody>
2033
+ <tr>
2034
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2035
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
2036
+ </td>
2037
+ </tr>
2038
+ <tr>
2039
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2040
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to test for children</td>
2041
+ </tr>
2042
+ <tr>
2043
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2044
+ <td>
2045
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> has children</td>
2046
+ </tr>
2047
+ </tbody>
2048
+ </table></div>
2049
+ </div>
2050
+ <hr>
2051
+ <div class="refsect2">
2052
+ <a name="gtk-tree-model-iter-n-children"></a><h3>gtk_tree_model_iter_n_children ()</h3>
2053
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_tree_model_iter_n_children (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
2054
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
2055
+ <p>
2056
+ Returns the number of children that <em class="parameter"><code>iter</code></em> has.
2057
+ </p>
2058
+ <p>
2059
+ As a special case, if <em class="parameter"><code>iter</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, then the number
2060
+ of toplevel nodes is returned.
2061
+ </p>
2062
+ <div class="variablelist"><table border="0" class="variablelist">
2063
+ <colgroup>
2064
+ <col align="left" valign="top">
2065
+ <col>
2066
+ </colgroup>
2067
+ <tbody>
2068
+ <tr>
2069
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2070
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
2071
+ </td>
2072
+ </tr>
2073
+ <tr>
2074
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2075
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2076
+ </td>
2077
+ </tr>
2078
+ <tr>
2079
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2080
+ <td>the number of children of <em class="parameter"><code>iter</code></em>
2081
+ </td>
2082
+ </tr>
2083
+ </tbody>
2084
+ </table></div>
2085
+ </div>
2086
+ <hr>
2087
+ <div class="refsect2">
2088
+ <a name="gtk-tree-model-iter-nth-child"></a><h3>gtk_tree_model_iter_nth_child ()</h3>
2089
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_tree_model_iter_nth_child (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
2090
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
2091
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *parent</code></em>,
2092
+ <em class="parameter"><code><span class="type">gint</span> n</code></em>);</pre>
2093
+ <p>
2094
+ Sets <em class="parameter"><code>iter</code></em> to be the child of <em class="parameter"><code>parent</code></em>, using the given index.
2095
+ </p>
2096
+ <p>
2097
+ The first index is 0. If <em class="parameter"><code>n</code></em> is too big, or <em class="parameter"><code>parent</code></em> has no children,
2098
+ <em class="parameter"><code>iter</code></em> is set to an invalid iterator and <code class="literal">FALSE</code> is returned. <em class="parameter"><code>parent</code></em>
2099
+ will remain a valid node after this function has been called. As a
2100
+ special case, if <em class="parameter"><code>parent</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, then the <em class="parameter"><code>n</code></em>th root node
2101
+ is set.
2102
+ </p>
2103
+ <div class="variablelist"><table border="0" class="variablelist">
2104
+ <colgroup>
2105
+ <col align="left" valign="top">
2106
+ <col>
2107
+ </colgroup>
2108
+ <tbody>
2109
+ <tr>
2110
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2111
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
2112
+ </td>
2113
+ </tr>
2114
+ <tr>
2115
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2116
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set to the nth child. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
2117
+ </td>
2118
+ </tr>
2119
+ <tr>
2120
+ <td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
2121
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to get the child from, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2122
+ </td>
2123
+ </tr>
2124
+ <tr>
2125
+ <td><p><span class="term"><em class="parameter"><code>n</code></em> :</span></p></td>
2126
+ <td>the index of the desired child</td>
2127
+ </tr>
2128
+ <tr>
2129
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2130
+ <td>
2131
+ <code class="literal">TRUE</code>, if <em class="parameter"><code>parent</code></em> has an <em class="parameter"><code>n</code></em>th child</td>
2132
+ </tr>
2133
+ </tbody>
2134
+ </table></div>
2135
+ </div>
2136
+ <hr>
2137
+ <div class="refsect2">
2138
+ <a name="gtk-tree-model-iter-parent"></a><h3>gtk_tree_model_iter_parent ()</h3>
2139
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_tree_model_iter_parent (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
2140
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
2141
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *child</code></em>);</pre>
2142
+ <p>
2143
+ Sets <em class="parameter"><code>iter</code></em> to be the parent of <em class="parameter"><code>child</code></em>.
2144
+ </p>
2145
+ <p>
2146
+ If <em class="parameter"><code>child</code></em> is at the toplevel, and doesn't have a parent, then
2147
+ <em class="parameter"><code>iter</code></em> is set to an invalid iterator and <code class="literal">FALSE</code> is returned.
2148
+ <em class="parameter"><code>child</code></em> will remain a valid node after this function has been
2149
+ called.
2150
+ </p>
2151
+ <div class="variablelist"><table border="0" class="variablelist">
2152
+ <colgroup>
2153
+ <col align="left" valign="top">
2154
+ <col>
2155
+ </colgroup>
2156
+ <tbody>
2157
+ <tr>
2158
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2159
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
2160
+ </td>
2161
+ </tr>
2162
+ <tr>
2163
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2164
+ <td>the new <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> to set to the parent. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
2165
+ </td>
2166
+ </tr>
2167
+ <tr>
2168
+ <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
2169
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
2170
+ </td>
2171
+ </tr>
2172
+ <tr>
2173
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2174
+ <td>
2175
+ <code class="literal">TRUE</code>, if <em class="parameter"><code>iter</code></em> is set to the parent of <em class="parameter"><code>child</code></em>
2176
+ </td>
2177
+ </tr>
2178
+ </tbody>
2179
+ </table></div>
2180
+ </div>
2181
+ <hr>
2182
+ <div class="refsect2">
2183
+ <a name="gtk-tree-model-get-string-from-iter"></a><h3>gtk_tree_model_get_string_from_iter ()</h3>
2184
+ <pre class="programlisting"><span class="returnvalue">gchar</span> * gtk_tree_model_get_string_from_iter (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
2185
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
2186
+ <p>
2187
+ Generates a string representation of the iter.
2188
+ </p>
2189
+ <p>
2190
+ This string is a ':' separated list of numbers.
2191
+ For example, "4:10:0:3" would be an acceptable
2192
+ return value for this string.
2193
+ </p>
2194
+ <div class="variablelist"><table border="0" class="variablelist">
2195
+ <colgroup>
2196
+ <col align="left" valign="top">
2197
+ <col>
2198
+ </colgroup>
2199
+ <tbody>
2200
+ <tr>
2201
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2202
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
2203
+ </td>
2204
+ </tr>
2205
+ <tr>
2206
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2207
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
2208
+ </td>
2209
+ </tr>
2210
+ <tr>
2211
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2212
+ <td>a newly-allocated string.
2213
+ Must be freed with <code class="function">g_free()</code>.</td>
2214
+ </tr>
2215
+ </tbody>
2216
+ </table></div>
2217
+ <p class="since">Since 2.2</p>
2218
+ </div>
2219
+ <hr>
2220
+ <div class="refsect2">
2221
+ <a name="gtk-tree-model-ref-node"></a><h3>gtk_tree_model_ref_node ()</h3>
2222
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_model_ref_node (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
2223
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
2224
+ <p>
2225
+ Lets the tree ref the node.
2226
+ </p>
2227
+ <p>
2228
+ This is an optional method for models to implement.
2229
+ To be more specific, models may ignore this call as it exists
2230
+ primarily for performance reasons.
2231
+ </p>
2232
+ <p>
2233
+ This function is primarily meant as a way for views to let
2234
+ caching models know when nodes are being displayed (and hence,
2235
+ whether or not to cache that node). Being displayed means a node
2236
+ is in an expanded branch, regardless of whether the node is currently
2237
+ visible in the viewport. For example, a file-system based model
2238
+ would not want to keep the entire file-hierarchy in memory,
2239
+ just the sections that are currently being displayed by
2240
+ every current view.
2241
+ </p>
2242
+ <p>
2243
+ A model should be expected to be able to get an iter independent
2244
+ of its reffed state.
2245
+ </p>
2246
+ <div class="variablelist"><table border="0" class="variablelist">
2247
+ <colgroup>
2248
+ <col align="left" valign="top">
2249
+ <col>
2250
+ </colgroup>
2251
+ <tbody>
2252
+ <tr>
2253
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2254
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
2255
+ </td>
2256
+ </tr>
2257
+ <tr>
2258
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2259
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
2260
+ </td>
2261
+ </tr>
2262
+ </tbody>
2263
+ </table></div>
2264
+ </div>
2265
+ <hr>
2266
+ <div class="refsect2">
2267
+ <a name="gtk-tree-model-unref-node"></a><h3>gtk_tree_model_unref_node ()</h3>
2268
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_model_unref_node (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
2269
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
2270
+ <p>
2271
+ Lets the tree unref the node.
2272
+ </p>
2273
+ <p>
2274
+ This is an optional method for models to implement.
2275
+ To be more specific, models may ignore this call as it exists
2276
+ primarily for performance reasons. For more information on what
2277
+ this means, see <a class="link" href="GtkTreeModel.html#gtk-tree-model-ref-node" title="gtk_tree_model_ref_node ()"><code class="function">gtk_tree_model_ref_node()</code></a>.
2278
+ </p>
2279
+ <p>
2280
+ Please note that nodes that are deleted are not unreffed.
2281
+ </p>
2282
+ <div class="variablelist"><table border="0" class="variablelist">
2283
+ <colgroup>
2284
+ <col align="left" valign="top">
2285
+ <col>
2286
+ </colgroup>
2287
+ <tbody>
2288
+ <tr>
2289
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2290
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
2291
+ </td>
2292
+ </tr>
2293
+ <tr>
2294
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2295
+ <td>the <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>
2296
+ </td>
2297
+ </tr>
2298
+ </tbody>
2299
+ </table></div>
2300
+ </div>
2301
+ <hr>
2302
+ <div class="refsect2">
2303
+ <a name="gtk-tree-model-get"></a><h3>gtk_tree_model_get ()</h3>
2304
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_model_get (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
2305
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
2306
+ <em class="parameter"><code>...</code></em>);</pre>
2307
+ <p>
2308
+ Gets the value of one or more cells in the row referenced by <em class="parameter"><code>iter</code></em>.
2309
+ The variable argument list should contain integer column numbers,
2310
+ each column number followed by a place to store the value being
2311
+ retrieved. The list is terminated by a -1. For example, to get a
2312
+ value from column 0 with type <code class="literal">G_TYPE_STRING</code>, you would
2313
+ write: <code class="literal">gtk_tree_model_get (model, iter, 0, &amp;place_string_here, -1)</code>,
2314
+ where <code class="literal">place_string_here</code> is a <span class="type">gchar*</span>
2315
+ to be filled with the string.
2316
+ </p>
2317
+ <p>
2318
+ Returned values with type <code class="literal">G_TYPE_OBJECT</code> have to be unreferenced,
2319
+ values with type <code class="literal">G_TYPE_STRING</code> or <code class="literal">G_TYPE_BOXED</code> have to be freed.
2320
+ Other values are passed by value.
2321
+ </p>
2322
+ <div class="variablelist"><table border="0" class="variablelist">
2323
+ <colgroup>
2324
+ <col align="left" valign="top">
2325
+ <col>
2326
+ </colgroup>
2327
+ <tbody>
2328
+ <tr>
2329
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2330
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
2331
+ </td>
2332
+ </tr>
2333
+ <tr>
2334
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2335
+ <td>a row in <em class="parameter"><code>tree_model</code></em>
2336
+ </td>
2337
+ </tr>
2338
+ <tr>
2339
+ <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
2340
+ <td>pairs of column number and value return locations,
2341
+ terminated by -1</td>
2342
+ </tr>
2343
+ </tbody>
2344
+ </table></div>
2345
+ </div>
2346
+ <hr>
2347
+ <div class="refsect2">
2348
+ <a name="gtk-tree-model-get-valist"></a><h3>gtk_tree_model_get_valist ()</h3>
2349
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_model_get_valist (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
2350
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
2351
+ <em class="parameter"><code><span class="type">va_list</span> var_args</code></em>);</pre>
2352
+ <p>
2353
+ See <a class="link" href="GtkTreeModel.html#gtk-tree-model-get" title="gtk_tree_model_get ()"><code class="function">gtk_tree_model_get()</code></a>, this version takes a <span class="type">va_list</span>
2354
+ for language bindings to use.
2355
+ </p>
2356
+ <div class="variablelist"><table border="0" class="variablelist">
2357
+ <colgroup>
2358
+ <col align="left" valign="top">
2359
+ <col>
2360
+ </colgroup>
2361
+ <tbody>
2362
+ <tr>
2363
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2364
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
2365
+ </td>
2366
+ </tr>
2367
+ <tr>
2368
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2369
+ <td>a row in <em class="parameter"><code>tree_model</code></em>
2370
+ </td>
2371
+ </tr>
2372
+ <tr>
2373
+ <td><p><span class="term"><em class="parameter"><code>var_args</code></em> :</span></p></td>
2374
+ <td>
2375
+ <span class="type">va_list</span> of column/return location pairs</td>
2376
+ </tr>
2377
+ </tbody>
2378
+ </table></div>
2379
+ </div>
2380
+ <hr>
2381
+ <div class="refsect2">
2382
+ <a name="gtk-tree-model-foreach"></a><h3>gtk_tree_model_foreach ()</h3>
2383
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_model_foreach (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>,
2384
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeModelForeachFunc" title="GtkTreeModelForeachFunc ()"><span class="type">GtkTreeModelForeachFunc</span></a> func</code></em>,
2385
+ <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
2386
+ <p>
2387
+ Calls func on each node in model in a depth-first fashion.
2388
+ </p>
2389
+ <p>
2390
+ If <em class="parameter"><code>func</code></em> returns <code class="literal">TRUE</code>, then the tree ceases to be walked,
2391
+ and <a class="link" href="GtkTreeModel.html#gtk-tree-model-foreach" title="gtk_tree_model_foreach ()"><code class="function">gtk_tree_model_foreach()</code></a> returns.
2392
+ </p>
2393
+ <div class="variablelist"><table border="0" class="variablelist">
2394
+ <colgroup>
2395
+ <col align="left" valign="top">
2396
+ <col>
2397
+ </colgroup>
2398
+ <tbody>
2399
+ <tr>
2400
+ <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
2401
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
2402
+ </td>
2403
+ </tr>
2404
+ <tr>
2405
+ <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
2406
+ <td>a function to be called on each row. <span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span>
2407
+ </td>
2408
+ </tr>
2409
+ <tr>
2410
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2411
+ <td>user data to passed to <em class="parameter"><code>func</code></em>
2412
+ </td>
2413
+ </tr>
2414
+ </tbody>
2415
+ </table></div>
2416
+ </div>
2417
+ <hr>
2418
+ <div class="refsect2">
2419
+ <a name="gtk-tree-model-row-changed"></a><h3>gtk_tree_model_row_changed ()</h3>
2420
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_model_row_changed (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
2421
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
2422
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
2423
+ <p>
2424
+ Emits the <a class="link" href="GtkTreeModel.html#GtkTreeModel-row-changed" title='The "row-changed" signal'><span class="type">"row-changed"</span></a> signal on <em class="parameter"><code>tree_model</code></em>.
2425
+ </p>
2426
+ <div class="variablelist"><table border="0" class="variablelist">
2427
+ <colgroup>
2428
+ <col align="left" valign="top">
2429
+ <col>
2430
+ </colgroup>
2431
+ <tbody>
2432
+ <tr>
2433
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2434
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
2435
+ </td>
2436
+ </tr>
2437
+ <tr>
2438
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2439
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> pointing to the changed row</td>
2440
+ </tr>
2441
+ <tr>
2442
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2443
+ <td>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the changed row</td>
2444
+ </tr>
2445
+ </tbody>
2446
+ </table></div>
2447
+ </div>
2448
+ <hr>
2449
+ <div class="refsect2">
2450
+ <a name="gtk-tree-model-row-inserted"></a><h3>gtk_tree_model_row_inserted ()</h3>
2451
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_model_row_inserted (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
2452
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
2453
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
2454
+ <p>
2455
+ Emits the <a class="link" href="GtkTreeModel.html#GtkTreeModel-row-inserted" title='The "row-inserted" signal'><span class="type">"row-inserted"</span></a> signal on <em class="parameter"><code>tree_model</code></em>.
2456
+ </p>
2457
+ <div class="variablelist"><table border="0" class="variablelist">
2458
+ <colgroup>
2459
+ <col align="left" valign="top">
2460
+ <col>
2461
+ </colgroup>
2462
+ <tbody>
2463
+ <tr>
2464
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2465
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
2466
+ </td>
2467
+ </tr>
2468
+ <tr>
2469
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2470
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> pointing to the inserted row</td>
2471
+ </tr>
2472
+ <tr>
2473
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2474
+ <td>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the inserted row</td>
2475
+ </tr>
2476
+ </tbody>
2477
+ </table></div>
2478
+ </div>
2479
+ <hr>
2480
+ <div class="refsect2">
2481
+ <a name="gtk-tree-model-row-has-child-toggled"></a><h3>gtk_tree_model_row_has_child_toggled ()</h3>
2482
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_model_row_has_child_toggled
2483
+ (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
2484
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
2485
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
2486
+ <p>
2487
+ Emits the <a class="link" href="GtkTreeModel.html#GtkTreeModel-row-has-child-toggled" title='The "row-has-child-toggled" signal'><span class="type">"row-has-child-toggled"</span></a> signal on
2488
+ <em class="parameter"><code>tree_model</code></em>. This should be called by models after the child
2489
+ state of a node changes.
2490
+ </p>
2491
+ <div class="variablelist"><table border="0" class="variablelist">
2492
+ <colgroup>
2493
+ <col align="left" valign="top">
2494
+ <col>
2495
+ </colgroup>
2496
+ <tbody>
2497
+ <tr>
2498
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2499
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
2500
+ </td>
2501
+ </tr>
2502
+ <tr>
2503
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2504
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> pointing to the changed row</td>
2505
+ </tr>
2506
+ <tr>
2507
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2508
+ <td>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the changed row</td>
2509
+ </tr>
2510
+ </tbody>
2511
+ </table></div>
2512
+ </div>
2513
+ <hr>
2514
+ <div class="refsect2">
2515
+ <a name="gtk-tree-model-row-deleted"></a><h3>gtk_tree_model_row_deleted ()</h3>
2516
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_model_row_deleted (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
2517
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>);</pre>
2518
+ <p>
2519
+ Emits the <a class="link" href="GtkTreeModel.html#GtkTreeModel-row-deleted" title='The "row-deleted" signal'><span class="type">"row-deleted"</span></a> signal on <em class="parameter"><code>tree_model</code></em>.
2520
+ </p>
2521
+ <p>
2522
+ This should be called by models after a row has been removed.
2523
+ The location pointed to by <em class="parameter"><code>path</code></em> should be the location that
2524
+ the row previously was at. It may not be a valid location anymore.
2525
+ </p>
2526
+ <p>
2527
+ Nodes that are deleted are not unreffed, this means that any
2528
+ outstanding references on the deleted node should not be released.
2529
+ </p>
2530
+ <div class="variablelist"><table border="0" class="variablelist">
2531
+ <colgroup>
2532
+ <col align="left" valign="top">
2533
+ <col>
2534
+ </colgroup>
2535
+ <tbody>
2536
+ <tr>
2537
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2538
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
2539
+ </td>
2540
+ </tr>
2541
+ <tr>
2542
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2543
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> pointing to the previous location of
2544
+ the deleted row</td>
2545
+ </tr>
2546
+ </tbody>
2547
+ </table></div>
2548
+ </div>
2549
+ <hr>
2550
+ <div class="refsect2">
2551
+ <a name="gtk-tree-model-rows-reordered"></a><h3>gtk_tree_model_rows_reordered ()</h3>
2552
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_tree_model_rows_reordered (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model</code></em>,
2553
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path</code></em>,
2554
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>,
2555
+ <em class="parameter"><code><span class="type">gint</span> *new_order</code></em>);</pre>
2556
+ <p>
2557
+ Emits the <a class="link" href="GtkTreeModel.html#GtkTreeModel-rows-reordered" title='The "rows-reordered" signal'><span class="type">"rows-reordered"</span></a> signal on <em class="parameter"><code>tree_model</code></em>.
2558
+ </p>
2559
+ <p>
2560
+ This should be called by models when their rows have been
2561
+ reordered.
2562
+ </p>
2563
+ <div class="variablelist"><table border="0" class="variablelist">
2564
+ <colgroup>
2565
+ <col align="left" valign="top">
2566
+ <col>
2567
+ </colgroup>
2568
+ <tbody>
2569
+ <tr>
2570
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2571
+ <td>a <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
2572
+ </td>
2573
+ </tr>
2574
+ <tr>
2575
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2576
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> pointing to the tree node whose children
2577
+ have been reordered</td>
2578
+ </tr>
2579
+ <tr>
2580
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2581
+ <td>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the node whose children
2582
+ have been reordered, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if the depth of <em class="parameter"><code>path</code></em> is 0</td>
2583
+ </tr>
2584
+ <tr>
2585
+ <td><p><span class="term"><em class="parameter"><code>new_order</code></em> :</span></p></td>
2586
+ <td>an array of integers mapping the current position of
2587
+ each child to its old position before the re-ordering,
2588
+ i.e. <em class="parameter"><code>new_order</code></em><code class="literal">[newpos] = oldpos</code>
2589
+ </td>
2590
+ </tr>
2591
+ </tbody>
2592
+ </table></div>
2593
+ </div>
2594
+ </div>
2595
+ <div class="refsect1">
2596
+ <a name="GtkTreeModel.signal-details"></a><h2>Signal Details</h2>
2597
+ <div class="refsect2">
2598
+ <a name="GtkTreeModel-row-changed"></a><h3>The <code class="literal">"row-changed"</code> signal</h3>
2599
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model,
2600
+ <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
2601
+ <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter,
2602
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
2603
+ <p>
2604
+ This signal is emitted when a row in the model has changed.
2605
+ </p>
2606
+ <div class="variablelist"><table border="0" class="variablelist">
2607
+ <colgroup>
2608
+ <col align="left" valign="top">
2609
+ <col>
2610
+ </colgroup>
2611
+ <tbody>
2612
+ <tr>
2613
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2614
+ <td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted</td>
2615
+ </tr>
2616
+ <tr>
2617
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2618
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> identifying the changed row</td>
2619
+ </tr>
2620
+ <tr>
2621
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2622
+ <td>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the changed row</td>
2623
+ </tr>
2624
+ <tr>
2625
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2626
+ <td>user data set when the signal handler was connected.</td>
2627
+ </tr>
2628
+ </tbody>
2629
+ </table></div>
2630
+ </div>
2631
+ <hr>
2632
+ <div class="refsect2">
2633
+ <a name="GtkTreeModel-row-deleted"></a><h3>The <code class="literal">"row-deleted"</code> signal</h3>
2634
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model,
2635
+ <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
2636
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
2637
+ <p>
2638
+ This signal is emitted when a row has been deleted.
2639
+ </p>
2640
+ <p>
2641
+ Note that no iterator is passed to the signal handler,
2642
+ since the row is already deleted.
2643
+ </p>
2644
+ <p>
2645
+ This should be called by models after a row has been removed.
2646
+ The location pointed to by <em class="parameter"><code>path</code></em> should be the location that
2647
+ the row previously was at. It may not be a valid location anymore.
2648
+ </p>
2649
+ <div class="variablelist"><table border="0" class="variablelist">
2650
+ <colgroup>
2651
+ <col align="left" valign="top">
2652
+ <col>
2653
+ </colgroup>
2654
+ <tbody>
2655
+ <tr>
2656
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2657
+ <td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted</td>
2658
+ </tr>
2659
+ <tr>
2660
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2661
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> identifying the row</td>
2662
+ </tr>
2663
+ <tr>
2664
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2665
+ <td>user data set when the signal handler was connected.</td>
2666
+ </tr>
2667
+ </tbody>
2668
+ </table></div>
2669
+ </div>
2670
+ <hr>
2671
+ <div class="refsect2">
2672
+ <a name="GtkTreeModel-row-has-child-toggled"></a><h3>The <code class="literal">"row-has-child-toggled"</code> signal</h3>
2673
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model,
2674
+ <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
2675
+ <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter,
2676
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
2677
+ <p>
2678
+ This signal is emitted when a row has gotten the first child
2679
+ row or lost its last child row.
2680
+ </p>
2681
+ <div class="variablelist"><table border="0" class="variablelist">
2682
+ <colgroup>
2683
+ <col align="left" valign="top">
2684
+ <col>
2685
+ </colgroup>
2686
+ <tbody>
2687
+ <tr>
2688
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2689
+ <td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted</td>
2690
+ </tr>
2691
+ <tr>
2692
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2693
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> identifying the row</td>
2694
+ </tr>
2695
+ <tr>
2696
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2697
+ <td>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the row</td>
2698
+ </tr>
2699
+ <tr>
2700
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2701
+ <td>user data set when the signal handler was connected.</td>
2702
+ </tr>
2703
+ </tbody>
2704
+ </table></div>
2705
+ </div>
2706
+ <hr>
2707
+ <div class="refsect2">
2708
+ <a name="GtkTreeModel-row-inserted"></a><h3>The <code class="literal">"row-inserted"</code> signal</h3>
2709
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model,
2710
+ <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
2711
+ <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter,
2712
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
2713
+ <p>
2714
+ This signal is emitted when a new row has been inserted in
2715
+ the model.
2716
+ </p>
2717
+ <p>
2718
+ Note that the row may still be empty at this point, since
2719
+ it is a common pattern to first insert an empty row, and
2720
+ then fill it with the desired values.
2721
+ </p>
2722
+ <div class="variablelist"><table border="0" class="variablelist">
2723
+ <colgroup>
2724
+ <col align="left" valign="top">
2725
+ <col>
2726
+ </colgroup>
2727
+ <tbody>
2728
+ <tr>
2729
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2730
+ <td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted</td>
2731
+ </tr>
2732
+ <tr>
2733
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2734
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> identifying the new row</td>
2735
+ </tr>
2736
+ <tr>
2737
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2738
+ <td>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the new row</td>
2739
+ </tr>
2740
+ <tr>
2741
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2742
+ <td>user data set when the signal handler was connected.</td>
2743
+ </tr>
2744
+ </tbody>
2745
+ </table></div>
2746
+ </div>
2747
+ <hr>
2748
+ <div class="refsect2">
2749
+ <a name="GtkTreeModel-rows-reordered"></a><h3>The <code class="literal">"rows-reordered"</code> signal</h3>
2750
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *tree_model,
2751
+ <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> *path,
2752
+ <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter,
2753
+ <span class="type">gpointer</span> new_order,
2754
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run First</code></pre>
2755
+ <p>
2756
+ This signal is emitted when the children of a node in the
2757
+ <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> have been reordered.
2758
+ </p>
2759
+ <p>
2760
+ Note that this signal is <span class="emphasis"><em>not</em></span> emitted
2761
+ when rows are reordered by DND, since this is implemented
2762
+ by removing and then reinserting the row.
2763
+ </p>
2764
+ <div class="variablelist"><table border="0" class="variablelist">
2765
+ <colgroup>
2766
+ <col align="left" valign="top">
2767
+ <col>
2768
+ </colgroup>
2769
+ <tbody>
2770
+ <tr>
2771
+ <td><p><span class="term"><em class="parameter"><code>tree_model</code></em> :</span></p></td>
2772
+ <td>the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> on which the signal is emitted</td>
2773
+ </tr>
2774
+ <tr>
2775
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
2776
+ <td>a <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> identifying the tree node whose children
2777
+ have been reordered</td>
2778
+ </tr>
2779
+ <tr>
2780
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2781
+ <td>a valid <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> pointing to the node whose</td>
2782
+ </tr>
2783
+ <tr>
2784
+ <td><p><span class="term"><em class="parameter"><code>new_order</code></em> :</span></p></td>
2785
+ <td>an array of integers mapping the current position
2786
+ of each child to its old position before the re-ordering,
2787
+ i.e. <em class="parameter"><code>new_order</code></em><code class="literal">[newpos] = oldpos</code>
2788
+ </td>
2789
+ </tr>
2790
+ <tr>
2791
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2792
+ <td>user data set when the signal handler was connected.</td>
2793
+ </tr>
2794
+ </tbody>
2795
+ </table></div>
2796
+ </div>
2797
+ </div>
2798
+ <div class="refsect1">
2799
+ <a name="GtkTreeModel.see-also"></a><h2>See Also</h2>
2800
+ <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a>, <a class="link" href="GtkTreeStore.html" title="GtkTreeStore"><span class="type">GtkTreeStore</span></a>, <a class="link" href="GtkListStore.html" title="GtkListStore"><span class="type">GtkListStore</span></a>,
2801
+ GtkTreeDnd,
2802
+ <a class="link" href="GtkTreeSortable.html" title="GtkTreeSortable"><span class="type">GtkTreeSortable</span></a>
2803
+ </div>
2804
+ <div class="footnotes">
2805
+ <br><hr style="width:100; text-align:left;margin-left: 0">
2806
+ <div id="ftn.idm140520365686224" class="footnote"><p><a href="#idm140520365686224" class="para"><sup class="para">[4] </sup></a>Here, <abbr class="abbrev">iter</abbr> is short
2807
+ for <span class="quote">“<span class="quote">iterator</span>”</span></p></div>
2808
+ </div>
2809
+ </div>
2810
+ <div class="footer">
2811
+ <hr>
2812
+ Generated by GTK-Doc V1.18.1</div>
2813
+ </body>
2814
+ </html>