gtk2 1.0.3-x86-mingw32 → 1.1.0-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (756) hide show
  1. data/Rakefile +66 -1
  2. data/ext/gtk2/extconf.rb +0 -96
  3. data/ext/gtk2/global.h +274 -13
  4. data/ext/gtk2/gtk2.def +5 -3
  5. data/ext/gtk2/init.c +263 -19
  6. data/ext/gtk2/rbgdk.c +245 -89
  7. data/ext/gtk2/rbgdk.h +32 -6
  8. data/ext/gtk2/rbgdkatom.c +38 -28
  9. data/ext/gtk2/rbgdkcairo.c +32 -42
  10. data/ext/gtk2/rbgdkcolor.c +52 -42
  11. data/ext/gtk2/rbgdkcolormap.c +42 -37
  12. data/ext/gtk2/rbgdkconst.c +23 -13
  13. data/ext/gtk2/rbgdkconversions.h +19 -6
  14. data/ext/gtk2/rbgdkcursor.c +37 -25
  15. data/ext/gtk2/rbgdkdevice.c +77 -67
  16. data/ext/gtk2/rbgdkdisplay.c +158 -150
  17. data/ext/gtk2/rbgdkdisplaymanager.c +27 -15
  18. data/ext/gtk2/rbgdkdragcontext.c +121 -70
  19. data/ext/gtk2/rbgdkdraw.c +252 -160
  20. data/ext/gtk2/rbgdkevent.c +30 -20
  21. data/ext/gtk2/rbgdkgc.c +123 -116
  22. data/ext/gtk2/rbgdkgeometry.c +77 -68
  23. data/ext/gtk2/rbgdkimage.c +58 -47
  24. data/ext/gtk2/rbgdkinput.c +33 -26
  25. data/ext/gtk2/rbgdkkeymap.c +38 -27
  26. data/ext/gtk2/rbgdkkeyval.c +44 -32
  27. data/ext/gtk2/rbgdkpango.c +66 -39
  28. data/ext/gtk2/rbgdkpangorenderer.c +63 -35
  29. data/ext/gtk2/rbgdkpixbuf.c +36 -25
  30. data/ext/gtk2/rbgdkpixmap.c +65 -49
  31. data/ext/gtk2/rbgdkproperty.c +66 -60
  32. data/ext/gtk2/rbgdkrectangle.c +54 -46
  33. data/ext/gtk2/rbgdkregion.c +144 -79
  34. data/ext/gtk2/rbgdkrgb.c +74 -58
  35. data/ext/gtk2/rbgdkscreen.c +103 -97
  36. data/ext/gtk2/rbgdkselection.c +49 -39
  37. data/ext/gtk2/rbgdkthreads.c +32 -19
  38. data/ext/gtk2/rbgdktimecoord.c +60 -38
  39. data/ext/gtk2/rbgdkvisual.c +79 -71
  40. data/ext/gtk2/rbgdkwindow.c +284 -305
  41. data/ext/gtk2/rbgdkwindowattr.c +69 -58
  42. data/ext/gtk2/rbgdkx11.c +41 -28
  43. data/ext/gtk2/rbgtk.c +498 -19
  44. data/ext/gtk2/rbgtk.h +35 -20
  45. data/ext/gtk2/rbgtkaboutdialog.c +33 -80
  46. data/ext/gtk2/rbgtkaccelerator.c +36 -23
  47. data/ext/gtk2/rbgtkaccelgroup.c +50 -40
  48. data/ext/gtk2/rbgtkaccelgroupentry.c +32 -20
  49. data/ext/gtk2/rbgtkaccelkey.c +40 -28
  50. data/ext/gtk2/rbgtkaccellabel.c +30 -18
  51. data/ext/gtk2/rbgtkaccelmap.c +55 -42
  52. data/ext/gtk2/rbgtkaccessible.c +25 -14
  53. data/ext/gtk2/rbgtkaction.c +68 -68
  54. data/ext/gtk2/rbgtkactiongroup.c +317 -195
  55. data/ext/gtk2/rbgtkadjustment.c +33 -46
  56. data/ext/gtk2/rbgtkalignment.c +36 -24
  57. data/ext/gtk2/rbgtkallocation.c +53 -42
  58. data/ext/gtk2/rbgtkarrow.c +34 -22
  59. data/ext/gtk2/rbgtkaspectframe.c +32 -20
  60. data/ext/gtk2/rbgtkassistant.c +81 -61
  61. data/ext/gtk2/rbgtkbbox.c +32 -20
  62. data/ext/gtk2/rbgtkbin.c +28 -16
  63. data/ext/gtk2/rbgtkbindingset.c +42 -35
  64. data/ext/gtk2/rbgtkborder.c +34 -23
  65. data/ext/gtk2/rbgtkbox.c +40 -29
  66. data/ext/gtk2/rbgtkbuildable.c +57 -45
  67. data/ext/gtk2/rbgtkbuilder.c +53 -38
  68. data/ext/gtk2/rbgtkbutton.c +41 -55
  69. data/ext/gtk2/rbgtkcalendar.c +51 -40
  70. data/ext/gtk2/rbgtkcelleditable.c +28 -17
  71. data/ext/gtk2/rbgtkcelllayout.c +41 -30
  72. data/ext/gtk2/rbgtkcellrenderer.c +43 -32
  73. data/ext/gtk2/rbgtkcellrendereraccel.c +26 -18
  74. data/ext/gtk2/rbgtkcellrenderercombo.c +25 -17
  75. data/ext/gtk2/rbgtkcellrendererpixbuf.c +24 -17
  76. data/ext/gtk2/rbgtkcellrendererprogress.c +25 -17
  77. data/ext/gtk2/rbgtkcellrendererspin.c +24 -16
  78. data/ext/gtk2/rbgtkcellrendererspinner.c +23 -11
  79. data/ext/gtk2/rbgtkcellrenderertext.c +28 -21
  80. data/ext/gtk2/rbgtkcellrenderertoggle.c +24 -16
  81. data/ext/gtk2/rbgtkcellview.c +34 -33
  82. data/ext/gtk2/rbgtkcheckbutton.c +28 -16
  83. data/ext/gtk2/rbgtkcheckmenuitem.c +31 -19
  84. data/ext/gtk2/rbgtkclipboard.c +123 -77
  85. data/ext/gtk2/rbgtkcolorbutton.c +26 -31
  86. data/ext/gtk2/rbgtkcolorsel.c +109 -55
  87. data/ext/gtk2/rbgtkcolorselectiondialog.c +28 -19
  88. data/ext/gtk2/rbgtkcombo.c +43 -32
  89. data/ext/gtk2/rbgtkcombobox.c +44 -83
  90. data/ext/gtk2/rbgtkcomboboxentry.c +26 -21
  91. data/ext/gtk2/rbgtkconst.c +23 -13
  92. data/ext/gtk2/rbgtkcontainer.c +153 -100
  93. data/ext/gtk2/rbgtkconversions.h +19 -6
  94. data/ext/gtk2/rbgtkcurve.c +46 -36
  95. data/ext/gtk2/rbgtkdialog.c +104 -70
  96. data/ext/gtk2/rbgtkdrag.c +173 -121
  97. data/ext/gtk2/rbgtkdrawingarea.c +28 -16
  98. data/ext/gtk2/rbgtkeditable.c +63 -51
  99. data/ext/gtk2/rbgtkentry.c +48 -85
  100. data/ext/gtk2/rbgtkentrycompletion.c +42 -55
  101. data/ext/gtk2/rbgtkeventbox.c +28 -16
  102. data/ext/gtk2/rbgtkexpander.c +26 -35
  103. data/ext/gtk2/rbgtkfilechooser.c +87 -143
  104. data/ext/gtk2/rbgtkfilechooserbutton.c +26 -32
  105. data/ext/gtk2/rbgtkfilechooserdialog.c +25 -15
  106. data/ext/gtk2/rbgtkfilechooserwidget.c +26 -15
  107. data/ext/gtk2/rbgtkfilefilter.c +45 -35
  108. data/ext/gtk2/rbgtkfilesel.c +54 -43
  109. data/ext/gtk2/rbgtkfilesystemerror.c +51 -0
  110. data/ext/gtk2/rbgtkfixed.c +36 -25
  111. data/ext/gtk2/rbgtkfontbutton.c +26 -37
  112. data/ext/gtk2/rbgtkfontselection.c +27 -15
  113. data/ext/gtk2/rbgtkfontselectiondialog.c +43 -32
  114. data/ext/gtk2/rbgtkframe.c +39 -28
  115. data/ext/gtk2/rbgtkgamma.c +32 -20
  116. data/ext/gtk2/rbgtkhandlebox.c +31 -19
  117. data/ext/gtk2/rbgtkhbbox.c +28 -16
  118. data/ext/gtk2/rbgtkhbox.c +29 -17
  119. data/ext/gtk2/rbgtkhpaned.c +28 -16
  120. data/ext/gtk2/rbgtkhruler.c +28 -16
  121. data/ext/gtk2/rbgtkhscale.c +28 -16
  122. data/ext/gtk2/rbgtkhscrollbar.c +28 -16
  123. data/ext/gtk2/rbgtkhseparator.c +28 -16
  124. data/ext/gtk2/rbgtkiconfactory.c +35 -23
  125. data/ext/gtk2/rbgtkiconinfo.c +42 -30
  126. data/ext/gtk2/rbgtkiconset.c +31 -19
  127. data/ext/gtk2/rbgtkiconsize.c +38 -25
  128. data/ext/gtk2/rbgtkiconsource.c +62 -50
  129. data/ext/gtk2/rbgtkicontheme.c +95 -95
  130. data/ext/gtk2/rbgtkiconview.c +87 -121
  131. data/ext/gtk2/rbgtkimage.c +31 -40
  132. data/ext/gtk2/rbgtkimagemenuitem.c +26 -14
  133. data/ext/gtk2/rbgtkimcontext.c +46 -34
  134. data/ext/gtk2/rbgtkimcontextsimple.c +47 -24
  135. data/ext/gtk2/rbgtkimmulticontext.c +26 -14
  136. data/ext/gtk2/rbgtkinputdialog.c +28 -16
  137. data/ext/gtk2/rbgtkinvisible.c +24 -18
  138. data/ext/gtk2/rbgtkitem.c +32 -20
  139. data/ext/gtk2/rbgtkitemfactory.c +65 -57
  140. data/ext/gtk2/rbgtklabel.c +46 -57
  141. data/ext/gtk2/rbgtklayout.c +40 -29
  142. data/ext/gtk2/rbgtklinkbutton.c +26 -15
  143. data/ext/gtk2/rbgtkliststore.c +145 -102
  144. data/ext/gtk2/rbgtkmacros.h +19 -6
  145. data/ext/gtk2/rbgtkmenu.c +47 -59
  146. data/ext/gtk2/rbgtkmenubar.c +30 -30
  147. data/ext/gtk2/rbgtkmenuitem.c +34 -41
  148. data/ext/gtk2/rbgtkmenushell.c +43 -42
  149. data/ext/gtk2/rbgtkmenutoolbutton.c +27 -16
  150. data/ext/gtk2/rbgtkmessagedialog.c +31 -25
  151. data/ext/gtk2/rbgtkmisc.c +33 -22
  152. data/ext/gtk2/rbgtknotebook.c +98 -134
  153. data/ext/gtk2/rbgtkobject.c +46 -81
  154. data/ext/gtk2/rbgtkoptionmenu.c +35 -23
  155. data/ext/gtk2/rbgtkpagesetup.c +64 -54
  156. data/ext/gtk2/rbgtkpagesetupunixdialog.c +34 -27
  157. data/ext/gtk2/rbgtkpaned.c +46 -36
  158. data/ext/gtk2/rbgtkpapersize.c +60 -54
  159. data/ext/gtk2/rbgtkplug.c +32 -20
  160. data/ext/gtk2/rbgtkprintcontext.c +43 -35
  161. data/ext/gtk2/rbgtkprinter.c +36 -37
  162. data/ext/gtk2/rbgtkprintjob.c +36 -37
  163. data/ext/gtk2/rbgtkprintoperation.c +44 -33
  164. data/ext/gtk2/rbgtkprintoperationpreview.c +30 -18
  165. data/ext/gtk2/rbgtkprintsettings.c +248 -192
  166. data/ext/gtk2/rbgtkprintunixdialog.c +33 -45
  167. data/ext/gtk2/rbgtkprogress.c +23 -13
  168. data/ext/gtk2/rbgtkprogressbar.c +47 -46
  169. data/ext/gtk2/rbgtkradioaction.c +84 -39
  170. data/ext/gtk2/rbgtkradiobutton.c +33 -21
  171. data/ext/gtk2/rbgtkradiomenuitem.c +86 -45
  172. data/ext/gtk2/rbgtkradiotoolbutton.c +99 -53
  173. data/ext/gtk2/rbgtkrange.c +36 -56
  174. data/ext/gtk2/rbgtkrc.c +61 -49
  175. data/ext/gtk2/rbgtkrcstyle.c +59 -48
  176. data/ext/gtk2/rbgtkrecentaction.c +28 -16
  177. data/ext/gtk2/rbgtkrecentchooser.c +58 -92
  178. data/ext/gtk2/rbgtkrecentchooserdialog.c +29 -18
  179. data/ext/gtk2/rbgtkrecentchoosermenu.c +25 -21
  180. data/ext/gtk2/rbgtkrecentchooserwidget.c +24 -13
  181. data/ext/gtk2/rbgtkrecentdata.c +47 -36
  182. data/ext/gtk2/rbgtkrecentfilter.c +55 -46
  183. data/ext/gtk2/rbgtkrecentfilterinfo.c +51 -40
  184. data/ext/gtk2/rbgtkrecentinfo.c +66 -56
  185. data/ext/gtk2/rbgtkrecentmanager.c +47 -43
  186. data/ext/gtk2/rbgtkruler.c +35 -30
  187. data/ext/gtk2/rbgtkscale.c +29 -18
  188. data/ext/gtk2/rbgtkscalebutton.c +27 -27
  189. data/ext/gtk2/rbgtkscrollbar.c +23 -13
  190. data/ext/gtk2/rbgtkscrolledwindow.c +44 -60
  191. data/ext/gtk2/rbgtkselection.c +87 -67
  192. data/ext/gtk2/rbgtkselectiondata.c +74 -65
  193. data/ext/gtk2/rbgtkseparator.c +23 -13
  194. data/ext/gtk2/rbgtkseparatormenuitem.c +25 -13
  195. data/ext/gtk2/rbgtkseparatortoolitem.c +26 -21
  196. data/ext/gtk2/rbgtksettings.c +123 -103
  197. data/ext/gtk2/rbgtksizegroup.c +33 -30
  198. data/ext/gtk2/rbgtksocket.c +32 -20
  199. data/ext/gtk2/rbgtkspinbutton.c +48 -38
  200. data/ext/gtk2/rbgtkspinner.c +27 -14
  201. data/ext/gtk2/rbgtkstatusbar.c +36 -31
  202. data/ext/gtk2/rbgtkstatusicon.c +31 -44
  203. data/ext/gtk2/rbgtkstock.c +137 -125
  204. data/ext/gtk2/rbgtkstyle.c +177 -161
  205. data/ext/gtk2/rbgtktable.c +58 -47
  206. data/ext/gtk2/rbgtktargetlist.c +56 -36
  207. data/ext/gtk2/rbgtktearoffmenuitem.c +28 -16
  208. data/ext/gtk2/rbgtktextappearance.c +44 -34
  209. data/ext/gtk2/rbgtktextattributes.c +54 -42
  210. data/ext/gtk2/rbgtktextbuffer.c +188 -191
  211. data/ext/gtk2/rbgtktextchild.c +29 -18
  212. data/ext/gtk2/rbgtktextiter.c +153 -145
  213. data/ext/gtk2/rbgtktextmark.c +33 -30
  214. data/ext/gtk2/rbgtktexttag.c +34 -22
  215. data/ext/gtk2/rbgtktexttagtable.c +36 -25
  216. data/ext/gtk2/rbgtktextview.c +85 -73
  217. data/ext/gtk2/rbgtktoggleaction.c +27 -22
  218. data/ext/gtk2/rbgtktogglebutton.c +37 -26
  219. data/ext/gtk2/rbgtktoggletoolbutton.c +26 -20
  220. data/ext/gtk2/rbgtktoolbar.c +66 -69
  221. data/ext/gtk2/rbgtktoolbutton.c +27 -40
  222. data/ext/gtk2/rbgtktoolitem.c +60 -62
  223. data/ext/gtk2/rbgtktooltip.c +36 -25
  224. data/ext/gtk2/rbgtktooltips.c +42 -34
  225. data/ext/gtk2/rbgtktreedragdest.c +20 -11
  226. data/ext/gtk2/rbgtktreedragsource.c +20 -11
  227. data/ext/gtk2/rbgtktreeiter.c +58 -47
  228. data/ext/gtk2/rbgtktreemodel.c +83 -65
  229. data/ext/gtk2/rbgtktreemodelfilter.c +47 -35
  230. data/ext/gtk2/rbgtktreemodelsort.c +38 -27
  231. data/ext/gtk2/rbgtktreepath.c +55 -44
  232. data/ext/gtk2/rbgtktreerowreference.c +60 -42
  233. data/ext/gtk2/rbgtktreeselection.c +61 -52
  234. data/ext/gtk2/rbgtktreesortable.c +52 -42
  235. data/ext/gtk2/rbgtktreestore.c +88 -67
  236. data/ext/gtk2/rbgtktreeview.c +157 -185
  237. data/ext/gtk2/rbgtktreeviewcolumn.c +57 -62
  238. data/ext/gtk2/rbgtkuimanager.c +61 -61
  239. data/ext/gtk2/rbgtkvbbox.c +28 -16
  240. data/ext/gtk2/rbgtkvbox.c +29 -17
  241. data/ext/gtk2/rbgtkviewport.c +28 -16
  242. data/ext/gtk2/rbgtkvolumebutton.c +28 -16
  243. data/ext/gtk2/rbgtkvpaned.c +28 -16
  244. data/ext/gtk2/rbgtkvruler.c +28 -16
  245. data/ext/gtk2/rbgtkvscale.c +28 -16
  246. data/ext/gtk2/rbgtkvscrollbar.c +28 -16
  247. data/ext/gtk2/rbgtkvseparator.c +28 -16
  248. data/ext/gtk2/rbgtkwidget.c +284 -296
  249. data/ext/gtk2/rbgtkwindow.c +156 -214
  250. data/ext/gtk2/rbgtkwindowgroup.c +35 -24
  251. data/lib/1.8/gtk2.so +0 -0
  252. data/lib/1.9/gtk2.so +0 -0
  253. data/sample/testgtk/labels.rb +1 -0
  254. data/sample/testgtk/testgtk.rb +2 -0
  255. data/vendor/local/bin/gtk-builder-convert +29 -2
  256. data/vendor/local/bin/gtk-demo.exe +0 -0
  257. data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
  258. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  259. data/vendor/local/bin/libgailutil-18.dll +0 -0
  260. data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
  261. data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
  262. data/vendor/local/etc/gtk-2.0/gtk.immodules +1 -1
  263. data/vendor/local/include/gtk-2.0/gdk/gdk.h +4 -7
  264. data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +4 -0
  265. data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +4 -2
  266. data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +7 -0
  267. data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +7 -4
  268. data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +1 -1
  269. data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +2 -1
  270. data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +4 -0
  271. data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +13 -9
  272. data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +2 -0
  273. data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +6 -0
  274. data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +16 -6
  275. data/vendor/local/include/gtk-2.0/gtk/gtk.h +1 -0
  276. data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +18 -14
  277. data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +7 -7
  278. data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +2 -2
  279. data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +1 -1
  280. data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +1 -1
  281. data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +1 -1
  282. data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +15 -4
  283. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +3 -0
  284. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
  285. data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +2 -2
  286. data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +1 -1
  287. data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +1 -1
  288. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +1 -1
  289. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +1 -1
  290. data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +1 -1
  291. data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +1 -1
  292. data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +2 -2
  293. data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +1 -1
  294. data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +1 -1
  295. data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +4 -0
  296. data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +3 -3
  297. data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +2 -2
  298. data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +1 -1
  299. data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +1 -1
  300. data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +3 -3
  301. data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +3 -1
  302. data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +5 -2
  303. data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +1 -1
  304. data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +3 -3
  305. data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +9 -7
  306. data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +4 -4
  307. data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +1 -1
  308. data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +7 -7
  309. data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +25 -2
  310. data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +1 -1
  311. data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +6 -0
  312. data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +1 -1
  313. data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +4 -4
  314. data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +4 -0
  315. data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +3 -3
  316. data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +1 -1
  317. data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +3 -3
  318. data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +1 -1
  319. data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +2 -2
  320. data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +1 -1
  321. data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +2 -0
  322. data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +4 -4
  323. data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +4 -0
  324. data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +6 -2
  325. data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +8 -7
  326. data/vendor/local/lib/gailutil.lib +0 -0
  327. data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
  328. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
  329. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
  330. data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
  331. data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
  332. data/vendor/local/lib/libgailutil.dll.a +0 -0
  333. data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
  334. data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
  335. data/vendor/local/lib/pkgconfig/gail.pc +1 -1
  336. data/vendor/local/lib/pkgconfig/gdk-2.0.pc +1 -1
  337. data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +1 -1
  338. data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +1 -1
  339. data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +1 -1
  340. data/vendor/local/manifest/{gtk+-dev_2.22.1-1_win32.mft → gtk+-dev_2.24.8-1_win32.mft} +10 -8
  341. data/vendor/local/manifest/{gtk+_2.22.1-1_win32.mft → gtk+_2.24.8-1_win32.mft} +2 -6
  342. data/vendor/local/share/doc/{gtk+-2.22.1 → gtk+-2.24.8}/COPYING +0 -0
  343. data/vendor/local/share/doc/{gtk+-dev-2.22.1 → gtk+-dev-2.24.8}/COPYING +0 -0
  344. data/vendor/local/share/gtk-2.0/demo/appwindow.c +0 -21
  345. data/vendor/local/share/gtk-2.0/demo/combobox.c +6 -6
  346. data/vendor/local/share/gtk-2.0/demo/editable_cells.c +5 -5
  347. data/vendor/local/share/gtk-2.0/demo/iconview.c +1 -0
  348. data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +1 -1
  349. data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +1 -1
  350. data/vendor/local/share/gtk-2.0/demo/sizegroup.c +2 -2
  351. data/vendor/local/share/gtk-2.0/demo/textview.c +4 -4
  352. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +74 -108
  353. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +48 -62
  354. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp +1 -1
  355. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +1 -1
  356. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +3 -3
  357. data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +3 -3
  358. data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +2 -1
  359. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +154 -211
  360. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +35 -39
  361. data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +182 -241
  362. data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +9 -6
  363. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +7 -7
  364. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +8 -8
  365. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +7 -7
  366. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +6 -6
  367. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +6 -6
  368. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +26 -26
  369. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +6 -6
  370. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +6 -6
  371. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +7 -7
  372. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +10 -10
  373. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +10 -10
  374. data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +150 -20
  375. data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +174 -138
  376. data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +24 -27
  377. data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +136 -136
  378. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +88 -46
  379. data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +139 -203
  380. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +76 -95
  381. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +164 -203
  382. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +303 -419
  383. data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +324 -439
  384. data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +114 -147
  385. data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +157 -236
  386. data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +159 -233
  387. data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +114 -134
  388. data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +170 -252
  389. data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +92 -133
  390. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +146 -194
  391. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +37 -55
  392. data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +183 -198
  393. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +94 -121
  394. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +100 -158
  395. data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +147 -179
  396. data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +190 -237
  397. data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +100 -137
  398. data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +26 -39
  399. data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +61 -87
  400. data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +86 -111
  401. data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +725 -801
  402. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp +51 -134
  403. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +75 -158
  404. data/vendor/local/share/gtk-doc/html/gdk/index.html +10 -13
  405. data/vendor/local/share/gtk-doc/html/gdk/index.sgml +10 -94
  406. data/vendor/local/share/gtk-doc/html/gdk/multihead.html +15 -15
  407. data/vendor/local/share/gtk-doc/html/gdk/reference.html +8 -10
  408. data/vendor/local/share/gtk-doc/html/gdk/style.css +2 -1
  409. data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +5 -5
  410. data/vendor/local/share/gtk-doc/html/gtk/Actions.html +5 -5
  411. data/vendor/local/share/gtk-doc/html/gtk/Builder.html +5 -5
  412. data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +5 -5
  413. data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +5 -5
  414. data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +5 -5
  415. data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +228 -212
  416. data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +41 -49
  417. data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +20 -20
  418. data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +181 -248
  419. data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +178 -261
  420. data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +48 -52
  421. data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +80 -116
  422. data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +58 -68
  423. data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +32 -38
  424. data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +38 -48
  425. data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +113 -134
  426. data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +16 -16
  427. data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +97 -122
  428. data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +88 -116
  429. data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +100 -139
  430. data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +156 -187
  431. data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +61 -78
  432. data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +637 -917
  433. data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +570 -1841
  434. data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +130 -165
  435. data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +38 -40
  436. data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +62 -89
  437. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +136 -160
  438. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +40 -49
  439. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +29 -34
  440. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +33 -34
  441. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +25 -27
  442. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +21 -22
  443. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +21 -22
  444. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +75 -80
  445. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +47 -56
  446. data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +65 -83
  447. data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +32 -36
  448. data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +63 -85
  449. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +128 -200
  450. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +31 -34
  451. data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +65 -83
  452. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +346 -188
  453. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +59 -48
  454. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +328 -0
  455. data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +170 -262
  456. data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +63 -81
  457. data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +102 -124
  458. data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +28 -30
  459. data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +71 -90
  460. data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +389 -491
  461. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +73 -106
  462. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +132 -187
  463. data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +37 -42
  464. data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +80 -100
  465. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +358 -414
  466. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +71 -94
  467. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +32 -37
  468. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +23 -28
  469. data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +104 -148
  470. data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +43 -54
  471. data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +64 -90
  472. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +70 -85
  473. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +54 -63
  474. data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +55 -60
  475. data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +20 -21
  476. data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +19 -22
  477. data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +31 -36
  478. data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +15 -15
  479. data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +32 -26
  480. data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +67 -92
  481. data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +27 -32
  482. data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +20 -20
  483. data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +21 -22
  484. data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +57 -68
  485. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +153 -191
  486. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +20 -24
  487. data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +20 -24
  488. data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +213 -271
  489. data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +333 -455
  490. data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +241 -262
  491. data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +60 -71
  492. data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +69 -82
  493. data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +37 -42
  494. data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +42 -50
  495. data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +38 -44
  496. data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +185 -276
  497. data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +201 -251
  498. data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +72 -78
  499. data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +55 -64
  500. data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +132 -182
  501. data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +82 -132
  502. data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +142 -172
  503. data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +185 -229
  504. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +43 -51
  505. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +114 -147
  506. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +89 -121
  507. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +75 -51
  508. data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +83 -83
  509. data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +37 -41
  510. data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +398 -454
  511. data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +150 -208
  512. data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +30 -34
  513. data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +82 -167
  514. data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +58 -68
  515. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +117 -162
  516. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +24 -27
  517. data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +99 -139
  518. data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkPaperSize.html → GtkPaperSize.html} +206 -254
  519. data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +51 -61
  520. data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +67 -83
  521. data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +122 -149
  522. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +40 -51
  523. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +57 -72
  524. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +284 -413
  525. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +76 -96
  526. data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +112 -142
  527. data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +82 -113
  528. data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +93 -110
  529. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +44 -55
  530. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +88 -81
  531. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +65 -73
  532. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +35 -44
  533. data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +224 -188
  534. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +36 -43
  535. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +137 -196
  536. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +29 -31
  537. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +27 -32
  538. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +19 -21
  539. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +67 -89
  540. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +219 -286
  541. data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +85 -60
  542. data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +63 -74
  543. data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +67 -84
  544. data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +23 -23
  545. data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +98 -146
  546. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +15 -15
  547. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +19 -20
  548. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +26 -29
  549. data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +134 -264
  550. data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +40 -47
  551. data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +52 -61
  552. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +134 -179
  553. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +26 -27
  554. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +221 -285
  555. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +62 -77
  556. data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +754 -1135
  557. data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +96 -137
  558. data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +20 -21
  559. data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +105 -148
  560. data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +527 -685
  561. data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkTextIter.html → GtkTextIter.html} +666 -807
  562. data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +43 -48
  563. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +180 -210
  564. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +86 -78
  565. data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +355 -439
  566. data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +76 -96
  567. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +45 -59
  568. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +61 -73
  569. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +34 -40
  570. data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +82 -93
  571. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +135 -168
  572. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +86 -105
  573. data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +121 -144
  574. data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +44 -61
  575. data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +251 -362
  576. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +37 -37
  577. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +62 -72
  578. data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +107 -154
  579. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +48 -136
  580. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +434 -566
  581. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +97 -127
  582. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +65 -72
  583. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +125 -173
  584. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +55 -64
  585. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +173 -202
  586. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +588 -867
  587. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +209 -288
  588. data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +127 -191
  589. data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +19 -22
  590. data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +29 -36
  591. data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +16 -16
  592. data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +33 -26
  593. data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +26 -31
  594. data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +20 -20
  595. data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +19 -20
  596. data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +60 -71
  597. data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +18 -19
  598. data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +1499 -1795
  599. data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +447 -597
  600. data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +23 -41
  601. data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +5 -5
  602. data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +8 -5
  603. data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +5 -5
  604. data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +5 -5
  605. data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +5 -5
  606. data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +5 -5
  607. data/vendor/local/share/gtk-doc/html/gtk/Printing.html +6 -6
  608. data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +5 -5
  609. data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +5 -5
  610. data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +5 -5
  611. data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +5 -5
  612. data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +18 -18
  613. data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +6 -6
  614. data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +18 -18
  615. data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +5 -5
  616. data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +5 -5
  617. data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +20 -14
  618. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +23 -23
  619. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +9 -9
  620. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +6 -6
  621. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +7 -7
  622. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +6 -6
  623. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +8 -8
  624. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +6 -6
  625. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +8 -8
  626. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +121 -0
  627. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +31 -31
  628. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +6 -6
  629. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +10 -10
  630. data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +239 -48
  631. data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +476 -388
  632. data/vendor/local/share/gtk-doc/html/gtk/ch01.html +17 -6
  633. data/vendor/local/share/gtk-doc/html/gtk/ch02.html +6 -6
  634. data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +19 -19
  635. data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +7 -7
  636. data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +6 -6
  637. data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +6 -6
  638. data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +5 -5
  639. data/vendor/local/share/gtk-doc/html/gtk/glossary.html +6 -6
  640. data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +78 -133
  641. data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +172 -234
  642. data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +235 -339
  643. data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +248 -318
  644. data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +37 -43
  645. data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +54 -60
  646. data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +295 -339
  647. data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +36 -42
  648. data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +80 -85
  649. data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +225 -293
  650. data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +180 -268
  651. data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +19 -22
  652. data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +159 -195
  653. data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +377 -450
  654. data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +192 -308
  655. data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +55 -55
  656. data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +154 -158
  657. data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +95 -143
  658. data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +212 -243
  659. data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +273 -345
  660. data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +20 -13
  661. data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +22 -22
  662. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +7 -7
  663. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +7 -7
  664. data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +9 -9
  665. data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +9 -9
  666. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +65 -77
  667. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +62 -79
  668. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +15 -15
  669. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +8 -8
  670. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +6 -6
  671. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +6 -6
  672. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +7 -12
  673. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +5 -5
  674. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +6 -6
  675. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +7 -7
  676. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +7 -7
  677. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +5 -5
  678. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +7 -7
  679. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +9 -9
  680. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +6 -6
  681. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +5 -5
  682. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +5 -5
  683. data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +8 -8
  684. data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +12 -12
  685. data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +115 -115
  686. data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +11 -11
  687. data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +60 -33
  688. data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +12 -12
  689. data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +16 -16
  690. data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +14 -14
  691. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp +440 -413
  692. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +483 -456
  693. data/vendor/local/share/gtk-doc/html/gtk/gtk.html +8 -8
  694. data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +6 -6
  695. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +5 -5
  696. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +5 -5
  697. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +5 -5
  698. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +7 -7
  699. data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +11 -8
  700. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +5 -5
  701. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +5 -5
  702. data/vendor/local/share/gtk-doc/html/gtk/index.html +16 -12
  703. data/vendor/local/share/gtk-doc/html/gtk/index.sgml +189 -142
  704. data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +5 -5
  705. data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +20 -20
  706. data/vendor/local/share/gtk-doc/html/gtk/migrating.html +7 -7
  707. data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +5 -5
  708. data/vendor/local/share/gtk-doc/html/gtk/pt05.html +7 -7
  709. data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +5 -5
  710. data/vendor/local/share/gtk-doc/html/gtk/style.css +2 -1
  711. data/vendor/local/share/gtk-doc/html/gtk/{document-x-generic.png → text-x-generic.png} +0 -0
  712. data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +5 -5
  713. data/vendor/local/share/icons/hicolor/index.theme +1662 -0
  714. data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
  715. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
  716. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
  717. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
  718. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
  719. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
  720. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
  721. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
  722. data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
  723. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
  724. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
  725. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
  726. data/vendor/local/share/locale/es/LC_MESSAGES/gtk20.mo +0 -0
  727. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
  728. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
  729. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20-properties.mo +0 -0
  730. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
  731. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
  732. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
  733. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
  734. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
  735. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
  736. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
  737. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
  738. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20-properties.mo +0 -0
  739. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
  740. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
  741. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
  742. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
  743. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
  744. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
  745. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
  746. data/vendor/local/src/dieterv/packaging/gtk+_2.24.8-1_win32.log +4937 -0
  747. data/vendor/local/src/{tml/packaging/gtk+_2.22.1-1_win32.sh → dieterv/packaging/gtk+_2.24.8-1_win32.sh} +8 -8
  748. metadata +29 -31
  749. data/ChangeLog +0 -6902
  750. data/ext/gtk2/rbgtkmain.c +0 -493
  751. data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +0 -2500
  752. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20-properties.mo +0 -0
  753. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20.mo +0 -0
  754. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20-properties.mo +0 -0
  755. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20.mo +0 -0
  756. data/vendor/local/src/tml/packaging/gtk+_2.22.1-1_win32.log +0 -5048
@@ -4,11 +4,11 @@
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
5
  <title>GtkOrientable</title>
6
6
  <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
7
- <link rel="home" href="index.html" title="GTK+ Reference Manual">
7
+ <link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
8
8
  <link rel="up" href="LayoutContainers.html" title="Layout Containers">
9
9
  <link rel="prev" href="GtkExpander.html" title="GtkExpander">
10
10
  <link rel="next" href="Ornaments.html" title="Ornaments">
11
- <meta name="generator" content="GTK-Doc V1.15 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.17 (XML mode)">
12
12
  <link rel="stylesheet" href="style.css" type="text/css">
13
13
  </head>
14
14
  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -17,7 +17,7 @@
17
17
  <td><a accesskey="p" href="GtkExpander.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
18
  <td><a accesskey="u" href="LayoutContainers.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
19
  <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
- <th width="100%" align="center">GTK+ Reference Manual</th>
20
+ <th width="100%" align="center">GTK+ 2 Reference Manual</th>
21
21
  <td><a accesskey="n" href="Ornaments.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
22
  </tr>
23
23
  <tr><td colspan="5" class="shortcuts">
@@ -34,7 +34,7 @@
34
34
  <a href="#gtk-Orientable.properties" class="shortcut">Properties</a>
35
35
  </td></tr>
36
36
  </table>
37
- <div class="refentry" title="GtkOrientable">
37
+ <div class="refentry">
38
38
  <a name="gtk-Orientable"></a><div class="titlepage"></div>
39
39
  <div class="refnamediv"><table width="100%"><tr>
40
40
  <td valign="top">
@@ -43,7 +43,7 @@
43
43
  </td>
44
44
  <td valign="top" align="right"></td>
45
45
  </tr></table></div>
46
- <div class="refsynopsisdiv" title="Synopsis">
46
+ <div class="refsynopsisdiv">
47
47
  <a name="gtk-Orientable.synopsis"></a><h2>Synopsis</h2>
48
48
  <a name="GtkOrientable"></a><pre class="synopsis">
49
49
  #include &lt;gtk/gtk.h&gt;
@@ -54,32 +54,32 @@
54
54
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);
55
55
  </pre>
56
56
  </div>
57
- <div class="refsect1" title="Object Hierarchy">
57
+ <div class="refsect1">
58
58
  <a name="gtk-Orientable.object-hierarchy"></a><h2>Object Hierarchy</h2>
59
59
  <pre class="synopsis">
60
60
  GInterface
61
61
  +----GtkOrientable
62
62
  </pre>
63
63
  </div>
64
- <div class="refsect1" title="Prerequisites">
64
+ <div class="refsect1">
65
65
  <a name="gtk-Orientable.prerequisites"></a><h2>Prerequisites</h2>
66
66
  <p>
67
67
  GtkOrientable requires
68
68
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>.</p>
69
69
  </div>
70
- <div class="refsect1" title="Known Implementations">
70
+ <div class="refsect1">
71
71
  <a name="gtk-Orientable.implementations"></a><h2>Known Implementations</h2>
72
72
  <p>
73
73
  GtkOrientable is implemented by
74
74
  <a class="link" href="GtkBox.html" title="GtkBox">GtkBox</a>, <a class="link" href="GtkButtonBox.html" title="GtkButtonBox">GtkButtonBox</a>, <a class="link" href="GtkColorSelection.html" title="GtkColorSelection">GtkColorSelection</a>, <a class="link" href="GtkCombo.html" title="GtkCombo">GtkCombo</a>, <a class="link" href="GtkFileChooserButton.html" title="GtkFileChooserButton">GtkFileChooserButton</a>, <a class="link" href="GtkFileChooserWidget.html" title="GtkFileChooserWidget">GtkFileChooserWidget</a>, <a class="link" href="GtkFontSelection.html" title="GtkFontSelection">GtkFontSelection</a>, <a class="link" href="GtkGammaCurve.html" title="GtkGammaCurve">GtkGammaCurve</a>, <a class="link" href="GtkHBox.html" title="GtkHBox">GtkHBox</a>, <a class="link" href="GtkHButtonBox.html" title="GtkHButtonBox">GtkHButtonBox</a>, <a class="link" href="GtkHPaned.html" title="GtkHPaned">GtkHPaned</a>, <a class="link" href="GtkHRuler.html" title="GtkHRuler">GtkHRuler</a>, <a class="link" href="GtkHScale.html" title="GtkHScale">GtkHScale</a>, <a class="link" href="GtkHScrollbar.html" title="GtkHScrollbar">GtkHScrollbar</a>, <a class="link" href="GtkHSeparator.html" title="GtkHSeparator">GtkHSeparator</a>, <a class="link" href="GtkInfoBar.html" title="GtkInfoBar">GtkInfoBar</a>, <a class="link" href="GtkPaned.html" title="GtkPaned">GtkPaned</a>, <a class="link" href="GtkRange.html" title="GtkRange">GtkRange</a>, <a class="link" href="GtkRecentChooserWidget.html" title="GtkRecentChooserWidget">GtkRecentChooserWidget</a>, <a class="link" href="GtkRuler.html" title="GtkRuler">GtkRuler</a>, <a class="link" href="GtkScale.html" title="GtkScale">GtkScale</a>, <a class="link" href="GtkScaleButton.html" title="GtkScaleButton">GtkScaleButton</a>, <a class="link" href="GtkScrollbar.html" title="GtkScrollbar">GtkScrollbar</a>, <a class="link" href="GtkSeparator.html" title="GtkSeparator">GtkSeparator</a>, <a class="link" href="GtkStatusbar.html" title="GtkStatusbar">GtkStatusbar</a>, <a class="link" href="GtkToolPalette.html" title="GtkToolPalette">GtkToolPalette</a>, <a class="link" href="GtkToolbar.html" title="GtkToolbar">GtkToolbar</a>, <a class="link" href="GtkVBox.html" title="GtkVBox">GtkVBox</a>, <a class="link" href="GtkVButtonBox.html" title="GtkVButtonBox">GtkVButtonBox</a>, <a class="link" href="GtkVPaned.html" title="GtkVPaned">GtkVPaned</a>, <a class="link" href="GtkVRuler.html" title="GtkVRuler">GtkVRuler</a>, <a class="link" href="GtkVScale.html" title="GtkVScale">GtkVScale</a>, <a class="link" href="GtkVScrollbar.html" title="GtkVScrollbar">GtkVScrollbar</a>, <a class="link" href="GtkVSeparator.html" title="GtkVSeparator">GtkVSeparator</a> and <a class="link" href="GtkVolumeButton.html" title="GtkVolumeButton">GtkVolumeButton</a>.</p>
75
75
  </div>
76
- <div class="refsect1" title="Properties">
76
+ <div class="refsect1">
77
77
  <a name="gtk-Orientable.properties"></a><h2>Properties</h2>
78
78
  <pre class="synopsis">
79
79
  "<a class="link" href="gtk-Orientable.html#GtkOrientable--orientation" title='The "orientation" property'>orientation</a>" <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> : Read / Write
80
80
  </pre>
81
81
  </div>
82
- <div class="refsect1" title="Description">
82
+ <div class="refsect1">
83
83
  <a name="gtk-Orientable.description"></a><h2>Description</h2>
84
84
  <p>
85
85
  The <a class="link" href="gtk-Orientable.html#GtkOrientable"><span class="type">GtkOrientable</span></a> interface is implemented by all widgets that can be
@@ -93,16 +93,16 @@ to 'flip'.
93
93
  GtkOrientable was introduced in GTK+ 2.16.
94
94
  </p>
95
95
  </div>
96
- <div class="refsect1" title="Details">
96
+ <div class="refsect1">
97
97
  <a name="gtk-Orientable.details"></a><h2>Details</h2>
98
- <div class="refsect2" title="GtkOrientable">
98
+ <div class="refsect2">
99
99
  <a name="GtkOrientable-struct"></a><h3>GtkOrientable</h3>
100
100
  <pre class="programlisting">typedef struct _GtkOrientable GtkOrientable;</pre>
101
101
  <p>
102
102
  </p>
103
103
  </div>
104
104
  <hr>
105
- <div class="refsect2" title="gtk_orientable_get_orientation ()">
105
+ <div class="refsect2">
106
106
  <a name="gtk-orientable-get-orientation"></a><h3>gtk_orientable_get_orientation ()</h3>
107
107
  <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="returnvalue">GtkOrientation</span></a> gtk_orientable_get_orientation (<em class="parameter"><code><a class="link" href="gtk-Orientable.html#GtkOrientable"><span class="type">GtkOrientable</span></a> *orientable</code></em>);</pre>
108
108
  <p>
@@ -118,16 +118,14 @@ Retrieves the orientation of the <em class="parameter"><code>orientable</code></
118
118
  </tr>
119
119
  <tr>
120
120
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
121
- <td> the orientation of the <em class="parameter"><code>orientable</code></em>.
122
-
123
- </td>
121
+ <td>the orientation of the <em class="parameter"><code>orientable</code></em>.</td>
124
122
  </tr>
125
123
  </tbody>
126
124
  </table></div>
127
125
  <p class="since">Since 2.16</p>
128
126
  </div>
129
127
  <hr>
130
- <div class="refsect2" title="gtk_orientable_set_orientation ()">
128
+ <div class="refsect2">
131
129
  <a name="gtk-orientable-set-orientation"></a><h3>gtk_orientable_set_orientation ()</h3>
132
130
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_orientable_set_orientation (<em class="parameter"><code><a class="link" href="gtk-Orientable.html#GtkOrientable"><span class="type">GtkOrientable</span></a> *orientable</code></em>,
133
131
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);</pre>
@@ -144,17 +142,16 @@ Sets the orientation of the <em class="parameter"><code>orientable</code></em>.
144
142
  </tr>
145
143
  <tr>
146
144
  <td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></td>
147
- <td>the orientable's new orientation.
148
- </td>
145
+ <td>the orientable's new orientation.</td>
149
146
  </tr>
150
147
  </tbody>
151
148
  </table></div>
152
149
  <p class="since">Since 2.16</p>
153
150
  </div>
154
151
  </div>
155
- <div class="refsect1" title="Property Details">
152
+ <div class="refsect1">
156
153
  <a name="gtk-Orientable.property-details"></a><h2>Property Details</h2>
157
- <div class="refsect2" title='The "orientation" property'>
154
+ <div class="refsect2">
158
155
  <a name="GtkOrientable--orientation"></a><h3>The <code class="literal">"orientation"</code> property</h3>
159
156
  <pre class="programlisting"> "orientation" <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> : Read / Write</pre>
160
157
  <p>
@@ -167,6 +164,6 @@ The orientation of the orientable.
167
164
  </div>
168
165
  <div class="footer">
169
166
  <hr>
170
- Generated by GTK-Doc V1.15</div>
167
+ Generated by GTK-Doc V1.17</div>
171
168
  </body>
172
169
  </html>
@@ -4,11 +4,11 @@
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
5
  <title>Resource Files</title>
6
6
  <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
7
- <link rel="home" href="index.html" title="GTK+ Reference Manual">
7
+ <link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
8
8
  <link rel="up" href="gtkbase.html" title="Part II. GTK+ Core Reference">
9
9
  <link rel="prev" href="gtk-Themeable-Stock-Images.html" title="Themeable Stock Images">
10
10
  <link rel="next" href="GtkSettings.html" title="Settings">
11
- <meta name="generator" content="GTK-Doc V1.15 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.17 (XML mode)">
12
12
  <link rel="stylesheet" href="style.css" type="text/css">
13
13
  </head>
14
14
  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -17,7 +17,7 @@
17
17
  <td><a accesskey="p" href="gtk-Themeable-Stock-Images.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
18
  <td><a accesskey="u" href="gtkbase.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
19
  <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
- <th width="100%" align="center">GTK+ Reference Manual</th>
20
+ <th width="100%" align="center">GTK+ 2 Reference Manual</th>
21
21
  <td><a accesskey="n" href="GtkSettings.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
22
  </tr>
23
23
  <tr><td colspan="5" class="shortcuts">
@@ -28,7 +28,7 @@
28
28
  <a href="#gtk-Resource-Files.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
29
  </td></tr>
30
30
  </table>
31
- <div class="refentry" title="Resource Files">
31
+ <div class="refentry">
32
32
  <a name="gtk-Resource-Files"></a><div class="titlepage"></div>
33
33
  <div class="refnamediv"><table width="100%"><tr>
34
34
  <td valign="top">
@@ -37,7 +37,7 @@
37
37
  </td>
38
38
  <td valign="top" align="right"></td>
39
39
  </tr></table></div>
40
- <div class="refsynopsisdiv" title="Synopsis">
40
+ <div class="refsynopsisdiv">
41
41
  <a name="gtk-Resource-Files.synopsis"></a><h2>Synopsis</h2>
42
42
  <a name="GtkRcStyle"></a><pre class="synopsis">
43
43
  #include &lt;gtk/gtk.h&gt;
@@ -45,9 +45,9 @@
45
45
  <a class="link" href="gtk-Resource-Files.html#GtkRcStyle-struct" title="GtkRcStyle">GtkRcStyle</a>;
46
46
  enum <a class="link" href="gtk-Resource-Files.html#GtkRcFlags" title="enum GtkRcFlags">GtkRcFlags</a>;
47
47
  enum <a class="link" href="gtk-Resource-Files.html#GtkRcTokenType" title="enum GtkRcTokenType">GtkRcTokenType</a>;
48
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Lexical-Scanner.html#GScanner"><span class="returnvalue">GScanner</span></a>* <a class="link" href="gtk-Resource-Files.html#gtk-rc-scanner-new" title="gtk_rc_scanner_new ()">gtk_rc_scanner_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
49
- <a class="link" href="GtkStyle.html" title="Styles"><span class="returnvalue">GtkStyle</span></a>* <a class="link" href="gtk-Resource-Files.html#gtk-rc-get-style" title="gtk_rc_get_style ()">gtk_rc_get_style</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
50
- <a class="link" href="GtkStyle.html" title="Styles"><span class="returnvalue">GtkStyle</span></a>* <a class="link" href="gtk-Resource-Files.html#gtk-rc-get-style-by-paths" title="gtk_rc_get_style_by_paths ()">gtk_rc_get_style_by_paths</a> (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>,
48
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Lexical-Scanner.html#GScanner"><span class="returnvalue">GScanner</span></a> * <a class="link" href="gtk-Resource-Files.html#gtk-rc-scanner-new" title="gtk_rc_scanner_new ()">gtk_rc_scanner_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
49
+ <a class="link" href="GtkStyle.html" title="Styles"><span class="returnvalue">GtkStyle</span></a> * <a class="link" href="gtk-Resource-Files.html#gtk-rc-get-style" title="gtk_rc_get_style ()">gtk_rc_get_style</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
50
+ <a class="link" href="GtkStyle.html" title="Styles"><span class="returnvalue">GtkStyle</span></a> * <a class="link" href="gtk-Resource-Files.html#gtk-rc-get-style-by-paths" title="gtk_rc_get_style_by_paths ()">gtk_rc_get_style_by_paths</a> (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>,
51
51
  <em class="parameter"><code>const <span class="type">char</span> *widget_path</code></em>,
52
52
  <em class="parameter"><code>const <span class="type">char</span> *class_path</code></em>,
53
53
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> type</code></em>);
@@ -57,57 +57,57 @@ enum <a class="link" href="gtk-Resource-Files.html#GtkRcTokenType
57
57
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *pattern</code></em>);
58
58
  <span class="returnvalue">void</span> <a class="link" href="gtk-Resource-Files.html#gtk-rc-add-class-style" title="gtk_rc_add_class_style ()">gtk_rc_add_class_style</a> (<em class="parameter"><code><a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a> *rc_style</code></em>,
59
59
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *pattern</code></em>);
60
- <span class="returnvalue">void</span> <a class="link" href="gtk-Resource-Files.html#gtk-rc-parse" title="gtk_rc_parse ()">gtk_rc_parse</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *filename</code></em>);
60
+ #define <a class="link" href="gtk-Resource-Files.html#gtk-rc-parse" title="gtk_rc_parse">gtk_rc_parse</a>
61
61
  <span class="returnvalue">void</span> <a class="link" href="gtk-Resource-Files.html#gtk-rc-parse-string" title="gtk_rc_parse_string ()">gtk_rc_parse_string</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *rc_string</code></em>);
62
62
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="gtk-Resource-Files.html#gtk-rc-reparse-all" title="gtk_rc_reparse_all ()">gtk_rc_reparse_all</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
63
63
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="gtk-Resource-Files.html#gtk-rc-reparse-all-for-settings" title="gtk_rc_reparse_all_for_settings ()">gtk_rc_reparse_all_for_settings</a> (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>,
64
64
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> force_load</code></em>);
65
65
  <span class="returnvalue">void</span> <a class="link" href="gtk-Resource-Files.html#gtk-rc-reset-styles" title="gtk_rc_reset_styles ()">gtk_rc_reset_styles</a> (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>);
66
- <span class="returnvalue">void</span> <a class="link" href="gtk-Resource-Files.html#gtk-rc-add-default-file" title="gtk_rc_add_default_file ()">gtk_rc_add_default_file</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *filename</code></em>);
67
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>** <a class="link" href="gtk-Resource-Files.html#gtk-rc-get-default-files" title="gtk_rc_get_default_files ()">gtk_rc_get_default_files</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
68
- <span class="returnvalue">void</span> <a class="link" href="gtk-Resource-Files.html#gtk-rc-set-default-files" title="gtk_rc_set_default_files ()">gtk_rc_set_default_files</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **filenames</code></em>);
66
+ #define <a class="link" href="gtk-Resource-Files.html#gtk-rc-add-default-file" title="gtk_rc_add_default_file">gtk_rc_add_default_file</a>
67
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> ** <a class="link" href="gtk-Resource-Files.html#gtk-rc-get-default-files" title="gtk_rc_get_default_files ()">gtk_rc_get_default_files</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
68
+ #define <a class="link" href="gtk-Resource-Files.html#gtk-rc-set-default-files" title="gtk_rc_set_default_files">gtk_rc_set_default_files</a>
69
69
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> <a class="link" href="gtk-Resource-Files.html#gtk-rc-parse-color" title="gtk_rc_parse_color ()">gtk_rc_parse_color</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Lexical-Scanner.html#GScanner"><span class="type">GScanner</span></a> *scanner</code></em>,
70
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);
70
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);
71
71
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> <a class="link" href="gtk-Resource-Files.html#gtk-rc-parse-color-full" title="gtk_rc_parse_color_full ()">gtk_rc_parse_color_full</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Lexical-Scanner.html#GScanner"><span class="type">GScanner</span></a> *scanner</code></em>,
72
72
  <em class="parameter"><code><a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a> *style</code></em>,
73
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);
73
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);
74
74
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> <a class="link" href="gtk-Resource-Files.html#gtk-rc-parse-state" title="gtk_rc_parse_state ()">gtk_rc_parse_state</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Lexical-Scanner.html#GScanner"><span class="type">GScanner</span></a> *scanner</code></em>,
75
75
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> *state</code></em>);
76
76
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> <a class="link" href="gtk-Resource-Files.html#gtk-rc-parse-priority" title="gtk_rc_parse_priority ()">gtk_rc_parse_priority</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Lexical-Scanner.html#GScanner"><span class="type">GScanner</span></a> *scanner</code></em>,
77
77
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkPathPriorityType" title="enum GtkPathPriorityType"><span class="type">GtkPathPriorityType</span></a> *priority</code></em>);
78
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>* <a class="link" href="gtk-Resource-Files.html#gtk-rc-find-module-in-path" title="gtk_rc_find_module_in_path ()">gtk_rc_find_module_in_path</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *module_file</code></em>);
79
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>* <a class="link" href="gtk-Resource-Files.html#gtk-rc-find-pixmap-in-path" title="gtk_rc_find_pixmap_in_path ()">gtk_rc_find_pixmap_in_path</a> (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>,
78
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="gtk-Resource-Files.html#gtk-rc-find-module-in-path" title="gtk_rc_find_module_in_path ()">gtk_rc_find_module_in_path</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *module_file</code></em>);
79
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="gtk-Resource-Files.html#gtk-rc-find-pixmap-in-path" title="gtk_rc_find_pixmap_in_path ()">gtk_rc_find_pixmap_in_path</a> (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>,
80
80
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Lexical-Scanner.html#GScanner"><span class="type">GScanner</span></a> *scanner</code></em>,
81
81
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *pixmap_file</code></em>);
82
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>* <a class="link" href="gtk-Resource-Files.html#gtk-rc-get-module-dir" title="gtk_rc_get_module_dir ()">gtk_rc_get_module_dir</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
83
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>* <a class="link" href="gtk-Resource-Files.html#gtk-rc-get-im-module-path" title="gtk_rc_get_im_module_path ()">gtk_rc_get_im_module_path</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
84
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>* <a class="link" href="gtk-Resource-Files.html#gtk-rc-get-im-module-file" title="gtk_rc_get_im_module_file ()">gtk_rc_get_im_module_file</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
85
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>* <a class="link" href="gtk-Resource-Files.html#gtk-rc-get-theme-dir" title="gtk_rc_get_theme_dir ()">gtk_rc_get_theme_dir</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
86
- <a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="returnvalue">GtkRcStyle</span></a>* <a class="link" href="gtk-Resource-Files.html#gtk-rc-style-new" title="gtk_rc_style_new ()">gtk_rc_style_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
87
- <a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="returnvalue">GtkRcStyle</span></a>* <a class="link" href="gtk-Resource-Files.html#gtk-rc-style-copy" title="gtk_rc_style_copy ()">gtk_rc_style_copy</a> (<em class="parameter"><code><a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a> *orig</code></em>);
82
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="gtk-Resource-Files.html#gtk-rc-get-module-dir" title="gtk_rc_get_module_dir ()">gtk_rc_get_module_dir</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
83
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="gtk-Resource-Files.html#gtk-rc-get-im-module-path" title="gtk_rc_get_im_module_path ()">gtk_rc_get_im_module_path</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
84
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="gtk-Resource-Files.html#gtk-rc-get-im-module-file" title="gtk_rc_get_im_module_file ()">gtk_rc_get_im_module_file</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
85
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="gtk-Resource-Files.html#gtk-rc-get-theme-dir" title="gtk_rc_get_theme_dir ()">gtk_rc_get_theme_dir</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
86
+ <a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="returnvalue">GtkRcStyle</span></a> * <a class="link" href="gtk-Resource-Files.html#gtk-rc-style-new" title="gtk_rc_style_new ()">gtk_rc_style_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
87
+ <a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="returnvalue">GtkRcStyle</span></a> * <a class="link" href="gtk-Resource-Files.html#gtk-rc-style-copy" title="gtk_rc_style_copy ()">gtk_rc_style_copy</a> (<em class="parameter"><code><a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a> *orig</code></em>);
88
88
  <span class="returnvalue">void</span> <a class="link" href="gtk-Resource-Files.html#gtk-rc-style-ref" title="gtk_rc_style_ref ()">gtk_rc_style_ref</a> (<em class="parameter"><code><a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a> *rc_style</code></em>);
89
89
  <span class="returnvalue">void</span> <a class="link" href="gtk-Resource-Files.html#gtk-rc-style-unref" title="gtk_rc_style_unref ()">gtk_rc_style_unref</a> (<em class="parameter"><code><a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a> *rc_style</code></em>);
90
90
  </pre>
91
91
  </div>
92
- <div class="refsect1" title="Object Hierarchy">
92
+ <div class="refsect1">
93
93
  <a name="gtk-Resource-Files.object-hierarchy"></a><h2>Object Hierarchy</h2>
94
94
  <pre class="synopsis">
95
95
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
96
96
  +----GtkRcStyle
97
97
  </pre>
98
98
  </div>
99
- <div class="refsect1" title="Description">
99
+ <div class="refsect1">
100
100
  <a name="gtk-Resource-Files.description"></a><h2>Description</h2>
101
101
  <p>
102
102
  GTK+ provides resource file mechanism for configuring
103
103
  various aspects of the operation of a GTK+ program
104
104
  at runtime.
105
105
  </p>
106
- <div class="refsect2" title="Default files">
107
- <a name="id482190"></a><h3>Default files</h3>
106
+ <div class="refsect2">
107
+ <a name="id669252"></a><h3>Default files</h3>
108
108
  <p>
109
109
  An application can cause GTK+ to parse a specific RC
110
- file by calling <a class="link" href="gtk-Resource-Files.html#gtk-rc-parse" title="gtk_rc_parse ()"><code class="function">gtk_rc_parse()</code></a>. In addition to this,
110
+ file by calling <a class="link" href="gtk-Resource-Files.html#gtk-rc-parse" title="gtk_rc_parse"><code class="function">gtk_rc_parse()</code></a>. In addition to this,
111
111
  certain files will be read at the end of <a class="link" href="gtk-General.html#gtk-init" title="gtk_init ()"><code class="function">gtk_init()</code></a>.
112
112
  Unless modified, the files looked for will be
113
113
  <code class="filename">&lt;SYSCONFDIR&gt;/gtk-2.0/gtkrc</code>
@@ -121,8 +121,8 @@ number 2.0, all 2.x versions of GTK+ look for these files.
121
121
  <p>
122
122
  The set of these <em class="firstterm">default</em> files
123
123
  can be retrieved with <a class="link" href="gtk-Resource-Files.html#gtk-rc-get-default-files" title="gtk_rc_get_default_files ()"><code class="function">gtk_rc_get_default_files()</code></a>
124
- and modified with <a class="link" href="gtk-Resource-Files.html#gtk-rc-add-default-file" title="gtk_rc_add_default_file ()"><code class="function">gtk_rc_add_default_file()</code></a> and
125
- <a class="link" href="gtk-Resource-Files.html#gtk-rc-set-default-files" title="gtk_rc_set_default_files ()"><code class="function">gtk_rc_set_default_files()</code></a>.
124
+ and modified with <a class="link" href="gtk-Resource-Files.html#gtk-rc-add-default-file" title="gtk_rc_add_default_file"><code class="function">gtk_rc_add_default_file()</code></a> and
125
+ <a class="link" href="gtk-Resource-Files.html#gtk-rc-set-default-files" title="gtk_rc_set_default_files"><code class="function">gtk_rc_set_default_files()</code></a>.
126
126
  Additionally, the <code class="envar">GTK2_RC_FILES</code> environment variable
127
127
  can be set to a <span class="type">G_SEARCHPATH_SEPARATOR_S-separated</span> list of files
128
128
  in order to overwrite the set of default files at runtime.
@@ -137,8 +137,8 @@ and parses the first of those that exists.
137
137
  </p>
138
138
  </div>
139
139
  <hr>
140
- <div class="refsect2" title="Pathnames and patterns">
141
- <a name="id480661"></a><h3>Pathnames and patterns</h3>
140
+ <div class="refsect2">
141
+ <a name="id623146"></a><h3>Pathnames and patterns</h3>
142
142
  <a name="gtkrc-pathnames-and-patterns"></a><p>
143
143
  A resource file defines a number of styles and key bindings and
144
144
  attaches them to particular widgets. The attachment is done
@@ -247,8 +247,8 @@ that GTK+ creates internally.
247
247
  </p>
248
248
  </div>
249
249
  <hr>
250
- <div class="refsect2" title="Optimizing RC Style Matches">
251
- <a name="id531925"></a><h3>Optimizing RC Style Matches</h3>
250
+ <div class="refsect2">
251
+ <a name="id676132"></a><h3>Optimizing RC Style Matches</h3>
252
252
  <a name="optimizing-rc-style-matches"></a><p>
253
253
  Everytime a widget is created and added to the layout hierarchy of a <a class="link" href="GtkWindow.html" title="GtkWindow"><span class="type">GtkWindow</span></a>
254
254
  ("anchored" to be exact), a list of matching RC styles out of all RC styles read
@@ -342,8 +342,8 @@ matches:
342
342
  </p>
343
343
  </div>
344
344
  <hr>
345
- <div class="refsect2" title="Toplevel declarations">
346
- <a name="id532105"></a><h3>Toplevel declarations</h3>
345
+ <div class="refsect2">
346
+ <a name="id676310"></a><h3>Toplevel declarations</h3>
347
347
  <p>
348
348
  An RC file is a text file which is composed of a sequence
349
349
  of declarations. <code class="literal">'#'</code> characters delimit comments and
@@ -430,8 +430,8 @@ The possible toplevel declarations are:
430
430
  </p>
431
431
  </div>
432
432
  <hr>
433
- <div class="refsect2" title="Styles">
434
- <a name="id532406"></a><h3>Styles</h3>
433
+ <div class="refsect2">
434
+ <a name="id676611"></a><h3>Styles</h3>
435
435
  <p>
436
436
  A RC style is specified by a <code class="literal">style</code>
437
437
  declaration in a RC file, and then bound to widgets
@@ -814,8 +814,8 @@ match the state and size the user requested.
814
814
  </p>
815
815
  </div>
816
816
  <hr>
817
- <div class="refsect2" title="Key bindings">
818
- <a name="id533461"></a><h3>Key bindings</h3>
817
+ <div class="refsect2">
818
+ <a name="id677662"></a><h3>Key bindings</h3>
819
819
  <p>
820
820
  Key bindings allow the user to specify actions to be
821
821
  taken on particular key presses. The form of a binding
@@ -893,9 +893,9 @@ same as for styles.
893
893
  </p>
894
894
  </div>
895
895
  </div>
896
- <div class="refsect1" title="Details">
896
+ <div class="refsect1">
897
897
  <a name="gtk-Resource-Files.details"></a><h2>Details</h2>
898
- <div class="refsect2" title="GtkRcStyle">
898
+ <div class="refsect2">
899
899
  <a name="GtkRcStyle-struct"></a><h3>GtkRcStyle</h3>
900
900
  <pre class="programlisting">typedef struct {
901
901
  gchar *name;
@@ -920,7 +920,7 @@ This can later be composited together with other
920
920
  </p>
921
921
  </div>
922
922
  <hr>
923
- <div class="refsect2" title="enum GtkRcFlags">
923
+ <div class="refsect2">
924
924
  <a name="GtkRcFlags"></a><h3>enum GtkRcFlags</h3>
925
925
  <pre class="programlisting">typedef enum
926
926
  {
@@ -962,7 +962,7 @@ set for each state.
962
962
  </table></div>
963
963
  </div>
964
964
  <hr>
965
- <div class="refsect2" title="enum GtkRcTokenType">
965
+ <div class="refsect2">
966
966
  <a name="GtkRcTokenType"></a><h3>enum GtkRcTokenType</h3>
967
967
  <pre class="programlisting">typedef enum {
968
968
  GTK_RC_TOKEN_INVALID = G_TOKEN_LAST,
@@ -1015,24 +1015,16 @@ specific portions of a RC file.
1015
1015
  </p>
1016
1016
  </div>
1017
1017
  <hr>
1018
- <div class="refsect2" title="gtk_rc_scanner_new ()">
1018
+ <div class="refsect2">
1019
1019
  <a name="gtk-rc-scanner-new"></a><h3>gtk_rc_scanner_new ()</h3>
1020
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Lexical-Scanner.html#GScanner"><span class="returnvalue">GScanner</span></a>* gtk_rc_scanner_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1020
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Lexical-Scanner.html#GScanner"><span class="returnvalue">GScanner</span></a> * gtk_rc_scanner_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1021
1021
  <p>
1022
1022
  </p>
1023
- <div class="variablelist"><table border="0">
1024
- <col align="left" valign="top">
1025
- <tbody><tr>
1026
- <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1027
- <td>
1028
- </td>
1029
- </tr></tbody>
1030
- </table></div>
1031
1023
  </div>
1032
1024
  <hr>
1033
- <div class="refsect2" title="gtk_rc_get_style ()">
1025
+ <div class="refsect2">
1034
1026
  <a name="gtk-rc-get-style"></a><h3>gtk_rc_get_style ()</h3>
1035
- <pre class="programlisting"><a class="link" href="GtkStyle.html" title="Styles"><span class="returnvalue">GtkStyle</span></a>* gtk_rc_get_style (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
1027
+ <pre class="programlisting"><a class="link" href="GtkStyle.html" title="Styles"><span class="returnvalue">GtkStyle</span></a> * gtk_rc_get_style (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
1036
1028
  <p>
1037
1029
  Finds all matching RC styles for a given widget,
1038
1030
  composites them together, and then creates a
@@ -1051,18 +1043,18 @@ created.)
1051
1043
  </tr>
1052
1044
  <tr>
1053
1045
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1054
- <td> the resulting style. No refcount is added
1055
- to the returned style, so if you want to save this
1056
- style around, you should add a reference yourself.
1046
+ <td>the resulting style. No refcount is added
1047
+ to the returned style, so if you want to save this
1048
+ style around, you should add a reference yourself. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1057
1049
  </td>
1058
1050
  </tr>
1059
1051
  </tbody>
1060
1052
  </table></div>
1061
1053
  </div>
1062
1054
  <hr>
1063
- <div class="refsect2" title="gtk_rc_get_style_by_paths ()">
1055
+ <div class="refsect2">
1064
1056
  <a name="gtk-rc-get-style-by-paths"></a><h3>gtk_rc_get_style_by_paths ()</h3>
1065
- <pre class="programlisting"><a class="link" href="GtkStyle.html" title="Styles"><span class="returnvalue">GtkStyle</span></a>* gtk_rc_get_style_by_paths (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>,
1057
+ <pre class="programlisting"><a class="link" href="GtkStyle.html" title="Styles"><span class="returnvalue">GtkStyle</span></a> * gtk_rc_get_style_by_paths (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>,
1066
1058
  <em class="parameter"><code>const <span class="type">char</span> *widget_path</code></em>,
1067
1059
  <em class="parameter"><code>const <span class="type">char</span> *class_path</code></em>,
1068
1060
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#GType"><span class="type">GType</span></a> type</code></em>);</pre>
@@ -1102,45 +1094,44 @@ The action of <a class="link" href="gtk-Resource-Files.html#gtk-rc-get-style" ti
1102
1094
  <tbody>
1103
1095
  <tr>
1104
1096
  <td><p><span class="term"><em class="parameter"><code>settings</code></em> :</span></p></td>
1105
- <td>a <a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> object
1106
- </td>
1097
+ <td>a <a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> object</td>
1107
1098
  </tr>
1108
1099
  <tr>
1109
1100
  <td><p><span class="term"><em class="parameter"><code>widget_path</code></em> :</span></p></td>
1110
- <td> the widget path to use when looking up the style, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1111
- if no matching against the widget path should be done. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1101
+ <td>the widget path to use when looking up the
1102
+ style, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no matching against the widget path should be done. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1112
1103
  </td>
1113
1104
  </tr>
1114
1105
  <tr>
1115
1106
  <td><p><span class="term"><em class="parameter"><code>class_path</code></em> :</span></p></td>
1116
- <td> the class path to use when looking up the style, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1117
- if no matching against the class path should be done. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1107
+ <td>the class path to use when looking up the style,
1108
+ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no matching against the class path should be done. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1118
1109
  </td>
1119
1110
  </tr>
1120
1111
  <tr>
1121
1112
  <td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
1122
1113
  <td>a type that will be used along with parent types of this type
1123
- when matching against class styles, or <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#G-TYPE-NONE:CAPS"><span class="type">G_TYPE_NONE</span></a>
1114
+ when matching against class styles, or <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#G-TYPE-NONE:CAPS"><span class="type">G_TYPE_NONE</span></a>
1124
1115
  </td>
1125
1116
  </tr>
1126
1117
  <tr>
1127
1118
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1128
- <td> A style created by matching with the supplied paths,
1129
- or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if nothing matching was specified and the default style should
1130
- be used. The returned value is owned by GTK+ as part of an internal cache,
1131
- so you must call <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-ref"><code class="function">g_object_ref()</code></a> on the returned value if you want to
1132
- keep a reference to it.
1119
+ <td>A style created by matching with the
1120
+ supplied paths, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if nothing matching was specified and the
1121
+ default style should be used. The returned value is owned by GTK+
1122
+ as part of an internal cache, so you must call <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-ref"><code class="function">g_object_ref()</code></a> on
1123
+ the returned value if you want to keep a reference to it. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1133
1124
  </td>
1134
1125
  </tr>
1135
1126
  </tbody>
1136
1127
  </table></div>
1137
1128
  </div>
1138
1129
  <hr>
1139
- <div class="refsect2" title="gtk_rc_add_widget_name_style ()">
1130
+ <div class="refsect2">
1140
1131
  <a name="gtk-rc-add-widget-name-style"></a><h3>gtk_rc_add_widget_name_style ()</h3>
1141
1132
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_rc_add_widget_name_style (<em class="parameter"><code><a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a> *rc_style</code></em>,
1142
1133
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *pattern</code></em>);</pre>
1143
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1134
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1144
1135
  <h3 class="title">Warning</h3>
1145
1136
  <p><code class="literal">gtk_rc_add_widget_name_style</code> is deprecated and should not be used in newly-written code. Use <a class="link" href="gtk-Resource-Files.html#gtk-rc-parse-string" title="gtk_rc_parse_string ()"><code class="function">gtk_rc_parse_string()</code></a> with a suitable string instead.</p>
1146
1137
  </div>
@@ -1160,18 +1151,17 @@ statement in a RC file.
1160
1151
  </tr>
1161
1152
  <tr>
1162
1153
  <td><p><span class="term"><em class="parameter"><code>pattern</code></em> :</span></p></td>
1163
- <td>the pattern
1164
- </td>
1154
+ <td>the pattern</td>
1165
1155
  </tr>
1166
1156
  </tbody>
1167
1157
  </table></div>
1168
1158
  </div>
1169
1159
  <hr>
1170
- <div class="refsect2" title="gtk_rc_add_widget_class_style ()">
1160
+ <div class="refsect2">
1171
1161
  <a name="gtk-rc-add-widget-class-style"></a><h3>gtk_rc_add_widget_class_style ()</h3>
1172
1162
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_rc_add_widget_class_style (<em class="parameter"><code><a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a> *rc_style</code></em>,
1173
1163
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *pattern</code></em>);</pre>
1174
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1164
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1175
1165
  <h3 class="title">Warning</h3>
1176
1166
  <p><code class="literal">gtk_rc_add_widget_class_style</code> is deprecated and should not be used in newly-written code. Use <a class="link" href="gtk-Resource-Files.html#gtk-rc-parse-string" title="gtk_rc_parse_string ()"><code class="function">gtk_rc_parse_string()</code></a> with a suitable string instead.</p>
1177
1167
  </div>
@@ -1191,18 +1181,17 @@ statement in a RC file.
1191
1181
  </tr>
1192
1182
  <tr>
1193
1183
  <td><p><span class="term"><em class="parameter"><code>pattern</code></em> :</span></p></td>
1194
- <td>the pattern
1195
- </td>
1184
+ <td>the pattern</td>
1196
1185
  </tr>
1197
1186
  </tbody>
1198
1187
  </table></div>
1199
1188
  </div>
1200
1189
  <hr>
1201
- <div class="refsect2" title="gtk_rc_add_class_style ()">
1190
+ <div class="refsect2">
1202
1191
  <a name="gtk-rc-add-class-style"></a><h3>gtk_rc_add_class_style ()</h3>
1203
1192
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_rc_add_class_style (<em class="parameter"><code><a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a> *rc_style</code></em>,
1204
1193
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *pattern</code></em>);</pre>
1205
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1194
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1206
1195
  <h3 class="title">Warning</h3>
1207
1196
  <p><code class="literal">gtk_rc_add_class_style</code> is deprecated and should not be used in newly-written code. Use <a class="link" href="gtk-Resource-Files.html#gtk-rc-parse-string" title="gtk_rc_parse_string ()"><code class="function">gtk_rc_parse_string()</code></a> with a suitable string instead.</p>
1208
1197
  </div>
@@ -1222,31 +1211,22 @@ statement in a RC file.
1222
1211
  </tr>
1223
1212
  <tr>
1224
1213
  <td><p><span class="term"><em class="parameter"><code>pattern</code></em> :</span></p></td>
1225
- <td>the pattern
1226
- </td>
1214
+ <td>the pattern</td>
1227
1215
  </tr>
1228
1216
  </tbody>
1229
1217
  </table></div>
1230
1218
  </div>
1231
1219
  <hr>
1232
- <div class="refsect2" title="gtk_rc_parse ()">
1233
- <a name="gtk-rc-parse"></a><h3>gtk_rc_parse ()</h3>
1234
- <pre class="programlisting"><span class="returnvalue">void</span> gtk_rc_parse (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *filename</code></em>);</pre>
1220
+ <div class="refsect2">
1221
+ <a name="gtk-rc-parse"></a><h3>gtk_rc_parse</h3>
1222
+ <pre class="programlisting">#define gtk_rc_parse gtk_rc_parse_utf8
1223
+ </pre>
1235
1224
  <p>
1236
1225
  Parses a given resource file.
1237
1226
  </p>
1238
- <div class="variablelist"><table border="0">
1239
- <col align="left" valign="top">
1240
- <tbody><tr>
1241
- <td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
1242
- <td>the filename of a file to parse. If <em class="parameter"><code>filename</code></em> is not absolute, it
1243
- is searched in the current directory.
1244
- </td>
1245
- </tr></tbody>
1246
- </table></div>
1247
1227
  </div>
1248
1228
  <hr>
1249
- <div class="refsect2" title="gtk_rc_parse_string ()">
1229
+ <div class="refsect2">
1250
1230
  <a name="gtk-rc-parse-string"></a><h3>gtk_rc_parse_string ()</h3>
1251
1231
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_rc_parse_string (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *rc_string</code></em>);</pre>
1252
1232
  <p>
@@ -1256,13 +1236,12 @@ Parses resource information directly from a string.
1256
1236
  <col align="left" valign="top">
1257
1237
  <tbody><tr>
1258
1238
  <td><p><span class="term"><em class="parameter"><code>rc_string</code></em> :</span></p></td>
1259
- <td>a string to parse.
1260
- </td>
1239
+ <td>a string to parse.</td>
1261
1240
  </tr></tbody>
1262
1241
  </table></div>
1263
1242
  </div>
1264
1243
  <hr>
1265
- <div class="refsect2" title="gtk_rc_reparse_all ()">
1244
+ <div class="refsect2">
1266
1245
  <a name="gtk-rc-reparse-all"></a><h3>gtk_rc_reparse_all ()</h3>
1267
1246
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_rc_reparse_all (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1268
1247
  <p>
@@ -1274,13 +1253,13 @@ and then reread all previously read RC files.
1274
1253
  <col align="left" valign="top">
1275
1254
  <tbody><tr>
1276
1255
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1277
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the files were reread.
1278
- </td>
1256
+ <td>
1257
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the files were reread.</td>
1279
1258
  </tr></tbody>
1280
1259
  </table></div>
1281
1260
  </div>
1282
1261
  <hr>
1283
- <div class="refsect2" title="gtk_rc_reparse_all_for_settings ()">
1262
+ <div class="refsect2">
1284
1263
  <a name="gtk-rc-reparse-all-for-settings"></a><h3>gtk_rc_reparse_all_for_settings ()</h3>
1285
1264
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_rc_reparse_all_for_settings (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>,
1286
1265
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> force_load</code></em>);</pre>
@@ -1299,25 +1278,24 @@ and then reread all previously read RC files.
1299
1278
  </tr>
1300
1279
  <tr>
1301
1280
  <td><p><span class="term"><em class="parameter"><code>force_load</code></em> :</span></p></td>
1302
- <td>load whether or not anything changed
1303
- </td>
1281
+ <td>load whether or not anything changed</td>
1304
1282
  </tr>
1305
1283
  <tr>
1306
1284
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1307
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the files were reread.
1308
- </td>
1285
+ <td>
1286
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the files were reread.</td>
1309
1287
  </tr>
1310
1288
  </tbody>
1311
1289
  </table></div>
1312
1290
  </div>
1313
1291
  <hr>
1314
- <div class="refsect2" title="gtk_rc_reset_styles ()">
1292
+ <div class="refsect2">
1315
1293
  <a name="gtk-rc-reset-styles"></a><h3>gtk_rc_reset_styles ()</h3>
1316
1294
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_rc_reset_styles (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>);</pre>
1317
1295
  <p>
1318
1296
  This function recomputes the styles for all widgets that use a
1319
1297
  particular <a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> object. (There is one <a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> object
1320
- per <a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html"><span class="type">GdkScreen</span></a>, see <a class="link" href="GtkSettings.html#gtk-settings-get-for-screen" title="gtk_settings_get_for_screen ()"><code class="function">gtk_settings_get_for_screen()</code></a>); It is useful
1298
+ per <a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a>, see <a class="link" href="GtkSettings.html#gtk-settings-get-for-screen" title="gtk_settings_get_for_screen ()"><code class="function">gtk_settings_get_for_screen()</code></a>); It is useful
1321
1299
  when some global parameter has changed that affects the appearance
1322
1300
  of all widgets, because when a widget gets a new style, it will
1323
1301
  both redraw and recompute any cached information about its
@@ -1337,9 +1315,10 @@ with <a class="link" href="GtkWidget.html#gtk-widget-set-style" title="gtk_widge
1337
1315
  <p class="since">Since 2.4</p>
1338
1316
  </div>
1339
1317
  <hr>
1340
- <div class="refsect2" title="gtk_rc_add_default_file ()">
1341
- <a name="gtk-rc-add-default-file"></a><h3>gtk_rc_add_default_file ()</h3>
1342
- <pre class="programlisting"><span class="returnvalue">void</span> gtk_rc_add_default_file (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *filename</code></em>);</pre>
1318
+ <div class="refsect2">
1319
+ <a name="gtk-rc-add-default-file"></a><h3>gtk_rc_add_default_file</h3>
1320
+ <pre class="programlisting">#define gtk_rc_add_default_file gtk_rc_add_default_file_utf8
1321
+ </pre>
1343
1322
  <p>
1344
1323
  Adds a file to the list of files to be parsed at the
1345
1324
  end of <a class="link" href="gtk-General.html#gtk-init" title="gtk_init ()"><code class="function">gtk_init()</code></a>.
@@ -1349,15 +1328,14 @@ end of <a class="link" href="gtk-General.html#gtk-init" title="gtk_init ()"><cod
1349
1328
  <tbody><tr>
1350
1329
  <td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
1351
1330
  <td>the pathname to the file. If <em class="parameter"><code>filename</code></em> is not absolute, it
1352
- is searched in the current directory.
1353
- </td>
1331
+ is searched in the current directory.</td>
1354
1332
  </tr></tbody>
1355
1333
  </table></div>
1356
1334
  </div>
1357
1335
  <hr>
1358
- <div class="refsect2" title="gtk_rc_get_default_files ()">
1336
+ <div class="refsect2">
1359
1337
  <a name="gtk-rc-get-default-files"></a><h3>gtk_rc_get_default_files ()</h3>
1360
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>** gtk_rc_get_default_files (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1338
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> ** gtk_rc_get_default_files (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1361
1339
  <p>
1362
1340
  Retrieves the current list of RC files that will be parsed
1363
1341
  at the end of <a class="link" href="gtk-General.html#gtk-init" title="gtk_init ()"><code class="function">gtk_init()</code></a>.
@@ -1366,17 +1344,18 @@ at the end of <a class="link" href="gtk-General.html#gtk-init" title="gtk_init (
1366
1344
  <col align="left" valign="top">
1367
1345
  <tbody><tr>
1368
1346
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1369
- <td> A <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array of filenames. This memory
1370
- is owned by GTK+ and must not be freed by the application.
1371
- If you want to store this information, you should make a copy.
1347
+ <td>A <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array of filenames.
1348
+ This memory is owned by GTK+ and must not be freed by the application.
1349
+ If you want to store this information, you should make a copy. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> filename]</span>
1372
1350
  </td>
1373
1351
  </tr></tbody>
1374
1352
  </table></div>
1375
1353
  </div>
1376
1354
  <hr>
1377
- <div class="refsect2" title="gtk_rc_set_default_files ()">
1378
- <a name="gtk-rc-set-default-files"></a><h3>gtk_rc_set_default_files ()</h3>
1379
- <pre class="programlisting"><span class="returnvalue">void</span> gtk_rc_set_default_files (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **filenames</code></em>);</pre>
1355
+ <div class="refsect2">
1356
+ <a name="gtk-rc-set-default-files"></a><h3>gtk_rc_set_default_files</h3>
1357
+ <pre class="programlisting">#define gtk_rc_set_default_files gtk_rc_set_default_files_utf8
1358
+ </pre>
1380
1359
  <p>
1381
1360
  Sets the list of files that GTK+ will read at the
1382
1361
  end of <a class="link" href="gtk-General.html#gtk-init" title="gtk_init ()"><code class="function">gtk_init()</code></a>.
@@ -1385,16 +1364,15 @@ end of <a class="link" href="gtk-General.html#gtk-init" title="gtk_init ()"><cod
1385
1364
  <col align="left" valign="top">
1386
1365
  <tbody><tr>
1387
1366
  <td><p><span class="term"><em class="parameter"><code>filenames</code></em> :</span></p></td>
1388
- <td>A <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated list of filenames.
1389
- </td>
1367
+ <td>A <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated list of filenames.</td>
1390
1368
  </tr></tbody>
1391
1369
  </table></div>
1392
1370
  </div>
1393
1371
  <hr>
1394
- <div class="refsect2" title="gtk_rc_parse_color ()">
1372
+ <div class="refsect2">
1395
1373
  <a name="gtk-rc-parse-color"></a><h3>gtk_rc_parse_color ()</h3>
1396
1374
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> gtk_rc_parse_color (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Lexical-Scanner.html#GScanner"><span class="type">GScanner</span></a> *scanner</code></em>,
1397
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
1375
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
1398
1376
  <p>
1399
1377
  Parses a color in the format expected
1400
1378
  in a RC file.
@@ -1413,24 +1391,25 @@ order to support symbolic colors.
1413
1391
  </tr>
1414
1392
  <tr>
1415
1393
  <td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
1416
- <td>a pointer to a <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> structure in which to store the result
1394
+ <td>a pointer to a <a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> structure in which to store
1395
+ the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1417
1396
  </td>
1418
1397
  </tr>
1419
1398
  <tr>
1420
1399
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1421
- <td> <code class="literal">G_TOKEN_NONE</code> if parsing succeeded, otherwise the token
1422
- that was expected but not found
1423
- </td>
1400
+ <td>
1401
+ <code class="literal">G_TOKEN_NONE</code> if parsing succeeded, otherwise the token
1402
+ that was expected but not found</td>
1424
1403
  </tr>
1425
1404
  </tbody>
1426
1405
  </table></div>
1427
1406
  </div>
1428
1407
  <hr>
1429
- <div class="refsect2" title="gtk_rc_parse_color_full ()">
1408
+ <div class="refsect2">
1430
1409
  <a name="gtk-rc-parse-color-full"></a><h3>gtk_rc_parse_color_full ()</h3>
1431
1410
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> gtk_rc_parse_color_full (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Lexical-Scanner.html#GScanner"><span class="type">GScanner</span></a> *scanner</code></em>,
1432
1411
  <em class="parameter"><code><a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a> *style</code></em>,
1433
- <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
1412
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
1434
1413
  <p>
1435
1414
  Parses a color in the format expected
1436
1415
  in a RC file. If <em class="parameter"><code>style</code></em> is not <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, it will be consulted to resolve
@@ -1446,27 +1425,27 @@ references to symbolic colors.
1446
1425
  </tr>
1447
1426
  <tr>
1448
1427
  <td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
1449
- <td> a <a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1428
+ <td>a <a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1450
1429
  </td>
1451
1430
  </tr>
1452
1431
  <tr>
1453
1432
  <td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
1454
- <td>a pointer to a <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> structure in which to store the result
1433
+ <td>a pointer to a <a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> structure in which to store
1434
+ the result. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1455
1435
  </td>
1456
1436
  </tr>
1457
1437
  <tr>
1458
1438
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1459
- <td> <code class="literal">G_TOKEN_NONE</code> if parsing succeeded, otherwise the token
1460
- that was expected but not found
1461
-
1462
- </td>
1439
+ <td>
1440
+ <code class="literal">G_TOKEN_NONE</code> if parsing succeeded, otherwise the token
1441
+ that was expected but not found</td>
1463
1442
  </tr>
1464
1443
  </tbody>
1465
1444
  </table></div>
1466
1445
  <p class="since">Since 2.12</p>
1467
1446
  </div>
1468
1447
  <hr>
1469
- <div class="refsect2" title="gtk_rc_parse_state ()">
1448
+ <div class="refsect2">
1470
1449
  <a name="gtk-rc-parse-state"></a><h3>gtk_rc_parse_state ()</h3>
1471
1450
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> gtk_rc_parse_state (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Lexical-Scanner.html#GScanner"><span class="type">GScanner</span></a> *scanner</code></em>,
1472
1451
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> *state</code></em>);</pre>
@@ -1479,27 +1458,24 @@ in a RC file.
1479
1458
  <tbody>
1480
1459
  <tr>
1481
1460
  <td><p><span class="term"><em class="parameter"><code>scanner</code></em> :</span></p></td>
1482
- <td>a <span class="type">GtkScanner</span> (must be initialized for parsing an RC file)
1483
- </td>
1461
+ <td>a <span class="type">GtkScanner</span> (must be initialized for parsing an RC file)</td>
1484
1462
  </tr>
1485
1463
  <tr>
1486
1464
  <td><p><span class="term"><em class="parameter"><code>state</code></em> :</span></p></td>
1487
1465
  <td>A pointer to a <a class="link" href="gtk-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> variable in which to
1488
- store the result.
1489
- </td>
1466
+ store the result.</td>
1490
1467
  </tr>
1491
1468
  <tr>
1492
1469
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1493
1470
  <td>
1494
1471
  <code class="literal">G_TOKEN_NONE</code> if parsing succeeded, otherwise the token
1495
- that was expected but not found.
1496
- </td>
1472
+ that was expected but not found.</td>
1497
1473
  </tr>
1498
1474
  </tbody>
1499
1475
  </table></div>
1500
1476
  </div>
1501
1477
  <hr>
1502
- <div class="refsect2" title="gtk_rc_parse_priority ()">
1478
+ <div class="refsect2">
1503
1479
  <a name="gtk-rc-parse-priority"></a><h3>gtk_rc_parse_priority ()</h3>
1504
1480
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> gtk_rc_parse_priority (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Lexical-Scanner.html#GScanner"><span class="type">GScanner</span></a> *scanner</code></em>,
1505
1481
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkPathPriorityType" title="enum GtkPathPriorityType"><span class="type">GtkPathPriorityType</span></a> *priority</code></em>);</pre>
@@ -1512,29 +1488,26 @@ in a RC file.
1512
1488
  <tbody>
1513
1489
  <tr>
1514
1490
  <td><p><span class="term"><em class="parameter"><code>scanner</code></em> :</span></p></td>
1515
- <td>a <span class="type">GtkScanner</span> (must be initialized for parsing an RC file)
1516
- </td>
1491
+ <td>a <span class="type">GtkScanner</span> (must be initialized for parsing an RC file)</td>
1517
1492
  </tr>
1518
1493
  <tr>
1519
1494
  <td><p><span class="term"><em class="parameter"><code>priority</code></em> :</span></p></td>
1520
1495
  <td>A pointer to <a class="link" href="gtk-Standard-Enumerations.html#GtkPathPriorityType" title="enum GtkPathPriorityType"><span class="type">GtkPathPriorityType</span></a> variable in which
1521
- to store the result.
1522
- </td>
1496
+ to store the result.</td>
1523
1497
  </tr>
1524
1498
  <tr>
1525
1499
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1526
1500
  <td>
1527
1501
  <code class="literal">G_TOKEN_NONE</code> if parsing succeeded, otherwise the token
1528
- that was expected but not found.
1529
- </td>
1502
+ that was expected but not found.</td>
1530
1503
  </tr>
1531
1504
  </tbody>
1532
1505
  </table></div>
1533
1506
  </div>
1534
1507
  <hr>
1535
- <div class="refsect2" title="gtk_rc_find_module_in_path ()">
1508
+ <div class="refsect2">
1536
1509
  <a name="gtk-rc-find-module-in-path"></a><h3>gtk_rc_find_module_in_path ()</h3>
1537
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>* gtk_rc_find_module_in_path (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *module_file</code></em>);</pre>
1510
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_rc_find_module_in_path (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *module_file</code></em>);</pre>
1538
1511
  <p>
1539
1512
  Searches for a theme engine in the GTK+ search path. This function
1540
1513
  is not useful for applications and should not be used.
@@ -1544,22 +1517,20 @@ is not useful for applications and should not be used.
1544
1517
  <tbody>
1545
1518
  <tr>
1546
1519
  <td><p><span class="term"><em class="parameter"><code>module_file</code></em> :</span></p></td>
1547
- <td>name of a theme engine
1548
- </td>
1520
+ <td>name of a theme engine</td>
1549
1521
  </tr>
1550
1522
  <tr>
1551
1523
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1552
- <td> The filename, if found (must be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>),
1553
- otherwise <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
1554
- </td>
1524
+ <td>The filename, if found (must be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>),
1525
+ otherwise <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</td>
1555
1526
  </tr>
1556
1527
  </tbody>
1557
1528
  </table></div>
1558
1529
  </div>
1559
1530
  <hr>
1560
- <div class="refsect2" title="gtk_rc_find_pixmap_in_path ()">
1531
+ <div class="refsect2">
1561
1532
  <a name="gtk-rc-find-pixmap-in-path"></a><h3>gtk_rc_find_pixmap_in_path ()</h3>
1562
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>* gtk_rc_find_pixmap_in_path (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>,
1533
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_rc_find_pixmap_in_path (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>,
1563
1534
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Lexical-Scanner.html#GScanner"><span class="type">GScanner</span></a> *scanner</code></em>,
1564
1535
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *pixmap_file</code></em>);</pre>
1565
1536
  <p>
@@ -1578,26 +1549,24 @@ If the file is not found, it outputs a warning message using
1578
1549
  <tr>
1579
1550
  <td><p><span class="term"><em class="parameter"><code>scanner</code></em> :</span></p></td>
1580
1551
  <td>Scanner used to get line number information for the
1581
- warning message, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1552
+ warning message, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1582
1553
  </td>
1583
1554
  </tr>
1584
1555
  <tr>
1585
1556
  <td><p><span class="term"><em class="parameter"><code>pixmap_file</code></em> :</span></p></td>
1586
- <td>name of the pixmap file to locate.
1587
- </td>
1557
+ <td>name of the pixmap file to locate.</td>
1588
1558
  </tr>
1589
1559
  <tr>
1590
1560
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1591
- <td> the filename.
1592
- </td>
1561
+ <td>the filename.</td>
1593
1562
  </tr>
1594
1563
  </tbody>
1595
1564
  </table></div>
1596
1565
  </div>
1597
1566
  <hr>
1598
- <div class="refsect2" title="gtk_rc_get_module_dir ()">
1567
+ <div class="refsect2">
1599
1568
  <a name="gtk-rc-get-module-dir"></a><h3>gtk_rc_get_module_dir ()</h3>
1600
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>* gtk_rc_get_module_dir (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1569
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_rc_get_module_dir (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1601
1570
  <p>
1602
1571
  Returns a directory in which GTK+ looks for theme engines.
1603
1572
  For full information about the search for theme engines,
@@ -1608,15 +1577,14 @@ see the docs for <code class="envar">GTK_PATH</code> in
1608
1577
  <col align="left" valign="top">
1609
1578
  <tbody><tr>
1610
1579
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1611
- <td> the directory. (Must be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>)
1612
- </td>
1580
+ <td>the directory. (Must be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>)</td>
1613
1581
  </tr></tbody>
1614
1582
  </table></div>
1615
1583
  </div>
1616
1584
  <hr>
1617
- <div class="refsect2" title="gtk_rc_get_im_module_path ()">
1585
+ <div class="refsect2">
1618
1586
  <a name="gtk-rc-get-im-module-path"></a><h3>gtk_rc_get_im_module_path ()</h3>
1619
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>* gtk_rc_get_im_module_path (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1587
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_rc_get_im_module_path (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1620
1588
  <p>
1621
1589
  Obtains the path in which to look for IM modules. See the documentation
1622
1590
  of the <code class="envar">GTK_PATH</code>
@@ -1628,16 +1596,15 @@ not be used by applications under normal circumstances.
1628
1596
  <col align="left" valign="top">
1629
1597
  <tbody><tr>
1630
1598
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1631
- <td>a newly-allocated string containing the path in which to
1632
- look for IM modules.
1633
- </td>
1599
+ <td>a newly-allocated string containing the path in which to
1600
+ look for IM modules.</td>
1634
1601
  </tr></tbody>
1635
1602
  </table></div>
1636
1603
  </div>
1637
1604
  <hr>
1638
- <div class="refsect2" title="gtk_rc_get_im_module_file ()">
1605
+ <div class="refsect2">
1639
1606
  <a name="gtk-rc-get-im-module-file"></a><h3>gtk_rc_get_im_module_file ()</h3>
1640
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>* gtk_rc_get_im_module_file (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1607
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_rc_get_im_module_file (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1641
1608
  <p>
1642
1609
  Obtains the path to the IM modules file. See the documentation
1643
1610
  of the <a class="link" href="gtk-running.html#im-module-file" title="GTK_IM_MODULE_FILE"><code class="envar">GTK_IM_MODULE_FILE</code></a>
@@ -1648,15 +1615,14 @@ environment variable for more details.
1648
1615
  <tbody><tr>
1649
1616
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1650
1617
  <td>a newly-allocated string containing the name of the file
1651
- listing the IM modules available for loading
1652
- </td>
1618
+ listing the IM modules available for loading</td>
1653
1619
  </tr></tbody>
1654
1620
  </table></div>
1655
1621
  </div>
1656
1622
  <hr>
1657
- <div class="refsect2" title="gtk_rc_get_theme_dir ()">
1623
+ <div class="refsect2">
1658
1624
  <a name="gtk-rc-get-theme-dir"></a><h3>gtk_rc_get_theme_dir ()</h3>
1659
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>* gtk_rc_get_theme_dir (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1625
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_rc_get_theme_dir (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1660
1626
  <p>
1661
1627
  Returns the standard directory in which themes should
1662
1628
  be installed. (GTK+ does not actually use this directory
@@ -1666,15 +1632,14 @@ itself.)
1666
1632
  <col align="left" valign="top">
1667
1633
  <tbody><tr>
1668
1634
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1669
- <td>The directory (must be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>).
1670
- </td>
1635
+ <td>The directory (must be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>).</td>
1671
1636
  </tr></tbody>
1672
1637
  </table></div>
1673
1638
  </div>
1674
1639
  <hr>
1675
- <div class="refsect2" title="gtk_rc_style_new ()">
1640
+ <div class="refsect2">
1676
1641
  <a name="gtk-rc-style-new"></a><h3>gtk_rc_style_new ()</h3>
1677
- <pre class="programlisting"><a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="returnvalue">GtkRcStyle</span></a>* gtk_rc_style_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1642
+ <pre class="programlisting"><a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="returnvalue">GtkRcStyle</span></a> * gtk_rc_style_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1678
1643
  <p>
1679
1644
  Creates a new <a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a> with no fields set and
1680
1645
  a reference count of 1.
@@ -1689,9 +1654,9 @@ a reference count of 1.
1689
1654
  </table></div>
1690
1655
  </div>
1691
1656
  <hr>
1692
- <div class="refsect2" title="gtk_rc_style_copy ()">
1657
+ <div class="refsect2">
1693
1658
  <a name="gtk-rc-style-copy"></a><h3>gtk_rc_style_copy ()</h3>
1694
- <pre class="programlisting"><a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="returnvalue">GtkRcStyle</span></a>* gtk_rc_style_copy (<em class="parameter"><code><a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a> *orig</code></em>);</pre>
1659
+ <pre class="programlisting"><a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="returnvalue">GtkRcStyle</span></a> * gtk_rc_style_copy (<em class="parameter"><code><a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a> *orig</code></em>);</pre>
1695
1660
  <p>
1696
1661
  Makes a copy of the specified <a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a>. This function
1697
1662
  will correctly copy an RC style that is a member of a class
@@ -1702,22 +1667,21 @@ derived from <a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span cla
1702
1667
  <tbody>
1703
1668
  <tr>
1704
1669
  <td><p><span class="term"><em class="parameter"><code>orig</code></em> :</span></p></td>
1705
- <td>the style to copy
1706
- </td>
1670
+ <td>the style to copy</td>
1707
1671
  </tr>
1708
1672
  <tr>
1709
1673
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1710
- <td> the resulting <a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a>
1674
+ <td>the resulting <a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1711
1675
  </td>
1712
1676
  </tr>
1713
1677
  </tbody>
1714
1678
  </table></div>
1715
1679
  </div>
1716
1680
  <hr>
1717
- <div class="refsect2" title="gtk_rc_style_ref ()">
1681
+ <div class="refsect2">
1718
1682
  <a name="gtk-rc-style-ref"></a><h3>gtk_rc_style_ref ()</h3>
1719
1683
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_rc_style_ref (<em class="parameter"><code><a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a> *rc_style</code></em>);</pre>
1720
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1684
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1721
1685
  <h3 class="title">Warning</h3>
1722
1686
  <p><code class="literal">gtk_rc_style_ref</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-ref"><code class="function">g_object_ref()</code></a> instead</p>
1723
1687
  </div>
@@ -1734,10 +1698,10 @@ Increments the reference count of a <a class="link" href="gtk-Resource-Files.htm
1734
1698
  </table></div>
1735
1699
  </div>
1736
1700
  <hr>
1737
- <div class="refsect2" title="gtk_rc_style_unref ()">
1701
+ <div class="refsect2">
1738
1702
  <a name="gtk-rc-style-unref"></a><h3>gtk_rc_style_unref ()</h3>
1739
1703
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_rc_style_unref (<em class="parameter"><code><a class="link" href="gtk-Resource-Files.html#GtkRcStyle"><span class="type">GtkRcStyle</span></a> *rc_style</code></em>);</pre>
1740
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1704
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1741
1705
  <h3 class="title">Warning</h3>
1742
1706
  <p><code class="literal">gtk_rc_style_unref</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> instead</p>
1743
1707
  </div>
@@ -1758,6 +1722,6 @@ frees if the result is 0.
1758
1722
  </div>
1759
1723
  <div class="footer">
1760
1724
  <hr>
1761
- Generated by GTK-Doc V1.15</div>
1725
+ Generated by GTK-Doc V1.17</div>
1762
1726
  </body>
1763
1727
  </html>