gtk2 2.2.4-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1667) hide show
  1. checksums.yaml +7 -0
  2. data/README +33 -0
  3. data/Rakefile +62 -0
  4. data/ext/gtk2/depend +14 -0
  5. data/ext/gtk2/extconf.rb +129 -0
  6. data/ext/gtk2/global.h +295 -0
  7. data/ext/gtk2/gtk2.def +29 -0
  8. data/ext/gtk2/init.c +284 -0
  9. data/ext/gtk2/rbgdk.c +505 -0
  10. data/ext/gtk2/rbgdk.h +79 -0
  11. data/ext/gtk2/rbgdkatom.c +124 -0
  12. data/ext/gtk2/rbgdkcairo.c +89 -0
  13. data/ext/gtk2/rbgdkcolor.c +146 -0
  14. data/ext/gtk2/rbgdkcolormap.c +135 -0
  15. data/ext/gtk2/rbgdkconst.c +39 -0
  16. data/ext/gtk2/rbgdkconversions.h +31 -0
  17. data/ext/gtk2/rbgdkcursor.c +102 -0
  18. data/ext/gtk2/rbgdkdevice.c +229 -0
  19. data/ext/gtk2/rbgdkdisplay.c +553 -0
  20. data/ext/gtk2/rbgdkdisplaymanager.c +54 -0
  21. data/ext/gtk2/rbgdkdragcontext.c +291 -0
  22. data/ext/gtk2/rbgdkdraw.c +522 -0
  23. data/ext/gtk2/rbgdkevent.c +1291 -0
  24. data/ext/gtk2/rbgdkgc.c +423 -0
  25. data/ext/gtk2/rbgdkgeometry.c +256 -0
  26. data/ext/gtk2/rbgdkimage.c +152 -0
  27. data/ext/gtk2/rbgdkinput.c +72 -0
  28. data/ext/gtk2/rbgdkkeymap.c +155 -0
  29. data/ext/gtk2/rbgdkkeyval.c +108 -0
  30. data/ext/gtk2/rbgdkpango.c +183 -0
  31. data/ext/gtk2/rbgdkpangorenderer.c +143 -0
  32. data/ext/gtk2/rbgdkpixbuf.c +171 -0
  33. data/ext/gtk2/rbgdkpixmap.c +236 -0
  34. data/ext/gtk2/rbgdkproperty.c +288 -0
  35. data/ext/gtk2/rbgdkrectangle.c +142 -0
  36. data/ext/gtk2/rbgdkregion.c +289 -0
  37. data/ext/gtk2/rbgdkrgb.c +198 -0
  38. data/ext/gtk2/rbgdkscreen.c +422 -0
  39. data/ext/gtk2/rbgdkselection.c +147 -0
  40. data/ext/gtk2/rbgdkthreads.c +77 -0
  41. data/ext/gtk2/rbgdktimecoord.c +135 -0
  42. data/ext/gtk2/rbgdkvisual.c +252 -0
  43. data/ext/gtk2/rbgdkwindow.c +1113 -0
  44. data/ext/gtk2/rbgdkwindowattr.c +208 -0
  45. data/ext/gtk2/rbgdkx11.c +257 -0
  46. data/ext/gtk2/rbgtk.c +594 -0
  47. data/ext/gtk2/rbgtk.h +132 -0
  48. data/ext/gtk2/rbgtkaboutdialog.c +136 -0
  49. data/ext/gtk2/rbgtkaccelerator.c +81 -0
  50. data/ext/gtk2/rbgtkaccelgroup.c +200 -0
  51. data/ext/gtk2/rbgtkaccelgroupentry.c +94 -0
  52. data/ext/gtk2/rbgtkaccelkey.c +122 -0
  53. data/ext/gtk2/rbgtkaccellabel.c +55 -0
  54. data/ext/gtk2/rbgtkaccelmap.c +144 -0
  55. data/ext/gtk2/rbgtkaccessible.c +39 -0
  56. data/ext/gtk2/rbgtkaction.c +223 -0
  57. data/ext/gtk2/rbgtkactiongroup.c +468 -0
  58. data/ext/gtk2/rbgtkadjustment.c +72 -0
  59. data/ext/gtk2/rbgtkalignment.c +75 -0
  60. data/ext/gtk2/rbgtkallocation.c +168 -0
  61. data/ext/gtk2/rbgtkarrow.c +57 -0
  62. data/ext/gtk2/rbgtkaspectframe.c +56 -0
  63. data/ext/gtk2/rbgtkassistant.c +220 -0
  64. data/ext/gtk2/rbgtkbbox.c +53 -0
  65. data/ext/gtk2/rbgtkbin.c +42 -0
  66. data/ext/gtk2/rbgtkbindingset.c +189 -0
  67. data/ext/gtk2/rbgtkborder.c +87 -0
  68. data/ext/gtk2/rbgtkbox.c +138 -0
  69. data/ext/gtk2/rbgtkbuildable.c +127 -0
  70. data/ext/gtk2/rbgtkbuilder.c +170 -0
  71. data/ext/gtk2/rbgtkbutton.c +115 -0
  72. data/ext/gtk2/rbgtkcalendar.c +149 -0
  73. data/ext/gtk2/rbgtkcelleditable.c +57 -0
  74. data/ext/gtk2/rbgtkcelllayout.c +137 -0
  75. data/ext/gtk2/rbgtkcellrenderer.c +131 -0
  76. data/ext/gtk2/rbgtkcellrendereraccel.c +43 -0
  77. data/ext/gtk2/rbgtkcellrenderercombo.c +38 -0
  78. data/ext/gtk2/rbgtkcellrendererpixbuf.c +39 -0
  79. data/ext/gtk2/rbgtkcellrendererprogress.c +38 -0
  80. data/ext/gtk2/rbgtkcellrendererspin.c +39 -0
  81. data/ext/gtk2/rbgtkcellrendererspinner.c +44 -0
  82. data/ext/gtk2/rbgtkcellrenderertext.c +49 -0
  83. data/ext/gtk2/rbgtkcellrenderertoggle.c +39 -0
  84. data/ext/gtk2/rbgtkcellview.c +117 -0
  85. data/ext/gtk2/rbgtkcheckbutton.c +64 -0
  86. data/ext/gtk2/rbgtkcheckmenuitem.c +64 -0
  87. data/ext/gtk2/rbgtkclipboard.c +425 -0
  88. data/ext/gtk2/rbgtkcolorbutton.c +49 -0
  89. data/ext/gtk2/rbgtkcolorsel.c +211 -0
  90. data/ext/gtk2/rbgtkcolorselectiondialog.c +50 -0
  91. data/ext/gtk2/rbgtkcombo.c +119 -0
  92. data/ext/gtk2/rbgtkcombobox.c +151 -0
  93. data/ext/gtk2/rbgtkcomboboxentry.c +56 -0
  94. data/ext/gtk2/rbgtkconst.c +179 -0
  95. data/ext/gtk2/rbgtkcontainer.c +783 -0
  96. data/ext/gtk2/rbgtkconversions.h +39 -0
  97. data/ext/gtk2/rbgtkcurve.c +111 -0
  98. data/ext/gtk2/rbgtkdialog.c +268 -0
  99. data/ext/gtk2/rbgtkdrag.c +427 -0
  100. data/ext/gtk2/rbgtkdrawingarea.c +42 -0
  101. data/ext/gtk2/rbgtkeditable.c +151 -0
  102. data/ext/gtk2/rbgtkentry.c +113 -0
  103. data/ext/gtk2/rbgtkentrycompletion.c +128 -0
  104. data/ext/gtk2/rbgtkeventbox.c +42 -0
  105. data/ext/gtk2/rbgtkexpander.c +49 -0
  106. data/ext/gtk2/rbgtkfilechooser.c +311 -0
  107. data/ext/gtk2/rbgtkfilechooserbutton.c +57 -0
  108. data/ext/gtk2/rbgtkfilechooserdialog.c +59 -0
  109. data/ext/gtk2/rbgtkfilechooserwidget.c +52 -0
  110. data/ext/gtk2/rbgtkfilefilter.c +131 -0
  111. data/ext/gtk2/rbgtkfilesel.c +150 -0
  112. data/ext/gtk2/rbgtkfilesystemerror.c +49 -0
  113. data/ext/gtk2/rbgtkfixed.c +78 -0
  114. data/ext/gtk2/rbgtkfontbutton.c +49 -0
  115. data/ext/gtk2/rbgtkfontselection.c +41 -0
  116. data/ext/gtk2/rbgtkfontselectiondialog.c +106 -0
  117. data/ext/gtk2/rbgtkframe.c +69 -0
  118. data/ext/gtk2/rbgtkgamma.c +56 -0
  119. data/ext/gtk2/rbgtkhandlebox.c +45 -0
  120. data/ext/gtk2/rbgtkhbbox.c +42 -0
  121. data/ext/gtk2/rbgtkhbox.c +47 -0
  122. data/ext/gtk2/rbgtkhpaned.c +42 -0
  123. data/ext/gtk2/rbgtkhruler.c +42 -0
  124. data/ext/gtk2/rbgtkhscale.c +54 -0
  125. data/ext/gtk2/rbgtkhscrollbar.c +47 -0
  126. data/ext/gtk2/rbgtkhseparator.c +41 -0
  127. data/ext/gtk2/rbgtkiconfactory.c +86 -0
  128. data/ext/gtk2/rbgtkiconinfo.c +117 -0
  129. data/ext/gtk2/rbgtkiconset.c +91 -0
  130. data/ext/gtk2/rbgtkiconsize.c +93 -0
  131. data/ext/gtk2/rbgtkiconsource.c +171 -0
  132. data/ext/gtk2/rbgtkicontheme.c +273 -0
  133. data/ext/gtk2/rbgtkiconview.c +270 -0
  134. data/ext/gtk2/rbgtkimage.c +128 -0
  135. data/ext/gtk2/rbgtkimagemenuitem.c +61 -0
  136. data/ext/gtk2/rbgtkimcontext.c +135 -0
  137. data/ext/gtk2/rbgtkimcontextsimple.c +69 -0
  138. data/ext/gtk2/rbgtkimmulticontext.c +48 -0
  139. data/ext/gtk2/rbgtkinfobar.c +127 -0
  140. data/ext/gtk2/rbgtkinputdialog.c +41 -0
  141. data/ext/gtk2/rbgtkinvisible.c +49 -0
  142. data/ext/gtk2/rbgtkitem.c +60 -0
  143. data/ext/gtk2/rbgtkitemfactory.c +299 -0
  144. data/ext/gtk2/rbgtklabel.c +139 -0
  145. data/ext/gtk2/rbgtklayout.c +94 -0
  146. data/ext/gtk2/rbgtklinkbutton.c +65 -0
  147. data/ext/gtk2/rbgtkliststore.c +411 -0
  148. data/ext/gtk2/rbgtkmacros.h +39 -0
  149. data/ext/gtk2/rbgtkmenu.c +171 -0
  150. data/ext/gtk2/rbgtkmenubar.c +45 -0
  151. data/ext/gtk2/rbgtkmenuitem.c +111 -0
  152. data/ext/gtk2/rbgtkmenushell.c +108 -0
  153. data/ext/gtk2/rbgtkmenutoolbutton.c +74 -0
  154. data/ext/gtk2/rbgtkmessagedialog.c +89 -0
  155. data/ext/gtk2/rbgtkmisc.c +70 -0
  156. data/ext/gtk2/rbgtknotebook.c +412 -0
  157. data/ext/gtk2/rbgtkobject.c +144 -0
  158. data/ext/gtk2/rbgtkoptionmenu.c +72 -0
  159. data/ext/gtk2/rbgtkpagesetup.c +201 -0
  160. data/ext/gtk2/rbgtkpagesetupunixdialog.c +87 -0
  161. data/ext/gtk2/rbgtkpaned.c +114 -0
  162. data/ext/gtk2/rbgtkpapersize.c +186 -0
  163. data/ext/gtk2/rbgtkplug.c +91 -0
  164. data/ext/gtk2/rbgtkprintcontext.c +127 -0
  165. data/ext/gtk2/rbgtkprinter.c +154 -0
  166. data/ext/gtk2/rbgtkprintjob.c +149 -0
  167. data/ext/gtk2/rbgtkprintoperation.c +156 -0
  168. data/ext/gtk2/rbgtkprintoperationpreview.c +61 -0
  169. data/ext/gtk2/rbgtkprintsettings.c +842 -0
  170. data/ext/gtk2/rbgtkprintunixdialog.c +86 -0
  171. data/ext/gtk2/rbgtkprogress.c +31 -0
  172. data/ext/gtk2/rbgtkprogressbar.c +71 -0
  173. data/ext/gtk2/rbgtkradioaction.c +120 -0
  174. data/ext/gtk2/rbgtkradiobutton.c +90 -0
  175. data/ext/gtk2/rbgtkradiomenuitem.c +148 -0
  176. data/ext/gtk2/rbgtkradiotoolbutton.c +132 -0
  177. data/ext/gtk2/rbgtkrange.c +71 -0
  178. data/ext/gtk2/rbgtkrc.c +217 -0
  179. data/ext/gtk2/rbgtkrcstyle.c +182 -0
  180. data/ext/gtk2/rbgtkrecentaction.c +60 -0
  181. data/ext/gtk2/rbgtkrecentchooser.c +216 -0
  182. data/ext/gtk2/rbgtkrecentchooserdialog.c +62 -0
  183. data/ext/gtk2/rbgtkrecentchoosermenu.c +50 -0
  184. data/ext/gtk2/rbgtkrecentchooserwidget.c +48 -0
  185. data/ext/gtk2/rbgtkrecentdata.c +144 -0
  186. data/ext/gtk2/rbgtkrecentfilter.c +170 -0
  187. data/ext/gtk2/rbgtkrecentfilterinfo.c +181 -0
  188. data/ext/gtk2/rbgtkrecentinfo.c +216 -0
  189. data/ext/gtk2/rbgtkrecentmanager.c +149 -0
  190. data/ext/gtk2/rbgtkruler.c +71 -0
  191. data/ext/gtk2/rbgtkscale.c +50 -0
  192. data/ext/gtk2/rbgtkscalebutton.c +75 -0
  193. data/ext/gtk2/rbgtkscrollbar.c +31 -0
  194. data/ext/gtk2/rbgtkscrolledwindow.c +124 -0
  195. data/ext/gtk2/rbgtkselection.c +171 -0
  196. data/ext/gtk2/rbgtkselectiondata.c +284 -0
  197. data/ext/gtk2/rbgtkseparator.c +31 -0
  198. data/ext/gtk2/rbgtkseparatormenuitem.c +39 -0
  199. data/ext/gtk2/rbgtkseparatortoolitem.c +38 -0
  200. data/ext/gtk2/rbgtksettings.c +229 -0
  201. data/ext/gtk2/rbgtksizegroup.c +68 -0
  202. data/ext/gtk2/rbgtksocket.c +80 -0
  203. data/ext/gtk2/rbgtkspinbutton.c +137 -0
  204. data/ext/gtk2/rbgtkspinner.c +61 -0
  205. data/ext/gtk2/rbgtkstatusbar.c +77 -0
  206. data/ext/gtk2/rbgtkstatusicon.c +90 -0
  207. data/ext/gtk2/rbgtkstock.c +230 -0
  208. data/ext/gtk2/rbgtkstyle.c +642 -0
  209. data/ext/gtk2/rbgtktable.c +177 -0
  210. data/ext/gtk2/rbgtktargetlist.c +125 -0
  211. data/ext/gtk2/rbgtktearoffmenuitem.c +41 -0
  212. data/ext/gtk2/rbgtktextappearance.c +172 -0
  213. data/ext/gtk2/rbgtktextattributes.c +203 -0
  214. data/ext/gtk2/rbgtktextbuffer.c +886 -0
  215. data/ext/gtk2/rbgtktextchild.c +55 -0
  216. data/ext/gtk2/rbgtktextiter.c +506 -0
  217. data/ext/gtk2/rbgtktextmark.c +76 -0
  218. data/ext/gtk2/rbgtktexttag.c +71 -0
  219. data/ext/gtk2/rbgtktexttagtable.c +97 -0
  220. data/ext/gtk2/rbgtktextview.c +326 -0
  221. data/ext/gtk2/rbgtktoggleaction.c +59 -0
  222. data/ext/gtk2/rbgtktogglebutton.c +88 -0
  223. data/ext/gtk2/rbgtktoggletoolbutton.c +54 -0
  224. data/ext/gtk2/rbgtktoolbar.c +315 -0
  225. data/ext/gtk2/rbgtktoolbutton.c +53 -0
  226. data/ext/gtk2/rbgtktoolitem.c +157 -0
  227. data/ext/gtk2/rbgtktooltip.c +82 -0
  228. data/ext/gtk2/rbgtktooltips.c +104 -0
  229. data/ext/gtk2/rbgtktreedragdest.c +28 -0
  230. data/ext/gtk2/rbgtktreedragsource.c +28 -0
  231. data/ext/gtk2/rbgtktreeiter.c +251 -0
  232. data/ext/gtk2/rbgtktreemodel.c +282 -0
  233. data/ext/gtk2/rbgtktreemodelfilter.c +198 -0
  234. data/ext/gtk2/rbgtktreemodelsort.c +112 -0
  235. data/ext/gtk2/rbgtktreepath.c +191 -0
  236. data/ext/gtk2/rbgtktreerowreference.c +171 -0
  237. data/ext/gtk2/rbgtktreeselection.c +213 -0
  238. data/ext/gtk2/rbgtktreesortable.c +123 -0
  239. data/ext/gtk2/rbgtktreestore.c +362 -0
  240. data/ext/gtk2/rbgtktreeview.c +746 -0
  241. data/ext/gtk2/rbgtktreeviewcolumn.c +289 -0
  242. data/ext/gtk2/rbgtkuimanager.c +189 -0
  243. data/ext/gtk2/rbgtkvbbox.c +42 -0
  244. data/ext/gtk2/rbgtkvbox.c +47 -0
  245. data/ext/gtk2/rbgtkviewport.c +44 -0
  246. data/ext/gtk2/rbgtkvolumebutton.c +47 -0
  247. data/ext/gtk2/rbgtkvpaned.c +42 -0
  248. data/ext/gtk2/rbgtkvruler.c +41 -0
  249. data/ext/gtk2/rbgtkvscale.c +54 -0
  250. data/ext/gtk2/rbgtkvscrollbar.c +47 -0
  251. data/ext/gtk2/rbgtkvseparator.c +41 -0
  252. data/ext/gtk2/rbgtkwidget.c +1223 -0
  253. data/ext/gtk2/rbgtkwindow.c +588 -0
  254. data/ext/gtk2/rbgtkwindowgroup.c +56 -0
  255. data/extconf.rb +49 -0
  256. data/lib/2.0/gtk2.so +0 -0
  257. data/lib/2.1/gtk2.so +0 -0
  258. data/lib/2.2/gtk2.so +0 -0
  259. data/lib/gtk2.rb +13 -0
  260. data/lib/gtk2/base.rb +105 -0
  261. data/sample/gtk-demo/README +7 -0
  262. data/sample/gtk-demo/alphatest.png +0 -0
  263. data/sample/gtk-demo/apple-red.png +0 -0
  264. data/sample/gtk-demo/appwindow.rb +233 -0
  265. data/sample/gtk-demo/background.jpg +0 -0
  266. data/sample/gtk-demo/builder.rb +51 -0
  267. data/sample/gtk-demo/button_box.rb +84 -0
  268. data/sample/gtk-demo/cairo-arc-negative.rb +41 -0
  269. data/sample/gtk-demo/cairo-arc.rb +41 -0
  270. data/sample/gtk-demo/cairo-clip-image.rb +51 -0
  271. data/sample/gtk-demo/cairo-clip-rectangle.rb +35 -0
  272. data/sample/gtk-demo/cairo-clip.rb +35 -0
  273. data/sample/gtk-demo/cairo-curve-rectangle.rb +76 -0
  274. data/sample/gtk-demo/cairo-curve-to.rb +43 -0
  275. data/sample/gtk-demo/cairo-dash.rb +39 -0
  276. data/sample/gtk-demo/cairo-fill-and-stroke.rb +32 -0
  277. data/sample/gtk-demo/cairo-fill-and-stroke2.rb +38 -0
  278. data/sample/gtk-demo/cairo-gradient.rb +35 -0
  279. data/sample/gtk-demo/cairo-image-pattern.rb +39 -0
  280. data/sample/gtk-demo/cairo-image.rb +49 -0
  281. data/sample/gtk-demo/cairo-line-cap.rb +53 -0
  282. data/sample/gtk-demo/cairo-line-join.rb +41 -0
  283. data/sample/gtk-demo/cairo-long-lines.rb +41 -0
  284. data/sample/gtk-demo/cairo-operator.rb +83 -0
  285. data/sample/gtk-demo/cairo-path.rb +28 -0
  286. data/sample/gtk-demo/cairo-pattern-fill.rb +88 -0
  287. data/sample/gtk-demo/cairo-self-intersect.rb +32 -0
  288. data/sample/gtk-demo/cairo-text-align-center.rb +45 -0
  289. data/sample/gtk-demo/cairo-text-extents.rb +46 -0
  290. data/sample/gtk-demo/cairo-text.rb +43 -0
  291. data/sample/gtk-demo/changedisplay.rb +408 -0
  292. data/sample/gtk-demo/clipboard.rb +72 -0
  293. data/sample/gtk-demo/colorsel.rb +84 -0
  294. data/sample/gtk-demo/common.rb +93 -0
  295. data/sample/gtk-demo/demo.ui +258 -0
  296. data/sample/gtk-demo/dialog.rb +137 -0
  297. data/sample/gtk-demo/drawingarea.rb +226 -0
  298. data/sample/gtk-demo/editable_cells.rb +172 -0
  299. data/sample/gtk-demo/entry_completion.rb +63 -0
  300. data/sample/gtk-demo/expander.rb +40 -0
  301. data/sample/gtk-demo/floppybuddy.gif +0 -0
  302. data/sample/gtk-demo/gnome-applets.png +0 -0
  303. data/sample/gtk-demo/gnome-calendar.png +0 -0
  304. data/sample/gtk-demo/gnome-foot.png +0 -0
  305. data/sample/gtk-demo/gnome-fs-directory.png +0 -0
  306. data/sample/gtk-demo/gnome-fs-regular.png +0 -0
  307. data/sample/gtk-demo/gnome-gimp.png +0 -0
  308. data/sample/gtk-demo/gnome-gmush.png +0 -0
  309. data/sample/gtk-demo/gnome-gsame.png +0 -0
  310. data/sample/gtk-demo/gnu-keys.png +0 -0
  311. data/sample/gtk-demo/gtk-logo-rgb.gif +0 -0
  312. data/sample/gtk-demo/hypertext.rb +211 -0
  313. data/sample/gtk-demo/iconview.rb +109 -0
  314. data/sample/gtk-demo/images.rb +197 -0
  315. data/sample/gtk-demo/item_factory.rb +94 -0
  316. data/sample/gtk-demo/list_store.rb +138 -0
  317. data/sample/gtk-demo/main.rb +386 -0
  318. data/sample/gtk-demo/menus.rb +172 -0
  319. data/sample/gtk-demo/panes.rb +156 -0
  320. data/sample/gtk-demo/pixbufs.rb +176 -0
  321. data/sample/gtk-demo/printing.rb +128 -0
  322. data/sample/gtk-demo/rotated_text.rb +84 -0
  323. data/sample/gtk-demo/ruby-gnome2-logo.png +0 -0
  324. data/sample/gtk-demo/sizegroup.rb +118 -0
  325. data/sample/gtk-demo/stock_browser.rb +235 -0
  326. data/sample/gtk-demo/textview.rb +436 -0
  327. data/sample/gtk-demo/tree_store.rb +270 -0
  328. data/sample/misc/aboutdialog.rb +42 -0
  329. data/sample/misc/aboutdialog2.rb +42 -0
  330. data/sample/misc/alpha-demo.rb +70 -0
  331. data/sample/misc/assistant.rb +347 -0
  332. data/sample/misc/bindings.rb +107 -0
  333. data/sample/misc/button.rb +69 -0
  334. data/sample/misc/button2.rb +28 -0
  335. data/sample/misc/buttonbox.rb +93 -0
  336. data/sample/misc/cairo-pong.rb +215 -0
  337. data/sample/misc/calendar.rb +62 -0
  338. data/sample/misc/checkbutton.rb +46 -0
  339. data/sample/misc/colorselection.rb +25 -0
  340. data/sample/misc/combo_check.rb +71 -0
  341. data/sample/misc/combobox.rb +86 -0
  342. data/sample/misc/composited-windows.rb +113 -0
  343. data/sample/misc/cursor.rb +32 -0
  344. data/sample/misc/dialog.rb +44 -0
  345. data/sample/misc/dialog2.rb +39 -0
  346. data/sample/misc/dnd.rb +65 -0
  347. data/sample/misc/dndtreeview.rb +56 -0
  348. data/sample/misc/drag-move.rb +131 -0
  349. data/sample/misc/drawing.rb +90 -0
  350. data/sample/misc/entry.rb +34 -0
  351. data/sample/misc/entrycompletion.rb +39 -0
  352. data/sample/misc/expander.rb +27 -0
  353. data/sample/misc/filechooser.rb +49 -0
  354. data/sample/misc/fileselection.rb +26 -0
  355. data/sample/misc/frame.rb +69 -0
  356. data/sample/misc/gc.rb +59 -0
  357. data/sample/misc/gdkscreen.rb +32 -0
  358. data/sample/misc/gnome-logo-icon.png +0 -0
  359. data/sample/misc/helloworld.rb +35 -0
  360. data/sample/misc/iconview.rb +38 -0
  361. data/sample/misc/image.rb +42 -0
  362. data/sample/misc/infobar.rb +24 -0
  363. data/sample/misc/itemfactory.rb +73 -0
  364. data/sample/misc/itemfactory2.rb +74 -0
  365. data/sample/misc/keyboard_grab.rb +29 -0
  366. data/sample/misc/label.rb +33 -0
  367. data/sample/misc/linkbutton.rb +42 -0
  368. data/sample/misc/listview.rb +92 -0
  369. data/sample/misc/menu.rb +81 -0
  370. data/sample/misc/misc_button.rb +59 -0
  371. data/sample/misc/mouse-gesture.rb +465 -0
  372. data/sample/misc/pangorenderer.rb +66 -0
  373. data/sample/misc/pointer_grab.rb +34 -0
  374. data/sample/misc/print.rb +247 -0
  375. data/sample/misc/properties.rb +85 -0
  376. data/sample/misc/radiobutton.rb +47 -0
  377. data/sample/misc/recentchooserdialog.rb +59 -0
  378. data/sample/misc/rgtk+cairo.rb +44 -0
  379. data/sample/misc/scalebutton.rb +25 -0
  380. data/sample/misc/settings.rb +41 -0
  381. data/sample/misc/statusicon.rb +123 -0
  382. data/sample/misc/stock.rb +36 -0
  383. data/sample/misc/style_property.rb +67 -0
  384. data/sample/misc/style_property.rc +19 -0
  385. data/sample/misc/t-gtkplug.rb +58 -0
  386. data/sample/misc/t-gtksocket.rb +65 -0
  387. data/sample/misc/test.xpm +92 -0
  388. data/sample/misc/textbuffer_serialize.rb +130 -0
  389. data/sample/misc/threads.rb +72 -0
  390. data/sample/misc/to_drawable.rb +42 -0
  391. data/sample/misc/togglebutton.rb +34 -0
  392. data/sample/misc/toolbar.rb +55 -0
  393. data/sample/misc/tooltips.rb +204 -0
  394. data/sample/misc/tree_combo.rb +85 -0
  395. data/sample/misc/tree_progress.rb +69 -0
  396. data/sample/misc/treemodelfilter.rb +55 -0
  397. data/sample/misc/treeview.rb +71 -0
  398. data/sample/misc/uimanager.rb +148 -0
  399. data/sample/misc/uimanager2.rb +91 -0
  400. data/sample/misc/uimanager2.xml +36 -0
  401. data/sample/misc/window.rb +24 -0
  402. data/sample/misc/xbm_cursor.rb +43 -0
  403. data/sample/testgtk/3DRings.xpm +116 -0
  404. data/sample/testgtk/FilesQueue.xpm +98 -0
  405. data/sample/testgtk/Modeller.xpm +117 -0
  406. data/sample/testgtk/README +14 -0
  407. data/sample/testgtk/button.rb +133 -0
  408. data/sample/testgtk/buttonbox.rb +108 -0
  409. data/sample/testgtk/check-n.xpm +21 -0
  410. data/sample/testgtk/check-y.xpm +21 -0
  411. data/sample/testgtk/checkbutton.rb +67 -0
  412. data/sample/testgtk/circles.xbm +46 -0
  413. data/sample/testgtk/colorselect.rb +33 -0
  414. data/sample/testgtk/dialog.rb +47 -0
  415. data/sample/testgtk/entry.rb +73 -0
  416. data/sample/testgtk/filesel.rb +67 -0
  417. data/sample/testgtk/fontselection.rb +56 -0
  418. data/sample/testgtk/gammacurve.rb +70 -0
  419. data/sample/testgtk/labels.rb +74 -0
  420. data/sample/testgtk/layout.rb +108 -0
  421. data/sample/testgtk/marble.xpm +408 -0
  422. data/sample/testgtk/menu.rb +79 -0
  423. data/sample/testgtk/notebook.rb +281 -0
  424. data/sample/testgtk/pixmap.rb +58 -0
  425. data/sample/testgtk/progressbar.rb +181 -0
  426. data/sample/testgtk/radiobutton.rb +61 -0
  427. data/sample/testgtk/range.rb +65 -0
  428. data/sample/testgtk/reparent.rb +91 -0
  429. data/sample/testgtk/rulers.rb +46 -0
  430. data/sample/testgtk/sample.rb +80 -0
  431. data/sample/testgtk/savedposition.rb +87 -0
  432. data/sample/testgtk/scrolledwindow.rb +67 -0
  433. data/sample/testgtk/shapedwindow.rb +99 -0
  434. data/sample/testgtk/spinbutton.rb +181 -0
  435. data/sample/testgtk/statusbar.rb +89 -0
  436. data/sample/testgtk/test.xpm +92 -0
  437. data/sample/testgtk/testgtk.rb +181 -0
  438. data/sample/testgtk/testgtkrc +146 -0
  439. data/sample/testgtk/testgtkrc2 +21 -0
  440. data/sample/testgtk/togglebutton.rb +53 -0
  441. data/sample/testgtk/toolbar.rb +82 -0
  442. data/sample/testgtk/tooltips.rb +41 -0
  443. data/sample/testgtk/wmhints.rb +40 -0
  444. data/test/gtk-test-utils.rb +15 -0
  445. data/test/run-test.rb +32 -0
  446. data/test/test_gc.rb +25 -0
  447. data/test/test_gdk.rb +18 -0
  448. data/test/test_gdk_color.rb +10 -0
  449. data/test/test_gdk_display.rb +37 -0
  450. data/test/test_gdk_event.rb +23 -0
  451. data/test/test_gdk_gc.rb +7 -0
  452. data/test/test_gdk_geometry.rb +24 -0
  453. data/test/test_gdk_keymap.rb +8 -0
  454. data/test/test_gdk_pango.rb +9 -0
  455. data/test/test_gdk_pixbuf.rb +34 -0
  456. data/test/test_gdk_rectangle.rb +24 -0
  457. data/test/test_gdk_selection_data.rb +17 -0
  458. data/test/test_gdk_window.rb +37 -0
  459. data/test/test_gdk_window_attribute.rb +9 -0
  460. data/test/test_gtk_about_dialog.rb +14 -0
  461. data/test/test_gtk_accel_group_entry.rb +24 -0
  462. data/test/test_gtk_accel_key.rb +24 -0
  463. data/test/test_gtk_allocation.rb +24 -0
  464. data/test/test_gtk_border.rb +24 -0
  465. data/test/test_gtk_buildable.rb +66 -0
  466. data/test/test_gtk_builder.rb +188 -0
  467. data/test/test_gtk_entry.rb +18 -0
  468. data/test/test_gtk_icon_theme.rb +35 -0
  469. data/test/test_gtk_image.rb +8 -0
  470. data/test/test_gtk_infobar.rb +29 -0
  471. data/test/test_gtk_list_store.rb +92 -0
  472. data/test/test_gtk_menu_item.rb +13 -0
  473. data/test/test_gtk_rc_style.rb +14 -0
  474. data/test/test_gtk_recent_data.rb +24 -0
  475. data/test/test_gtk_recent_filter_info.rb +26 -0
  476. data/test/test_gtk_tree_path.rb +20 -0
  477. data/test/test_gtk_unix_print.rb +14 -0
  478. data/test/test_gtk_widget.rb +32 -0
  479. data/vendor/local/bin/gtk-builder-convert +799 -0
  480. data/vendor/local/bin/gtk-demo.exe +0 -0
  481. data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
  482. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  483. data/vendor/local/bin/libgailutil-18.dll +0 -0
  484. data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
  485. data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
  486. data/vendor/local/etc/gtk-2.0/gtkrc +1 -0
  487. data/vendor/local/etc/gtk-2.0/im-multipress.conf +22 -0
  488. data/vendor/local/include/gail-1.0/gail/gailwidget.h +65 -0
  489. data/vendor/local/include/gail-1.0/libgail-util/gail-util.h +2 -0
  490. data/vendor/local/include/gail-1.0/libgail-util/gailmisc.h +82 -0
  491. data/vendor/local/include/gail-1.0/libgail-util/gailtextutil.h +87 -0
  492. data/vendor/local/include/gtk-2.0/gdk/gdk.h +241 -0
  493. data/vendor/local/include/gtk-2.0/gdk/gdkapplaunchcontext.h +76 -0
  494. data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +59 -0
  495. data/vendor/local/include/gtk-2.0/gdk/gdkcolor.h +176 -0
  496. data/vendor/local/include/gtk-2.0/gdk/gdkcursor.h +168 -0
  497. data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +229 -0
  498. data/vendor/local/include/gtk-2.0/gdk/gdkdisplaymanager.h +67 -0
  499. data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +186 -0
  500. data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +436 -0
  501. data/vendor/local/include/gtk-2.0/gdk/gdkenumtypes.h +137 -0
  502. data/vendor/local/include/gtk-2.0/gdk/gdkevents.h +566 -0
  503. data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +138 -0
  504. data/vendor/local/include/gtk-2.0/gdk/gdkgc.h +298 -0
  505. data/vendor/local/include/gtk-2.0/gdk/gdki18n.h +59 -0
  506. data/vendor/local/include/gtk-2.0/gdk/gdkimage.h +145 -0
  507. data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +192 -0
  508. data/vendor/local/include/gtk-2.0/gdk/gdkkeys.h +134 -0
  509. data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms-compat.h +2208 -0
  510. data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms.h +2221 -0
  511. data/vendor/local/include/gtk-2.0/gdk/gdkpango.h +166 -0
  512. data/vendor/local/include/gtk-2.0/gdk/gdkpixbuf.h +115 -0
  513. data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +136 -0
  514. data/vendor/local/include/gtk-2.0/gdk/gdkprivate.h +60 -0
  515. data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +128 -0
  516. data/vendor/local/include/gtk-2.0/gdk/gdkregion.h +127 -0
  517. data/vendor/local/include/gtk-2.0/gdk/gdkrgb.h +149 -0
  518. data/vendor/local/include/gtk-2.0/gdk/gdkscreen.h +132 -0
  519. data/vendor/local/include/gtk-2.0/gdk/gdkselection.h +111 -0
  520. data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +64 -0
  521. data/vendor/local/include/gtk-2.0/gdk/gdktestutils.h +49 -0
  522. data/vendor/local/include/gtk-2.0/gdk/gdktypes.h +226 -0
  523. data/vendor/local/include/gtk-2.0/gdk/gdkvisual.h +147 -0
  524. data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +129 -0
  525. data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +743 -0
  526. data/vendor/local/include/gtk-2.0/gtk/gtk.h +248 -0
  527. data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +157 -0
  528. data/vendor/local/include/gtk-2.0/gtk/gtkaccelgroup.h +216 -0
  529. data/vendor/local/include/gtk-2.0/gtk/gtkaccellabel.h +114 -0
  530. data/vendor/local/include/gtk-2.0/gtk/gtkaccelmap.h +101 -0
  531. data/vendor/local/include/gtk-2.0/gtk/gtkaccessible.h +80 -0
  532. data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +180 -0
  533. data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +184 -0
  534. data/vendor/local/include/gtk-2.0/gtk/gtkactivatable.h +88 -0
  535. data/vendor/local/include/gtk-2.0/gtk/gtkadjustment.h +121 -0
  536. data/vendor/local/include/gtk-2.0/gtk/gtkalignment.h +94 -0
  537. data/vendor/local/include/gtk-2.0/gtk/gtkarrow.h +77 -0
  538. data/vendor/local/include/gtk-2.0/gtk/gtkaspectframe.h +84 -0
  539. data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +176 -0
  540. data/vendor/local/include/gtk-2.0/gtk/gtkbbox.h +105 -0
  541. data/vendor/local/include/gtk-2.0/gtk/gtkbin.h +70 -0
  542. data/vendor/local/include/gtk-2.0/gtk/gtkbindings.h +158 -0
  543. data/vendor/local/include/gtk-2.0/gtk/gtkbox.h +159 -0
  544. data/vendor/local/include/gtk-2.0/gtk/gtkbuildable.h +176 -0
  545. data/vendor/local/include/gtk-2.0/gtk/gtkbuilder.h +143 -0
  546. data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +147 -0
  547. data/vendor/local/include/gtk-2.0/gtk/gtkcalendar.h +209 -0
  548. data/vendor/local/include/gtk-2.0/gtk/gtkcelleditable.h +64 -0
  549. data/vendor/local/include/gtk-2.0/gtk/gtkcelllayout.h +122 -0
  550. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderer.h +195 -0
  551. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendereraccel.h +92 -0
  552. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderercombo.h +64 -0
  553. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h +71 -0
  554. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererprogress.h +74 -0
  555. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspin.h +57 -0
  556. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspinner.h +67 -0
  557. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertext.h +105 -0
  558. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertoggle.h +85 -0
  559. data/vendor/local/include/gtk-2.0/gtk/gtkcellview.h +81 -0
  560. data/vendor/local/include/gtk-2.0/gtk/gtkcheckbutton.h +82 -0
  561. data/vendor/local/include/gtk-2.0/gtk/gtkcheckmenuitem.h +102 -0
  562. data/vendor/local/include/gtk-2.0/gtk/gtkclipboard.h +157 -0
  563. data/vendor/local/include/gtk-2.0/gtk/gtkclist.h +792 -0
  564. data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +103 -0
  565. data/vendor/local/include/gtk-2.0/gtk/gtkcolorsel.h +135 -0
  566. data/vendor/local/include/gtk-2.0/gtk/gtkcolorseldialog.h +82 -0
  567. data/vendor/local/include/gtk-2.0/gtk/gtkcombo.h +118 -0
  568. data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +153 -0
  569. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +81 -0
  570. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
  571. data/vendor/local/include/gtk-2.0/gtk/gtkcontainer.h +229 -0
  572. data/vendor/local/include/gtk-2.0/gtk/gtkctree.h +445 -0
  573. data/vendor/local/include/gtk-2.0/gtk/gtkcurve.h +106 -0
  574. data/vendor/local/include/gtk-2.0/gtk/gtkdebug.h +79 -0
  575. data/vendor/local/include/gtk-2.0/gtk/gtkdialog.h +186 -0
  576. data/vendor/local/include/gtk-2.0/gtk/gtkdnd.h +188 -0
  577. data/vendor/local/include/gtk-2.0/gtk/gtkdrawingarea.h +82 -0
  578. data/vendor/local/include/gtk-2.0/gtk/gtkeditable.h +117 -0
  579. data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +334 -0
  580. data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +133 -0
  581. data/vendor/local/include/gtk-2.0/gtk/gtkentrycompletion.h +132 -0
  582. data/vendor/local/include/gtk-2.0/gtk/gtkenums.h +584 -0
  583. data/vendor/local/include/gtk-2.0/gtk/gtkeventbox.h +71 -0
  584. data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +98 -0
  585. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +264 -0
  586. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +92 -0
  587. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserdialog.h +74 -0
  588. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserwidget.h +67 -0
  589. data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +83 -0
  590. data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +125 -0
  591. data/vendor/local/include/gtk-2.0/gtk/gtkfixed.h +90 -0
  592. data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +100 -0
  593. data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +220 -0
  594. data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +96 -0
  595. data/vendor/local/include/gtk-2.0/gtk/gtkgamma.h +82 -0
  596. data/vendor/local/include/gtk-2.0/gtk/gtkgc.h +49 -0
  597. data/vendor/local/include/gtk-2.0/gtk/gtkhandlebox.h +112 -0
  598. data/vendor/local/include/gtk-2.0/gtk/gtkhbbox.h +80 -0
  599. data/vendor/local/include/gtk-2.0/gtk/gtkhbox.h +68 -0
  600. data/vendor/local/include/gtk-2.0/gtk/gtkhpaned.h +65 -0
  601. data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +84 -0
  602. data/vendor/local/include/gtk-2.0/gtk/gtkhscale.h +71 -0
  603. data/vendor/local/include/gtk-2.0/gtk/gtkhscrollbar.h +70 -0
  604. data/vendor/local/include/gtk-2.0/gtk/gtkhseparator.h +68 -0
  605. data/vendor/local/include/gtk-2.0/gtk/gtkhsv.h +115 -0
  606. data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +189 -0
  607. data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +198 -0
  608. data/vendor/local/include/gtk-2.0/gtk/gtkiconview.h +242 -0
  609. data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +274 -0
  610. data/vendor/local/include/gtk-2.0/gtk/gtkimagemenuitem.h +86 -0
  611. data/vendor/local/include/gtk-2.0/gtk/gtkimcontext.h +132 -0
  612. data/vendor/local/include/gtk-2.0/gtk/gtkimcontextsimple.h +77 -0
  613. data/vendor/local/include/gtk-2.0/gtk/gtkimmodule.h +58 -0
  614. data/vendor/local/include/gtk-2.0/gtk/gtkimmulticontext.h +78 -0
  615. data/vendor/local/include/gtk-2.0/gtk/gtkinfobar.h +120 -0
  616. data/vendor/local/include/gtk-2.0/gtk/gtkinputdialog.h +100 -0
  617. data/vendor/local/include/gtk-2.0/gtk/gtkinvisible.h +78 -0
  618. data/vendor/local/include/gtk-2.0/gtk/gtkitem.h +81 -0
  619. data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +236 -0
  620. data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +207 -0
  621. data/vendor/local/include/gtk-2.0/gtk/gtklayout.h +138 -0
  622. data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +91 -0
  623. data/vendor/local/include/gtk-2.0/gtk/gtklist.h +138 -0
  624. data/vendor/local/include/gtk-2.0/gtk/gtklistitem.h +91 -0
  625. data/vendor/local/include/gtk-2.0/gtk/gtkliststore.h +147 -0
  626. data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +233 -0
  627. data/vendor/local/include/gtk-2.0/gtk/gtkmarshal.h +283 -0
  628. data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +219 -0
  629. data/vendor/local/include/gtk-2.0/gtk/gtkmenubar.h +92 -0
  630. data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +145 -0
  631. data/vendor/local/include/gtk-2.0/gtk/gtkmenushell.h +141 -0
  632. data/vendor/local/include/gtk-2.0/gtk/gtkmenutoolbutton.h +89 -0
  633. data/vendor/local/include/gtk-2.0/gtk/gtkmessagedialog.h +135 -0
  634. data/vendor/local/include/gtk-2.0/gtk/gtkmisc.h +85 -0
  635. data/vendor/local/include/gtk-2.0/gtk/gtkmodules.h +54 -0
  636. data/vendor/local/include/gtk-2.0/gtk/gtkmountoperation.h +83 -0
  637. data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +317 -0
  638. data/vendor/local/include/gtk-2.0/gtk/gtkobject.h +250 -0
  639. data/vendor/local/include/gtk-2.0/gtk/gtkoffscreenwindow.h +60 -0
  640. data/vendor/local/include/gtk-2.0/gtk/gtkoldeditable.h +126 -0
  641. data/vendor/local/include/gtk-2.0/gtk/gtkoptionmenu.h +88 -0
  642. data/vendor/local/include/gtk-2.0/gtk/gtkorientable.h +60 -0
  643. data/vendor/local/include/gtk-2.0/gtk/gtkpagesetup.h +108 -0
  644. data/vendor/local/include/gtk-2.0/gtk/gtkpaned.h +144 -0
  645. data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +101 -0
  646. data/vendor/local/include/gtk-2.0/gtk/gtkpixmap.h +83 -0
  647. data/vendor/local/include/gtk-2.0/gtk/gtkplug.h +105 -0
  648. data/vendor/local/include/gtk-2.0/gtk/gtkpreview.h +137 -0
  649. data/vendor/local/include/gtk-2.0/gtk/gtkprintcontext.h +71 -0
  650. data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +207 -0
  651. data/vendor/local/include/gtk-2.0/gtk/gtkprintoperationpreview.h +80 -0
  652. data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +234 -0
  653. data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +157 -0
  654. data/vendor/local/include/gtk-2.0/gtk/gtkprogress.h +120 -0
  655. data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +172 -0
  656. data/vendor/local/include/gtk-2.0/gtk/gtkradioaction.h +90 -0
  657. data/vendor/local/include/gtk-2.0/gtk/gtkradiobutton.h +94 -0
  658. data/vendor/local/include/gtk-2.0/gtk/gtkradiomenuitem.h +94 -0
  659. data/vendor/local/include/gtk-2.0/gtk/gtkradiotoolbutton.h +74 -0
  660. data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +215 -0
  661. data/vendor/local/include/gtk-2.0/gtk/gtkrc.h +271 -0
  662. data/vendor/local/include/gtk-2.0/gtk/gtkrecentaction.h +74 -0
  663. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooser.h +191 -0
  664. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserdialog.h +74 -0
  665. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchoosermenu.h +74 -0
  666. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserwidget.h +64 -0
  667. data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +94 -0
  668. data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +216 -0
  669. data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +136 -0
  670. data/vendor/local/include/gtk-2.0/gtk/gtkscale.h +111 -0
  671. data/vendor/local/include/gtk-2.0/gtk/gtkscalebutton.h +112 -0
  672. data/vendor/local/include/gtk-2.0/gtk/gtkscrollbar.h +72 -0
  673. data/vendor/local/include/gtk-2.0/gtk/gtkscrolledwindow.h +136 -0
  674. data/vendor/local/include/gtk-2.0/gtk/gtkselection.h +221 -0
  675. data/vendor/local/include/gtk-2.0/gtk/gtkseparator.h +66 -0
  676. data/vendor/local/include/gtk-2.0/gtk/gtkseparatormenuitem.h +68 -0
  677. data/vendor/local/include/gtk-2.0/gtk/gtkseparatortoolitem.h +72 -0
  678. data/vendor/local/include/gtk-2.0/gtk/gtksettings.h +139 -0
  679. data/vendor/local/include/gtk-2.0/gtk/gtkshow.h +39 -0
  680. data/vendor/local/include/gtk-2.0/gtk/gtksignal.h +151 -0
  681. data/vendor/local/include/gtk-2.0/gtk/gtksizegroup.h +111 -0
  682. data/vendor/local/include/gtk-2.0/gtk/gtksocket.h +102 -0
  683. data/vendor/local/include/gtk-2.0/gtk/gtkspinbutton.h +196 -0
  684. data/vendor/local/include/gtk-2.0/gtk/gtkspinner.h +65 -0
  685. data/vendor/local/include/gtk-2.0/gtk/gtkstatusbar.h +117 -0
  686. data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +157 -0
  687. data/vendor/local/include/gtk-2.0/gtk/gtkstock.h +1016 -0
  688. data/vendor/local/include/gtk-2.0/gtk/gtkstyle.h +945 -0
  689. data/vendor/local/include/gtk-2.0/gtk/gtktable.h +151 -0
  690. data/vendor/local/include/gtk-2.0/gtk/gtktearoffmenuitem.h +75 -0
  691. data/vendor/local/include/gtk-2.0/gtk/gtktestutils.h +71 -0
  692. data/vendor/local/include/gtk-2.0/gtk/gtktext.h +217 -0
  693. data/vendor/local/include/gtk-2.0/gtk/gtktextbuffer.h +409 -0
  694. data/vendor/local/include/gtk-2.0/gtk/gtktextbufferrichtext.h +96 -0
  695. data/vendor/local/include/gtk-2.0/gtk/gtktextchild.h +82 -0
  696. data/vendor/local/include/gtk-2.0/gtk/gtktextdisplay.h +112 -0
  697. data/vendor/local/include/gtk-2.0/gtk/gtktextiter.h +307 -0
  698. data/vendor/local/include/gtk-2.0/gtk/gtktextlayout.h +439 -0
  699. data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +106 -0
  700. data/vendor/local/include/gtk-2.0/gtk/gtktexttag.h +289 -0
  701. data/vendor/local/include/gtk-2.0/gtk/gtktexttagtable.h +101 -0
  702. data/vendor/local/include/gtk-2.0/gtk/gtktextview.h +376 -0
  703. data/vendor/local/include/gtk-2.0/gtk/gtktipsquery.h +110 -0
  704. data/vendor/local/include/gtk-2.0/gtk/gtktoggleaction.h +91 -0
  705. data/vendor/local/include/gtk-2.0/gtk/gtktogglebutton.h +97 -0
  706. data/vendor/local/include/gtk-2.0/gtk/gtktoggletoolbutton.h +77 -0
  707. data/vendor/local/include/gtk-2.0/gtk/gtktoolbar.h +288 -0
  708. data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +99 -0
  709. data/vendor/local/include/gtk-2.0/gtk/gtktoolitem.h +142 -0
  710. data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +99 -0
  711. data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +144 -0
  712. data/vendor/local/include/gtk-2.0/gtk/gtktoolshell.h +91 -0
  713. data/vendor/local/include/gtk-2.0/gtk/gtktooltip.h +77 -0
  714. data/vendor/local/include/gtk-2.0/gtk/gtktooltips.h +109 -0
  715. data/vendor/local/include/gtk-2.0/gtk/gtktree.h +132 -0
  716. data/vendor/local/include/gtk-2.0/gtk/gtktreednd.h +125 -0
  717. data/vendor/local/include/gtk-2.0/gtk/gtktreeitem.h +90 -0
  718. data/vendor/local/include/gtk-2.0/gtk/gtktreemodel.h +270 -0
  719. data/vendor/local/include/gtk-2.0/gtk/gtktreemodelfilter.h +109 -0
  720. data/vendor/local/include/gtk-2.0/gtk/gtktreemodelsort.h +106 -0
  721. data/vendor/local/include/gtk-2.0/gtk/gtktreeselection.h +125 -0
  722. data/vendor/local/include/gtk-2.0/gtk/gtktreesortable.h +103 -0
  723. data/vendor/local/include/gtk-2.0/gtk/gtktreestore.h +159 -0
  724. data/vendor/local/include/gtk-2.0/gtk/gtktreeview.h +431 -0
  725. data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +245 -0
  726. data/vendor/local/include/gtk-2.0/gtk/gtktypebuiltins.h +335 -0
  727. data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +264 -0
  728. data/vendor/local/include/gtk-2.0/gtk/gtkuimanager.h +153 -0
  729. data/vendor/local/include/gtk-2.0/gtk/gtkvbbox.h +82 -0
  730. data/vendor/local/include/gtk-2.0/gtk/gtkvbox.h +68 -0
  731. data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +51 -0
  732. data/vendor/local/include/gtk-2.0/gtk/gtkviewport.h +93 -0
  733. data/vendor/local/include/gtk-2.0/gtk/gtkvolumebutton.h +72 -0
  734. data/vendor/local/include/gtk-2.0/gtk/gtkvpaned.h +65 -0
  735. data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +84 -0
  736. data/vendor/local/include/gtk-2.0/gtk/gtkvscale.h +79 -0
  737. data/vendor/local/include/gtk-2.0/gtk/gtkvscrollbar.h +76 -0
  738. data/vendor/local/include/gtk-2.0/gtk/gtkvseparator.h +76 -0
  739. data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +1351 -0
  740. data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +452 -0
  741. data/vendor/local/lib/gailutil.def +15 -0
  742. data/vendor/local/lib/gdk-win32-2.0.def +744 -0
  743. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
  744. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll.a +0 -0
  745. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.la +41 -0
  746. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
  747. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll.a +0 -0
  748. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.la +41 -0
  749. data/vendor/local/lib/gtk-2.0/2.10.0/immodules.cache +7 -0
  750. data/vendor/local/lib/gtk-2.0/include/gdkconfig.h +34 -0
  751. data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
  752. data/vendor/local/lib/gtk-2.0/modules/libgail.dll.a +0 -0
  753. data/vendor/local/lib/gtk-2.0/modules/libgail.la +41 -0
  754. data/vendor/local/lib/gtk-win32-2.0.def +3833 -0
  755. data/vendor/local/lib/libgailutil.dll.a +0 -0
  756. data/vendor/local/lib/libgailutil.la +41 -0
  757. data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
  758. data/vendor/local/lib/libgdk-win32-2.0.la +41 -0
  759. data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
  760. data/vendor/local/lib/libgtk-win32-2.0.la +41 -0
  761. data/vendor/local/lib/pkgconfig/gail.pc +11 -0
  762. data/vendor/local/lib/pkgconfig/gdk-2.0.pc +12 -0
  763. data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +12 -0
  764. data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +15 -0
  765. data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +15 -0
  766. data/vendor/local/share/aclocal/gtk-2.0.m4 +196 -0
  767. data/vendor/local/share/gtk-2.0/demo/alphatest.png +0 -0
  768. data/vendor/local/share/gtk-2.0/demo/apple-red.png +0 -0
  769. data/vendor/local/share/gtk-2.0/demo/appwindow.c +591 -0
  770. data/vendor/local/share/gtk-2.0/demo/assistant.c +216 -0
  771. data/vendor/local/share/gtk-2.0/demo/background.jpg +0 -0
  772. data/vendor/local/share/gtk-2.0/demo/builder.c +68 -0
  773. data/vendor/local/share/gtk-2.0/demo/button_box.c +127 -0
  774. data/vendor/local/share/gtk-2.0/demo/changedisplay.c +646 -0
  775. data/vendor/local/share/gtk-2.0/demo/clipboard.c +326 -0
  776. data/vendor/local/share/gtk-2.0/demo/colorsel.c +145 -0
  777. data/vendor/local/share/gtk-2.0/demo/combobox.c +454 -0
  778. data/vendor/local/share/gtk-2.0/demo/demo.ui +258 -0
  779. data/vendor/local/share/gtk-2.0/demo/dialog.c +181 -0
  780. data/vendor/local/share/gtk-2.0/demo/drawingarea.c +314 -0
  781. data/vendor/local/share/gtk-2.0/demo/editable_cells.c +393 -0
  782. data/vendor/local/share/gtk-2.0/demo/entry_buffer.c +65 -0
  783. data/vendor/local/share/gtk-2.0/demo/entry_completion.c +97 -0
  784. data/vendor/local/share/gtk-2.0/demo/expander.c +58 -0
  785. data/vendor/local/share/gtk-2.0/demo/floppybuddy.gif +0 -0
  786. data/vendor/local/share/gtk-2.0/demo/gnome-applets.png +0 -0
  787. data/vendor/local/share/gtk-2.0/demo/gnome-calendar.png +0 -0
  788. data/vendor/local/share/gtk-2.0/demo/gnome-foot.png +0 -0
  789. data/vendor/local/share/gtk-2.0/demo/gnome-fs-directory.png +0 -0
  790. data/vendor/local/share/gtk-2.0/demo/gnome-fs-regular.png +0 -0
  791. data/vendor/local/share/gtk-2.0/demo/gnome-gimp.png +0 -0
  792. data/vendor/local/share/gtk-2.0/demo/gnome-gmush.png +0 -0
  793. data/vendor/local/share/gtk-2.0/demo/gnome-gsame.png +0 -0
  794. data/vendor/local/share/gtk-2.0/demo/gnu-keys.png +0 -0
  795. data/vendor/local/share/gtk-2.0/demo/gtk-logo-rgb.gif +0 -0
  796. data/vendor/local/share/gtk-2.0/demo/hypertext.c +315 -0
  797. data/vendor/local/share/gtk-2.0/demo/iconview.c +372 -0
  798. data/vendor/local/share/gtk-2.0/demo/iconview_edit.c +159 -0
  799. data/vendor/local/share/gtk-2.0/demo/images.c +464 -0
  800. data/vendor/local/share/gtk-2.0/demo/infobar.c +104 -0
  801. data/vendor/local/share/gtk-2.0/demo/links.c +84 -0
  802. data/vendor/local/share/gtk-2.0/demo/list_store.c +295 -0
  803. data/vendor/local/share/gtk-2.0/demo/menus.c +210 -0
  804. data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +587 -0
  805. data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +510 -0
  806. data/vendor/local/share/gtk-2.0/demo/panes.c +197 -0
  807. data/vendor/local/share/gtk-2.0/demo/pickers.c +73 -0
  808. data/vendor/local/share/gtk-2.0/demo/pixbufs.c +270 -0
  809. data/vendor/local/share/gtk-2.0/demo/printing.c +212 -0
  810. data/vendor/local/share/gtk-2.0/demo/rotated_text.c +241 -0
  811. data/vendor/local/share/gtk-2.0/demo/search_entry.c +335 -0
  812. data/vendor/local/share/gtk-2.0/demo/sizegroup.c +167 -0
  813. data/vendor/local/share/gtk-2.0/demo/spinner.c +94 -0
  814. data/vendor/local/share/gtk-2.0/demo/stock_browser.c +546 -0
  815. data/vendor/local/share/gtk-2.0/demo/textscroll.c +200 -0
  816. data/vendor/local/share/gtk-2.0/demo/textview.c +569 -0
  817. data/vendor/local/share/gtk-2.0/demo/toolpalette.c +799 -0
  818. data/vendor/local/share/gtk-2.0/demo/tree_store.c +450 -0
  819. data/vendor/local/share/gtk-2.0/demo/ui_manager.c +237 -0
  820. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +574 -0
  821. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +361 -0
  822. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +27 -0
  823. data/vendor/local/share/gtk-doc/html/gail-libgail-util/home.png +0 -0
  824. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +44 -0
  825. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.sgml +27 -0
  826. data/vendor/local/share/gtk-doc/html/gail-libgail-util/left-insensitive.png +0 -0
  827. data/vendor/local/share/gtk-doc/html/gail-libgail-util/left.png +0 -0
  828. data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +41 -0
  829. data/vendor/local/share/gtk-doc/html/gail-libgail-util/right-insensitive.png +0 -0
  830. data/vendor/local/share/gtk-doc/html/gail-libgail-util/right.png +0 -0
  831. data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +476 -0
  832. data/vendor/local/share/gtk-doc/html/gail-libgail-util/up-insensitive.png +0 -0
  833. data/vendor/local/share/gtk-doc/html/gail-libgail-util/up.png +0 -0
  834. data/vendor/local/share/gtk-doc/html/gdk2/GdkDisplay.html +1796 -0
  835. data/vendor/local/share/gtk-doc/html/gdk2/GdkDisplayManager.html +355 -0
  836. data/vendor/local/share/gtk-doc/html/gdk2/GdkScreen.html +2067 -0
  837. data/vendor/local/share/gtk-doc/html/gdk2/X_cursor.png +0 -0
  838. data/vendor/local/share/gtk-doc/html/gdk2/annotation-glossary.html +62 -0
  839. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-10.html +118 -0
  840. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-12.html +119 -0
  841. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-14.html +119 -0
  842. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-16.html +39 -0
  843. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-18.html +104 -0
  844. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-2.html +510 -0
  845. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-20.html +46 -0
  846. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-22.html +219 -0
  847. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-4.html +118 -0
  848. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-6.html +123 -0
  849. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-8.html +110 -0
  850. data/vendor/local/share/gtk-doc/html/gdk2/api-index-deprecated.html +1047 -0
  851. data/vendor/local/share/gtk-doc/html/gdk2/api-index-full.html +3665 -0
  852. data/vendor/local/share/gtk-doc/html/gdk2/arrow.png +0 -0
  853. data/vendor/local/share/gtk-doc/html/gdk2/based_arrow_down.png +0 -0
  854. data/vendor/local/share/gtk-doc/html/gdk2/based_arrow_up.png +0 -0
  855. data/vendor/local/share/gtk-doc/html/gdk2/boat.png +0 -0
  856. data/vendor/local/share/gtk-doc/html/gdk2/bogosity.png +0 -0
  857. data/vendor/local/share/gtk-doc/html/gdk2/bottom_left_corner.png +0 -0
  858. data/vendor/local/share/gtk-doc/html/gdk2/bottom_right_corner.png +0 -0
  859. data/vendor/local/share/gtk-doc/html/gdk2/bottom_side.png +0 -0
  860. data/vendor/local/share/gtk-doc/html/gdk2/bottom_tee.png +0 -0
  861. data/vendor/local/share/gtk-doc/html/gdk2/box_spiral.png +0 -0
  862. data/vendor/local/share/gtk-doc/html/gdk2/center_ptr.png +0 -0
  863. data/vendor/local/share/gtk-doc/html/gdk2/circle.png +0 -0
  864. data/vendor/local/share/gtk-doc/html/gdk2/clock.png +0 -0
  865. data/vendor/local/share/gtk-doc/html/gdk2/coffee_mug.png +0 -0
  866. data/vendor/local/share/gtk-doc/html/gdk2/cross.png +0 -0
  867. data/vendor/local/share/gtk-doc/html/gdk2/cross_reverse.png +0 -0
  868. data/vendor/local/share/gtk-doc/html/gdk2/crosshair.png +0 -0
  869. data/vendor/local/share/gtk-doc/html/gdk2/diamond_cross.png +0 -0
  870. data/vendor/local/share/gtk-doc/html/gdk2/dot.png +0 -0
  871. data/vendor/local/share/gtk-doc/html/gdk2/dotbox.png +0 -0
  872. data/vendor/local/share/gtk-doc/html/gdk2/double_arrow.png +0 -0
  873. data/vendor/local/share/gtk-doc/html/gdk2/draft_large.png +0 -0
  874. data/vendor/local/share/gtk-doc/html/gdk2/draft_small.png +0 -0
  875. data/vendor/local/share/gtk-doc/html/gdk2/draped_box.png +0 -0
  876. data/vendor/local/share/gtk-doc/html/gdk2/exchange.png +0 -0
  877. data/vendor/local/share/gtk-doc/html/gdk2/fleur.png +0 -0
  878. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Application-launching.html +412 -0
  879. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Bitmaps-and-Pixmaps.html +753 -0
  880. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Cairo-Interaction.html +541 -0
  881. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Colormaps-and-Colors.html +1295 -0
  882. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Cursors.html +1290 -0
  883. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Drag-and-Drop.html +1217 -0
  884. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Drawing-Primitives.html +2611 -0
  885. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Event-Structures.html +2095 -0
  886. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Events.html +1650 -0
  887. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Fonts.html +1781 -0
  888. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-GdkRGB.html +1435 -0
  889. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-General.html +1169 -0
  890. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Graphics-Contexts.html +2201 -0
  891. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Images.html +1090 -0
  892. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Input-Devices.html +1288 -0
  893. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Input.html +401 -0
  894. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Keyboard-Handling.html +1362 -0
  895. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Pango-Interaction.html +1074 -0
  896. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Pixbufs.html +744 -0
  897. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Points-Rectangles-and-Regions.html +1367 -0
  898. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Properties-and-Atoms.html +1314 -0
  899. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Selections.html +845 -0
  900. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Testing.html +276 -0
  901. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Threads.html +1053 -0
  902. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Visuals.html +1085 -0
  903. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Windows.html +8583 -0
  904. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-X-Window-System-Interaction.html +3528 -0
  905. data/vendor/local/share/gtk-doc/html/gdk2/gdk2.devhelp2 +949 -0
  906. data/vendor/local/share/gtk-doc/html/gdk2/gobbler.png +0 -0
  907. data/vendor/local/share/gtk-doc/html/gdk2/gumby.png +0 -0
  908. data/vendor/local/share/gtk-doc/html/gdk2/hand1.png +0 -0
  909. data/vendor/local/share/gtk-doc/html/gdk2/hand2.png +0 -0
  910. data/vendor/local/share/gtk-doc/html/gdk2/heart.png +0 -0
  911. data/vendor/local/share/gtk-doc/html/gdk2/home.png +0 -0
  912. data/vendor/local/share/gtk-doc/html/gdk2/icon.png +0 -0
  913. data/vendor/local/share/gtk-doc/html/gdk2/index.html +143 -0
  914. data/vendor/local/share/gtk-doc/html/gdk2/index.sgml +1151 -0
  915. data/vendor/local/share/gtk-doc/html/gdk2/iron_cross.png +0 -0
  916. data/vendor/local/share/gtk-doc/html/gdk2/left-insensitive.png +0 -0
  917. data/vendor/local/share/gtk-doc/html/gdk2/left.png +0 -0
  918. data/vendor/local/share/gtk-doc/html/gdk2/left_ptr.png +0 -0
  919. data/vendor/local/share/gtk-doc/html/gdk2/left_side.png +0 -0
  920. data/vendor/local/share/gtk-doc/html/gdk2/left_tee.png +0 -0
  921. data/vendor/local/share/gtk-doc/html/gdk2/leftbutton.png +0 -0
  922. data/vendor/local/share/gtk-doc/html/gdk2/ll_angle.png +0 -0
  923. data/vendor/local/share/gtk-doc/html/gdk2/lr_angle.png +0 -0
  924. data/vendor/local/share/gtk-doc/html/gdk2/man.png +0 -0
  925. data/vendor/local/share/gtk-doc/html/gdk2/middlebutton.png +0 -0
  926. data/vendor/local/share/gtk-doc/html/gdk2/mouse.png +0 -0
  927. data/vendor/local/share/gtk-doc/html/gdk2/multihead.html +204 -0
  928. data/vendor/local/share/gtk-doc/html/gdk2/pencil.png +0 -0
  929. data/vendor/local/share/gtk-doc/html/gdk2/pirate.png +0 -0
  930. data/vendor/local/share/gtk-doc/html/gdk2/plus.png +0 -0
  931. data/vendor/local/share/gtk-doc/html/gdk2/question_arrow.png +0 -0
  932. data/vendor/local/share/gtk-doc/html/gdk2/reference.html +131 -0
  933. data/vendor/local/share/gtk-doc/html/gdk2/right-insensitive.png +0 -0
  934. data/vendor/local/share/gtk-doc/html/gdk2/right.png +0 -0
  935. data/vendor/local/share/gtk-doc/html/gdk2/right_ptr.png +0 -0
  936. data/vendor/local/share/gtk-doc/html/gdk2/right_side.png +0 -0
  937. data/vendor/local/share/gtk-doc/html/gdk2/right_tee.png +0 -0
  938. data/vendor/local/share/gtk-doc/html/gdk2/rightbutton.png +0 -0
  939. data/vendor/local/share/gtk-doc/html/gdk2/rotated-text.png +0 -0
  940. data/vendor/local/share/gtk-doc/html/gdk2/rtl_logo.png +0 -0
  941. data/vendor/local/share/gtk-doc/html/gdk2/sailboat.png +0 -0
  942. data/vendor/local/share/gtk-doc/html/gdk2/sb_down_arrow.png +0 -0
  943. data/vendor/local/share/gtk-doc/html/gdk2/sb_h_double_arrow.png +0 -0
  944. data/vendor/local/share/gtk-doc/html/gdk2/sb_left_arrow.png +0 -0
  945. data/vendor/local/share/gtk-doc/html/gdk2/sb_right_arrow.png +0 -0
  946. data/vendor/local/share/gtk-doc/html/gdk2/sb_up_arrow.png +0 -0
  947. data/vendor/local/share/gtk-doc/html/gdk2/sb_v_double_arrow.png +0 -0
  948. data/vendor/local/share/gtk-doc/html/gdk2/shuttle.png +0 -0
  949. data/vendor/local/share/gtk-doc/html/gdk2/sizing.png +0 -0
  950. data/vendor/local/share/gtk-doc/html/gdk2/spider.png +0 -0
  951. data/vendor/local/share/gtk-doc/html/gdk2/spraycan.png +0 -0
  952. data/vendor/local/share/gtk-doc/html/gdk2/star.png +0 -0
  953. data/vendor/local/share/gtk-doc/html/gdk2/style.css +476 -0
  954. data/vendor/local/share/gtk-doc/html/gdk2/target.png +0 -0
  955. data/vendor/local/share/gtk-doc/html/gdk2/tcross.png +0 -0
  956. data/vendor/local/share/gtk-doc/html/gdk2/top_left_arrow.png +0 -0
  957. data/vendor/local/share/gtk-doc/html/gdk2/top_left_corner.png +0 -0
  958. data/vendor/local/share/gtk-doc/html/gdk2/top_right_corner.png +0 -0
  959. data/vendor/local/share/gtk-doc/html/gdk2/top_side.png +0 -0
  960. data/vendor/local/share/gtk-doc/html/gdk2/top_tee.png +0 -0
  961. data/vendor/local/share/gtk-doc/html/gdk2/trek.png +0 -0
  962. data/vendor/local/share/gtk-doc/html/gdk2/ul_angle.png +0 -0
  963. data/vendor/local/share/gtk-doc/html/gdk2/umbrella.png +0 -0
  964. data/vendor/local/share/gtk-doc/html/gdk2/up-insensitive.png +0 -0
  965. data/vendor/local/share/gtk-doc/html/gdk2/up.png +0 -0
  966. data/vendor/local/share/gtk-doc/html/gdk2/ur_angle.png +0 -0
  967. data/vendor/local/share/gtk-doc/html/gdk2/watch.png +0 -0
  968. data/vendor/local/share/gtk-doc/html/gdk2/xterm.png +0 -0
  969. data/vendor/local/share/gtk-doc/html/gtk2/AbstractObjects.html +77 -0
  970. data/vendor/local/share/gtk-doc/html/gtk2/Actions.html +53 -0
  971. data/vendor/local/share/gtk-doc/html/gtk2/Builder.html +38 -0
  972. data/vendor/local/share/gtk-doc/html/gtk2/ButtonWidgets.html +53 -0
  973. data/vendor/local/share/gtk-doc/html/gtk2/DeprecatedObjects.html +83 -0
  974. data/vendor/local/share/gtk-doc/html/gtk2/DisplayWidgets.html +56 -0
  975. data/vendor/local/share/gtk-doc/html/gtk2/GtkAboutDialog.html +1891 -0
  976. data/vendor/local/share/gtk-doc/html/gtk2/GtkAccelLabel.html +437 -0
  977. data/vendor/local/share/gtk-doc/html/gtk2/GtkAccessible.html +199 -0
  978. data/vendor/local/share/gtk-doc/html/gtk2/GtkAction.html +2264 -0
  979. data/vendor/local/share/gtk-doc/html/gtk2/GtkActionGroup.html +1631 -0
  980. data/vendor/local/share/gtk-doc/html/gtk2/GtkActivatable.html +924 -0
  981. data/vendor/local/share/gtk-doc/html/gtk2/GtkAdjustment.html +1102 -0
  982. data/vendor/local/share/gtk-doc/html/gtk2/GtkAlignment.html +491 -0
  983. data/vendor/local/share/gtk-doc/html/gtk2/GtkArrow.html +270 -0
  984. data/vendor/local/share/gtk-doc/html/gtk2/GtkAspectFrame.html +308 -0
  985. data/vendor/local/share/gtk-doc/html/gtk2/GtkAssistant.html +1575 -0
  986. data/vendor/local/share/gtk-doc/html/gtk2/GtkBin.html +152 -0
  987. data/vendor/local/share/gtk-doc/html/gtk2/GtkBox.html +1043 -0
  988. data/vendor/local/share/gtk-doc/html/gtk2/GtkBuildable.html +801 -0
  989. data/vendor/local/share/gtk-doc/html/gtk2/GtkBuilder.html +1339 -0
  990. data/vendor/local/share/gtk-doc/html/gtk2/GtkButton.html +1634 -0
  991. data/vendor/local/share/gtk-doc/html/gtk2/GtkButtonBox.html +776 -0
  992. data/vendor/local/share/gtk-doc/html/gtk2/GtkCList.html +5399 -0
  993. data/vendor/local/share/gtk-doc/html/gtk2/GtkCTree.html +3279 -0
  994. data/vendor/local/share/gtk-doc/html/gtk2/GtkCalendar.html +1463 -0
  995. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellEditable.html +362 -0
  996. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellLayout.html +702 -0
  997. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRenderer.html +1492 -0
  998. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererAccel.html +350 -0
  999. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererCombo.html +282 -0
  1000. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererPixbuf.html +278 -0
  1001. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererProgress.html +243 -0
  1002. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererSpin.html +196 -0
  1003. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererSpinner.html +186 -0
  1004. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererText.html +868 -0
  1005. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererToggle.html +493 -0
  1006. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellView.html +612 -0
  1007. data/vendor/local/share/gtk-doc/html/gtk2/GtkCheckButton.html +283 -0
  1008. data/vendor/local/share/gtk-doc/html/gtk2/GtkColorButton.html +615 -0
  1009. data/vendor/local/share/gtk-doc/html/gtk2/GtkColorSelection.html +1120 -0
  1010. data/vendor/local/share/gtk-doc/html/gtk2/GtkColorSelectionDialog.html +302 -0
  1011. data/vendor/local/share/gtk-doc/html/gtk2/GtkCombo.html +678 -0
  1012. data/vendor/local/share/gtk-doc/html/gtk2/GtkComboBox.html +2138 -0
  1013. data/vendor/local/share/gtk-doc/html/gtk2/GtkComboBoxEntry.html +374 -0
  1014. data/vendor/local/share/gtk-doc/html/gtk2/GtkComboBoxText.html +414 -0
  1015. data/vendor/local/share/gtk-doc/html/gtk2/GtkContainer.html +2054 -0
  1016. data/vendor/local/share/gtk-doc/html/gtk2/GtkCurve.html +591 -0
  1017. data/vendor/local/share/gtk-doc/html/gtk2/GtkDialog.html +1627 -0
  1018. data/vendor/local/share/gtk-doc/html/gtk2/GtkDrawingArea.html +287 -0
  1019. data/vendor/local/share/gtk-doc/html/gtk2/GtkEditable.html +896 -0
  1020. data/vendor/local/share/gtk-doc/html/gtk2/GtkEntry.html +4578 -0
  1021. data/vendor/local/share/gtk-doc/html/gtk2/GtkEntryBuffer.html +792 -0
  1022. data/vendor/local/share/gtk-doc/html/gtk2/GtkEntryCompletion.html +1574 -0
  1023. data/vendor/local/share/gtk-doc/html/gtk2/GtkEventBox.html +362 -0
  1024. data/vendor/local/share/gtk-doc/html/gtk2/GtkExpander.html +1024 -0
  1025. data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooser.html +4065 -0
  1026. data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooserButton.html +666 -0
  1027. data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooserDialog.html +353 -0
  1028. data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooserWidget.html +211 -0
  1029. data/vendor/local/share/gtk-doc/html/gtk2/GtkFileSelection.html +740 -0
  1030. data/vendor/local/share/gtk-doc/html/gtk2/GtkFixed.html +419 -0
  1031. data/vendor/local/share/gtk-doc/html/gtk2/GtkFontButton.html +804 -0
  1032. data/vendor/local/share/gtk-doc/html/gtk2/GtkFontSelection.html +728 -0
  1033. data/vendor/local/share/gtk-doc/html/gtk2/GtkFontSelectionDialog.html +546 -0
  1034. data/vendor/local/share/gtk-doc/html/gtk2/GtkFrame.html +610 -0
  1035. data/vendor/local/share/gtk-doc/html/gtk2/GtkGammaCurve.html +144 -0
  1036. data/vendor/local/share/gtk-doc/html/gtk2/GtkHBox.html +154 -0
  1037. data/vendor/local/share/gtk-doc/html/gtk2/GtkHButtonBox.html +287 -0
  1038. data/vendor/local/share/gtk-doc/html/gtk2/GtkHPaned.html +127 -0
  1039. data/vendor/local/share/gtk-doc/html/gtk2/GtkHRuler.html +143 -0
  1040. data/vendor/local/share/gtk-doc/html/gtk2/GtkHSV.html +605 -0
  1041. data/vendor/local/share/gtk-doc/html/gtk2/GtkHScale.html +210 -0
  1042. data/vendor/local/share/gtk-doc/html/gtk2/GtkHScrollbar.html +150 -0
  1043. data/vendor/local/share/gtk-doc/html/gtk2/GtkHSeparator.html +150 -0
  1044. data/vendor/local/share/gtk-doc/html/gtk2/GtkHandleBox.html +665 -0
  1045. data/vendor/local/share/gtk-doc/html/gtk2/GtkIMContext.html +1204 -0
  1046. data/vendor/local/share/gtk-doc/html/gtk2/GtkIMContextSimple.html +186 -0
  1047. data/vendor/local/share/gtk-doc/html/gtk2/GtkIMMulticontext.html +231 -0
  1048. data/vendor/local/share/gtk-doc/html/gtk2/GtkIconTheme.html +1796 -0
  1049. data/vendor/local/share/gtk-doc/html/gtk2/GtkIconView.html +3740 -0
  1050. data/vendor/local/share/gtk-doc/html/gtk2/GtkImage.html +1961 -0
  1051. data/vendor/local/share/gtk-doc/html/gtk2/GtkImageMenuItem.html +613 -0
  1052. data/vendor/local/share/gtk-doc/html/gtk2/GtkInfoBar.html +908 -0
  1053. data/vendor/local/share/gtk-doc/html/gtk2/GtkInputDialog.html +255 -0
  1054. data/vendor/local/share/gtk-doc/html/gtk2/GtkInvisible.html +267 -0
  1055. data/vendor/local/share/gtk-doc/html/gtk2/GtkItem.html +350 -0
  1056. data/vendor/local/share/gtk-doc/html/gtk2/GtkItemFactory.html +1537 -0
  1057. data/vendor/local/share/gtk-doc/html/gtk2/GtkLabel.html +2825 -0
  1058. data/vendor/local/share/gtk-doc/html/gtk2/GtkLayout.html +797 -0
  1059. data/vendor/local/share/gtk-doc/html/gtk2/GtkLinkButton.html +520 -0
  1060. data/vendor/local/share/gtk-doc/html/gtk2/GtkList.html +1370 -0
  1061. data/vendor/local/share/gtk-doc/html/gtk2/GtkListItem.html +652 -0
  1062. data/vendor/local/share/gtk-doc/html/gtk2/GtkListStore.html +1361 -0
  1063. data/vendor/local/share/gtk-doc/html/gtk2/GtkMenu.html +1887 -0
  1064. data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuBar.html +555 -0
  1065. data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuItem.html +1279 -0
  1066. data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuShell.html +1028 -0
  1067. data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuToolButton.html +561 -0
  1068. data/vendor/local/share/gtk-doc/html/gtk2/GtkMessageDialog.html +945 -0
  1069. data/vendor/local/share/gtk-doc/html/gtk2/GtkMisc.html +411 -0
  1070. data/vendor/local/share/gtk-doc/html/gtk2/GtkNotebook.html +3748 -0
  1071. data/vendor/local/share/gtk-doc/html/gtk2/GtkObject.html +1672 -0
  1072. data/vendor/local/share/gtk-doc/html/gtk2/GtkOffscreenWindow.html +221 -0
  1073. data/vendor/local/share/gtk-doc/html/gtk2/GtkOldEditable.html +756 -0
  1074. data/vendor/local/share/gtk-doc/html/gtk2/GtkOptionMenu.html +477 -0
  1075. data/vendor/local/share/gtk-doc/html/gtk2/GtkPageSetup.html +1278 -0
  1076. data/vendor/local/share/gtk-doc/html/gtk2/GtkPageSetupUnixDialog.html +312 -0
  1077. data/vendor/local/share/gtk-doc/html/gtk2/GtkPaned.html +1032 -0
  1078. data/vendor/local/share/gtk-doc/html/gtk2/GtkPaperSize.html +1172 -0
  1079. data/vendor/local/share/gtk-doc/html/gtk2/GtkPixmap.html +306 -0
  1080. data/vendor/local/share/gtk-doc/html/gtk2/GtkPlug.html +496 -0
  1081. data/vendor/local/share/gtk-doc/html/gtk2/GtkPreview.html +822 -0
  1082. data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintContext.html +655 -0
  1083. data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintJob.html +725 -0
  1084. data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintSettings.html +3872 -0
  1085. data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintUnixDialog.html +1143 -0
  1086. data/vendor/local/share/gtk-doc/html/gtk2/GtkPrinter.html +1321 -0
  1087. data/vendor/local/share/gtk-doc/html/gtk2/GtkProgress.html +766 -0
  1088. data/vendor/local/share/gtk-doc/html/gtk2/GtkProgressBar.html +1179 -0
  1089. data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioAction.html +480 -0
  1090. data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioButton.html +681 -0
  1091. data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioMenuItem.html +609 -0
  1092. data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioToolButton.html +432 -0
  1093. data/vendor/local/share/gtk-doc/html/gtk2/GtkRange.html +1913 -0
  1094. data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentAction.html +338 -0
  1095. data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooser.html +1919 -0
  1096. data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooserDialog.html +260 -0
  1097. data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooserMenu.html +313 -0
  1098. data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooserWidget.html +182 -0
  1099. data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentFilter.html +823 -0
  1100. data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentManager.html +2084 -0
  1101. data/vendor/local/share/gtk-doc/html/gtk2/GtkRuler.html +444 -0
  1102. data/vendor/local/share/gtk-doc/html/gtk2/GtkScale.html +724 -0
  1103. data/vendor/local/share/gtk-doc/html/gtk2/GtkScaleButton.html +783 -0
  1104. data/vendor/local/share/gtk-doc/html/gtk2/GtkScrollbar.html +232 -0
  1105. data/vendor/local/share/gtk-doc/html/gtk2/GtkScrolledWindow.html +1035 -0
  1106. data/vendor/local/share/gtk-doc/html/gtk2/GtkSeparator.html +96 -0
  1107. data/vendor/local/share/gtk-doc/html/gtk2/GtkSeparatorMenuItem.html +130 -0
  1108. data/vendor/local/share/gtk-doc/html/gtk2/GtkSeparatorToolItem.html +270 -0
  1109. data/vendor/local/share/gtk-doc/html/gtk2/GtkSettings.html +1679 -0
  1110. data/vendor/local/share/gtk-doc/html/gtk2/GtkSizeGroup.html +579 -0
  1111. data/vendor/local/share/gtk-doc/html/gtk2/GtkSocket.html +460 -0
  1112. data/vendor/local/share/gtk-doc/html/gtk2/GtkSpinButton.html +1793 -0
  1113. data/vendor/local/share/gtk-doc/html/gtk2/GtkSpinner.html +265 -0
  1114. data/vendor/local/share/gtk-doc/html/gtk2/GtkStatusIcon.html +2339 -0
  1115. data/vendor/local/share/gtk-doc/html/gtk2/GtkStatusbar.html +662 -0
  1116. data/vendor/local/share/gtk-doc/html/gtk2/GtkStyle.html +5004 -0
  1117. data/vendor/local/share/gtk-doc/html/gtk2/GtkTable.html +1081 -0
  1118. data/vendor/local/share/gtk-doc/html/gtk2/GtkTearoffMenuItem.html +158 -0
  1119. data/vendor/local/share/gtk-doc/html/gtk2/GtkText.html +900 -0
  1120. data/vendor/local/share/gtk-doc/html/gtk2/GtkTextBuffer.html +4895 -0
  1121. data/vendor/local/share/gtk-doc/html/gtk2/GtkTextIter.html +4244 -0
  1122. data/vendor/local/share/gtk-doc/html/gtk2/GtkTextMark.html +444 -0
  1123. data/vendor/local/share/gtk-doc/html/gtk2/GtkTextTag.html +1680 -0
  1124. data/vendor/local/share/gtk-doc/html/gtk2/GtkTextTagTable.html +516 -0
  1125. data/vendor/local/share/gtk-doc/html/gtk2/GtkTextView.html +4124 -0
  1126. data/vendor/local/share/gtk-doc/html/gtk2/GtkTipsQuery.html +625 -0
  1127. data/vendor/local/share/gtk-doc/html/gtk2/GtkToggleAction.html +440 -0
  1128. data/vendor/local/share/gtk-doc/html/gtk2/GtkToggleButton.html +698 -0
  1129. data/vendor/local/share/gtk-doc/html/gtk2/GtkToggleToolButton.html +359 -0
  1130. data/vendor/local/share/gtk-doc/html/gtk2/GtkToolButton.html +929 -0
  1131. data/vendor/local/share/gtk-doc/html/gtk2/GtkToolItem.html +1599 -0
  1132. data/vendor/local/share/gtk-doc/html/gtk2/GtkToolItemGroup.html +1025 -0
  1133. data/vendor/local/share/gtk-doc/html/gtk2/GtkToolPalette.html +1314 -0
  1134. data/vendor/local/share/gtk-doc/html/gtk2/GtkToolShell.html +532 -0
  1135. data/vendor/local/share/gtk-doc/html/gtk2/GtkToolbar.html +2507 -0
  1136. data/vendor/local/share/gtk-doc/html/gtk2/GtkTooltip.html +554 -0
  1137. data/vendor/local/share/gtk-doc/html/gtk2/GtkTooltips.html +548 -0
  1138. data/vendor/local/share/gtk-doc/html/gtk2/GtkTree.html +1060 -0
  1139. data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeItem.html +361 -0
  1140. data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeModel.html +3330 -0
  1141. data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeModelFilter.html +885 -0
  1142. data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeModelSort.html +697 -0
  1143. data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeSelection.html +1144 -0
  1144. data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeSortable.html +595 -0
  1145. data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeStore.html +1384 -0
  1146. data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeView.html +6534 -0
  1147. data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeViewColumn.html +2679 -0
  1148. data/vendor/local/share/gtk-doc/html/gtk2/GtkUIManager.html +1631 -0
  1149. data/vendor/local/share/gtk-doc/html/gtk2/GtkVBox.html +155 -0
  1150. data/vendor/local/share/gtk-doc/html/gtk2/GtkVButtonBox.html +259 -0
  1151. data/vendor/local/share/gtk-doc/html/gtk2/GtkVPaned.html +123 -0
  1152. data/vendor/local/share/gtk-doc/html/gtk2/GtkVRuler.html +135 -0
  1153. data/vendor/local/share/gtk-doc/html/gtk2/GtkVScale.html +202 -0
  1154. data/vendor/local/share/gtk-doc/html/gtk2/GtkVScrollbar.html +144 -0
  1155. data/vendor/local/share/gtk-doc/html/gtk2/GtkVSeparator.html +125 -0
  1156. data/vendor/local/share/gtk-doc/html/gtk2/GtkViewport.html +564 -0
  1157. data/vendor/local/share/gtk-doc/html/gtk2/GtkVolumeButton.html +127 -0
  1158. data/vendor/local/share/gtk-doc/html/gtk2/GtkWidget.html +13779 -0
  1159. data/vendor/local/share/gtk-doc/html/gtk2/GtkWindow.html +5354 -0
  1160. data/vendor/local/share/gtk-doc/html/gtk2/GtkWindowGroup.html +246 -0
  1161. data/vendor/local/share/gtk-doc/html/gtk2/LayoutContainers.html +74 -0
  1162. data/vendor/local/share/gtk-doc/html/gtk2/MenusAndCombos.html +95 -0
  1163. data/vendor/local/share/gtk-doc/html/gtk2/MiscObjects.html +68 -0
  1164. data/vendor/local/share/gtk-doc/html/gtk2/NumericEntry.html +53 -0
  1165. data/vendor/local/share/gtk-doc/html/gtk2/Ornaments.html +41 -0
  1166. data/vendor/local/share/gtk-doc/html/gtk2/PlugSocket.html +38 -0
  1167. data/vendor/local/share/gtk-doc/html/gtk2/Printing.html +59 -0
  1168. data/vendor/local/share/gtk-doc/html/gtk2/RecentDocuments.html +50 -0
  1169. data/vendor/local/share/gtk-doc/html/gtk2/ScrollingWidgets.html +41 -0
  1170. data/vendor/local/share/gtk-doc/html/gtk2/SelectorWidgets.html +71 -0
  1171. data/vendor/local/share/gtk-doc/html/gtk2/SpecialObjects.html +47 -0
  1172. data/vendor/local/share/gtk-doc/html/gtk2/TextWidget.html +266 -0
  1173. data/vendor/local/share/gtk-doc/html/gtk2/TextWidgetObjects.html +53 -0
  1174. data/vendor/local/share/gtk-doc/html/gtk2/TreeWidget.html +556 -0
  1175. data/vendor/local/share/gtk-doc/html/gtk2/TreeWidgetObjects.html +104 -0
  1176. data/vendor/local/share/gtk-doc/html/gtk2/WindowWidgets.html +57 -0
  1177. data/vendor/local/share/gtk-doc/html/gtk2/aboutdialog.png +0 -0
  1178. data/vendor/local/share/gtk-doc/html/gtk2/accel-label.png +0 -0
  1179. data/vendor/local/share/gtk-doc/html/gtk2/annotation-glossary.html +69 -0
  1180. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-10.html +2090 -0
  1181. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-12.html +785 -0
  1182. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-14.html +781 -0
  1183. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-16.html +597 -0
  1184. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-18.html +513 -0
  1185. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-2.html +286 -0
  1186. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-20.html +460 -0
  1187. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-22.html +176 -0
  1188. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-24.html +131 -0
  1189. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-4.html +1853 -0
  1190. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-6.html +1085 -0
  1191. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-8.html +381 -0
  1192. data/vendor/local/share/gtk-doc/html/gtk2/api-index-deprecated.html +3531 -0
  1193. data/vendor/local/share/gtk-doc/html/gtk2/api-index-full.html +22945 -0
  1194. data/vendor/local/share/gtk-doc/html/gtk2/application-exit.png +0 -0
  1195. data/vendor/local/share/gtk-doc/html/gtk2/assistant.png +0 -0
  1196. data/vendor/local/share/gtk-doc/html/gtk2/button.png +0 -0
  1197. data/vendor/local/share/gtk-doc/html/gtk2/ch01.html +246 -0
  1198. data/vendor/local/share/gtk-doc/html/gtk2/ch02.html +154 -0
  1199. data/vendor/local/share/gtk-doc/html/gtk2/chap-drawing-model.html +496 -0
  1200. data/vendor/local/share/gtk-doc/html/gtk2/check-button.png +0 -0
  1201. data/vendor/local/share/gtk-doc/html/gtk2/checklist-gdkeventexpose-region.html +84 -0
  1202. data/vendor/local/share/gtk-doc/html/gtk2/checklist-modifiers.html +89 -0
  1203. data/vendor/local/share/gtk-doc/html/gtk2/checklist-named-icons.html +41 -0
  1204. data/vendor/local/share/gtk-doc/html/gtk2/color-button.png +0 -0
  1205. data/vendor/local/share/gtk-doc/html/gtk2/colorsel.png +0 -0
  1206. data/vendor/local/share/gtk-doc/html/gtk2/combo-box-entry.png +0 -0
  1207. data/vendor/local/share/gtk-doc/html/gtk2/combo-box.png +0 -0
  1208. data/vendor/local/share/gtk-doc/html/gtk2/decorating-the-assistant-pages.html +50 -0
  1209. data/vendor/local/share/gtk-doc/html/gtk2/dialog-error.png +0 -0
  1210. data/vendor/local/share/gtk-doc/html/gtk2/dialog-information.png +0 -0
  1211. data/vendor/local/share/gtk-doc/html/gtk2/dialog-password.png +0 -0
  1212. data/vendor/local/share/gtk-doc/html/gtk2/dialog-question.png +0 -0
  1213. data/vendor/local/share/gtk-doc/html/gtk2/dialog-warning.png +0 -0
  1214. data/vendor/local/share/gtk-doc/html/gtk2/document-new.png +0 -0
  1215. data/vendor/local/share/gtk-doc/html/gtk2/document-open.png +0 -0
  1216. data/vendor/local/share/gtk-doc/html/gtk2/document-print-preview.png +0 -0
  1217. data/vendor/local/share/gtk-doc/html/gtk2/document-print.png +0 -0
  1218. data/vendor/local/share/gtk-doc/html/gtk2/document-properties.png +0 -0
  1219. data/vendor/local/share/gtk-doc/html/gtk2/document-revert-ltr.png +0 -0
  1220. data/vendor/local/share/gtk-doc/html/gtk2/document-revert-rtl.png +0 -0
  1221. data/vendor/local/share/gtk-doc/html/gtk2/document-save-as.png +0 -0
  1222. data/vendor/local/share/gtk-doc/html/gtk2/document-save.png +0 -0
  1223. data/vendor/local/share/gtk-doc/html/gtk2/drive-harddisk.png +0 -0
  1224. data/vendor/local/share/gtk-doc/html/gtk2/edit-clear.png +0 -0
  1225. data/vendor/local/share/gtk-doc/html/gtk2/edit-copy.png +0 -0
  1226. data/vendor/local/share/gtk-doc/html/gtk2/edit-cut.png +0 -0
  1227. data/vendor/local/share/gtk-doc/html/gtk2/edit-delete.png +0 -0
  1228. data/vendor/local/share/gtk-doc/html/gtk2/edit-find-replace.png +0 -0
  1229. data/vendor/local/share/gtk-doc/html/gtk2/edit-find.png +0 -0
  1230. data/vendor/local/share/gtk-doc/html/gtk2/edit-paste.png +0 -0
  1231. data/vendor/local/share/gtk-doc/html/gtk2/edit-redo-ltr.png +0 -0
  1232. data/vendor/local/share/gtk-doc/html/gtk2/edit-redo-rtl.png +0 -0
  1233. data/vendor/local/share/gtk-doc/html/gtk2/edit-select-all.png +0 -0
  1234. data/vendor/local/share/gtk-doc/html/gtk2/edit-undo-ltr.png +0 -0
  1235. data/vendor/local/share/gtk-doc/html/gtk2/edit-undo-rtl.png +0 -0
  1236. data/vendor/local/share/gtk-doc/html/gtk2/entry.png +0 -0
  1237. data/vendor/local/share/gtk-doc/html/gtk2/figure-hierarchical-drawing.png +0 -0
  1238. data/vendor/local/share/gtk-doc/html/gtk2/figure-windowed-label.png +0 -0
  1239. data/vendor/local/share/gtk-doc/html/gtk2/file-button.png +0 -0
  1240. data/vendor/local/share/gtk-doc/html/gtk2/filechooser.png +0 -0
  1241. data/vendor/local/share/gtk-doc/html/gtk2/folder.png +0 -0
  1242. data/vendor/local/share/gtk-doc/html/gtk2/font-button.png +0 -0
  1243. data/vendor/local/share/gtk-doc/html/gtk2/fontsel.png +0 -0
  1244. data/vendor/local/share/gtk-doc/html/gtk2/format-indent-less-ltr.png +0 -0
  1245. data/vendor/local/share/gtk-doc/html/gtk2/format-indent-less-rtl.png +0 -0
  1246. data/vendor/local/share/gtk-doc/html/gtk2/format-indent-more-ltr.png +0 -0
  1247. data/vendor/local/share/gtk-doc/html/gtk2/format-indent-more-rtl.png +0 -0
  1248. data/vendor/local/share/gtk-doc/html/gtk2/format-justify-center.png +0 -0
  1249. data/vendor/local/share/gtk-doc/html/gtk2/format-justify-fill.png +0 -0
  1250. data/vendor/local/share/gtk-doc/html/gtk2/format-justify-left.png +0 -0
  1251. data/vendor/local/share/gtk-doc/html/gtk2/format-justify-right.png +0 -0
  1252. data/vendor/local/share/gtk-doc/html/gtk2/format-text-bold.png +0 -0
  1253. data/vendor/local/share/gtk-doc/html/gtk2/format-text-italic.png +0 -0
  1254. data/vendor/local/share/gtk-doc/html/gtk2/format-text-strikethrough.png +0 -0
  1255. data/vendor/local/share/gtk-doc/html/gtk2/format-text-underline.png +0 -0
  1256. data/vendor/local/share/gtk-doc/html/gtk2/frame.png +0 -0
  1257. data/vendor/local/share/gtk-doc/html/gtk2/glossary.html +335 -0
  1258. data/vendor/local/share/gtk-doc/html/gtk2/go-bottom.png +0 -0
  1259. data/vendor/local/share/gtk-doc/html/gtk2/go-down.png +0 -0
  1260. data/vendor/local/share/gtk-doc/html/gtk2/go-first-ltr.png +0 -0
  1261. data/vendor/local/share/gtk-doc/html/gtk2/go-first-rtl.png +0 -0
  1262. data/vendor/local/share/gtk-doc/html/gtk2/go-home.png +0 -0
  1263. data/vendor/local/share/gtk-doc/html/gtk2/go-jump-ltr.png +0 -0
  1264. data/vendor/local/share/gtk-doc/html/gtk2/go-jump-rtl.png +0 -0
  1265. data/vendor/local/share/gtk-doc/html/gtk2/go-last-ltr.png +0 -0
  1266. data/vendor/local/share/gtk-doc/html/gtk2/go-last-rtl.png +0 -0
  1267. data/vendor/local/share/gtk-doc/html/gtk2/go-next-ltr.png +0 -0
  1268. data/vendor/local/share/gtk-doc/html/gtk2/go-next-rtl.png +0 -0
  1269. data/vendor/local/share/gtk-doc/html/gtk2/go-previous-ltr.png +0 -0
  1270. data/vendor/local/share/gtk-doc/html/gtk2/go-previous-rtl.png +0 -0
  1271. data/vendor/local/share/gtk-doc/html/gtk2/go-top.png +0 -0
  1272. data/vendor/local/share/gtk-doc/html/gtk2/go-up.png +0 -0
  1273. data/vendor/local/share/gtk-doc/html/gtk2/gtk-apply.png +0 -0
  1274. data/vendor/local/share/gtk-doc/html/gtk2/gtk-builder-convert.html +89 -0
  1275. data/vendor/local/share/gtk-doc/html/gtk2/gtk-building.html +441 -0
  1276. data/vendor/local/share/gtk-doc/html/gtk2/gtk-cancel.png +0 -0
  1277. data/vendor/local/share/gtk-doc/html/gtk2/gtk-caps-lock-warning.png +0 -0
  1278. data/vendor/local/share/gtk-doc/html/gtk2/gtk-changes-1-2.html +568 -0
  1279. data/vendor/local/share/gtk-doc/html/gtk2/gtk-changes-2-0.html +1175 -0
  1280. data/vendor/local/share/gtk-doc/html/gtk2/gtk-color-picker.png +0 -0
  1281. data/vendor/local/share/gtk-doc/html/gtk2/gtk-compiling.html +111 -0
  1282. data/vendor/local/share/gtk-doc/html/gtk2/gtk-connect.png +0 -0
  1283. data/vendor/local/share/gtk-doc/html/gtk2/gtk-convert.png +0 -0
  1284. data/vendor/local/share/gtk-doc/html/gtk2/gtk-directfb.html +60 -0
  1285. data/vendor/local/share/gtk-doc/html/gtk2/gtk-disconnect.png +0 -0
  1286. data/vendor/local/share/gtk-doc/html/gtk2/gtk-dnd-multiple.png +0 -0
  1287. data/vendor/local/share/gtk-doc/html/gtk2/gtk-dnd.png +0 -0
  1288. data/vendor/local/share/gtk-doc/html/gtk2/gtk-edit.png +0 -0
  1289. data/vendor/local/share/gtk-doc/html/gtk2/gtk-font.png +0 -0
  1290. data/vendor/local/share/gtk-doc/html/gtk2/gtk-index.png +0 -0
  1291. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-ClientSideWindows.html +85 -0
  1292. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkAboutDialog.html +160 -0
  1293. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkAction.html +91 -0
  1294. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkAssistant.html +102 -0
  1295. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkBuilder.html +118 -0
  1296. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkColorButton.html +107 -0
  1297. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkComboBox.html +256 -0
  1298. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkFileChooser.html +80 -0
  1299. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkIconView.html +264 -0
  1300. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkLinkButton.html +155 -0
  1301. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkRecentChooser.html +310 -0
  1302. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-checklist.html +157 -0
  1303. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-entry-icons.html +293 -0
  1304. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-label-links.html +45 -0
  1305. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-tooltips.html +124 -0
  1306. data/vendor/local/share/gtk-doc/html/gtk2/gtk-no.png +0 -0
  1307. data/vendor/local/share/gtk-doc/html/gtk2/gtk-ok.png +0 -0
  1308. data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-landscape.png +0 -0
  1309. data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-portrait.png +0 -0
  1310. data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-reverse-landscape.png +0 -0
  1311. data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-reverse-portrait.png +0 -0
  1312. data/vendor/local/share/gtk-doc/html/gtk2/gtk-osx.html +53 -0
  1313. data/vendor/local/share/gtk-doc/html/gtk2/gtk-page-setup.png +0 -0
  1314. data/vendor/local/share/gtk-doc/html/gtk2/gtk-preferences.png +0 -0
  1315. data/vendor/local/share/gtk-doc/html/gtk2/gtk-query-immodules-2.0.html +89 -0
  1316. data/vendor/local/share/gtk-doc/html/gtk2/gtk-question-index.html +1427 -0
  1317. data/vendor/local/share/gtk-doc/html/gtk2/gtk-resources.html +146 -0
  1318. data/vendor/local/share/gtk-doc/html/gtk2/gtk-running.html +348 -0
  1319. data/vendor/local/share/gtk-doc/html/gtk2/gtk-select-color.png +0 -0
  1320. data/vendor/local/share/gtk-doc/html/gtk2/gtk-undelete-ltr.png +0 -0
  1321. data/vendor/local/share/gtk-doc/html/gtk2/gtk-undelete-rtl.png +0 -0
  1322. data/vendor/local/share/gtk-doc/html/gtk2/gtk-update-icon-cache.html +114 -0
  1323. data/vendor/local/share/gtk-doc/html/gtk2/gtk-windows.html +87 -0
  1324. data/vendor/local/share/gtk-doc/html/gtk2/gtk-x11.html +134 -0
  1325. data/vendor/local/share/gtk-doc/html/gtk2/gtk-yes.png +0 -0
  1326. data/vendor/local/share/gtk-doc/html/gtk2/gtk.html +162 -0
  1327. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Accelerator-Maps.html +744 -0
  1328. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Bindings.html +1146 -0
  1329. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Clipboards.html +2018 -0
  1330. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Drag-and-Drop.html +1962 -0
  1331. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Feature-Test-Macros.html +358 -0
  1332. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Filesystem-utilities.html +454 -0
  1333. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-General.html +2349 -0
  1334. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Graphics-Contexts.html +165 -0
  1335. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-GtkTreeView-drag-and-drop.html +566 -0
  1336. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-High-level-Printing-API.html +3267 -0
  1337. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Keyboard-Accelerators.html +1329 -0
  1338. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Orientable.html +219 -0
  1339. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Resource-Files.html +2234 -0
  1340. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Selections.html +2236 -0
  1341. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Signals.html +1991 -0
  1342. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Standard-Enumerations.html +2183 -0
  1343. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Stock-Items.html +1724 -0
  1344. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Testing.html +833 -0
  1345. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Themeable-Stock-Images.html +1998 -0
  1346. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Types.html +2138 -0
  1347. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-gtkcheckmenuitem.html +693 -0
  1348. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-gtkfilefilter.html +671 -0
  1349. data/vendor/local/share/gtk-doc/html/gtk2/gtk2.devhelp2 +6133 -0
  1350. data/vendor/local/share/gtk-doc/html/gtk2/gtkbase.html +95 -0
  1351. data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-installing-extra-widgets.html +40 -0
  1352. data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-installing-preview.html +41 -0
  1353. data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-new-features.html +55 -0
  1354. data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-selection-modes.html +51 -0
  1355. data/vendor/local/share/gtk-doc/html/gtk2/gtkobjects.html +668 -0
  1356. data/vendor/local/share/gtk-doc/html/gtk2/gtkrecent-advanced.html +206 -0
  1357. data/vendor/local/share/gtk-doc/html/gtk2/gtkrecent-chooser.html +97 -0
  1358. data/vendor/local/share/gtk-doc/html/gtk2/help-about.png +0 -0
  1359. data/vendor/local/share/gtk-doc/html/gtk2/help-contents.png +0 -0
  1360. data/vendor/local/share/gtk-doc/html/gtk2/home.png +0 -0
  1361. data/vendor/local/share/gtk-doc/html/gtk2/icon-view.png +0 -0
  1362. data/vendor/local/share/gtk-doc/html/gtk2/image-missing.png +0 -0
  1363. data/vendor/local/share/gtk-doc/html/gtk2/image.png +0 -0
  1364. data/vendor/local/share/gtk-doc/html/gtk2/index.html +875 -0
  1365. data/vendor/local/share/gtk-doc/html/gtk2/index.sgml +8276 -0
  1366. data/vendor/local/share/gtk-doc/html/gtk2/label.png +0 -0
  1367. data/vendor/local/share/gtk-doc/html/gtk2/layout-btlr.png +0 -0
  1368. data/vendor/local/share/gtk-doc/html/gtk2/layout-btrl.png +0 -0
  1369. data/vendor/local/share/gtk-doc/html/gtk2/layout-lrbt.png +0 -0
  1370. data/vendor/local/share/gtk-doc/html/gtk2/layout-lrtb.png +0 -0
  1371. data/vendor/local/share/gtk-doc/html/gtk2/layout-rlbt.png +0 -0
  1372. data/vendor/local/share/gtk-doc/html/gtk2/layout-rltb.png +0 -0
  1373. data/vendor/local/share/gtk-doc/html/gtk2/layout-tblr.png +0 -0
  1374. data/vendor/local/share/gtk-doc/html/gtk2/layout-tbrl.png +0 -0
  1375. data/vendor/local/share/gtk-doc/html/gtk2/left-insensitive.png +0 -0
  1376. data/vendor/local/share/gtk-doc/html/gtk2/left.png +0 -0
  1377. data/vendor/local/share/gtk-doc/html/gtk2/link-button.png +0 -0
  1378. data/vendor/local/share/gtk-doc/html/gtk2/list-add.png +0 -0
  1379. data/vendor/local/share/gtk-doc/html/gtk2/list-and-tree.png +0 -0
  1380. data/vendor/local/share/gtk-doc/html/gtk2/list-remove.png +0 -0
  1381. data/vendor/local/share/gtk-doc/html/gtk2/media-floppy.png +0 -0
  1382. data/vendor/local/share/gtk-doc/html/gtk2/media-optical.png +0 -0
  1383. data/vendor/local/share/gtk-doc/html/gtk2/media-playback-pause.png +0 -0
  1384. data/vendor/local/share/gtk-doc/html/gtk2/media-playback-start-ltr.png +0 -0
  1385. data/vendor/local/share/gtk-doc/html/gtk2/media-playback-start-rtl.png +0 -0
  1386. data/vendor/local/share/gtk-doc/html/gtk2/media-playback-stop.png +0 -0
  1387. data/vendor/local/share/gtk-doc/html/gtk2/media-record.png +0 -0
  1388. data/vendor/local/share/gtk-doc/html/gtk2/media-seek-backward-ltr.png +0 -0
  1389. data/vendor/local/share/gtk-doc/html/gtk2/media-seek-backward-rtl.png +0 -0
  1390. data/vendor/local/share/gtk-doc/html/gtk2/media-seek-forward-ltr.png +0 -0
  1391. data/vendor/local/share/gtk-doc/html/gtk2/media-seek-forward-rtl.png +0 -0
  1392. data/vendor/local/share/gtk-doc/html/gtk2/media-skip-backward-ltr.png +0 -0
  1393. data/vendor/local/share/gtk-doc/html/gtk2/media-skip-backward-rtl.png +0 -0
  1394. data/vendor/local/share/gtk-doc/html/gtk2/media-skip-forward-ltr.png +0 -0
  1395. data/vendor/local/share/gtk-doc/html/gtk2/media-skip-forward-rtl.png +0 -0
  1396. data/vendor/local/share/gtk-doc/html/gtk2/menubar.png +0 -0
  1397. data/vendor/local/share/gtk-doc/html/gtk2/messagedialog.png +0 -0
  1398. data/vendor/local/share/gtk-doc/html/gtk2/migrating-GtkCombo.html +94 -0
  1399. data/vendor/local/share/gtk-doc/html/gtk2/migrating-gnomeuiinfo.html +351 -0
  1400. data/vendor/local/share/gtk-doc/html/gtk2/migrating.html +104 -0
  1401. data/vendor/local/share/gtk-doc/html/gtk2/multiline-text.png +0 -0
  1402. data/vendor/local/share/gtk-doc/html/gtk2/network-idle.png +0 -0
  1403. data/vendor/local/share/gtk-doc/html/gtk2/new-features-GtkComboBox.html +74 -0
  1404. data/vendor/local/share/gtk-doc/html/gtk2/notebook.png +0 -0
  1405. data/vendor/local/share/gtk-doc/html/gtk2/pagesetupdialog.png +0 -0
  1406. data/vendor/local/share/gtk-doc/html/gtk2/panes.png +0 -0
  1407. data/vendor/local/share/gtk-doc/html/gtk2/printdialog.png +0 -0
  1408. data/vendor/local/share/gtk-doc/html/gtk2/printer-error.png +0 -0
  1409. data/vendor/local/share/gtk-doc/html/gtk2/printer-info.png +0 -0
  1410. data/vendor/local/share/gtk-doc/html/gtk2/printer-paused.png +0 -0
  1411. data/vendor/local/share/gtk-doc/html/gtk2/printer-warning.png +0 -0
  1412. data/vendor/local/share/gtk-doc/html/gtk2/process-stop.png +0 -0
  1413. data/vendor/local/share/gtk-doc/html/gtk2/progressbar.png +0 -0
  1414. data/vendor/local/share/gtk-doc/html/gtk2/pt05.html +44 -0
  1415. data/vendor/local/share/gtk-doc/html/gtk2/radio-group.png +0 -0
  1416. data/vendor/local/share/gtk-doc/html/gtk2/recentchooserdialog.png +0 -0
  1417. data/vendor/local/share/gtk-doc/html/gtk2/right-insensitive.png +0 -0
  1418. data/vendor/local/share/gtk-doc/html/gtk2/right.png +0 -0
  1419. data/vendor/local/share/gtk-doc/html/gtk2/scales.png +0 -0
  1420. data/vendor/local/share/gtk-doc/html/gtk2/scrolledwindow.png +0 -0
  1421. data/vendor/local/share/gtk-doc/html/gtk2/separator.png +0 -0
  1422. data/vendor/local/share/gtk-doc/html/gtk2/setting-the-page-flow.html +77 -0
  1423. data/vendor/local/share/gtk-doc/html/gtk2/spinbutton.png +0 -0
  1424. data/vendor/local/share/gtk-doc/html/gtk2/spinner.png +0 -0
  1425. data/vendor/local/share/gtk-doc/html/gtk2/statusbar.png +0 -0
  1426. data/vendor/local/share/gtk-doc/html/gtk2/style.css +476 -0
  1427. data/vendor/local/share/gtk-doc/html/gtk2/system-run.png +0 -0
  1428. data/vendor/local/share/gtk-doc/html/gtk2/text-x-generic.png +0 -0
  1429. data/vendor/local/share/gtk-doc/html/gtk2/toggle-button.png +0 -0
  1430. data/vendor/local/share/gtk-doc/html/gtk2/toolbar.png +0 -0
  1431. data/vendor/local/share/gtk-doc/html/gtk2/toolpalette.png +0 -0
  1432. data/vendor/local/share/gtk-doc/html/gtk2/tools-check-spelling.png +0 -0
  1433. data/vendor/local/share/gtk-doc/html/gtk2/tree-view-coordinates.png +0 -0
  1434. data/vendor/local/share/gtk-doc/html/gtk2/ui-manager.html +45 -0
  1435. data/vendor/local/share/gtk-doc/html/gtk2/up-insensitive.png +0 -0
  1436. data/vendor/local/share/gtk-doc/html/gtk2/up.png +0 -0
  1437. data/vendor/local/share/gtk-doc/html/gtk2/view-fullscreen.png +0 -0
  1438. data/vendor/local/share/gtk-doc/html/gtk2/view-refresh.png +0 -0
  1439. data/vendor/local/share/gtk-doc/html/gtk2/view-restore.png +0 -0
  1440. data/vendor/local/share/gtk-doc/html/gtk2/view-sort-ascending.png +0 -0
  1441. data/vendor/local/share/gtk-doc/html/gtk2/view-sort-descending.png +0 -0
  1442. data/vendor/local/share/gtk-doc/html/gtk2/volumebutton.png +0 -0
  1443. data/vendor/local/share/gtk-doc/html/gtk2/window-close.png +0 -0
  1444. data/vendor/local/share/gtk-doc/html/gtk2/window.png +0 -0
  1445. data/vendor/local/share/gtk-doc/html/gtk2/zoom-fit-best.png +0 -0
  1446. data/vendor/local/share/gtk-doc/html/gtk2/zoom-in.png +0 -0
  1447. data/vendor/local/share/gtk-doc/html/gtk2/zoom-original.png +0 -0
  1448. data/vendor/local/share/gtk-doc/html/gtk2/zoom-out.png +0 -0
  1449. data/vendor/local/share/icons/hicolor/index.theme +1830 -0
  1450. data/vendor/local/share/license/gtk+/AUTHORS +65 -0
  1451. data/vendor/local/share/license/gtk+/COPYING +482 -0
  1452. data/vendor/local/share/license/hicolor-icon-theme/COPYING +345 -0
  1453. data/vendor/local/share/locale/af/LC_MESSAGES/gtk20-properties.mo +0 -0
  1454. data/vendor/local/share/locale/af/LC_MESSAGES/gtk20.mo +0 -0
  1455. data/vendor/local/share/locale/am/LC_MESSAGES/gtk20-properties.mo +0 -0
  1456. data/vendor/local/share/locale/am/LC_MESSAGES/gtk20.mo +0 -0
  1457. data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20-properties.mo +0 -0
  1458. data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20.mo +0 -0
  1459. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20-properties.mo +0 -0
  1460. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20.mo +0 -0
  1461. data/vendor/local/share/locale/as/LC_MESSAGES/gtk20-properties.mo +0 -0
  1462. data/vendor/local/share/locale/as/LC_MESSAGES/gtk20.mo +0 -0
  1463. data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20-properties.mo +0 -0
  1464. data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20.mo +0 -0
  1465. data/vendor/local/share/locale/az/LC_MESSAGES/gtk20-properties.mo +0 -0
  1466. data/vendor/local/share/locale/az/LC_MESSAGES/gtk20.mo +0 -0
  1467. data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo +0 -0
  1468. data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20.mo +0 -0
  1469. data/vendor/local/share/locale/be/LC_MESSAGES/gtk20-properties.mo +0 -0
  1470. data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
  1471. data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
  1472. data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20.mo +0 -0
  1473. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
  1474. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
  1475. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1476. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20.mo +0 -0
  1477. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20-properties.mo +0 -0
  1478. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20.mo +0 -0
  1479. data/vendor/local/share/locale/br/LC_MESSAGES/gtk20-properties.mo +0 -0
  1480. data/vendor/local/share/locale/br/LC_MESSAGES/gtk20.mo +0 -0
  1481. data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20-properties.mo +0 -0
  1482. data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20.mo +0 -0
  1483. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
  1484. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
  1485. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
  1486. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
  1487. data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20-properties.mo +0 -0
  1488. data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20.mo +0 -0
  1489. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20-properties.mo +0 -0
  1490. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
  1491. data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20-properties.mo +0 -0
  1492. data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20.mo +0 -0
  1493. data/vendor/local/share/locale/da/LC_MESSAGES/gtk20-properties.mo +0 -0
  1494. data/vendor/local/share/locale/da/LC_MESSAGES/gtk20.mo +0 -0
  1495. data/vendor/local/share/locale/de/LC_MESSAGES/gtk20-properties.mo +0 -0
  1496. data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
  1497. data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20-properties.mo +0 -0
  1498. data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20.mo +0 -0
  1499. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
  1500. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20.mo +0 -0
  1501. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo +0 -0
  1502. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20.mo +0 -0
  1503. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
  1504. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
  1505. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20-properties.mo +0 -0
  1506. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20.mo +0 -0
  1507. data/vendor/local/share/locale/es/LC_MESSAGES/gtk20-properties.mo +0 -0
  1508. data/vendor/local/share/locale/es/LC_MESSAGES/gtk20.mo +0 -0
  1509. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
  1510. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20.mo +0 -0
  1511. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20-properties.mo +0 -0
  1512. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20.mo +0 -0
  1513. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20-properties.mo +0 -0
  1514. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20.mo +0 -0
  1515. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1516. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20.mo +0 -0
  1517. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1518. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20.mo +0 -0
  1519. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20-properties.mo +0 -0
  1520. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20.mo +0 -0
  1521. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1522. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
  1523. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20-properties.mo +0 -0
  1524. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20.mo +0 -0
  1525. data/vendor/local/share/locale/he/LC_MESSAGES/gtk20-properties.mo +0 -0
  1526. data/vendor/local/share/locale/he/LC_MESSAGES/gtk20.mo +0 -0
  1527. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1528. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20.mo +0 -0
  1529. data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1530. data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20.mo +0 -0
  1531. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20-properties.mo +0 -0
  1532. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
  1533. data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20-properties.mo +0 -0
  1534. data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20.mo +0 -0
  1535. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20-properties.mo +0 -0
  1536. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20.mo +0 -0
  1537. data/vendor/local/share/locale/id/LC_MESSAGES/gtk20-properties.mo +0 -0
  1538. data/vendor/local/share/locale/id/LC_MESSAGES/gtk20.mo +0 -0
  1539. data/vendor/local/share/locale/io/LC_MESSAGES/gtk20-properties.mo +0 -0
  1540. data/vendor/local/share/locale/io/LC_MESSAGES/gtk20.mo +0 -0
  1541. data/vendor/local/share/locale/is/LC_MESSAGES/gtk20-properties.mo +0 -0
  1542. data/vendor/local/share/locale/is/LC_MESSAGES/gtk20.mo +0 -0
  1543. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
  1544. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
  1545. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
  1546. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20.mo +0 -0
  1547. data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20-properties.mo +0 -0
  1548. data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20.mo +0 -0
  1549. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1550. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20.mo +0 -0
  1551. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1552. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20.mo +0 -0
  1553. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20-properties.mo +0 -0
  1554. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20.mo +0 -0
  1555. data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20-properties.mo +0 -0
  1556. data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20.mo +0 -0
  1557. data/vendor/local/share/locale/li/LC_MESSAGES/gtk20-properties.mo +0 -0
  1558. data/vendor/local/share/locale/li/LC_MESSAGES/gtk20.mo +0 -0
  1559. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
  1560. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
  1561. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20-properties.mo +0 -0
  1562. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20.mo +0 -0
  1563. data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20-properties.mo +0 -0
  1564. data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20.mo +0 -0
  1565. data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1566. data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20.mo +0 -0
  1567. data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1568. data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20.mo +0 -0
  1569. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20-properties.mo +0 -0
  1570. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20.mo +0 -0
  1571. data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1572. data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20.mo +0 -0
  1573. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1574. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20.mo +0 -0
  1575. data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20-properties.mo +0 -0
  1576. data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20.mo +0 -0
  1577. data/vendor/local/share/locale/my/LC_MESSAGES/gtk20-properties.mo +0 -0
  1578. data/vendor/local/share/locale/my/LC_MESSAGES/gtk20.mo +0 -0
  1579. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20-properties.mo +0 -0
  1580. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
  1581. data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20-properties.mo +0 -0
  1582. data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20.mo +0 -0
  1583. data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20-properties.mo +0 -0
  1584. data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20.mo +0 -0
  1585. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1586. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
  1587. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1588. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20.mo +0 -0
  1589. data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20-properties.mo +0 -0
  1590. data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20.mo +0 -0
  1591. data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20-properties.mo +0 -0
  1592. data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20.mo +0 -0
  1593. data/vendor/local/share/locale/or/LC_MESSAGES/gtk20-properties.mo +0 -0
  1594. data/vendor/local/share/locale/or/LC_MESSAGES/gtk20.mo +0 -0
  1595. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20-properties.mo +0 -0
  1596. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20.mo +0 -0
  1597. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1598. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
  1599. data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20-properties.mo +0 -0
  1600. data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20.mo +0 -0
  1601. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20-properties.mo +0 -0
  1602. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20.mo +0 -0
  1603. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo +0 -0
  1604. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20.mo +0 -0
  1605. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20-properties.mo +0 -0
  1606. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20.mo +0 -0
  1607. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
  1608. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
  1609. data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20-properties.mo +0 -0
  1610. data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20.mo +0 -0
  1611. data/vendor/local/share/locale/si/LC_MESSAGES/gtk20-properties.mo +0 -0
  1612. data/vendor/local/share/locale/si/LC_MESSAGES/gtk20.mo +0 -0
  1613. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1614. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20.mo +0 -0
  1615. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1616. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
  1617. data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20-properties.mo +0 -0
  1618. data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20.mo +0 -0
  1619. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1620. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20.mo +0 -0
  1621. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo +0 -0
  1622. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20.mo +0 -0
  1623. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
  1624. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20.mo +0 -0
  1625. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20-properties.mo +0 -0
  1626. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20.mo +0 -0
  1627. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20-properties.mo +0 -0
  1628. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20.mo +0 -0
  1629. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20-properties.mo +0 -0
  1630. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
  1631. data/vendor/local/share/locale/th/LC_MESSAGES/gtk20-properties.mo +0 -0
  1632. data/vendor/local/share/locale/th/LC_MESSAGES/gtk20.mo +0 -0
  1633. data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1634. data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20.mo +0 -0
  1635. data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1636. data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20.mo +0 -0
  1637. data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20-properties.mo +0 -0
  1638. data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20.mo +0 -0
  1639. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20-properties.mo +0 -0
  1640. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20.mo +0 -0
  1641. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1642. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20.mo +0 -0
  1643. data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20-properties.mo +0 -0
  1644. data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20.mo +0 -0
  1645. data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20-properties.mo +0 -0
  1646. data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20.mo +0 -0
  1647. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20-properties.mo +0 -0
  1648. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo +0 -0
  1649. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1650. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20.mo +0 -0
  1651. data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20-properties.mo +0 -0
  1652. data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20.mo +0 -0
  1653. data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20-properties.mo +0 -0
  1654. data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20.mo +0 -0
  1655. data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1656. data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20.mo +0 -0
  1657. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo +0 -0
  1658. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20.mo +0 -0
  1659. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20-properties.mo +0 -0
  1660. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
  1661. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo +0 -0
  1662. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
  1663. data/vendor/local/share/themes/Default/gtk-2.0-key/gtkrc +3 -0
  1664. data/vendor/local/share/themes/Emacs/gtk-2.0-key/gtkrc +113 -0
  1665. data/vendor/local/share/themes/MS-Windows/gtk-2.0/gtkrc +66 -0
  1666. data/vendor/local/share/themes/Raleigh/gtk-2.0/gtkrc +3 -0
  1667. metadata +1750 -0
@@ -0,0 +1,3279 @@
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>GTK+ 2 Reference Manual: GtkCTree</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
8
+ <link rel="up" href="DeprecatedObjects.html" title="Deprecated">
9
+ <link rel="prev" href="GtkCList.html" title="GtkCList">
10
+ <link rel="next" href="GtkCombo.html" title="GtkCombo">
11
+ <meta name="generator" content="GTK-Doc V1.21.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="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#GtkCTree.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#GtkCTree.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces">  <span class="dim">|</span> 
20
+ <a href="#GtkCTree.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties">  <span class="dim">|</span> 
21
+ <a href="#GtkCTree.properties" class="shortcut">Properties</a></span><span id="nav_signals">  <span class="dim">|</span> 
22
+ <a href="#GtkCTree.signals" class="shortcut">Signals</a></span>
23
+ </td>
24
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
25
+ <td><a accesskey="u" href="DeprecatedObjects.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
26
+ <td><a accesskey="p" href="GtkCList.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
27
+ <td><a accesskey="n" href="GtkCombo.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
28
+ </tr></table>
29
+ <div class="refentry">
30
+ <a name="GtkCTree"></a><div class="titlepage"></div>
31
+ <div class="refnamediv"><table width="100%"><tr>
32
+ <td valign="top">
33
+ <h2><span class="refentrytitle"><a name="GtkCTree.top_of_page"></a>GtkCTree</span></h2>
34
+ <p>GtkCTree — A widget displaying a hierarchical tree</p>
35
+ </td>
36
+ <td class="gallery_image" valign="top" align="right"></td>
37
+ </tr></table></div>
38
+ <div class="refsect1">
39
+ <a name="GtkCTree.functions"></a><h2>Functions</h2>
40
+ <div class="informaltable"><table width="100%" border="0">
41
+ <colgroup>
42
+ <col width="150px" class="functions_return">
43
+ <col class="functions_name">
44
+ </colgroup>
45
+ <tbody>
46
+ <tr>
47
+ <td class="define_keyword">#define</td>
48
+ <td class="function_name">
49
+ <a class="link" href="GtkCTree.html#GTK-CTREE-ROW:CAPS" title="GTK_CTREE_ROW()">GTK_CTREE_ROW</a><span class="c_punctuation">()</span>
50
+ </td>
51
+ </tr>
52
+ <tr>
53
+ <td class="define_keyword">#define</td>
54
+ <td class="function_name">
55
+ <a class="link" href="GtkCTree.html#GTK-CTREE-NODE:CAPS" title="GTK_CTREE_NODE()">GTK_CTREE_NODE</a><span class="c_punctuation">()</span>
56
+ </td>
57
+ </tr>
58
+ <tr>
59
+ <td class="define_keyword">#define</td>
60
+ <td class="function_name">
61
+ <a class="link" href="GtkCTree.html#GTK-CTREE-NODE-NEXT:CAPS" title="GTK_CTREE_NODE_NEXT()">GTK_CTREE_NODE_NEXT</a><span class="c_punctuation">()</span>
62
+ </td>
63
+ </tr>
64
+ <tr>
65
+ <td class="define_keyword">#define</td>
66
+ <td class="function_name">
67
+ <a class="link" href="GtkCTree.html#GTK-CTREE-NODE-PREV:CAPS" title="GTK_CTREE_NODE_PREV()">GTK_CTREE_NODE_PREV</a><span class="c_punctuation">()</span>
68
+ </td>
69
+ </tr>
70
+ <tr>
71
+ <td class="define_keyword">#define</td>
72
+ <td class="function_name">
73
+ <a class="link" href="GtkCTree.html#GTK-CTREE-FUNC:CAPS" title="GTK_CTREE_FUNC()">GTK_CTREE_FUNC</a><span class="c_punctuation">()</span>
74
+ </td>
75
+ </tr>
76
+ <tr>
77
+ <td class="function_type">
78
+ <span class="returnvalue">void</span>
79
+ </td>
80
+ <td class="function_name">
81
+ <span class="c_punctuation">(</span><a class="link" href="GtkCTree.html#GtkCTreeFunc" title="GtkCTreeFunc ()">*GtkCTreeFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
82
+ </td>
83
+ </tr>
84
+ <tr>
85
+ <td class="function_type">
86
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
87
+ </td>
88
+ <td class="function_name">
89
+ <span class="c_punctuation">(</span><a class="link" href="GtkCTree.html#GtkCTreeGNodeFunc" title="GtkCTreeGNodeFunc ()">*GtkCTreeGNodeFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
90
+ </td>
91
+ </tr>
92
+ <tr>
93
+ <td class="function_type">
94
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
95
+ </td>
96
+ <td class="function_name">
97
+ <span class="c_punctuation">(</span><a class="link" href="GtkCTree.html#GtkCTreeCompareDragFunc" title="GtkCTreeCompareDragFunc ()">*GtkCTreeCompareDragFunc</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
98
+ </td>
99
+ </tr>
100
+ <tr>
101
+ <td class="define_keyword">#define</td>
102
+ <td class="function_name"><a class="link" href="GtkCTree.html#GTK-TYPE-CTREE-NODE:CAPS" title="GTK_TYPE_CTREE_NODE">GTK_TYPE_CTREE_NODE</a></td>
103
+ </tr>
104
+ <tr>
105
+ <td class="function_type">
106
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
107
+ </td>
108
+ <td class="function_name">
109
+ <a class="link" href="GtkCTree.html#gtk-ctree-new-with-titles" title="gtk_ctree_new_with_titles ()">gtk_ctree_new_with_titles</a> <span class="c_punctuation">()</span>
110
+ </td>
111
+ </tr>
112
+ <tr>
113
+ <td class="function_type">
114
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
115
+ </td>
116
+ <td class="function_name">
117
+ <a class="link" href="GtkCTree.html#gtk-ctree-new" title="gtk_ctree_new ()">gtk_ctree_new</a> <span class="c_punctuation">()</span>
118
+ </td>
119
+ </tr>
120
+ <tr>
121
+ <td class="function_type">
122
+ <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="returnvalue">GtkCTreeNode</span></a> *
123
+ </td>
124
+ <td class="function_name">
125
+ <a class="link" href="GtkCTree.html#gtk-ctree-insert-node" title="gtk_ctree_insert_node ()">gtk_ctree_insert_node</a> <span class="c_punctuation">()</span>
126
+ </td>
127
+ </tr>
128
+ <tr>
129
+ <td class="function_type">
130
+ <span class="returnvalue">void</span>
131
+ </td>
132
+ <td class="function_name">
133
+ <a class="link" href="GtkCTree.html#gtk-ctree-remove-node" title="gtk_ctree_remove_node ()">gtk_ctree_remove_node</a> <span class="c_punctuation">()</span>
134
+ </td>
135
+ </tr>
136
+ <tr>
137
+ <td class="function_type">
138
+ <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="returnvalue">GtkCTreeNode</span></a> *
139
+ </td>
140
+ <td class="function_name">
141
+ <a class="link" href="GtkCTree.html#gtk-ctree-insert-gnode" title="gtk_ctree_insert_gnode ()">gtk_ctree_insert_gnode</a> <span class="c_punctuation">()</span>
142
+ </td>
143
+ </tr>
144
+ <tr>
145
+ <td class="function_type">
146
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html#GNode"><span class="returnvalue">GNode</span></a> *
147
+ </td>
148
+ <td class="function_name">
149
+ <a class="link" href="GtkCTree.html#gtk-ctree-export-to-gnode" title="gtk_ctree_export_to_gnode ()">gtk_ctree_export_to_gnode</a> <span class="c_punctuation">()</span>
150
+ </td>
151
+ </tr>
152
+ <tr>
153
+ <td class="function_type">
154
+ <span class="returnvalue">void</span>
155
+ </td>
156
+ <td class="function_name">
157
+ <a class="link" href="GtkCTree.html#gtk-ctree-post-recursive" title="gtk_ctree_post_recursive ()">gtk_ctree_post_recursive</a> <span class="c_punctuation">()</span>
158
+ </td>
159
+ </tr>
160
+ <tr>
161
+ <td class="function_type">
162
+ <span class="returnvalue">void</span>
163
+ </td>
164
+ <td class="function_name">
165
+ <a class="link" href="GtkCTree.html#gtk-ctree-post-recursive-to-depth" title="gtk_ctree_post_recursive_to_depth ()">gtk_ctree_post_recursive_to_depth</a> <span class="c_punctuation">()</span>
166
+ </td>
167
+ </tr>
168
+ <tr>
169
+ <td class="function_type">
170
+ <span class="returnvalue">void</span>
171
+ </td>
172
+ <td class="function_name">
173
+ <a class="link" href="GtkCTree.html#gtk-ctree-pre-recursive" title="gtk_ctree_pre_recursive ()">gtk_ctree_pre_recursive</a> <span class="c_punctuation">()</span>
174
+ </td>
175
+ </tr>
176
+ <tr>
177
+ <td class="function_type">
178
+ <span class="returnvalue">void</span>
179
+ </td>
180
+ <td class="function_name">
181
+ <a class="link" href="GtkCTree.html#gtk-ctree-pre-recursive-to-depth" title="gtk_ctree_pre_recursive_to_depth ()">gtk_ctree_pre_recursive_to_depth</a> <span class="c_punctuation">()</span>
182
+ </td>
183
+ </tr>
184
+ <tr>
185
+ <td class="function_type">
186
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
187
+ </td>
188
+ <td class="function_name">
189
+ <a class="link" href="GtkCTree.html#gtk-ctree-is-viewable" title="gtk_ctree_is_viewable ()">gtk_ctree_is_viewable</a> <span class="c_punctuation">()</span>
190
+ </td>
191
+ </tr>
192
+ <tr>
193
+ <td class="function_type">
194
+ <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="returnvalue">GtkCTreeNode</span></a> *
195
+ </td>
196
+ <td class="function_name">
197
+ <a class="link" href="GtkCTree.html#gtk-ctree-last" title="gtk_ctree_last ()">gtk_ctree_last</a> <span class="c_punctuation">()</span>
198
+ </td>
199
+ </tr>
200
+ <tr>
201
+ <td class="function_type">
202
+ <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="returnvalue">GtkCTreeNode</span></a> *
203
+ </td>
204
+ <td class="function_name">
205
+ <a class="link" href="GtkCTree.html#gtk-ctree-find-node-ptr" title="gtk_ctree_find_node_ptr ()">gtk_ctree_find_node_ptr</a> <span class="c_punctuation">()</span>
206
+ </td>
207
+ </tr>
208
+ <tr>
209
+ <td class="function_type">
210
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
211
+ </td>
212
+ <td class="function_name">
213
+ <a class="link" href="GtkCTree.html#gtk-ctree-find" title="gtk_ctree_find ()">gtk_ctree_find</a> <span class="c_punctuation">()</span>
214
+ </td>
215
+ </tr>
216
+ <tr>
217
+ <td class="function_type">
218
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
219
+ </td>
220
+ <td class="function_name">
221
+ <a class="link" href="GtkCTree.html#gtk-ctree-is-ancestor" title="gtk_ctree_is_ancestor ()">gtk_ctree_is_ancestor</a> <span class="c_punctuation">()</span>
222
+ </td>
223
+ </tr>
224
+ <tr>
225
+ <td class="function_type">
226
+ <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="returnvalue">GtkCTreeNode</span></a> *
227
+ </td>
228
+ <td class="function_name">
229
+ <a class="link" href="GtkCTree.html#gtk-ctree-find-by-row-data" title="gtk_ctree_find_by_row_data ()">gtk_ctree_find_by_row_data</a> <span class="c_punctuation">()</span>
230
+ </td>
231
+ </tr>
232
+ <tr>
233
+ <td class="function_type">
234
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
235
+ </td>
236
+ <td class="function_name">
237
+ <a class="link" href="GtkCTree.html#gtk-ctree-find-all-by-row-data" title="gtk_ctree_find_all_by_row_data ()">gtk_ctree_find_all_by_row_data</a> <span class="c_punctuation">()</span>
238
+ </td>
239
+ </tr>
240
+ <tr>
241
+ <td class="function_type">
242
+ <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="returnvalue">GtkCTreeNode</span></a> *
243
+ </td>
244
+ <td class="function_name">
245
+ <a class="link" href="GtkCTree.html#gtk-ctree-find-by-row-data-custom" title="gtk_ctree_find_by_row_data_custom ()">gtk_ctree_find_by_row_data_custom</a> <span class="c_punctuation">()</span>
246
+ </td>
247
+ </tr>
248
+ <tr>
249
+ <td class="function_type">
250
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
251
+ </td>
252
+ <td class="function_name">
253
+ <a class="link" href="GtkCTree.html#gtk-ctree-find-all-by-row-data-custom" title="gtk_ctree_find_all_by_row_data_custom ()">gtk_ctree_find_all_by_row_data_custom</a> <span class="c_punctuation">()</span>
254
+ </td>
255
+ </tr>
256
+ <tr>
257
+ <td class="function_type">
258
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
259
+ </td>
260
+ <td class="function_name">
261
+ <a class="link" href="GtkCTree.html#gtk-ctree-is-hot-spot" title="gtk_ctree_is_hot_spot ()">gtk_ctree_is_hot_spot</a> <span class="c_punctuation">()</span>
262
+ </td>
263
+ </tr>
264
+ <tr>
265
+ <td class="function_type">
266
+ <span class="returnvalue">void</span>
267
+ </td>
268
+ <td class="function_name">
269
+ <a class="link" href="GtkCTree.html#gtk-ctree-move" title="gtk_ctree_move ()">gtk_ctree_move</a> <span class="c_punctuation">()</span>
270
+ </td>
271
+ </tr>
272
+ <tr>
273
+ <td class="function_type">
274
+ <span class="returnvalue">void</span>
275
+ </td>
276
+ <td class="function_name">
277
+ <a class="link" href="GtkCTree.html#gtk-ctree-expand" title="gtk_ctree_expand ()">gtk_ctree_expand</a> <span class="c_punctuation">()</span>
278
+ </td>
279
+ </tr>
280
+ <tr>
281
+ <td class="function_type">
282
+ <span class="returnvalue">void</span>
283
+ </td>
284
+ <td class="function_name">
285
+ <a class="link" href="GtkCTree.html#gtk-ctree-expand-recursive" title="gtk_ctree_expand_recursive ()">gtk_ctree_expand_recursive</a> <span class="c_punctuation">()</span>
286
+ </td>
287
+ </tr>
288
+ <tr>
289
+ <td class="function_type">
290
+ <span class="returnvalue">void</span>
291
+ </td>
292
+ <td class="function_name">
293
+ <a class="link" href="GtkCTree.html#gtk-ctree-expand-to-depth" title="gtk_ctree_expand_to_depth ()">gtk_ctree_expand_to_depth</a> <span class="c_punctuation">()</span>
294
+ </td>
295
+ </tr>
296
+ <tr>
297
+ <td class="function_type">
298
+ <span class="returnvalue">void</span>
299
+ </td>
300
+ <td class="function_name">
301
+ <a class="link" href="GtkCTree.html#gtk-ctree-collapse" title="gtk_ctree_collapse ()">gtk_ctree_collapse</a> <span class="c_punctuation">()</span>
302
+ </td>
303
+ </tr>
304
+ <tr>
305
+ <td class="function_type">
306
+ <span class="returnvalue">void</span>
307
+ </td>
308
+ <td class="function_name">
309
+ <a class="link" href="GtkCTree.html#gtk-ctree-collapse-recursive" title="gtk_ctree_collapse_recursive ()">gtk_ctree_collapse_recursive</a> <span class="c_punctuation">()</span>
310
+ </td>
311
+ </tr>
312
+ <tr>
313
+ <td class="function_type">
314
+ <span class="returnvalue">void</span>
315
+ </td>
316
+ <td class="function_name">
317
+ <a class="link" href="GtkCTree.html#gtk-ctree-collapse-to-depth" title="gtk_ctree_collapse_to_depth ()">gtk_ctree_collapse_to_depth</a> <span class="c_punctuation">()</span>
318
+ </td>
319
+ </tr>
320
+ <tr>
321
+ <td class="function_type">
322
+ <span class="returnvalue">void</span>
323
+ </td>
324
+ <td class="function_name">
325
+ <a class="link" href="GtkCTree.html#gtk-ctree-toggle-expansion" title="gtk_ctree_toggle_expansion ()">gtk_ctree_toggle_expansion</a> <span class="c_punctuation">()</span>
326
+ </td>
327
+ </tr>
328
+ <tr>
329
+ <td class="function_type">
330
+ <span class="returnvalue">void</span>
331
+ </td>
332
+ <td class="function_name">
333
+ <a class="link" href="GtkCTree.html#gtk-ctree-toggle-expansion-recursive" title="gtk_ctree_toggle_expansion_recursive ()">gtk_ctree_toggle_expansion_recursive</a> <span class="c_punctuation">()</span>
334
+ </td>
335
+ </tr>
336
+ <tr>
337
+ <td class="function_type">
338
+ <span class="returnvalue">void</span>
339
+ </td>
340
+ <td class="function_name">
341
+ <a class="link" href="GtkCTree.html#gtk-ctree-select" title="gtk_ctree_select ()">gtk_ctree_select</a> <span class="c_punctuation">()</span>
342
+ </td>
343
+ </tr>
344
+ <tr>
345
+ <td class="function_type">
346
+ <span class="returnvalue">void</span>
347
+ </td>
348
+ <td class="function_name">
349
+ <a class="link" href="GtkCTree.html#gtk-ctree-select-recursive" title="gtk_ctree_select_recursive ()">gtk_ctree_select_recursive</a> <span class="c_punctuation">()</span>
350
+ </td>
351
+ </tr>
352
+ <tr>
353
+ <td class="function_type">
354
+ <span class="returnvalue">void</span>
355
+ </td>
356
+ <td class="function_name">
357
+ <a class="link" href="GtkCTree.html#gtk-ctree-unselect" title="gtk_ctree_unselect ()">gtk_ctree_unselect</a> <span class="c_punctuation">()</span>
358
+ </td>
359
+ </tr>
360
+ <tr>
361
+ <td class="function_type">
362
+ <span class="returnvalue">void</span>
363
+ </td>
364
+ <td class="function_name">
365
+ <a class="link" href="GtkCTree.html#gtk-ctree-unselect-recursive" title="gtk_ctree_unselect_recursive ()">gtk_ctree_unselect_recursive</a> <span class="c_punctuation">()</span>
366
+ </td>
367
+ </tr>
368
+ <tr>
369
+ <td class="function_type">
370
+ <span class="returnvalue">void</span>
371
+ </td>
372
+ <td class="function_name">
373
+ <a class="link" href="GtkCTree.html#gtk-ctree-real-select-recursive" title="gtk_ctree_real_select_recursive ()">gtk_ctree_real_select_recursive</a> <span class="c_punctuation">()</span>
374
+ </td>
375
+ </tr>
376
+ <tr>
377
+ <td class="function_type">
378
+ <span class="returnvalue">void</span>
379
+ </td>
380
+ <td class="function_name">
381
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-set-text" title="gtk_ctree_node_set_text ()">gtk_ctree_node_set_text</a> <span class="c_punctuation">()</span>
382
+ </td>
383
+ </tr>
384
+ <tr>
385
+ <td class="function_type">
386
+ <span class="returnvalue">void</span>
387
+ </td>
388
+ <td class="function_name">
389
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-set-pixmap" title="gtk_ctree_node_set_pixmap ()">gtk_ctree_node_set_pixmap</a> <span class="c_punctuation">()</span>
390
+ </td>
391
+ </tr>
392
+ <tr>
393
+ <td class="function_type">
394
+ <span class="returnvalue">void</span>
395
+ </td>
396
+ <td class="function_name">
397
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-set-pixtext" title="gtk_ctree_node_set_pixtext ()">gtk_ctree_node_set_pixtext</a> <span class="c_punctuation">()</span>
398
+ </td>
399
+ </tr>
400
+ <tr>
401
+ <td class="function_type">
402
+ <span class="returnvalue">void</span>
403
+ </td>
404
+ <td class="function_name">
405
+ <a class="link" href="GtkCTree.html#gtk-ctree-set-node-info" title="gtk_ctree_set_node_info ()">gtk_ctree_set_node_info</a> <span class="c_punctuation">()</span>
406
+ </td>
407
+ </tr>
408
+ <tr>
409
+ <td class="function_type">
410
+ <span class="returnvalue">void</span>
411
+ </td>
412
+ <td class="function_name">
413
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-set-shift" title="gtk_ctree_node_set_shift ()">gtk_ctree_node_set_shift</a> <span class="c_punctuation">()</span>
414
+ </td>
415
+ </tr>
416
+ <tr>
417
+ <td class="function_type">
418
+ <span class="returnvalue">void</span>
419
+ </td>
420
+ <td class="function_name">
421
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-set-selectable" title="gtk_ctree_node_set_selectable ()">gtk_ctree_node_set_selectable</a> <span class="c_punctuation">()</span>
422
+ </td>
423
+ </tr>
424
+ <tr>
425
+ <td class="function_type">
426
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
427
+ </td>
428
+ <td class="function_name">
429
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-get-selectable" title="gtk_ctree_node_get_selectable ()">gtk_ctree_node_get_selectable</a> <span class="c_punctuation">()</span>
430
+ </td>
431
+ </tr>
432
+ <tr>
433
+ <td class="function_type">
434
+ <a class="link" href="GtkCList.html#GtkCellType" title="enum GtkCellType"><span class="returnvalue">GtkCellType</span></a>
435
+ </td>
436
+ <td class="function_name">
437
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-get-cell-type" title="gtk_ctree_node_get_cell_type ()">gtk_ctree_node_get_cell_type</a> <span class="c_punctuation">()</span>
438
+ </td>
439
+ </tr>
440
+ <tr>
441
+ <td class="function_type">
442
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
443
+ </td>
444
+ <td class="function_name">
445
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-get-text" title="gtk_ctree_node_get_text ()">gtk_ctree_node_get_text</a> <span class="c_punctuation">()</span>
446
+ </td>
447
+ </tr>
448
+ <tr>
449
+ <td class="function_type">
450
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
451
+ </td>
452
+ <td class="function_name">
453
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-get-pixmap" title="gtk_ctree_node_get_pixmap ()">gtk_ctree_node_get_pixmap</a> <span class="c_punctuation">()</span>
454
+ </td>
455
+ </tr>
456
+ <tr>
457
+ <td class="function_type">
458
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
459
+ </td>
460
+ <td class="function_name">
461
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-get-pixtext" title="gtk_ctree_node_get_pixtext ()">gtk_ctree_node_get_pixtext</a> <span class="c_punctuation">()</span>
462
+ </td>
463
+ </tr>
464
+ <tr>
465
+ <td class="function_type">
466
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
467
+ </td>
468
+ <td class="function_name">
469
+ <a class="link" href="GtkCTree.html#gtk-ctree-get-node-info" title="gtk_ctree_get_node_info ()">gtk_ctree_get_node_info</a> <span class="c_punctuation">()</span>
470
+ </td>
471
+ </tr>
472
+ <tr>
473
+ <td class="function_type">
474
+ <span class="returnvalue">void</span>
475
+ </td>
476
+ <td class="function_name">
477
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-set-row-style" title="gtk_ctree_node_set_row_style ()">gtk_ctree_node_set_row_style</a> <span class="c_punctuation">()</span>
478
+ </td>
479
+ </tr>
480
+ <tr>
481
+ <td class="function_type">
482
+ <a class="link" href="GtkStyle.html" title="Styles"><span class="returnvalue">GtkStyle</span></a> *
483
+ </td>
484
+ <td class="function_name">
485
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-get-row-style" title="gtk_ctree_node_get_row_style ()">gtk_ctree_node_get_row_style</a> <span class="c_punctuation">()</span>
486
+ </td>
487
+ </tr>
488
+ <tr>
489
+ <td class="function_type">
490
+ <span class="returnvalue">void</span>
491
+ </td>
492
+ <td class="function_name">
493
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-set-cell-style" title="gtk_ctree_node_set_cell_style ()">gtk_ctree_node_set_cell_style</a> <span class="c_punctuation">()</span>
494
+ </td>
495
+ </tr>
496
+ <tr>
497
+ <td class="function_type">
498
+ <a class="link" href="GtkStyle.html" title="Styles"><span class="returnvalue">GtkStyle</span></a> *
499
+ </td>
500
+ <td class="function_name">
501
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-get-cell-style" title="gtk_ctree_node_get_cell_style ()">gtk_ctree_node_get_cell_style</a> <span class="c_punctuation">()</span>
502
+ </td>
503
+ </tr>
504
+ <tr>
505
+ <td class="function_type">
506
+ <span class="returnvalue">void</span>
507
+ </td>
508
+ <td class="function_name">
509
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-set-foreground" title="gtk_ctree_node_set_foreground ()">gtk_ctree_node_set_foreground</a> <span class="c_punctuation">()</span>
510
+ </td>
511
+ </tr>
512
+ <tr>
513
+ <td class="function_type">
514
+ <span class="returnvalue">void</span>
515
+ </td>
516
+ <td class="function_name">
517
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-set-background" title="gtk_ctree_node_set_background ()">gtk_ctree_node_set_background</a> <span class="c_punctuation">()</span>
518
+ </td>
519
+ </tr>
520
+ <tr>
521
+ <td class="function_type">
522
+ <span class="returnvalue">void</span>
523
+ </td>
524
+ <td class="function_name">
525
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-set-row-data" title="gtk_ctree_node_set_row_data ()">gtk_ctree_node_set_row_data</a> <span class="c_punctuation">()</span>
526
+ </td>
527
+ </tr>
528
+ <tr>
529
+ <td class="function_type">
530
+ <span class="returnvalue">void</span>
531
+ </td>
532
+ <td class="function_name">
533
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-set-row-data-full" title="gtk_ctree_node_set_row_data_full ()">gtk_ctree_node_set_row_data_full</a> <span class="c_punctuation">()</span>
534
+ </td>
535
+ </tr>
536
+ <tr>
537
+ <td class="function_type">
538
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
539
+ </td>
540
+ <td class="function_name">
541
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-get-row-data" title="gtk_ctree_node_get_row_data ()">gtk_ctree_node_get_row_data</a> <span class="c_punctuation">()</span>
542
+ </td>
543
+ </tr>
544
+ <tr>
545
+ <td class="function_type">
546
+ <span class="returnvalue">void</span>
547
+ </td>
548
+ <td class="function_name">
549
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-moveto" title="gtk_ctree_node_moveto ()">gtk_ctree_node_moveto</a> <span class="c_punctuation">()</span>
550
+ </td>
551
+ </tr>
552
+ <tr>
553
+ <td class="function_type">
554
+ <a class="link" href="gtk2-Standard-Enumerations.html#GtkVisibility" title="enum GtkVisibility"><span class="returnvalue">GtkVisibility</span></a>
555
+ </td>
556
+ <td class="function_name">
557
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-is-visible" title="gtk_ctree_node_is_visible ()">gtk_ctree_node_is_visible</a> <span class="c_punctuation">()</span>
558
+ </td>
559
+ </tr>
560
+ <tr>
561
+ <td class="function_type">
562
+ <span class="returnvalue">void</span>
563
+ </td>
564
+ <td class="function_name">
565
+ <a class="link" href="GtkCTree.html#gtk-ctree-set-indent" title="gtk_ctree_set_indent ()">gtk_ctree_set_indent</a> <span class="c_punctuation">()</span>
566
+ </td>
567
+ </tr>
568
+ <tr>
569
+ <td class="function_type">
570
+ <span class="returnvalue">void</span>
571
+ </td>
572
+ <td class="function_name">
573
+ <a class="link" href="GtkCTree.html#gtk-ctree-set-spacing" title="gtk_ctree_set_spacing ()">gtk_ctree_set_spacing</a> <span class="c_punctuation">()</span>
574
+ </td>
575
+ </tr>
576
+ <tr>
577
+ <td class="define_keyword">#define</td>
578
+ <td class="function_name">
579
+ <a class="link" href="GtkCTree.html#gtk-ctree-set-reorderable" title="gtk_ctree_set_reorderable()">gtk_ctree_set_reorderable</a><span class="c_punctuation">()</span>
580
+ </td>
581
+ </tr>
582
+ <tr>
583
+ <td class="function_type">
584
+ <span class="returnvalue">void</span>
585
+ </td>
586
+ <td class="function_name">
587
+ <a class="link" href="GtkCTree.html#gtk-ctree-set-line-style" title="gtk_ctree_set_line_style ()">gtk_ctree_set_line_style</a> <span class="c_punctuation">()</span>
588
+ </td>
589
+ </tr>
590
+ <tr>
591
+ <td class="function_type">
592
+ <span class="returnvalue">void</span>
593
+ </td>
594
+ <td class="function_name">
595
+ <a class="link" href="GtkCTree.html#gtk-ctree-set-expander-style" title="gtk_ctree_set_expander_style ()">gtk_ctree_set_expander_style</a> <span class="c_punctuation">()</span>
596
+ </td>
597
+ </tr>
598
+ <tr>
599
+ <td class="function_type">
600
+ <span class="returnvalue">void</span>
601
+ </td>
602
+ <td class="function_name">
603
+ <a class="link" href="GtkCTree.html#gtk-ctree-set-drag-compare-func" title="gtk_ctree_set_drag_compare_func ()">gtk_ctree_set_drag_compare_func</a> <span class="c_punctuation">()</span>
604
+ </td>
605
+ </tr>
606
+ <tr>
607
+ <td class="function_type">
608
+ <span class="returnvalue">void</span>
609
+ </td>
610
+ <td class="function_name">
611
+ <a class="link" href="GtkCTree.html#gtk-ctree-sort-node" title="gtk_ctree_sort_node ()">gtk_ctree_sort_node</a> <span class="c_punctuation">()</span>
612
+ </td>
613
+ </tr>
614
+ <tr>
615
+ <td class="function_type">
616
+ <span class="returnvalue">void</span>
617
+ </td>
618
+ <td class="function_name">
619
+ <a class="link" href="GtkCTree.html#gtk-ctree-sort-recursive" title="gtk_ctree_sort_recursive ()">gtk_ctree_sort_recursive</a> <span class="c_punctuation">()</span>
620
+ </td>
621
+ </tr>
622
+ <tr>
623
+ <td class="function_type">
624
+ <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="returnvalue">GtkCTreeNode</span></a> *
625
+ </td>
626
+ <td class="function_name">
627
+ <a class="link" href="GtkCTree.html#gtk-ctree-node-nth" title="gtk_ctree_node_nth ()">gtk_ctree_node_nth</a> <span class="c_punctuation">()</span>
628
+ </td>
629
+ </tr>
630
+ <tr>
631
+ <td class="function_type">
632
+ <span class="returnvalue">void</span>
633
+ </td>
634
+ <td class="function_name">
635
+ <a class="link" href="GtkCTree.html#gtk-ctree-set-show-stub" title="gtk_ctree_set_show_stub ()">gtk_ctree_set_show_stub</a> <span class="c_punctuation">()</span>
636
+ </td>
637
+ </tr>
638
+ </tbody>
639
+ </table></div>
640
+ </div>
641
+ <div class="refsect1">
642
+ <a name="GtkCTree.properties"></a><h2>Properties</h2>
643
+ <div class="informaltable"><table border="0">
644
+ <colgroup>
645
+ <col width="150px" class="properties_type">
646
+ <col width="300px" class="properties_name">
647
+ <col width="200px" class="properties_flags">
648
+ </colgroup>
649
+ <tbody>
650
+ <tr>
651
+ <td class="property_type"><a class="link" href="GtkCTree.html#GtkCTreeExpanderStyle" title="enum GtkCTreeExpanderStyle"><span class="type">GtkCTreeExpanderStyle</span></a></td>
652
+ <td class="property_name"><a class="link" href="GtkCTree.html#GtkCTree--expander-style" title="The “expander-style” property">expander-style</a></td>
653
+ <td class="property_flags">Read / Write</td>
654
+ </tr>
655
+ <tr>
656
+ <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td>
657
+ <td class="property_name"><a class="link" href="GtkCTree.html#GtkCTree--indent" title="The “indent” property">indent</a></td>
658
+ <td class="property_flags">Read / Write</td>
659
+ </tr>
660
+ <tr>
661
+ <td class="property_type"><a class="link" href="GtkCTree.html#GtkCTreeLineStyle" title="enum GtkCTreeLineStyle"><span class="type">GtkCTreeLineStyle</span></a></td>
662
+ <td class="property_name"><a class="link" href="GtkCTree.html#GtkCTree--line-style" title="The “line-style” property">line-style</a></td>
663
+ <td class="property_flags">Read / Write</td>
664
+ </tr>
665
+ <tr>
666
+ <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td>
667
+ <td class="property_name"><a class="link" href="GtkCTree.html#GtkCTree--n-columns" title="The “n-columns” property">n-columns</a></td>
668
+ <td class="property_flags">Read / Write / Construct Only</td>
669
+ </tr>
670
+ <tr>
671
+ <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
672
+ <td class="property_name"><a class="link" href="GtkCTree.html#GtkCTree--show-stub" title="The “show-stub” property">show-stub</a></td>
673
+ <td class="property_flags">Read / Write</td>
674
+ </tr>
675
+ <tr>
676
+ <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td>
677
+ <td class="property_name"><a class="link" href="GtkCTree.html#GtkCTree--spacing" title="The “spacing” property">spacing</a></td>
678
+ <td class="property_flags">Read / Write</td>
679
+ </tr>
680
+ <tr>
681
+ <td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td>
682
+ <td class="property_name"><a class="link" href="GtkCTree.html#GtkCTree--tree-column" title="The “tree-column” property">tree-column</a></td>
683
+ <td class="property_flags">Read / Write / Construct Only</td>
684
+ </tr>
685
+ </tbody>
686
+ </table></div>
687
+ </div>
688
+ <div class="refsect1">
689
+ <a name="GtkCTree.signals"></a><h2>Signals</h2>
690
+ <div class="informaltable"><table border="0">
691
+ <colgroup>
692
+ <col width="150px" class="signals_return">
693
+ <col width="300px" class="signals_name">
694
+ <col width="200px" class="signals_flags">
695
+ </colgroup>
696
+ <tbody>
697
+ <tr>
698
+ <td class="signal_type"><span class="returnvalue">void</span></td>
699
+ <td class="signal_name"><a class="link" href="GtkCTree.html#GtkCTree-change-focus-row-expansion" title="The “change-focus-row-expansion” signal">change-focus-row-expansion</a></td>
700
+ <td class="signal_flags">Action</td>
701
+ </tr>
702
+ <tr>
703
+ <td class="signal_type"><span class="returnvalue">void</span></td>
704
+ <td class="signal_name"><a class="link" href="GtkCTree.html#GtkCTree-tree-collapse" title="The “tree-collapse” signal">tree-collapse</a></td>
705
+ <td class="signal_flags">Run Last</td>
706
+ </tr>
707
+ <tr>
708
+ <td class="signal_type"><span class="returnvalue">void</span></td>
709
+ <td class="signal_name"><a class="link" href="GtkCTree.html#GtkCTree-tree-expand" title="The “tree-expand” signal">tree-expand</a></td>
710
+ <td class="signal_flags">Run Last</td>
711
+ </tr>
712
+ <tr>
713
+ <td class="signal_type"><span class="returnvalue">void</span></td>
714
+ <td class="signal_name"><a class="link" href="GtkCTree.html#GtkCTree-tree-move" title="The “tree-move” signal">tree-move</a></td>
715
+ <td class="signal_flags">Run Last</td>
716
+ </tr>
717
+ <tr>
718
+ <td class="signal_type"><span class="returnvalue">void</span></td>
719
+ <td class="signal_name"><a class="link" href="GtkCTree.html#GtkCTree-tree-select-row" title="The “tree-select-row” signal">tree-select-row</a></td>
720
+ <td class="signal_flags">Run First</td>
721
+ </tr>
722
+ <tr>
723
+ <td class="signal_type"><span class="returnvalue">void</span></td>
724
+ <td class="signal_name"><a class="link" href="GtkCTree.html#GtkCTree-tree-unselect-row" title="The “tree-unselect-row” signal">tree-unselect-row</a></td>
725
+ <td class="signal_flags">Run First</td>
726
+ </tr>
727
+ </tbody>
728
+ </table></div>
729
+ </div>
730
+ <div class="refsect1">
731
+ <a name="GtkCTree.other"></a><h2>Types and Values</h2>
732
+ <div class="informaltable"><table width="100%" border="0">
733
+ <colgroup>
734
+ <col width="150px" class="name">
735
+ <col class="description">
736
+ </colgroup>
737
+ <tbody>
738
+ <tr>
739
+ <td class="datatype_keyword">struct</td>
740
+ <td class="function_name"><a class="link" href="GtkCTree.html#GtkCTree-struct" title="struct GtkCTree">GtkCTree</a></td>
741
+ </tr>
742
+ <tr>
743
+ <td class="datatype_keyword">enum</td>
744
+ <td class="function_name"><a class="link" href="GtkCTree.html#GtkCTreePos" title="enum GtkCTreePos">GtkCTreePos</a></td>
745
+ </tr>
746
+ <tr>
747
+ <td class="datatype_keyword">enum</td>
748
+ <td class="function_name"><a class="link" href="GtkCTree.html#GtkCTreeLineStyle" title="enum GtkCTreeLineStyle">GtkCTreeLineStyle</a></td>
749
+ </tr>
750
+ <tr>
751
+ <td class="datatype_keyword">enum</td>
752
+ <td class="function_name"><a class="link" href="GtkCTree.html#GtkCTreeExpanderStyle" title="enum GtkCTreeExpanderStyle">GtkCTreeExpanderStyle</a></td>
753
+ </tr>
754
+ <tr>
755
+ <td class="datatype_keyword">enum</td>
756
+ <td class="function_name"><a class="link" href="GtkCTree.html#GtkCTreeExpansionType" title="enum GtkCTreeExpansionType">GtkCTreeExpansionType</a></td>
757
+ </tr>
758
+ <tr>
759
+ <td class="datatype_keyword">struct</td>
760
+ <td class="function_name"><a class="link" href="GtkCTree.html#GtkCTreeRow" title="struct GtkCTreeRow">GtkCTreeRow</a></td>
761
+ </tr>
762
+ <tr>
763
+ <td class="datatype_keyword">struct</td>
764
+ <td class="function_name"><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode">GtkCTreeNode</a></td>
765
+ </tr>
766
+ </tbody>
767
+ </table></div>
768
+ </div>
769
+ <div class="refsect1">
770
+ <a name="GtkCTree.object-hierarchy"></a><h2>Object Hierarchy</h2>
771
+ <pre class="screen"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
772
+ <span class="lineart">╰──</span> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
773
+ <span class="lineart">╰──</span> <a class="link" href="GtkObject.html" title="GtkObject">GtkObject</a>
774
+ <span class="lineart">╰──</span> <a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
775
+ <span class="lineart">╰──</span> <a class="link" href="GtkContainer.html" title="GtkContainer">GtkContainer</a>
776
+ <span class="lineart">╰──</span> <a class="link" href="GtkCList.html" title="GtkCList">GtkCList</a>
777
+ <span class="lineart">╰──</span> GtkCTree
778
+ </pre>
779
+ </div>
780
+ <div class="refsect1">
781
+ <a name="GtkCTree.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
782
+ <p>
783
+ GtkCTree implements
784
+ AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
785
+ </div>
786
+ <div class="refsect1">
787
+ <a name="GtkCTree.includes"></a><h2>Includes</h2>
788
+ <pre class="synopsis">#include &lt;gtk/gtk.h&gt;
789
+ </pre>
790
+ </div>
791
+ <div class="refsect1">
792
+ <a name="GtkCTree.description"></a><h2>Description</h2>
793
+ <p>
794
+ The <a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> widget is used for showing a hierarchical tree
795
+ to the user, for example a directory tree.
796
+ </p>
797
+ <p>
798
+ The tree is internally represented as a set of <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> structures.
799
+ </p>
800
+ <p>
801
+ The interface has much in common with the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget: rows (nodes)
802
+ can be selected by the user etc.
803
+ </p>
804
+ <p>
805
+ Positions in the tree are often indicated by two arguments, a
806
+ parent and a sibling, both <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> pointers. If the parent
807
+ is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, the position is at the root of the tree and if the sibling
808
+ is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, it will be the last child of parent, otherwise it will be
809
+ inserted just before the sibling.
810
+ </p>
811
+ <p>
812
+ GtkCTree has been deprecated since GTK+ 2.0 and should not be used
813
+ in newly written code. Use <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> instead.
814
+ </p>
815
+ </div>
816
+ <div class="refsect1">
817
+ <a name="GtkCTree.functions_details"></a><h2>Functions</h2>
818
+ <div class="refsect2">
819
+ <a name="GTK-CTREE-ROW:CAPS"></a><h3>GTK_CTREE_ROW()</h3>
820
+ <pre class="programlisting">#define GTK_CTREE_ROW(_node_) ((GtkCTreeRow *)(((GList *)(_node_))-&gt;data))
821
+ </pre>
822
+ <div class="warning"><p><code class="literal">GTK_CTREE_ROW</code> is deprecated and should not be used in newly-written code.</p></div>
823
+ <p>
824
+ Used to get the <a class="link" href="GtkCTree.html#GtkCTreeRow" title="struct GtkCTreeRow"><span class="type">GtkCTreeRow</span></a> structure corresponding to the given <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a>.
825
+ </p>
826
+ </div>
827
+ <hr>
828
+ <div class="refsect2">
829
+ <a name="GTK-CTREE-NODE:CAPS"></a><h3>GTK_CTREE_NODE()</h3>
830
+ <pre class="programlisting">#define GTK_CTREE_NODE(_node_) ((GtkCTreeNode *)((_node_)))
831
+ </pre>
832
+ <div class="warning"><p><code class="literal">GTK_CTREE_NODE</code> is deprecated and should not be used in newly-written code.</p></div>
833
+ <p>
834
+ </p>
835
+ </div>
836
+ <hr>
837
+ <div class="refsect2">
838
+ <a name="GTK-CTREE-NODE-NEXT:CAPS"></a><h3>GTK_CTREE_NODE_NEXT()</h3>
839
+ <pre class="programlisting">#define GTK_CTREE_NODE_NEXT(_nnode_) ((GtkCTreeNode *)(((GList *)(_nnode_))-&gt;next))
840
+ </pre>
841
+ <div class="warning"><p><code class="literal">GTK_CTREE_NODE_NEXT</code> is deprecated and should not be used in newly-written code.</p></div>
842
+ <p>
843
+ FIXME
844
+ </p>
845
+ </div>
846
+ <hr>
847
+ <div class="refsect2">
848
+ <a name="GTK-CTREE-NODE-PREV:CAPS"></a><h3>GTK_CTREE_NODE_PREV()</h3>
849
+ <pre class="programlisting">#define GTK_CTREE_NODE_PREV(_pnode_) ((GtkCTreeNode *)(((GList *)(_pnode_))-&gt;prev))
850
+ </pre>
851
+ <div class="warning"><p><code class="literal">GTK_CTREE_NODE_PREV</code> is deprecated and should not be used in newly-written code.</p></div>
852
+ <p>
853
+ FIXME
854
+ </p>
855
+ </div>
856
+ <hr>
857
+ <div class="refsect2">
858
+ <a name="GTK-CTREE-FUNC:CAPS"></a><h3>GTK_CTREE_FUNC()</h3>
859
+ <pre class="programlisting">#define GTK_CTREE_FUNC(_func_) ((GtkCTreeFunc)(_func_))
860
+ </pre>
861
+ <div class="warning"><p><code class="literal">GTK_CTREE_FUNC</code> is deprecated and should not be used in newly-written code.</p></div>
862
+ <p>
863
+ </p>
864
+ </div>
865
+ <hr>
866
+ <div class="refsect2">
867
+ <a name="GtkCTreeFunc"></a><h3>GtkCTreeFunc ()</h3>
868
+ <pre class="programlisting"><span class="returnvalue">void</span>
869
+ <span class="c_punctuation">(</span>*GtkCTreeFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
870
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
871
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
872
+ <div class="warning"><p><code class="literal">GtkCTreeFunc</code> is deprecated and should not be used in newly-written code.</p></div>
873
+ <p>
874
+ A generic callback type to do something with a particular node.
875
+ </p>
876
+ <div class="refsect3">
877
+ <a name="id-1.4.23.3.11.7.6"></a><h4>Parameters</h4>
878
+ <div class="informaltable"><table width="100%" border="0">
879
+ <colgroup>
880
+ <col width="150px" class="parameters_name">
881
+ <col class="parameters_description">
882
+ <col width="200px" class="parameters_annotations">
883
+ </colgroup>
884
+ <tbody>
885
+ <tr>
886
+ <td class="parameter_name"><p>ctree</p></td>
887
+ <td class="parameter_description"><p>The <a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> object.</p></td>
888
+ <td class="parameter_annotations"> </td>
889
+ </tr>
890
+ <tr>
891
+ <td class="parameter_name"><p>node</p></td>
892
+ <td class="parameter_description"><p>The <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> in the tree.</p></td>
893
+ <td class="parameter_annotations"> </td>
894
+ </tr>
895
+ <tr>
896
+ <td class="parameter_name"><p>data</p></td>
897
+ <td class="parameter_description"><p>The user data associated with the node.</p></td>
898
+ <td class="parameter_annotations"> </td>
899
+ </tr>
900
+ </tbody>
901
+ </table></div>
902
+ </div>
903
+ </div>
904
+ <hr>
905
+ <div class="refsect2">
906
+ <a name="GtkCTreeGNodeFunc"></a><h3>GtkCTreeGNodeFunc ()</h3>
907
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
908
+ <span class="c_punctuation">(</span>*GtkCTreeGNodeFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
909
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> depth</code></em>,
910
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html#GNode"><span class="type">GNode</span></a> *gnode</code></em>,
911
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *cnode</code></em>,
912
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
913
+ <div class="warning"><p><code class="literal">GtkCTreeGNodeFunc</code> is deprecated and should not be used in newly-written code.</p></div>
914
+ <p>
915
+ FIXME
916
+ </p>
917
+ <div class="refsect3">
918
+ <a name="id-1.4.23.3.11.8.6"></a><h4>Returns</h4>
919
+ <p></p>
920
+ </div>
921
+ </div>
922
+ <hr>
923
+ <div class="refsect2">
924
+ <a name="GtkCTreeCompareDragFunc"></a><h3>GtkCTreeCompareDragFunc ()</h3>
925
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
926
+ <span class="c_punctuation">(</span>*GtkCTreeCompareDragFunc<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
927
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *source_node</code></em>,
928
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *new_parent</code></em>,
929
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *new_sibling</code></em>);</pre>
930
+ <div class="warning"><p><code class="literal">GtkCTreeCompareDragFunc</code> is deprecated and should not be used in newly-written code.</p></div>
931
+ <p>
932
+ FIXME
933
+ </p>
934
+ <div class="refsect3">
935
+ <a name="id-1.4.23.3.11.9.6"></a><h4>Returns</h4>
936
+ <p></p>
937
+ </div>
938
+ </div>
939
+ <hr>
940
+ <div class="refsect2">
941
+ <a name="GTK-TYPE-CTREE-NODE:CAPS"></a><h3>GTK_TYPE_CTREE_NODE</h3>
942
+ <pre class="programlisting">#define GTK_TYPE_CTREE_NODE (gtk_ctree_node_get_type ())
943
+ </pre>
944
+ <div class="warning"><p><code class="literal">GTK_TYPE_CTREE_NODE</code> is deprecated and should not be used in newly-written code.</p></div>
945
+ <p>
946
+ </p>
947
+ </div>
948
+ <hr>
949
+ <div class="refsect2">
950
+ <a name="gtk-ctree-new-with-titles"></a><h3>gtk_ctree_new_with_titles ()</h3>
951
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
952
+ gtk_ctree_new_with_titles (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> columns</code></em>,
953
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> tree_column</code></em>,
954
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *titles[]</code></em>);</pre>
955
+ <div class="warning"><p><code class="literal">gtk_ctree_new_with_titles</code> is deprecated and should not be used in newly-written code.</p></div>
956
+ <p>
957
+ Create a new <a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> widget with the given titles for the columns.
958
+ </p>
959
+ <div class="refsect3">
960
+ <a name="id-1.4.23.3.11.11.6"></a><h4>Parameters</h4>
961
+ <div class="informaltable"><table width="100%" border="0">
962
+ <colgroup>
963
+ <col width="150px" class="parameters_name">
964
+ <col class="parameters_description">
965
+ <col width="200px" class="parameters_annotations">
966
+ </colgroup>
967
+ <tbody>
968
+ <tr>
969
+ <td class="parameter_name"><p>columns</p></td>
970
+ <td class="parameter_description"><p>Number of columns.</p></td>
971
+ <td class="parameter_annotations"> </td>
972
+ </tr>
973
+ <tr>
974
+ <td class="parameter_name"><p>tree_column</p></td>
975
+ <td class="parameter_description"><p>Which column has the tree graphic; 0 = leftmost.</p></td>
976
+ <td class="parameter_annotations"> </td>
977
+ </tr>
978
+ <tr>
979
+ <td class="parameter_name"><p>titles</p></td>
980
+ <td class="parameter_description"><p>The titles for the columns.</p></td>
981
+ <td class="parameter_annotations"> </td>
982
+ </tr>
983
+ </tbody>
984
+ </table></div>
985
+ </div>
986
+ <div class="refsect3">
987
+ <a name="id-1.4.23.3.11.11.7"></a><h4>Returns</h4>
988
+ <p>The <a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> widget.</p>
989
+ <p></p>
990
+ </div>
991
+ </div>
992
+ <hr>
993
+ <div class="refsect2">
994
+ <a name="gtk-ctree-new"></a><h3>gtk_ctree_new ()</h3>
995
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
996
+ gtk_ctree_new (<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> columns</code></em>,
997
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> tree_column</code></em>);</pre>
998
+ <div class="warning"><p><code class="literal">gtk_ctree_new</code> is deprecated and should not be used in newly-written code.</p></div>
999
+ <p>
1000
+ Create a new <a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> widget.
1001
+ </p>
1002
+ <div class="refsect3">
1003
+ <a name="id-1.4.23.3.11.12.6"></a><h4>Parameters</h4>
1004
+ <div class="informaltable"><table width="100%" border="0">
1005
+ <colgroup>
1006
+ <col width="150px" class="parameters_name">
1007
+ <col class="parameters_description">
1008
+ <col width="200px" class="parameters_annotations">
1009
+ </colgroup>
1010
+ <tbody>
1011
+ <tr>
1012
+ <td class="parameter_name"><p>columns</p></td>
1013
+ <td class="parameter_description"><p>Number of columns.</p></td>
1014
+ <td class="parameter_annotations"> </td>
1015
+ </tr>
1016
+ <tr>
1017
+ <td class="parameter_name"><p>tree_column</p></td>
1018
+ <td class="parameter_description"><p>Which columns has the tree graphic.</p></td>
1019
+ <td class="parameter_annotations"> </td>
1020
+ </tr>
1021
+ </tbody>
1022
+ </table></div>
1023
+ </div>
1024
+ <div class="refsect3">
1025
+ <a name="id-1.4.23.3.11.12.7"></a><h4>Returns</h4>
1026
+ <p>The new <a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> widget.</p>
1027
+ <p></p>
1028
+ </div>
1029
+ </div>
1030
+ <hr>
1031
+ <div class="refsect2">
1032
+ <a name="gtk-ctree-insert-node"></a><h3>gtk_ctree_insert_node ()</h3>
1033
+ <pre class="programlisting"><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="returnvalue">GtkCTreeNode</span></a> *
1034
+ gtk_ctree_insert_node (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1035
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *parent</code></em>,
1036
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *sibling</code></em>,
1037
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text[]</code></em>,
1038
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> spacing</code></em>,
1039
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *pixmap_closed</code></em>,
1040
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask_closed</code></em>,
1041
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *pixmap_opened</code></em>,
1042
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask_opened</code></em>,
1043
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> is_leaf</code></em>,
1044
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> expanded</code></em>);</pre>
1045
+ <div class="warning"><p><code class="literal">gtk_ctree_insert_node</code> is deprecated and should not be used in newly-written code.</p></div>
1046
+ <p>
1047
+ Insert a new node to the tree. The position is specified through
1048
+ the parent-sibling notation, as explained in the introduction above.
1049
+ </p>
1050
+ <div class="refsect3">
1051
+ <a name="id-1.4.23.3.11.13.6"></a><h4>Parameters</h4>
1052
+ <div class="informaltable"><table width="100%" border="0">
1053
+ <colgroup>
1054
+ <col width="150px" class="parameters_name">
1055
+ <col class="parameters_description">
1056
+ <col width="200px" class="parameters_annotations">
1057
+ </colgroup>
1058
+ <tbody>
1059
+ <tr>
1060
+ <td class="parameter_name"><p>ctree</p></td>
1061
+ <td class="parameter_description"><p>The <a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> widget.</p></td>
1062
+ <td class="parameter_annotations"> </td>
1063
+ </tr>
1064
+ <tr>
1065
+ <td class="parameter_name"><p>parent</p></td>
1066
+ <td class="parameter_description"><p>The parent node to be.</p></td>
1067
+ <td class="parameter_annotations"> </td>
1068
+ </tr>
1069
+ <tr>
1070
+ <td class="parameter_name"><p>sibling</p></td>
1071
+ <td class="parameter_description"><p>The sibling node to be.</p></td>
1072
+ <td class="parameter_annotations"> </td>
1073
+ </tr>
1074
+ <tr>
1075
+ <td class="parameter_name"><p>text</p></td>
1076
+ <td class="parameter_description"><p>The texts to be shown in each column.</p></td>
1077
+ <td class="parameter_annotations"> </td>
1078
+ </tr>
1079
+ <tr>
1080
+ <td class="parameter_name"><p>spacing</p></td>
1081
+ <td class="parameter_description"><p>The extra space between the pixmap and the text.</p></td>
1082
+ <td class="parameter_annotations"> </td>
1083
+ </tr>
1084
+ <tr>
1085
+ <td class="parameter_name"><p>pixmap_closed</p></td>
1086
+ <td class="parameter_description"><p>. </p></td>
1087
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1088
+ </tr>
1089
+ <tr>
1090
+ <td class="parameter_name"><p>mask_closed</p></td>
1091
+ <td class="parameter_description"><p>. </p></td>
1092
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1093
+ </tr>
1094
+ <tr>
1095
+ <td class="parameter_name"><p>pixmap_opened</p></td>
1096
+ <td class="parameter_description"><p>. </p></td>
1097
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1098
+ </tr>
1099
+ <tr>
1100
+ <td class="parameter_name"><p>mask_opened</p></td>
1101
+ <td class="parameter_description"><p>. </p></td>
1102
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1103
+ </tr>
1104
+ <tr>
1105
+ <td class="parameter_name"><p>is_leaf</p></td>
1106
+ <td class="parameter_description"><p>Whether this node is going to be a leaf.</p></td>
1107
+ <td class="parameter_annotations"> </td>
1108
+ </tr>
1109
+ <tr>
1110
+ <td class="parameter_name"><p>expanded</p></td>
1111
+ <td class="parameter_description"><p>Whether this node should start out expanded or not.</p></td>
1112
+ <td class="parameter_annotations"> </td>
1113
+ </tr>
1114
+ </tbody>
1115
+ </table></div>
1116
+ </div>
1117
+ <div class="refsect3">
1118
+ <a name="id-1.4.23.3.11.13.7"></a><h4>Returns</h4>
1119
+ <p></p>
1120
+ </div>
1121
+ </div>
1122
+ <hr>
1123
+ <div class="refsect2">
1124
+ <a name="gtk-ctree-remove-node"></a><h3>gtk_ctree_remove_node ()</h3>
1125
+ <pre class="programlisting"><span class="returnvalue">void</span>
1126
+ gtk_ctree_remove_node (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1127
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
1128
+ <div class="warning"><p><code class="literal">gtk_ctree_remove_node</code> is deprecated and should not be used in newly-written code.</p></div>
1129
+ <p>
1130
+ Remove the node and all nodes underneath it from the tree.
1131
+ </p>
1132
+ <div class="refsect3">
1133
+ <a name="id-1.4.23.3.11.14.6"></a><h4>Parameters</h4>
1134
+ <div class="informaltable"><table width="100%" border="0">
1135
+ <colgroup>
1136
+ <col width="150px" class="parameters_name">
1137
+ <col class="parameters_description">
1138
+ <col width="200px" class="parameters_annotations">
1139
+ </colgroup>
1140
+ <tbody>
1141
+ <tr>
1142
+ <td class="parameter_name"><p>ctree</p></td>
1143
+ <td class="parameter_description"><p>The widget.</p></td>
1144
+ <td class="parameter_annotations"> </td>
1145
+ </tr>
1146
+ <tr>
1147
+ <td class="parameter_name"><p>node</p></td>
1148
+ <td class="parameter_description"><p>The node to be removed.</p></td>
1149
+ <td class="parameter_annotations"> </td>
1150
+ </tr>
1151
+ </tbody>
1152
+ </table></div>
1153
+ </div>
1154
+ </div>
1155
+ <hr>
1156
+ <div class="refsect2">
1157
+ <a name="gtk-ctree-insert-gnode"></a><h3>gtk_ctree_insert_gnode ()</h3>
1158
+ <pre class="programlisting"><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="returnvalue">GtkCTreeNode</span></a> *
1159
+ gtk_ctree_insert_gnode (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1160
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *parent</code></em>,
1161
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *sibling</code></em>,
1162
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html#GNode"><span class="type">GNode</span></a> *gnode</code></em>,
1163
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeGNodeFunc" title="GtkCTreeGNodeFunc ()"><span class="type">GtkCTreeGNodeFunc</span></a> func</code></em>,
1164
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
1165
+ <div class="warning"><p><code class="literal">gtk_ctree_insert_gnode</code> is deprecated and should not be used in newly-written code.</p></div>
1166
+ <p>
1167
+ FIXME
1168
+ </p>
1169
+ <div class="refsect3">
1170
+ <a name="id-1.4.23.3.11.15.6"></a><h4>Returns</h4>
1171
+ <p></p>
1172
+ </div>
1173
+ </div>
1174
+ <hr>
1175
+ <div class="refsect2">
1176
+ <a name="gtk-ctree-export-to-gnode"></a><h3>gtk_ctree_export_to_gnode ()</h3>
1177
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html#GNode"><span class="returnvalue">GNode</span></a> *
1178
+ gtk_ctree_export_to_gnode (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1179
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html#GNode"><span class="type">GNode</span></a> *parent</code></em>,
1180
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html#GNode"><span class="type">GNode</span></a> *sibling</code></em>,
1181
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1182
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeGNodeFunc" title="GtkCTreeGNodeFunc ()"><span class="type">GtkCTreeGNodeFunc</span></a> func</code></em>,
1183
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
1184
+ <div class="warning"><p><code class="literal">gtk_ctree_export_to_gnode</code> is deprecated and should not be used in newly-written code.</p></div>
1185
+ <p>
1186
+ FIXME
1187
+ </p>
1188
+ <div class="refsect3">
1189
+ <a name="id-1.4.23.3.11.16.6"></a><h4>Returns</h4>
1190
+ <p></p>
1191
+ </div>
1192
+ </div>
1193
+ <hr>
1194
+ <div class="refsect2">
1195
+ <a name="gtk-ctree-post-recursive"></a><h3>gtk_ctree_post_recursive ()</h3>
1196
+ <pre class="programlisting"><span class="returnvalue">void</span>
1197
+ gtk_ctree_post_recursive (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1198
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1199
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeFunc" title="GtkCTreeFunc ()"><span class="type">GtkCTreeFunc</span></a> func</code></em>,
1200
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
1201
+ <div class="warning"><p><code class="literal">gtk_ctree_post_recursive</code> is deprecated and should not be used in newly-written code.</p></div>
1202
+ <p>
1203
+ Recursively apply a function to all nodes of the tree at or below a certain
1204
+ node.
1205
+ The function is called for each node after it has been called
1206
+ for that node's children.
1207
+ </p>
1208
+ <div class="refsect3">
1209
+ <a name="id-1.4.23.3.11.17.6"></a><h4>Parameters</h4>
1210
+ <div class="informaltable"><table width="100%" border="0">
1211
+ <colgroup>
1212
+ <col width="150px" class="parameters_name">
1213
+ <col class="parameters_description">
1214
+ <col width="200px" class="parameters_annotations">
1215
+ </colgroup>
1216
+ <tbody>
1217
+ <tr>
1218
+ <td class="parameter_name"><p>node</p></td>
1219
+ <td class="parameter_description"><p>The node where to start. <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> means to start at the root.</p></td>
1220
+ <td class="parameter_annotations"> </td>
1221
+ </tr>
1222
+ <tr>
1223
+ <td class="parameter_name"><p>func</p></td>
1224
+ <td class="parameter_description"><p>The function to apply to each node.</p></td>
1225
+ <td class="parameter_annotations"> </td>
1226
+ </tr>
1227
+ <tr>
1228
+ <td class="parameter_name"><p>data</p></td>
1229
+ <td class="parameter_description"><p>A closure argument given to each invocation of the function.</p></td>
1230
+ <td class="parameter_annotations"> </td>
1231
+ </tr>
1232
+ </tbody>
1233
+ </table></div>
1234
+ </div>
1235
+ </div>
1236
+ <hr>
1237
+ <div class="refsect2">
1238
+ <a name="gtk-ctree-post-recursive-to-depth"></a><h3>gtk_ctree_post_recursive_to_depth ()</h3>
1239
+ <pre class="programlisting"><span class="returnvalue">void</span>
1240
+ gtk_ctree_post_recursive_to_depth (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1241
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1242
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> depth</code></em>,
1243
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeFunc" title="GtkCTreeFunc ()"><span class="type">GtkCTreeFunc</span></a> func</code></em>,
1244
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
1245
+ <div class="warning"><p><code class="literal">gtk_ctree_post_recursive_to_depth</code> is deprecated and should not be used in newly-written code.</p></div>
1246
+ <p>
1247
+ Recursively apply a function to nodes up to a certain depth.
1248
+ The function is called for each node after it has been called
1249
+ for that node's children.
1250
+ </p>
1251
+ <div class="refsect3">
1252
+ <a name="id-1.4.23.3.11.18.6"></a><h4>Parameters</h4>
1253
+ <div class="informaltable"><table width="100%" border="0">
1254
+ <colgroup>
1255
+ <col width="150px" class="parameters_name">
1256
+ <col class="parameters_description">
1257
+ <col width="200px" class="parameters_annotations">
1258
+ </colgroup>
1259
+ <tbody>
1260
+ <tr>
1261
+ <td class="parameter_name"><p>node</p></td>
1262
+ <td class="parameter_description"><p>The node where to start.</p></td>
1263
+ <td class="parameter_annotations"> </td>
1264
+ </tr>
1265
+ <tr>
1266
+ <td class="parameter_name"><p>depth</p></td>
1267
+ <td class="parameter_description"><p>The maximum absolute depth for applying the function. If depth is negative, this function just calls <a class="link" href="GtkCTree.html#gtk-ctree-post-recursive" title="gtk_ctree_post_recursive ()"><span class="type">gtk_ctree_post_recursive</span></a>.</p></td>
1268
+ <td class="parameter_annotations"> </td>
1269
+ </tr>
1270
+ <tr>
1271
+ <td class="parameter_name"><p>func</p></td>
1272
+ <td class="parameter_description"><p>The function to apply to each node.</p></td>
1273
+ <td class="parameter_annotations"> </td>
1274
+ </tr>
1275
+ <tr>
1276
+ <td class="parameter_name"><p>data</p></td>
1277
+ <td class="parameter_description"><p>A closure argument given to each invocation of the function.</p></td>
1278
+ <td class="parameter_annotations"> </td>
1279
+ </tr>
1280
+ </tbody>
1281
+ </table></div>
1282
+ </div>
1283
+ </div>
1284
+ <hr>
1285
+ <div class="refsect2">
1286
+ <a name="gtk-ctree-pre-recursive"></a><h3>gtk_ctree_pre_recursive ()</h3>
1287
+ <pre class="programlisting"><span class="returnvalue">void</span>
1288
+ gtk_ctree_pre_recursive (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1289
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1290
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeFunc" title="GtkCTreeFunc ()"><span class="type">GtkCTreeFunc</span></a> func</code></em>,
1291
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
1292
+ <div class="warning"><p><code class="literal">gtk_ctree_pre_recursive</code> is deprecated and should not be used in newly-written code.</p></div>
1293
+ <p>
1294
+ Recursively apply a function to all nodes of the tree at or below a certain
1295
+ node.
1296
+ The function is called for each node after it has been called
1297
+ for its parent.
1298
+ </p>
1299
+ <div class="refsect3">
1300
+ <a name="id-1.4.23.3.11.19.6"></a><h4>Parameters</h4>
1301
+ <div class="informaltable"><table width="100%" border="0">
1302
+ <colgroup>
1303
+ <col width="150px" class="parameters_name">
1304
+ <col class="parameters_description">
1305
+ <col width="200px" class="parameters_annotations">
1306
+ </colgroup>
1307
+ <tbody>
1308
+ <tr>
1309
+ <td class="parameter_name"><p>node</p></td>
1310
+ <td class="parameter_description"><p>The node where to start. <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> means to start at the root.</p></td>
1311
+ <td class="parameter_annotations"> </td>
1312
+ </tr>
1313
+ <tr>
1314
+ <td class="parameter_name"><p>func</p></td>
1315
+ <td class="parameter_description"><p>The function to apply to each node.</p></td>
1316
+ <td class="parameter_annotations"> </td>
1317
+ </tr>
1318
+ <tr>
1319
+ <td class="parameter_name"><p>data</p></td>
1320
+ <td class="parameter_description"><p>A closure argument given to each invocation of the function.</p></td>
1321
+ <td class="parameter_annotations"> </td>
1322
+ </tr>
1323
+ </tbody>
1324
+ </table></div>
1325
+ </div>
1326
+ </div>
1327
+ <hr>
1328
+ <div class="refsect2">
1329
+ <a name="gtk-ctree-pre-recursive-to-depth"></a><h3>gtk_ctree_pre_recursive_to_depth ()</h3>
1330
+ <pre class="programlisting"><span class="returnvalue">void</span>
1331
+ gtk_ctree_pre_recursive_to_depth (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1332
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1333
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> depth</code></em>,
1334
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeFunc" title="GtkCTreeFunc ()"><span class="type">GtkCTreeFunc</span></a> func</code></em>,
1335
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
1336
+ <div class="warning"><p><code class="literal">gtk_ctree_pre_recursive_to_depth</code> is deprecated and should not be used in newly-written code.</p></div>
1337
+ <p>
1338
+ Recursively apply a function to nodes up to a certain depth.
1339
+ The function is called for each node after it has been called
1340
+ for that node's children.
1341
+ </p>
1342
+ <div class="refsect3">
1343
+ <a name="id-1.4.23.3.11.20.6"></a><h4>Parameters</h4>
1344
+ <div class="informaltable"><table width="100%" border="0">
1345
+ <colgroup>
1346
+ <col width="150px" class="parameters_name">
1347
+ <col class="parameters_description">
1348
+ <col width="200px" class="parameters_annotations">
1349
+ </colgroup>
1350
+ <tbody>
1351
+ <tr>
1352
+ <td class="parameter_name"><p>node</p></td>
1353
+ <td class="parameter_description"><p>The node where to start.</p></td>
1354
+ <td class="parameter_annotations"> </td>
1355
+ </tr>
1356
+ <tr>
1357
+ <td class="parameter_name"><p>depth</p></td>
1358
+ <td class="parameter_description"><p>The maximum absolute depth for applying the function. If depth is negative, this function just calls <a class="link" href="GtkCTree.html#gtk-ctree-post-recursive" title="gtk_ctree_post_recursive ()"><span class="type">gtk_ctree_post_recursive</span></a>.</p></td>
1359
+ <td class="parameter_annotations"> </td>
1360
+ </tr>
1361
+ <tr>
1362
+ <td class="parameter_name"><p>func</p></td>
1363
+ <td class="parameter_description"><p>The function to apply to each node.</p></td>
1364
+ <td class="parameter_annotations"> </td>
1365
+ </tr>
1366
+ <tr>
1367
+ <td class="parameter_name"><p>data</p></td>
1368
+ <td class="parameter_description"><p>A closure argument given to each invocation of the function.</p></td>
1369
+ <td class="parameter_annotations"> </td>
1370
+ </tr>
1371
+ </tbody>
1372
+ </table></div>
1373
+ </div>
1374
+ </div>
1375
+ <hr>
1376
+ <div class="refsect2">
1377
+ <a name="gtk-ctree-is-viewable"></a><h3>gtk_ctree_is_viewable ()</h3>
1378
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1379
+ gtk_ctree_is_viewable (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1380
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
1381
+ <div class="warning"><p><code class="literal">gtk_ctree_is_viewable</code> is deprecated and should not be used in newly-written code.</p></div>
1382
+ <p>
1383
+ This function checks whether the given node is viewable i.e. so that
1384
+ all of its parent nodes are expanded. This is different from being
1385
+ actually visible: the node can be viewable but outside the scrolling
1386
+ area of the window.
1387
+ </p>
1388
+ <div class="refsect3">
1389
+ <a name="id-1.4.23.3.11.21.6"></a><h4>Returns</h4>
1390
+ <p>Whether the node is viewable.</p>
1391
+ <p></p>
1392
+ </div>
1393
+ </div>
1394
+ <hr>
1395
+ <div class="refsect2">
1396
+ <a name="gtk-ctree-last"></a><h3>gtk_ctree_last ()</h3>
1397
+ <pre class="programlisting"><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="returnvalue">GtkCTreeNode</span></a> *
1398
+ gtk_ctree_last (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1399
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
1400
+ <div class="warning"><p><code class="literal">gtk_ctree_last</code> is deprecated and should not be used in newly-written code.</p></div>
1401
+ <p>
1402
+ Returns the last child of the last child of the last child...
1403
+ of the given node.
1404
+ </p>
1405
+ <div class="refsect3">
1406
+ <a name="id-1.4.23.3.11.22.6"></a><h4>Returns</h4>
1407
+ <p></p>
1408
+ </div>
1409
+ </div>
1410
+ <hr>
1411
+ <div class="refsect2">
1412
+ <a name="gtk-ctree-find-node-ptr"></a><h3>gtk_ctree_find_node_ptr ()</h3>
1413
+ <pre class="programlisting"><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="returnvalue">GtkCTreeNode</span></a> *
1414
+ gtk_ctree_find_node_ptr (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1415
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeRow" title="struct GtkCTreeRow"><span class="type">GtkCTreeRow</span></a> *ctree_row</code></em>);</pre>
1416
+ <div class="warning"><p><code class="literal">gtk_ctree_find_node_ptr</code> is deprecated and should not be used in newly-written code.</p></div>
1417
+ <p>
1418
+ Finds the node pointer given a <a class="link" href="GtkCTree.html#GtkCTreeRow" title="struct GtkCTreeRow"><span class="type">GtkCTreeRow</span></a> structure.
1419
+ </p>
1420
+ <div class="refsect3">
1421
+ <a name="id-1.4.23.3.11.23.6"></a><h4>Returns</h4>
1422
+ <p>The node pointer.</p>
1423
+ <p></p>
1424
+ </div>
1425
+ </div>
1426
+ <hr>
1427
+ <div class="refsect2">
1428
+ <a name="gtk-ctree-find"></a><h3>gtk_ctree_find ()</h3>
1429
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1430
+ gtk_ctree_find (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1431
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1432
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *child</code></em>);</pre>
1433
+ <div class="warning"><p><code class="literal">gtk_ctree_find</code> is deprecated and should not be used in newly-written code.</p></div>
1434
+ <p>
1435
+ </p>
1436
+ <div class="refsect3">
1437
+ <a name="id-1.4.23.3.11.24.6"></a><h4>Parameters</h4>
1438
+ <div class="informaltable"><table width="100%" border="0">
1439
+ <colgroup>
1440
+ <col width="150px" class="parameters_name">
1441
+ <col class="parameters_description">
1442
+ <col width="200px" class="parameters_annotations">
1443
+ </colgroup>
1444
+ <tbody><tr>
1445
+ <td class="parameter_name"><p>node</p></td>
1446
+ <td class="parameter_description"><p>The node to start searching from. May be <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>
1447
+ <td class="parameter_annotations"> </td>
1448
+ </tr></tbody>
1449
+ </table></div>
1450
+ </div>
1451
+ <div class="refsect3">
1452
+ <a name="id-1.4.23.3.11.24.7"></a><h4>Returns</h4>
1453
+ <p>True if <em class="parameter"><code>child</code></em>
1454
+ is on some level a child (grandchild...) of the <em class="parameter"><code>node</code></em>
1455
+ .</p>
1456
+ <p></p>
1457
+ </div>
1458
+ </div>
1459
+ <hr>
1460
+ <div class="refsect2">
1461
+ <a name="gtk-ctree-is-ancestor"></a><h3>gtk_ctree_is_ancestor ()</h3>
1462
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1463
+ gtk_ctree_is_ancestor (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1464
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1465
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *child</code></em>);</pre>
1466
+ <div class="warning"><p><code class="literal">gtk_ctree_is_ancestor</code> is deprecated and should not be used in newly-written code.</p></div>
1467
+ <p>
1468
+ </p>
1469
+ <div class="refsect3">
1470
+ <a name="id-1.4.23.3.11.25.6"></a><h4>Returns</h4>
1471
+ <p>True is <em class="parameter"><code>node</code></em>
1472
+ is an ancestor of <em class="parameter"><code>child</code></em>
1473
+ .</p>
1474
+ <p></p>
1475
+ </div>
1476
+ </div>
1477
+ <hr>
1478
+ <div class="refsect2">
1479
+ <a name="gtk-ctree-find-by-row-data"></a><h3>gtk_ctree_find_by_row_data ()</h3>
1480
+ <pre class="programlisting"><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="returnvalue">GtkCTreeNode</span></a> *
1481
+ gtk_ctree_find_by_row_data (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1482
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1483
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
1484
+ <div class="warning"><p><code class="literal">gtk_ctree_find_by_row_data</code> is deprecated and should not be used in newly-written code.</p></div>
1485
+ <p>
1486
+ Finds a node in the tree under <em class="parameter"><code>node</code></em> that has the given user data pointer.
1487
+ </p>
1488
+ <div class="refsect3">
1489
+ <a name="id-1.4.23.3.11.26.6"></a><h4>Returns</h4>
1490
+ <p>The node, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if not found.</p>
1491
+ <p></p>
1492
+ </div>
1493
+ </div>
1494
+ <hr>
1495
+ <div class="refsect2">
1496
+ <a name="gtk-ctree-find-all-by-row-data"></a><h3>gtk_ctree_find_all_by_row_data ()</h3>
1497
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
1498
+ gtk_ctree_find_all_by_row_data (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1499
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1500
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
1501
+ <div class="warning"><p><code class="literal">gtk_ctree_find_all_by_row_data</code> is deprecated and should not be used in newly-written code.</p></div>
1502
+ <p>
1503
+ Finds all nodes in the tree under <em class="parameter"><code>node</code></em> that have the given user data pointer.
1504
+ </p>
1505
+ <div class="refsect3">
1506
+ <a name="id-1.4.23.3.11.27.6"></a><h4>Returns</h4>
1507
+ <p>A list of nodes that have the given data pointer.</p>
1508
+ <p></p>
1509
+ </div>
1510
+ </div>
1511
+ <hr>
1512
+ <div class="refsect2">
1513
+ <a name="gtk-ctree-find-by-row-data-custom"></a><h3>gtk_ctree_find_by_row_data_custom ()</h3>
1514
+ <pre class="programlisting"><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="returnvalue">GtkCTreeNode</span></a> *
1515
+ gtk_ctree_find_by_row_data_custom (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1516
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1517
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
1518
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GCompareFunc"><span class="type">GCompareFunc</span></a> func</code></em>);</pre>
1519
+ <div class="warning"><p><code class="literal">gtk_ctree_find_by_row_data_custom</code> is deprecated and should not be used in newly-written code.</p></div>
1520
+ <p>
1521
+ Find the first node under <em class="parameter"><code>node</code></em> whose row data pointer fulfills
1522
+ a custom criterion.
1523
+ </p>
1524
+ <div class="refsect3">
1525
+ <a name="id-1.4.23.3.11.28.6"></a><h4>Parameters</h4>
1526
+ <div class="informaltable"><table width="100%" border="0">
1527
+ <colgroup>
1528
+ <col width="150px" class="parameters_name">
1529
+ <col class="parameters_description">
1530
+ <col width="200px" class="parameters_annotations">
1531
+ </colgroup>
1532
+ <tbody>
1533
+ <tr>
1534
+ <td class="parameter_name"><p>node</p></td>
1535
+ <td class="parameter_description"><p>The node where to start searching.</p></td>
1536
+ <td class="parameter_annotations"> </td>
1537
+ </tr>
1538
+ <tr>
1539
+ <td class="parameter_name"><p>data</p></td>
1540
+ <td class="parameter_description"><p>User data for the criterion function.</p></td>
1541
+ <td class="parameter_annotations"> </td>
1542
+ </tr>
1543
+ <tr>
1544
+ <td class="parameter_name"><p>func</p></td>
1545
+ <td class="parameter_description"><p>The criterion function.</p></td>
1546
+ <td class="parameter_annotations"> </td>
1547
+ </tr>
1548
+ </tbody>
1549
+ </table></div>
1550
+ </div>
1551
+ <div class="refsect3">
1552
+ <a name="id-1.4.23.3.11.28.7"></a><h4>Returns</h4>
1553
+ <p>The first node found.</p>
1554
+ <p></p>
1555
+ </div>
1556
+ </div>
1557
+ <hr>
1558
+ <div class="refsect2">
1559
+ <a name="gtk-ctree-find-all-by-row-data-custom"></a><h3>gtk_ctree_find_all_by_row_data_custom ()</h3>
1560
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
1561
+ gtk_ctree_find_all_by_row_data_custom (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1562
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1563
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
1564
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GCompareFunc"><span class="type">GCompareFunc</span></a> func</code></em>);</pre>
1565
+ <div class="warning"><p><code class="literal">gtk_ctree_find_all_by_row_data_custom</code> is deprecated and should not be used in newly-written code.</p></div>
1566
+ <p>
1567
+ Find all nodes under <em class="parameter"><code>node</code></em> whose row data pointer fulfills
1568
+ a custom criterion.
1569
+ </p>
1570
+ <div class="refsect3">
1571
+ <a name="id-1.4.23.3.11.29.6"></a><h4>Parameters</h4>
1572
+ <div class="informaltable"><table width="100%" border="0">
1573
+ <colgroup>
1574
+ <col width="150px" class="parameters_name">
1575
+ <col class="parameters_description">
1576
+ <col width="200px" class="parameters_annotations">
1577
+ </colgroup>
1578
+ <tbody>
1579
+ <tr>
1580
+ <td class="parameter_name"><p>node</p></td>
1581
+ <td class="parameter_description"><p>The node where to start searching.</p></td>
1582
+ <td class="parameter_annotations"> </td>
1583
+ </tr>
1584
+ <tr>
1585
+ <td class="parameter_name"><p>data</p></td>
1586
+ <td class="parameter_description"><p>User data for the criterion function.</p></td>
1587
+ <td class="parameter_annotations"> </td>
1588
+ </tr>
1589
+ <tr>
1590
+ <td class="parameter_name"><p>func</p></td>
1591
+ <td class="parameter_description"><p>The criterion function.</p></td>
1592
+ <td class="parameter_annotations"> </td>
1593
+ </tr>
1594
+ </tbody>
1595
+ </table></div>
1596
+ </div>
1597
+ <div class="refsect3">
1598
+ <a name="id-1.4.23.3.11.29.7"></a><h4>Returns</h4>
1599
+ <p>A list of all nodes found.</p>
1600
+ <p></p>
1601
+ </div>
1602
+ </div>
1603
+ <hr>
1604
+ <div class="refsect2">
1605
+ <a name="gtk-ctree-is-hot-spot"></a><h3>gtk_ctree_is_hot_spot ()</h3>
1606
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1607
+ gtk_ctree_is_hot_spot (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1608
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
1609
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);</pre>
1610
+ <div class="warning"><p><code class="literal">gtk_ctree_is_hot_spot</code> is deprecated and should not be used in newly-written code.</p></div>
1611
+ <p>
1612
+ </p>
1613
+ <div class="refsect3">
1614
+ <a name="id-1.4.23.3.11.30.6"></a><h4>Returns</h4>
1615
+ <p>True if the given coordinates lie on an expander button.</p>
1616
+ <p></p>
1617
+ </div>
1618
+ </div>
1619
+ <hr>
1620
+ <div class="refsect2">
1621
+ <a name="gtk-ctree-move"></a><h3>gtk_ctree_move ()</h3>
1622
+ <pre class="programlisting"><span class="returnvalue">void</span>
1623
+ gtk_ctree_move (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1624
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1625
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *new_parent</code></em>,
1626
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *new_sibling</code></em>);</pre>
1627
+ <div class="warning"><p><code class="literal">gtk_ctree_move</code> is deprecated and should not be used in newly-written code.</p></div>
1628
+ <p>
1629
+ Move a node in the tree to another location.
1630
+ </p>
1631
+ <div class="refsect3">
1632
+ <a name="id-1.4.23.3.11.31.6"></a><h4>Parameters</h4>
1633
+ <div class="informaltable"><table width="100%" border="0">
1634
+ <colgroup>
1635
+ <col width="150px" class="parameters_name">
1636
+ <col class="parameters_description">
1637
+ <col width="200px" class="parameters_annotations">
1638
+ </colgroup>
1639
+ <tbody>
1640
+ <tr>
1641
+ <td class="parameter_name"><p>node</p></td>
1642
+ <td class="parameter_description"><p>The node to be moved.</p></td>
1643
+ <td class="parameter_annotations"> </td>
1644
+ </tr>
1645
+ <tr>
1646
+ <td class="parameter_name"><p>new_parent</p></td>
1647
+ <td class="parameter_description"><p>. </p></td>
1648
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1649
+ </tr>
1650
+ <tr>
1651
+ <td class="parameter_name"><p>new_sibling</p></td>
1652
+ <td class="parameter_description"><p>. </p></td>
1653
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1654
+ </tr>
1655
+ </tbody>
1656
+ </table></div>
1657
+ </div>
1658
+ </div>
1659
+ <hr>
1660
+ <div class="refsect2">
1661
+ <a name="gtk-ctree-expand"></a><h3>gtk_ctree_expand ()</h3>
1662
+ <pre class="programlisting"><span class="returnvalue">void</span>
1663
+ gtk_ctree_expand (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1664
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
1665
+ <div class="warning"><p><code class="literal">gtk_ctree_expand</code> is deprecated and should not be used in newly-written code.</p></div>
1666
+ <p>
1667
+ Expand one node.
1668
+ </p>
1669
+ </div>
1670
+ <hr>
1671
+ <div class="refsect2">
1672
+ <a name="gtk-ctree-expand-recursive"></a><h3>gtk_ctree_expand_recursive ()</h3>
1673
+ <pre class="programlisting"><span class="returnvalue">void</span>
1674
+ gtk_ctree_expand_recursive (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1675
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
1676
+ <div class="warning"><p><code class="literal">gtk_ctree_expand_recursive</code> is deprecated and should not be used in newly-written code.</p></div>
1677
+ <p>
1678
+ Expand one node and all nodes underneath.
1679
+ </p>
1680
+ </div>
1681
+ <hr>
1682
+ <div class="refsect2">
1683
+ <a name="gtk-ctree-expand-to-depth"></a><h3>gtk_ctree_expand_to_depth ()</h3>
1684
+ <pre class="programlisting"><span class="returnvalue">void</span>
1685
+ gtk_ctree_expand_to_depth (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1686
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1687
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> depth</code></em>);</pre>
1688
+ <div class="warning"><p><code class="literal">gtk_ctree_expand_to_depth</code> is deprecated and should not be used in newly-written code.</p></div>
1689
+ <p>
1690
+ Expand a node and its children up to the depth given.
1691
+ </p>
1692
+ <div class="refsect3">
1693
+ <a name="id-1.4.23.3.11.34.6"></a><h4>Parameters</h4>
1694
+ <div class="informaltable"><table width="100%" border="0">
1695
+ <colgroup>
1696
+ <col width="150px" class="parameters_name">
1697
+ <col class="parameters_description">
1698
+ <col width="200px" class="parameters_annotations">
1699
+ </colgroup>
1700
+ <tbody><tr>
1701
+ <td class="parameter_name"><p>depth</p></td>
1702
+ <td class="parameter_description"><p>The (absolute) depth up to which to expand nodes.</p></td>
1703
+ <td class="parameter_annotations"> </td>
1704
+ </tr></tbody>
1705
+ </table></div>
1706
+ </div>
1707
+ </div>
1708
+ <hr>
1709
+ <div class="refsect2">
1710
+ <a name="gtk-ctree-collapse"></a><h3>gtk_ctree_collapse ()</h3>
1711
+ <pre class="programlisting"><span class="returnvalue">void</span>
1712
+ gtk_ctree_collapse (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1713
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
1714
+ <div class="warning"><p><code class="literal">gtk_ctree_collapse</code> is deprecated and should not be used in newly-written code.</p></div>
1715
+ <p>
1716
+ Collapse one node.
1717
+ </p>
1718
+ </div>
1719
+ <hr>
1720
+ <div class="refsect2">
1721
+ <a name="gtk-ctree-collapse-recursive"></a><h3>gtk_ctree_collapse_recursive ()</h3>
1722
+ <pre class="programlisting"><span class="returnvalue">void</span>
1723
+ gtk_ctree_collapse_recursive (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1724
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
1725
+ <div class="warning"><p><code class="literal">gtk_ctree_collapse_recursive</code> is deprecated and should not be used in newly-written code.</p></div>
1726
+ <p>
1727
+ Collapse one node and all its subnodes.
1728
+ </p>
1729
+ </div>
1730
+ <hr>
1731
+ <div class="refsect2">
1732
+ <a name="gtk-ctree-collapse-to-depth"></a><h3>gtk_ctree_collapse_to_depth ()</h3>
1733
+ <pre class="programlisting"><span class="returnvalue">void</span>
1734
+ gtk_ctree_collapse_to_depth (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1735
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1736
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> depth</code></em>);</pre>
1737
+ <div class="warning"><p><code class="literal">gtk_ctree_collapse_to_depth</code> is deprecated and should not be used in newly-written code.</p></div>
1738
+ <p>
1739
+ Collapse a node and its children up to the depth given.
1740
+ </p>
1741
+ <div class="refsect3">
1742
+ <a name="id-1.4.23.3.11.37.6"></a><h4>Parameters</h4>
1743
+ <div class="informaltable"><table width="100%" border="0">
1744
+ <colgroup>
1745
+ <col width="150px" class="parameters_name">
1746
+ <col class="parameters_description">
1747
+ <col width="200px" class="parameters_annotations">
1748
+ </colgroup>
1749
+ <tbody><tr>
1750
+ <td class="parameter_name"><p>depth</p></td>
1751
+ <td class="parameter_description"><p>The (absolute) depth up to which to collapse nodes.</p></td>
1752
+ <td class="parameter_annotations"> </td>
1753
+ </tr></tbody>
1754
+ </table></div>
1755
+ </div>
1756
+ </div>
1757
+ <hr>
1758
+ <div class="refsect2">
1759
+ <a name="gtk-ctree-toggle-expansion"></a><h3>gtk_ctree_toggle_expansion ()</h3>
1760
+ <pre class="programlisting"><span class="returnvalue">void</span>
1761
+ gtk_ctree_toggle_expansion (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1762
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
1763
+ <div class="warning"><p><code class="literal">gtk_ctree_toggle_expansion</code> is deprecated and should not be used in newly-written code.</p></div>
1764
+ <p>
1765
+ Toggle a node, i.e. if it is collapsed, expand it and vice versa.
1766
+ </p>
1767
+ </div>
1768
+ <hr>
1769
+ <div class="refsect2">
1770
+ <a name="gtk-ctree-toggle-expansion-recursive"></a><h3>gtk_ctree_toggle_expansion_recursive ()</h3>
1771
+ <pre class="programlisting"><span class="returnvalue">void</span>
1772
+ gtk_ctree_toggle_expansion_recursive (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1773
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
1774
+ <div class="warning"><p><code class="literal">gtk_ctree_toggle_expansion_recursive</code> is deprecated and should not be used in newly-written code.</p></div>
1775
+ <p>
1776
+ Toggle the expansion of a node and all its children.
1777
+ </p>
1778
+ </div>
1779
+ <hr>
1780
+ <div class="refsect2">
1781
+ <a name="gtk-ctree-select"></a><h3>gtk_ctree_select ()</h3>
1782
+ <pre class="programlisting"><span class="returnvalue">void</span>
1783
+ gtk_ctree_select (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1784
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
1785
+ <div class="warning"><p><code class="literal">gtk_ctree_select</code> is deprecated and should not be used in newly-written code.</p></div>
1786
+ <p>
1787
+ Cause the given node to be selected and emit the appropriate signal.
1788
+ </p>
1789
+ </div>
1790
+ <hr>
1791
+ <div class="refsect2">
1792
+ <a name="gtk-ctree-select-recursive"></a><h3>gtk_ctree_select_recursive ()</h3>
1793
+ <pre class="programlisting"><span class="returnvalue">void</span>
1794
+ gtk_ctree_select_recursive (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1795
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
1796
+ <div class="warning"><p><code class="literal">gtk_ctree_select_recursive</code> is deprecated and should not be used in newly-written code.</p></div>
1797
+ <p>
1798
+ Cause the given node and its subnodes to be selected and emit the appropriate signal(s).
1799
+ </p>
1800
+ </div>
1801
+ <hr>
1802
+ <div class="refsect2">
1803
+ <a name="gtk-ctree-unselect"></a><h3>gtk_ctree_unselect ()</h3>
1804
+ <pre class="programlisting"><span class="returnvalue">void</span>
1805
+ gtk_ctree_unselect (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1806
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
1807
+ <div class="warning"><p><code class="literal">gtk_ctree_unselect</code> is deprecated and should not be used in newly-written code.</p></div>
1808
+ <p>
1809
+ Unselect the given node and emit the appropriate signal.
1810
+ </p>
1811
+ </div>
1812
+ <hr>
1813
+ <div class="refsect2">
1814
+ <a name="gtk-ctree-unselect-recursive"></a><h3>gtk_ctree_unselect_recursive ()</h3>
1815
+ <pre class="programlisting"><span class="returnvalue">void</span>
1816
+ gtk_ctree_unselect_recursive (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1817
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
1818
+ <div class="warning"><p><code class="literal">gtk_ctree_unselect_recursive</code> is deprecated and should not be used in newly-written code.</p></div>
1819
+ <p>
1820
+ Unselect the given node and its subnodes and emit the appropriate signal(s).
1821
+ </p>
1822
+ </div>
1823
+ <hr>
1824
+ <div class="refsect2">
1825
+ <a name="gtk-ctree-real-select-recursive"></a><h3>gtk_ctree_real_select_recursive ()</h3>
1826
+ <pre class="programlisting"><span class="returnvalue">void</span>
1827
+ gtk_ctree_real_select_recursive (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1828
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1829
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> state</code></em>);</pre>
1830
+ <div class="warning"><p><code class="literal">gtk_ctree_real_select_recursive</code> is deprecated and should not be used in newly-written code.</p></div>
1831
+ <p>
1832
+ The function that implements both <a class="link" href="GtkCTree.html#gtk-ctree-select-recursive" title="gtk_ctree_select_recursive ()"><span class="type">gtk_ctree_select_recursive</span></a> and
1833
+ <a class="link" href="GtkCTree.html#gtk-ctree-unselect-recursive" title="gtk_ctree_unselect_recursive ()"><span class="type">gtk_ctree_unselect_recursive</span></a>.
1834
+ </p>
1835
+ <div class="refsect3">
1836
+ <a name="id-1.4.23.3.11.44.6"></a><h4>Parameters</h4>
1837
+ <div class="informaltable"><table width="100%" border="0">
1838
+ <colgroup>
1839
+ <col width="150px" class="parameters_name">
1840
+ <col class="parameters_description">
1841
+ <col width="200px" class="parameters_annotations">
1842
+ </colgroup>
1843
+ <tbody><tr>
1844
+ <td class="parameter_name"><p>state</p></td>
1845
+ <td class="parameter_description"><p>True for selecting, false for unselecting.</p></td>
1846
+ <td class="parameter_annotations"> </td>
1847
+ </tr></tbody>
1848
+ </table></div>
1849
+ </div>
1850
+ </div>
1851
+ <hr>
1852
+ <div class="refsect2">
1853
+ <a name="gtk-ctree-node-set-text"></a><h3>gtk_ctree_node_set_text ()</h3>
1854
+ <pre class="programlisting"><span class="returnvalue">void</span>
1855
+ gtk_ctree_node_set_text (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1856
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1857
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
1858
+ <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);</pre>
1859
+ <div class="warning"><p><code class="literal">gtk_ctree_node_set_text</code> is deprecated and should not be used in newly-written code.</p></div>
1860
+ <p>
1861
+ Set the text in a node.
1862
+ </p>
1863
+ <div class="refsect3">
1864
+ <a name="id-1.4.23.3.11.45.6"></a><h4>Parameters</h4>
1865
+ <div class="informaltable"><table width="100%" border="0">
1866
+ <colgroup>
1867
+ <col width="150px" class="parameters_name">
1868
+ <col class="parameters_description">
1869
+ <col width="200px" class="parameters_annotations">
1870
+ </colgroup>
1871
+ <tbody>
1872
+ <tr>
1873
+ <td class="parameter_name"><p>column</p></td>
1874
+ <td class="parameter_description"><p>The column whose text to change.</p></td>
1875
+ <td class="parameter_annotations"> </td>
1876
+ </tr>
1877
+ <tr>
1878
+ <td class="parameter_name"><p>text</p></td>
1879
+ <td class="parameter_description"><p>The new text.</p></td>
1880
+ <td class="parameter_annotations"> </td>
1881
+ </tr>
1882
+ </tbody>
1883
+ </table></div>
1884
+ </div>
1885
+ </div>
1886
+ <hr>
1887
+ <div class="refsect2">
1888
+ <a name="gtk-ctree-node-set-pixmap"></a><h3>gtk_ctree_node_set_pixmap ()</h3>
1889
+ <pre class="programlisting"><span class="returnvalue">void</span>
1890
+ gtk_ctree_node_set_pixmap (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1891
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1892
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
1893
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *pixmap</code></em>,
1894
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);</pre>
1895
+ <div class="warning"><p><code class="literal">gtk_ctree_node_set_pixmap</code> is deprecated and should not be used in newly-written code.</p></div>
1896
+ <p>
1897
+ FIXME
1898
+ </p>
1899
+ <div class="refsect3">
1900
+ <a name="id-1.4.23.3.11.46.6"></a><h4>Parameters</h4>
1901
+ <div class="informaltable"><table width="100%" border="0">
1902
+ <colgroup>
1903
+ <col width="150px" class="parameters_name">
1904
+ <col class="parameters_description">
1905
+ <col width="200px" class="parameters_annotations">
1906
+ </colgroup>
1907
+ <tbody><tr>
1908
+ <td class="parameter_name"><p>mask</p></td>
1909
+ <td class="parameter_description"><p>. </p></td>
1910
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1911
+ </tr></tbody>
1912
+ </table></div>
1913
+ </div>
1914
+ </div>
1915
+ <hr>
1916
+ <div class="refsect2">
1917
+ <a name="gtk-ctree-node-set-pixtext"></a><h3>gtk_ctree_node_set_pixtext ()</h3>
1918
+ <pre class="programlisting"><span class="returnvalue">void</span>
1919
+ gtk_ctree_node_set_pixtext (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1920
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1921
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
1922
+ <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
1923
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> spacing</code></em>,
1924
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *pixmap</code></em>,
1925
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);</pre>
1926
+ <div class="warning"><p><code class="literal">gtk_ctree_node_set_pixtext</code> is deprecated and should not be used in newly-written code.</p></div>
1927
+ <p>
1928
+ FIXME
1929
+ </p>
1930
+ <div class="refsect3">
1931
+ <a name="id-1.4.23.3.11.47.6"></a><h4>Parameters</h4>
1932
+ <div class="informaltable"><table width="100%" border="0">
1933
+ <colgroup>
1934
+ <col width="150px" class="parameters_name">
1935
+ <col class="parameters_description">
1936
+ <col width="200px" class="parameters_annotations">
1937
+ </colgroup>
1938
+ <tbody><tr>
1939
+ <td class="parameter_name"><p>mask</p></td>
1940
+ <td class="parameter_description"><p>. </p></td>
1941
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1942
+ </tr></tbody>
1943
+ </table></div>
1944
+ </div>
1945
+ </div>
1946
+ <hr>
1947
+ <div class="refsect2">
1948
+ <a name="gtk-ctree-set-node-info"></a><h3>gtk_ctree_set_node_info ()</h3>
1949
+ <pre class="programlisting"><span class="returnvalue">void</span>
1950
+ gtk_ctree_set_node_info (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
1951
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
1952
+ <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
1953
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> spacing</code></em>,
1954
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *pixmap_closed</code></em>,
1955
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask_closed</code></em>,
1956
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *pixmap_opened</code></em>,
1957
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask_opened</code></em>,
1958
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> is_leaf</code></em>,
1959
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> expanded</code></em>);</pre>
1960
+ <div class="warning"><p><code class="literal">gtk_ctree_set_node_info</code> is deprecated and should not be used in newly-written code.</p></div>
1961
+ <p>
1962
+ Change the information. Most parameters correspond
1963
+ to the parameters of <a class="link" href="GtkCTree.html#gtk-ctree-insert-node" title="gtk_ctree_insert_node ()"><span class="type">gtk_ctree_insert_node</span></a>.
1964
+ </p>
1965
+ <div class="refsect3">
1966
+ <a name="id-1.4.23.3.11.48.6"></a><h4>Parameters</h4>
1967
+ <div class="informaltable"><table width="100%" border="0">
1968
+ <colgroup>
1969
+ <col width="150px" class="parameters_name">
1970
+ <col class="parameters_description">
1971
+ <col width="200px" class="parameters_annotations">
1972
+ </colgroup>
1973
+ <tbody>
1974
+ <tr>
1975
+ <td class="parameter_name"><p>text</p></td>
1976
+ <td class="parameter_description"><p>The text to be in the tree column.</p></td>
1977
+ <td class="parameter_annotations"> </td>
1978
+ </tr>
1979
+ <tr>
1980
+ <td class="parameter_name"><p>pixmap_closed</p></td>
1981
+ <td class="parameter_description"><p>. </p></td>
1982
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1983
+ </tr>
1984
+ <tr>
1985
+ <td class="parameter_name"><p>mask_closed</p></td>
1986
+ <td class="parameter_description"><p>. </p></td>
1987
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1988
+ </tr>
1989
+ <tr>
1990
+ <td class="parameter_name"><p>pixmap_opened</p></td>
1991
+ <td class="parameter_description"><p>. </p></td>
1992
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1993
+ </tr>
1994
+ <tr>
1995
+ <td class="parameter_name"><p>mask_opened</p></td>
1996
+ <td class="parameter_description"><p>. </p></td>
1997
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1998
+ </tr>
1999
+ </tbody>
2000
+ </table></div>
2001
+ </div>
2002
+ </div>
2003
+ <hr>
2004
+ <div class="refsect2">
2005
+ <a name="gtk-ctree-node-set-shift"></a><h3>gtk_ctree_node_set_shift ()</h3>
2006
+ <pre class="programlisting"><span class="returnvalue">void</span>
2007
+ gtk_ctree_node_set_shift (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2008
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
2009
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
2010
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> vertical</code></em>,
2011
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> horizontal</code></em>);</pre>
2012
+ <div class="warning"><p><code class="literal">gtk_ctree_node_set_shift</code> is deprecated and should not be used in newly-written code.</p></div>
2013
+ <p>
2014
+ Shift the given cell the given amounts in pixels.
2015
+ </p>
2016
+ </div>
2017
+ <hr>
2018
+ <div class="refsect2">
2019
+ <a name="gtk-ctree-node-set-selectable"></a><h3>gtk_ctree_node_set_selectable ()</h3>
2020
+ <pre class="programlisting"><span class="returnvalue">void</span>
2021
+ gtk_ctree_node_set_selectable (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2022
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
2023
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> selectable</code></em>);</pre>
2024
+ <div class="warning"><p><code class="literal">gtk_ctree_node_set_selectable</code> is deprecated and should not be used in newly-written code.</p></div>
2025
+ <p>
2026
+ </p>
2027
+ <div class="refsect3">
2028
+ <a name="id-1.4.23.3.11.50.6"></a><h4>Parameters</h4>
2029
+ <div class="informaltable"><table width="100%" border="0">
2030
+ <colgroup>
2031
+ <col width="150px" class="parameters_name">
2032
+ <col class="parameters_description">
2033
+ <col width="200px" class="parameters_annotations">
2034
+ </colgroup>
2035
+ <tbody><tr>
2036
+ <td class="parameter_name"><p>selectable</p></td>
2037
+ <td class="parameter_description"><p>Whether this node can be selected by the user.</p></td>
2038
+ <td class="parameter_annotations"> </td>
2039
+ </tr></tbody>
2040
+ </table></div>
2041
+ </div>
2042
+ </div>
2043
+ <hr>
2044
+ <div class="refsect2">
2045
+ <a name="gtk-ctree-node-get-selectable"></a><h3>gtk_ctree_node_get_selectable ()</h3>
2046
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2047
+ gtk_ctree_node_get_selectable (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2048
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
2049
+ <div class="warning"><p><code class="literal">gtk_ctree_node_get_selectable</code> is deprecated and should not be used in newly-written code.</p></div>
2050
+ <p>
2051
+ </p>
2052
+ <div class="refsect3">
2053
+ <a name="id-1.4.23.3.11.51.6"></a><h4>Returns</h4>
2054
+ <p>Whether this node can be selected by the user.</p>
2055
+ <p></p>
2056
+ </div>
2057
+ </div>
2058
+ <hr>
2059
+ <div class="refsect2">
2060
+ <a name="gtk-ctree-node-get-cell-type"></a><h3>gtk_ctree_node_get_cell_type ()</h3>
2061
+ <pre class="programlisting"><a class="link" href="GtkCList.html#GtkCellType" title="enum GtkCellType"><span class="returnvalue">GtkCellType</span></a>
2062
+ gtk_ctree_node_get_cell_type (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2063
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
2064
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
2065
+ <div class="warning"><p><code class="literal">gtk_ctree_node_get_cell_type</code> is deprecated and should not be used in newly-written code.</p></div>
2066
+ <p>
2067
+ </p>
2068
+ <div class="refsect3">
2069
+ <a name="id-1.4.23.3.11.52.6"></a><h4>Returns</h4>
2070
+ <p>The type of the given cell.</p>
2071
+ <p></p>
2072
+ </div>
2073
+ </div>
2074
+ <hr>
2075
+ <div class="refsect2">
2076
+ <a name="gtk-ctree-node-get-text"></a><h3>gtk_ctree_node_get_text ()</h3>
2077
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2078
+ gtk_ctree_node_get_text (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2079
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
2080
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
2081
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **text</code></em>);</pre>
2082
+ <div class="warning"><p><code class="literal">gtk_ctree_node_get_text</code> is deprecated and should not be used in newly-written code.</p></div>
2083
+ <p>
2084
+ </p>
2085
+ <div class="refsect3">
2086
+ <a name="id-1.4.23.3.11.53.6"></a><h4>Parameters</h4>
2087
+ <div class="informaltable"><table width="100%" border="0">
2088
+ <colgroup>
2089
+ <col width="150px" class="parameters_name">
2090
+ <col class="parameters_description">
2091
+ <col width="200px" class="parameters_annotations">
2092
+ </colgroup>
2093
+ <tbody><tr>
2094
+ <td class="parameter_name"><p>text</p></td>
2095
+ <td class="parameter_description"><p>If nonnull, the pointer to the text string is assigned to *<em class="parameter"><code>text</code></em>
2096
+ .</p></td>
2097
+ <td class="parameter_annotations"> </td>
2098
+ </tr></tbody>
2099
+ </table></div>
2100
+ </div>
2101
+ <div class="refsect3">
2102
+ <a name="id-1.4.23.3.11.53.7"></a><h4>Returns</h4>
2103
+ <p>True if the given cell has text in it.</p>
2104
+ <p></p>
2105
+ </div>
2106
+ </div>
2107
+ <hr>
2108
+ <div class="refsect2">
2109
+ <a name="gtk-ctree-node-get-pixmap"></a><h3>gtk_ctree_node_get_pixmap ()</h3>
2110
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2111
+ gtk_ctree_node_get_pixmap (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2112
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
2113
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
2114
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> **pixmap</code></em>,
2115
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> **mask</code></em>);</pre>
2116
+ <div class="warning"><p><code class="literal">gtk_ctree_node_get_pixmap</code> is deprecated and should not be used in newly-written code.</p></div>
2117
+ <p>
2118
+ </p>
2119
+ <div class="refsect3">
2120
+ <a name="id-1.4.23.3.11.54.6"></a><h4>Parameters</h4>
2121
+ <div class="informaltable"><table width="100%" border="0">
2122
+ <colgroup>
2123
+ <col width="150px" class="parameters_name">
2124
+ <col class="parameters_description">
2125
+ <col width="200px" class="parameters_annotations">
2126
+ </colgroup>
2127
+ <tbody>
2128
+ <tr>
2129
+ <td class="parameter_name"><p>pixmap</p></td>
2130
+ <td class="parameter_description"><p>If nonnull, the pointer to the pixmap is returned through this.</p></td>
2131
+ <td class="parameter_annotations"> </td>
2132
+ </tr>
2133
+ <tr>
2134
+ <td class="parameter_name"><p>mask</p></td>
2135
+ <td class="parameter_description"><p>If nonnull, the pointer to the mask is returned through this.</p></td>
2136
+ <td class="parameter_annotations"> </td>
2137
+ </tr>
2138
+ </tbody>
2139
+ </table></div>
2140
+ </div>
2141
+ <div class="refsect3">
2142
+ <a name="id-1.4.23.3.11.54.7"></a><h4>Returns</h4>
2143
+ <p>True if the given cell contains a pixmap.</p>
2144
+ <p></p>
2145
+ </div>
2146
+ </div>
2147
+ <hr>
2148
+ <div class="refsect2">
2149
+ <a name="gtk-ctree-node-get-pixtext"></a><h3>gtk_ctree_node_get_pixtext ()</h3>
2150
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2151
+ gtk_ctree_node_get_pixtext (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2152
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
2153
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
2154
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **text</code></em>,
2155
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> *spacing</code></em>,
2156
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> **pixmap</code></em>,
2157
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> **mask</code></em>);</pre>
2158
+ <div class="warning"><p><code class="literal">gtk_ctree_node_get_pixtext</code> is deprecated and should not be used in newly-written code.</p></div>
2159
+ <p>
2160
+ Get the parameters of a cell containing both a pixmap and text.
2161
+ </p>
2162
+ <div class="refsect3">
2163
+ <a name="id-1.4.23.3.11.55.6"></a><h4>Returns</h4>
2164
+ <p></p>
2165
+ </div>
2166
+ </div>
2167
+ <hr>
2168
+ <div class="refsect2">
2169
+ <a name="gtk-ctree-get-node-info"></a><h3>gtk_ctree_get_node_info ()</h3>
2170
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2171
+ gtk_ctree_get_node_info (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2172
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
2173
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **text</code></em>,
2174
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> *spacing</code></em>,
2175
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> **pixmap_closed</code></em>,
2176
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> **mask_closed</code></em>,
2177
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> **pixmap_opened</code></em>,
2178
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> **mask_opened</code></em>,
2179
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *is_leaf</code></em>,
2180
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *expanded</code></em>);</pre>
2181
+ <div class="warning"><p><code class="literal">gtk_ctree_get_node_info</code> is deprecated and should not be used in newly-written code.</p></div>
2182
+ <p>
2183
+ Get information corresponding to a node.
2184
+ Any of the return parameters can be null.
2185
+ </p>
2186
+ <div class="refsect3">
2187
+ <a name="id-1.4.23.3.11.56.6"></a><h4>Returns</h4>
2188
+ <p></p>
2189
+ </div>
2190
+ </div>
2191
+ <hr>
2192
+ <div class="refsect2">
2193
+ <a name="gtk-ctree-node-set-row-style"></a><h3>gtk_ctree_node_set_row_style ()</h3>
2194
+ <pre class="programlisting"><span class="returnvalue">void</span>
2195
+ gtk_ctree_node_set_row_style (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2196
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
2197
+ <em class="parameter"><code><a class="link" href="GtkStyle.html" title="Styles"><span class="type">GtkStyle</span></a> *style</code></em>);</pre>
2198
+ <div class="warning"><p><code class="literal">gtk_ctree_node_set_row_style</code> is deprecated and should not be used in newly-written code.</p></div>
2199
+ <p>
2200
+ Set the style of a row.
2201
+ </p>
2202
+ </div>
2203
+ <hr>
2204
+ <div class="refsect2">
2205
+ <a name="gtk-ctree-node-get-row-style"></a><h3>gtk_ctree_node_get_row_style ()</h3>
2206
+ <pre class="programlisting"><a class="link" href="GtkStyle.html" title="Styles"><span class="returnvalue">GtkStyle</span></a> *
2207
+ gtk_ctree_node_get_row_style (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2208
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
2209
+ <div class="warning"><p><code class="literal">gtk_ctree_node_get_row_style</code> is deprecated and should not be used in newly-written code.</p></div>
2210
+ <p>
2211
+ Get the style of a row.
2212
+ </p>
2213
+ <div class="refsect3">
2214
+ <a name="id-1.4.23.3.11.58.6"></a><h4>Returns</h4>
2215
+ <p></p>
2216
+ </div>
2217
+ </div>
2218
+ <hr>
2219
+ <div class="refsect2">
2220
+ <a name="gtk-ctree-node-set-cell-style"></a><h3>gtk_ctree_node_set_cell_style ()</h3>
2221
+ <pre class="programlisting"><span class="returnvalue">void</span>
2222
+ gtk_ctree_node_set_cell_style (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2223
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
2224
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
2225
+ <em class="parameter"><code><a class="link" href="GtkStyle.html" title="Styles"><span class="type">GtkStyle</span></a> *style</code></em>);</pre>
2226
+ <div class="warning"><p><code class="literal">gtk_ctree_node_set_cell_style</code> is deprecated and should not be used in newly-written code.</p></div>
2227
+ <p>
2228
+ Set the style of an individual cell.
2229
+ </p>
2230
+ </div>
2231
+ <hr>
2232
+ <div class="refsect2">
2233
+ <a name="gtk-ctree-node-get-cell-style"></a><h3>gtk_ctree_node_get_cell_style ()</h3>
2234
+ <pre class="programlisting"><a class="link" href="GtkStyle.html" title="Styles"><span class="returnvalue">GtkStyle</span></a> *
2235
+ gtk_ctree_node_get_cell_style (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2236
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
2237
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
2238
+ <div class="warning"><p><code class="literal">gtk_ctree_node_get_cell_style</code> is deprecated and should not be used in newly-written code.</p></div>
2239
+ <p>
2240
+ Get the style of an individual cell.
2241
+ </p>
2242
+ <div class="refsect3">
2243
+ <a name="id-1.4.23.3.11.60.6"></a><h4>Returns</h4>
2244
+ <p></p>
2245
+ </div>
2246
+ </div>
2247
+ <hr>
2248
+ <div class="refsect2">
2249
+ <a name="gtk-ctree-node-set-foreground"></a><h3>gtk_ctree_node_set_foreground ()</h3>
2250
+ <pre class="programlisting"><span class="returnvalue">void</span>
2251
+ gtk_ctree_node_set_foreground (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2252
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
2253
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/gdk3/gdk2-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
2254
+ <div class="warning"><p><code class="literal">gtk_ctree_node_set_foreground</code> is deprecated and should not be used in newly-written code.</p></div>
2255
+ <p>
2256
+ </p>
2257
+ </div>
2258
+ <hr>
2259
+ <div class="refsect2">
2260
+ <a name="gtk-ctree-node-set-background"></a><h3>gtk_ctree_node_set_background ()</h3>
2261
+ <pre class="programlisting"><span class="returnvalue">void</span>
2262
+ gtk_ctree_node_set_background (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2263
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
2264
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/gdk3/gdk2-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
2265
+ <div class="warning"><p><code class="literal">gtk_ctree_node_set_background</code> is deprecated and should not be used in newly-written code.</p></div>
2266
+ <p>
2267
+ </p>
2268
+ </div>
2269
+ <hr>
2270
+ <div class="refsect2">
2271
+ <a name="gtk-ctree-node-set-row-data"></a><h3>gtk_ctree_node_set_row_data ()</h3>
2272
+ <pre class="programlisting"><span class="returnvalue">void</span>
2273
+ gtk_ctree_node_set_row_data (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2274
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
2275
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
2276
+ <div class="warning"><p><code class="literal">gtk_ctree_node_set_row_data</code> is deprecated and should not be used in newly-written code.</p></div>
2277
+ <p>
2278
+ Set the custom data associated with a node.
2279
+ </p>
2280
+ </div>
2281
+ <hr>
2282
+ <div class="refsect2">
2283
+ <a name="gtk-ctree-node-set-row-data-full"></a><h3>gtk_ctree_node_set_row_data_full ()</h3>
2284
+ <pre class="programlisting"><span class="returnvalue">void</span>
2285
+ gtk_ctree_node_set_row_data_full (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2286
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
2287
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
2288
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>);</pre>
2289
+ <div class="warning"><p><code class="literal">gtk_ctree_node_set_row_data_full</code> is deprecated and should not be used in newly-written code.</p></div>
2290
+ <p>
2291
+ This is the full interface to setting row data, so that a destructor
2292
+ can be given for the data.
2293
+ </p>
2294
+ <div class="refsect3">
2295
+ <a name="id-1.4.23.3.11.64.6"></a><h4>Parameters</h4>
2296
+ <div class="informaltable"><table width="100%" border="0">
2297
+ <colgroup>
2298
+ <col width="150px" class="parameters_name">
2299
+ <col class="parameters_description">
2300
+ <col width="200px" class="parameters_annotations">
2301
+ </colgroup>
2302
+ <tbody><tr>
2303
+ <td class="parameter_name"><p>destroy</p></td>
2304
+ <td class="parameter_description"><p>The routine to be called when <em class="parameter"><code>data</code></em>
2305
+ is no longer needed.</p></td>
2306
+ <td class="parameter_annotations"> </td>
2307
+ </tr></tbody>
2308
+ </table></div>
2309
+ </div>
2310
+ </div>
2311
+ <hr>
2312
+ <div class="refsect2">
2313
+ <a name="gtk-ctree-node-get-row-data"></a><h3>gtk_ctree_node_get_row_data ()</h3>
2314
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
2315
+ gtk_ctree_node_get_row_data (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2316
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
2317
+ <div class="warning"><p><code class="literal">gtk_ctree_node_get_row_data</code> is deprecated and should not be used in newly-written code.</p></div>
2318
+ <p>
2319
+ </p>
2320
+ <div class="refsect3">
2321
+ <a name="id-1.4.23.3.11.65.6"></a><h4>Returns</h4>
2322
+ <p></p>
2323
+ </div>
2324
+ </div>
2325
+ <hr>
2326
+ <div class="refsect2">
2327
+ <a name="gtk-ctree-node-moveto"></a><h3>gtk_ctree_node_moveto ()</h3>
2328
+ <pre class="programlisting"><span class="returnvalue">void</span>
2329
+ gtk_ctree_node_moveto (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2330
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>,
2331
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
2332
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> row_align</code></em>,
2333
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> col_align</code></em>);</pre>
2334
+ <div class="warning"><p><code class="literal">gtk_ctree_node_moveto</code> is deprecated and should not be used in newly-written code.</p></div>
2335
+ <p>
2336
+ This function makes the given column of the given node visible by
2337
+ scrolling.
2338
+ </p>
2339
+ <div class="refsect3">
2340
+ <a name="id-1.4.23.3.11.66.6"></a><h4>Parameters</h4>
2341
+ <div class="informaltable"><table width="100%" border="0">
2342
+ <colgroup>
2343
+ <col width="150px" class="parameters_name">
2344
+ <col class="parameters_description">
2345
+ <col width="200px" class="parameters_annotations">
2346
+ </colgroup>
2347
+ <tbody>
2348
+ <tr>
2349
+ <td class="parameter_name"><p>node</p></td>
2350
+ <td class="parameter_description"><p>The node to be made visible.</p></td>
2351
+ <td class="parameter_annotations"> </td>
2352
+ </tr>
2353
+ <tr>
2354
+ <td class="parameter_name"><p>column</p></td>
2355
+ <td class="parameter_description"><p>The column to be made visible.</p></td>
2356
+ <td class="parameter_annotations"> </td>
2357
+ </tr>
2358
+ <tr>
2359
+ <td class="parameter_name"><p>row_align</p></td>
2360
+ <td class="parameter_description"><p>Where in the window the row should appear.</p></td>
2361
+ <td class="parameter_annotations"> </td>
2362
+ </tr>
2363
+ <tr>
2364
+ <td class="parameter_name"><p>col_align</p></td>
2365
+ <td class="parameter_description"><p>Where in the window the column should appear.</p></td>
2366
+ <td class="parameter_annotations"> </td>
2367
+ </tr>
2368
+ </tbody>
2369
+ </table></div>
2370
+ </div>
2371
+ </div>
2372
+ <hr>
2373
+ <div class="refsect2">
2374
+ <a name="gtk-ctree-node-is-visible"></a><h3>gtk_ctree_node_is_visible ()</h3>
2375
+ <pre class="programlisting"><a class="link" href="gtk2-Standard-Enumerations.html#GtkVisibility" title="enum GtkVisibility"><span class="returnvalue">GtkVisibility</span></a>
2376
+ gtk_ctree_node_is_visible (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2377
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
2378
+ <div class="warning"><p><code class="literal">gtk_ctree_node_is_visible</code> is deprecated and should not be used in newly-written code.</p></div>
2379
+ <p>
2380
+ </p>
2381
+ <div class="refsect3">
2382
+ <a name="id-1.4.23.3.11.67.6"></a><h4>Returns</h4>
2383
+ <p>True if the node is currently inside the bounds of the window.
2384
+ Note that this function can return true even if the node is not
2385
+ viewable, if the node's ancestor is visible.</p>
2386
+ <p></p>
2387
+ </div>
2388
+ </div>
2389
+ <hr>
2390
+ <div class="refsect2">
2391
+ <a name="gtk-ctree-set-indent"></a><h3>gtk_ctree_set_indent ()</h3>
2392
+ <pre class="programlisting"><span class="returnvalue">void</span>
2393
+ gtk_ctree_set_indent (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2394
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> indent</code></em>);</pre>
2395
+ <div class="warning"><p><code class="literal">gtk_ctree_set_indent</code> is deprecated and should not be used in newly-written code.</p></div>
2396
+ <p>
2397
+ </p>
2398
+ <div class="refsect3">
2399
+ <a name="id-1.4.23.3.11.68.6"></a><h4>Parameters</h4>
2400
+ <div class="informaltable"><table width="100%" border="0">
2401
+ <colgroup>
2402
+ <col width="150px" class="parameters_name">
2403
+ <col class="parameters_description">
2404
+ <col width="200px" class="parameters_annotations">
2405
+ </colgroup>
2406
+ <tbody><tr>
2407
+ <td class="parameter_name"><p>indent</p></td>
2408
+ <td class="parameter_description"><p>The number of pixels to shift the levels of the tree.</p></td>
2409
+ <td class="parameter_annotations"> </td>
2410
+ </tr></tbody>
2411
+ </table></div>
2412
+ </div>
2413
+ </div>
2414
+ <hr>
2415
+ <div class="refsect2">
2416
+ <a name="gtk-ctree-set-spacing"></a><h3>gtk_ctree_set_spacing ()</h3>
2417
+ <pre class="programlisting"><span class="returnvalue">void</span>
2418
+ gtk_ctree_set_spacing (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2419
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> spacing</code></em>);</pre>
2420
+ <div class="warning"><p><code class="literal">gtk_ctree_set_spacing</code> is deprecated and should not be used in newly-written code.</p></div>
2421
+ <p>
2422
+ The spacing between the tree graphic and the actual node content.
2423
+ </p>
2424
+ </div>
2425
+ <hr>
2426
+ <div class="refsect2">
2427
+ <a name="gtk-ctree-set-reorderable"></a><h3>gtk_ctree_set_reorderable()</h3>
2428
+ <pre class="programlisting">#define gtk_ctree_set_reorderable(t,r) gtk_clist_set_reorderable((GtkCList*) (t),(r))
2429
+ </pre>
2430
+ <div class="warning"><p><code class="literal">gtk_ctree_set_reorderable</code> is deprecated and should not be used in newly-written code.</p></div>
2431
+ <p>
2432
+ </p>
2433
+ </div>
2434
+ <hr>
2435
+ <div class="refsect2">
2436
+ <a name="gtk-ctree-set-line-style"></a><h3>gtk_ctree_set_line_style ()</h3>
2437
+ <pre class="programlisting"><span class="returnvalue">void</span>
2438
+ gtk_ctree_set_line_style (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2439
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeLineStyle" title="enum GtkCTreeLineStyle"><span class="type">GtkCTreeLineStyle</span></a> line_style</code></em>);</pre>
2440
+ <div class="warning"><p><code class="literal">gtk_ctree_set_line_style</code> is deprecated and should not be used in newly-written code.</p></div>
2441
+ <p>
2442
+ </p>
2443
+ </div>
2444
+ <hr>
2445
+ <div class="refsect2">
2446
+ <a name="gtk-ctree-set-expander-style"></a><h3>gtk_ctree_set_expander_style ()</h3>
2447
+ <pre class="programlisting"><span class="returnvalue">void</span>
2448
+ gtk_ctree_set_expander_style (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2449
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeExpanderStyle" title="enum GtkCTreeExpanderStyle"><span class="type">GtkCTreeExpanderStyle</span></a> expander_style</code></em>);</pre>
2450
+ <div class="warning"><p><code class="literal">gtk_ctree_set_expander_style</code> is deprecated and should not be used in newly-written code.</p></div>
2451
+ <p>
2452
+ </p>
2453
+ </div>
2454
+ <hr>
2455
+ <div class="refsect2">
2456
+ <a name="gtk-ctree-set-drag-compare-func"></a><h3>gtk_ctree_set_drag_compare_func ()</h3>
2457
+ <pre class="programlisting"><span class="returnvalue">void</span>
2458
+ gtk_ctree_set_drag_compare_func (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2459
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeCompareDragFunc" title="GtkCTreeCompareDragFunc ()"><span class="type">GtkCTreeCompareDragFunc</span></a> cmp_func</code></em>);</pre>
2460
+ <div class="warning"><p><code class="literal">gtk_ctree_set_drag_compare_func</code> is deprecated and should not be used in newly-written code.</p></div>
2461
+ <p>
2462
+ FIXME
2463
+ </p>
2464
+ </div>
2465
+ <hr>
2466
+ <div class="refsect2">
2467
+ <a name="gtk-ctree-sort-node"></a><h3>gtk_ctree_sort_node ()</h3>
2468
+ <pre class="programlisting"><span class="returnvalue">void</span>
2469
+ gtk_ctree_sort_node (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2470
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
2471
+ <div class="warning"><p><code class="literal">gtk_ctree_sort_node</code> is deprecated and should not be used in newly-written code.</p></div>
2472
+ <p>
2473
+ Sort the children of a node. See <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> for how to set the sorting
2474
+ criteria etc.
2475
+ </p>
2476
+ </div>
2477
+ <hr>
2478
+ <div class="refsect2">
2479
+ <a name="gtk-ctree-sort-recursive"></a><h3>gtk_ctree_sort_recursive ()</h3>
2480
+ <pre class="programlisting"><span class="returnvalue">void</span>
2481
+ gtk_ctree_sort_recursive (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2482
+ <em class="parameter"><code><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *node</code></em>);</pre>
2483
+ <div class="warning"><p><code class="literal">gtk_ctree_sort_recursive</code> is deprecated and should not be used in newly-written code.</p></div>
2484
+ <p>
2485
+ Sort the descendants of a node. See <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> for how to set the sorting
2486
+ criteria etc.
2487
+ </p>
2488
+ </div>
2489
+ <hr>
2490
+ <div class="refsect2">
2491
+ <a name="gtk-ctree-node-nth"></a><h3>gtk_ctree_node_nth ()</h3>
2492
+ <pre class="programlisting"><a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="returnvalue">GtkCTreeNode</span></a> *
2493
+ gtk_ctree_node_nth (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2494
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> row</code></em>);</pre>
2495
+ <div class="warning"><p><code class="literal">gtk_ctree_node_nth</code> is deprecated and should not be used in newly-written code.</p></div>
2496
+ <p>
2497
+ </p>
2498
+ <div class="refsect3">
2499
+ <a name="id-1.4.23.3.11.76.6"></a><h4>Returns</h4>
2500
+ <p>The node corresponding to the <em class="parameter"><code>row</code></em>
2501
+ th row.</p>
2502
+ <p></p>
2503
+ </div>
2504
+ </div>
2505
+ <hr>
2506
+ <div class="refsect2">
2507
+ <a name="gtk-ctree-set-show-stub"></a><h3>gtk_ctree_set_show_stub ()</h3>
2508
+ <pre class="programlisting"><span class="returnvalue">void</span>
2509
+ gtk_ctree_set_show_stub (<em class="parameter"><code><a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree</code></em>,
2510
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> show_stub</code></em>);</pre>
2511
+ <div class="warning"><p><code class="literal">gtk_ctree_set_show_stub</code> is deprecated and should not be used in newly-written code.</p></div>
2512
+ <p>
2513
+ </p>
2514
+ </div>
2515
+ </div>
2516
+ <div class="refsect1">
2517
+ <a name="GtkCTree.other_details"></a><h2>Types and Values</h2>
2518
+ <div class="refsect2">
2519
+ <a name="GtkCTree-struct"></a><h3>struct GtkCTree</h3>
2520
+ <pre class="programlisting">struct GtkCTree;</pre>
2521
+ <div class="warning"><p><code class="literal">GtkCTree</code> is deprecated and should not be used in newly-written code.</p></div>
2522
+ <p>
2523
+ The <a class="link" href="GtkCTree.html#GtkCTree-struct" title="struct GtkCTree"><span class="type">GtkCTree</span></a> contains the following user-accessible fields.
2524
+ These fields should be considered read-only; to set the values,
2525
+ use the methods below.
2526
+ </p>
2527
+ <div class="informaltable"><table width="100%" border="0">
2528
+ <colgroup>
2529
+ <col>
2530
+ <col>
2531
+ </colgroup>
2532
+ <tbody>
2533
+ <tr>
2534
+ <td>
2535
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code>tree_indent</code></em>;</td>
2536
+ <td>The number of pixels each successive level of the tree is
2537
+ indented in the display.</td>
2538
+ </tr>
2539
+ <tr>
2540
+ <td>
2541
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code>tree_spacing</code></em>;</td>
2542
+ <td>The space in pixels between the graphical tree and the text in the
2543
+ node.</td>
2544
+ </tr>
2545
+ <tr>
2546
+ <td>
2547
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code>tree_column</code></em>;</td>
2548
+ <td>The index of the column for which the tree graphics is drawn. </td>
2549
+ </tr>
2550
+ <tr>
2551
+ <td>
2552
+ <a class="link" href="GtkCTree.html#GtkCTreeLineStyle" title="enum GtkCTreeLineStyle"><span class="type">GtkCTreeLineStyle</span></a> <em class="structfield"><code>line_style</code></em>;</td>
2553
+ <td>The style in which the lines in the tree graphics are drawn.</td>
2554
+ </tr>
2555
+ <tr>
2556
+ <td>
2557
+ <a class="link" href="GtkCTree.html#GtkCTreeExpanderStyle" title="enum GtkCTreeExpanderStyle"><span class="type">GtkCTreeExpanderStyle</span></a> <em class="structfield"><code>expander_style</code></em>;</td>
2558
+ <td>The style in which the expander buttons are drawn.</td>
2559
+ </tr>
2560
+ <tr>
2561
+ <td>
2562
+ <a class="link" href="GtkCTree.html#GtkCTreeExpanderStyle" title="enum GtkCTreeExpanderStyle"><span class="type">GtkCTreeExpanderStyle</span></a> <em class="structfield"><code>expander_style</code></em>;</td>
2563
+ <td>FIXME.</td>
2564
+ </tr>
2565
+ </tbody>
2566
+ </table></div>
2567
+ <p>
2568
+ </p>
2569
+ </div>
2570
+ <hr>
2571
+ <div class="refsect2">
2572
+ <a name="GtkCTreePos"></a><h3>enum GtkCTreePos</h3>
2573
+ <div class="warning"><p><code class="literal">GtkCTreePos</code> is deprecated and should not be used in newly-written code.</p></div>
2574
+ <p>
2575
+ A value specifying the position of a new node relative to an old one.
2576
+ </p>
2577
+ <div class="informaltable"><table width="100%" border="0">
2578
+ <colgroup>
2579
+ <col>
2580
+ <col>
2581
+ </colgroup>
2582
+ <tbody>
2583
+ <tr>
2584
+ <td>GTK_CTREE_POS_BEFORE</td>
2585
+ <td>As a sibling, before the specified node.</td>
2586
+ </tr>
2587
+ <tr>
2588
+ <td>GTK_CTREE_POS_AS_CHILD</td>
2589
+ <td>As a child of the specified node.</td>
2590
+ </tr>
2591
+ <tr>
2592
+ <td>GTK_CTREE_POS_AFTER</td>
2593
+ <td>As a sibling, after the specified node.</td>
2594
+ </tr>
2595
+ </tbody>
2596
+ </table></div>
2597
+ <p>
2598
+ </p>
2599
+ <div class="refsect3">
2600
+ <a name="id-1.4.23.3.12.3.5"></a><h4>Members</h4>
2601
+ <div class="informaltable"><table width="100%" border="0">
2602
+ <colgroup>
2603
+ <col width="300px" class="enum_members_name">
2604
+ <col class="enum_members_description">
2605
+ <col width="200px" class="enum_members_annotations">
2606
+ </colgroup>
2607
+ <tbody>
2608
+ <tr>
2609
+ <td class="enum_member_name"><p><a name="GTK-CTREE-POS-BEFORE:CAPS"></a>GTK_CTREE_POS_BEFORE</p></td>
2610
+ <td class="enum_member_description"> </td>
2611
+ <td class="enum_member_annotations"> </td>
2612
+ </tr>
2613
+ <tr>
2614
+ <td class="enum_member_name"><p><a name="GTK-CTREE-POS-AS-CHILD:CAPS"></a>GTK_CTREE_POS_AS_CHILD</p></td>
2615
+ <td class="enum_member_description"> </td>
2616
+ <td class="enum_member_annotations"> </td>
2617
+ </tr>
2618
+ <tr>
2619
+ <td class="enum_member_name"><p><a name="GTK-CTREE-POS-AFTER:CAPS"></a>GTK_CTREE_POS_AFTER</p></td>
2620
+ <td class="enum_member_description"> </td>
2621
+ <td class="enum_member_annotations"> </td>
2622
+ </tr>
2623
+ </tbody>
2624
+ </table></div>
2625
+ </div>
2626
+ </div>
2627
+ <hr>
2628
+ <div class="refsect2">
2629
+ <a name="GtkCTreeLineStyle"></a><h3>enum GtkCTreeLineStyle</h3>
2630
+ <div class="warning"><p><code class="literal">GtkCTreeLineStyle</code> is deprecated and should not be used in newly-written code.</p></div>
2631
+ <p>
2632
+ The appearance of the lines in the tree graphics.
2633
+ </p>
2634
+ <div class="informaltable"><table width="100%" border="0">
2635
+ <colgroup>
2636
+ <col>
2637
+ <col>
2638
+ </colgroup>
2639
+ <tbody>
2640
+ <tr>
2641
+ <td>GTK_CTREE_LINES_NONE</td>
2642
+ <td>No lines.</td>
2643
+ </tr>
2644
+ <tr>
2645
+ <td>GTK_CTREE_LINES_SOLID</td>
2646
+ <td>Solid lines.</td>
2647
+ </tr>
2648
+ <tr>
2649
+ <td>GTK_CTREE_LINES_DOTTED</td>
2650
+ <td>Dotted lines.</td>
2651
+ </tr>
2652
+ <tr>
2653
+ <td>GTK_CTREE_LINES_TABBED</td>
2654
+ <td>FIXME.</td>
2655
+ </tr>
2656
+ </tbody>
2657
+ </table></div>
2658
+ <p>
2659
+ </p>
2660
+ <div class="refsect3">
2661
+ <a name="id-1.4.23.3.12.4.5"></a><h4>Members</h4>
2662
+ <div class="informaltable"><table width="100%" border="0">
2663
+ <colgroup>
2664
+ <col width="300px" class="enum_members_name">
2665
+ <col class="enum_members_description">
2666
+ <col width="200px" class="enum_members_annotations">
2667
+ </colgroup>
2668
+ <tbody>
2669
+ <tr>
2670
+ <td class="enum_member_name"><p><a name="GTK-CTREE-LINES-NONE:CAPS"></a>GTK_CTREE_LINES_NONE</p></td>
2671
+ <td class="enum_member_description"> </td>
2672
+ <td class="enum_member_annotations"> </td>
2673
+ </tr>
2674
+ <tr>
2675
+ <td class="enum_member_name"><p><a name="GTK-CTREE-LINES-SOLID:CAPS"></a>GTK_CTREE_LINES_SOLID</p></td>
2676
+ <td class="enum_member_description"> </td>
2677
+ <td class="enum_member_annotations"> </td>
2678
+ </tr>
2679
+ <tr>
2680
+ <td class="enum_member_name"><p><a name="GTK-CTREE-LINES-DOTTED:CAPS"></a>GTK_CTREE_LINES_DOTTED</p></td>
2681
+ <td class="enum_member_description"> </td>
2682
+ <td class="enum_member_annotations"> </td>
2683
+ </tr>
2684
+ <tr>
2685
+ <td class="enum_member_name"><p><a name="GTK-CTREE-LINES-TABBED:CAPS"></a>GTK_CTREE_LINES_TABBED</p></td>
2686
+ <td class="enum_member_description"> </td>
2687
+ <td class="enum_member_annotations"> </td>
2688
+ </tr>
2689
+ </tbody>
2690
+ </table></div>
2691
+ </div>
2692
+ </div>
2693
+ <hr>
2694
+ <div class="refsect2">
2695
+ <a name="GtkCTreeExpanderStyle"></a><h3>enum GtkCTreeExpanderStyle</h3>
2696
+ <div class="warning"><p><code class="literal">GtkCTreeExpanderStyle</code> is deprecated and should not be used in newly-written code.</p></div>
2697
+ <p>
2698
+ The appearance of the expander buttons, i.e. the small buttons
2699
+ which expand or contract parts of the tree when pressed.
2700
+ </p>
2701
+ <div class="informaltable"><table width="100%" border="0">
2702
+ <colgroup>
2703
+ <col>
2704
+ <col>
2705
+ </colgroup>
2706
+ <tbody>
2707
+ <tr>
2708
+ <td>GTK_CTREE_EXPANDER_NONE</td>
2709
+ <td>No expanders.</td>
2710
+ </tr>
2711
+ <tr>
2712
+ <td>GTK_CTREE_EXPANDER_SQUARE</td>
2713
+ <td>Square expanders.</td>
2714
+ </tr>
2715
+ <tr>
2716
+ <td>GTK_CTREE_EXPANDER_TRIANGLE</td>
2717
+ <td>Triangular expanders.</td>
2718
+ </tr>
2719
+ <tr>
2720
+ <td>GTK_CTREE_EXPANDER_CIRCULAR</td>
2721
+ <td>Round expanders.</td>
2722
+ </tr>
2723
+ </tbody>
2724
+ </table></div>
2725
+ <p>
2726
+ </p>
2727
+ <div class="refsect3">
2728
+ <a name="id-1.4.23.3.12.5.5"></a><h4>Members</h4>
2729
+ <div class="informaltable"><table width="100%" border="0">
2730
+ <colgroup>
2731
+ <col width="300px" class="enum_members_name">
2732
+ <col class="enum_members_description">
2733
+ <col width="200px" class="enum_members_annotations">
2734
+ </colgroup>
2735
+ <tbody>
2736
+ <tr>
2737
+ <td class="enum_member_name"><p><a name="GTK-CTREE-EXPANDER-NONE:CAPS"></a>GTK_CTREE_EXPANDER_NONE</p></td>
2738
+ <td class="enum_member_description"> </td>
2739
+ <td class="enum_member_annotations"> </td>
2740
+ </tr>
2741
+ <tr>
2742
+ <td class="enum_member_name"><p><a name="GTK-CTREE-EXPANDER-SQUARE:CAPS"></a>GTK_CTREE_EXPANDER_SQUARE</p></td>
2743
+ <td class="enum_member_description"> </td>
2744
+ <td class="enum_member_annotations"> </td>
2745
+ </tr>
2746
+ <tr>
2747
+ <td class="enum_member_name"><p><a name="GTK-CTREE-EXPANDER-TRIANGLE:CAPS"></a>GTK_CTREE_EXPANDER_TRIANGLE</p></td>
2748
+ <td class="enum_member_description"> </td>
2749
+ <td class="enum_member_annotations"> </td>
2750
+ </tr>
2751
+ <tr>
2752
+ <td class="enum_member_name"><p><a name="GTK-CTREE-EXPANDER-CIRCULAR:CAPS"></a>GTK_CTREE_EXPANDER_CIRCULAR</p></td>
2753
+ <td class="enum_member_description"> </td>
2754
+ <td class="enum_member_annotations"> </td>
2755
+ </tr>
2756
+ </tbody>
2757
+ </table></div>
2758
+ </div>
2759
+ </div>
2760
+ <hr>
2761
+ <div class="refsect2">
2762
+ <a name="GtkCTreeExpansionType"></a><h3>enum GtkCTreeExpansionType</h3>
2763
+ <div class="warning"><p><code class="literal">GtkCTreeExpansionType</code> is deprecated and should not be used in newly-written code.</p></div>
2764
+ <p>
2765
+ How to expand or collapse a part of a tree.
2766
+ </p>
2767
+ <div class="informaltable"><table width="100%" border="0">
2768
+ <colgroup>
2769
+ <col>
2770
+ <col>
2771
+ </colgroup>
2772
+ <tbody>
2773
+ <tr>
2774
+ <td>GTK_CTREE_EXPANSION_EXPAND</td>
2775
+ <td>Expand this node.</td>
2776
+ </tr>
2777
+ <tr>
2778
+ <td>GTK_CTREE_EXPANSION_EXPAND_RECURSIVE</td>
2779
+ <td>Expand this node and everything below it in the hierarchy.</td>
2780
+ </tr>
2781
+ <tr>
2782
+ <td>GTK_CTREE_EXPANSION_COLLAPSE</td>
2783
+ <td>Collapse this node.</td>
2784
+ </tr>
2785
+ <tr>
2786
+ <td>GTK_CTREE_EXPANSION_COLLAPSE_RECURSIVE</td>
2787
+ <td>Collapse this node and everything below it in the hierarchy.</td>
2788
+ </tr>
2789
+ <tr>
2790
+ <td>GTK_CTREE_EXPANSION_TOGGLE</td>
2791
+ <td>Toggle this node (i.e. expand if collapsed and vice versa).</td>
2792
+ </tr>
2793
+ <tr>
2794
+ <td>GTK_CTREE_EXPANSION_TOGGLE_RECURSIVE</td>
2795
+ <td>Toggle this node and everything below it in the hierarchy.</td>
2796
+ </tr>
2797
+ </tbody>
2798
+ </table></div>
2799
+ <p>
2800
+ </p>
2801
+ <div class="refsect3">
2802
+ <a name="id-1.4.23.3.12.6.5"></a><h4>Members</h4>
2803
+ <div class="informaltable"><table width="100%" border="0">
2804
+ <colgroup>
2805
+ <col width="300px" class="enum_members_name">
2806
+ <col class="enum_members_description">
2807
+ <col width="200px" class="enum_members_annotations">
2808
+ </colgroup>
2809
+ <tbody>
2810
+ <tr>
2811
+ <td class="enum_member_name"><p><a name="GTK-CTREE-EXPANSION-EXPAND:CAPS"></a>GTK_CTREE_EXPANSION_EXPAND</p></td>
2812
+ <td class="enum_member_description"> </td>
2813
+ <td class="enum_member_annotations"> </td>
2814
+ </tr>
2815
+ <tr>
2816
+ <td class="enum_member_name"><p><a name="GTK-CTREE-EXPANSION-EXPAND-RECURSIVE:CAPS"></a>GTK_CTREE_EXPANSION_EXPAND_RECURSIVE</p></td>
2817
+ <td class="enum_member_description"> </td>
2818
+ <td class="enum_member_annotations"> </td>
2819
+ </tr>
2820
+ <tr>
2821
+ <td class="enum_member_name"><p><a name="GTK-CTREE-EXPANSION-COLLAPSE:CAPS"></a>GTK_CTREE_EXPANSION_COLLAPSE</p></td>
2822
+ <td class="enum_member_description"> </td>
2823
+ <td class="enum_member_annotations"> </td>
2824
+ </tr>
2825
+ <tr>
2826
+ <td class="enum_member_name"><p><a name="GTK-CTREE-EXPANSION-COLLAPSE-RECURSIVE:CAPS"></a>GTK_CTREE_EXPANSION_COLLAPSE_RECURSIVE</p></td>
2827
+ <td class="enum_member_description"> </td>
2828
+ <td class="enum_member_annotations"> </td>
2829
+ </tr>
2830
+ <tr>
2831
+ <td class="enum_member_name"><p><a name="GTK-CTREE-EXPANSION-TOGGLE:CAPS"></a>GTK_CTREE_EXPANSION_TOGGLE</p></td>
2832
+ <td class="enum_member_description"> </td>
2833
+ <td class="enum_member_annotations"> </td>
2834
+ </tr>
2835
+ <tr>
2836
+ <td class="enum_member_name"><p><a name="GTK-CTREE-EXPANSION-TOGGLE-RECURSIVE:CAPS"></a>GTK_CTREE_EXPANSION_TOGGLE_RECURSIVE</p></td>
2837
+ <td class="enum_member_description"> </td>
2838
+ <td class="enum_member_annotations"> </td>
2839
+ </tr>
2840
+ </tbody>
2841
+ </table></div>
2842
+ </div>
2843
+ </div>
2844
+ <hr>
2845
+ <div class="refsect2">
2846
+ <a name="GtkCTreeRow"></a><h3>struct GtkCTreeRow</h3>
2847
+ <pre class="programlisting">struct GtkCTreeRow {
2848
+ GtkCListRow row;
2849
+
2850
+ GtkCTreeNode *parent;
2851
+ GtkCTreeNode *sibling;
2852
+ GtkCTreeNode *children;
2853
+
2854
+ GdkPixmap *pixmap_closed;
2855
+ GdkBitmap *mask_closed;
2856
+ GdkPixmap *pixmap_opened;
2857
+ GdkBitmap *mask_opened;
2858
+
2859
+ guint16 level;
2860
+
2861
+ guint is_leaf : 1;
2862
+ guint expanded : 1;
2863
+ };
2864
+ </pre>
2865
+ <div class="warning"><p><code class="literal">GtkCTreeRow</code> is deprecated and should not be used in newly-written code.</p></div>
2866
+ <p>
2867
+ A structure representing a single row in the tree graph.
2868
+ The values inside the structure should be considered read-only.
2869
+ This structure is derived from the <a class="link" href="GtkCList.html#GtkCListRow" title="struct GtkCListRow"><span class="type">GtkCListRow</span></a> structure.
2870
+ </p>
2871
+ <div class="informaltable"><table width="100%" border="0">
2872
+ <colgroup>
2873
+ <col>
2874
+ <col>
2875
+ </colgroup>
2876
+ <tbody>
2877
+ <tr>
2878
+ <td>
2879
+ <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *<em class="structfield"><code>parent</code></em>;</td>
2880
+ <td>The parent node of the node corresponding to this row.
2881
+ </td>
2882
+ </tr>
2883
+ <tr>
2884
+ <td>
2885
+ <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *<em class="structfield"><code>sibling</code></em>;</td>
2886
+ <td>The next sibling node of the node corresponding to this row.
2887
+ </td>
2888
+ </tr>
2889
+ <tr>
2890
+ <td>
2891
+ <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *<em class="structfield"><code>children</code></em>;</td>
2892
+ <td>The first child node corresponding to this row; to access
2893
+ the other children, just use the siblings of that node.
2894
+ </td>
2895
+ </tr>
2896
+ <tr>
2897
+ <td>
2898
+ <a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *<em class="structfield"><code>pixmap_closed</code></em>;</td>
2899
+ <td> The pixmap to be shown when the node is collapsed.
2900
+ </td>
2901
+ </tr>
2902
+ <tr>
2903
+ <td>
2904
+ <a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *<em class="structfield"><code>mask_closed</code></em>;</td>
2905
+ <td> The mask for the above pixmap.
2906
+ </td>
2907
+ </tr>
2908
+ <tr>
2909
+ <td>
2910
+ <a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *<em class="structfield"><code>pixmap_opened</code></em>;</td>
2911
+ <td> The pixmap to be shown when the node is expanded.
2912
+ </td>
2913
+ </tr>
2914
+ <tr>
2915
+ <td>
2916
+ <a href="http://library.gnome.org/devel/gdk3/gdk2-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *<em class="structfield"><code>mask_opened</code></em>;</td>
2917
+ <td> The mask for the above pixmap.
2918
+ </td>
2919
+ </tr>
2920
+ <tr>
2921
+ <td>
2922
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint16"><span class="type">guint16</span></a> <em class="structfield"><code>level</code></em>;</td>
2923
+ <td>The level of this node in the tree.
2924
+ </td>
2925
+ </tr>
2926
+ <tr>
2927
+ <td>
2928
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code>is_leaf</code></em> : 1;</td>
2929
+ <td>Whether this row is a leaf.
2930
+ </td>
2931
+ </tr>
2932
+ <tr>
2933
+ <td>
2934
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code>expanded</code></em> : 1;</td>
2935
+ <td>Whether the children of this row are visible.
2936
+ </td>
2937
+ </tr>
2938
+ </tbody>
2939
+ </table></div>
2940
+ <p>
2941
+ </p>
2942
+ </div>
2943
+ <hr>
2944
+ <div class="refsect2">
2945
+ <a name="GtkCTreeNode"></a><h3>struct GtkCTreeNode</h3>
2946
+ <pre class="programlisting">struct GtkCTreeNode {
2947
+ GList list;
2948
+ };
2949
+ </pre>
2950
+ <div class="warning"><p><code class="literal">GtkCTreeNode</code> is deprecated and should not be used in newly-written code.</p></div>
2951
+ <p>
2952
+ This structure is opaque - you should use the
2953
+ macros <a class="link" href="GtkCTree.html#GTK-CTREE-ROW:CAPS" title="GTK_CTREE_ROW()"><span class="type">GTK_CTREE_ROW</span></a>, <a class="link" href="GtkCTree.html#GTK-CTREE-NODE-NEXT:CAPS" title="GTK_CTREE_NODE_NEXT()"><span class="type">GTK_CTREE_NODE_NEXT</span></a> etc. as well
2954
+ as the functions below to access it.
2955
+ </p>
2956
+ </div>
2957
+ </div>
2958
+ <div class="refsect1">
2959
+ <a name="GtkCTree.property-details"></a><h2>Property Details</h2>
2960
+ <div class="refsect2">
2961
+ <a name="GtkCTree--expander-style"></a><h3>The <code class="literal">“expander-style”</code> property</h3>
2962
+ <pre class="programlisting"> “expander-style” <a class="link" href="GtkCTree.html#GtkCTreeExpanderStyle" title="enum GtkCTreeExpanderStyle"><span class="type">GtkCTreeExpanderStyle</span></a></pre>
2963
+ <p>
2964
+ The style of the expander buttons.
2965
+ </p>
2966
+ <p>Flags: Read / Write</p>
2967
+ <p>Default value: GTK_CTREE_EXPANDER_NONE</p>
2968
+ </div>
2969
+ <hr>
2970
+ <div class="refsect2">
2971
+ <a name="GtkCTree--indent"></a><h3>The <code class="literal">“indent”</code> property</h3>
2972
+ <pre class="programlisting"> “indent” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre>
2973
+ <p>
2974
+ The number of pixels to indent the tree levels.
2975
+ </p>
2976
+ <p>Flags: Read / Write</p>
2977
+ <p>Default value: 0</p>
2978
+ </div>
2979
+ <hr>
2980
+ <div class="refsect2">
2981
+ <a name="GtkCTree--line-style"></a><h3>The <code class="literal">“line-style”</code> property</h3>
2982
+ <pre class="programlisting"> “line-style” <a class="link" href="GtkCTree.html#GtkCTreeLineStyle" title="enum GtkCTreeLineStyle"><span class="type">GtkCTreeLineStyle</span></a></pre>
2983
+ <p>
2984
+ The style of the lines in the tree graphic.
2985
+ </p>
2986
+ <p>Flags: Read / Write</p>
2987
+ <p>Default value: GTK_CTREE_LINES_NONE</p>
2988
+ </div>
2989
+ <hr>
2990
+ <div class="refsect2">
2991
+ <a name="GtkCTree--n-columns"></a><h3>The <code class="literal">“n-columns”</code> property</h3>
2992
+ <pre class="programlisting"> “n-columns” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre>
2993
+ <p>
2994
+ The number of columns in the tree.
2995
+ </p>
2996
+ <p>Flags: Read / Write / Construct Only</p>
2997
+ <p>Default value: 0</p>
2998
+ </div>
2999
+ <hr>
3000
+ <div class="refsect2">
3001
+ <a name="GtkCTree--show-stub"></a><h3>The <code class="literal">“show-stub”</code> property</h3>
3002
+ <pre class="programlisting"> “show-stub” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
3003
+ <p></p>
3004
+ <p>Flags: Read / Write</p>
3005
+ <p>Default value: FALSE</p>
3006
+ </div>
3007
+ <hr>
3008
+ <div class="refsect2">
3009
+ <a name="GtkCTree--spacing"></a><h3>The <code class="literal">“spacing”</code> property</h3>
3010
+ <pre class="programlisting"> “spacing” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre>
3011
+ <p>
3012
+ The number of pixels between the tree and the columns.
3013
+ </p>
3014
+ <p>Flags: Read / Write</p>
3015
+ <p>Default value: 0</p>
3016
+ </div>
3017
+ <hr>
3018
+ <div class="refsect2">
3019
+ <a name="GtkCTree--tree-column"></a><h3>The <code class="literal">“tree-column”</code> property</h3>
3020
+ <pre class="programlisting"> “tree-column” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre>
3021
+ <p>
3022
+ The column in which the actual tree graphic appears.
3023
+ </p>
3024
+ <p>Flags: Read / Write / Construct Only</p>
3025
+ <p>Default value: 0</p>
3026
+ </div>
3027
+ </div>
3028
+ <div class="refsect1">
3029
+ <a name="GtkCTree.signal-details"></a><h2>Signal Details</h2>
3030
+ <div class="refsect2">
3031
+ <a name="GtkCTree-change-focus-row-expansion"></a><h3>The <code class="literal">“change-focus-row-expansion”</code> signal</h3>
3032
+ <pre class="programlisting"><span class="returnvalue">void</span>
3033
+ user_function (<a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree,
3034
+ <a class="link" href="GtkCTree.html#GtkCTreeExpansionType" title="enum GtkCTreeExpansionType"><span class="type">GtkCTreeExpansionType</span></a> arg1,
3035
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3036
+ <p>
3037
+ The row which has the focus is either collapsed or expanded
3038
+ or toggled.
3039
+ </p>
3040
+ <div class="refsect3">
3041
+ <a name="id-1.4.23.3.14.2.5"></a><h4>Parameters</h4>
3042
+ <div class="informaltable"><table width="100%" border="0">
3043
+ <colgroup>
3044
+ <col width="150px" class="parameters_name">
3045
+ <col class="parameters_description">
3046
+ <col width="200px" class="parameters_annotations">
3047
+ </colgroup>
3048
+ <tbody>
3049
+ <tr>
3050
+ <td class="parameter_name"><p>ctree</p></td>
3051
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
3052
+ <td class="parameter_annotations"> </td>
3053
+ </tr>
3054
+ <tr>
3055
+ <td class="parameter_name"><p>expansion</p></td>
3056
+ <td class="parameter_description"><p>What is being done.</p></td>
3057
+ <td class="parameter_annotations"> </td>
3058
+ </tr>
3059
+ <tr>
3060
+ <td class="parameter_name"><p>user_data</p></td>
3061
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3062
+ <td class="parameter_annotations"> </td>
3063
+ </tr>
3064
+ </tbody>
3065
+ </table></div>
3066
+ </div>
3067
+ <p>Flags: Action</p>
3068
+ </div>
3069
+ <hr>
3070
+ <div class="refsect2">
3071
+ <a name="GtkCTree-tree-collapse"></a><h3>The <code class="literal">“tree-collapse”</code> signal</h3>
3072
+ <pre class="programlisting"><span class="returnvalue">void</span>
3073
+ user_function (<a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree,
3074
+ <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *arg1,
3075
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3076
+ <p>
3077
+ Emitted when a node is collapsed.
3078
+ </p>
3079
+ <div class="refsect3">
3080
+ <a name="id-1.4.23.3.14.3.5"></a><h4>Parameters</h4>
3081
+ <div class="informaltable"><table width="100%" border="0">
3082
+ <colgroup>
3083
+ <col width="150px" class="parameters_name">
3084
+ <col class="parameters_description">
3085
+ <col width="200px" class="parameters_annotations">
3086
+ </colgroup>
3087
+ <tbody>
3088
+ <tr>
3089
+ <td class="parameter_name"><p>ctree</p></td>
3090
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
3091
+ <td class="parameter_annotations"> </td>
3092
+ </tr>
3093
+ <tr>
3094
+ <td class="parameter_name"><p>user_data</p></td>
3095
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3096
+ <td class="parameter_annotations"> </td>
3097
+ </tr>
3098
+ </tbody>
3099
+ </table></div>
3100
+ </div>
3101
+ <p>Flags: Run Last</p>
3102
+ </div>
3103
+ <hr>
3104
+ <div class="refsect2">
3105
+ <a name="GtkCTree-tree-expand"></a><h3>The <code class="literal">“tree-expand”</code> signal</h3>
3106
+ <pre class="programlisting"><span class="returnvalue">void</span>
3107
+ user_function (<a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree,
3108
+ <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *arg1,
3109
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3110
+ <p>
3111
+ Emitted when a node is expanded.
3112
+ </p>
3113
+ <div class="refsect3">
3114
+ <a name="id-1.4.23.3.14.4.5"></a><h4>Parameters</h4>
3115
+ <div class="informaltable"><table width="100%" border="0">
3116
+ <colgroup>
3117
+ <col width="150px" class="parameters_name">
3118
+ <col class="parameters_description">
3119
+ <col width="200px" class="parameters_annotations">
3120
+ </colgroup>
3121
+ <tbody>
3122
+ <tr>
3123
+ <td class="parameter_name"><p>ctree</p></td>
3124
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
3125
+ <td class="parameter_annotations"> </td>
3126
+ </tr>
3127
+ <tr>
3128
+ <td class="parameter_name"><p>user_data</p></td>
3129
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3130
+ <td class="parameter_annotations"> </td>
3131
+ </tr>
3132
+ </tbody>
3133
+ </table></div>
3134
+ </div>
3135
+ <p>Flags: Run Last</p>
3136
+ </div>
3137
+ <hr>
3138
+ <div class="refsect2">
3139
+ <a name="GtkCTree-tree-move"></a><h3>The <code class="literal">“tree-move”</code> signal</h3>
3140
+ <pre class="programlisting"><span class="returnvalue">void</span>
3141
+ user_function (<a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree,
3142
+ <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *arg1,
3143
+ <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *arg2,
3144
+ <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *arg3,
3145
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3146
+ <p>
3147
+ Emitted when a node is moved.
3148
+ </p>
3149
+ <div class="refsect3">
3150
+ <a name="id-1.4.23.3.14.5.5"></a><h4>Parameters</h4>
3151
+ <div class="informaltable"><table width="100%" border="0">
3152
+ <colgroup>
3153
+ <col width="150px" class="parameters_name">
3154
+ <col class="parameters_description">
3155
+ <col width="200px" class="parameters_annotations">
3156
+ </colgroup>
3157
+ <tbody>
3158
+ <tr>
3159
+ <td class="parameter_name"><p>ctree</p></td>
3160
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
3161
+ <td class="parameter_annotations"> </td>
3162
+ </tr>
3163
+ <tr>
3164
+ <td class="parameter_name"><p>node</p></td>
3165
+ <td class="parameter_description"><p>The node that is moved.</p></td>
3166
+ <td class="parameter_annotations"> </td>
3167
+ </tr>
3168
+ <tr>
3169
+ <td class="parameter_name"><p>new_parent</p></td>
3170
+ <td class="parameter_description"><p>The new parent of the node.</p></td>
3171
+ <td class="parameter_annotations"> </td>
3172
+ </tr>
3173
+ <tr>
3174
+ <td class="parameter_name"><p>new_sibling</p></td>
3175
+ <td class="parameter_description"><p>The new sibling of the node.</p></td>
3176
+ <td class="parameter_annotations"> </td>
3177
+ </tr>
3178
+ <tr>
3179
+ <td class="parameter_name"><p>user_data</p></td>
3180
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3181
+ <td class="parameter_annotations"> </td>
3182
+ </tr>
3183
+ </tbody>
3184
+ </table></div>
3185
+ </div>
3186
+ <p>Flags: Run Last</p>
3187
+ </div>
3188
+ <hr>
3189
+ <div class="refsect2">
3190
+ <a name="GtkCTree-tree-select-row"></a><h3>The <code class="literal">“tree-select-row”</code> signal</h3>
3191
+ <pre class="programlisting"><span class="returnvalue">void</span>
3192
+ user_function (<a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree,
3193
+ <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *arg1,
3194
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg2,
3195
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3196
+ <p>
3197
+ Emitted when a row is selected.
3198
+ </p>
3199
+ <div class="refsect3">
3200
+ <a name="id-1.4.23.3.14.6.5"></a><h4>Parameters</h4>
3201
+ <div class="informaltable"><table width="100%" border="0">
3202
+ <colgroup>
3203
+ <col width="150px" class="parameters_name">
3204
+ <col class="parameters_description">
3205
+ <col width="200px" class="parameters_annotations">
3206
+ </colgroup>
3207
+ <tbody>
3208
+ <tr>
3209
+ <td class="parameter_name"><p>ctree</p></td>
3210
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
3211
+ <td class="parameter_annotations"> </td>
3212
+ </tr>
3213
+ <tr>
3214
+ <td class="parameter_name"><p>node</p></td>
3215
+ <td class="parameter_description"><p>The node corresponding to the selected row.</p></td>
3216
+ <td class="parameter_annotations"> </td>
3217
+ </tr>
3218
+ <tr>
3219
+ <td class="parameter_name"><p>column</p></td>
3220
+ <td class="parameter_description"><p>The column which was selected.</p></td>
3221
+ <td class="parameter_annotations"> </td>
3222
+ </tr>
3223
+ <tr>
3224
+ <td class="parameter_name"><p>user_data</p></td>
3225
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3226
+ <td class="parameter_annotations"> </td>
3227
+ </tr>
3228
+ </tbody>
3229
+ </table></div>
3230
+ </div>
3231
+ <p>Flags: Run First</p>
3232
+ </div>
3233
+ <hr>
3234
+ <div class="refsect2">
3235
+ <a name="GtkCTree-tree-unselect-row"></a><h3>The <code class="literal">“tree-unselect-row”</code> signal</h3>
3236
+ <pre class="programlisting"><span class="returnvalue">void</span>
3237
+ user_function (<a class="link" href="GtkCTree.html" title="GtkCTree"><span class="type">GtkCTree</span></a> *ctree,
3238
+ <a class="link" href="GtkCTree.html#GtkCTreeNode" title="struct GtkCTreeNode"><span class="type">GtkCTreeNode</span></a> *arg1,
3239
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg2,
3240
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3241
+ <p>
3242
+ Emitted when a node is unselected.
3243
+ </p>
3244
+ <div class="refsect3">
3245
+ <a name="id-1.4.23.3.14.7.5"></a><h4>Parameters</h4>
3246
+ <div class="informaltable"><table width="100%" border="0">
3247
+ <colgroup>
3248
+ <col width="150px" class="parameters_name">
3249
+ <col class="parameters_description">
3250
+ <col width="200px" class="parameters_annotations">
3251
+ </colgroup>
3252
+ <tbody>
3253
+ <tr>
3254
+ <td class="parameter_name"><p>ctree</p></td>
3255
+ <td class="parameter_description"><p>the object which received the signal.</p></td>
3256
+ <td class="parameter_annotations"> </td>
3257
+ </tr>
3258
+ <tr>
3259
+ <td class="parameter_name"><p>node</p></td>
3260
+ <td class="parameter_description"><p>The node corresponding to the selected row.</p></td>
3261
+ <td class="parameter_annotations"> </td>
3262
+ </tr>
3263
+ <tr>
3264
+ <td class="parameter_name"><p>user_data</p></td>
3265
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3266
+ <td class="parameter_annotations"> </td>
3267
+ </tr>
3268
+ </tbody>
3269
+ </table></div>
3270
+ </div>
3271
+ <p>Flags: Run First</p>
3272
+ </div>
3273
+ </div>
3274
+ </div>
3275
+ <div class="footer">
3276
+ <hr>
3277
+ Generated by GTK-Doc V1.21.1</div>
3278
+ </body>
3279
+ </html>