gtk2 1.0.0-x86-mingw32 → 1.0.1-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (553) hide show
  1. data/ChangeLog +52 -0
  2. data/ext/gtk2/extconf.rb +18 -9
  3. data/ext/gtk2/rbgdk.h +3 -0
  4. data/ext/gtk2/rbgdkdragcontext.c +4 -4
  5. data/ext/gtk2/rbgdkevent.c +18 -5
  6. data/ext/gtk2/rbgdkpixmap.c +43 -48
  7. data/ext/gtk2/rbgdkproperty.c +6 -5
  8. data/ext/gtk2/rbgdkscreen.c +18 -74
  9. data/ext/gtk2/rbgdkselection.c +2 -2
  10. data/ext/gtk2/rbgdkwindow.c +11 -18
  11. data/ext/gtk2/rbgdkwindowattr.c +1 -1
  12. data/ext/gtk2/rbgtkaccelgroup.c +1 -1
  13. data/ext/gtk2/rbgtkaction.c +8 -26
  14. data/ext/gtk2/rbgtkactiongroup.c +6 -6
  15. data/ext/gtk2/rbgtkadjustment.c +20 -74
  16. data/ext/gtk2/rbgtkbindingset.c +1 -1
  17. data/ext/gtk2/rbgtkbuilder.c +2 -1
  18. data/ext/gtk2/rbgtkbutton.c +1 -9
  19. data/ext/gtk2/rbgtkcalendar.c +1 -1
  20. data/ext/gtk2/rbgtkcellrendererspinner.c +0 -3
  21. data/ext/gtk2/rbgtkcellrenderertext.c +1 -2
  22. data/ext/gtk2/rbgtkcellview.c +6 -11
  23. data/ext/gtk2/rbgtkcolorselectiondialog.c +2 -28
  24. data/ext/gtk2/rbgtkcombo.c +2 -2
  25. data/ext/gtk2/rbgtkcombobox.c +9 -29
  26. data/ext/gtk2/rbgtkcontainer.c +1 -1
  27. data/ext/gtk2/rbgtkcurve.c +4 -2
  28. data/ext/gtk2/rbgtkdialog.c +2 -3
  29. data/ext/gtk2/rbgtkdrag.c +3 -3
  30. data/ext/gtk2/rbgtkentry.c +2 -2
  31. data/ext/gtk2/rbgtkentrycompletion.c +1 -4
  32. data/ext/gtk2/rbgtkfilechooser.c +32 -29
  33. data/ext/gtk2/rbgtkfilechooserdialog.c +8 -6
  34. data/ext/gtk2/rbgtkfilefilter.c +8 -4
  35. data/ext/gtk2/rbgtkframe.c +3 -4
  36. data/ext/gtk2/rbgtkhandlebox.c +0 -7
  37. data/ext/gtk2/rbgtkicontheme.c +4 -13
  38. data/ext/gtk2/rbgtkiconview.c +4 -15
  39. data/ext/gtk2/rbgtkimcontext.c +1 -1
  40. data/ext/gtk2/rbgtkinvisible.c +5 -21
  41. data/ext/gtk2/rbgtkitemfactory.c +3 -3
  42. data/ext/gtk2/rbgtklabel.c +0 -2
  43. data/ext/gtk2/rbgtklinkbutton.c +0 -2
  44. data/ext/gtk2/rbgtkmain.c +7 -10
  45. data/ext/gtk2/rbgtkmenu.c +22 -74
  46. data/ext/gtk2/rbgtkmenuitem.c +16 -55
  47. data/ext/gtk2/rbgtkmenushell.c +3 -11
  48. data/ext/gtk2/rbgtkmessagedialog.c +11 -20
  49. data/ext/gtk2/rbgtknotebook.c +0 -1
  50. data/ext/gtk2/rbgtkoptionmenu.c +1 -2
  51. data/ext/gtk2/rbgtkprintjob.c +1 -2
  52. data/ext/gtk2/rbgtkprintoperation.c +0 -2
  53. data/ext/gtk2/rbgtkradioaction.c +2 -7
  54. data/ext/gtk2/rbgtkradiobutton.c +1 -1
  55. data/ext/gtk2/rbgtkradiomenuitem.c +4 -6
  56. data/ext/gtk2/rbgtkradiotoolbutton.c +2 -4
  57. data/ext/gtk2/rbgtkrange.c +1 -2
  58. data/ext/gtk2/rbgtkrc.c +8 -9
  59. data/ext/gtk2/rbgtkrcstyle.c +2 -2
  60. data/ext/gtk2/rbgtkrecentaction.c +0 -1
  61. data/ext/gtk2/rbgtkrecentchooser.c +3 -3
  62. data/ext/gtk2/rbgtkrecentdata.c +2 -9
  63. data/ext/gtk2/rbgtkrecentfilter.c +2 -1
  64. data/ext/gtk2/rbgtkrecentfilterinfo.c +5 -16
  65. data/ext/gtk2/rbgtkrecentinfo.c +2 -2
  66. data/ext/gtk2/rbgtkrecentmanager.c +1 -2
  67. data/ext/gtk2/rbgtkruler.c +6 -16
  68. data/ext/gtk2/rbgtkscalebutton.c +16 -48
  69. data/ext/gtk2/rbgtkscrolledwindow.c +1 -1
  70. data/ext/gtk2/rbgtkselectiondata.c +10 -34
  71. data/ext/gtk2/rbgtksettings.c +1 -1
  72. data/ext/gtk2/rbgtkspinner.c +0 -3
  73. data/ext/gtk2/rbgtkstatusbar.c +5 -16
  74. data/ext/gtk2/rbgtkstatusicon.c +2 -9
  75. data/ext/gtk2/rbgtkstock.c +4 -4
  76. data/ext/gtk2/rbgtktable.c +8 -13
  77. data/ext/gtk2/rbgtktextattributes.c +0 -2
  78. data/ext/gtk2/rbgtktextbuffer.c +17 -16
  79. data/ext/gtk2/rbgtktextmark.c +7 -14
  80. data/ext/gtk2/rbgtktexttag.c +1 -2
  81. data/ext/gtk2/rbgtktextview.c +3 -4
  82. data/ext/gtk2/rbgtktoggleaction.c +5 -16
  83. data/ext/gtk2/rbgtktogglebutton.c +1 -2
  84. data/ext/gtk2/rbgtktoggletoolbutton.c +5 -16
  85. data/ext/gtk2/rbgtktoolbar.c +8 -31
  86. data/ext/gtk2/rbgtktoolitem.c +3 -1
  87. data/ext/gtk2/rbgtktreerowreference.c +4 -4
  88. data/ext/gtk2/rbgtktreesortable.c +0 -3
  89. data/ext/gtk2/rbgtktreestore.c +10 -7
  90. data/ext/gtk2/rbgtktreeview.c +5 -8
  91. data/ext/gtk2/rbgtktreeviewcolumn.c +13 -34
  92. data/ext/gtk2/rbgtkuimanager.c +2 -3
  93. data/ext/gtk2/rbgtkwidget.c +24 -44
  94. data/ext/gtk2/rbgtkwindow.c +32 -92
  95. data/lib/1.8/gtk2.so +0 -0
  96. data/lib/1.9/gtk2.so +0 -0
  97. data/lib/gtk2/base.rb +1 -1
  98. data/vendor/local/bin/gtk-builder-convert +2 -29
  99. data/vendor/local/bin/gtk-demo.exe +0 -0
  100. data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
  101. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  102. data/vendor/local/bin/libgailutil-18.dll +0 -0
  103. data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
  104. data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
  105. data/vendor/local/etc/gtk-2.0/gtk.immodules +1 -1
  106. data/vendor/local/include/gtk-2.0/gdk/gdk.h +5 -2
  107. data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +0 -4
  108. data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +0 -2
  109. data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +0 -7
  110. data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +4 -7
  111. data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +1 -1
  112. data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +0 -1
  113. data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +0 -4
  114. data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +9 -13
  115. data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +0 -2
  116. data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +0 -5
  117. data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +6 -16
  118. data/vendor/local/include/gtk-2.0/gtk/gtk.h +0 -1
  119. data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +1 -5
  120. data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +3 -14
  121. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +0 -3
  122. data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +0 -4
  123. data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +0 -2
  124. data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +2 -2
  125. data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +3 -5
  126. data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +0 -6
  127. data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +0 -4
  128. data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +0 -2
  129. data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +4 -4
  130. data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +0 -4
  131. data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +1 -5
  132. data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +1 -2
  133. data/vendor/local/lib/gailutil.lib +0 -0
  134. data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
  135. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
  136. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
  137. data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
  138. data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
  139. data/vendor/local/lib/libgailutil.dll.a +0 -0
  140. data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
  141. data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
  142. data/vendor/local/lib/pkgconfig/gail.pc +1 -1
  143. data/vendor/local/lib/pkgconfig/gdk-2.0.pc +1 -1
  144. data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +1 -1
  145. data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +1 -1
  146. data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +1 -1
  147. data/vendor/local/manifest/{gtk+-dev_2.24.0-1_win32.mft → gtk+-dev_2.22.1-1_win32.mft} +6 -9
  148. data/vendor/local/manifest/{gtk+_2.24.0-1_win32.mft → gtk+_2.22.1-1_win32.mft} +6 -2
  149. data/vendor/local/share/doc/{gtk+-2.24.0 → gtk+-2.22.1}/COPYING +0 -0
  150. data/vendor/local/share/doc/{gtk+-dev-2.24.0 → gtk+-dev-2.22.1}/COPYING +0 -0
  151. data/vendor/local/share/gtk-2.0/demo/appwindow.c +21 -0
  152. data/vendor/local/share/gtk-2.0/demo/combobox.c +6 -6
  153. data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +1 -1
  154. data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +1 -1
  155. data/vendor/local/share/gtk-2.0/demo/sizegroup.c +2 -2
  156. data/vendor/local/share/gtk-2.0/demo/textview.c +4 -4
  157. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +94 -60
  158. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +58 -44
  159. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp +1 -1
  160. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +1 -1
  161. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +3 -3
  162. data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +3 -3
  163. data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +1 -2
  164. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +208 -151
  165. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +37 -33
  166. data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +239 -180
  167. data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +3 -3
  168. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +3 -3
  169. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +3 -3
  170. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +3 -3
  171. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +3 -3
  172. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +3 -3
  173. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +4 -4
  174. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +3 -3
  175. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +3 -3
  176. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +3 -3
  177. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +6 -6
  178. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +4 -4
  179. data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +5 -135
  180. data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +47 -83
  181. data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +23 -20
  182. data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +126 -126
  183. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +39 -81
  184. data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +199 -135
  185. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +90 -71
  186. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +200 -161
  187. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +409 -293
  188. data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +435 -320
  189. data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +141 -109
  190. data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +234 -155
  191. data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +217 -143
  192. data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +124 -103
  193. data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +250 -168
  194. data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +131 -90
  195. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +191 -143
  196. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +53 -35
  197. data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +195 -162
  198. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +112 -85
  199. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +137 -79
  200. data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +176 -144
  201. data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +235 -188
  202. data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +134 -97
  203. data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +35 -22
  204. data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +70 -44
  205. data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +108 -83
  206. data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +744 -653
  207. data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +490 -476
  208. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp +44 -53
  209. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +76 -85
  210. data/vendor/local/share/gtk-doc/html/gdk/index.html +4 -4
  211. data/vendor/local/share/gtk-doc/html/gdk/index.sgml +1 -10
  212. data/vendor/local/share/gtk-doc/html/gdk/multihead.html +9 -9
  213. data/vendor/local/share/gtk-doc/html/gdk/reference.html +3 -3
  214. data/vendor/local/share/gtk-doc/html/gdk/style.css +1 -2
  215. data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +3 -3
  216. data/vendor/local/share/gtk-doc/html/gtk/Actions.html +3 -3
  217. data/vendor/local/share/gtk-doc/html/gtk/Builder.html +3 -3
  218. data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +3 -3
  219. data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +3 -3
  220. data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +3 -3
  221. data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +186 -193
  222. data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +46 -38
  223. data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +18 -18
  224. data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +236 -169
  225. data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +258 -175
  226. data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +50 -46
  227. data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +114 -78
  228. data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +66 -52
  229. data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +36 -30
  230. data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +46 -36
  231. data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +118 -97
  232. data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +14 -14
  233. data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +120 -95
  234. data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +117 -86
  235. data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +137 -96
  236. data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +185 -152
  237. data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +76 -59
  238. data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +895 -615
  239. data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +1780 -509
  240. data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +163 -125
  241. data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +35 -33
  242. data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +87 -60
  243. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +130 -106
  244. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +44 -35
  245. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +32 -27
  246. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +25 -24
  247. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +25 -23
  248. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +20 -19
  249. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +20 -19
  250. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +74 -69
  251. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +54 -45
  252. data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +76 -57
  253. data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +34 -30
  254. data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +75 -53
  255. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +180 -104
  256. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +32 -29
  257. data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +81 -63
  258. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +186 -344
  259. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +46 -57
  260. data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +260 -311
  261. data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +79 -61
  262. data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +121 -97
  263. data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +23 -21
  264. data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +88 -68
  265. data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +470 -360
  266. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +104 -71
  267. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +185 -130
  268. data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +38 -33
  269. data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +96 -76
  270. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +403 -331
  271. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +89 -64
  272. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +35 -30
  273. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +26 -21
  274. data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +146 -102
  275. data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +49 -38
  276. data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +86 -60
  277. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +81 -66
  278. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +61 -52
  279. data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +58 -51
  280. data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +19 -18
  281. data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +20 -17
  282. data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +34 -29
  283. data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +13 -13
  284. data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +24 -30
  285. data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +101 -65
  286. data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +30 -25
  287. data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +18 -18
  288. data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +20 -19
  289. data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +66 -55
  290. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +182 -140
  291. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +22 -18
  292. data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +22 -18
  293. data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +248 -184
  294. data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +447 -321
  295. data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +195 -174
  296. data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +69 -58
  297. data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +80 -67
  298. data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +37 -32
  299. data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +41 -33
  300. data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +42 -36
  301. data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +272 -179
  302. data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +249 -197
  303. data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +76 -68
  304. data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +60 -51
  305. data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +180 -130
  306. data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +130 -80
  307. data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +168 -138
  308. data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +221 -177
  309. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +49 -41
  310. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +145 -112
  311. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +118 -86
  312. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +49 -73
  313. data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +81 -81
  314. data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +39 -33
  315. data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +452 -396
  316. data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +206 -148
  317. data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +25 -21
  318. data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +165 -80
  319. data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +66 -56
  320. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +160 -115
  321. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +25 -22
  322. data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +134 -94
  323. data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +44 -34
  324. data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +67 -51
  325. data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +136 -109
  326. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +53 -38
  327. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +68 -53
  328. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +403 -265
  329. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +94 -74
  330. data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +134 -100
  331. data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +111 -80
  332. data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +108 -91
  333. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +53 -42
  334. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +79 -86
  335. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +71 -63
  336. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +42 -33
  337. data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +185 -218
  338. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +41 -34
  339. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +194 -135
  340. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +29 -27
  341. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +30 -25
  342. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +19 -17
  343. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +85 -63
  344. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +269 -202
  345. data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +58 -83
  346. data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +72 -61
  347. data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +83 -64
  348. data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +21 -21
  349. data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +143 -93
  350. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +13 -13
  351. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +18 -17
  352. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +27 -24
  353. data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +259 -129
  354. data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +45 -38
  355. data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +53 -44
  356. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +177 -132
  357. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +25 -24
  358. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +254 -190
  359. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +75 -60
  360. data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +928 -546
  361. data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +135 -94
  362. data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +19 -18
  363. data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +140 -97
  364. data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +656 -494
  365. data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +46 -41
  366. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +194 -164
  367. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +76 -84
  368. data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +425 -340
  369. data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +94 -74
  370. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +57 -43
  371. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +71 -59
  372. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +38 -32
  373. data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +85 -74
  374. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +166 -133
  375. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +103 -84
  376. data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +139 -116
  377. data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +59 -42
  378. data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +360 -249
  379. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +27 -27
  380. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +70 -60
  381. data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +152 -105
  382. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +134 -46
  383. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +557 -428
  384. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +126 -95
  385. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +70 -63
  386. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +171 -123
  387. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +62 -53
  388. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +199 -170
  389. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +863 -565
  390. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +282 -203
  391. data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +189 -125
  392. data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +20 -17
  393. data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +34 -27
  394. data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +14 -14
  395. data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +24 -31
  396. data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +29 -24
  397. data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +18 -18
  398. data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +18 -17
  399. data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +69 -58
  400. data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +17 -16
  401. data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +1579 -1278
  402. data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +532 -380
  403. data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +39 -21
  404. data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +3 -3
  405. data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +3 -6
  406. data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +3 -3
  407. data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +3 -3
  408. data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +3 -3
  409. data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +3 -3
  410. data/vendor/local/share/gtk-doc/html/gtk/Printing.html +4 -4
  411. data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +3 -3
  412. data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +3 -3
  413. data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +3 -3
  414. data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +3 -3
  415. data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +15 -15
  416. data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +4 -4
  417. data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +16 -16
  418. data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +3 -3
  419. data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +3 -3
  420. data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +11 -17
  421. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +20 -20
  422. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +6 -6
  423. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +3 -3
  424. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +4 -4
  425. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +3 -3
  426. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +5 -5
  427. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +3 -3
  428. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +5 -5
  429. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +28 -28
  430. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +3 -3
  431. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +7 -7
  432. data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +45 -236
  433. data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +385 -469
  434. data/vendor/local/share/gtk-doc/html/gtk/ch01.html +4 -15
  435. data/vendor/local/share/gtk-doc/html/gtk/ch02.html +4 -4
  436. data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +12 -12
  437. data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +4 -4
  438. data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +4 -4
  439. data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +4 -4
  440. data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +3 -3
  441. data/vendor/local/share/gtk-doc/html/gtk/glossary.html +3 -3
  442. data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +124 -69
  443. data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +211 -149
  444. data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +293 -189
  445. data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +246 -175
  446. data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +41 -35
  447. data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +47 -41
  448. data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +318 -270
  449. data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +22 -16
  450. data/vendor/local/share/gtk-doc/html/gtk/{GtkPaperSize.html → gtk-GtkPaperSize.html} +252 -204
  451. data/vendor/local/share/gtk-doc/html/gtk/{GtkTextIter.html → gtk-GtkTextIter.html} +806 -664
  452. data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +82 -75
  453. data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +289 -221
  454. data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +232 -142
  455. data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +20 -17
  456. data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +190 -150
  457. data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +408 -328
  458. data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +306 -190
  459. data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +53 -53
  460. data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +158 -152
  461. data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +136 -85
  462. data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +239 -204
  463. data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +343 -271
  464. data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +11 -18
  465. data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +20 -20
  466. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +5 -5
  467. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +5 -5
  468. data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +5 -5
  469. data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +7 -7
  470. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +75 -63
  471. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +75 -58
  472. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +3 -3
  473. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +3 -3
  474. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +4 -4
  475. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +4 -4
  476. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +10 -5
  477. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +3 -3
  478. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +4 -4
  479. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +5 -5
  480. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +3 -3
  481. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +3 -3
  482. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +5 -5
  483. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +7 -7
  484. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +3 -3
  485. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +3 -3
  486. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +3 -3
  487. data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +6 -6
  488. data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +10 -10
  489. data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +90 -90
  490. data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +9 -9
  491. data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +31 -39
  492. data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +10 -10
  493. data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +14 -14
  494. data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +12 -12
  495. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp +412 -445
  496. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +455 -488
  497. data/vendor/local/share/gtk-doc/html/gtk/gtk.html +4 -4
  498. data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +3 -3
  499. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +3 -3
  500. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +3 -3
  501. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +3 -3
  502. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +5 -5
  503. data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +5 -8
  504. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +3 -3
  505. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +3 -3
  506. data/vendor/local/share/gtk-doc/html/gtk/index.html +6 -10
  507. data/vendor/local/share/gtk-doc/html/gtk/index.sgml +142 -194
  508. data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +3 -3
  509. data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +17 -17
  510. data/vendor/local/share/gtk-doc/html/gtk/migrating.html +4 -4
  511. data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +3 -3
  512. data/vendor/local/share/gtk-doc/html/gtk/pt05.html +4 -4
  513. data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +3 -3
  514. data/vendor/local/share/gtk-doc/html/gtk/style.css +1 -2
  515. data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +3 -3
  516. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
  517. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
  518. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
  519. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
  520. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
  521. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
  522. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
  523. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
  524. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
  525. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
  526. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
  527. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
  528. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
  529. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
  530. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
  531. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
  532. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20-properties.mo +0 -0
  533. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20.mo +0 -0
  534. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20-properties.mo +0 -0
  535. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20.mo +0 -0
  536. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
  537. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
  538. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
  539. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
  540. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
  541. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
  542. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
  543. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
  544. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
  545. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
  546. data/vendor/local/src/tml/packaging/gtk+_2.22.1-1_win32.log +5048 -0
  547. data/vendor/local/src/tml/packaging/{gtk+_2.24.0-1_win32.sh → gtk+_2.22.1-1_win32.sh} +2 -2
  548. metadata +25 -25
  549. data/vendor/local/etc/gtk-2.0/gtkrc +0 -1
  550. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +0 -77
  551. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +0 -301
  552. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +0 -117
  553. data/vendor/local/src/tml/packaging/gtk+_2.24.0-1_win32.log +0 -4934
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="reference.html" title="API Reference">
9
9
  <link rel="prev" href="gdk-Points-Rectangles-and-Regions.html" title="Points, Rectangles and Regions">
10
10
  <link rel="next" href="gdk-Drawing-Primitives.html" title="Drawing Primitives">
11
- <meta name="generator" content="GTK-Doc V1.16.1 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.15 (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">
@@ -28,7 +28,7 @@
28
28
  <a href="#gdk-Graphics-Contexts.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
29
  </td></tr>
30
30
  </table>
31
- <div class="refentry">
31
+ <div class="refentry" title="Graphics Contexts">
32
32
  <a name="gdk-Graphics-Contexts"></a><div class="titlepage"></div>
33
33
  <div class="refnamediv"><table width="100%"><tr>
34
34
  <td valign="top">
@@ -37,28 +37,28 @@
37
37
  </td>
38
38
  <td valign="top" align="right"></td>
39
39
  </tr></table></div>
40
- <div class="refsynopsisdiv">
40
+ <div class="refsynopsisdiv" title="Synopsis">
41
41
  <a name="gdk-Graphics-Contexts.synopsis"></a><h2>Synopsis</h2>
42
42
  <a name="GdkGC"></a><pre class="synopsis">
43
43
  #include &lt;gdk/gdk.h&gt;
44
44
 
45
45
  <a class="link" href="gdk-Graphics-Contexts.html#GdkGC-struct" title="GdkGC">GdkGC</a>;
46
- struct <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues">GdkGCValues</a>;
46
+ <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues">GdkGCValues</a>;
47
47
  enum <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValuesMask" title="enum GdkGCValuesMask">GdkGCValuesMask</a>;
48
48
  enum <a class="link" href="gdk-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction">GdkFunction</a>;
49
49
  <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> * <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-new" title="gdk_gc_new ()">gdk_gc_new</a> (<em class="parameter"><code><a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);
50
50
  <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> * <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-new-with-values" title="gdk_gc_new_with_values ()">gdk_gc_new_with_values</a> (<em class="parameter"><code><a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
51
- <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
51
+ <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
52
52
  <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValuesMask" title="enum GdkGCValuesMask"><span class="type">GdkGCValuesMask</span></a> values_mask</code></em>);
53
53
  <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="returnvalue">GdkScreen</span></a> * <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-get-screen" title="gdk_gc_get_screen ()">gdk_gc_get_screen</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);
54
54
  <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> * <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-ref" title="gdk_gc_ref ()">gdk_gc_ref</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);
55
55
  <span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-unref" title="gdk_gc_unref ()">gdk_gc_unref</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);
56
56
  #define <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-destroy" title="gdk_gc_destroy">gdk_gc_destroy</a>
57
57
  <span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-values" title="gdk_gc_set_values ()">gdk_gc_set_values</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
58
- <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
58
+ <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
59
59
  <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValuesMask" title="enum GdkGCValuesMask"><span class="type">GdkGCValuesMask</span></a> values_mask</code></em>);
60
60
  <span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-get-values" title="gdk_gc_get_values ()">gdk_gc_get_values</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
61
- <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>);
61
+ <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>);
62
62
  <span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-foreground" title="gdk_gc_set_foreground ()">gdk_gc_set_foreground</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
63
63
  <em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);
64
64
  <span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-background" title="gdk_gc_set_background ()">gdk_gc_set_background</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
@@ -87,7 +87,7 @@ enum <a class="link" href="gdk-Graphics-Contexts.html#GdkFill" ti
87
87
  <span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-mask" title="gdk_gc_set_clip_mask ()">gdk_gc_set_clip_mask</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
88
88
  <em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkBitmap" title="GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);
89
89
  <span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-rectangle" title="gdk_gc_set_clip_rectangle ()">gdk_gc_set_clip_rectangle</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
90
- <em class="parameter"><code>const <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRectangle" title="struct GdkRectangle"><span class="type">GdkRectangle</span></a> *rectangle</code></em>);
90
+ <em class="parameter"><code>const <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRectangle" title="GdkRectangle"><span class="type">GdkRectangle</span></a> *rectangle</code></em>);
91
91
  <span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-region" title="gdk_gc_set_clip_region ()">gdk_gc_set_clip_region</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
92
92
  <em class="parameter"><code>const <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="type">GdkRegion</span></a> *region</code></em>);
93
93
  <span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-subwindow" title="gdk_gc_set_subwindow ()">gdk_gc_set_subwindow</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
@@ -117,14 +117,14 @@ enum <a class="link" href="gdk-Graphics-Contexts.html#GdkJoinStyl
117
117
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y_offset</code></em>);
118
118
  </pre>
119
119
  </div>
120
- <div class="refsect1">
120
+ <div class="refsect1" title="Object Hierarchy">
121
121
  <a name="gdk-Graphics-Contexts.object-hierarchy"></a><h2>Object Hierarchy</h2>
122
122
  <pre class="synopsis">
123
123
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
124
124
  +----GdkGC
125
125
  </pre>
126
126
  </div>
127
- <div class="refsect1">
127
+ <div class="refsect1" title="Description">
128
128
  <a name="gdk-Graphics-Contexts.description"></a><h2>Description</h2>
129
129
  <p>
130
130
  All drawing operations in GDK take a
@@ -146,9 +146,9 @@ in the GC, such as the dash pattern, can only
146
146
  be set by the latter method.
147
147
  </p>
148
148
  </div>
149
- <div class="refsect1">
149
+ <div class="refsect1" title="Details">
150
150
  <a name="gdk-Graphics-Contexts.details"></a><h2>Details</h2>
151
- <div class="refsect2">
151
+ <div class="refsect2" title="GdkGC">
152
152
  <a name="GdkGC-struct"></a><h3>GdkGC</h3>
153
153
  <pre class="programlisting">typedef struct _GdkGC GdkGC;</pre>
154
154
  <p>
@@ -158,9 +158,9 @@ elements.
158
158
  </p>
159
159
  </div>
160
160
  <hr>
161
- <div class="refsect2">
162
- <a name="GdkGCValues"></a><h3>struct GdkGCValues</h3>
163
- <pre class="programlisting">struct GdkGCValues {
161
+ <div class="refsect2" title="GdkGCValues">
162
+ <a name="GdkGCValues"></a><h3>GdkGCValues</h3>
163
+ <pre class="programlisting">typedef struct {
164
164
  GdkColor foreground;
165
165
  GdkColor background;
166
166
  GdkFont *font;
@@ -179,10 +179,10 @@ elements.
179
179
  GdkLineStyle line_style;
180
180
  GdkCapStyle cap_style;
181
181
  GdkJoinStyle join_style;
182
- };
182
+ } GdkGCValues;
183
183
  </pre>
184
184
  <p>
185
- The <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> structure holds a set of values used
185
+ The <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> structure holds a set of values used
186
186
  to create or modify a graphics context.
187
187
  </p>
188
188
  <div class="variablelist"><table border="0">
@@ -191,82 +191,100 @@ to create or modify a graphics context.
191
191
  <tr>
192
192
  <td><p><span class="term"><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> <em class="structfield"><code><a name="GdkGCValues.foreground"></a>foreground</code></em>;</span></p></td>
193
193
  <td>the foreground color. Note that <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-get-values" title="gdk_gc_get_values ()"><code class="function">gdk_gc_get_values()</code></a>
194
- only sets the pixel value.</td>
194
+ only sets the pixel value.
195
+ </td>
195
196
  </tr>
196
197
  <tr>
197
198
  <td><p><span class="term"><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> <em class="structfield"><code><a name="GdkGCValues.background"></a>background</code></em>;</span></p></td>
198
199
  <td>the background color. Note that <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-get-values" title="gdk_gc_get_values ()"><code class="function">gdk_gc_get_values()</code></a>
199
- only sets the pixel value.</td>
200
+ only sets the pixel value.
201
+ </td>
200
202
  </tr>
201
203
  <tr>
202
204
  <td><p><span class="term"><a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> *<em class="structfield"><code><a name="GdkGCValues.font"></a>font</code></em>;</span></p></td>
203
- <td>the default font.</td>
205
+ <td>the default font.
206
+ </td>
204
207
  </tr>
205
208
  <tr>
206
209
  <td><p><span class="term"><a class="link" href="gdk-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction"><span class="type">GdkFunction</span></a> <em class="structfield"><code><a name="GdkGCValues.function"></a>function</code></em>;</span></p></td>
207
- <td>the bitwise operation used when drawing.</td>
210
+ <td>the bitwise operation used when drawing.
211
+ </td>
208
212
  </tr>
209
213
  <tr>
210
214
  <td><p><span class="term"><a class="link" href="gdk-Graphics-Contexts.html#GdkFill" title="enum GdkFill"><span class="type">GdkFill</span></a> <em class="structfield"><code><a name="GdkGCValues.fill"></a>fill</code></em>;</span></p></td>
211
- <td>the fill style.</td>
215
+ <td>the fill style.
216
+ </td>
212
217
  </tr>
213
218
  <tr>
214
219
  <td><p><span class="term"><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *<em class="structfield"><code><a name="GdkGCValues.tile"></a>tile</code></em>;</span></p></td>
215
- <td>the tile pixmap.</td>
220
+ <td>the tile pixmap.
221
+ </td>
216
222
  </tr>
217
223
  <tr>
218
224
  <td><p><span class="term"><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *<em class="structfield"><code><a name="GdkGCValues.stipple"></a>stipple</code></em>;</span></p></td>
219
- <td>the stipple bitmap.</td>
225
+ <td>the stipple bitmap.
226
+ </td>
220
227
  </tr>
221
228
  <tr>
222
229
  <td><p><span class="term"><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *<em class="structfield"><code><a name="GdkGCValues.clip-mask"></a>clip_mask</code></em>;</span></p></td>
223
- <td>the clip mask bitmap.</td>
230
+ <td>the clip mask bitmap.
231
+ </td>
224
232
  </tr>
225
233
  <tr>
226
234
  <td><p><span class="term"><a class="link" href="gdk-Graphics-Contexts.html#GdkSubwindowMode" title="enum GdkSubwindowMode"><span class="type">GdkSubwindowMode</span></a> <em class="structfield"><code><a name="GdkGCValues.subwindow-mode"></a>subwindow_mode</code></em>;</span></p></td>
227
- <td>the subwindow mode.</td>
235
+ <td>the subwindow mode.
236
+ </td>
228
237
  </tr>
229
238
  <tr>
230
239
  <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkGCValues.ts-x-origin"></a>ts_x_origin</code></em>;</span></p></td>
231
- <td>the x origin of the tile or stipple.</td>
240
+ <td>the x origin of the tile or stipple.
241
+ </td>
232
242
  </tr>
233
243
  <tr>
234
244
  <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkGCValues.ts-y-origin"></a>ts_y_origin</code></em>;</span></p></td>
235
- <td>the y origin of the tile or stipple.</td>
245
+ <td>the y origin of the tile or stipple.
246
+ </td>
236
247
  </tr>
237
248
  <tr>
238
249
  <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkGCValues.clip-x-origin"></a>clip_x_origin</code></em>;</span></p></td>
239
- <td>the x origin of the clip mask.</td>
250
+ <td>the x origin of the clip mask.
251
+ </td>
240
252
  </tr>
241
253
  <tr>
242
254
  <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkGCValues.clip-y-origin"></a>clip_y_origin</code></em>;</span></p></td>
243
- <td>the y origin of the clip mask.</td>
255
+ <td>the y origin of the clip mask.
256
+ </td>
244
257
  </tr>
245
258
  <tr>
246
259
  <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkGCValues.graphics-exposures"></a>graphics_exposures</code></em>;</span></p></td>
247
- <td>whether graphics exposures are enabled.</td>
260
+ <td>whether graphics exposures are enabled.
261
+ </td>
248
262
  </tr>
249
263
  <tr>
250
264
  <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkGCValues.line-width"></a>line_width</code></em>;</span></p></td>
251
- <td>the line width.</td>
265
+ <td>the line width.
266
+ </td>
252
267
  </tr>
253
268
  <tr>
254
269
  <td><p><span class="term"><a class="link" href="gdk-Graphics-Contexts.html#GdkLineStyle" title="enum GdkLineStyle"><span class="type">GdkLineStyle</span></a> <em class="structfield"><code><a name="GdkGCValues.line-style"></a>line_style</code></em>;</span></p></td>
255
- <td>the way dashed lines are drawn.</td>
270
+ <td>the way dashed lines are drawn.
271
+ </td>
256
272
  </tr>
257
273
  <tr>
258
274
  <td><p><span class="term"><a class="link" href="gdk-Graphics-Contexts.html#GdkCapStyle" title="enum GdkCapStyle"><span class="type">GdkCapStyle</span></a> <em class="structfield"><code><a name="GdkGCValues.cap-style"></a>cap_style</code></em>;</span></p></td>
259
- <td>the way the ends of lines are drawn.</td>
275
+ <td>the way the ends of lines are drawn.
276
+ </td>
260
277
  </tr>
261
278
  <tr>
262
279
  <td><p><span class="term"><a class="link" href="gdk-Graphics-Contexts.html#GdkJoinStyle" title="enum GdkJoinStyle"><span class="type">GdkJoinStyle</span></a> <em class="structfield"><code><a name="GdkGCValues.join-style"></a>join_style</code></em>;</span></p></td>
263
- <td>the way joins between lines are drawn.</td>
280
+ <td>the way joins between lines are drawn.
281
+ </td>
264
282
  </tr>
265
283
  </tbody>
266
284
  </table></div>
267
285
  </div>
268
286
  <hr>
269
- <div class="refsect2">
287
+ <div class="refsect2" title="enum GdkGCValuesMask">
270
288
  <a name="GdkGCValuesMask"></a><h3>enum GdkGCValuesMask</h3>
271
289
  <pre class="programlisting">typedef enum
272
290
  {
@@ -292,7 +310,7 @@ only sets the pixel value.</td>
292
310
  </pre>
293
311
  <p>
294
312
  A set of bit flags used to indicate which fields
295
- <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> structure are set.
313
+ <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> structure are set.
296
314
  </p>
297
315
  <div class="variablelist"><table border="0">
298
316
  <col align="left" valign="top">
@@ -391,7 +409,7 @@ A set of bit flags used to indicate which fields
391
409
  </table></div>
392
410
  </div>
393
411
  <hr>
394
- <div class="refsect2">
412
+ <div class="refsect2" title="enum GdkFunction">
395
413
  <a name="GdkFunction"></a><h3>enum GdkFunction</h3>
396
414
  <pre class="programlisting">typedef enum
397
415
  {
@@ -524,10 +542,10 @@ useful. For bitmaps, <a class="link" href="gdk-Graphics-Contexts.html#GDK-AND:CA
524
542
  </table></div>
525
543
  </div>
526
544
  <hr>
527
- <div class="refsect2">
545
+ <div class="refsect2" title="gdk_gc_new ()">
528
546
  <a name="gdk-gc-new"></a><h3>gdk_gc_new ()</h3>
529
547
  <pre class="programlisting"><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> * gdk_gc_new (<em class="parameter"><code><a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);</pre>
530
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
548
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
531
549
  <h3 class="title">Warning</h3>
532
550
  <p><code class="literal">gdk_gc_new</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use Cairo for rendering.</p>
533
551
  </div>
@@ -540,22 +558,25 @@ Create a new graphics context with default values.
540
558
  <tr>
541
559
  <td><p><span class="term"><em class="parameter"><code>drawable</code></em> :</span></p></td>
542
560
  <td>a <a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>. The created GC must always be used
543
- with drawables of the same depth as this one.</td>
561
+ with drawables of the same depth as this one.
562
+ </td>
544
563
  </tr>
545
564
  <tr>
546
565
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
547
- <td>the new graphics context.</td>
566
+ <td> the new graphics context.
567
+
568
+ </td>
548
569
  </tr>
549
570
  </tbody>
550
571
  </table></div>
551
572
  </div>
552
573
  <hr>
553
- <div class="refsect2">
574
+ <div class="refsect2" title="gdk_gc_new_with_values ()">
554
575
  <a name="gdk-gc-new-with-values"></a><h3>gdk_gc_new_with_values ()</h3>
555
576
  <pre class="programlisting"><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> * gdk_gc_new_with_values (<em class="parameter"><code><a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
556
- <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
577
+ <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
557
578
  <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValuesMask" title="enum GdkGCValuesMask"><span class="type">GdkGCValuesMask</span></a> values_mask</code></em>);</pre>
558
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
579
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
559
580
  <h3 class="title">Warning</h3>
560
581
  <p><code class="literal">gdk_gc_new_with_values</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use Cairo for rendering.</p>
561
582
  </div>
@@ -568,29 +589,34 @@ Create a new GC with the given initial values.
568
589
  <tr>
569
590
  <td><p><span class="term"><em class="parameter"><code>drawable</code></em> :</span></p></td>
570
591
  <td>a <a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>. The created GC must always be used
571
- with drawables of the same depth as this one.</td>
592
+ with drawables of the same depth as this one.
593
+ </td>
572
594
  </tr>
573
595
  <tr>
574
596
  <td><p><span class="term"><em class="parameter"><code>values</code></em> :</span></p></td>
575
- <td>a structure containing initial values for the GC.</td>
597
+ <td>a structure containing initial values for the GC.
598
+ </td>
576
599
  </tr>
577
600
  <tr>
578
601
  <td><p><span class="term"><em class="parameter"><code>values_mask</code></em> :</span></p></td>
579
602
  <td>a bit mask indicating which fields in <em class="parameter"><code>values</code></em>
580
- are set.</td>
603
+ are set.
604
+ </td>
581
605
  </tr>
582
606
  <tr>
583
607
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
584
- <td>the new graphics context.</td>
608
+ <td> the new graphics context.
609
+
610
+ </td>
585
611
  </tr>
586
612
  </tbody>
587
613
  </table></div>
588
614
  </div>
589
615
  <hr>
590
- <div class="refsect2">
616
+ <div class="refsect2" title="gdk_gc_get_screen ()">
591
617
  <a name="gdk-gc-get-screen"></a><h3>gdk_gc_get_screen ()</h3>
592
618
  <pre class="programlisting"><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="returnvalue">GdkScreen</span></a> * gdk_gc_get_screen (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);</pre>
593
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
619
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
594
620
  <h3 class="title">Warning</h3>
595
621
  <p><code class="literal">gdk_gc_get_screen</code> is deprecated and should not be used in newly-written code.</p>
596
622
  </div>
@@ -602,21 +628,24 @@ Gets the <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="ty
602
628
  <tbody>
603
629
  <tr>
604
630
  <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
605
- <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
631
+ <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
632
+ </td>
606
633
  </tr>
607
634
  <tr>
608
635
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
609
- <td>the <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> for <em class="parameter"><code>gc</code></em>.</td>
636
+ <td> the <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> for <em class="parameter"><code>gc</code></em>.
637
+
638
+ </td>
610
639
  </tr>
611
640
  </tbody>
612
641
  </table></div>
613
642
  <p class="since">Since 2.2</p>
614
643
  </div>
615
644
  <hr>
616
- <div class="refsect2">
645
+ <div class="refsect2" title="gdk_gc_ref ()">
617
646
  <a name="gdk-gc-ref"></a><h3>gdk_gc_ref ()</h3>
618
647
  <pre class="programlisting"><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> * gdk_gc_ref (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);</pre>
619
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
648
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
620
649
  <h3 class="title">Warning</h3>
621
650
  <p><code class="literal">gdk_gc_ref</code> has been deprecated since version 2.0 and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-ref"><code class="function">g_object_ref()</code></a> instead.</p>
622
651
  </div>
@@ -633,16 +662,18 @@ Deprecated function; use <a href="http://library.gnome.org/devel/gobject/unstabl
633
662
  </tr>
634
663
  <tr>
635
664
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
636
- <td>the gc.</td>
665
+ <td> the gc.
666
+
667
+ </td>
637
668
  </tr>
638
669
  </tbody>
639
670
  </table></div>
640
671
  </div>
641
672
  <hr>
642
- <div class="refsect2">
673
+ <div class="refsect2" title="gdk_gc_unref ()">
643
674
  <a name="gdk-gc-unref"></a><h3>gdk_gc_unref ()</h3>
644
675
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_unref (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);</pre>
645
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
676
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
646
677
  <h3 class="title">Warning</h3>
647
678
  <p><code class="literal">gdk_gc_unref</code> has been deprecated since version 2.0 and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> instead.</p>
648
679
  </div>
@@ -659,11 +690,11 @@ Decrement the reference count of <em class="parameter"><code>gc</code></em>.
659
690
  </table></div>
660
691
  </div>
661
692
  <hr>
662
- <div class="refsect2">
693
+ <div class="refsect2" title="gdk_gc_destroy">
663
694
  <a name="gdk-gc-destroy"></a><h3>gdk_gc_destroy</h3>
664
695
  <pre class="programlisting">#define gdk_gc_destroy g_object_unref
665
696
  </pre>
666
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
697
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
667
698
  <h3 class="title">Warning</h3>
668
699
  <p><code class="literal">gdk_gc_destroy</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> instead</p>
669
700
  </div>
@@ -672,12 +703,12 @@ This function is obsolete and should not be used.
672
703
  </p>
673
704
  </div>
674
705
  <hr>
675
- <div class="refsect2">
706
+ <div class="refsect2" title="gdk_gc_set_values ()">
676
707
  <a name="gdk-gc-set-values"></a><h3>gdk_gc_set_values ()</h3>
677
708
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_values (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
678
- <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
709
+ <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
679
710
  <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValuesMask" title="enum GdkGCValuesMask"><span class="type">GdkGCValuesMask</span></a> values_mask</code></em>);</pre>
680
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
711
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
681
712
  <h3 class="title">Warning</h3>
682
713
  <p><code class="literal">gdk_gc_set_values</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use Cairo for rendering.</p>
683
714
  </div>
@@ -698,21 +729,23 @@ convenient.
698
729
  </tr>
699
730
  <tr>
700
731
  <td><p><span class="term"><em class="parameter"><code>values</code></em> :</span></p></td>
701
- <td>struct containing the new values</td>
732
+ <td>struct containing the new values
733
+ </td>
702
734
  </tr>
703
735
  <tr>
704
736
  <td><p><span class="term"><em class="parameter"><code>values_mask</code></em> :</span></p></td>
705
- <td>mask indicating which struct fields are to be used</td>
737
+ <td>mask indicating which struct fields are to be used
738
+ </td>
706
739
  </tr>
707
740
  </tbody>
708
741
  </table></div>
709
742
  </div>
710
743
  <hr>
711
- <div class="refsect2">
744
+ <div class="refsect2" title="gdk_gc_get_values ()">
712
745
  <a name="gdk-gc-get-values"></a><h3>gdk_gc_get_values ()</h3>
713
746
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_get_values (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
714
- <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>);</pre>
715
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
747
+ <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>);</pre>
748
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
716
749
  <h3 class="title">Warning</h3>
717
750
  <p><code class="literal">gdk_gc_get_values</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use Cairo for rendering.</p>
718
751
  </div>
@@ -727,21 +760,23 @@ if you need them.
727
760
  <tbody>
728
761
  <tr>
729
762
  <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
730
- <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
763
+ <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
764
+ </td>
731
765
  </tr>
732
766
  <tr>
733
767
  <td><p><span class="term"><em class="parameter"><code>values</code></em> :</span></p></td>
734
- <td>the <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> structure in which to store the results.</td>
768
+ <td>the <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> structure in which to store the results.
769
+ </td>
735
770
  </tr>
736
771
  </tbody>
737
772
  </table></div>
738
773
  </div>
739
774
  <hr>
740
- <div class="refsect2">
775
+ <div class="refsect2" title="gdk_gc_set_foreground ()">
741
776
  <a name="gdk-gc-set-foreground"></a><h3>gdk_gc_set_foreground ()</h3>
742
777
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_foreground (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
743
778
  <em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
744
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
779
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
745
780
  <h3 class="title">Warning</h3>
746
781
  <p><code class="literal">gdk_gc_set_foreground</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a class="link" href="gdk-Cairo-Interaction.html#gdk-cairo-set-source-color" title="gdk_cairo_set_source_color ()"><code class="function">gdk_cairo_set_source_color()</code></a> to use a <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a>
747
782
  as the source in Cairo.</p>
@@ -757,21 +792,23 @@ color as red, green, blue components.
757
792
  <tbody>
758
793
  <tr>
759
794
  <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
760
- <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
795
+ <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
796
+ </td>
761
797
  </tr>
762
798
  <tr>
763
799
  <td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
764
- <td>the new foreground color.</td>
800
+ <td>the new foreground color.
801
+ </td>
765
802
  </tr>
766
803
  </tbody>
767
804
  </table></div>
768
805
  </div>
769
806
  <hr>
770
- <div class="refsect2">
807
+ <div class="refsect2" title="gdk_gc_set_background ()">
771
808
  <a name="gdk-gc-set-background"></a><h3>gdk_gc_set_background ()</h3>
772
809
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_background (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
773
810
  <em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
774
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
811
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
775
812
  <h3 class="title">Warning</h3>
776
813
  <p><code class="literal">gdk_gc_set_background</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a class="link" href="gdk-Cairo-Interaction.html#gdk-cairo-set-source-color" title="gdk_cairo_set_source_color ()"><code class="function">gdk_cairo_set_source_color()</code></a> to use a <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a>
777
814
  as the source in Cairo. Note that if you want to draw a background and a
@@ -789,21 +826,23 @@ color as red, green, blue components.
789
826
  <tbody>
790
827
  <tr>
791
828
  <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
792
- <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
829
+ <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
830
+ </td>
793
831
  </tr>
794
832
  <tr>
795
833
  <td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
796
- <td>the new background color.</td>
834
+ <td>the new background color.
835
+ </td>
797
836
  </tr>
798
837
  </tbody>
799
838
  </table></div>
800
839
  </div>
801
840
  <hr>
802
- <div class="refsect2">
841
+ <div class="refsect2" title="gdk_gc_set_rgb_fg_color ()">
803
842
  <a name="gdk-gc-set-rgb-fg-color"></a><h3>gdk_gc_set_rgb_fg_color ()</h3>
804
843
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_rgb_fg_color (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
805
844
  <em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
806
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
845
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
807
846
  <h3 class="title">Warning</h3>
808
847
  <p><code class="literal">gdk_gc_set_rgb_fg_color</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a class="link" href="gdk-Cairo-Interaction.html#gdk-cairo-set-source-color" title="gdk_cairo_set_source_color ()"><code class="function">gdk_cairo_set_source_color()</code></a> instead.</p>
809
848
  </div>
@@ -827,17 +866,18 @@ Calling this function for a GC without a colormap is an error.
827
866
  </tr>
828
867
  <tr>
829
868
  <td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
830
- <td>an unallocated <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a>.</td>
869
+ <td>an unallocated <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a>.
870
+ </td>
831
871
  </tr>
832
872
  </tbody>
833
873
  </table></div>
834
874
  </div>
835
875
  <hr>
836
- <div class="refsect2">
876
+ <div class="refsect2" title="gdk_gc_set_rgb_bg_color ()">
837
877
  <a name="gdk-gc-set-rgb-bg-color"></a><h3>gdk_gc_set_rgb_bg_color ()</h3>
838
878
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_rgb_bg_color (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
839
879
  <em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
840
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
880
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
841
881
  <h3 class="title">Warning</h3>
842
882
  <p><code class="literal">gdk_gc_set_rgb_bg_color</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a class="link" href="gdk-Cairo-Interaction.html#gdk-cairo-set-source-color" title="gdk_cairo_set_source_color ()"><code class="function">gdk_cairo_set_source_color()</code></a> instead.</p>
843
883
  </div>
@@ -861,17 +901,18 @@ Calling this function for a GC without a colormap is an error.
861
901
  </tr>
862
902
  <tr>
863
903
  <td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
864
- <td>an unallocated <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a>.</td>
904
+ <td>an unallocated <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a>.
905
+ </td>
865
906
  </tr>
866
907
  </tbody>
867
908
  </table></div>
868
909
  </div>
869
910
  <hr>
870
- <div class="refsect2">
911
+ <div class="refsect2" title="gdk_gc_set_font ()">
871
912
  <a name="gdk-gc-set-font"></a><h3>gdk_gc_set_font ()</h3>
872
913
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_font (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
873
914
  <em class="parameter"><code><a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> *font</code></em>);</pre>
874
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
915
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
875
916
  <h3 class="title">Warning</h3>
876
917
  <p><code class="literal">gdk_gc_set_font</code> is deprecated and should not be used in newly-written code.</p>
877
918
  </div>
@@ -886,21 +927,23 @@ argument is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-
886
927
  <tbody>
887
928
  <tr>
888
929
  <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
889
- <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
930
+ <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
931
+ </td>
890
932
  </tr>
891
933
  <tr>
892
934
  <td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
893
- <td>the new font.</td>
935
+ <td>the new font.
936
+ </td>
894
937
  </tr>
895
938
  </tbody>
896
939
  </table></div>
897
940
  </div>
898
941
  <hr>
899
- <div class="refsect2">
942
+ <div class="refsect2" title="gdk_gc_set_function ()">
900
943
  <a name="gdk-gc-set-function"></a><h3>gdk_gc_set_function ()</h3>
901
944
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_function (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
902
945
  <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction"><span class="type">GdkFunction</span></a> function</code></em>);</pre>
903
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
946
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
904
947
  <h3 class="title">Warning</h3>
905
948
  <p><code class="literal">gdk_gc_set_function</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-set-operator"><code class="function">cairo_set_operator()</code></a> with Cairo.</p>
906
949
  </div>
@@ -914,21 +957,23 @@ the final pixel values.
914
957
  <tbody>
915
958
  <tr>
916
959
  <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
917
- <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
960
+ <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
961
+ </td>
918
962
  </tr>
919
963
  <tr>
920
964
  <td><p><span class="term"><em class="parameter"><code>function</code></em> :</span></p></td>
921
- <td>the <a class="link" href="gdk-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction"><span class="type">GdkFunction</span></a> to use</td>
965
+ <td>the <a class="link" href="gdk-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction"><span class="type">GdkFunction</span></a> to use
966
+ </td>
922
967
  </tr>
923
968
  </tbody>
924
969
  </table></div>
925
970
  </div>
926
971
  <hr>
927
- <div class="refsect2">
972
+ <div class="refsect2" title="gdk_gc_set_fill ()">
928
973
  <a name="gdk-gc-set-fill"></a><h3>gdk_gc_set_fill ()</h3>
929
974
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_fill (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
930
975
  <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkFill" title="enum GdkFill"><span class="type">GdkFill</span></a> fill</code></em>);</pre>
931
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
976
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
932
977
  <h3 class="title">Warning</h3>
933
978
  <p><code class="literal">gdk_gc_set_fill</code> has been deprecated since version 2.22 and should not be used in newly-written code. You can achieve tiling in Cairo by using
934
979
  <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html#cairo-pattern-set-extend"><code class="function">cairo_pattern_set_extend()</code></a> on the source. For stippling, see the
@@ -942,17 +987,19 @@ Set the fill mode for a graphics context.
942
987
  <tbody>
943
988
  <tr>
944
989
  <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
945
- <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
990
+ <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
991
+ </td>
946
992
  </tr>
947
993
  <tr>
948
994
  <td><p><span class="term"><em class="parameter"><code>fill</code></em> :</span></p></td>
949
- <td>the new fill mode.</td>
995
+ <td>the new fill mode.
996
+ </td>
950
997
  </tr>
951
998
  </tbody>
952
999
  </table></div>
953
1000
  </div>
954
1001
  <hr>
955
- <div class="refsect2">
1002
+ <div class="refsect2" title="enum GdkFill">
956
1003
  <a name="GdkFill"></a><h3>enum GdkFill</h3>
957
1004
  <pre class="programlisting">typedef enum
958
1005
  {
@@ -998,11 +1045,11 @@ Determines how primitives are drawn.
998
1045
  </table></div>
999
1046
  </div>
1000
1047
  <hr>
1001
- <div class="refsect2">
1048
+ <div class="refsect2" title="gdk_gc_set_tile ()">
1002
1049
  <a name="gdk-gc-set-tile"></a><h3>gdk_gc_set_tile ()</h3>
1003
1050
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_tile (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1004
1051
  <em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *tile</code></em>);</pre>
1005
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1052
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1006
1053
  <h3 class="title">Warning</h3>
1007
1054
  <p><code class="literal">gdk_gc_set_tile</code> has been deprecated since version 2.22 and should not be used in newly-written code. The following code snippet sets a tiling <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>
1008
1055
  as the source in Cairo:
@@ -1031,21 +1078,23 @@ is <a class="link" href="gdk-Graphics-Contexts.html#GDK-TILED:CAPS"><code class=
1031
1078
  <tbody>
1032
1079
  <tr>
1033
1080
  <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
1034
- <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
1081
+ <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
1082
+ </td>
1035
1083
  </tr>
1036
1084
  <tr>
1037
1085
  <td><p><span class="term"><em class="parameter"><code>tile</code></em> :</span></p></td>
1038
- <td>the new tile pixmap.</td>
1086
+ <td>the new tile pixmap.
1087
+ </td>
1039
1088
  </tr>
1040
1089
  </tbody>
1041
1090
  </table></div>
1042
1091
  </div>
1043
1092
  <hr>
1044
- <div class="refsect2">
1093
+ <div class="refsect2" title="gdk_gc_set_stipple ()">
1045
1094
  <a name="gdk-gc-set-stipple"></a><h3>gdk_gc_set_stipple ()</h3>
1046
1095
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_stipple (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1047
1096
  <em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *stipple</code></em>);</pre>
1048
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1097
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1049
1098
  <h3 class="title">Warning</h3>
1050
1099
  <p><code class="literal">gdk_gc_set_stipple</code> has been deprecated since version 2.22 and should not be used in newly-written code. Stippling has no direct replacement in Cairo. If you
1051
1100
  want to achieve an identical look, you can use the stipple bitmap as a
@@ -1063,22 +1112,24 @@ stipple will only be used if the fill mode is
1063
1112
  <tbody>
1064
1113
  <tr>
1065
1114
  <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
1066
- <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
1115
+ <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
1116
+ </td>
1067
1117
  </tr>
1068
1118
  <tr>
1069
1119
  <td><p><span class="term"><em class="parameter"><code>stipple</code></em> :</span></p></td>
1070
- <td>the new stipple bitmap.</td>
1120
+ <td>the new stipple bitmap.
1121
+ </td>
1071
1122
  </tr>
1072
1123
  </tbody>
1073
1124
  </table></div>
1074
1125
  </div>
1075
1126
  <hr>
1076
- <div class="refsect2">
1127
+ <div class="refsect2" title="gdk_gc_set_ts_origin ()">
1077
1128
  <a name="gdk-gc-set-ts-origin"></a><h3>gdk_gc_set_ts_origin ()</h3>
1078
1129
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_ts_origin (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1079
1130
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
1080
1131
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);</pre>
1081
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1132
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1082
1133
  <h3 class="title">Warning</h3>
1083
1134
  <p><code class="literal">gdk_gc_set_ts_origin</code> has been deprecated since version 2.22 and should not be used in newly-written code. You can set the origin for tiles and stipples in Cairo
1084
1135
  by changing the source's matrix using <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html#cairo-pattern-set-matrix"><code class="function">cairo_pattern_set_matrix()</code></a>. Or you
@@ -1096,26 +1147,29 @@ will coincide with this point.
1096
1147
  <tbody>
1097
1148
  <tr>
1098
1149
  <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
1099
- <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
1150
+ <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
1151
+ </td>
1100
1152
  </tr>
1101
1153
  <tr>
1102
1154
  <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1103
- <td>the x-coordinate of the origin.</td>
1155
+ <td>the x-coordinate of the origin.
1156
+ </td>
1104
1157
  </tr>
1105
1158
  <tr>
1106
1159
  <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1107
- <td>the y-coordinate of the origin.</td>
1160
+ <td>the y-coordinate of the origin.
1161
+ </td>
1108
1162
  </tr>
1109
1163
  </tbody>
1110
1164
  </table></div>
1111
1165
  </div>
1112
1166
  <hr>
1113
- <div class="refsect2">
1167
+ <div class="refsect2" title="gdk_gc_set_clip_origin ()">
1114
1168
  <a name="gdk-gc-set-clip-origin"></a><h3>gdk_gc_set_clip_origin ()</h3>
1115
1169
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_clip_origin (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1116
1170
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
1117
1171
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);</pre>
1118
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1172
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1119
1173
  <h3 class="title">Warning</h3>
1120
1174
  <p><code class="literal">gdk_gc_set_clip_origin</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a href="/usr/share/gtk-doc/html/cairo/cairo-Transformations.html#cairo-translate"><code class="function">cairo_translate()</code></a> before applying the clip path in
1121
1175
  Cairo.</p>
@@ -1130,25 +1184,28 @@ the destination drawable of the current operation.
1130
1184
  <tbody>
1131
1185
  <tr>
1132
1186
  <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
1133
- <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
1187
+ <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
1188
+ </td>
1134
1189
  </tr>
1135
1190
  <tr>
1136
1191
  <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1137
- <td>the x-coordinate of the origin.</td>
1192
+ <td>the x-coordinate of the origin.
1193
+ </td>
1138
1194
  </tr>
1139
1195
  <tr>
1140
1196
  <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1141
- <td>the y-coordinate of the origin.</td>
1197
+ <td>the y-coordinate of the origin.
1198
+ </td>
1142
1199
  </tr>
1143
1200
  </tbody>
1144
1201
  </table></div>
1145
1202
  </div>
1146
1203
  <hr>
1147
- <div class="refsect2">
1204
+ <div class="refsect2" title="gdk_gc_set_clip_mask ()">
1148
1205
  <a name="gdk-gc-set-clip-mask"></a><h3>gdk_gc_set_clip_mask ()</h3>
1149
1206
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_clip_mask (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1150
1207
  <em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkBitmap" title="GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);</pre>
1151
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1208
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1152
1209
  <h3 class="title">Warning</h3>
1153
1210
  <p><code class="literal">gdk_gc_set_clip_mask</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-mask"><code class="function">cairo_mask()</code></a> instead.</p>
1154
1211
  </div>
@@ -1162,21 +1219,23 @@ origin. (See <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-or
1162
1219
  <tbody>
1163
1220
  <tr>
1164
1221
  <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
1165
- <td>the <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
1222
+ <td>the <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
1223
+ </td>
1166
1224
  </tr>
1167
1225
  <tr>
1168
1226
  <td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
1169
- <td>a bitmap.</td>
1227
+ <td>a bitmap.
1228
+ </td>
1170
1229
  </tr>
1171
1230
  </tbody>
1172
1231
  </table></div>
1173
1232
  </div>
1174
1233
  <hr>
1175
- <div class="refsect2">
1234
+ <div class="refsect2" title="gdk_gc_set_clip_rectangle ()">
1176
1235
  <a name="gdk-gc-set-clip-rectangle"></a><h3>gdk_gc_set_clip_rectangle ()</h3>
1177
1236
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_clip_rectangle (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1178
- <em class="parameter"><code>const <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRectangle" title="struct GdkRectangle"><span class="type">GdkRectangle</span></a> *rectangle</code></em>);</pre>
1179
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1237
+ <em class="parameter"><code>const <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRectangle" title="GdkRectangle"><span class="type">GdkRectangle</span></a> *rectangle</code></em>);</pre>
1238
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1180
1239
  <h3 class="title">Warning</h3>
1181
1240
  <p><code class="literal">gdk_gc_set_clip_rectangle</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a href="/usr/share/gtk-doc/html/cairo/cairo-Paths.html#cairo-rectangle"><code class="function">cairo_rectangle()</code></a> and <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-clip"><code class="function">cairo_clip()</code></a> in Cairo.</p>
1182
1241
  </div>
@@ -1190,21 +1249,23 @@ origin. (See <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-or
1190
1249
  <tbody>
1191
1250
  <tr>
1192
1251
  <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
1193
- <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
1252
+ <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
1253
+ </td>
1194
1254
  </tr>
1195
1255
  <tr>
1196
1256
  <td><p><span class="term"><em class="parameter"><code>rectangle</code></em> :</span></p></td>
1197
- <td>the rectangle to clip to.</td>
1257
+ <td>the rectangle to clip to.
1258
+ </td>
1198
1259
  </tr>
1199
1260
  </tbody>
1200
1261
  </table></div>
1201
1262
  </div>
1202
1263
  <hr>
1203
- <div class="refsect2">
1264
+ <div class="refsect2" title="gdk_gc_set_clip_region ()">
1204
1265
  <a name="gdk-gc-set-clip-region"></a><h3>gdk_gc_set_clip_region ()</h3>
1205
1266
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_clip_region (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1206
1267
  <em class="parameter"><code>const <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="type">GdkRegion</span></a> *region</code></em>);</pre>
1207
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1268
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1208
1269
  <h3 class="title">Warning</h3>
1209
1270
  <p><code class="literal">gdk_gc_set_clip_region</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a class="link" href="gdk-Cairo-Interaction.html#gdk-cairo-region" title="gdk_cairo_region ()"><code class="function">gdk_cairo_region()</code></a> and <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-clip"><code class="function">cairo_clip()</code></a> in Cairo.</p>
1210
1271
  </div>
@@ -1218,21 +1279,23 @@ The clip mask is interpreted relative to the clip origin. (See
1218
1279
  <tbody>
1219
1280
  <tr>
1220
1281
  <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
1221
- <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
1282
+ <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
1283
+ </td>
1222
1284
  </tr>
1223
1285
  <tr>
1224
1286
  <td><p><span class="term"><em class="parameter"><code>region</code></em> :</span></p></td>
1225
- <td>the <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="type">GdkRegion</span></a>.</td>
1287
+ <td>the <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="type">GdkRegion</span></a>.
1288
+ </td>
1226
1289
  </tr>
1227
1290
  </tbody>
1228
1291
  </table></div>
1229
1292
  </div>
1230
1293
  <hr>
1231
- <div class="refsect2">
1294
+ <div class="refsect2" title="gdk_gc_set_subwindow ()">
1232
1295
  <a name="gdk-gc-set-subwindow"></a><h3>gdk_gc_set_subwindow ()</h3>
1233
1296
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_subwindow (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1234
1297
  <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkSubwindowMode" title="enum GdkSubwindowMode"><span class="type">GdkSubwindowMode</span></a> mode</code></em>);</pre>
1235
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1298
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1236
1299
  <h3 class="title">Warning</h3>
1237
1300
  <p><code class="literal">gdk_gc_set_subwindow</code> has been deprecated since version 2.22 and should not be used in newly-written code. There is no replacement. If you need to control
1238
1301
  subwindows, you must use drawing operations of the underlying window
@@ -1248,17 +1311,19 @@ windows of that window.
1248
1311
  <tbody>
1249
1312
  <tr>
1250
1313
  <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
1251
- <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
1314
+ <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
1315
+ </td>
1252
1316
  </tr>
1253
1317
  <tr>
1254
1318
  <td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
1255
- <td>the subwindow mode.</td>
1319
+ <td>the subwindow mode.
1320
+ </td>
1256
1321
  </tr>
1257
1322
  </tbody>
1258
1323
  </table></div>
1259
1324
  </div>
1260
1325
  <hr>
1261
- <div class="refsect2">
1326
+ <div class="refsect2" title="enum GdkSubwindowMode">
1262
1327
  <a name="GdkSubwindowMode"></a><h3>enum GdkSubwindowMode</h3>
1263
1328
  <pre class="programlisting">typedef enum
1264
1329
  {
@@ -1287,11 +1352,11 @@ windows of that window.
1287
1352
  </table></div>
1288
1353
  </div>
1289
1354
  <hr>
1290
- <div class="refsect2">
1355
+ <div class="refsect2" title="gdk_gc_set_exposures ()">
1291
1356
  <a name="gdk-gc-set-exposures"></a><h3>gdk_gc_set_exposures ()</h3>
1292
1357
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_exposures (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1293
1358
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> exposures</code></em>);</pre>
1294
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1359
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1295
1360
  <h3 class="title">Warning</h3>
1296
1361
  <p><code class="literal">gdk_gc_set_exposures</code> has been deprecated since version 2.22 and should not be used in newly-written code. There is no replacement. If you need to control
1297
1362
  exposures, you must use drawing operations of the underlying window
@@ -1309,24 +1374,26 @@ drawable. (See <a class="link" href="gdk-Drawing-Primitives.html#gdk-draw-drawab
1309
1374
  <tbody>
1310
1375
  <tr>
1311
1376
  <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
1312
- <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
1377
+ <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
1378
+ </td>
1313
1379
  </tr>
1314
1380
  <tr>
1315
1381
  <td><p><span class="term"><em class="parameter"><code>exposures</code></em> :</span></p></td>
1316
- <td>if <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, exposure events will be generated.</td>
1382
+ <td>if <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, exposure events will be generated.
1383
+ </td>
1317
1384
  </tr>
1318
1385
  </tbody>
1319
1386
  </table></div>
1320
1387
  </div>
1321
1388
  <hr>
1322
- <div class="refsect2">
1389
+ <div class="refsect2" title="gdk_gc_set_line_attributes ()">
1323
1390
  <a name="gdk-gc-set-line-attributes"></a><h3>gdk_gc_set_line_attributes ()</h3>
1324
1391
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_line_attributes (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1325
1392
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line_width</code></em>,
1326
1393
  <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkLineStyle" title="enum GdkLineStyle"><span class="type">GdkLineStyle</span></a> line_style</code></em>,
1327
1394
  <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkCapStyle" title="enum GdkCapStyle"><span class="type">GdkCapStyle</span></a> cap_style</code></em>,
1328
1395
  <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkJoinStyle" title="enum GdkJoinStyle"><span class="type">GdkJoinStyle</span></a> join_style</code></em>);</pre>
1329
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1396
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1330
1397
  <h3 class="title">Warning</h3>
1331
1398
  <p><code class="literal">gdk_gc_set_line_attributes</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use the Cairo functions <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-set-line-width"><code class="function">cairo_set_line_width()</code></a>,
1332
1399
  <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-set-line-join"><code class="function">cairo_set_line_join()</code></a>, <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-set-line-cap"><code class="function">cairo_set_line_cap()</code></a> and <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-set-dash"><code class="function">cairo_set_dash()</code></a>
@@ -1336,7 +1403,7 @@ a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">Gdk
1336
1403
  </div>
1337
1404
  <p>
1338
1405
  Sets various attributes of how lines are drawn. See
1339
- the corresponding members of <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> for full
1406
+ the corresponding members of <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> for full
1340
1407
  explanations of the arguments.
1341
1408
  </p>
1342
1409
  <div class="variablelist"><table border="0">
@@ -1344,29 +1411,34 @@ explanations of the arguments.
1344
1411
  <tbody>
1345
1412
  <tr>
1346
1413
  <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
1347
- <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
1414
+ <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
1415
+ </td>
1348
1416
  </tr>
1349
1417
  <tr>
1350
1418
  <td><p><span class="term"><em class="parameter"><code>line_width</code></em> :</span></p></td>
1351
- <td>the width of lines.</td>
1419
+ <td>the width of lines.
1420
+ </td>
1352
1421
  </tr>
1353
1422
  <tr>
1354
1423
  <td><p><span class="term"><em class="parameter"><code>line_style</code></em> :</span></p></td>
1355
- <td>the dash-style for lines.</td>
1424
+ <td>the dash-style for lines.
1425
+ </td>
1356
1426
  </tr>
1357
1427
  <tr>
1358
1428
  <td><p><span class="term"><em class="parameter"><code>cap_style</code></em> :</span></p></td>
1359
- <td>the manner in which the ends of lines are drawn.</td>
1429
+ <td>the manner in which the ends of lines are drawn.
1430
+ </td>
1360
1431
  </tr>
1361
1432
  <tr>
1362
1433
  <td><p><span class="term"><em class="parameter"><code>join_style</code></em> :</span></p></td>
1363
- <td>the in which lines are joined together.</td>
1434
+ <td>the in which lines are joined together.
1435
+ </td>
1364
1436
  </tr>
1365
1437
  </tbody>
1366
1438
  </table></div>
1367
1439
  </div>
1368
1440
  <hr>
1369
- <div class="refsect2">
1441
+ <div class="refsect2" title="enum GdkLineStyle">
1370
1442
  <a name="GdkLineStyle"></a><h3>enum GdkLineStyle</h3>
1371
1443
  <pre class="programlisting">typedef enum
1372
1444
  {
@@ -1402,7 +1474,7 @@ Determines how lines are drawn.
1402
1474
  </table></div>
1403
1475
  </div>
1404
1476
  <hr>
1405
- <div class="refsect2">
1477
+ <div class="refsect2" title="enum GdkCapStyle">
1406
1478
  <a name="GdkCapStyle"></a><h3>enum GdkCapStyle</h3>
1407
1479
  <pre class="programlisting">typedef enum
1408
1480
  {
@@ -1446,7 +1518,7 @@ Determines how the end of lines are drawn.
1446
1518
  </table></div>
1447
1519
  </div>
1448
1520
  <hr>
1449
- <div class="refsect2">
1521
+ <div class="refsect2" title="enum GdkJoinStyle">
1450
1522
  <a name="GdkJoinStyle"></a><h3>enum GdkJoinStyle</h3>
1451
1523
  <pre class="programlisting">typedef enum
1452
1524
  {
@@ -1481,13 +1553,13 @@ Determines how the joins between segments of a polygon are drawn.
1481
1553
  </table></div>
1482
1554
  </div>
1483
1555
  <hr>
1484
- <div class="refsect2">
1556
+ <div class="refsect2" title="gdk_gc_set_dashes ()">
1485
1557
  <a name="gdk-gc-set-dashes"></a><h3>gdk_gc_set_dashes ()</h3>
1486
1558
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_dashes (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1487
1559
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> dash_offset</code></em>,
1488
1560
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> dash_list[]</code></em>,
1489
1561
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n</code></em>);</pre>
1490
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1562
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1491
1563
  <h3 class="title">Warning</h3>
1492
1564
  <p><code class="literal">gdk_gc_set_dashes</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-set-dash"><code class="function">cairo_set_dash()</code></a> to set the dash in Cairo.</p>
1493
1565
  </div>
@@ -1509,29 +1581,33 @@ should actually begin.
1509
1581
  <tbody>
1510
1582
  <tr>
1511
1583
  <td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
1512
- <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
1584
+ <td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.
1585
+ </td>
1513
1586
  </tr>
1514
1587
  <tr>
1515
1588
  <td><p><span class="term"><em class="parameter"><code>dash_offset</code></em> :</span></p></td>
1516
- <td>the phase of the dash pattern.</td>
1589
+ <td>the phase of the dash pattern.
1590
+ </td>
1517
1591
  </tr>
1518
1592
  <tr>
1519
1593
  <td><p><span class="term"><em class="parameter"><code>dash_list</code></em> :</span></p></td>
1520
- <td>an array of dash lengths.</td>
1594
+ <td>an array of dash lengths.
1595
+ </td>
1521
1596
  </tr>
1522
1597
  <tr>
1523
1598
  <td><p><span class="term"><em class="parameter"><code>n</code></em> :</span></p></td>
1524
- <td>the number of elements in <em class="parameter"><code>dash_list</code></em>.</td>
1599
+ <td>the number of elements in <em class="parameter"><code>dash_list</code></em>.
1600
+ </td>
1525
1601
  </tr>
1526
1602
  </tbody>
1527
1603
  </table></div>
1528
1604
  </div>
1529
1605
  <hr>
1530
- <div class="refsect2">
1606
+ <div class="refsect2" title="gdk_gc_copy ()">
1531
1607
  <a name="gdk-gc-copy"></a><h3>gdk_gc_copy ()</h3>
1532
1608
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_copy (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *dst_gc</code></em>,
1533
1609
  <em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *src_gc</code></em>);</pre>
1534
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1610
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1535
1611
  <h3 class="title">Warning</h3>
1536
1612
  <p><code class="literal">gdk_gc_copy</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use Cairo for drawing. <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-save"><code class="function">cairo_save()</code></a> and <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-restore"><code class="function">cairo_restore()</code></a>
1537
1613
  can be helpful in cases where you'd have copied a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p>
@@ -1545,21 +1621,23 @@ onto another graphics context.
1545
1621
  <tbody>
1546
1622
  <tr>
1547
1623
  <td><p><span class="term"><em class="parameter"><code>dst_gc</code></em> :</span></p></td>
1548
- <td>the destination graphics context.</td>
1624
+ <td>the destination graphics context.
1625
+ </td>
1549
1626
  </tr>
1550
1627
  <tr>
1551
1628
  <td><p><span class="term"><em class="parameter"><code>src_gc</code></em> :</span></p></td>
1552
- <td>the source graphics context.</td>
1629
+ <td>the source graphics context.
1630
+ </td>
1553
1631
  </tr>
1554
1632
  </tbody>
1555
1633
  </table></div>
1556
1634
  </div>
1557
1635
  <hr>
1558
- <div class="refsect2">
1636
+ <div class="refsect2" title="gdk_gc_set_colormap ()">
1559
1637
  <a name="gdk-gc-set-colormap"></a><h3>gdk_gc_set_colormap ()</h3>
1560
1638
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_colormap (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1561
1639
  <em class="parameter"><code><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a> *colormap</code></em>);</pre>
1562
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1640
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1563
1641
  <h3 class="title">Warning</h3>
1564
1642
  <p><code class="literal">gdk_gc_set_colormap</code> has been deprecated since version 2.22 and should not be used in newly-written code. There is no replacement. Cairo handles colormaps
1565
1643
  automatically, so there is no need to care about them.</p>
@@ -1586,10 +1664,10 @@ for which the GC was created.
1586
1664
  </table></div>
1587
1665
  </div>
1588
1666
  <hr>
1589
- <div class="refsect2">
1667
+ <div class="refsect2" title="gdk_gc_get_colormap ()">
1590
1668
  <a name="gdk-gc-get-colormap"></a><h3>gdk_gc_get_colormap ()</h3>
1591
1669
  <pre class="programlisting"><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="returnvalue">GdkColormap</span></a> * gdk_gc_get_colormap (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);</pre>
1592
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1670
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1593
1671
  <h3 class="title">Warning</h3>
1594
1672
  <p><code class="literal">gdk_gc_get_colormap</code> has been deprecated since version 2.22 and should not be used in newly-written code. There is no replacement. Cairo handles colormaps
1595
1673
  automatically, so there is no need to care about them.</p>
@@ -1610,18 +1688,20 @@ gdk_gc_set_colormap.
1610
1688
  </tr>
1611
1689
  <tr>
1612
1690
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1613
- <td>the colormap of <em class="parameter"><code>gc</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if <em class="parameter"><code>gc</code></em> doesn't have one.</td>
1691
+ <td> the colormap of <em class="parameter"><code>gc</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if <em class="parameter"><code>gc</code></em> doesn't have one.
1692
+
1693
+ </td>
1614
1694
  </tr>
1615
1695
  </tbody>
1616
1696
  </table></div>
1617
1697
  </div>
1618
1698
  <hr>
1619
- <div class="refsect2">
1699
+ <div class="refsect2" title="gdk_gc_offset ()">
1620
1700
  <a name="gdk-gc-offset"></a><h3>gdk_gc_offset ()</h3>
1621
1701
  <pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_offset (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1622
1702
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x_offset</code></em>,
1623
1703
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y_offset</code></em>);</pre>
1624
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1704
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1625
1705
  <h3 class="title">Warning</h3>
1626
1706
  <p><code class="literal">gdk_gc_offset</code> has been deprecated since version 2.22 and should not be used in newly-written code. There is no direct replacement, as this is just a
1627
1707
  convenience function for gdk_gc_set_ts_origin and <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-origin" title="gdk_gc_set_clip_origin ()"><code class="function">gdk_gc_set_clip_origin()</code></a>.</p>
@@ -1642,11 +1722,13 @@ GC.
1642
1722
  </tr>
1643
1723
  <tr>
1644
1724
  <td><p><span class="term"><em class="parameter"><code>x_offset</code></em> :</span></p></td>
1645
- <td>amount by which to offset the GC in the X direction</td>
1725
+ <td>amount by which to offset the GC in the X direction
1726
+ </td>
1646
1727
  </tr>
1647
1728
  <tr>
1648
1729
  <td><p><span class="term"><em class="parameter"><code>y_offset</code></em> :</span></p></td>
1649
- <td>amount by which to offset the GC in the Y direction</td>
1730
+ <td>amount by which to offset the GC in the Y direction
1731
+ </td>
1650
1732
  </tr>
1651
1733
  </tbody>
1652
1734
  </table></div>
@@ -1655,6 +1737,6 @@ GC.
1655
1737
  </div>
1656
1738
  <div class="footer">
1657
1739
  <hr>
1658
- Generated by GTK-Doc V1.16.1</div>
1740
+ Generated by GTK-Doc V1.15</div>
1659
1741
  </body>
1660
1742
  </html>