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>Index of all symbols</title>
6
6
  <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
7
- <link rel="home" href="index.html" title="GDK Reference Manual">
8
- <link rel="up" href="index.html" title="GDK Reference Manual">
7
+ <link rel="home" href="index.html" title="GDK 2 Reference Manual">
8
+ <link rel="up" href="index.html" title="GDK 2 Reference Manual">
9
9
  <link rel="prev" href="gdk-Testing.html" title="Testing">
10
10
  <link rel="next" href="api-index-deprecated.html" title="Index of deprecated symbols">
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="gdk-Testing.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
18
  <td> </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">GDK Reference Manual</th>
20
+ <th width="100%" align="center">GDK 2 Reference Manual</th>
21
21
  <td><a accesskey="n" href="api-index-deprecated.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">
@@ -68,7 +68,7 @@
68
68
  <a class="shortcut" href="#idxX">X</a>
69
69
  </td></tr>
70
70
  </table>
71
- <div class="index" title="Index of all symbols">
71
+ <div class="index">
72
72
  <div class="titlepage"><div><div><h2 class="title">
73
73
  <a name="api-index-full"></a>Index of all symbols</h2></div></div></div>
74
74
  <a name="idx"></a><a name="idxA"></a><h3 class="title">A</h3>
@@ -187,6 +187,10 @@
187
187
  </dt>
188
188
  <dd></dd>
189
189
  <dt>
190
+ <a class="link" href="gdk-Cairo-Interaction.html#gdk-cairo-set-source-window" title="gdk_cairo_set_source_window ()">gdk_cairo_set_source_window</a>, function in <a class="link" href="gdk-Cairo-Interaction.html" title="Cairo Interaction">Cairo Interaction</a>
191
+ </dt>
192
+ <dd></dd>
193
+ <dt>
190
194
  <a class="link" href="gdk-Graphics-Contexts.html#GdkCapStyle" title="enum GdkCapStyle">GdkCapStyle</a>, enum in <a class="link" href="gdk-Graphics-Contexts.html" title="Graphics Contexts">Graphics Contexts</a>
191
195
  </dt>
192
196
  <dd></dd>
@@ -263,11 +267,11 @@
263
267
  </dt>
264
268
  <dd></dd>
265
269
  <dt>
266
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-COLORMAP-XCOLORMAP:CAPS" title="GDK_COLORMAP_XCOLORMAP()">GDK_COLORMAP_XCOLORMAP</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
270
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-COLORMAP-XCOLORMAP:CAPS">GDK_COLORMAP_XCOLORMAP</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
267
271
  </dt>
268
272
  <dd></dd>
269
273
  <dt>
270
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-COLORMAP-XDISPLAY:CAPS" title="GDK_COLORMAP_XDISPLAY()">GDK_COLORMAP_XDISPLAY</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
274
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-COLORMAP-XDISPLAY:CAPS">GDK_COLORMAP_XDISPLAY</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
271
275
  </dt>
272
276
  <dd></dd>
273
277
  <dt>
@@ -383,11 +387,11 @@
383
387
  </dt>
384
388
  <dd></dd>
385
389
  <dt>
386
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-CURSOR-XCURSOR:CAPS" title="GDK_CURSOR_XCURSOR()">GDK_CURSOR_XCURSOR</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
390
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-CURSOR-XCURSOR:CAPS">GDK_CURSOR_XCURSOR</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
387
391
  </dt>
388
392
  <dd></dd>
389
393
  <dt>
390
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-CURSOR-XDISPLAY:CAPS" title="GDK_CURSOR_XDISPLAY()">GDK_CURSOR_XDISPLAY</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
394
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-CURSOR-XDISPLAY:CAPS">GDK_CURSOR_XDISPLAY</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
391
395
  </dt>
392
396
  <dd></dd>
393
397
  <a name="idxD"></a><h3 class="title">D</h3>
@@ -396,15 +400,15 @@
396
400
  </dt>
397
401
  <dd></dd>
398
402
  <dt>
399
- <a class="link" href="gdk-Input-Devices.html#GdkDevice" title="GdkDevice">GdkDevice</a>, struct in <a class="link" href="gdk-Input-Devices.html" title="Input Devices">Input Devices</a>
403
+ <a class="link" href="gdk-Input-Devices.html#GdkDevice" title="struct GdkDevice">GdkDevice</a>, struct in <a class="link" href="gdk-Input-Devices.html" title="Input Devices">Input Devices</a>
400
404
  </dt>
401
405
  <dd></dd>
402
406
  <dt>
403
- <a class="link" href="gdk-Input-Devices.html#GdkDeviceAxis" title="GdkDeviceAxis">GdkDeviceAxis</a>, struct in <a class="link" href="gdk-Input-Devices.html" title="Input Devices">Input Devices</a>
407
+ <a class="link" href="gdk-Input-Devices.html#GdkDeviceAxis" title="struct GdkDeviceAxis">GdkDeviceAxis</a>, struct in <a class="link" href="gdk-Input-Devices.html" title="Input Devices">Input Devices</a>
404
408
  </dt>
405
409
  <dd></dd>
406
410
  <dt>
407
- <a class="link" href="gdk-Input-Devices.html#GdkDeviceKey" title="GdkDeviceKey">GdkDeviceKey</a>, struct in <a class="link" href="gdk-Input-Devices.html" title="Input Devices">Input Devices</a>
411
+ <a class="link" href="gdk-Input-Devices.html#GdkDeviceKey" title="struct GdkDeviceKey">GdkDeviceKey</a>, struct in <a class="link" href="gdk-Input-Devices.html" title="Input Devices">Input Devices</a>
408
412
  </dt>
409
413
  <dd></dd>
410
414
  <dt>
@@ -476,7 +480,7 @@
476
480
  </dt>
477
481
  <dd></dd>
478
482
  <dt>
479
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-DISPLAY:CAPS" title="GDK_DISPLAY">GDK_DISPLAY</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
483
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-DISPLAY:CAPS">GDK_DISPLAY</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
480
484
  </dt>
481
485
  <dd></dd>
482
486
  <dt>
@@ -496,7 +500,7 @@
496
500
  </dt>
497
501
  <dd></dd>
498
502
  <dt>
499
- <a class="link" href="GdkDisplay.html#GdkDisplayPointerHooks" title="GdkDisplayPointerHooks">GdkDisplayPointerHooks</a>, struct in <a class="link" href="GdkDisplay.html" title="GdkDisplay">GdkDisplay</a>
503
+ <a class="link" href="GdkDisplay.html#GdkDisplayPointerHooks" title="struct GdkDisplayPointerHooks">GdkDisplayPointerHooks</a>, struct in <a class="link" href="GdkDisplay.html" title="GdkDisplay">GdkDisplay</a>
500
504
  </dt>
501
505
  <dd></dd>
502
506
  <dt>
@@ -668,7 +672,7 @@
668
672
  </dt>
669
673
  <dd></dd>
670
674
  <dt>
671
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-DISPLAY-XDISPLAY:CAPS" title="GDK_DISPLAY_XDISPLAY()">GDK_DISPLAY_XDISPLAY</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
675
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-DISPLAY-XDISPLAY:CAPS">GDK_DISPLAY_XDISPLAY</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
672
676
  </dt>
673
677
  <dd></dd>
674
678
  <dt>
@@ -676,7 +680,7 @@
676
680
  </dt>
677
681
  <dd></dd>
678
682
  <dt>
679
- <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="GdkDragContext">GdkDragContext</a>, struct in <a class="link" href="gdk-Drag-and-Drop.html" title="Drag and Drop">Drag and Drop</a>
683
+ <a class="link" href="gdk-Drag-and-Drop.html#GdkDragContext" title="struct GdkDragContext">GdkDragContext</a>, struct in <a class="link" href="gdk-Drag-and-Drop.html" title="Drag and Drop">Drag and Drop</a>
680
684
  </dt>
681
685
  <dd></dd>
682
686
  <dt>
@@ -824,11 +828,11 @@
824
828
  </dt>
825
829
  <dd></dd>
826
830
  <dt>
827
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-DRAWABLE-XDISPLAY:CAPS" title="GDK_DRAWABLE_XDISPLAY()">GDK_DRAWABLE_XDISPLAY</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
831
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-DRAWABLE-XDISPLAY:CAPS">GDK_DRAWABLE_XDISPLAY</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
828
832
  </dt>
829
833
  <dd></dd>
830
834
  <dt>
831
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-DRAWABLE-XID:CAPS" title="GDK_DRAWABLE_XID()">GDK_DRAWABLE_XID</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
835
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-DRAWABLE-XID:CAPS">GDK_DRAWABLE_XID</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
832
836
  </dt>
833
837
  <dd></dd>
834
838
  <dt>
@@ -965,35 +969,35 @@
965
969
  </dt>
966
970
  <dd></dd>
967
971
  <dt>
968
- <a class="link" href="gdk-Event-Structures.html#GdkEventAny" title="GdkEventAny">GdkEventAny</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
972
+ <a class="link" href="gdk-Event-Structures.html#GdkEventAny" title="struct GdkEventAny">GdkEventAny</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
969
973
  </dt>
970
974
  <dd></dd>
971
975
  <dt>
972
- <a class="link" href="gdk-Event-Structures.html#GdkEventButton" title="GdkEventButton">GdkEventButton</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
976
+ <a class="link" href="gdk-Event-Structures.html#GdkEventButton" title="struct GdkEventButton">GdkEventButton</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
973
977
  </dt>
974
978
  <dd></dd>
975
979
  <dt>
976
- <a class="link" href="gdk-Event-Structures.html#GdkEventClient" title="GdkEventClient">GdkEventClient</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
980
+ <a class="link" href="gdk-Event-Structures.html#GdkEventClient" title="struct GdkEventClient">GdkEventClient</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
977
981
  </dt>
978
982
  <dd></dd>
979
983
  <dt>
980
- <a class="link" href="gdk-Event-Structures.html#GdkEventConfigure" title="GdkEventConfigure">GdkEventConfigure</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
984
+ <a class="link" href="gdk-Event-Structures.html#GdkEventConfigure" title="struct GdkEventConfigure">GdkEventConfigure</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
981
985
  </dt>
982
986
  <dd></dd>
983
987
  <dt>
984
- <a class="link" href="gdk-Event-Structures.html#GdkEventCrossing" title="GdkEventCrossing">GdkEventCrossing</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
988
+ <a class="link" href="gdk-Event-Structures.html#GdkEventCrossing" title="struct GdkEventCrossing">GdkEventCrossing</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
985
989
  </dt>
986
990
  <dd></dd>
987
991
  <dt>
988
- <a class="link" href="gdk-Event-Structures.html#GdkEventDND" title="GdkEventDND">GdkEventDND</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
992
+ <a class="link" href="gdk-Event-Structures.html#GdkEventDND" title="struct GdkEventDND">GdkEventDND</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
989
993
  </dt>
990
994
  <dd></dd>
991
995
  <dt>
992
- <a class="link" href="gdk-Event-Structures.html#GdkEventExpose" title="GdkEventExpose">GdkEventExpose</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
996
+ <a class="link" href="gdk-Event-Structures.html#GdkEventExpose" title="struct GdkEventExpose">GdkEventExpose</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
993
997
  </dt>
994
998
  <dd></dd>
995
999
  <dt>
996
- <a class="link" href="gdk-Event-Structures.html#GdkEventFocus" title="GdkEventFocus">GdkEventFocus</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1000
+ <a class="link" href="gdk-Event-Structures.html#GdkEventFocus" title="struct GdkEventFocus">GdkEventFocus</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
997
1001
  </dt>
998
1002
  <dd></dd>
999
1003
  <dt>
@@ -1001,11 +1005,11 @@
1001
1005
  </dt>
1002
1006
  <dd></dd>
1003
1007
  <dt>
1004
- <a class="link" href="gdk-Event-Structures.html#GdkEventGrabBroken" title="GdkEventGrabBroken">GdkEventGrabBroken</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1008
+ <a class="link" href="gdk-Event-Structures.html#GdkEventGrabBroken" title="struct GdkEventGrabBroken">GdkEventGrabBroken</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1005
1009
  </dt>
1006
1010
  <dd></dd>
1007
1011
  <dt>
1008
- <a class="link" href="gdk-Event-Structures.html#GdkEventKey" title="GdkEventKey">GdkEventKey</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1012
+ <a class="link" href="gdk-Event-Structures.html#GdkEventKey" title="struct GdkEventKey">GdkEventKey</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1009
1013
  </dt>
1010
1014
  <dd></dd>
1011
1015
  <dt>
@@ -1013,35 +1017,35 @@
1013
1017
  </dt>
1014
1018
  <dd></dd>
1015
1019
  <dt>
1016
- <a class="link" href="gdk-Event-Structures.html#GdkEventMotion" title="GdkEventMotion">GdkEventMotion</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1020
+ <a class="link" href="gdk-Event-Structures.html#GdkEventMotion" title="struct GdkEventMotion">GdkEventMotion</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1017
1021
  </dt>
1018
1022
  <dd></dd>
1019
1023
  <dt>
1020
- <a class="link" href="gdk-Event-Structures.html#GdkEventNoExpose" title="GdkEventNoExpose">GdkEventNoExpose</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1024
+ <a class="link" href="gdk-Event-Structures.html#GdkEventNoExpose" title="struct GdkEventNoExpose">GdkEventNoExpose</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1021
1025
  </dt>
1022
1026
  <dd></dd>
1023
1027
  <dt>
1024
- <a class="link" href="gdk-Event-Structures.html#GdkEventOwnerChange" title="GdkEventOwnerChange">GdkEventOwnerChange</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1028
+ <a class="link" href="gdk-Event-Structures.html#GdkEventOwnerChange" title="struct GdkEventOwnerChange">GdkEventOwnerChange</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1025
1029
  </dt>
1026
1030
  <dd></dd>
1027
1031
  <dt>
1028
- <a class="link" href="gdk-Event-Structures.html#GdkEventProperty" title="GdkEventProperty">GdkEventProperty</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1032
+ <a class="link" href="gdk-Event-Structures.html#GdkEventProperty" title="struct GdkEventProperty">GdkEventProperty</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1029
1033
  </dt>
1030
1034
  <dd></dd>
1031
1035
  <dt>
1032
- <a class="link" href="gdk-Event-Structures.html#GdkEventProximity" title="GdkEventProximity">GdkEventProximity</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1036
+ <a class="link" href="gdk-Event-Structures.html#GdkEventProximity" title="struct GdkEventProximity">GdkEventProximity</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1033
1037
  </dt>
1034
1038
  <dd></dd>
1035
1039
  <dt>
1036
- <a class="link" href="gdk-Event-Structures.html#GdkEventScroll" title="GdkEventScroll">GdkEventScroll</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1040
+ <a class="link" href="gdk-Event-Structures.html#GdkEventScroll" title="struct GdkEventScroll">GdkEventScroll</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1037
1041
  </dt>
1038
1042
  <dd></dd>
1039
1043
  <dt>
1040
- <a class="link" href="gdk-Event-Structures.html#GdkEventSelection" title="GdkEventSelection">GdkEventSelection</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1044
+ <a class="link" href="gdk-Event-Structures.html#GdkEventSelection" title="struct GdkEventSelection">GdkEventSelection</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1041
1045
  </dt>
1042
1046
  <dd></dd>
1043
1047
  <dt>
1044
- <a class="link" href="gdk-Event-Structures.html#GdkEventSetting" title="GdkEventSetting">GdkEventSetting</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1048
+ <a class="link" href="gdk-Event-Structures.html#GdkEventSetting" title="struct GdkEventSetting">GdkEventSetting</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1045
1049
  </dt>
1046
1050
  <dd></dd>
1047
1051
  <dt>
@@ -1053,11 +1057,11 @@
1053
1057
  </dt>
1054
1058
  <dd></dd>
1055
1059
  <dt>
1056
- <a class="link" href="gdk-Event-Structures.html#GdkEventVisibility" title="GdkEventVisibility">GdkEventVisibility</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1060
+ <a class="link" href="gdk-Event-Structures.html#GdkEventVisibility" title="struct GdkEventVisibility">GdkEventVisibility</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1057
1061
  </dt>
1058
1062
  <dd></dd>
1059
1063
  <dt>
1060
- <a class="link" href="gdk-Event-Structures.html#GdkEventWindowState" title="GdkEventWindowState">GdkEventWindowState</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1064
+ <a class="link" href="gdk-Event-Structures.html#GdkEventWindowState" title="struct GdkEventWindowState">GdkEventWindowState</a>, struct in <a class="link" href="gdk-Event-Structures.html" title="Event Structures">Event Structures</a>
1061
1065
  </dt>
1062
1066
  <dd></dd>
1063
1067
  <dt>
@@ -1210,11 +1214,11 @@
1210
1214
  </dt>
1211
1215
  <dd></dd>
1212
1216
  <dt>
1213
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-font-lookup" title="gdk_font_lookup()">gdk_font_lookup</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
1217
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-font-lookup">gdk_font_lookup</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
1214
1218
  </dt>
1215
1219
  <dd></dd>
1216
1220
  <dt>
1217
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-font-lookup-for-display" title="gdk_font_lookup_for_display()">gdk_font_lookup_for_display</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
1221
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-font-lookup-for-display">gdk_font_lookup_for_display</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
1218
1222
  </dt>
1219
1223
  <dd></dd>
1220
1224
  <dt>
@@ -1226,11 +1230,11 @@
1226
1230
  </dt>
1227
1231
  <dd></dd>
1228
1232
  <dt>
1229
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-FONT-XDISPLAY:CAPS" title="GDK_FONT_XDISPLAY()">GDK_FONT_XDISPLAY</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
1233
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-FONT-XDISPLAY:CAPS">GDK_FONT_XDISPLAY</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
1230
1234
  </dt>
1231
1235
  <dd></dd>
1232
1236
  <dt>
1233
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-FONT-XFONT:CAPS" title="GDK_FONT_XFONT()">GDK_FONT_XFONT</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
1237
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-FONT-XFONT:CAPS">GDK_FONT_XFONT</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
1234
1238
  </dt>
1235
1239
  <dd></dd>
1236
1240
  <dt>
@@ -1251,7 +1255,7 @@
1251
1255
  </dt>
1252
1256
  <dd></dd>
1253
1257
  <dt>
1254
- <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues">GdkGCValues</a>, struct in <a class="link" href="gdk-Graphics-Contexts.html" title="Graphics Contexts">Graphics Contexts</a>
1258
+ <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues">GdkGCValues</a>, struct in <a class="link" href="gdk-Graphics-Contexts.html" title="Graphics Contexts">Graphics Contexts</a>
1255
1259
  </dt>
1256
1260
  <dd></dd>
1257
1261
  <dt>
@@ -1279,7 +1283,7 @@
1279
1283
  </dt>
1280
1284
  <dd></dd>
1281
1285
  <dt>
1282
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-GC-GET-XGC:CAPS" title="GDK_GC_GET_XGC()">GDK_GC_GET_XGC</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
1286
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-GC-GET-XGC:CAPS">GDK_GC_GET_XGC</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
1283
1287
  </dt>
1284
1288
  <dd></dd>
1285
1289
  <dt>
@@ -1383,15 +1387,15 @@
1383
1387
  </dt>
1384
1388
  <dd></dd>
1385
1389
  <dt>
1386
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-GC-XDISPLAY:CAPS" title="GDK_GC_XDISPLAY()">GDK_GC_XDISPLAY</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
1390
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-GC-XDISPLAY:CAPS">GDK_GC_XDISPLAY</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
1387
1391
  </dt>
1388
1392
  <dd></dd>
1389
1393
  <dt>
1390
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-GC-XGC:CAPS" title="GDK_GC_XGC()">GDK_GC_XGC</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
1394
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-GC-XGC:CAPS">GDK_GC_XGC</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
1391
1395
  </dt>
1392
1396
  <dd></dd>
1393
1397
  <dt>
1394
- <a class="link" href="gdk-Windows.html#GdkGeometry" title="GdkGeometry">GdkGeometry</a>, struct in <a class="link" href="gdk-Windows.html" title="Windows">Windows</a>
1398
+ <a class="link" href="gdk-Windows.html#GdkGeometry" title="struct GdkGeometry">GdkGeometry</a>, struct in <a class="link" href="gdk-Windows.html" title="Windows">Windows</a>
1395
1399
  </dt>
1396
1400
  <dd></dd>
1397
1401
  <dt>
@@ -1516,11 +1520,11 @@
1516
1520
  </dt>
1517
1521
  <dd></dd>
1518
1522
  <dt>
1519
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-IMAGE-XDISPLAY:CAPS" title="GDK_IMAGE_XDISPLAY()">GDK_IMAGE_XDISPLAY</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
1523
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-IMAGE-XDISPLAY:CAPS">GDK_IMAGE_XDISPLAY</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
1520
1524
  </dt>
1521
1525
  <dd></dd>
1522
1526
  <dt>
1523
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-IMAGE-XIMAGE:CAPS" title="GDK_IMAGE_XIMAGE()">GDK_IMAGE_XIMAGE</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
1527
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-IMAGE-XIMAGE:CAPS">GDK_IMAGE_XIMAGE</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
1524
1528
  </dt>
1525
1529
  <dd></dd>
1526
1530
  <dt>
@@ -1578,7 +1582,7 @@
1578
1582
  </dt>
1579
1583
  <dd></dd>
1580
1584
  <dt>
1581
- <a class="link" href="gdk-Keyboard-Handling.html#GdkKeymap-struct" title="GdkKeymap">GdkKeymap</a>, struct in <a class="link" href="gdk-Keyboard-Handling.html" title="Key Values">Keyboard Handling</a>
1585
+ <a class="link" href="gdk-Keyboard-Handling.html#GdkKeymap-struct" title="struct GdkKeymap">GdkKeymap</a>, struct in <a class="link" href="gdk-Keyboard-Handling.html" title="Key Values">Keyboard Handling</a>
1582
1586
  </dt>
1583
1587
  <dd></dd>
1584
1588
  <dt>
@@ -1594,7 +1598,7 @@
1594
1598
  </dt>
1595
1599
  <dd></dd>
1596
1600
  <dt>
1597
- <a class="link" href="gdk-Keyboard-Handling.html#GdkKeymapKey" title="GdkKeymapKey">GdkKeymapKey</a>, struct in <a class="link" href="gdk-Keyboard-Handling.html" title="Key Values">Keyboard Handling</a>
1601
+ <a class="link" href="gdk-Keyboard-Handling.html#GdkKeymapKey" title="struct GdkKeymapKey">GdkKeymapKey</a>, struct in <a class="link" href="gdk-Keyboard-Handling.html" title="Key Values">Keyboard Handling</a>
1598
1602
  </dt>
1599
1603
  <dd></dd>
1600
1604
  <dt>
@@ -1697,7 +1701,7 @@
1697
1701
  </dt>
1698
1702
  <dd></dd>
1699
1703
  <dt>
1700
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-net-wm-supports" title="gdk_net_wm_supports ()">gdk_net_wm_supports</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
1704
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-net-wm-supports">gdk_net_wm_supports</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
1701
1705
  </dt>
1702
1706
  <dd></dd>
1703
1707
  <dt>
@@ -1739,19 +1743,19 @@
1739
1743
  <dd></dd>
1740
1744
  <a name="idxP"></a><h3 class="title">P</h3>
1741
1745
  <dt>
1742
- <a class="link" href="gdk-Pango-Interaction.html#GdkPangoAttrEmbossColor" title="GdkPangoAttrEmbossColor">GdkPangoAttrEmbossColor</a>, struct in <a class="link" href="gdk-Pango-Interaction.html" title="Pango Interaction">Pango Interaction</a>
1746
+ <a class="link" href="gdk-Pango-Interaction.html#GdkPangoAttrEmbossColor" title="struct GdkPangoAttrEmbossColor">GdkPangoAttrEmbossColor</a>, struct in <a class="link" href="gdk-Pango-Interaction.html" title="Pango Interaction">Pango Interaction</a>
1743
1747
  </dt>
1744
1748
  <dd></dd>
1745
1749
  <dt>
1746
- <a class="link" href="gdk-Pango-Interaction.html#GdkPangoAttrEmbossed" title="GdkPangoAttrEmbossed">GdkPangoAttrEmbossed</a>, struct in <a class="link" href="gdk-Pango-Interaction.html" title="Pango Interaction">Pango Interaction</a>
1750
+ <a class="link" href="gdk-Pango-Interaction.html#GdkPangoAttrEmbossed" title="struct GdkPangoAttrEmbossed">GdkPangoAttrEmbossed</a>, struct in <a class="link" href="gdk-Pango-Interaction.html" title="Pango Interaction">Pango Interaction</a>
1747
1751
  </dt>
1748
1752
  <dd></dd>
1749
1753
  <dt>
1750
- <a class="link" href="gdk-Pango-Interaction.html#GdkPangoAttrStipple" title="GdkPangoAttrStipple">GdkPangoAttrStipple</a>, struct in <a class="link" href="gdk-Pango-Interaction.html" title="Pango Interaction">Pango Interaction</a>
1754
+ <a class="link" href="gdk-Pango-Interaction.html#GdkPangoAttrStipple" title="struct GdkPangoAttrStipple">GdkPangoAttrStipple</a>, struct in <a class="link" href="gdk-Pango-Interaction.html" title="Pango Interaction">Pango Interaction</a>
1751
1755
  </dt>
1752
1756
  <dd></dd>
1753
1757
  <dt>
1754
- <a class="link" href="gdk-Pango-Interaction.html#GdkPangoRenderer-struct" title="GdkPangoRenderer">GdkPangoRenderer</a>, struct in <a class="link" href="gdk-Pango-Interaction.html" title="Pango Interaction">Pango Interaction</a>
1758
+ <a class="link" href="gdk-Pango-Interaction.html#GdkPangoRenderer-struct" title="struct GdkPangoRenderer">GdkPangoRenderer</a>, struct in <a class="link" href="gdk-Pango-Interaction.html" title="Pango Interaction">Pango Interaction</a>
1755
1759
  </dt>
1756
1760
  <dd></dd>
1757
1761
  <dt>
@@ -1759,7 +1763,7 @@
1759
1763
  </dt>
1760
1764
  <dd></dd>
1761
1765
  <dt>
1762
- <a class="link" href="gdk-Pango-Interaction.html#GdkPangoRendererClass" title="GdkPangoRendererClass">GdkPangoRendererClass</a>, struct in <a class="link" href="gdk-Pango-Interaction.html" title="Pango Interaction">Pango Interaction</a>
1766
+ <a class="link" href="gdk-Pango-Interaction.html#GdkPangoRendererClass" title="struct GdkPangoRendererClass">GdkPangoRendererClass</a>, struct in <a class="link" href="gdk-Pango-Interaction.html" title="Pango Interaction">Pango Interaction</a>
1763
1767
  </dt>
1764
1768
  <dd></dd>
1765
1769
  <dt>
@@ -1879,23 +1883,27 @@
1879
1883
  </dt>
1880
1884
  <dd></dd>
1881
1885
  <dt>
1882
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-pixmap-foreign-new" title="gdk_pixmap_foreign_new ()">gdk_pixmap_foreign_new</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
1886
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-pixmap-foreign-new">gdk_pixmap_foreign_new</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
1883
1887
  </dt>
1884
1888
  <dd></dd>
1885
1889
  <dt>
1886
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-pixmap-foreign-new-for-display" title="gdk_pixmap_foreign_new_for_display ()">gdk_pixmap_foreign_new_for_display</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
1890
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-pixmap-foreign-new-for-display">gdk_pixmap_foreign_new_for_display</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
1887
1891
  </dt>
1888
1892
  <dd></dd>
1889
1893
  <dt>
1890
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-pixmap-foreign-new-for-screen" title="gdk_pixmap_foreign_new_for_screen ()">gdk_pixmap_foreign_new_for_screen</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
1894
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-pixmap-foreign-new-for-screen">gdk_pixmap_foreign_new_for_screen</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
1891
1895
  </dt>
1892
1896
  <dd></dd>
1893
1897
  <dt>
1894
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-pixmap-lookup" title="gdk_pixmap_lookup ()">gdk_pixmap_lookup</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
1898
+ <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#gdk-pixmap-get-size" title="gdk_pixmap_get_size ()">gdk_pixmap_get_size</a>, function in <a class="link" href="gdk-Bitmaps-and-Pixmaps.html" title="Bitmaps and Pixmaps">Bitmaps and Pixmaps</a>
1895
1899
  </dt>
1896
1900
  <dd></dd>
1897
1901
  <dt>
1898
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-pixmap-lookup-for-display" title="gdk_pixmap_lookup_for_display ()">gdk_pixmap_lookup_for_display</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
1902
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-pixmap-lookup">gdk_pixmap_lookup</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
1903
+ </dt>
1904
+ <dd></dd>
1905
+ <dt>
1906
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-pixmap-lookup-for-display">gdk_pixmap_lookup_for_display</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
1899
1907
  </dt>
1900
1908
  <dd></dd>
1901
1909
  <dt>
@@ -1911,19 +1919,19 @@
1911
1919
  </dt>
1912
1920
  <dd></dd>
1913
1921
  <dt>
1914
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-PIXMAP-XDISPLAY:CAPS" title="GDK_PIXMAP_XDISPLAY()">GDK_PIXMAP_XDISPLAY</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
1922
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-PIXMAP-XDISPLAY:CAPS">GDK_PIXMAP_XDISPLAY</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
1915
1923
  </dt>
1916
1924
  <dd></dd>
1917
1925
  <dt>
1918
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-PIXMAP-XID:CAPS" title="GDK_PIXMAP_XID()">GDK_PIXMAP_XID</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
1926
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-PIXMAP-XID:CAPS">GDK_PIXMAP_XID</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
1919
1927
  </dt>
1920
1928
  <dd></dd>
1921
1929
  <dt>
1922
- <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkPoint" title="GdkPoint">GdkPoint</a>, struct in <a class="link" href="gdk-Points-Rectangles-and-Regions.html" title="Points, Rectangles and Regions">Points, Rectangles and Regions</a>
1930
+ <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkPoint" title="struct GdkPoint">GdkPoint</a>, struct in <a class="link" href="gdk-Points-Rectangles-and-Regions.html" title="Points, Rectangles and Regions">Points, Rectangles and Regions</a>
1923
1931
  </dt>
1924
1932
  <dd></dd>
1925
1933
  <dt>
1926
- <a class="link" href="gdk-Windows.html#GdkPointerHooks" title="GdkPointerHooks">GdkPointerHooks</a>, struct in <a class="link" href="gdk-Windows.html" title="Windows">Windows</a>
1934
+ <a class="link" href="gdk-Windows.html#GdkPointerHooks" title="struct GdkPointerHooks">GdkPointerHooks</a>, struct in <a class="link" href="gdk-Windows.html" title="Windows">Windows</a>
1927
1935
  </dt>
1928
1936
  <dd></dd>
1929
1937
  <dt>
@@ -1981,7 +1989,7 @@
1981
1989
  <dd></dd>
1982
1990
  <a name="idxR"></a><h3 class="title">R</h3>
1983
1991
  <dt>
1984
- <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRectangle" title="GdkRectangle">GdkRectangle</a>, struct in <a class="link" href="gdk-Points-Rectangles-and-Regions.html" title="Points, Rectangles and Regions">Points, Rectangles and Regions</a>
1992
+ <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRectangle" title="struct GdkRectangle">GdkRectangle</a>, struct in <a class="link" href="gdk-Points-Rectangles-and-Regions.html" title="Points, Rectangles and Regions">Points, Rectangles and Regions</a>
1985
1993
  </dt>
1986
1994
  <dd></dd>
1987
1995
  <dt>
@@ -2077,7 +2085,7 @@
2077
2085
  </dt>
2078
2086
  <dd></dd>
2079
2087
  <dt>
2080
- <a class="link" href="gdk-GdkRGB.html#GdkRgbCmap" title="GdkRgbCmap">GdkRgbCmap</a>, struct in <a class="link" href="gdk-GdkRGB.html" title="GdkRGB">GdkRGB</a>
2088
+ <a class="link" href="gdk-GdkRGB.html#GdkRgbCmap" title="struct GdkRgbCmap">GdkRgbCmap</a>, struct in <a class="link" href="gdk-GdkRGB.html" title="GdkRGB">GdkRGB</a>
2081
2089
  </dt>
2082
2090
  <dd></dd>
2083
2091
  <dt>
@@ -2145,11 +2153,11 @@
2145
2153
  </dt>
2146
2154
  <dd></dd>
2147
2155
  <dt>
2148
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-ROOT-PARENT:CAPS" title="GDK_ROOT_PARENT">GDK_ROOT_PARENT</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
2156
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-ROOT-PARENT:CAPS">GDK_ROOT_PARENT</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
2149
2157
  </dt>
2150
2158
  <dd></dd>
2151
2159
  <dt>
2152
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-ROOT-WINDOW:CAPS" title="GDK_ROOT_WINDOW">GDK_ROOT_WINDOW</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
2160
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-ROOT-WINDOW:CAPS">GDK_ROOT_WINDOW</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
2153
2161
  </dt>
2154
2162
  <dd></dd>
2155
2163
  <a name="idxS"></a><h3 class="title">S</h3>
@@ -2338,15 +2346,15 @@
2338
2346
  </dt>
2339
2347
  <dd></dd>
2340
2348
  <dt>
2341
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-SCREEN-XDISPLAY:CAPS" title="GDK_SCREEN_XDISPLAY()">GDK_SCREEN_XDISPLAY</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
2349
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-SCREEN-XDISPLAY:CAPS">GDK_SCREEN_XDISPLAY</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
2342
2350
  </dt>
2343
2351
  <dd></dd>
2344
2352
  <dt>
2345
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-SCREEN-XNUMBER:CAPS" title="GDK_SCREEN_XNUMBER()">GDK_SCREEN_XNUMBER</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
2353
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-SCREEN-XNUMBER:CAPS">GDK_SCREEN_XNUMBER</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
2346
2354
  </dt>
2347
2355
  <dd></dd>
2348
2356
  <dt>
2349
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-SCREEN-XSCREEN:CAPS" title="GDK_SCREEN_XSCREEN()">GDK_SCREEN_XSCREEN</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
2357
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-SCREEN-XSCREEN:CAPS">GDK_SCREEN_XSCREEN</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
2350
2358
  </dt>
2351
2359
  <dd></dd>
2352
2360
  <dt>
@@ -2354,7 +2362,7 @@
2354
2362
  </dt>
2355
2363
  <dd></dd>
2356
2364
  <dt>
2357
- <a class="link" href="gdk-Drawing-Primitives.html#GdkSegment" title="GdkSegment">GdkSegment</a>, struct in <a class="link" href="gdk-Drawing-Primitives.html" title="Drawing Primitives">Drawing Primitives</a>
2365
+ <a class="link" href="gdk-Drawing-Primitives.html#GdkSegment" title="struct GdkSegment">GdkSegment</a>, struct in <a class="link" href="gdk-Drawing-Primitives.html" title="Drawing Primitives">Drawing Primitives</a>
2358
2366
  </dt>
2359
2367
  <dd></dd>
2360
2368
  <dt>
@@ -2478,7 +2486,7 @@
2478
2486
  </dt>
2479
2487
  <dd></dd>
2480
2488
  <dt>
2481
- <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkSpan" title="GdkSpan">GdkSpan</a>, struct in <a class="link" href="gdk-Points-Rectangles-and-Regions.html" title="Points, Rectangles and Regions">Points, Rectangles and Regions</a>
2489
+ <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkSpan" title="struct GdkSpan">GdkSpan</a>, struct in <a class="link" href="gdk-Points-Rectangles-and-Regions.html" title="Points, Rectangles and Regions">Points, Rectangles and Regions</a>
2482
2490
  </dt>
2483
2491
  <dd></dd>
2484
2492
  <dt>
@@ -2655,11 +2663,11 @@
2655
2663
  </dt>
2656
2664
  <dd></dd>
2657
2665
  <dt>
2658
- <a class="link" href="gdk-Input-Devices.html#GdkTimeCoord" title="GdkTimeCoord">GdkTimeCoord</a>, struct in <a class="link" href="gdk-Input-Devices.html" title="Input Devices">Input Devices</a>
2666
+ <a class="link" href="gdk-Input-Devices.html#GdkTimeCoord" title="struct GdkTimeCoord">GdkTimeCoord</a>, struct in <a class="link" href="gdk-Input-Devices.html" title="Input Devices">Input Devices</a>
2659
2667
  </dt>
2660
2668
  <dd></dd>
2661
2669
  <dt>
2662
- <a class="link" href="gdk-Drawing-Primitives.html#GdkTrapezoid" title="GdkTrapezoid">GdkTrapezoid</a>, struct in <a class="link" href="gdk-Drawing-Primitives.html" title="Drawing Primitives">Drawing Primitives</a>
2670
+ <a class="link" href="gdk-Drawing-Primitives.html#GdkTrapezoid" title="struct GdkTrapezoid">GdkTrapezoid</a>, struct in <a class="link" href="gdk-Drawing-Primitives.html" title="Drawing Primitives">Drawing Primitives</a>
2663
2671
  </dt>
2664
2672
  <dd></dd>
2665
2673
  <a name="idxU"></a><h3 class="title">U</h3>
@@ -2765,7 +2773,7 @@
2765
2773
  </dt>
2766
2774
  <dd></dd>
2767
2775
  <dt>
2768
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-VISUAL-XVISUAL:CAPS" title="GDK_VISUAL_XVISUAL()">GDK_VISUAL_XVISUAL</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
2776
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-VISUAL-XVISUAL:CAPS">GDK_VISUAL_XVISUAL</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
2769
2777
  </dt>
2770
2778
  <dd></dd>
2771
2779
  <a name="idxW"></a><h3 class="title">W</h3>
@@ -2798,7 +2806,7 @@
2798
2806
  </dt>
2799
2807
  <dd></dd>
2800
2808
  <dt>
2801
- <a class="link" href="gdk-Windows.html#GdkWindowAttr" title="GdkWindowAttr">GdkWindowAttr</a>, struct in <a class="link" href="gdk-Windows.html" title="Windows">Windows</a>
2809
+ <a class="link" href="gdk-Windows.html#GdkWindowAttr" title="struct GdkWindowAttr">GdkWindowAttr</a>, struct in <a class="link" href="gdk-Windows.html" title="Windows">Windows</a>
2802
2810
  </dt>
2803
2811
  <dd></dd>
2804
2812
  <dt>
@@ -2930,11 +2938,11 @@
2930
2938
  </dt>
2931
2939
  <dd></dd>
2932
2940
  <dt>
2933
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-window-foreign-new" title="gdk_window_foreign_new ()">gdk_window_foreign_new</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
2941
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-window-foreign-new">gdk_window_foreign_new</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
2934
2942
  </dt>
2935
2943
  <dd></dd>
2936
2944
  <dt>
2937
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-window-foreign-new-for-display" title="gdk_window_foreign_new_for_display ()">gdk_window_foreign_new_for_display</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
2945
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-window-foreign-new-for-display">gdk_window_foreign_new_for_display</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
2938
2946
  </dt>
2939
2947
  <dd></dd>
2940
2948
  <dt>
@@ -2982,6 +2990,10 @@
2982
2990
  </dt>
2983
2991
  <dd></dd>
2984
2992
  <dt>
2993
+ <a class="link" href="gdk-Windows.html#gdk-window-get-display" title="gdk_window_get_display ()">gdk_window_get_display</a>, function in <a class="link" href="gdk-Windows.html" title="Windows">Windows</a>
2994
+ </dt>
2995
+ <dd></dd>
2996
+ <dt>
2985
2997
  <a class="link" href="gdk-Windows.html#gdk-window-get-effective-parent" title="gdk_window_get_effective_parent ()">gdk_window_get_effective_parent</a>, function in <a class="link" href="gdk-Windows.html" title="Windows">Windows</a>
2986
2998
  </dt>
2987
2999
  <dd></dd>
@@ -3010,6 +3022,10 @@
3010
3022
  </dt>
3011
3023
  <dd></dd>
3012
3024
  <dt>
3025
+ <a class="link" href="gdk-Windows.html#gdk-window-get-height" title="gdk_window_get_height ()">gdk_window_get_height</a>, function in <a class="link" href="gdk-Windows.html" title="Windows">Windows</a>
3026
+ </dt>
3027
+ <dd></dd>
3028
+ <dt>
3013
3029
  <a class="link" href="gdk-Windows.html#gdk-window-get-internal-paint-info" title="gdk_window_get_internal_paint_info ()">gdk_window_get_internal_paint_info</a>, function in <a class="link" href="gdk-Windows.html" title="Windows">Windows</a>
3014
3030
  </dt>
3015
3031
  <dd></dd>
@@ -3042,6 +3058,10 @@
3042
3058
  </dt>
3043
3059
  <dd></dd>
3044
3060
  <dt>
3061
+ <a class="link" href="gdk-Windows.html#gdk-window-get-screen" title="gdk_window_get_screen ()">gdk_window_get_screen</a>, function in <a class="link" href="gdk-Windows.html" title="Windows">Windows</a>
3062
+ </dt>
3063
+ <dd></dd>
3064
+ <dt>
3045
3065
  <a class="link" href="gdk-Windows.html#gdk-window-get-size" title="gdk_window_get_size">gdk_window_get_size</a>, macro in <a class="link" href="gdk-Windows.html" title="Windows">Windows</a>
3046
3066
  </dt>
3047
3067
  <dd></dd>
@@ -3074,7 +3094,11 @@
3074
3094
  </dt>
3075
3095
  <dd></dd>
3076
3096
  <dt>
3077
- <a class="link" href="gdk-Windows.html#gdk-window-get-visual" title="gdk_window_get_visual">gdk_window_get_visual</a>, macro in <a class="link" href="gdk-Windows.html" title="Windows">Windows</a>
3097
+ <a class="link" href="gdk-Windows.html#gdk-window-get-visual" title="gdk_window_get_visual ()">gdk_window_get_visual</a>, function in <a class="link" href="gdk-Windows.html" title="Windows">Windows</a>
3098
+ </dt>
3099
+ <dd></dd>
3100
+ <dt>
3101
+ <a class="link" href="gdk-Windows.html#gdk-window-get-width" title="gdk_window_get_width ()">gdk_window_get_width</a>, function in <a class="link" href="gdk-Windows.html" title="Windows">Windows</a>
3078
3102
  </dt>
3079
3103
  <dd></dd>
3080
3104
  <dt>
@@ -3134,11 +3158,11 @@
3134
3158
  </dt>
3135
3159
  <dd></dd>
3136
3160
  <dt>
3137
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-window-lookup" title="gdk_window_lookup ()">gdk_window_lookup</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3161
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-window-lookup">gdk_window_lookup</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3138
3162
  </dt>
3139
3163
  <dd></dd>
3140
3164
  <dt>
3141
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-window-lookup-for-display" title="gdk_window_lookup_for_display ()">gdk_window_lookup_for_display</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3165
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-window-lookup-for-display">gdk_window_lookup_for_display</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3142
3166
  </dt>
3143
3167
  <dd></dd>
3144
3168
  <dt>
@@ -3406,15 +3430,15 @@
3406
3430
  </dt>
3407
3431
  <dd></dd>
3408
3432
  <dt>
3409
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-WINDOW-XDISPLAY:CAPS" title="GDK_WINDOW_XDISPLAY()">GDK_WINDOW_XDISPLAY</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3433
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-WINDOW-XDISPLAY:CAPS">GDK_WINDOW_XDISPLAY</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3410
3434
  </dt>
3411
3435
  <dd></dd>
3412
3436
  <dt>
3413
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-WINDOW-XID:CAPS" title="GDK_WINDOW_XID()">GDK_WINDOW_XID</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3437
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-WINDOW-XID:CAPS">GDK_WINDOW_XID</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3414
3438
  </dt>
3415
3439
  <dd></dd>
3416
3440
  <dt>
3417
- <a class="link" href="gdk-X-Window-System-Interaction.html#GDK-WINDOW-XWINDOW:CAPS" title="GDK_WINDOW_XWINDOW">GDK_WINDOW_XWINDOW</a>, macro in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3441
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#GDK-WINDOW-XWINDOW:CAPS">GDK_WINDOW_XWINDOW</a>, macro in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3418
3442
  </dt>
3419
3443
  <dd></dd>
3420
3444
  <dt>
@@ -3427,187 +3451,199 @@
3427
3451
  <dd></dd>
3428
3452
  <a name="idxX"></a><h3 class="title">X</h3>
3429
3453
  <dt>
3430
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-atom-to-xatom" title="gdk_x11_atom_to_xatom ()">gdk_x11_atom_to_xatom</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3454
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-atom-to-xatom">gdk_x11_atom_to_xatom</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3455
+ </dt>
3456
+ <dd></dd>
3457
+ <dt>
3458
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-atom-to-xatom-for-display">gdk_x11_atom_to_xatom_for_display</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3459
+ </dt>
3460
+ <dd></dd>
3461
+ <dt>
3462
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-colormap-foreign-new">gdk_x11_colormap_foreign_new</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3463
+ </dt>
3464
+ <dd></dd>
3465
+ <dt>
3466
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-colormap-get-xcolormap">gdk_x11_colormap_get_xcolormap</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3431
3467
  </dt>
3432
3468
  <dd></dd>
3433
3469
  <dt>
3434
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-atom-to-xatom-for-display" title="gdk_x11_atom_to_xatom_for_display ()">gdk_x11_atom_to_xatom_for_display</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3470
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-colormap-get-xdisplay">gdk_x11_colormap_get_xdisplay</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3435
3471
  </dt>
3436
3472
  <dd></dd>
3437
3473
  <dt>
3438
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-colormap-foreign-new" title="gdk_x11_colormap_foreign_new ()">gdk_x11_colormap_foreign_new</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3474
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-cursor-get-xcursor">gdk_x11_cursor_get_xcursor</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3439
3475
  </dt>
3440
3476
  <dd></dd>
3441
3477
  <dt>
3442
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-colormap-get-xcolormap" title="gdk_x11_colormap_get_xcolormap ()">gdk_x11_colormap_get_xcolormap</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3478
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-cursor-get-xdisplay">gdk_x11_cursor_get_xdisplay</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3443
3479
  </dt>
3444
3480
  <dd></dd>
3445
3481
  <dt>
3446
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-colormap-get-xdisplay" title="gdk_x11_colormap_get_xdisplay ()">gdk_x11_colormap_get_xdisplay</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3482
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-display-broadcast-startup-message">gdk_x11_display_broadcast_startup_message</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3447
3483
  </dt>
3448
3484
  <dd></dd>
3449
3485
  <dt>
3450
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-cursor-get-xcursor" title="gdk_x11_cursor_get_xcursor ()">gdk_x11_cursor_get_xcursor</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3486
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-display-get-startup-notification-id">gdk_x11_display_get_startup_notification_id</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3451
3487
  </dt>
3452
3488
  <dd></dd>
3453
3489
  <dt>
3454
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-cursor-get-xdisplay" title="gdk_x11_cursor_get_xdisplay ()">gdk_x11_cursor_get_xdisplay</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3490
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-display-get-user-time">gdk_x11_display_get_user_time</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3455
3491
  </dt>
3456
3492
  <dd></dd>
3457
3493
  <dt>
3458
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-broadcast-startup-message" title="gdk_x11_display_broadcast_startup_message ()">gdk_x11_display_broadcast_startup_message</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3494
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-display-get-xdisplay">gdk_x11_display_get_xdisplay</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3459
3495
  </dt>
3460
3496
  <dd></dd>
3461
3497
  <dt>
3462
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-get-startup-notification-id" title="gdk_x11_display_get_startup_notification_id ()">gdk_x11_display_get_startup_notification_id</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3498
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-display-grab">gdk_x11_display_grab</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3463
3499
  </dt>
3464
3500
  <dd></dd>
3465
3501
  <dt>
3466
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-get-user-time" title="gdk_x11_display_get_user_time ()">gdk_x11_display_get_user_time</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3502
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-display-set-cursor-theme">gdk_x11_display_set_cursor_theme</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3467
3503
  </dt>
3468
3504
  <dd></dd>
3469
3505
  <dt>
3470
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-get-xdisplay" title="gdk_x11_display_get_xdisplay ()">gdk_x11_display_get_xdisplay</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3506
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-display-ungrab">gdk_x11_display_ungrab</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3471
3507
  </dt>
3472
3508
  <dd></dd>
3473
3509
  <dt>
3474
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-grab" title="gdk_x11_display_grab ()">gdk_x11_display_grab</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3510
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-drawable-get-xdisplay">gdk_x11_drawable_get_xdisplay</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3475
3511
  </dt>
3476
3512
  <dd></dd>
3477
3513
  <dt>
3478
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-set-cursor-theme" title="gdk_x11_display_set_cursor_theme ()">gdk_x11_display_set_cursor_theme</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3514
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-drawable-get-xid">gdk_x11_drawable_get_xid</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3479
3515
  </dt>
3480
3516
  <dd></dd>
3481
3517
  <dt>
3482
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-display-ungrab" title="gdk_x11_display_ungrab ()">gdk_x11_display_ungrab</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3518
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-font-get-name">gdk_x11_font_get_name</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3483
3519
  </dt>
3484
3520
  <dd></dd>
3485
3521
  <dt>
3486
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-drawable-get-xdisplay" title="gdk_x11_drawable_get_xdisplay ()">gdk_x11_drawable_get_xdisplay</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3522
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-font-get-xdisplay">gdk_x11_font_get_xdisplay</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3487
3523
  </dt>
3488
3524
  <dd></dd>
3489
3525
  <dt>
3490
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-drawable-get-xid" title="gdk_x11_drawable_get_xid ()">gdk_x11_drawable_get_xid</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3526
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-font-get-xfont">gdk_x11_font_get_xfont</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3491
3527
  </dt>
3492
3528
  <dd></dd>
3493
3529
  <dt>
3494
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-font-get-name" title="gdk_x11_font_get_name ()">gdk_x11_font_get_name</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3530
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-gc-get-xdisplay">gdk_x11_gc_get_xdisplay</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3495
3531
  </dt>
3496
3532
  <dd></dd>
3497
3533
  <dt>
3498
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-font-get-xdisplay" title="gdk_x11_font_get_xdisplay ()">gdk_x11_font_get_xdisplay</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3534
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-gc-get-xgc">gdk_x11_gc_get_xgc</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3499
3535
  </dt>
3500
3536
  <dd></dd>
3501
3537
  <dt>
3502
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-font-get-xfont" title="gdk_x11_font_get_xfont ()">gdk_x11_font_get_xfont</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3538
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-get-default-root-xwindow">gdk_x11_get_default_root_xwindow</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3503
3539
  </dt>
3504
3540
  <dd></dd>
3505
3541
  <dt>
3506
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-gc-get-xdisplay" title="gdk_x11_gc_get_xdisplay ()">gdk_x11_gc_get_xdisplay</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3542
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-get-default-screen">gdk_x11_get_default_screen</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3507
3543
  </dt>
3508
3544
  <dd></dd>
3509
3545
  <dt>
3510
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-gc-get-xgc" title="gdk_x11_gc_get_xgc ()">gdk_x11_gc_get_xgc</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3546
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-get-default-xdisplay">gdk_x11_get_default_xdisplay</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3511
3547
  </dt>
3512
3548
  <dd></dd>
3513
3549
  <dt>
3514
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-get-default-root-xwindow" title="gdk_x11_get_default_root_xwindow ()">gdk_x11_get_default_root_xwindow</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3550
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-get-server-time">gdk_x11_get_server_time</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3515
3551
  </dt>
3516
3552
  <dd></dd>
3517
3553
  <dt>
3518
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-get-default-screen" title="gdk_x11_get_default_screen ()">gdk_x11_get_default_screen</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3554
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-by-name">gdk_x11_get_xatom_by_name</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3519
3555
  </dt>
3520
3556
  <dd></dd>
3521
3557
  <dt>
3522
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-get-default-xdisplay" title="gdk_x11_get_default_xdisplay ()">gdk_x11_get_default_xdisplay</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3558
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-by-name-for-display">gdk_x11_get_xatom_by_name_for_display</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3523
3559
  </dt>
3524
3560
  <dd></dd>
3525
3561
  <dt>
3526
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-get-server-time" title="gdk_x11_get_server_time ()">gdk_x11_get_server_time</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3562
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-name">gdk_x11_get_xatom_name</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3527
3563
  </dt>
3528
3564
  <dd></dd>
3529
3565
  <dt>
3530
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-by-name" title="gdk_x11_get_xatom_by_name ()">gdk_x11_get_xatom_by_name</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3566
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-name-for-display">gdk_x11_get_xatom_name_for_display</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3531
3567
  </dt>
3532
3568
  <dd></dd>
3533
3569
  <dt>
3534
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-by-name-for-display" title="gdk_x11_get_xatom_by_name_for_display ()">gdk_x11_get_xatom_by_name_for_display</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3570
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-grab-server">gdk_x11_grab_server</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3535
3571
  </dt>
3536
3572
  <dd></dd>
3537
3573
  <dt>
3538
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-name" title="gdk_x11_get_xatom_name ()">gdk_x11_get_xatom_name</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3574
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-image-get-xdisplay">gdk_x11_image_get_xdisplay</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3539
3575
  </dt>
3540
3576
  <dd></dd>
3541
3577
  <dt>
3542
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-get-xatom-name-for-display" title="gdk_x11_get_xatom_name_for_display ()">gdk_x11_get_xatom_name_for_display</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3578
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-image-get-ximage">gdk_x11_image_get_ximage</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3543
3579
  </dt>
3544
3580
  <dd></dd>
3545
3581
  <dt>
3546
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-grab-server" title="gdk_x11_grab_server ()">gdk_x11_grab_server</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3582
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-lookup-xdisplay">gdk_x11_lookup_xdisplay</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3547
3583
  </dt>
3548
3584
  <dd></dd>
3549
3585
  <dt>
3550
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-image-get-xdisplay" title="gdk_x11_image_get_xdisplay ()">gdk_x11_image_get_xdisplay</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3586
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-register-standard-event-type">gdk_x11_register_standard_event_type</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3551
3587
  </dt>
3552
3588
  <dd></dd>
3553
3589
  <dt>
3554
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-image-get-ximage" title="gdk_x11_image_get_ximage ()">gdk_x11_image_get_ximage</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3590
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-monitor-output">gdk_x11_screen_get_monitor_output</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3555
3591
  </dt>
3556
3592
  <dd></dd>
3557
3593
  <dt>
3558
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-lookup-xdisplay" title="gdk_x11_lookup_xdisplay ()">gdk_x11_lookup_xdisplay</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3594
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-screen-number">gdk_x11_screen_get_screen_number</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3559
3595
  </dt>
3560
3596
  <dd></dd>
3561
3597
  <dt>
3562
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-register-standard-event-type" title="gdk_x11_register_standard_event_type ()">gdk_x11_register_standard_event_type</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3598
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-window-manager-name">gdk_x11_screen_get_window_manager_name</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3563
3599
  </dt>
3564
3600
  <dd></dd>
3565
3601
  <dt>
3566
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-monitor-output" title="gdk_x11_screen_get_monitor_output ()">gdk_x11_screen_get_monitor_output</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3602
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-xscreen">gdk_x11_screen_get_xscreen</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3567
3603
  </dt>
3568
3604
  <dd></dd>
3569
3605
  <dt>
3570
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-screen-number" title="gdk_x11_screen_get_screen_number ()">gdk_x11_screen_get_screen_number</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3606
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-screen-lookup-visual">gdk_x11_screen_lookup_visual</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3571
3607
  </dt>
3572
3608
  <dd></dd>
3573
3609
  <dt>
3574
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-window-manager-name" title="gdk_x11_screen_get_window_manager_name ()">gdk_x11_screen_get_window_manager_name</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3610
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-screen-supports-net-wm-hint">gdk_x11_screen_supports_net_wm_hint</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3575
3611
  </dt>
3576
3612
  <dd></dd>
3577
3613
  <dt>
3578
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-screen-get-xscreen" title="gdk_x11_screen_get_xscreen ()">gdk_x11_screen_get_xscreen</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3614
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-set-sm-client-id">gdk_x11_set_sm_client_id</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3579
3615
  </dt>
3580
3616
  <dd></dd>
3581
3617
  <dt>
3582
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-screen-lookup-visual" title="gdk_x11_screen_lookup_visual ()">gdk_x11_screen_lookup_visual</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3618
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-ungrab-server">gdk_x11_ungrab_server</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3583
3619
  </dt>
3584
3620
  <dd></dd>
3585
3621
  <dt>
3586
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-screen-supports-net-wm-hint" title="gdk_x11_screen_supports_net_wm_hint ()">gdk_x11_screen_supports_net_wm_hint</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3622
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-visual-get-xvisual">gdk_x11_visual_get_xvisual</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3587
3623
  </dt>
3588
3624
  <dd></dd>
3589
3625
  <dt>
3590
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-ungrab-server" title="gdk_x11_ungrab_server ()">gdk_x11_ungrab_server</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3626
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-window-foreign-new-for-display">gdk_x11_window_foreign_new_for_display</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3591
3627
  </dt>
3592
3628
  <dd></dd>
3593
3629
  <dt>
3594
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-visual-get-xvisual" title="gdk_x11_visual_get_xvisual ()">gdk_x11_visual_get_xvisual</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3630
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-window-lookup-for-display">gdk_x11_window_lookup_for_display</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3595
3631
  </dt>
3596
3632
  <dd></dd>
3597
3633
  <dt>
3598
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-window-move-to-current-desktop" title="gdk_x11_window_move_to_current_desktop ()">gdk_x11_window_move_to_current_desktop</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3634
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-window-move-to-current-desktop">gdk_x11_window_move_to_current_desktop</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3599
3635
  </dt>
3600
3636
  <dd></dd>
3601
3637
  <dt>
3602
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-window-set-user-time" title="gdk_x11_window_set_user_time ()">gdk_x11_window_set_user_time</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3638
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-window-set-user-time">gdk_x11_window_set_user_time</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3603
3639
  </dt>
3604
3640
  <dd></dd>
3605
3641
  <dt>
3606
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-xatom-to-atom" title="gdk_x11_xatom_to_atom ()">gdk_x11_xatom_to_atom</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3642
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-xatom-to-atom">gdk_x11_xatom_to_atom</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3607
3643
  </dt>
3608
3644
  <dd></dd>
3609
3645
  <dt>
3610
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-x11-xatom-to-atom-for-display" title="gdk_x11_xatom_to_atom_for_display ()">gdk_x11_xatom_to_atom_for_display</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3646
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-x11-xatom-to-atom-for-display">gdk_x11_xatom_to_atom_for_display</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3611
3647
  </dt>
3612
3648
  <dd></dd>
3613
3649
  <dt>
@@ -3615,24 +3651,24 @@
3615
3651
  </dt>
3616
3652
  <dd></dd>
3617
3653
  <dt>
3618
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-xid-table-lookup" title="gdk_xid_table_lookup ()">gdk_xid_table_lookup</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3654
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-xid-table-lookup">gdk_xid_table_lookup</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3619
3655
  </dt>
3620
3656
  <dd></dd>
3621
3657
  <dt>
3622
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdk-xid-table-lookup-for-display" title="gdk_xid_table_lookup_for_display ()">gdk_xid_table_lookup_for_display</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3658
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdk-xid-table-lookup-for-display">gdk_xid_table_lookup_for_display</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3623
3659
  </dt>
3624
3660
  <dd></dd>
3625
3661
  <dt>
3626
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdkx-colormap-get" title="gdkx_colormap_get ()">gdkx_colormap_get</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3662
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdkx-colormap-get">gdkx_colormap_get</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3627
3663
  </dt>
3628
3664
  <dd></dd>
3629
3665
  <dt>
3630
- <a class="link" href="gdk-X-Window-System-Interaction.html#gdkx-visual-get" title="gdkx_visual_get ()">gdkx_visual_get</a>, function in <a class="link" href="gdk-X-Window-System-Interaction.html" title="X Window System Interaction">X Window System Interaction</a>
3666
+ <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html#gdkx-visual-get">gdkx_visual_get</a>, function in <a href="http://library.gnome.org/devel/gdk3/gdk-X-Window-System-Interaction.html">X Window System Interaction</a>
3631
3667
  </dt>
3632
3668
  <dd></dd>
3633
3669
  </div>
3634
3670
  <div class="footer">
3635
3671
  <hr>
3636
- Generated by GTK-Doc V1.15</div>
3672
+ Generated by GTK-Doc V1.17</div>
3637
3673
  </body>
3638
3674
  </html>