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

Sign up to get free protection for your applications and to get access to all the features.
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>GtkSeparator</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="AbstractObjects.html" title="Abstract Base Classes">
9
9
  <link rel="prev" href="GtkScrollbar.html" title="GtkScrollbar">
10
10
  <link rel="next" href="GtkWidget.html" title="GtkWidget">
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="GtkScrollbar.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
18
  <td><a accesskey="u" href="AbstractObjects.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="GtkWidget.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">
@@ -30,7 +30,7 @@
30
30
  <a href="#GtkSeparator.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
31
31
  </td></tr>
32
32
  </table>
33
- <div class="refentry" title="GtkSeparator">
33
+ <div class="refentry">
34
34
  <a name="GtkSeparator"></a><div class="titlepage"></div>
35
35
  <div class="refnamediv"><table width="100%"><tr>
36
36
  <td valign="top">
@@ -39,15 +39,15 @@
39
39
  </td>
40
40
  <td valign="top" align="right"><img src="separator.png"></td>
41
41
  </tr></table></div>
42
- <div class="refsynopsisdiv" title="Synopsis">
42
+ <div class="refsynopsisdiv">
43
43
  <a name="GtkSeparator.synopsis"></a><h2>Synopsis</h2>
44
44
  <pre class="synopsis">
45
45
  #include &lt;gtk/gtk.h&gt;
46
46
 
47
- <a class="link" href="GtkSeparator.html#GtkSeparator-struct" title="GtkSeparator">GtkSeparator</a>;
47
+ struct <a class="link" href="GtkSeparator.html#GtkSeparator-struct" title="struct GtkSeparator">GtkSeparator</a>;
48
48
  </pre>
49
49
  </div>
50
- <div class="refsect1" title="Object Hierarchy">
50
+ <div class="refsect1">
51
51
  <a name="GtkSeparator.object-hierarchy"></a><h2>Object Hierarchy</h2>
52
52
  <pre class="synopsis">
53
53
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -59,32 +59,32 @@
59
59
  +----<a class="link" href="GtkVSeparator.html" title="GtkVSeparator">GtkVSeparator</a>
60
60
  </pre>
61
61
  </div>
62
- <div class="refsect1" title="Implemented Interfaces">
62
+ <div class="refsect1">
63
63
  <a name="GtkSeparator.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
64
64
  <p>
65
65
  GtkSeparator implements
66
66
  AtkImplementorIface, <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a> and <a class="link" href="gtk-Orientable.html#GtkOrientable">GtkOrientable</a>.</p>
67
67
  </div>
68
- <div class="refsect1" title="Description">
68
+ <div class="refsect1">
69
69
  <a name="GtkSeparator.description"></a><h2>Description</h2>
70
70
  <p>
71
71
  The <a class="link" href="GtkSeparator.html" title="GtkSeparator"><span class="type">GtkSeparator</span></a> widget is an abstract class, used only for deriving the
72
72
  subclasses <a class="link" href="GtkHSeparator.html" title="GtkHSeparator"><span class="type">GtkHSeparator</span></a> and <a class="link" href="GtkVSeparator.html" title="GtkVSeparator"><span class="type">GtkVSeparator</span></a>.
73
73
  </p>
74
74
  </div>
75
- <div class="refsect1" title="Details">
75
+ <div class="refsect1">
76
76
  <a name="GtkSeparator.details"></a><h2>Details</h2>
77
- <div class="refsect2" title="GtkSeparator">
78
- <a name="GtkSeparator-struct"></a><h3>GtkSeparator</h3>
79
- <pre class="programlisting">typedef struct _GtkSeparator GtkSeparator;</pre>
77
+ <div class="refsect2">
78
+ <a name="GtkSeparator-struct"></a><h3>struct GtkSeparator</h3>
79
+ <pre class="programlisting">struct GtkSeparator;</pre>
80
80
  <p>
81
- The <a class="link" href="GtkSeparator.html#GtkSeparator-struct" title="GtkSeparator"><span class="type">GtkSeparator</span></a> struct contains private data only.
81
+ The <a class="link" href="GtkSeparator.html#GtkSeparator-struct" title="struct GtkSeparator"><span class="type">GtkSeparator</span></a> struct contains private data only.
82
82
  </p>
83
83
  </div>
84
84
  </div>
85
85
  </div>
86
86
  <div class="footer">
87
87
  <hr>
88
- Generated by GTK-Doc V1.15</div>
88
+ Generated by GTK-Doc V1.17</div>
89
89
  </body>
90
90
  </html>
@@ -4,11 +4,11 @@
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
5
  <title>GtkSeparatorMenuItem</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="MenusAndCombos.html" title="Menus, Combo Box, Toolbar">
9
9
  <link rel="prev" href="gtk-gtkcheckmenuitem.html" title="GtkCheckMenuItem">
10
10
  <link rel="next" href="GtkTearoffMenuItem.html" title="GtkTearoffMenuItem">
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-gtkcheckmenuitem.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
18
  <td><a accesskey="u" href="MenusAndCombos.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="GtkTearoffMenuItem.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">
@@ -30,7 +30,7 @@
30
30
  <a href="#GtkSeparatorMenuItem.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
31
31
  </td></tr>
32
32
  </table>
33
- <div class="refentry" title="GtkSeparatorMenuItem">
33
+ <div class="refentry">
34
34
  <a name="GtkSeparatorMenuItem"></a><div class="titlepage"></div>
35
35
  <div class="refnamediv"><table width="100%"><tr>
36
36
  <td valign="top">
@@ -39,16 +39,16 @@
39
39
  </td>
40
40
  <td valign="top" align="right"></td>
41
41
  </tr></table></div>
42
- <div class="refsynopsisdiv" title="Synopsis">
42
+ <div class="refsynopsisdiv">
43
43
  <a name="GtkSeparatorMenuItem.synopsis"></a><h2>Synopsis</h2>
44
44
  <pre class="synopsis">
45
45
  #include &lt;gtk/gtk.h&gt;
46
46
 
47
- <a class="link" href="GtkSeparatorMenuItem.html#GtkSeparatorMenuItem-struct" title="GtkSeparatorMenuItem">GtkSeparatorMenuItem</a>;
48
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkSeparatorMenuItem.html#gtk-separator-menu-item-new" title="gtk_separator_menu_item_new ()">gtk_separator_menu_item_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
47
+ struct <a class="link" href="GtkSeparatorMenuItem.html#GtkSeparatorMenuItem-struct" title="struct GtkSeparatorMenuItem">GtkSeparatorMenuItem</a>;
48
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkSeparatorMenuItem.html#gtk-separator-menu-item-new" title="gtk_separator_menu_item_new ()">gtk_separator_menu_item_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
49
49
  </pre>
50
50
  </div>
51
- <div class="refsect1" title="Object Hierarchy">
51
+ <div class="refsect1">
52
52
  <a name="GtkSeparatorMenuItem.object-hierarchy"></a><h2>Object Hierarchy</h2>
53
53
  <pre class="synopsis">
54
54
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -62,13 +62,13 @@
62
62
  +----GtkSeparatorMenuItem
63
63
  </pre>
64
64
  </div>
65
- <div class="refsect1" title="Implemented Interfaces">
65
+ <div class="refsect1">
66
66
  <a name="GtkSeparatorMenuItem.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
67
67
  <p>
68
68
  GtkSeparatorMenuItem implements
69
69
  AtkImplementorIface, <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a> and <a class="link" href="GtkActivatable.html" title="GtkActivatable">GtkActivatable</a>.</p>
70
70
  </div>
71
- <div class="refsect1" title="Description">
71
+ <div class="refsect1">
72
72
  <a name="GtkSeparatorMenuItem.description"></a><h2>Description</h2>
73
73
  <p>
74
74
  The <a class="link" href="GtkSeparatorMenuItem.html" title="GtkSeparatorMenuItem"><span class="type">GtkSeparatorMenuItem</span></a> is a separator used to group
@@ -76,20 +76,20 @@ items within a menu. It displays a horizontal line with a shadow to
76
76
  make it appear sunken into the interface.
77
77
  </p>
78
78
  </div>
79
- <div class="refsect1" title="Details">
79
+ <div class="refsect1">
80
80
  <a name="GtkSeparatorMenuItem.details"></a><h2>Details</h2>
81
- <div class="refsect2" title="GtkSeparatorMenuItem">
82
- <a name="GtkSeparatorMenuItem-struct"></a><h3>GtkSeparatorMenuItem</h3>
83
- <pre class="programlisting">typedef struct _GtkSeparatorMenuItem GtkSeparatorMenuItem;</pre>
81
+ <div class="refsect2">
82
+ <a name="GtkSeparatorMenuItem-struct"></a><h3>struct GtkSeparatorMenuItem</h3>
83
+ <pre class="programlisting">struct GtkSeparatorMenuItem;</pre>
84
84
  <p>
85
- The <a class="link" href="GtkSeparatorMenuItem.html#GtkSeparatorMenuItem-struct" title="GtkSeparatorMenuItem"><span class="type">GtkSeparatorMenuItem</span></a> struct contains private data only, and
85
+ The <a class="link" href="GtkSeparatorMenuItem.html#GtkSeparatorMenuItem-struct" title="struct GtkSeparatorMenuItem"><span class="type">GtkSeparatorMenuItem</span></a> struct contains private data only, and
86
86
  should be accessed using the functions below.
87
87
  </p>
88
88
  </div>
89
89
  <hr>
90
- <div class="refsect2" title="gtk_separator_menu_item_new ()">
90
+ <div class="refsect2">
91
91
  <a name="gtk-separator-menu-item-new"></a><h3>gtk_separator_menu_item_new ()</h3>
92
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_separator_menu_item_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
92
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_separator_menu_item_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
93
93
  <p>
94
94
  Creates a new <a class="link" href="GtkSeparatorMenuItem.html" title="GtkSeparatorMenuItem"><span class="type">GtkSeparatorMenuItem</span></a>.
95
95
  </p>
@@ -97,8 +97,7 @@ Creates a new <a class="link" href="GtkSeparatorMenuItem.html" title="GtkSeparat
97
97
  <col align="left" valign="top">
98
98
  <tbody><tr>
99
99
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
100
- <td>a new <a class="link" href="GtkSeparatorMenuItem.html" title="GtkSeparatorMenuItem"><span class="type">GtkSeparatorMenuItem</span></a>.
101
- </td>
100
+ <td>a new <a class="link" href="GtkSeparatorMenuItem.html" title="GtkSeparatorMenuItem"><span class="type">GtkSeparatorMenuItem</span></a>.</td>
102
101
  </tr></tbody>
103
102
  </table></div>
104
103
  </div>
@@ -106,6 +105,6 @@ Creates a new <a class="link" href="GtkSeparatorMenuItem.html" title="GtkSeparat
106
105
  </div>
107
106
  <div class="footer">
108
107
  <hr>
109
- Generated by GTK-Doc V1.15</div>
108
+ Generated by GTK-Doc V1.17</div>
110
109
  </body>
111
110
  </html>
@@ -4,11 +4,11 @@
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
5
  <title>GtkSeparatorToolItem</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="MenusAndCombos.html" title="Menus, Combo Box, Toolbar">
9
9
  <link rel="prev" href="GtkToolItemGroup.html" title="GtkToolItemGroup">
10
10
  <link rel="next" href="GtkToolButton.html" title="GtkToolButton">
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="GtkToolItemGroup.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
18
  <td><a accesskey="u" href="MenusAndCombos.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="GtkToolButton.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">
@@ -32,7 +32,7 @@
32
32
  <a href="#GtkSeparatorToolItem.properties" class="shortcut">Properties</a>
33
33
  </td></tr>
34
34
  </table>
35
- <div class="refentry" title="GtkSeparatorToolItem">
35
+ <div class="refentry">
36
36
  <a name="GtkSeparatorToolItem"></a><div class="titlepage"></div>
37
37
  <div class="refnamediv"><table width="100%"><tr>
38
38
  <td valign="top">
@@ -41,19 +41,19 @@
41
41
  </td>
42
42
  <td valign="top" align="right"></td>
43
43
  </tr></table></div>
44
- <div class="refsynopsisdiv" title="Synopsis">
44
+ <div class="refsynopsisdiv">
45
45
  <a name="GtkSeparatorToolItem.synopsis"></a><h2>Synopsis</h2>
46
46
  <pre class="synopsis">
47
47
  #include &lt;gtk/gtk.h&gt;
48
48
 
49
- <a class="link" href="GtkSeparatorToolItem.html#GtkSeparatorToolItem-struct" title="GtkSeparatorToolItem">GtkSeparatorToolItem</a>;
49
+ struct <a class="link" href="GtkSeparatorToolItem.html#GtkSeparatorToolItem-struct" title="struct GtkSeparatorToolItem">GtkSeparatorToolItem</a>;
50
50
  <a class="link" href="GtkToolItem.html" title="GtkToolItem"><span class="returnvalue">GtkToolItem</span></a> * <a class="link" href="GtkSeparatorToolItem.html#gtk-separator-tool-item-new" title="gtk_separator_tool_item_new ()">gtk_separator_tool_item_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
51
51
  <span class="returnvalue">void</span> <a class="link" href="GtkSeparatorToolItem.html#gtk-separator-tool-item-set-draw" title="gtk_separator_tool_item_set_draw ()">gtk_separator_tool_item_set_draw</a> (<em class="parameter"><code><a class="link" href="GtkSeparatorToolItem.html" title="GtkSeparatorToolItem"><span class="type">GtkSeparatorToolItem</span></a> *item</code></em>,
52
52
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> draw</code></em>);
53
53
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkSeparatorToolItem.html#gtk-separator-tool-item-get-draw" title="gtk_separator_tool_item_get_draw ()">gtk_separator_tool_item_get_draw</a> (<em class="parameter"><code><a class="link" href="GtkSeparatorToolItem.html" title="GtkSeparatorToolItem"><span class="type">GtkSeparatorToolItem</span></a> *item</code></em>);
54
54
  </pre>
55
55
  </div>
56
- <div class="refsect1" title="Object Hierarchy">
56
+ <div class="refsect1">
57
57
  <a name="GtkSeparatorToolItem.object-hierarchy"></a><h2>Object Hierarchy</h2>
58
58
  <pre class="synopsis">
59
59
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -66,19 +66,19 @@
66
66
  +----GtkSeparatorToolItem
67
67
  </pre>
68
68
  </div>
69
- <div class="refsect1" title="Implemented Interfaces">
69
+ <div class="refsect1">
70
70
  <a name="GtkSeparatorToolItem.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
71
71
  <p>
72
72
  GtkSeparatorToolItem implements
73
73
  AtkImplementorIface, <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a> and <a class="link" href="GtkActivatable.html" title="GtkActivatable">GtkActivatable</a>.</p>
74
74
  </div>
75
- <div class="refsect1" title="Properties">
75
+ <div class="refsect1">
76
76
  <a name="GtkSeparatorToolItem.properties"></a><h2>Properties</h2>
77
77
  <pre class="synopsis">
78
78
  "<a class="link" href="GtkSeparatorToolItem.html#GtkSeparatorToolItem--draw" title='The "draw" property'>draw</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
79
79
  </pre>
80
80
  </div>
81
- <div class="refsect1" title="Description">
81
+ <div class="refsect1">
82
82
  <a name="GtkSeparatorToolItem.description"></a><h2>Description</h2>
83
83
  <p>
84
84
  A <span class="type">GtkSeparatorItem</span> is a <a class="link" href="GtkToolItem.html" title="GtkToolItem"><span class="type">GtkToolItem</span></a> that separates groups of other
@@ -94,18 +94,18 @@ to the ends of the toolbar.
94
94
  Use <a class="link" href="GtkSeparatorToolItem.html#gtk-separator-tool-item-new" title="gtk_separator_tool_item_new ()"><code class="function">gtk_separator_tool_item_new()</code></a> to create a new <a class="link" href="GtkSeparatorToolItem.html" title="GtkSeparatorToolItem"><span class="type">GtkSeparatorToolItem</span></a>.
95
95
  </p>
96
96
  </div>
97
- <div class="refsect1" title="Details">
97
+ <div class="refsect1">
98
98
  <a name="GtkSeparatorToolItem.details"></a><h2>Details</h2>
99
- <div class="refsect2" title="GtkSeparatorToolItem">
100
- <a name="GtkSeparatorToolItem-struct"></a><h3>GtkSeparatorToolItem</h3>
101
- <pre class="programlisting">typedef struct _GtkSeparatorToolItem GtkSeparatorToolItem;</pre>
99
+ <div class="refsect2">
100
+ <a name="GtkSeparatorToolItem-struct"></a><h3>struct GtkSeparatorToolItem</h3>
101
+ <pre class="programlisting">struct GtkSeparatorToolItem;</pre>
102
102
  <p>
103
103
  The <a class="link" href="GtkSeparatorToolItem.html" title="GtkSeparatorToolItem"><span class="type">GtkSeparatorToolItem</span></a> struct contains only private data and
104
104
  should only be accessed through the functions described below.
105
105
  </p>
106
106
  </div>
107
107
  <hr>
108
- <div class="refsect2" title="gtk_separator_tool_item_new ()">
108
+ <div class="refsect2">
109
109
  <a name="gtk-separator-tool-item-new"></a><h3>gtk_separator_tool_item_new ()</h3>
110
110
  <pre class="programlisting"><a class="link" href="GtkToolItem.html" title="GtkToolItem"><span class="returnvalue">GtkToolItem</span></a> * gtk_separator_tool_item_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
111
111
  <p>
@@ -115,15 +115,14 @@ Create a new <a class="link" href="GtkSeparatorToolItem.html" title="GtkSeparato
115
115
  <col align="left" valign="top">
116
116
  <tbody><tr>
117
117
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
118
- <td> the new <a class="link" href="GtkSeparatorToolItem.html" title="GtkSeparatorToolItem"><span class="type">GtkSeparatorToolItem</span></a>
119
-
118
+ <td>the new <a class="link" href="GtkSeparatorToolItem.html" title="GtkSeparatorToolItem"><span class="type">GtkSeparatorToolItem</span></a>
120
119
  </td>
121
120
  </tr></tbody>
122
121
  </table></div>
123
122
  <p class="since">Since 2.4</p>
124
123
  </div>
125
124
  <hr>
126
- <div class="refsect2" title="gtk_separator_tool_item_set_draw ()">
125
+ <div class="refsect2">
127
126
  <a name="gtk-separator-tool-item-set-draw"></a><h3>gtk_separator_tool_item_set_draw ()</h3>
128
127
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_separator_tool_item_set_draw (<em class="parameter"><code><a class="link" href="GtkSeparatorToolItem.html" title="GtkSeparatorToolItem"><span class="type">GtkSeparatorToolItem</span></a> *item</code></em>,
129
128
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> draw</code></em>);</pre>
@@ -142,15 +141,14 @@ to create an item that forces following items to the end of the toolbar.
142
141
  </tr>
143
142
  <tr>
144
143
  <td><p><span class="term"><em class="parameter"><code>draw</code></em> :</span></p></td>
145
- <td>whether <em class="parameter"><code>item</code></em> is drawn as a vertical line
146
- </td>
144
+ <td>whether <em class="parameter"><code>item</code></em> is drawn as a vertical line</td>
147
145
  </tr>
148
146
  </tbody>
149
147
  </table></div>
150
148
  <p class="since">Since 2.4</p>
151
149
  </div>
152
150
  <hr>
153
- <div class="refsect2" title="gtk_separator_tool_item_get_draw ()">
151
+ <div class="refsect2">
154
152
  <a name="gtk-separator-tool-item-get-draw"></a><h3>gtk_separator_tool_item_get_draw ()</h3>
155
153
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_separator_tool_item_get_draw (<em class="parameter"><code><a class="link" href="GtkSeparatorToolItem.html" title="GtkSeparatorToolItem"><span class="type">GtkSeparatorToolItem</span></a> *item</code></em>);</pre>
156
154
  <p>
@@ -162,30 +160,29 @@ See <a class="link" href="GtkSeparatorToolItem.html#gtk-separator-tool-item-set-
162
160
  <tbody>
163
161
  <tr>
164
162
  <td><p><span class="term"><em class="parameter"><code>item</code></em> :</span></p></td>
165
- <td>a <a class="link" href="GtkSeparatorToolItem.html" title="GtkSeparatorToolItem"><span class="type">GtkSeparatorToolItem</span></a>
163
+ <td>a <a class="link" href="GtkSeparatorToolItem.html" title="GtkSeparatorToolItem"><span class="type">GtkSeparatorToolItem</span></a>
166
164
  </td>
167
165
  </tr>
168
166
  <tr>
169
167
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
170
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>item</code></em> is drawn as a line, or just blank.
171
-
172
- </td>
168
+ <td>
169
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>item</code></em> is drawn as a line, or just blank.</td>
173
170
  </tr>
174
171
  </tbody>
175
172
  </table></div>
176
173
  <p class="since">Since 2.4</p>
177
174
  </div>
178
175
  </div>
179
- <div class="refsect1" title="Property Details">
176
+ <div class="refsect1">
180
177
  <a name="GtkSeparatorToolItem.property-details"></a><h2>Property Details</h2>
181
- <div class="refsect2" title='The "draw" property'>
178
+ <div class="refsect2">
182
179
  <a name="GtkSeparatorToolItem--draw"></a><h3>The <code class="literal">"draw"</code> property</h3>
183
180
  <pre class="programlisting"> "draw" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
184
181
  <p>Whether the separator is drawn, or just blank.</p>
185
182
  <p>Default value: TRUE</p>
186
183
  </div>
187
184
  </div>
188
- <div class="refsect1" title="See Also">
185
+ <div class="refsect1">
189
186
  <a name="GtkSeparatorToolItem.see-also"></a><h2>See Also</h2>
190
187
  <p>
191
188
  </p>
@@ -209,6 +206,6 @@ See <a class="link" href="GtkSeparatorToolItem.html#gtk-separator-tool-item-set-
209
206
  </div>
210
207
  <div class="footer">
211
208
  <hr>
212
- Generated by GTK-Doc V1.15</div>
209
+ Generated by GTK-Doc V1.17</div>
213
210
  </body>
214
211
  </html>
@@ -4,11 +4,11 @@
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
5
  <title>Settings</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-Resource-Files.html" title="Resource Files">
10
10
  <link rel="next" href="gtk-Bindings.html" title="Bindings">
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-Resource-Files.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="gtk-Bindings.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">
@@ -30,7 +30,7 @@
30
30
  <a href="#GtkSettings.properties" class="shortcut">Properties</a>
31
31
  </td></tr>
32
32
  </table>
33
- <div class="refentry" title="Settings">
33
+ <div class="refentry">
34
34
  <a name="GtkSettings"></a><div class="titlepage"></div>
35
35
  <div class="refnamediv"><table width="100%"><tr>
36
36
  <td valign="top">
@@ -39,15 +39,15 @@
39
39
  </td>
40
40
  <td valign="top" align="right"></td>
41
41
  </tr></table></div>
42
- <div class="refsynopsisdiv" title="Synopsis">
42
+ <div class="refsynopsisdiv">
43
43
  <a name="GtkSettings.synopsis"></a><h2>Synopsis</h2>
44
44
  <pre class="synopsis">
45
45
  #include &lt;gtk/gtk.h&gt;
46
46
 
47
47
  <a class="link" href="GtkSettings.html#GtkSettings-struct" title="GtkSettings">GtkSettings</a>;
48
- <a class="link" href="GtkSettings.html#GtkSettingsValue" title="GtkSettingsValue">GtkSettingsValue</a>;
49
- <a class="link" href="GtkSettings.html" title="Settings"><span class="returnvalue">GtkSettings</span></a>* <a class="link" href="GtkSettings.html#gtk-settings-get-default" title="gtk_settings_get_default ()">gtk_settings_get_default</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
50
- <a class="link" href="GtkSettings.html" title="Settings"><span class="returnvalue">GtkSettings</span></a>* <a class="link" href="GtkSettings.html#gtk-settings-get-for-screen" title="gtk_settings_get_for_screen ()">gtk_settings_get_for_screen</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);
48
+ struct <a class="link" href="GtkSettings.html#GtkSettingsValue" title="struct GtkSettingsValue">GtkSettingsValue</a>;
49
+ <a class="link" href="GtkSettings.html" title="Settings"><span class="returnvalue">GtkSettings</span></a> * <a class="link" href="GtkSettings.html#gtk-settings-get-default" title="gtk_settings_get_default ()">gtk_settings_get_default</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
50
+ <a class="link" href="GtkSettings.html" title="Settings"><span class="returnvalue">GtkSettings</span></a> * <a class="link" href="GtkSettings.html#gtk-settings-get-for-screen" title="gtk_settings_get_for_screen ()">gtk_settings_get_for_screen</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);
51
51
  <span class="returnvalue">void</span> <a class="link" href="GtkSettings.html#gtk-settings-install-property" title="gtk_settings_install_property ()">gtk_settings_install_property</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#GParamSpec"><span class="type">GParamSpec</span></a> *pspec</code></em>);
52
52
  <span class="returnvalue">void</span> <a class="link" href="GtkSettings.html#gtk-settings-install-property-parser" title="gtk_settings_install_property_parser ()">gtk_settings_install_property_parser</a>
53
53
  (<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#GParamSpec"><span class="type">GParamSpec</span></a> *pspec</code></em>,
@@ -69,7 +69,7 @@
69
69
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *property_value</code></em>);
70
70
  <span class="returnvalue">void</span> <a class="link" href="GtkSettings.html#gtk-settings-set-property-value" title="gtk_settings_set_property_value ()">gtk_settings_set_property_value</a> (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>,
71
71
  <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> *name</code></em>,
72
- <em class="parameter"><code>const <a class="link" href="GtkSettings.html#GtkSettingsValue" title="GtkSettingsValue"><span class="type">GtkSettingsValue</span></a> *svalue</code></em>);
72
+ <em class="parameter"><code>const <a class="link" href="GtkSettings.html#GtkSettingsValue" title="struct GtkSettingsValue"><span class="type">GtkSettingsValue</span></a> *svalue</code></em>);
73
73
  <span class="returnvalue">void</span> <a class="link" href="GtkSettings.html#gtk-settings-set-string-property" title="gtk_settings_set_string_property ()">gtk_settings_set_string_property</a> (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>,
74
74
  <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> *name</code></em>,
75
75
  <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> *v_string</code></em>,
@@ -84,14 +84,14 @@
84
84
  <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> *origin</code></em>);
85
85
  </pre>
86
86
  </div>
87
- <div class="refsect1" title="Object Hierarchy">
87
+ <div class="refsect1">
88
88
  <a name="GtkSettings.object-hierarchy"></a><h2>Object Hierarchy</h2>
89
89
  <pre class="synopsis">
90
90
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
91
91
  +----GtkSettings
92
92
  </pre>
93
93
  </div>
94
- <div class="refsect1" title="Properties">
94
+ <div class="refsect1">
95
95
  <a name="GtkSettings.properties"></a><h2>Properties</h2>
96
96
  <pre class="synopsis">
97
97
  "<a class="link" href="GtkSettings.html#GtkSettings--color-hash" title='The "color-hash" property'>color-hash</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Hash-Tables.html#GHashTable"><span class="type">GHashTable</span></a>* : Read
@@ -162,7 +162,7 @@
162
162
  "<a class="link" href="GtkSettings.html#GtkSettings--gtk-xft-rgba" title='The "gtk-xft-rgba" property'>gtk-xft-rgba</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
163
163
  </pre>
164
164
  </div>
165
- <div class="refsect1" title="Description">
165
+ <div class="refsect1">
166
166
  <a name="GtkSettings.description"></a><h2>Description</h2>
167
167
  <p>
168
168
  GtkSettings provide a mechanism to share global settings between applications.
@@ -205,18 +205,18 @@ to use <a class="link" href="GtkWidget.html#gtk-widget-get-settings" title="gtk_
205
205
  GtkSettings instance for the default screen.
206
206
  </p>
207
207
  </div>
208
- <div class="refsect1" title="Details">
208
+ <div class="refsect1">
209
209
  <a name="GtkSettings.details"></a><h2>Details</h2>
210
- <div class="refsect2" title="GtkSettings">
210
+ <div class="refsect2">
211
211
  <a name="GtkSettings-struct"></a><h3>GtkSettings</h3>
212
212
  <pre class="programlisting">typedef struct _GtkSettings GtkSettings;</pre>
213
213
  <p>
214
214
  </p>
215
215
  </div>
216
216
  <hr>
217
- <div class="refsect2" title="GtkSettingsValue">
218
- <a name="GtkSettingsValue"></a><h3>GtkSettingsValue</h3>
219
- <pre class="programlisting">typedef struct {
217
+ <div class="refsect2">
218
+ <a name="GtkSettingsValue"></a><h3>struct GtkSettingsValue</h3>
219
+ <pre class="programlisting">struct GtkSettingsValue {
220
220
  /* origin should be something like "filename:linenumber" for rc files,
221
221
  * or e.g. "XProperty" for other sources
222
222
  */
@@ -226,15 +226,15 @@ GtkSettings instance for the default screen.
226
226
  * or a GSTRING holding an unparsed statement
227
227
  */
228
228
  GValue value;
229
- } GtkSettingsValue;
229
+ };
230
230
  </pre>
231
231
  <p>
232
232
  </p>
233
233
  </div>
234
234
  <hr>
235
- <div class="refsect2" title="gtk_settings_get_default ()">
235
+ <div class="refsect2">
236
236
  <a name="gtk-settings-get-default"></a><h3>gtk_settings_get_default ()</h3>
237
- <pre class="programlisting"><a class="link" href="GtkSettings.html" title="Settings"><span class="returnvalue">GtkSettings</span></a>* gtk_settings_get_default (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
237
+ <pre class="programlisting"><a class="link" href="GtkSettings.html" title="Settings"><span class="returnvalue">GtkSettings</span></a> * gtk_settings_get_default (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
238
238
  <p>
239
239
  Gets the <a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> object for the default GDK screen, creating
240
240
  it if necessary. 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>.
@@ -243,16 +243,16 @@ it if necessary. See <a class="link" href="GtkSettings.html#gtk-settings-get-for
243
243
  <col align="left" valign="top">
244
244
  <tbody><tr>
245
245
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
246
- <td> a <a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> object. If there is no default
247
- screen, then returns <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="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
246
+ <td>a <a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> object. If there is no default
247
+ screen, then returns <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="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
248
248
  </td>
249
249
  </tr></tbody>
250
250
  </table></div>
251
251
  </div>
252
252
  <hr>
253
- <div class="refsect2" title="gtk_settings_get_for_screen ()">
253
+ <div class="refsect2">
254
254
  <a name="gtk-settings-get-for-screen"></a><h3>gtk_settings_get_for_screen ()</h3>
255
- <pre class="programlisting"><a class="link" href="GtkSettings.html" title="Settings"><span class="returnvalue">GtkSettings</span></a>* gtk_settings_get_for_screen (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
255
+ <pre class="programlisting"><a class="link" href="GtkSettings.html" title="Settings"><span class="returnvalue">GtkSettings</span></a> * gtk_settings_get_for_screen (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
256
256
  <p>
257
257
  Gets the <a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> object for <em class="parameter"><code>screen</code></em>, creating it if necessary.
258
258
  </p>
@@ -261,13 +261,11 @@ Gets the <a class="link" href="GtkSettings.html" title="Settings"><span class="t
261
261
  <tbody>
262
262
  <tr>
263
263
  <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
264
- <td>a <a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html"><span class="type">GdkScreen</span></a>.
265
- </td>
264
+ <td>a <a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a>.</td>
266
265
  </tr>
267
266
  <tr>
268
267
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
269
- <td> a <a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> object.
270
-
268
+ <td>a <a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> object. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
271
269
  </td>
272
270
  </tr>
273
271
  </tbody>
@@ -275,46 +273,23 @@ Gets the <a class="link" href="GtkSettings.html" title="Settings"><span class="t
275
273
  <p class="since">Since 2.2</p>
276
274
  </div>
277
275
  <hr>
278
- <div class="refsect2" title="gtk_settings_install_property ()">
276
+ <div class="refsect2">
279
277
  <a name="gtk-settings-install-property"></a><h3>gtk_settings_install_property ()</h3>
280
278
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_settings_install_property (<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#GParamSpec"><span class="type">GParamSpec</span></a> *pspec</code></em>);</pre>
281
279
  <p>
282
280
  </p>
283
- <div class="variablelist"><table border="0">
284
- <col align="left" valign="top">
285
- <tbody><tr>
286
- <td><p><span class="term"><em class="parameter"><code>pspec</code></em> :</span></p></td>
287
- <td>
288
- </td>
289
- </tr></tbody>
290
- </table></div>
291
281
  </div>
292
282
  <hr>
293
- <div class="refsect2" title="gtk_settings_install_property_parser ()">
283
+ <div class="refsect2">
294
284
  <a name="gtk-settings-install-property-parser"></a><h3>gtk_settings_install_property_parser ()</h3>
295
285
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_settings_install_property_parser
296
286
  (<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#GParamSpec"><span class="type">GParamSpec</span></a> *pspec</code></em>,
297
287
  <em class="parameter"><code><a class="link" href="GtkStyle.html#GtkRcPropertyParser" title="GtkRcPropertyParser ()"><span class="type">GtkRcPropertyParser</span></a> parser</code></em>);</pre>
298
288
  <p>
299
289
  </p>
300
- <div class="variablelist"><table border="0">
301
- <col align="left" valign="top">
302
- <tbody>
303
- <tr>
304
- <td><p><span class="term"><em class="parameter"><code>pspec</code></em> :</span></p></td>
305
- <td>
306
- </td>
307
- </tr>
308
- <tr>
309
- <td><p><span class="term"><em class="parameter"><code>parser</code></em> :</span></p></td>
310
- <td>
311
- </td>
312
- </tr>
313
- </tbody>
314
- </table></div>
315
290
  </div>
316
291
  <hr>
317
- <div class="refsect2" title="gtk_rc_property_parse_color ()">
292
+ <div class="refsect2">
318
293
  <a name="gtk-rc-property-parse-color"></a><h3>gtk_rc_property_parse_color ()</h3>
319
294
  <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_property_parse_color (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#GParamSpec"><span class="type">GParamSpec</span></a> *pspec</code></em>,
320
295
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Strings.html#GString"><span class="type">GString</span></a> *gstring</code></em>,
@@ -337,25 +312,23 @@ between 0 and 1.
337
312
  </tr>
338
313
  <tr>
339
314
  <td><p><span class="term"><em class="parameter"><code>gstring</code></em> :</span></p></td>
340
- <td>the <a href="http://library.gnome.org/devel/glib/unstable/glib-Strings.html#GString"><span class="type">GString</span></a> to be parsed
341
- </td>
315
+ <td>the <a href="http://library.gnome.org/devel/glib/unstable/glib-Strings.html#GString"><span class="type">GString</span></a> to be parsed</td>
342
316
  </tr>
343
317
  <tr>
344
318
  <td><p><span class="term"><em class="parameter"><code>property_value</code></em> :</span></p></td>
345
- <td>a <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> which must hold <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> values.
346
- </td>
319
+ <td>a <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> which must hold <a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> values.</td>
347
320
  </tr>
348
321
  <tr>
349
322
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
350
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>gstring</code></em> could be parsed and <em class="parameter"><code>property_value</code></em>
351
- has been set to the resulting <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>.
352
- </td>
323
+ <td>
324
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>gstring</code></em> could be parsed and <em class="parameter"><code>property_value</code></em>
325
+ has been set to the resulting <a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>.</td>
353
326
  </tr>
354
327
  </tbody>
355
328
  </table></div>
356
329
  </div>
357
330
  <hr>
358
- <div class="refsect2" title="gtk_rc_property_parse_enum ()">
331
+ <div class="refsect2">
359
332
  <a name="gtk-rc-property-parse-enum"></a><h3>gtk_rc_property_parse_enum ()</h3>
360
333
  <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_property_parse_enum (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#GParamSpec"><span class="type">GParamSpec</span></a> *pspec</code></em>,
361
334
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Strings.html#GString"><span class="type">GString</span></a> *gstring</code></em>,
@@ -380,25 +353,23 @@ may be surrounded by parentheses.
380
353
  </tr>
381
354
  <tr>
382
355
  <td><p><span class="term"><em class="parameter"><code>gstring</code></em> :</span></p></td>
383
- <td>the <a href="http://library.gnome.org/devel/glib/unstable/glib-Strings.html#GString"><span class="type">GString</span></a> to be parsed
384
- </td>
356
+ <td>the <a href="http://library.gnome.org/devel/glib/unstable/glib-Strings.html#GString"><span class="type">GString</span></a> to be parsed</td>
385
357
  </tr>
386
358
  <tr>
387
359
  <td><p><span class="term"><em class="parameter"><code>property_value</code></em> :</span></p></td>
388
- <td>a <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> which must hold enum values.
389
- </td>
360
+ <td>a <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> which must hold enum values.</td>
390
361
  </tr>
391
362
  <tr>
392
363
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
393
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>gstring</code></em> could be parsed and <em class="parameter"><code>property_value</code></em>
394
- has been set to the resulting <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Enumeration-and-Flag-Types.html#GEnumValue"><span class="type">GEnumValue</span></a>.
395
- </td>
364
+ <td>
365
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>gstring</code></em> could be parsed and <em class="parameter"><code>property_value</code></em>
366
+ has been set to the resulting <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Enumeration-and-Flag-Types.html#GEnumValue"><span class="type">GEnumValue</span></a>.</td>
396
367
  </tr>
397
368
  </tbody>
398
369
  </table></div>
399
370
  </div>
400
371
  <hr>
401
- <div class="refsect2" title="gtk_rc_property_parse_flags ()">
372
+ <div class="refsect2">
402
373
  <a name="gtk-rc-property-parse-flags"></a><h3>gtk_rc_property_parse_flags ()</h3>
403
374
  <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_property_parse_flags (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#GParamSpec"><span class="type">GParamSpec</span></a> *pspec</code></em>,
404
375
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Strings.html#GString"><span class="type">GString</span></a> *gstring</code></em>,
@@ -422,25 +393,23 @@ numerically. Multiple flags can be specified in the form
422
393
  </tr>
423
394
  <tr>
424
395
  <td><p><span class="term"><em class="parameter"><code>gstring</code></em> :</span></p></td>
425
- <td>the <a href="http://library.gnome.org/devel/glib/unstable/glib-Strings.html#GString"><span class="type">GString</span></a> to be parsed
426
- </td>
396
+ <td>the <a href="http://library.gnome.org/devel/glib/unstable/glib-Strings.html#GString"><span class="type">GString</span></a> to be parsed</td>
427
397
  </tr>
428
398
  <tr>
429
399
  <td><p><span class="term"><em class="parameter"><code>property_value</code></em> :</span></p></td>
430
- <td>a <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> which must hold flags values.
431
- </td>
400
+ <td>a <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> which must hold flags values.</td>
432
401
  </tr>
433
402
  <tr>
434
403
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
435
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>gstring</code></em> could be parsed and <em class="parameter"><code>property_value</code></em>
436
- has been set to the resulting flags value.
437
- </td>
404
+ <td>
405
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>gstring</code></em> could be parsed and <em class="parameter"><code>property_value</code></em>
406
+ has been set to the resulting flags value.</td>
438
407
  </tr>
439
408
  </tbody>
440
409
  </table></div>
441
410
  </div>
442
411
  <hr>
443
- <div class="refsect2" title="gtk_rc_property_parse_requisition ()">
412
+ <div class="refsect2">
444
413
  <a name="gtk-rc-property-parse-requisition"></a><h3>gtk_rc_property_parse_requisition ()</h3>
445
414
  <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_property_parse_requisition (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#GParamSpec"><span class="type">GParamSpec</span></a> *pspec</code></em>,
446
415
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Strings.html#GString"><span class="type">GString</span></a> *gstring</code></em>,
@@ -461,25 +430,23 @@ requisition in the form
461
430
  </tr>
462
431
  <tr>
463
432
  <td><p><span class="term"><em class="parameter"><code>gstring</code></em> :</span></p></td>
464
- <td>the <a href="http://library.gnome.org/devel/glib/unstable/glib-Strings.html#GString"><span class="type">GString</span></a> to be parsed
465
- </td>
433
+ <td>the <a href="http://library.gnome.org/devel/glib/unstable/glib-Strings.html#GString"><span class="type">GString</span></a> to be parsed</td>
466
434
  </tr>
467
435
  <tr>
468
436
  <td><p><span class="term"><em class="parameter"><code>property_value</code></em> :</span></p></td>
469
- <td>a <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> which must hold boxed values.
470
- </td>
437
+ <td>a <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> which must hold boxed values.</td>
471
438
  </tr>
472
439
  <tr>
473
440
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
474
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>gstring</code></em> could be parsed and <em class="parameter"><code>property_value</code></em>
475
- has been set to the resulting <a class="link" href="GtkWidget.html#GtkRequisition" title="GtkRequisition"><span class="type">GtkRequisition</span></a>.
476
- </td>
441
+ <td>
442
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>gstring</code></em> could be parsed and <em class="parameter"><code>property_value</code></em>
443
+ has been set to the resulting <a class="link" href="GtkWidget.html#GtkRequisition"><span class="type">GtkRequisition</span></a>.</td>
477
444
  </tr>
478
445
  </tbody>
479
446
  </table></div>
480
447
  </div>
481
448
  <hr>
482
- <div class="refsect2" title="gtk_rc_property_parse_border ()">
449
+ <div class="refsect2">
483
450
  <a name="gtk-rc-property-parse-border"></a><h3>gtk_rc_property_parse_border ()</h3>
484
451
  <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_property_parse_border (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#GParamSpec"><span class="type">GParamSpec</span></a> *pspec</code></em>,
485
452
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Strings.html#GString"><span class="type">GString</span></a> *gstring</code></em>,
@@ -501,54 +468,32 @@ borders in the form
501
468
  </tr>
502
469
  <tr>
503
470
  <td><p><span class="term"><em class="parameter"><code>gstring</code></em> :</span></p></td>
504
- <td>the <a href="http://library.gnome.org/devel/glib/unstable/glib-Strings.html#GString"><span class="type">GString</span></a> to be parsed
505
- </td>
471
+ <td>the <a href="http://library.gnome.org/devel/glib/unstable/glib-Strings.html#GString"><span class="type">GString</span></a> to be parsed</td>
506
472
  </tr>
507
473
  <tr>
508
474
  <td><p><span class="term"><em class="parameter"><code>property_value</code></em> :</span></p></td>
509
- <td>a <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> which must hold boxed values.
510
- </td>
475
+ <td>a <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> which must hold boxed values.</td>
511
476
  </tr>
512
477
  <tr>
513
478
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
514
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>gstring</code></em> could be parsed and <em class="parameter"><code>property_value</code></em>
515
- has been set to the resulting <a class="link" href="GtkStyle.html#GtkBorder" title="GtkBorder"><span class="type">GtkBorder</span></a>.
516
- </td>
479
+ <td>
480
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>gstring</code></em> could be parsed and <em class="parameter"><code>property_value</code></em>
481
+ has been set to the resulting <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a>.</td>
517
482
  </tr>
518
483
  </tbody>
519
484
  </table></div>
520
485
  </div>
521
486
  <hr>
522
- <div class="refsect2" title="gtk_settings_set_property_value ()">
487
+ <div class="refsect2">
523
488
  <a name="gtk-settings-set-property-value"></a><h3>gtk_settings_set_property_value ()</h3>
524
489
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_settings_set_property_value (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>,
525
490
  <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> *name</code></em>,
526
- <em class="parameter"><code>const <a class="link" href="GtkSettings.html#GtkSettingsValue" title="GtkSettingsValue"><span class="type">GtkSettingsValue</span></a> *svalue</code></em>);</pre>
491
+ <em class="parameter"><code>const <a class="link" href="GtkSettings.html#GtkSettingsValue" title="struct GtkSettingsValue"><span class="type">GtkSettingsValue</span></a> *svalue</code></em>);</pre>
527
492
  <p>
528
493
  </p>
529
- <div class="variablelist"><table border="0">
530
- <col align="left" valign="top">
531
- <tbody>
532
- <tr>
533
- <td><p><span class="term"><em class="parameter"><code>settings</code></em> :</span></p></td>
534
- <td>
535
- </td>
536
- </tr>
537
- <tr>
538
- <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
539
- <td>
540
- </td>
541
- </tr>
542
- <tr>
543
- <td><p><span class="term"><em class="parameter"><code>svalue</code></em> :</span></p></td>
544
- <td>
545
- </td>
546
- </tr>
547
- </tbody>
548
- </table></div>
549
494
  </div>
550
495
  <hr>
551
- <div class="refsect2" title="gtk_settings_set_string_property ()">
496
+ <div class="refsect2">
552
497
  <a name="gtk-settings-set-string-property"></a><h3>gtk_settings_set_string_property ()</h3>
553
498
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_settings_set_string_property (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>,
554
499
  <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> *name</code></em>,
@@ -556,34 +501,9 @@ has been set to the resulting <a class="link" href="GtkStyle.html#GtkBorder" tit
556
501
  <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> *origin</code></em>);</pre>
557
502
  <p>
558
503
  </p>
559
- <div class="variablelist"><table border="0">
560
- <col align="left" valign="top">
561
- <tbody>
562
- <tr>
563
- <td><p><span class="term"><em class="parameter"><code>settings</code></em> :</span></p></td>
564
- <td>
565
- </td>
566
- </tr>
567
- <tr>
568
- <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
569
- <td>
570
- </td>
571
- </tr>
572
- <tr>
573
- <td><p><span class="term"><em class="parameter"><code>v_string</code></em> :</span></p></td>
574
- <td>
575
- </td>
576
- </tr>
577
- <tr>
578
- <td><p><span class="term"><em class="parameter"><code>origin</code></em> :</span></p></td>
579
- <td>
580
- </td>
581
- </tr>
582
- </tbody>
583
- </table></div>
584
504
  </div>
585
505
  <hr>
586
- <div class="refsect2" title="gtk_settings_set_long_property ()">
506
+ <div class="refsect2">
587
507
  <a name="gtk-settings-set-long-property"></a><h3>gtk_settings_set_long_property ()</h3>
588
508
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_settings_set_long_property (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>,
589
509
  <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> *name</code></em>,
@@ -591,34 +511,9 @@ has been set to the resulting <a class="link" href="GtkStyle.html#GtkBorder" tit
591
511
  <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> *origin</code></em>);</pre>
592
512
  <p>
593
513
  </p>
594
- <div class="variablelist"><table border="0">
595
- <col align="left" valign="top">
596
- <tbody>
597
- <tr>
598
- <td><p><span class="term"><em class="parameter"><code>settings</code></em> :</span></p></td>
599
- <td>
600
- </td>
601
- </tr>
602
- <tr>
603
- <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
604
- <td>
605
- </td>
606
- </tr>
607
- <tr>
608
- <td><p><span class="term"><em class="parameter"><code>v_long</code></em> :</span></p></td>
609
- <td>
610
- </td>
611
- </tr>
612
- <tr>
613
- <td><p><span class="term"><em class="parameter"><code>origin</code></em> :</span></p></td>
614
- <td>
615
- </td>
616
- </tr>
617
- </tbody>
618
- </table></div>
619
514
  </div>
620
515
  <hr>
621
- <div class="refsect2" title="gtk_settings_set_double_property ()">
516
+ <div class="refsect2">
622
517
  <a name="gtk-settings-set-double-property"></a><h3>gtk_settings_set_double_property ()</h3>
623
518
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_settings_set_double_property (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>,
624
519
  <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> *name</code></em>,
@@ -626,53 +521,28 @@ has been set to the resulting <a class="link" href="GtkStyle.html#GtkBorder" tit
626
521
  <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> *origin</code></em>);</pre>
627
522
  <p>
628
523
  </p>
629
- <div class="variablelist"><table border="0">
630
- <col align="left" valign="top">
631
- <tbody>
632
- <tr>
633
- <td><p><span class="term"><em class="parameter"><code>settings</code></em> :</span></p></td>
634
- <td>
635
- </td>
636
- </tr>
637
- <tr>
638
- <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
639
- <td>
640
- </td>
641
- </tr>
642
- <tr>
643
- <td><p><span class="term"><em class="parameter"><code>v_double</code></em> :</span></p></td>
644
- <td>
645
- </td>
646
- </tr>
647
- <tr>
648
- <td><p><span class="term"><em class="parameter"><code>origin</code></em> :</span></p></td>
649
- <td>
650
- </td>
651
- </tr>
652
- </tbody>
653
- </table></div>
654
524
  </div>
655
525
  </div>
656
- <div class="refsect1" title="Property Details">
526
+ <div class="refsect1">
657
527
  <a name="GtkSettings.property-details"></a><h2>Property Details</h2>
658
- <div class="refsect2" title='The "color-hash" property'>
528
+ <div class="refsect2">
659
529
  <a name="GtkSettings--color-hash"></a><h3>The <code class="literal">"color-hash"</code> property</h3>
660
530
  <pre class="programlisting"> "color-hash" <a href="http://library.gnome.org/devel/glib/unstable/glib-Hash-Tables.html#GHashTable"><span class="type">GHashTable</span></a>* : Read</pre>
661
531
  <p>
662
532
  Holds a hash table representation of the <a class="link" href="GtkSettings.html#GtkSettings--gtk-color-scheme" title='The "gtk-color-scheme" property'><span class="type">"gtk-color-scheme"</span></a>
663
- setting, mapping color names to <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>s.
533
+ setting, mapping color names to <a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>s.
664
534
  </p>
665
535
  <p class="since">Since 2.10</p>
666
536
  </div>
667
537
  <hr>
668
- <div class="refsect2" title='The "gtk-alternative-button-order" property'>
538
+ <div class="refsect2">
669
539
  <a name="GtkSettings--gtk-alternative-button-order"></a><h3>The <code class="literal">"gtk-alternative-button-order"</code> property</h3>
670
540
  <pre class="programlisting"> "gtk-alternative-button-order" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
671
541
  <p>Whether buttons in dialogs should use the alternative button order.</p>
672
542
  <p>Default value: FALSE</p>
673
543
  </div>
674
544
  <hr>
675
- <div class="refsect2" title='The "gtk-alternative-sort-arrows" property'>
545
+ <div class="refsect2">
676
546
  <a name="GtkSettings--gtk-alternative-sort-arrows"></a><h3>The <code class="literal">"gtk-alternative-sort-arrows"</code> property</h3>
677
547
  <pre class="programlisting"> "gtk-alternative-sort-arrows" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
678
548
  <p>
@@ -684,7 +554,7 @@ in ascending order. When set to <a href="http://library.gnome.org/devel/glib/uns
684
554
  <p class="since">Since 2.12</p>
685
555
  </div>
686
556
  <hr>
687
- <div class="refsect2" title='The "gtk-auto-mnemonics" property'>
557
+ <div class="refsect2">
688
558
  <a name="GtkSettings--gtk-auto-mnemonics"></a><h3>The <code class="literal">"gtk-auto-mnemonics"</code> property</h3>
689
559
  <pre class="programlisting"> "gtk-auto-mnemonics" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
690
560
  <p>
@@ -695,28 +565,28 @@ presses the mnemonic activator.
695
565
  <p class="since">Since 2.20</p>
696
566
  </div>
697
567
  <hr>
698
- <div class="refsect2" title='The "gtk-button-images" property'>
568
+ <div class="refsect2">
699
569
  <a name="GtkSettings--gtk-button-images"></a><h3>The <code class="literal">"gtk-button-images"</code> property</h3>
700
570
  <pre class="programlisting"> "gtk-button-images" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
701
571
  <p>Whether images should be shown on buttons.</p>
702
572
  <p>Default value: TRUE</p>
703
573
  </div>
704
574
  <hr>
705
- <div class="refsect2" title='The "gtk-can-change-accels" property'>
575
+ <div class="refsect2">
706
576
  <a name="GtkSettings--gtk-can-change-accels"></a><h3>The <code class="literal">"gtk-can-change-accels"</code> property</h3>
707
577
  <pre class="programlisting"> "gtk-can-change-accels" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
708
578
  <p>Whether menu accelerators can be changed by pressing a key over the menu item.</p>
709
579
  <p>Default value: FALSE</p>
710
580
  </div>
711
581
  <hr>
712
- <div class="refsect2" title='The "gtk-color-palette" property'>
582
+ <div class="refsect2">
713
583
  <a name="GtkSettings--gtk-color-palette"></a><h3>The <code class="literal">"gtk-color-palette"</code> property</h3>
714
584
  <pre class="programlisting"> "gtk-color-palette" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
715
585
  <p>Palette to use in the color selector.</p>
716
586
  <p>Default value: "black:white:gray50:red:purple:blue:light blue:green:yellow:orange:lavender:brown:goldenrod4:dodger blue:pink:light green:gray10:gray30:gray75:gray90"</p>
717
587
  </div>
718
588
  <hr>
719
- <div class="refsect2" title='The "gtk-color-scheme" property'>
589
+ <div class="refsect2">
720
590
  <a name="GtkSettings--gtk-color-scheme"></a><h3>The <code class="literal">"gtk-color-scheme"</code> property</h3>
721
591
  <pre class="programlisting"> "gtk-color-scheme" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
722
592
  <p>
@@ -731,7 +601,7 @@ name2: color2
731
601
  Color names must be acceptable as identifiers in the
732
602
  <a class="link" href="gtk-Resource-Files.html" title="Resource Files">gtkrc</a> syntax, and
733
603
  color specifications must be in the format accepted by
734
- <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Colormaps-and-Colors.html#gdk-color-parse"><code class="function">gdk_color_parse()</code></a>.
604
+ <a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#gdk-color-parse"><code class="function">gdk_color_parse()</code></a>.
735
605
  </p>
736
606
  <p>
737
607
  Note that due to the way the color tables from different sources are
@@ -751,7 +621,7 @@ name1: color1; name2: color2; ...
751
621
  <p class="since">Since 2.10</p>
752
622
  </div>
753
623
  <hr>
754
- <div class="refsect2" title='The "gtk-cursor-blink" property'>
624
+ <div class="refsect2">
755
625
  <a name="GtkSettings--gtk-cursor-blink"></a><h3>The <code class="literal">"gtk-cursor-blink"</code> property</h3>
756
626
  <pre class="programlisting"> "gtk-cursor-blink" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
757
627
  <p>
@@ -764,7 +634,7 @@ which allows more flexible control over cursor blinking.
764
634
  <p>Default value: TRUE</p>
765
635
  </div>
766
636
  <hr>
767
- <div class="refsect2" title='The "gtk-cursor-blink-time" property'>
637
+ <div class="refsect2">
768
638
  <a name="GtkSettings--gtk-cursor-blink-time"></a><h3>The <code class="literal">"gtk-cursor-blink-time"</code> property</h3>
769
639
  <pre class="programlisting"> "gtk-cursor-blink-time" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
770
640
  <p>Length of the cursor blink cycle, in milliseconds.</p>
@@ -772,7 +642,7 @@ which allows more flexible control over cursor blinking.
772
642
  <p>Default value: 1200</p>
773
643
  </div>
774
644
  <hr>
775
- <div class="refsect2" title='The "gtk-cursor-blink-timeout" property'>
645
+ <div class="refsect2">
776
646
  <a name="GtkSettings--gtk-cursor-blink-timeout"></a><h3>The <code class="literal">"gtk-cursor-blink-timeout"</code> property</h3>
777
647
  <pre class="programlisting"> "gtk-cursor-blink-timeout" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
778
648
  <p>
@@ -788,14 +658,14 @@ Setting this to zero has the same effect as setting
788
658
  <p class="since">Since 2.12</p>
789
659
  </div>
790
660
  <hr>
791
- <div class="refsect2" title='The "gtk-cursor-theme-name" property'>
661
+ <div class="refsect2">
792
662
  <a name="GtkSettings--gtk-cursor-theme-name"></a><h3>The <code class="literal">"gtk-cursor-theme-name"</code> property</h3>
793
663
  <pre class="programlisting"> "gtk-cursor-theme-name" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
794
664
  <p>Name of the cursor theme to use, or NULL to use the default theme.</p>
795
665
  <p>Default value: NULL</p>
796
666
  </div>
797
667
  <hr>
798
- <div class="refsect2" title='The "gtk-cursor-theme-size" property'>
668
+ <div class="refsect2">
799
669
  <a name="GtkSettings--gtk-cursor-theme-size"></a><h3>The <code class="literal">"gtk-cursor-theme-size"</code> property</h3>
800
670
  <pre class="programlisting"> "gtk-cursor-theme-size" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
801
671
  <p>Size to use for cursors, or 0 to use the default size.</p>
@@ -803,7 +673,7 @@ Setting this to zero has the same effect as setting
803
673
  <p>Default value: 0</p>
804
674
  </div>
805
675
  <hr>
806
- <div class="refsect2" title='The "gtk-dnd-drag-threshold" property'>
676
+ <div class="refsect2">
807
677
  <a name="GtkSettings--gtk-dnd-drag-threshold"></a><h3>The <code class="literal">"gtk-dnd-drag-threshold"</code> property</h3>
808
678
  <pre class="programlisting"> "gtk-dnd-drag-threshold" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
809
679
  <p>Number of pixels the cursor can move before dragging.</p>
@@ -811,7 +681,7 @@ Setting this to zero has the same effect as setting
811
681
  <p>Default value: 8</p>
812
682
  </div>
813
683
  <hr>
814
- <div class="refsect2" title='The "gtk-double-click-distance" property'>
684
+ <div class="refsect2">
815
685
  <a name="GtkSettings--gtk-double-click-distance"></a><h3>The <code class="literal">"gtk-double-click-distance"</code> property</h3>
816
686
  <pre class="programlisting"> "gtk-double-click-distance" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
817
687
  <p>Maximum distance allowed between two clicks for them to be considered a double click (in pixels).</p>
@@ -819,7 +689,7 @@ Setting this to zero has the same effect as setting
819
689
  <p>Default value: 5</p>
820
690
  </div>
821
691
  <hr>
822
- <div class="refsect2" title='The "gtk-double-click-time" property'>
692
+ <div class="refsect2">
823
693
  <a name="GtkSettings--gtk-double-click-time"></a><h3>The <code class="literal">"gtk-double-click-time"</code> property</h3>
824
694
  <pre class="programlisting"> "gtk-double-click-time" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
825
695
  <p>Maximum time allowed between two clicks for them to be considered a double click (in milliseconds).</p>
@@ -827,7 +697,7 @@ Setting this to zero has the same effect as setting
827
697
  <p>Default value: 250</p>
828
698
  </div>
829
699
  <hr>
830
- <div class="refsect2" title='The "gtk-enable-accels" property'>
700
+ <div class="refsect2">
831
701
  <a name="GtkSettings--gtk-enable-accels"></a><h3>The <code class="literal">"gtk-enable-accels"</code> property</h3>
832
702
  <pre class="programlisting"> "gtk-enable-accels" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
833
703
  <p>
@@ -838,14 +708,14 @@ activated.
838
708
  <p class="since">Since 2.12</p>
839
709
  </div>
840
710
  <hr>
841
- <div class="refsect2" title='The "gtk-enable-animations" property'>
711
+ <div class="refsect2">
842
712
  <a name="GtkSettings--gtk-enable-animations"></a><h3>The <code class="literal">"gtk-enable-animations"</code> property</h3>
843
713
  <pre class="programlisting"> "gtk-enable-animations" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
844
714
  <p>Whether to enable toolkit-wide animations.</p>
845
715
  <p>Default value: TRUE</p>
846
716
  </div>
847
717
  <hr>
848
- <div class="refsect2" title='The "gtk-enable-event-sounds" property'>
718
+ <div class="refsect2">
849
719
  <a name="GtkSettings--gtk-enable-event-sounds"></a><h3>The <code class="literal">"gtk-enable-event-sounds"</code> property</h3>
850
720
  <pre class="programlisting"> "gtk-enable-event-sounds" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
851
721
  <p>
@@ -863,7 +733,7 @@ module like the one that comes with libcanberra.
863
733
  <p class="since">Since 2.14</p>
864
734
  </div>
865
735
  <hr>
866
- <div class="refsect2" title='The "gtk-enable-input-feedback-sounds" property'>
736
+ <div class="refsect2">
867
737
  <a name="GtkSettings--gtk-enable-input-feedback-sounds"></a><h3>The <code class="literal">"gtk-enable-input-feedback-sounds"</code> property</h3>
868
738
  <pre class="programlisting"> "gtk-enable-input-feedback-sounds" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
869
739
  <p>
@@ -881,7 +751,7 @@ module like the one that comes with libcanberra.
881
751
  <p class="since">Since 2.14</p>
882
752
  </div>
883
753
  <hr>
884
- <div class="refsect2" title='The "gtk-enable-mnemonics" property'>
754
+ <div class="refsect2">
885
755
  <a name="GtkSettings--gtk-enable-mnemonics"></a><h3>The <code class="literal">"gtk-enable-mnemonics"</code> property</h3>
886
756
  <pre class="programlisting"> "gtk-enable-mnemonics" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
887
757
  <p>
@@ -892,7 +762,7 @@ can be activated.
892
762
  <p class="since">Since 2.12</p>
893
763
  </div>
894
764
  <hr>
895
- <div class="refsect2" title='The "gtk-enable-tooltips" property'>
765
+ <div class="refsect2">
896
766
  <a name="GtkSettings--gtk-enable-tooltips"></a><h3>The <code class="literal">"gtk-enable-tooltips"</code> property</h3>
897
767
  <pre class="programlisting"> "gtk-enable-tooltips" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
898
768
  <p>
@@ -902,7 +772,7 @@ Whether tooltips should be shown on widgets.
902
772
  <p class="since">Since 2.14</p>
903
773
  </div>
904
774
  <hr>
905
- <div class="refsect2" title='The "gtk-entry-password-hint-timeout" property'>
775
+ <div class="refsect2">
906
776
  <a name="GtkSettings--gtk-entry-password-hint-timeout"></a><h3>The <code class="literal">"gtk-entry-password-hint-timeout"</code> property</h3>
907
777
  <pre class="programlisting"> "gtk-entry-password-hint-timeout" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read / Write</pre>
908
778
  <p>
@@ -914,20 +784,20 @@ last char. 600 is a good value for enabling it.
914
784
  <p class="since">Since 2.10</p>
915
785
  </div>
916
786
  <hr>
917
- <div class="refsect2" title='The "gtk-entry-select-on-focus" property'>
787
+ <div class="refsect2">
918
788
  <a name="GtkSettings--gtk-entry-select-on-focus"></a><h3>The <code class="literal">"gtk-entry-select-on-focus"</code> property</h3>
919
789
  <pre class="programlisting"> "gtk-entry-select-on-focus" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
920
790
  <p>Whether to select the contents of an entry when it is focused.</p>
921
791
  <p>Default value: TRUE</p>
922
792
  </div>
923
793
  <hr>
924
- <div class="refsect2" title='The "gtk-error-bell" property'>
794
+ <div class="refsect2">
925
795
  <a name="GtkSettings--gtk-error-bell"></a><h3>The <code class="literal">"gtk-error-bell"</code> property</h3>
926
796
  <pre class="programlisting"> "gtk-error-bell" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
927
797
  <p>
928
798
  When <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, keyboard navigation and other input-related errors
929
799
  will cause a beep. Since the error bell is implemented using
930
- <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Windows.html#gdk-window-beep"><code class="function">gdk_window_beep()</code></a>, the windowing system may offer ways to
800
+ <a href="http://library.gnome.org/devel/gdk3/gdk-Windows.html#gdk-window-beep"><code class="function">gdk_window_beep()</code></a>, the windowing system may offer ways to
931
801
  configure the error bell in many ways, such as flashing the
932
802
  window or similar visual effects.
933
803
  </p>
@@ -935,35 +805,35 @@ window or similar visual effects.
935
805
  <p class="since">Since 2.12</p>
936
806
  </div>
937
807
  <hr>
938
- <div class="refsect2" title='The "gtk-fallback-icon-theme" property'>
808
+ <div class="refsect2">
939
809
  <a name="GtkSettings--gtk-fallback-icon-theme"></a><h3>The <code class="literal">"gtk-fallback-icon-theme"</code> property</h3>
940
810
  <pre class="programlisting"> "gtk-fallback-icon-theme" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
941
811
  <p>Name of a icon theme to fall back to.</p>
942
812
  <p>Default value: NULL</p>
943
813
  </div>
944
814
  <hr>
945
- <div class="refsect2" title='The "gtk-file-chooser-backend" property'>
815
+ <div class="refsect2">
946
816
  <a name="GtkSettings--gtk-file-chooser-backend"></a><h3>The <code class="literal">"gtk-file-chooser-backend"</code> property</h3>
947
817
  <pre class="programlisting"> "gtk-file-chooser-backend" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
948
818
  <p>Name of the GtkFileChooser backend to use by default.</p>
949
819
  <p>Default value: NULL</p>
950
820
  </div>
951
821
  <hr>
952
- <div class="refsect2" title='The "gtk-font-name" property'>
822
+ <div class="refsect2">
953
823
  <a name="GtkSettings--gtk-font-name"></a><h3>The <code class="literal">"gtk-font-name"</code> property</h3>
954
824
  <pre class="programlisting"> "gtk-font-name" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
955
825
  <p>Name of default font to use.</p>
956
826
  <p>Default value: "Sans 10"</p>
957
827
  </div>
958
828
  <hr>
959
- <div class="refsect2" title='The "gtk-fontconfig-timestamp" property'>
829
+ <div class="refsect2">
960
830
  <a name="GtkSettings--gtk-fontconfig-timestamp"></a><h3>The <code class="literal">"gtk-fontconfig-timestamp"</code> property</h3>
961
831
  <pre class="programlisting"> "gtk-fontconfig-timestamp" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read / Write</pre>
962
832
  <p>Timestamp of current fontconfig configuration.</p>
963
833
  <p>Default value: 0</p>
964
834
  </div>
965
835
  <hr>
966
- <div class="refsect2" title='The "gtk-icon-sizes" property'>
836
+ <div class="refsect2">
967
837
  <a name="GtkSettings--gtk-icon-sizes"></a><h3>The <code class="literal">"gtk-icon-sizes"</code> property</h3>
968
838
  <pre class="programlisting"> "gtk-icon-sizes" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
969
839
  <p>
@@ -983,14 +853,14 @@ sizes with <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-size-r
983
853
  <p>Default value: NULL</p>
984
854
  </div>
985
855
  <hr>
986
- <div class="refsect2" title='The "gtk-icon-theme-name" property'>
856
+ <div class="refsect2">
987
857
  <a name="GtkSettings--gtk-icon-theme-name"></a><h3>The <code class="literal">"gtk-icon-theme-name"</code> property</h3>
988
858
  <pre class="programlisting"> "gtk-icon-theme-name" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
989
859
  <p>Name of icon theme to use.</p>
990
860
  <p>Default value: "hicolor"</p>
991
861
  </div>
992
862
  <hr>
993
- <div class="refsect2" title='The "gtk-im-module" property'>
863
+ <div class="refsect2">
994
864
  <a name="GtkSettings--gtk-im-module"></a><h3>The <code class="literal">"gtk-im-module"</code> property</h3>
995
865
  <pre class="programlisting"> "gtk-im-module" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
996
866
  <p>
@@ -1004,14 +874,14 @@ See <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="t
1004
874
  <p>Default value: NULL</p>
1005
875
  </div>
1006
876
  <hr>
1007
- <div class="refsect2" title='The "gtk-key-theme-name" property'>
877
+ <div class="refsect2">
1008
878
  <a name="GtkSettings--gtk-key-theme-name"></a><h3>The <code class="literal">"gtk-key-theme-name"</code> property</h3>
1009
879
  <pre class="programlisting"> "gtk-key-theme-name" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1010
880
  <p>Name of key theme RC file to load.</p>
1011
881
  <p>Default value: NULL</p>
1012
882
  </div>
1013
883
  <hr>
1014
- <div class="refsect2" title='The "gtk-keynav-cursor-only" property'>
884
+ <div class="refsect2">
1015
885
  <a name="GtkSettings--gtk-keynav-cursor-only"></a><h3>The <code class="literal">"gtk-keynav-cursor-only"</code> property</h3>
1016
886
  <pre class="programlisting"> "gtk-keynav-cursor-only" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1017
887
  <p>
@@ -1023,7 +893,7 @@ to be present on the used input device.
1023
893
  <p class="since">Since 2.12</p>
1024
894
  </div>
1025
895
  <hr>
1026
- <div class="refsect2" title='The "gtk-keynav-wrap-around" property'>
896
+ <div class="refsect2">
1027
897
  <a name="GtkSettings--gtk-keynav-wrap-around"></a><h3>The <code class="literal">"gtk-keynav-wrap-around"</code> property</h3>
1028
898
  <pre class="programlisting"> "gtk-keynav-wrap-around" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1029
899
  <p>
@@ -1034,21 +904,21 @@ navigation, such as menus, menubars and notebooks.
1034
904
  <p class="since">Since 2.12</p>
1035
905
  </div>
1036
906
  <hr>
1037
- <div class="refsect2" title='The "gtk-label-select-on-focus" property'>
907
+ <div class="refsect2">
1038
908
  <a name="GtkSettings--gtk-label-select-on-focus"></a><h3>The <code class="literal">"gtk-label-select-on-focus"</code> property</h3>
1039
909
  <pre class="programlisting"> "gtk-label-select-on-focus" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1040
910
  <p>Whether to select the contents of a selectable label when it is focused.</p>
1041
911
  <p>Default value: TRUE</p>
1042
912
  </div>
1043
913
  <hr>
1044
- <div class="refsect2" title='The "gtk-menu-bar-accel" property'>
914
+ <div class="refsect2">
1045
915
  <a name="GtkSettings--gtk-menu-bar-accel"></a><h3>The <code class="literal">"gtk-menu-bar-accel"</code> property</h3>
1046
916
  <pre class="programlisting"> "gtk-menu-bar-accel" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1047
917
  <p>Keybinding to activate the menu bar.</p>
1048
918
  <p>Default value: "F10"</p>
1049
919
  </div>
1050
920
  <hr>
1051
- <div class="refsect2" title='The "gtk-menu-bar-popup-delay" property'>
921
+ <div class="refsect2">
1052
922
  <a name="GtkSettings--gtk-menu-bar-popup-delay"></a><h3>The <code class="literal">"gtk-menu-bar-popup-delay"</code> property</h3>
1053
923
  <pre class="programlisting"> "gtk-menu-bar-popup-delay" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1054
924
  <p>Delay before the submenus of a menu bar appear.</p>
@@ -1056,14 +926,14 @@ navigation, such as menus, menubars and notebooks.
1056
926
  <p>Default value: 0</p>
1057
927
  </div>
1058
928
  <hr>
1059
- <div class="refsect2" title='The "gtk-menu-images" property'>
929
+ <div class="refsect2">
1060
930
  <a name="GtkSettings--gtk-menu-images"></a><h3>The <code class="literal">"gtk-menu-images"</code> property</h3>
1061
931
  <pre class="programlisting"> "gtk-menu-images" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1062
932
  <p>Whether images should be shown in menus.</p>
1063
933
  <p>Default value: TRUE</p>
1064
934
  </div>
1065
935
  <hr>
1066
- <div class="refsect2" title='The "gtk-menu-popdown-delay" property'>
936
+ <div class="refsect2">
1067
937
  <a name="GtkSettings--gtk-menu-popdown-delay"></a><h3>The <code class="literal">"gtk-menu-popdown-delay"</code> property</h3>
1068
938
  <pre class="programlisting"> "gtk-menu-popdown-delay" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1069
939
  <p>The time before hiding a submenu when the pointer is moving towards the submenu.</p>
@@ -1071,7 +941,7 @@ navigation, such as menus, menubars and notebooks.
1071
941
  <p>Default value: 1000</p>
1072
942
  </div>
1073
943
  <hr>
1074
- <div class="refsect2" title='The "gtk-menu-popup-delay" property'>
944
+ <div class="refsect2">
1075
945
  <a name="GtkSettings--gtk-menu-popup-delay"></a><h3>The <code class="literal">"gtk-menu-popup-delay"</code> property</h3>
1076
946
  <pre class="programlisting"> "gtk-menu-popup-delay" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1077
947
  <p>Minimum time the pointer must stay over a menu item before the submenu appear.</p>
@@ -1079,14 +949,14 @@ navigation, such as menus, menubars and notebooks.
1079
949
  <p>Default value: 225</p>
1080
950
  </div>
1081
951
  <hr>
1082
- <div class="refsect2" title='The "gtk-modules" property'>
952
+ <div class="refsect2">
1083
953
  <a name="GtkSettings--gtk-modules"></a><h3>The <code class="literal">"gtk-modules"</code> property</h3>
1084
954
  <pre class="programlisting"> "gtk-modules" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1085
955
  <p>List of currently active GTK modules.</p>
1086
956
  <p>Default value: NULL</p>
1087
957
  </div>
1088
958
  <hr>
1089
- <div class="refsect2" title='The "gtk-print-backends" property'>
959
+ <div class="refsect2">
1090
960
  <a name="GtkSettings--gtk-print-backends"></a><h3>The <code class="literal">"gtk-print-backends"</code> property</h3>
1091
961
  <pre class="programlisting"> "gtk-print-backends" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1092
962
  <p>
@@ -1098,7 +968,7 @@ and may include "file", "cups", "lpr" or "papi".
1098
968
  <p class="since">Since 2.10</p>
1099
969
  </div>
1100
970
  <hr>
1101
- <div class="refsect2" title='The "gtk-print-preview-command" property'>
971
+ <div class="refsect2">
1102
972
  <a name="GtkSettings--gtk-print-preview-command"></a><h3>The <code class="literal">"gtk-print-preview-command"</code> property</h3>
1103
973
  <pre class="programlisting"> "gtk-print-preview-command" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1104
974
  <p>
@@ -1117,7 +987,7 @@ and the print settings file when it is done.
1117
987
  <p class="since">Since 2.10</p>
1118
988
  </div>
1119
989
  <hr>
1120
- <div class="refsect2" title='The "gtk-recent-files-limit" property'>
990
+ <div class="refsect2">
1121
991
  <a name="GtkSettings--gtk-recent-files-limit"></a><h3>The <code class="literal">"gtk-recent-files-limit"</code> property</h3>
1122
992
  <pre class="programlisting"> "gtk-recent-files-limit" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1123
993
  <p>
@@ -1130,7 +1000,7 @@ The number of recently used files that should be displayed by default by
1130
1000
  <p class="since">Since 2.12</p>
1131
1001
  </div>
1132
1002
  <hr>
1133
- <div class="refsect2" title='The "gtk-recent-files-max-age" property'>
1003
+ <div class="refsect2">
1134
1004
  <a name="GtkSettings--gtk-recent-files-max-age"></a><h3>The <code class="literal">"gtk-recent-files-max-age"</code> property</h3>
1135
1005
  <pre class="programlisting"> "gtk-recent-files-max-age" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1136
1006
  <p>
@@ -1144,7 +1014,7 @@ set to -1, no item will be removed.
1144
1014
  <p class="since">Since 2.14</p>
1145
1015
  </div>
1146
1016
  <hr>
1147
- <div class="refsect2" title='The "gtk-scrolled-window-placement" property'>
1017
+ <div class="refsect2">
1148
1018
  <a name="GtkSettings--gtk-scrolled-window-placement"></a><h3>The <code class="literal">"gtk-scrolled-window-placement"</code> property</h3>
1149
1019
  <pre class="programlisting"> "gtk-scrolled-window-placement" <a class="link" href="gtk-Standard-Enumerations.html#GtkCornerType" title="enum GtkCornerType"><span class="type">GtkCornerType</span></a> : Read / Write</pre>
1150
1020
  <p>
@@ -1155,21 +1025,21 @@ scrollbars, if not overridden by the scrolled window's own placement.
1155
1025
  <p class="since">Since 2.10</p>
1156
1026
  </div>
1157
1027
  <hr>
1158
- <div class="refsect2" title='The "gtk-show-input-method-menu" property'>
1028
+ <div class="refsect2">
1159
1029
  <a name="GtkSettings--gtk-show-input-method-menu"></a><h3>The <code class="literal">"gtk-show-input-method-menu"</code> property</h3>
1160
1030
  <pre class="programlisting"> "gtk-show-input-method-menu" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1161
1031
  <p>Whether the context menus of entries and text views should offer to change the input method.</p>
1162
1032
  <p>Default value: TRUE</p>
1163
1033
  </div>
1164
1034
  <hr>
1165
- <div class="refsect2" title='The "gtk-show-unicode-menu" property'>
1035
+ <div class="refsect2">
1166
1036
  <a name="GtkSettings--gtk-show-unicode-menu"></a><h3>The <code class="literal">"gtk-show-unicode-menu"</code> property</h3>
1167
1037
  <pre class="programlisting"> "gtk-show-unicode-menu" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1168
1038
  <p>Whether the context menus of entries and text views should offer to insert control characters.</p>
1169
1039
  <p>Default value: TRUE</p>
1170
1040
  </div>
1171
1041
  <hr>
1172
- <div class="refsect2" title='The "gtk-sound-theme-name" property'>
1042
+ <div class="refsect2">
1173
1043
  <a name="GtkSettings--gtk-sound-theme-name"></a><h3>The <code class="literal">"gtk-sound-theme-name"</code> property</h3>
1174
1044
  <pre class="programlisting"> "gtk-sound-theme-name" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1175
1045
  <p>
@@ -1187,21 +1057,21 @@ module like the one that comes with libcanberra.
1187
1057
  <p class="since">Since 2.14</p>
1188
1058
  </div>
1189
1059
  <hr>
1190
- <div class="refsect2" title='The "gtk-split-cursor" property'>
1060
+ <div class="refsect2">
1191
1061
  <a name="GtkSettings--gtk-split-cursor"></a><h3>The <code class="literal">"gtk-split-cursor"</code> property</h3>
1192
1062
  <pre class="programlisting"> "gtk-split-cursor" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1193
1063
  <p>Whether two cursors should be displayed for mixed left-to-right and right-to-left text.</p>
1194
1064
  <p>Default value: TRUE</p>
1195
1065
  </div>
1196
1066
  <hr>
1197
- <div class="refsect2" title='The "gtk-theme-name" property'>
1067
+ <div class="refsect2">
1198
1068
  <a name="GtkSettings--gtk-theme-name"></a><h3>The <code class="literal">"gtk-theme-name"</code> property</h3>
1199
1069
  <pre class="programlisting"> "gtk-theme-name" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1200
1070
  <p>Name of theme RC file to load.</p>
1201
1071
  <p>Default value: "Raleigh"</p>
1202
1072
  </div>
1203
1073
  <hr>
1204
- <div class="refsect2" title='The "gtk-timeout-expand" property'>
1074
+ <div class="refsect2">
1205
1075
  <a name="GtkSettings--gtk-timeout-expand"></a><h3>The <code class="literal">"gtk-timeout-expand"</code> property</h3>
1206
1076
  <pre class="programlisting"> "gtk-timeout-expand" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1207
1077
  <p>Expand value for timeouts, when a widget is expanding a new region.</p>
@@ -1209,7 +1079,7 @@ module like the one that comes with libcanberra.
1209
1079
  <p>Default value: 500</p>
1210
1080
  </div>
1211
1081
  <hr>
1212
- <div class="refsect2" title='The "gtk-timeout-initial" property'>
1082
+ <div class="refsect2">
1213
1083
  <a name="GtkSettings--gtk-timeout-initial"></a><h3>The <code class="literal">"gtk-timeout-initial"</code> property</h3>
1214
1084
  <pre class="programlisting"> "gtk-timeout-initial" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1215
1085
  <p>Starting value for timeouts, when button is pressed.</p>
@@ -1217,7 +1087,7 @@ module like the one that comes with libcanberra.
1217
1087
  <p>Default value: 200</p>
1218
1088
  </div>
1219
1089
  <hr>
1220
- <div class="refsect2" title='The "gtk-timeout-repeat" property'>
1090
+ <div class="refsect2">
1221
1091
  <a name="GtkSettings--gtk-timeout-repeat"></a><h3>The <code class="literal">"gtk-timeout-repeat"</code> property</h3>
1222
1092
  <pre class="programlisting"> "gtk-timeout-repeat" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1223
1093
  <p>Repeat value for timeouts, when button is pressed.</p>
@@ -1225,21 +1095,21 @@ module like the one that comes with libcanberra.
1225
1095
  <p>Default value: 20</p>
1226
1096
  </div>
1227
1097
  <hr>
1228
- <div class="refsect2" title='The "gtk-toolbar-icon-size" property'>
1098
+ <div class="refsect2">
1229
1099
  <a name="GtkSettings--gtk-toolbar-icon-size"></a><h3>The <code class="literal">"gtk-toolbar-icon-size"</code> property</h3>
1230
1100
  <pre class="programlisting"> "gtk-toolbar-icon-size" <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> : Read / Write</pre>
1231
1101
  <p>The size of icons in default toolbars.</p>
1232
1102
  <p>Default value: GTK_ICON_SIZE_LARGE_TOOLBAR</p>
1233
1103
  </div>
1234
1104
  <hr>
1235
- <div class="refsect2" title='The "gtk-toolbar-style" property'>
1105
+ <div class="refsect2">
1236
1106
  <a name="GtkSettings--gtk-toolbar-style"></a><h3>The <code class="literal">"gtk-toolbar-style"</code> property</h3>
1237
1107
  <pre class="programlisting"> "gtk-toolbar-style" <a class="link" href="gtk-Standard-Enumerations.html#GtkToolbarStyle" title="enum GtkToolbarStyle"><span class="type">GtkToolbarStyle</span></a> : Read / Write</pre>
1238
1108
  <p>Whether default toolbars have text only, text and icons, icons only, etc.</p>
1239
1109
  <p>Default value: GTK_TOOLBAR_BOTH</p>
1240
1110
  </div>
1241
1111
  <hr>
1242
- <div class="refsect2" title='The "gtk-tooltip-browse-mode-timeout" property'>
1112
+ <div class="refsect2">
1243
1113
  <a name="GtkSettings--gtk-tooltip-browse-mode-timeout"></a><h3>The <code class="literal">"gtk-tooltip-browse-mode-timeout"</code> property</h3>
1244
1114
  <pre class="programlisting"> "gtk-tooltip-browse-mode-timeout" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1245
1115
  <p>
@@ -1255,7 +1125,7 @@ about browse mode.
1255
1125
  <p class="since">Since 2.12</p>
1256
1126
  </div>
1257
1127
  <hr>
1258
- <div class="refsect2" title='The "gtk-tooltip-browse-timeout" property'>
1128
+ <div class="refsect2">
1259
1129
  <a name="GtkSettings--gtk-tooltip-browse-timeout"></a><h3>The <code class="literal">"gtk-tooltip-browse-timeout"</code> property</h3>
1260
1130
  <pre class="programlisting"> "gtk-tooltip-browse-timeout" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1261
1131
  <p>
@@ -1275,7 +1145,7 @@ for the new object.
1275
1145
  <p class="since">Since 2.12</p>
1276
1146
  </div>
1277
1147
  <hr>
1278
- <div class="refsect2" title='The "gtk-tooltip-timeout" property'>
1148
+ <div class="refsect2">
1279
1149
  <a name="GtkSettings--gtk-tooltip-timeout"></a><h3>The <code class="literal">"gtk-tooltip-timeout"</code> property</h3>
1280
1150
  <pre class="programlisting"> "gtk-tooltip-timeout" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1281
1151
  <p>
@@ -1287,7 +1157,7 @@ cursor is hovering on top of a widget.
1287
1157
  <p class="since">Since 2.12</p>
1288
1158
  </div>
1289
1159
  <hr>
1290
- <div class="refsect2" title='The "gtk-touchscreen-mode" property'>
1160
+ <div class="refsect2">
1291
1161
  <a name="GtkSettings--gtk-touchscreen-mode"></a><h3>The <code class="literal">"gtk-touchscreen-mode"</code> property</h3>
1292
1162
  <pre class="programlisting"> "gtk-touchscreen-mode" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1293
1163
  <p>
@@ -1299,7 +1169,7 @@ functionality.
1299
1169
  <p class="since">Since 2.10</p>
1300
1170
  </div>
1301
1171
  <hr>
1302
- <div class="refsect2" title='The "gtk-xft-antialias" property'>
1172
+ <div class="refsect2">
1303
1173
  <a name="GtkSettings--gtk-xft-antialias"></a><h3>The <code class="literal">"gtk-xft-antialias"</code> property</h3>
1304
1174
  <pre class="programlisting"> "gtk-xft-antialias" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1305
1175
  <p>Whether to antialias Xft fonts; 0=no, 1=yes, -1=default.</p>
@@ -1307,7 +1177,7 @@ functionality.
1307
1177
  <p>Default value: -1</p>
1308
1178
  </div>
1309
1179
  <hr>
1310
- <div class="refsect2" title='The "gtk-xft-dpi" property'>
1180
+ <div class="refsect2">
1311
1181
  <a name="GtkSettings--gtk-xft-dpi"></a><h3>The <code class="literal">"gtk-xft-dpi"</code> property</h3>
1312
1182
  <pre class="programlisting"> "gtk-xft-dpi" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1313
1183
  <p>Resolution for Xft, in 1024 * dots/inch. -1 to use default value.</p>
@@ -1315,7 +1185,7 @@ functionality.
1315
1185
  <p>Default value: -1</p>
1316
1186
  </div>
1317
1187
  <hr>
1318
- <div class="refsect2" title='The "gtk-xft-hinting" property'>
1188
+ <div class="refsect2">
1319
1189
  <a name="GtkSettings--gtk-xft-hinting"></a><h3>The <code class="literal">"gtk-xft-hinting"</code> property</h3>
1320
1190
  <pre class="programlisting"> "gtk-xft-hinting" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1321
1191
  <p>Whether to hint Xft fonts; 0=no, 1=yes, -1=default.</p>
@@ -1323,14 +1193,14 @@ functionality.
1323
1193
  <p>Default value: -1</p>
1324
1194
  </div>
1325
1195
  <hr>
1326
- <div class="refsect2" title='The "gtk-xft-hintstyle" property'>
1196
+ <div class="refsect2">
1327
1197
  <a name="GtkSettings--gtk-xft-hintstyle"></a><h3>The <code class="literal">"gtk-xft-hintstyle"</code> property</h3>
1328
1198
  <pre class="programlisting"> "gtk-xft-hintstyle" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1329
1199
  <p>What degree of hinting to use; hintnone, hintslight, hintmedium, or hintfull.</p>
1330
1200
  <p>Default value: NULL</p>
1331
1201
  </div>
1332
1202
  <hr>
1333
- <div class="refsect2" title='The "gtk-xft-rgba" property'>
1203
+ <div class="refsect2">
1334
1204
  <a name="GtkSettings--gtk-xft-rgba"></a><h3>The <code class="literal">"gtk-xft-rgba"</code> property</h3>
1335
1205
  <pre class="programlisting"> "gtk-xft-rgba" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1336
1206
  <p>Type of subpixel antialiasing; none, rgb, bgr, vrgb, vbgr.</p>
@@ -1340,6 +1210,6 @@ functionality.
1340
1210
  </div>
1341
1211
  <div class="footer">
1342
1212
  <hr>
1343
- Generated by GTK-Doc V1.15</div>
1213
+ Generated by GTK-Doc V1.17</div>
1344
1214
  </body>
1345
1215
  </html>