gtk2 2.2.4-x64-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 (1667) hide show
  1. checksums.yaml +7 -0
  2. data/README +33 -0
  3. data/Rakefile +62 -0
  4. data/ext/gtk2/depend +14 -0
  5. data/ext/gtk2/extconf.rb +129 -0
  6. data/ext/gtk2/global.h +295 -0
  7. data/ext/gtk2/gtk2.def +29 -0
  8. data/ext/gtk2/init.c +284 -0
  9. data/ext/gtk2/rbgdk.c +505 -0
  10. data/ext/gtk2/rbgdk.h +79 -0
  11. data/ext/gtk2/rbgdkatom.c +124 -0
  12. data/ext/gtk2/rbgdkcairo.c +89 -0
  13. data/ext/gtk2/rbgdkcolor.c +146 -0
  14. data/ext/gtk2/rbgdkcolormap.c +135 -0
  15. data/ext/gtk2/rbgdkconst.c +39 -0
  16. data/ext/gtk2/rbgdkconversions.h +31 -0
  17. data/ext/gtk2/rbgdkcursor.c +102 -0
  18. data/ext/gtk2/rbgdkdevice.c +229 -0
  19. data/ext/gtk2/rbgdkdisplay.c +553 -0
  20. data/ext/gtk2/rbgdkdisplaymanager.c +54 -0
  21. data/ext/gtk2/rbgdkdragcontext.c +291 -0
  22. data/ext/gtk2/rbgdkdraw.c +522 -0
  23. data/ext/gtk2/rbgdkevent.c +1291 -0
  24. data/ext/gtk2/rbgdkgc.c +423 -0
  25. data/ext/gtk2/rbgdkgeometry.c +256 -0
  26. data/ext/gtk2/rbgdkimage.c +152 -0
  27. data/ext/gtk2/rbgdkinput.c +72 -0
  28. data/ext/gtk2/rbgdkkeymap.c +155 -0
  29. data/ext/gtk2/rbgdkkeyval.c +108 -0
  30. data/ext/gtk2/rbgdkpango.c +183 -0
  31. data/ext/gtk2/rbgdkpangorenderer.c +143 -0
  32. data/ext/gtk2/rbgdkpixbuf.c +171 -0
  33. data/ext/gtk2/rbgdkpixmap.c +236 -0
  34. data/ext/gtk2/rbgdkproperty.c +288 -0
  35. data/ext/gtk2/rbgdkrectangle.c +142 -0
  36. data/ext/gtk2/rbgdkregion.c +289 -0
  37. data/ext/gtk2/rbgdkrgb.c +198 -0
  38. data/ext/gtk2/rbgdkscreen.c +422 -0
  39. data/ext/gtk2/rbgdkselection.c +147 -0
  40. data/ext/gtk2/rbgdkthreads.c +77 -0
  41. data/ext/gtk2/rbgdktimecoord.c +135 -0
  42. data/ext/gtk2/rbgdkvisual.c +252 -0
  43. data/ext/gtk2/rbgdkwindow.c +1113 -0
  44. data/ext/gtk2/rbgdkwindowattr.c +208 -0
  45. data/ext/gtk2/rbgdkx11.c +257 -0
  46. data/ext/gtk2/rbgtk.c +594 -0
  47. data/ext/gtk2/rbgtk.h +132 -0
  48. data/ext/gtk2/rbgtkaboutdialog.c +136 -0
  49. data/ext/gtk2/rbgtkaccelerator.c +81 -0
  50. data/ext/gtk2/rbgtkaccelgroup.c +200 -0
  51. data/ext/gtk2/rbgtkaccelgroupentry.c +94 -0
  52. data/ext/gtk2/rbgtkaccelkey.c +122 -0
  53. data/ext/gtk2/rbgtkaccellabel.c +55 -0
  54. data/ext/gtk2/rbgtkaccelmap.c +144 -0
  55. data/ext/gtk2/rbgtkaccessible.c +39 -0
  56. data/ext/gtk2/rbgtkaction.c +223 -0
  57. data/ext/gtk2/rbgtkactiongroup.c +468 -0
  58. data/ext/gtk2/rbgtkadjustment.c +72 -0
  59. data/ext/gtk2/rbgtkalignment.c +75 -0
  60. data/ext/gtk2/rbgtkallocation.c +168 -0
  61. data/ext/gtk2/rbgtkarrow.c +57 -0
  62. data/ext/gtk2/rbgtkaspectframe.c +56 -0
  63. data/ext/gtk2/rbgtkassistant.c +220 -0
  64. data/ext/gtk2/rbgtkbbox.c +53 -0
  65. data/ext/gtk2/rbgtkbin.c +42 -0
  66. data/ext/gtk2/rbgtkbindingset.c +189 -0
  67. data/ext/gtk2/rbgtkborder.c +87 -0
  68. data/ext/gtk2/rbgtkbox.c +138 -0
  69. data/ext/gtk2/rbgtkbuildable.c +127 -0
  70. data/ext/gtk2/rbgtkbuilder.c +170 -0
  71. data/ext/gtk2/rbgtkbutton.c +115 -0
  72. data/ext/gtk2/rbgtkcalendar.c +149 -0
  73. data/ext/gtk2/rbgtkcelleditable.c +57 -0
  74. data/ext/gtk2/rbgtkcelllayout.c +137 -0
  75. data/ext/gtk2/rbgtkcellrenderer.c +131 -0
  76. data/ext/gtk2/rbgtkcellrendereraccel.c +43 -0
  77. data/ext/gtk2/rbgtkcellrenderercombo.c +38 -0
  78. data/ext/gtk2/rbgtkcellrendererpixbuf.c +39 -0
  79. data/ext/gtk2/rbgtkcellrendererprogress.c +38 -0
  80. data/ext/gtk2/rbgtkcellrendererspin.c +39 -0
  81. data/ext/gtk2/rbgtkcellrendererspinner.c +44 -0
  82. data/ext/gtk2/rbgtkcellrenderertext.c +49 -0
  83. data/ext/gtk2/rbgtkcellrenderertoggle.c +39 -0
  84. data/ext/gtk2/rbgtkcellview.c +117 -0
  85. data/ext/gtk2/rbgtkcheckbutton.c +64 -0
  86. data/ext/gtk2/rbgtkcheckmenuitem.c +64 -0
  87. data/ext/gtk2/rbgtkclipboard.c +425 -0
  88. data/ext/gtk2/rbgtkcolorbutton.c +49 -0
  89. data/ext/gtk2/rbgtkcolorsel.c +211 -0
  90. data/ext/gtk2/rbgtkcolorselectiondialog.c +50 -0
  91. data/ext/gtk2/rbgtkcombo.c +119 -0
  92. data/ext/gtk2/rbgtkcombobox.c +151 -0
  93. data/ext/gtk2/rbgtkcomboboxentry.c +56 -0
  94. data/ext/gtk2/rbgtkconst.c +179 -0
  95. data/ext/gtk2/rbgtkcontainer.c +783 -0
  96. data/ext/gtk2/rbgtkconversions.h +39 -0
  97. data/ext/gtk2/rbgtkcurve.c +111 -0
  98. data/ext/gtk2/rbgtkdialog.c +268 -0
  99. data/ext/gtk2/rbgtkdrag.c +427 -0
  100. data/ext/gtk2/rbgtkdrawingarea.c +42 -0
  101. data/ext/gtk2/rbgtkeditable.c +151 -0
  102. data/ext/gtk2/rbgtkentry.c +113 -0
  103. data/ext/gtk2/rbgtkentrycompletion.c +128 -0
  104. data/ext/gtk2/rbgtkeventbox.c +42 -0
  105. data/ext/gtk2/rbgtkexpander.c +49 -0
  106. data/ext/gtk2/rbgtkfilechooser.c +311 -0
  107. data/ext/gtk2/rbgtkfilechooserbutton.c +57 -0
  108. data/ext/gtk2/rbgtkfilechooserdialog.c +59 -0
  109. data/ext/gtk2/rbgtkfilechooserwidget.c +52 -0
  110. data/ext/gtk2/rbgtkfilefilter.c +131 -0
  111. data/ext/gtk2/rbgtkfilesel.c +150 -0
  112. data/ext/gtk2/rbgtkfilesystemerror.c +49 -0
  113. data/ext/gtk2/rbgtkfixed.c +78 -0
  114. data/ext/gtk2/rbgtkfontbutton.c +49 -0
  115. data/ext/gtk2/rbgtkfontselection.c +41 -0
  116. data/ext/gtk2/rbgtkfontselectiondialog.c +106 -0
  117. data/ext/gtk2/rbgtkframe.c +69 -0
  118. data/ext/gtk2/rbgtkgamma.c +56 -0
  119. data/ext/gtk2/rbgtkhandlebox.c +45 -0
  120. data/ext/gtk2/rbgtkhbbox.c +42 -0
  121. data/ext/gtk2/rbgtkhbox.c +47 -0
  122. data/ext/gtk2/rbgtkhpaned.c +42 -0
  123. data/ext/gtk2/rbgtkhruler.c +42 -0
  124. data/ext/gtk2/rbgtkhscale.c +54 -0
  125. data/ext/gtk2/rbgtkhscrollbar.c +47 -0
  126. data/ext/gtk2/rbgtkhseparator.c +41 -0
  127. data/ext/gtk2/rbgtkiconfactory.c +86 -0
  128. data/ext/gtk2/rbgtkiconinfo.c +117 -0
  129. data/ext/gtk2/rbgtkiconset.c +91 -0
  130. data/ext/gtk2/rbgtkiconsize.c +93 -0
  131. data/ext/gtk2/rbgtkiconsource.c +171 -0
  132. data/ext/gtk2/rbgtkicontheme.c +273 -0
  133. data/ext/gtk2/rbgtkiconview.c +270 -0
  134. data/ext/gtk2/rbgtkimage.c +128 -0
  135. data/ext/gtk2/rbgtkimagemenuitem.c +61 -0
  136. data/ext/gtk2/rbgtkimcontext.c +135 -0
  137. data/ext/gtk2/rbgtkimcontextsimple.c +69 -0
  138. data/ext/gtk2/rbgtkimmulticontext.c +48 -0
  139. data/ext/gtk2/rbgtkinfobar.c +127 -0
  140. data/ext/gtk2/rbgtkinputdialog.c +41 -0
  141. data/ext/gtk2/rbgtkinvisible.c +49 -0
  142. data/ext/gtk2/rbgtkitem.c +60 -0
  143. data/ext/gtk2/rbgtkitemfactory.c +299 -0
  144. data/ext/gtk2/rbgtklabel.c +139 -0
  145. data/ext/gtk2/rbgtklayout.c +94 -0
  146. data/ext/gtk2/rbgtklinkbutton.c +65 -0
  147. data/ext/gtk2/rbgtkliststore.c +411 -0
  148. data/ext/gtk2/rbgtkmacros.h +39 -0
  149. data/ext/gtk2/rbgtkmenu.c +171 -0
  150. data/ext/gtk2/rbgtkmenubar.c +45 -0
  151. data/ext/gtk2/rbgtkmenuitem.c +111 -0
  152. data/ext/gtk2/rbgtkmenushell.c +108 -0
  153. data/ext/gtk2/rbgtkmenutoolbutton.c +74 -0
  154. data/ext/gtk2/rbgtkmessagedialog.c +89 -0
  155. data/ext/gtk2/rbgtkmisc.c +70 -0
  156. data/ext/gtk2/rbgtknotebook.c +412 -0
  157. data/ext/gtk2/rbgtkobject.c +144 -0
  158. data/ext/gtk2/rbgtkoptionmenu.c +72 -0
  159. data/ext/gtk2/rbgtkpagesetup.c +201 -0
  160. data/ext/gtk2/rbgtkpagesetupunixdialog.c +87 -0
  161. data/ext/gtk2/rbgtkpaned.c +114 -0
  162. data/ext/gtk2/rbgtkpapersize.c +186 -0
  163. data/ext/gtk2/rbgtkplug.c +91 -0
  164. data/ext/gtk2/rbgtkprintcontext.c +127 -0
  165. data/ext/gtk2/rbgtkprinter.c +154 -0
  166. data/ext/gtk2/rbgtkprintjob.c +149 -0
  167. data/ext/gtk2/rbgtkprintoperation.c +156 -0
  168. data/ext/gtk2/rbgtkprintoperationpreview.c +61 -0
  169. data/ext/gtk2/rbgtkprintsettings.c +842 -0
  170. data/ext/gtk2/rbgtkprintunixdialog.c +86 -0
  171. data/ext/gtk2/rbgtkprogress.c +31 -0
  172. data/ext/gtk2/rbgtkprogressbar.c +71 -0
  173. data/ext/gtk2/rbgtkradioaction.c +120 -0
  174. data/ext/gtk2/rbgtkradiobutton.c +90 -0
  175. data/ext/gtk2/rbgtkradiomenuitem.c +148 -0
  176. data/ext/gtk2/rbgtkradiotoolbutton.c +132 -0
  177. data/ext/gtk2/rbgtkrange.c +71 -0
  178. data/ext/gtk2/rbgtkrc.c +217 -0
  179. data/ext/gtk2/rbgtkrcstyle.c +182 -0
  180. data/ext/gtk2/rbgtkrecentaction.c +60 -0
  181. data/ext/gtk2/rbgtkrecentchooser.c +216 -0
  182. data/ext/gtk2/rbgtkrecentchooserdialog.c +62 -0
  183. data/ext/gtk2/rbgtkrecentchoosermenu.c +50 -0
  184. data/ext/gtk2/rbgtkrecentchooserwidget.c +48 -0
  185. data/ext/gtk2/rbgtkrecentdata.c +144 -0
  186. data/ext/gtk2/rbgtkrecentfilter.c +170 -0
  187. data/ext/gtk2/rbgtkrecentfilterinfo.c +181 -0
  188. data/ext/gtk2/rbgtkrecentinfo.c +216 -0
  189. data/ext/gtk2/rbgtkrecentmanager.c +149 -0
  190. data/ext/gtk2/rbgtkruler.c +71 -0
  191. data/ext/gtk2/rbgtkscale.c +50 -0
  192. data/ext/gtk2/rbgtkscalebutton.c +75 -0
  193. data/ext/gtk2/rbgtkscrollbar.c +31 -0
  194. data/ext/gtk2/rbgtkscrolledwindow.c +124 -0
  195. data/ext/gtk2/rbgtkselection.c +171 -0
  196. data/ext/gtk2/rbgtkselectiondata.c +284 -0
  197. data/ext/gtk2/rbgtkseparator.c +31 -0
  198. data/ext/gtk2/rbgtkseparatormenuitem.c +39 -0
  199. data/ext/gtk2/rbgtkseparatortoolitem.c +38 -0
  200. data/ext/gtk2/rbgtksettings.c +229 -0
  201. data/ext/gtk2/rbgtksizegroup.c +68 -0
  202. data/ext/gtk2/rbgtksocket.c +80 -0
  203. data/ext/gtk2/rbgtkspinbutton.c +137 -0
  204. data/ext/gtk2/rbgtkspinner.c +61 -0
  205. data/ext/gtk2/rbgtkstatusbar.c +77 -0
  206. data/ext/gtk2/rbgtkstatusicon.c +90 -0
  207. data/ext/gtk2/rbgtkstock.c +230 -0
  208. data/ext/gtk2/rbgtkstyle.c +642 -0
  209. data/ext/gtk2/rbgtktable.c +177 -0
  210. data/ext/gtk2/rbgtktargetlist.c +125 -0
  211. data/ext/gtk2/rbgtktearoffmenuitem.c +41 -0
  212. data/ext/gtk2/rbgtktextappearance.c +172 -0
  213. data/ext/gtk2/rbgtktextattributes.c +203 -0
  214. data/ext/gtk2/rbgtktextbuffer.c +886 -0
  215. data/ext/gtk2/rbgtktextchild.c +55 -0
  216. data/ext/gtk2/rbgtktextiter.c +506 -0
  217. data/ext/gtk2/rbgtktextmark.c +76 -0
  218. data/ext/gtk2/rbgtktexttag.c +71 -0
  219. data/ext/gtk2/rbgtktexttagtable.c +97 -0
  220. data/ext/gtk2/rbgtktextview.c +326 -0
  221. data/ext/gtk2/rbgtktoggleaction.c +59 -0
  222. data/ext/gtk2/rbgtktogglebutton.c +88 -0
  223. data/ext/gtk2/rbgtktoggletoolbutton.c +54 -0
  224. data/ext/gtk2/rbgtktoolbar.c +315 -0
  225. data/ext/gtk2/rbgtktoolbutton.c +53 -0
  226. data/ext/gtk2/rbgtktoolitem.c +157 -0
  227. data/ext/gtk2/rbgtktooltip.c +82 -0
  228. data/ext/gtk2/rbgtktooltips.c +104 -0
  229. data/ext/gtk2/rbgtktreedragdest.c +28 -0
  230. data/ext/gtk2/rbgtktreedragsource.c +28 -0
  231. data/ext/gtk2/rbgtktreeiter.c +251 -0
  232. data/ext/gtk2/rbgtktreemodel.c +282 -0
  233. data/ext/gtk2/rbgtktreemodelfilter.c +198 -0
  234. data/ext/gtk2/rbgtktreemodelsort.c +112 -0
  235. data/ext/gtk2/rbgtktreepath.c +191 -0
  236. data/ext/gtk2/rbgtktreerowreference.c +171 -0
  237. data/ext/gtk2/rbgtktreeselection.c +213 -0
  238. data/ext/gtk2/rbgtktreesortable.c +123 -0
  239. data/ext/gtk2/rbgtktreestore.c +362 -0
  240. data/ext/gtk2/rbgtktreeview.c +746 -0
  241. data/ext/gtk2/rbgtktreeviewcolumn.c +289 -0
  242. data/ext/gtk2/rbgtkuimanager.c +189 -0
  243. data/ext/gtk2/rbgtkvbbox.c +42 -0
  244. data/ext/gtk2/rbgtkvbox.c +47 -0
  245. data/ext/gtk2/rbgtkviewport.c +44 -0
  246. data/ext/gtk2/rbgtkvolumebutton.c +47 -0
  247. data/ext/gtk2/rbgtkvpaned.c +42 -0
  248. data/ext/gtk2/rbgtkvruler.c +41 -0
  249. data/ext/gtk2/rbgtkvscale.c +54 -0
  250. data/ext/gtk2/rbgtkvscrollbar.c +47 -0
  251. data/ext/gtk2/rbgtkvseparator.c +41 -0
  252. data/ext/gtk2/rbgtkwidget.c +1223 -0
  253. data/ext/gtk2/rbgtkwindow.c +588 -0
  254. data/ext/gtk2/rbgtkwindowgroup.c +56 -0
  255. data/extconf.rb +49 -0
  256. data/lib/2.0/gtk2.so +0 -0
  257. data/lib/2.1/gtk2.so +0 -0
  258. data/lib/2.2/gtk2.so +0 -0
  259. data/lib/gtk2.rb +13 -0
  260. data/lib/gtk2/base.rb +105 -0
  261. data/sample/gtk-demo/README +7 -0
  262. data/sample/gtk-demo/alphatest.png +0 -0
  263. data/sample/gtk-demo/apple-red.png +0 -0
  264. data/sample/gtk-demo/appwindow.rb +233 -0
  265. data/sample/gtk-demo/background.jpg +0 -0
  266. data/sample/gtk-demo/builder.rb +51 -0
  267. data/sample/gtk-demo/button_box.rb +84 -0
  268. data/sample/gtk-demo/cairo-arc-negative.rb +41 -0
  269. data/sample/gtk-demo/cairo-arc.rb +41 -0
  270. data/sample/gtk-demo/cairo-clip-image.rb +51 -0
  271. data/sample/gtk-demo/cairo-clip-rectangle.rb +35 -0
  272. data/sample/gtk-demo/cairo-clip.rb +35 -0
  273. data/sample/gtk-demo/cairo-curve-rectangle.rb +76 -0
  274. data/sample/gtk-demo/cairo-curve-to.rb +43 -0
  275. data/sample/gtk-demo/cairo-dash.rb +39 -0
  276. data/sample/gtk-demo/cairo-fill-and-stroke.rb +32 -0
  277. data/sample/gtk-demo/cairo-fill-and-stroke2.rb +38 -0
  278. data/sample/gtk-demo/cairo-gradient.rb +35 -0
  279. data/sample/gtk-demo/cairo-image-pattern.rb +39 -0
  280. data/sample/gtk-demo/cairo-image.rb +49 -0
  281. data/sample/gtk-demo/cairo-line-cap.rb +53 -0
  282. data/sample/gtk-demo/cairo-line-join.rb +41 -0
  283. data/sample/gtk-demo/cairo-long-lines.rb +41 -0
  284. data/sample/gtk-demo/cairo-operator.rb +83 -0
  285. data/sample/gtk-demo/cairo-path.rb +28 -0
  286. data/sample/gtk-demo/cairo-pattern-fill.rb +88 -0
  287. data/sample/gtk-demo/cairo-self-intersect.rb +32 -0
  288. data/sample/gtk-demo/cairo-text-align-center.rb +45 -0
  289. data/sample/gtk-demo/cairo-text-extents.rb +46 -0
  290. data/sample/gtk-demo/cairo-text.rb +43 -0
  291. data/sample/gtk-demo/changedisplay.rb +408 -0
  292. data/sample/gtk-demo/clipboard.rb +72 -0
  293. data/sample/gtk-demo/colorsel.rb +84 -0
  294. data/sample/gtk-demo/common.rb +93 -0
  295. data/sample/gtk-demo/demo.ui +258 -0
  296. data/sample/gtk-demo/dialog.rb +137 -0
  297. data/sample/gtk-demo/drawingarea.rb +226 -0
  298. data/sample/gtk-demo/editable_cells.rb +172 -0
  299. data/sample/gtk-demo/entry_completion.rb +63 -0
  300. data/sample/gtk-demo/expander.rb +40 -0
  301. data/sample/gtk-demo/floppybuddy.gif +0 -0
  302. data/sample/gtk-demo/gnome-applets.png +0 -0
  303. data/sample/gtk-demo/gnome-calendar.png +0 -0
  304. data/sample/gtk-demo/gnome-foot.png +0 -0
  305. data/sample/gtk-demo/gnome-fs-directory.png +0 -0
  306. data/sample/gtk-demo/gnome-fs-regular.png +0 -0
  307. data/sample/gtk-demo/gnome-gimp.png +0 -0
  308. data/sample/gtk-demo/gnome-gmush.png +0 -0
  309. data/sample/gtk-demo/gnome-gsame.png +0 -0
  310. data/sample/gtk-demo/gnu-keys.png +0 -0
  311. data/sample/gtk-demo/gtk-logo-rgb.gif +0 -0
  312. data/sample/gtk-demo/hypertext.rb +211 -0
  313. data/sample/gtk-demo/iconview.rb +109 -0
  314. data/sample/gtk-demo/images.rb +197 -0
  315. data/sample/gtk-demo/item_factory.rb +94 -0
  316. data/sample/gtk-demo/list_store.rb +138 -0
  317. data/sample/gtk-demo/main.rb +386 -0
  318. data/sample/gtk-demo/menus.rb +172 -0
  319. data/sample/gtk-demo/panes.rb +156 -0
  320. data/sample/gtk-demo/pixbufs.rb +176 -0
  321. data/sample/gtk-demo/printing.rb +128 -0
  322. data/sample/gtk-demo/rotated_text.rb +84 -0
  323. data/sample/gtk-demo/ruby-gnome2-logo.png +0 -0
  324. data/sample/gtk-demo/sizegroup.rb +118 -0
  325. data/sample/gtk-demo/stock_browser.rb +235 -0
  326. data/sample/gtk-demo/textview.rb +436 -0
  327. data/sample/gtk-demo/tree_store.rb +270 -0
  328. data/sample/misc/aboutdialog.rb +42 -0
  329. data/sample/misc/aboutdialog2.rb +42 -0
  330. data/sample/misc/alpha-demo.rb +70 -0
  331. data/sample/misc/assistant.rb +347 -0
  332. data/sample/misc/bindings.rb +107 -0
  333. data/sample/misc/button.rb +69 -0
  334. data/sample/misc/button2.rb +28 -0
  335. data/sample/misc/buttonbox.rb +93 -0
  336. data/sample/misc/cairo-pong.rb +215 -0
  337. data/sample/misc/calendar.rb +62 -0
  338. data/sample/misc/checkbutton.rb +46 -0
  339. data/sample/misc/colorselection.rb +25 -0
  340. data/sample/misc/combo_check.rb +71 -0
  341. data/sample/misc/combobox.rb +86 -0
  342. data/sample/misc/composited-windows.rb +113 -0
  343. data/sample/misc/cursor.rb +32 -0
  344. data/sample/misc/dialog.rb +44 -0
  345. data/sample/misc/dialog2.rb +39 -0
  346. data/sample/misc/dnd.rb +65 -0
  347. data/sample/misc/dndtreeview.rb +56 -0
  348. data/sample/misc/drag-move.rb +131 -0
  349. data/sample/misc/drawing.rb +90 -0
  350. data/sample/misc/entry.rb +34 -0
  351. data/sample/misc/entrycompletion.rb +39 -0
  352. data/sample/misc/expander.rb +27 -0
  353. data/sample/misc/filechooser.rb +49 -0
  354. data/sample/misc/fileselection.rb +26 -0
  355. data/sample/misc/frame.rb +69 -0
  356. data/sample/misc/gc.rb +59 -0
  357. data/sample/misc/gdkscreen.rb +32 -0
  358. data/sample/misc/gnome-logo-icon.png +0 -0
  359. data/sample/misc/helloworld.rb +35 -0
  360. data/sample/misc/iconview.rb +38 -0
  361. data/sample/misc/image.rb +42 -0
  362. data/sample/misc/infobar.rb +24 -0
  363. data/sample/misc/itemfactory.rb +73 -0
  364. data/sample/misc/itemfactory2.rb +74 -0
  365. data/sample/misc/keyboard_grab.rb +29 -0
  366. data/sample/misc/label.rb +33 -0
  367. data/sample/misc/linkbutton.rb +42 -0
  368. data/sample/misc/listview.rb +92 -0
  369. data/sample/misc/menu.rb +81 -0
  370. data/sample/misc/misc_button.rb +59 -0
  371. data/sample/misc/mouse-gesture.rb +465 -0
  372. data/sample/misc/pangorenderer.rb +66 -0
  373. data/sample/misc/pointer_grab.rb +34 -0
  374. data/sample/misc/print.rb +247 -0
  375. data/sample/misc/properties.rb +85 -0
  376. data/sample/misc/radiobutton.rb +47 -0
  377. data/sample/misc/recentchooserdialog.rb +59 -0
  378. data/sample/misc/rgtk+cairo.rb +44 -0
  379. data/sample/misc/scalebutton.rb +25 -0
  380. data/sample/misc/settings.rb +41 -0
  381. data/sample/misc/statusicon.rb +123 -0
  382. data/sample/misc/stock.rb +36 -0
  383. data/sample/misc/style_property.rb +67 -0
  384. data/sample/misc/style_property.rc +19 -0
  385. data/sample/misc/t-gtkplug.rb +58 -0
  386. data/sample/misc/t-gtksocket.rb +65 -0
  387. data/sample/misc/test.xpm +92 -0
  388. data/sample/misc/textbuffer_serialize.rb +130 -0
  389. data/sample/misc/threads.rb +72 -0
  390. data/sample/misc/to_drawable.rb +42 -0
  391. data/sample/misc/togglebutton.rb +34 -0
  392. data/sample/misc/toolbar.rb +55 -0
  393. data/sample/misc/tooltips.rb +204 -0
  394. data/sample/misc/tree_combo.rb +85 -0
  395. data/sample/misc/tree_progress.rb +69 -0
  396. data/sample/misc/treemodelfilter.rb +55 -0
  397. data/sample/misc/treeview.rb +71 -0
  398. data/sample/misc/uimanager.rb +148 -0
  399. data/sample/misc/uimanager2.rb +91 -0
  400. data/sample/misc/uimanager2.xml +36 -0
  401. data/sample/misc/window.rb +24 -0
  402. data/sample/misc/xbm_cursor.rb +43 -0
  403. data/sample/testgtk/3DRings.xpm +116 -0
  404. data/sample/testgtk/FilesQueue.xpm +98 -0
  405. data/sample/testgtk/Modeller.xpm +117 -0
  406. data/sample/testgtk/README +14 -0
  407. data/sample/testgtk/button.rb +133 -0
  408. data/sample/testgtk/buttonbox.rb +108 -0
  409. data/sample/testgtk/check-n.xpm +21 -0
  410. data/sample/testgtk/check-y.xpm +21 -0
  411. data/sample/testgtk/checkbutton.rb +67 -0
  412. data/sample/testgtk/circles.xbm +46 -0
  413. data/sample/testgtk/colorselect.rb +33 -0
  414. data/sample/testgtk/dialog.rb +47 -0
  415. data/sample/testgtk/entry.rb +73 -0
  416. data/sample/testgtk/filesel.rb +67 -0
  417. data/sample/testgtk/fontselection.rb +56 -0
  418. data/sample/testgtk/gammacurve.rb +70 -0
  419. data/sample/testgtk/labels.rb +74 -0
  420. data/sample/testgtk/layout.rb +108 -0
  421. data/sample/testgtk/marble.xpm +408 -0
  422. data/sample/testgtk/menu.rb +79 -0
  423. data/sample/testgtk/notebook.rb +281 -0
  424. data/sample/testgtk/pixmap.rb +58 -0
  425. data/sample/testgtk/progressbar.rb +181 -0
  426. data/sample/testgtk/radiobutton.rb +61 -0
  427. data/sample/testgtk/range.rb +65 -0
  428. data/sample/testgtk/reparent.rb +91 -0
  429. data/sample/testgtk/rulers.rb +46 -0
  430. data/sample/testgtk/sample.rb +80 -0
  431. data/sample/testgtk/savedposition.rb +87 -0
  432. data/sample/testgtk/scrolledwindow.rb +67 -0
  433. data/sample/testgtk/shapedwindow.rb +99 -0
  434. data/sample/testgtk/spinbutton.rb +181 -0
  435. data/sample/testgtk/statusbar.rb +89 -0
  436. data/sample/testgtk/test.xpm +92 -0
  437. data/sample/testgtk/testgtk.rb +181 -0
  438. data/sample/testgtk/testgtkrc +146 -0
  439. data/sample/testgtk/testgtkrc2 +21 -0
  440. data/sample/testgtk/togglebutton.rb +53 -0
  441. data/sample/testgtk/toolbar.rb +82 -0
  442. data/sample/testgtk/tooltips.rb +41 -0
  443. data/sample/testgtk/wmhints.rb +40 -0
  444. data/test/gtk-test-utils.rb +15 -0
  445. data/test/run-test.rb +32 -0
  446. data/test/test_gc.rb +25 -0
  447. data/test/test_gdk.rb +18 -0
  448. data/test/test_gdk_color.rb +10 -0
  449. data/test/test_gdk_display.rb +37 -0
  450. data/test/test_gdk_event.rb +23 -0
  451. data/test/test_gdk_gc.rb +7 -0
  452. data/test/test_gdk_geometry.rb +24 -0
  453. data/test/test_gdk_keymap.rb +8 -0
  454. data/test/test_gdk_pango.rb +9 -0
  455. data/test/test_gdk_pixbuf.rb +34 -0
  456. data/test/test_gdk_rectangle.rb +24 -0
  457. data/test/test_gdk_selection_data.rb +17 -0
  458. data/test/test_gdk_window.rb +37 -0
  459. data/test/test_gdk_window_attribute.rb +9 -0
  460. data/test/test_gtk_about_dialog.rb +14 -0
  461. data/test/test_gtk_accel_group_entry.rb +24 -0
  462. data/test/test_gtk_accel_key.rb +24 -0
  463. data/test/test_gtk_allocation.rb +24 -0
  464. data/test/test_gtk_border.rb +24 -0
  465. data/test/test_gtk_buildable.rb +66 -0
  466. data/test/test_gtk_builder.rb +188 -0
  467. data/test/test_gtk_entry.rb +18 -0
  468. data/test/test_gtk_icon_theme.rb +35 -0
  469. data/test/test_gtk_image.rb +8 -0
  470. data/test/test_gtk_infobar.rb +29 -0
  471. data/test/test_gtk_list_store.rb +92 -0
  472. data/test/test_gtk_menu_item.rb +13 -0
  473. data/test/test_gtk_rc_style.rb +14 -0
  474. data/test/test_gtk_recent_data.rb +24 -0
  475. data/test/test_gtk_recent_filter_info.rb +26 -0
  476. data/test/test_gtk_tree_path.rb +20 -0
  477. data/test/test_gtk_unix_print.rb +14 -0
  478. data/test/test_gtk_widget.rb +32 -0
  479. data/vendor/local/bin/gtk-builder-convert +799 -0
  480. data/vendor/local/bin/gtk-demo.exe +0 -0
  481. data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
  482. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  483. data/vendor/local/bin/libgailutil-18.dll +0 -0
  484. data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
  485. data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
  486. data/vendor/local/etc/gtk-2.0/gtkrc +1 -0
  487. data/vendor/local/etc/gtk-2.0/im-multipress.conf +22 -0
  488. data/vendor/local/include/gail-1.0/gail/gailwidget.h +65 -0
  489. data/vendor/local/include/gail-1.0/libgail-util/gail-util.h +2 -0
  490. data/vendor/local/include/gail-1.0/libgail-util/gailmisc.h +82 -0
  491. data/vendor/local/include/gail-1.0/libgail-util/gailtextutil.h +87 -0
  492. data/vendor/local/include/gtk-2.0/gdk/gdk.h +241 -0
  493. data/vendor/local/include/gtk-2.0/gdk/gdkapplaunchcontext.h +76 -0
  494. data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +59 -0
  495. data/vendor/local/include/gtk-2.0/gdk/gdkcolor.h +176 -0
  496. data/vendor/local/include/gtk-2.0/gdk/gdkcursor.h +168 -0
  497. data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +229 -0
  498. data/vendor/local/include/gtk-2.0/gdk/gdkdisplaymanager.h +67 -0
  499. data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +186 -0
  500. data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +436 -0
  501. data/vendor/local/include/gtk-2.0/gdk/gdkenumtypes.h +137 -0
  502. data/vendor/local/include/gtk-2.0/gdk/gdkevents.h +566 -0
  503. data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +138 -0
  504. data/vendor/local/include/gtk-2.0/gdk/gdkgc.h +298 -0
  505. data/vendor/local/include/gtk-2.0/gdk/gdki18n.h +59 -0
  506. data/vendor/local/include/gtk-2.0/gdk/gdkimage.h +145 -0
  507. data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +192 -0
  508. data/vendor/local/include/gtk-2.0/gdk/gdkkeys.h +134 -0
  509. data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms-compat.h +2208 -0
  510. data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms.h +2221 -0
  511. data/vendor/local/include/gtk-2.0/gdk/gdkpango.h +166 -0
  512. data/vendor/local/include/gtk-2.0/gdk/gdkpixbuf.h +115 -0
  513. data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +136 -0
  514. data/vendor/local/include/gtk-2.0/gdk/gdkprivate.h +60 -0
  515. data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +128 -0
  516. data/vendor/local/include/gtk-2.0/gdk/gdkregion.h +127 -0
  517. data/vendor/local/include/gtk-2.0/gdk/gdkrgb.h +149 -0
  518. data/vendor/local/include/gtk-2.0/gdk/gdkscreen.h +132 -0
  519. data/vendor/local/include/gtk-2.0/gdk/gdkselection.h +111 -0
  520. data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +64 -0
  521. data/vendor/local/include/gtk-2.0/gdk/gdktestutils.h +49 -0
  522. data/vendor/local/include/gtk-2.0/gdk/gdktypes.h +226 -0
  523. data/vendor/local/include/gtk-2.0/gdk/gdkvisual.h +147 -0
  524. data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +129 -0
  525. data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +743 -0
  526. data/vendor/local/include/gtk-2.0/gtk/gtk.h +248 -0
  527. data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +157 -0
  528. data/vendor/local/include/gtk-2.0/gtk/gtkaccelgroup.h +216 -0
  529. data/vendor/local/include/gtk-2.0/gtk/gtkaccellabel.h +114 -0
  530. data/vendor/local/include/gtk-2.0/gtk/gtkaccelmap.h +101 -0
  531. data/vendor/local/include/gtk-2.0/gtk/gtkaccessible.h +80 -0
  532. data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +180 -0
  533. data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +184 -0
  534. data/vendor/local/include/gtk-2.0/gtk/gtkactivatable.h +88 -0
  535. data/vendor/local/include/gtk-2.0/gtk/gtkadjustment.h +121 -0
  536. data/vendor/local/include/gtk-2.0/gtk/gtkalignment.h +94 -0
  537. data/vendor/local/include/gtk-2.0/gtk/gtkarrow.h +77 -0
  538. data/vendor/local/include/gtk-2.0/gtk/gtkaspectframe.h +84 -0
  539. data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +176 -0
  540. data/vendor/local/include/gtk-2.0/gtk/gtkbbox.h +105 -0
  541. data/vendor/local/include/gtk-2.0/gtk/gtkbin.h +70 -0
  542. data/vendor/local/include/gtk-2.0/gtk/gtkbindings.h +158 -0
  543. data/vendor/local/include/gtk-2.0/gtk/gtkbox.h +159 -0
  544. data/vendor/local/include/gtk-2.0/gtk/gtkbuildable.h +176 -0
  545. data/vendor/local/include/gtk-2.0/gtk/gtkbuilder.h +143 -0
  546. data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +147 -0
  547. data/vendor/local/include/gtk-2.0/gtk/gtkcalendar.h +209 -0
  548. data/vendor/local/include/gtk-2.0/gtk/gtkcelleditable.h +64 -0
  549. data/vendor/local/include/gtk-2.0/gtk/gtkcelllayout.h +122 -0
  550. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderer.h +195 -0
  551. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendereraccel.h +92 -0
  552. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderercombo.h +64 -0
  553. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h +71 -0
  554. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererprogress.h +74 -0
  555. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspin.h +57 -0
  556. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspinner.h +67 -0
  557. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertext.h +105 -0
  558. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertoggle.h +85 -0
  559. data/vendor/local/include/gtk-2.0/gtk/gtkcellview.h +81 -0
  560. data/vendor/local/include/gtk-2.0/gtk/gtkcheckbutton.h +82 -0
  561. data/vendor/local/include/gtk-2.0/gtk/gtkcheckmenuitem.h +102 -0
  562. data/vendor/local/include/gtk-2.0/gtk/gtkclipboard.h +157 -0
  563. data/vendor/local/include/gtk-2.0/gtk/gtkclist.h +792 -0
  564. data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +103 -0
  565. data/vendor/local/include/gtk-2.0/gtk/gtkcolorsel.h +135 -0
  566. data/vendor/local/include/gtk-2.0/gtk/gtkcolorseldialog.h +82 -0
  567. data/vendor/local/include/gtk-2.0/gtk/gtkcombo.h +118 -0
  568. data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +153 -0
  569. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +81 -0
  570. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
  571. data/vendor/local/include/gtk-2.0/gtk/gtkcontainer.h +229 -0
  572. data/vendor/local/include/gtk-2.0/gtk/gtkctree.h +445 -0
  573. data/vendor/local/include/gtk-2.0/gtk/gtkcurve.h +106 -0
  574. data/vendor/local/include/gtk-2.0/gtk/gtkdebug.h +79 -0
  575. data/vendor/local/include/gtk-2.0/gtk/gtkdialog.h +186 -0
  576. data/vendor/local/include/gtk-2.0/gtk/gtkdnd.h +188 -0
  577. data/vendor/local/include/gtk-2.0/gtk/gtkdrawingarea.h +82 -0
  578. data/vendor/local/include/gtk-2.0/gtk/gtkeditable.h +117 -0
  579. data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +334 -0
  580. data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +133 -0
  581. data/vendor/local/include/gtk-2.0/gtk/gtkentrycompletion.h +132 -0
  582. data/vendor/local/include/gtk-2.0/gtk/gtkenums.h +584 -0
  583. data/vendor/local/include/gtk-2.0/gtk/gtkeventbox.h +71 -0
  584. data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +98 -0
  585. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +264 -0
  586. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +92 -0
  587. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserdialog.h +74 -0
  588. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserwidget.h +67 -0
  589. data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +83 -0
  590. data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +125 -0
  591. data/vendor/local/include/gtk-2.0/gtk/gtkfixed.h +90 -0
  592. data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +100 -0
  593. data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +220 -0
  594. data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +96 -0
  595. data/vendor/local/include/gtk-2.0/gtk/gtkgamma.h +82 -0
  596. data/vendor/local/include/gtk-2.0/gtk/gtkgc.h +49 -0
  597. data/vendor/local/include/gtk-2.0/gtk/gtkhandlebox.h +112 -0
  598. data/vendor/local/include/gtk-2.0/gtk/gtkhbbox.h +80 -0
  599. data/vendor/local/include/gtk-2.0/gtk/gtkhbox.h +68 -0
  600. data/vendor/local/include/gtk-2.0/gtk/gtkhpaned.h +65 -0
  601. data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +84 -0
  602. data/vendor/local/include/gtk-2.0/gtk/gtkhscale.h +71 -0
  603. data/vendor/local/include/gtk-2.0/gtk/gtkhscrollbar.h +70 -0
  604. data/vendor/local/include/gtk-2.0/gtk/gtkhseparator.h +68 -0
  605. data/vendor/local/include/gtk-2.0/gtk/gtkhsv.h +115 -0
  606. data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +189 -0
  607. data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +198 -0
  608. data/vendor/local/include/gtk-2.0/gtk/gtkiconview.h +242 -0
  609. data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +274 -0
  610. data/vendor/local/include/gtk-2.0/gtk/gtkimagemenuitem.h +86 -0
  611. data/vendor/local/include/gtk-2.0/gtk/gtkimcontext.h +132 -0
  612. data/vendor/local/include/gtk-2.0/gtk/gtkimcontextsimple.h +77 -0
  613. data/vendor/local/include/gtk-2.0/gtk/gtkimmodule.h +58 -0
  614. data/vendor/local/include/gtk-2.0/gtk/gtkimmulticontext.h +78 -0
  615. data/vendor/local/include/gtk-2.0/gtk/gtkinfobar.h +120 -0
  616. data/vendor/local/include/gtk-2.0/gtk/gtkinputdialog.h +100 -0
  617. data/vendor/local/include/gtk-2.0/gtk/gtkinvisible.h +78 -0
  618. data/vendor/local/include/gtk-2.0/gtk/gtkitem.h +81 -0
  619. data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +236 -0
  620. data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +207 -0
  621. data/vendor/local/include/gtk-2.0/gtk/gtklayout.h +138 -0
  622. data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +91 -0
  623. data/vendor/local/include/gtk-2.0/gtk/gtklist.h +138 -0
  624. data/vendor/local/include/gtk-2.0/gtk/gtklistitem.h +91 -0
  625. data/vendor/local/include/gtk-2.0/gtk/gtkliststore.h +147 -0
  626. data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +233 -0
  627. data/vendor/local/include/gtk-2.0/gtk/gtkmarshal.h +283 -0
  628. data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +219 -0
  629. data/vendor/local/include/gtk-2.0/gtk/gtkmenubar.h +92 -0
  630. data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +145 -0
  631. data/vendor/local/include/gtk-2.0/gtk/gtkmenushell.h +141 -0
  632. data/vendor/local/include/gtk-2.0/gtk/gtkmenutoolbutton.h +89 -0
  633. data/vendor/local/include/gtk-2.0/gtk/gtkmessagedialog.h +135 -0
  634. data/vendor/local/include/gtk-2.0/gtk/gtkmisc.h +85 -0
  635. data/vendor/local/include/gtk-2.0/gtk/gtkmodules.h +54 -0
  636. data/vendor/local/include/gtk-2.0/gtk/gtkmountoperation.h +83 -0
  637. data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +317 -0
  638. data/vendor/local/include/gtk-2.0/gtk/gtkobject.h +250 -0
  639. data/vendor/local/include/gtk-2.0/gtk/gtkoffscreenwindow.h +60 -0
  640. data/vendor/local/include/gtk-2.0/gtk/gtkoldeditable.h +126 -0
  641. data/vendor/local/include/gtk-2.0/gtk/gtkoptionmenu.h +88 -0
  642. data/vendor/local/include/gtk-2.0/gtk/gtkorientable.h +60 -0
  643. data/vendor/local/include/gtk-2.0/gtk/gtkpagesetup.h +108 -0
  644. data/vendor/local/include/gtk-2.0/gtk/gtkpaned.h +144 -0
  645. data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +101 -0
  646. data/vendor/local/include/gtk-2.0/gtk/gtkpixmap.h +83 -0
  647. data/vendor/local/include/gtk-2.0/gtk/gtkplug.h +105 -0
  648. data/vendor/local/include/gtk-2.0/gtk/gtkpreview.h +137 -0
  649. data/vendor/local/include/gtk-2.0/gtk/gtkprintcontext.h +71 -0
  650. data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +207 -0
  651. data/vendor/local/include/gtk-2.0/gtk/gtkprintoperationpreview.h +80 -0
  652. data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +234 -0
  653. data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +157 -0
  654. data/vendor/local/include/gtk-2.0/gtk/gtkprogress.h +120 -0
  655. data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +172 -0
  656. data/vendor/local/include/gtk-2.0/gtk/gtkradioaction.h +90 -0
  657. data/vendor/local/include/gtk-2.0/gtk/gtkradiobutton.h +94 -0
  658. data/vendor/local/include/gtk-2.0/gtk/gtkradiomenuitem.h +94 -0
  659. data/vendor/local/include/gtk-2.0/gtk/gtkradiotoolbutton.h +74 -0
  660. data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +215 -0
  661. data/vendor/local/include/gtk-2.0/gtk/gtkrc.h +271 -0
  662. data/vendor/local/include/gtk-2.0/gtk/gtkrecentaction.h +74 -0
  663. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooser.h +191 -0
  664. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserdialog.h +74 -0
  665. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchoosermenu.h +74 -0
  666. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserwidget.h +64 -0
  667. data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +94 -0
  668. data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +216 -0
  669. data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +136 -0
  670. data/vendor/local/include/gtk-2.0/gtk/gtkscale.h +111 -0
  671. data/vendor/local/include/gtk-2.0/gtk/gtkscalebutton.h +112 -0
  672. data/vendor/local/include/gtk-2.0/gtk/gtkscrollbar.h +72 -0
  673. data/vendor/local/include/gtk-2.0/gtk/gtkscrolledwindow.h +136 -0
  674. data/vendor/local/include/gtk-2.0/gtk/gtkselection.h +221 -0
  675. data/vendor/local/include/gtk-2.0/gtk/gtkseparator.h +66 -0
  676. data/vendor/local/include/gtk-2.0/gtk/gtkseparatormenuitem.h +68 -0
  677. data/vendor/local/include/gtk-2.0/gtk/gtkseparatortoolitem.h +72 -0
  678. data/vendor/local/include/gtk-2.0/gtk/gtksettings.h +139 -0
  679. data/vendor/local/include/gtk-2.0/gtk/gtkshow.h +39 -0
  680. data/vendor/local/include/gtk-2.0/gtk/gtksignal.h +151 -0
  681. data/vendor/local/include/gtk-2.0/gtk/gtksizegroup.h +111 -0
  682. data/vendor/local/include/gtk-2.0/gtk/gtksocket.h +102 -0
  683. data/vendor/local/include/gtk-2.0/gtk/gtkspinbutton.h +196 -0
  684. data/vendor/local/include/gtk-2.0/gtk/gtkspinner.h +65 -0
  685. data/vendor/local/include/gtk-2.0/gtk/gtkstatusbar.h +117 -0
  686. data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +157 -0
  687. data/vendor/local/include/gtk-2.0/gtk/gtkstock.h +1016 -0
  688. data/vendor/local/include/gtk-2.0/gtk/gtkstyle.h +945 -0
  689. data/vendor/local/include/gtk-2.0/gtk/gtktable.h +151 -0
  690. data/vendor/local/include/gtk-2.0/gtk/gtktearoffmenuitem.h +75 -0
  691. data/vendor/local/include/gtk-2.0/gtk/gtktestutils.h +71 -0
  692. data/vendor/local/include/gtk-2.0/gtk/gtktext.h +217 -0
  693. data/vendor/local/include/gtk-2.0/gtk/gtktextbuffer.h +409 -0
  694. data/vendor/local/include/gtk-2.0/gtk/gtktextbufferrichtext.h +96 -0
  695. data/vendor/local/include/gtk-2.0/gtk/gtktextchild.h +82 -0
  696. data/vendor/local/include/gtk-2.0/gtk/gtktextdisplay.h +112 -0
  697. data/vendor/local/include/gtk-2.0/gtk/gtktextiter.h +307 -0
  698. data/vendor/local/include/gtk-2.0/gtk/gtktextlayout.h +439 -0
  699. data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +106 -0
  700. data/vendor/local/include/gtk-2.0/gtk/gtktexttag.h +289 -0
  701. data/vendor/local/include/gtk-2.0/gtk/gtktexttagtable.h +101 -0
  702. data/vendor/local/include/gtk-2.0/gtk/gtktextview.h +376 -0
  703. data/vendor/local/include/gtk-2.0/gtk/gtktipsquery.h +110 -0
  704. data/vendor/local/include/gtk-2.0/gtk/gtktoggleaction.h +91 -0
  705. data/vendor/local/include/gtk-2.0/gtk/gtktogglebutton.h +97 -0
  706. data/vendor/local/include/gtk-2.0/gtk/gtktoggletoolbutton.h +77 -0
  707. data/vendor/local/include/gtk-2.0/gtk/gtktoolbar.h +288 -0
  708. data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +99 -0
  709. data/vendor/local/include/gtk-2.0/gtk/gtktoolitem.h +142 -0
  710. data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +99 -0
  711. data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +144 -0
  712. data/vendor/local/include/gtk-2.0/gtk/gtktoolshell.h +91 -0
  713. data/vendor/local/include/gtk-2.0/gtk/gtktooltip.h +77 -0
  714. data/vendor/local/include/gtk-2.0/gtk/gtktooltips.h +109 -0
  715. data/vendor/local/include/gtk-2.0/gtk/gtktree.h +132 -0
  716. data/vendor/local/include/gtk-2.0/gtk/gtktreednd.h +125 -0
  717. data/vendor/local/include/gtk-2.0/gtk/gtktreeitem.h +90 -0
  718. data/vendor/local/include/gtk-2.0/gtk/gtktreemodel.h +270 -0
  719. data/vendor/local/include/gtk-2.0/gtk/gtktreemodelfilter.h +109 -0
  720. data/vendor/local/include/gtk-2.0/gtk/gtktreemodelsort.h +106 -0
  721. data/vendor/local/include/gtk-2.0/gtk/gtktreeselection.h +125 -0
  722. data/vendor/local/include/gtk-2.0/gtk/gtktreesortable.h +103 -0
  723. data/vendor/local/include/gtk-2.0/gtk/gtktreestore.h +159 -0
  724. data/vendor/local/include/gtk-2.0/gtk/gtktreeview.h +431 -0
  725. data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +245 -0
  726. data/vendor/local/include/gtk-2.0/gtk/gtktypebuiltins.h +335 -0
  727. data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +264 -0
  728. data/vendor/local/include/gtk-2.0/gtk/gtkuimanager.h +153 -0
  729. data/vendor/local/include/gtk-2.0/gtk/gtkvbbox.h +82 -0
  730. data/vendor/local/include/gtk-2.0/gtk/gtkvbox.h +68 -0
  731. data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +51 -0
  732. data/vendor/local/include/gtk-2.0/gtk/gtkviewport.h +93 -0
  733. data/vendor/local/include/gtk-2.0/gtk/gtkvolumebutton.h +72 -0
  734. data/vendor/local/include/gtk-2.0/gtk/gtkvpaned.h +65 -0
  735. data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +84 -0
  736. data/vendor/local/include/gtk-2.0/gtk/gtkvscale.h +79 -0
  737. data/vendor/local/include/gtk-2.0/gtk/gtkvscrollbar.h +76 -0
  738. data/vendor/local/include/gtk-2.0/gtk/gtkvseparator.h +76 -0
  739. data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +1351 -0
  740. data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +452 -0
  741. data/vendor/local/lib/gailutil.def +15 -0
  742. data/vendor/local/lib/gdk-win32-2.0.def +744 -0
  743. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
  744. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll.a +0 -0
  745. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.la +41 -0
  746. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
  747. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll.a +0 -0
  748. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.la +41 -0
  749. data/vendor/local/lib/gtk-2.0/2.10.0/immodules.cache +7 -0
  750. data/vendor/local/lib/gtk-2.0/include/gdkconfig.h +34 -0
  751. data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
  752. data/vendor/local/lib/gtk-2.0/modules/libgail.dll.a +0 -0
  753. data/vendor/local/lib/gtk-2.0/modules/libgail.la +41 -0
  754. data/vendor/local/lib/gtk-win32-2.0.def +3833 -0
  755. data/vendor/local/lib/libgailutil.dll.a +0 -0
  756. data/vendor/local/lib/libgailutil.la +41 -0
  757. data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
  758. data/vendor/local/lib/libgdk-win32-2.0.la +41 -0
  759. data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
  760. data/vendor/local/lib/libgtk-win32-2.0.la +41 -0
  761. data/vendor/local/lib/pkgconfig/gail.pc +11 -0
  762. data/vendor/local/lib/pkgconfig/gdk-2.0.pc +12 -0
  763. data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +12 -0
  764. data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +15 -0
  765. data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +15 -0
  766. data/vendor/local/share/aclocal/gtk-2.0.m4 +196 -0
  767. data/vendor/local/share/gtk-2.0/demo/alphatest.png +0 -0
  768. data/vendor/local/share/gtk-2.0/demo/apple-red.png +0 -0
  769. data/vendor/local/share/gtk-2.0/demo/appwindow.c +591 -0
  770. data/vendor/local/share/gtk-2.0/demo/assistant.c +216 -0
  771. data/vendor/local/share/gtk-2.0/demo/background.jpg +0 -0
  772. data/vendor/local/share/gtk-2.0/demo/builder.c +68 -0
  773. data/vendor/local/share/gtk-2.0/demo/button_box.c +127 -0
  774. data/vendor/local/share/gtk-2.0/demo/changedisplay.c +646 -0
  775. data/vendor/local/share/gtk-2.0/demo/clipboard.c +326 -0
  776. data/vendor/local/share/gtk-2.0/demo/colorsel.c +145 -0
  777. data/vendor/local/share/gtk-2.0/demo/combobox.c +454 -0
  778. data/vendor/local/share/gtk-2.0/demo/demo.ui +258 -0
  779. data/vendor/local/share/gtk-2.0/demo/dialog.c +181 -0
  780. data/vendor/local/share/gtk-2.0/demo/drawingarea.c +314 -0
  781. data/vendor/local/share/gtk-2.0/demo/editable_cells.c +393 -0
  782. data/vendor/local/share/gtk-2.0/demo/entry_buffer.c +65 -0
  783. data/vendor/local/share/gtk-2.0/demo/entry_completion.c +97 -0
  784. data/vendor/local/share/gtk-2.0/demo/expander.c +58 -0
  785. data/vendor/local/share/gtk-2.0/demo/floppybuddy.gif +0 -0
  786. data/vendor/local/share/gtk-2.0/demo/gnome-applets.png +0 -0
  787. data/vendor/local/share/gtk-2.0/demo/gnome-calendar.png +0 -0
  788. data/vendor/local/share/gtk-2.0/demo/gnome-foot.png +0 -0
  789. data/vendor/local/share/gtk-2.0/demo/gnome-fs-directory.png +0 -0
  790. data/vendor/local/share/gtk-2.0/demo/gnome-fs-regular.png +0 -0
  791. data/vendor/local/share/gtk-2.0/demo/gnome-gimp.png +0 -0
  792. data/vendor/local/share/gtk-2.0/demo/gnome-gmush.png +0 -0
  793. data/vendor/local/share/gtk-2.0/demo/gnome-gsame.png +0 -0
  794. data/vendor/local/share/gtk-2.0/demo/gnu-keys.png +0 -0
  795. data/vendor/local/share/gtk-2.0/demo/gtk-logo-rgb.gif +0 -0
  796. data/vendor/local/share/gtk-2.0/demo/hypertext.c +315 -0
  797. data/vendor/local/share/gtk-2.0/demo/iconview.c +372 -0
  798. data/vendor/local/share/gtk-2.0/demo/iconview_edit.c +159 -0
  799. data/vendor/local/share/gtk-2.0/demo/images.c +464 -0
  800. data/vendor/local/share/gtk-2.0/demo/infobar.c +104 -0
  801. data/vendor/local/share/gtk-2.0/demo/links.c +84 -0
  802. data/vendor/local/share/gtk-2.0/demo/list_store.c +295 -0
  803. data/vendor/local/share/gtk-2.0/demo/menus.c +210 -0
  804. data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +587 -0
  805. data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +510 -0
  806. data/vendor/local/share/gtk-2.0/demo/panes.c +197 -0
  807. data/vendor/local/share/gtk-2.0/demo/pickers.c +73 -0
  808. data/vendor/local/share/gtk-2.0/demo/pixbufs.c +270 -0
  809. data/vendor/local/share/gtk-2.0/demo/printing.c +212 -0
  810. data/vendor/local/share/gtk-2.0/demo/rotated_text.c +241 -0
  811. data/vendor/local/share/gtk-2.0/demo/search_entry.c +335 -0
  812. data/vendor/local/share/gtk-2.0/demo/sizegroup.c +167 -0
  813. data/vendor/local/share/gtk-2.0/demo/spinner.c +94 -0
  814. data/vendor/local/share/gtk-2.0/demo/stock_browser.c +546 -0
  815. data/vendor/local/share/gtk-2.0/demo/textscroll.c +200 -0
  816. data/vendor/local/share/gtk-2.0/demo/textview.c +569 -0
  817. data/vendor/local/share/gtk-2.0/demo/toolpalette.c +799 -0
  818. data/vendor/local/share/gtk-2.0/demo/tree_store.c +450 -0
  819. data/vendor/local/share/gtk-2.0/demo/ui_manager.c +237 -0
  820. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +574 -0
  821. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +361 -0
  822. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +27 -0
  823. data/vendor/local/share/gtk-doc/html/gail-libgail-util/home.png +0 -0
  824. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +44 -0
  825. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.sgml +27 -0
  826. data/vendor/local/share/gtk-doc/html/gail-libgail-util/left-insensitive.png +0 -0
  827. data/vendor/local/share/gtk-doc/html/gail-libgail-util/left.png +0 -0
  828. data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +41 -0
  829. data/vendor/local/share/gtk-doc/html/gail-libgail-util/right-insensitive.png +0 -0
  830. data/vendor/local/share/gtk-doc/html/gail-libgail-util/right.png +0 -0
  831. data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +476 -0
  832. data/vendor/local/share/gtk-doc/html/gail-libgail-util/up-insensitive.png +0 -0
  833. data/vendor/local/share/gtk-doc/html/gail-libgail-util/up.png +0 -0
  834. data/vendor/local/share/gtk-doc/html/gdk2/GdkDisplay.html +1796 -0
  835. data/vendor/local/share/gtk-doc/html/gdk2/GdkDisplayManager.html +355 -0
  836. data/vendor/local/share/gtk-doc/html/gdk2/GdkScreen.html +2067 -0
  837. data/vendor/local/share/gtk-doc/html/gdk2/X_cursor.png +0 -0
  838. data/vendor/local/share/gtk-doc/html/gdk2/annotation-glossary.html +62 -0
  839. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-10.html +118 -0
  840. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-12.html +119 -0
  841. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-14.html +119 -0
  842. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-16.html +39 -0
  843. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-18.html +104 -0
  844. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-2.html +510 -0
  845. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-20.html +46 -0
  846. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-22.html +219 -0
  847. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-4.html +118 -0
  848. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-6.html +123 -0
  849. data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-8.html +110 -0
  850. data/vendor/local/share/gtk-doc/html/gdk2/api-index-deprecated.html +1047 -0
  851. data/vendor/local/share/gtk-doc/html/gdk2/api-index-full.html +3665 -0
  852. data/vendor/local/share/gtk-doc/html/gdk2/arrow.png +0 -0
  853. data/vendor/local/share/gtk-doc/html/gdk2/based_arrow_down.png +0 -0
  854. data/vendor/local/share/gtk-doc/html/gdk2/based_arrow_up.png +0 -0
  855. data/vendor/local/share/gtk-doc/html/gdk2/boat.png +0 -0
  856. data/vendor/local/share/gtk-doc/html/gdk2/bogosity.png +0 -0
  857. data/vendor/local/share/gtk-doc/html/gdk2/bottom_left_corner.png +0 -0
  858. data/vendor/local/share/gtk-doc/html/gdk2/bottom_right_corner.png +0 -0
  859. data/vendor/local/share/gtk-doc/html/gdk2/bottom_side.png +0 -0
  860. data/vendor/local/share/gtk-doc/html/gdk2/bottom_tee.png +0 -0
  861. data/vendor/local/share/gtk-doc/html/gdk2/box_spiral.png +0 -0
  862. data/vendor/local/share/gtk-doc/html/gdk2/center_ptr.png +0 -0
  863. data/vendor/local/share/gtk-doc/html/gdk2/circle.png +0 -0
  864. data/vendor/local/share/gtk-doc/html/gdk2/clock.png +0 -0
  865. data/vendor/local/share/gtk-doc/html/gdk2/coffee_mug.png +0 -0
  866. data/vendor/local/share/gtk-doc/html/gdk2/cross.png +0 -0
  867. data/vendor/local/share/gtk-doc/html/gdk2/cross_reverse.png +0 -0
  868. data/vendor/local/share/gtk-doc/html/gdk2/crosshair.png +0 -0
  869. data/vendor/local/share/gtk-doc/html/gdk2/diamond_cross.png +0 -0
  870. data/vendor/local/share/gtk-doc/html/gdk2/dot.png +0 -0
  871. data/vendor/local/share/gtk-doc/html/gdk2/dotbox.png +0 -0
  872. data/vendor/local/share/gtk-doc/html/gdk2/double_arrow.png +0 -0
  873. data/vendor/local/share/gtk-doc/html/gdk2/draft_large.png +0 -0
  874. data/vendor/local/share/gtk-doc/html/gdk2/draft_small.png +0 -0
  875. data/vendor/local/share/gtk-doc/html/gdk2/draped_box.png +0 -0
  876. data/vendor/local/share/gtk-doc/html/gdk2/exchange.png +0 -0
  877. data/vendor/local/share/gtk-doc/html/gdk2/fleur.png +0 -0
  878. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Application-launching.html +412 -0
  879. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Bitmaps-and-Pixmaps.html +753 -0
  880. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Cairo-Interaction.html +541 -0
  881. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Colormaps-and-Colors.html +1295 -0
  882. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Cursors.html +1290 -0
  883. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Drag-and-Drop.html +1217 -0
  884. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Drawing-Primitives.html +2611 -0
  885. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Event-Structures.html +2095 -0
  886. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Events.html +1650 -0
  887. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Fonts.html +1781 -0
  888. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-GdkRGB.html +1435 -0
  889. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-General.html +1169 -0
  890. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Graphics-Contexts.html +2201 -0
  891. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Images.html +1090 -0
  892. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Input-Devices.html +1288 -0
  893. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Input.html +401 -0
  894. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Keyboard-Handling.html +1362 -0
  895. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Pango-Interaction.html +1074 -0
  896. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Pixbufs.html +744 -0
  897. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Points-Rectangles-and-Regions.html +1367 -0
  898. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Properties-and-Atoms.html +1314 -0
  899. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Selections.html +845 -0
  900. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Testing.html +276 -0
  901. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Threads.html +1053 -0
  902. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Visuals.html +1085 -0
  903. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Windows.html +8583 -0
  904. data/vendor/local/share/gtk-doc/html/gdk2/gdk2-X-Window-System-Interaction.html +3528 -0
  905. data/vendor/local/share/gtk-doc/html/gdk2/gdk2.devhelp2 +949 -0
  906. data/vendor/local/share/gtk-doc/html/gdk2/gobbler.png +0 -0
  907. data/vendor/local/share/gtk-doc/html/gdk2/gumby.png +0 -0
  908. data/vendor/local/share/gtk-doc/html/gdk2/hand1.png +0 -0
  909. data/vendor/local/share/gtk-doc/html/gdk2/hand2.png +0 -0
  910. data/vendor/local/share/gtk-doc/html/gdk2/heart.png +0 -0
  911. data/vendor/local/share/gtk-doc/html/gdk2/home.png +0 -0
  912. data/vendor/local/share/gtk-doc/html/gdk2/icon.png +0 -0
  913. data/vendor/local/share/gtk-doc/html/gdk2/index.html +143 -0
  914. data/vendor/local/share/gtk-doc/html/gdk2/index.sgml +1151 -0
  915. data/vendor/local/share/gtk-doc/html/gdk2/iron_cross.png +0 -0
  916. data/vendor/local/share/gtk-doc/html/gdk2/left-insensitive.png +0 -0
  917. data/vendor/local/share/gtk-doc/html/gdk2/left.png +0 -0
  918. data/vendor/local/share/gtk-doc/html/gdk2/left_ptr.png +0 -0
  919. data/vendor/local/share/gtk-doc/html/gdk2/left_side.png +0 -0
  920. data/vendor/local/share/gtk-doc/html/gdk2/left_tee.png +0 -0
  921. data/vendor/local/share/gtk-doc/html/gdk2/leftbutton.png +0 -0
  922. data/vendor/local/share/gtk-doc/html/gdk2/ll_angle.png +0 -0
  923. data/vendor/local/share/gtk-doc/html/gdk2/lr_angle.png +0 -0
  924. data/vendor/local/share/gtk-doc/html/gdk2/man.png +0 -0
  925. data/vendor/local/share/gtk-doc/html/gdk2/middlebutton.png +0 -0
  926. data/vendor/local/share/gtk-doc/html/gdk2/mouse.png +0 -0
  927. data/vendor/local/share/gtk-doc/html/gdk2/multihead.html +204 -0
  928. data/vendor/local/share/gtk-doc/html/gdk2/pencil.png +0 -0
  929. data/vendor/local/share/gtk-doc/html/gdk2/pirate.png +0 -0
  930. data/vendor/local/share/gtk-doc/html/gdk2/plus.png +0 -0
  931. data/vendor/local/share/gtk-doc/html/gdk2/question_arrow.png +0 -0
  932. data/vendor/local/share/gtk-doc/html/gdk2/reference.html +131 -0
  933. data/vendor/local/share/gtk-doc/html/gdk2/right-insensitive.png +0 -0
  934. data/vendor/local/share/gtk-doc/html/gdk2/right.png +0 -0
  935. data/vendor/local/share/gtk-doc/html/gdk2/right_ptr.png +0 -0
  936. data/vendor/local/share/gtk-doc/html/gdk2/right_side.png +0 -0
  937. data/vendor/local/share/gtk-doc/html/gdk2/right_tee.png +0 -0
  938. data/vendor/local/share/gtk-doc/html/gdk2/rightbutton.png +0 -0
  939. data/vendor/local/share/gtk-doc/html/gdk2/rotated-text.png +0 -0
  940. data/vendor/local/share/gtk-doc/html/gdk2/rtl_logo.png +0 -0
  941. data/vendor/local/share/gtk-doc/html/gdk2/sailboat.png +0 -0
  942. data/vendor/local/share/gtk-doc/html/gdk2/sb_down_arrow.png +0 -0
  943. data/vendor/local/share/gtk-doc/html/gdk2/sb_h_double_arrow.png +0 -0
  944. data/vendor/local/share/gtk-doc/html/gdk2/sb_left_arrow.png +0 -0
  945. data/vendor/local/share/gtk-doc/html/gdk2/sb_right_arrow.png +0 -0
  946. data/vendor/local/share/gtk-doc/html/gdk2/sb_up_arrow.png +0 -0
  947. data/vendor/local/share/gtk-doc/html/gdk2/sb_v_double_arrow.png +0 -0
  948. data/vendor/local/share/gtk-doc/html/gdk2/shuttle.png +0 -0
  949. data/vendor/local/share/gtk-doc/html/gdk2/sizing.png +0 -0
  950. data/vendor/local/share/gtk-doc/html/gdk2/spider.png +0 -0
  951. data/vendor/local/share/gtk-doc/html/gdk2/spraycan.png +0 -0
  952. data/vendor/local/share/gtk-doc/html/gdk2/star.png +0 -0
  953. data/vendor/local/share/gtk-doc/html/gdk2/style.css +476 -0
  954. data/vendor/local/share/gtk-doc/html/gdk2/target.png +0 -0
  955. data/vendor/local/share/gtk-doc/html/gdk2/tcross.png +0 -0
  956. data/vendor/local/share/gtk-doc/html/gdk2/top_left_arrow.png +0 -0
  957. data/vendor/local/share/gtk-doc/html/gdk2/top_left_corner.png +0 -0
  958. data/vendor/local/share/gtk-doc/html/gdk2/top_right_corner.png +0 -0
  959. data/vendor/local/share/gtk-doc/html/gdk2/top_side.png +0 -0
  960. data/vendor/local/share/gtk-doc/html/gdk2/top_tee.png +0 -0
  961. data/vendor/local/share/gtk-doc/html/gdk2/trek.png +0 -0
  962. data/vendor/local/share/gtk-doc/html/gdk2/ul_angle.png +0 -0
  963. data/vendor/local/share/gtk-doc/html/gdk2/umbrella.png +0 -0
  964. data/vendor/local/share/gtk-doc/html/gdk2/up-insensitive.png +0 -0
  965. data/vendor/local/share/gtk-doc/html/gdk2/up.png +0 -0
  966. data/vendor/local/share/gtk-doc/html/gdk2/ur_angle.png +0 -0
  967. data/vendor/local/share/gtk-doc/html/gdk2/watch.png +0 -0
  968. data/vendor/local/share/gtk-doc/html/gdk2/xterm.png +0 -0
  969. data/vendor/local/share/gtk-doc/html/gtk2/AbstractObjects.html +77 -0
  970. data/vendor/local/share/gtk-doc/html/gtk2/Actions.html +53 -0
  971. data/vendor/local/share/gtk-doc/html/gtk2/Builder.html +38 -0
  972. data/vendor/local/share/gtk-doc/html/gtk2/ButtonWidgets.html +53 -0
  973. data/vendor/local/share/gtk-doc/html/gtk2/DeprecatedObjects.html +83 -0
  974. data/vendor/local/share/gtk-doc/html/gtk2/DisplayWidgets.html +56 -0
  975. data/vendor/local/share/gtk-doc/html/gtk2/GtkAboutDialog.html +1891 -0
  976. data/vendor/local/share/gtk-doc/html/gtk2/GtkAccelLabel.html +437 -0
  977. data/vendor/local/share/gtk-doc/html/gtk2/GtkAccessible.html +199 -0
  978. data/vendor/local/share/gtk-doc/html/gtk2/GtkAction.html +2264 -0
  979. data/vendor/local/share/gtk-doc/html/gtk2/GtkActionGroup.html +1631 -0
  980. data/vendor/local/share/gtk-doc/html/gtk2/GtkActivatable.html +924 -0
  981. data/vendor/local/share/gtk-doc/html/gtk2/GtkAdjustment.html +1102 -0
  982. data/vendor/local/share/gtk-doc/html/gtk2/GtkAlignment.html +491 -0
  983. data/vendor/local/share/gtk-doc/html/gtk2/GtkArrow.html +270 -0
  984. data/vendor/local/share/gtk-doc/html/gtk2/GtkAspectFrame.html +308 -0
  985. data/vendor/local/share/gtk-doc/html/gtk2/GtkAssistant.html +1575 -0
  986. data/vendor/local/share/gtk-doc/html/gtk2/GtkBin.html +152 -0
  987. data/vendor/local/share/gtk-doc/html/gtk2/GtkBox.html +1043 -0
  988. data/vendor/local/share/gtk-doc/html/gtk2/GtkBuildable.html +801 -0
  989. data/vendor/local/share/gtk-doc/html/gtk2/GtkBuilder.html +1339 -0
  990. data/vendor/local/share/gtk-doc/html/gtk2/GtkButton.html +1634 -0
  991. data/vendor/local/share/gtk-doc/html/gtk2/GtkButtonBox.html +776 -0
  992. data/vendor/local/share/gtk-doc/html/gtk2/GtkCList.html +5399 -0
  993. data/vendor/local/share/gtk-doc/html/gtk2/GtkCTree.html +3279 -0
  994. data/vendor/local/share/gtk-doc/html/gtk2/GtkCalendar.html +1463 -0
  995. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellEditable.html +362 -0
  996. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellLayout.html +702 -0
  997. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRenderer.html +1492 -0
  998. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererAccel.html +350 -0
  999. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererCombo.html +282 -0
  1000. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererPixbuf.html +278 -0
  1001. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererProgress.html +243 -0
  1002. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererSpin.html +196 -0
  1003. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererSpinner.html +186 -0
  1004. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererText.html +868 -0
  1005. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererToggle.html +493 -0
  1006. data/vendor/local/share/gtk-doc/html/gtk2/GtkCellView.html +612 -0
  1007. data/vendor/local/share/gtk-doc/html/gtk2/GtkCheckButton.html +283 -0
  1008. data/vendor/local/share/gtk-doc/html/gtk2/GtkColorButton.html +615 -0
  1009. data/vendor/local/share/gtk-doc/html/gtk2/GtkColorSelection.html +1120 -0
  1010. data/vendor/local/share/gtk-doc/html/gtk2/GtkColorSelectionDialog.html +302 -0
  1011. data/vendor/local/share/gtk-doc/html/gtk2/GtkCombo.html +678 -0
  1012. data/vendor/local/share/gtk-doc/html/gtk2/GtkComboBox.html +2138 -0
  1013. data/vendor/local/share/gtk-doc/html/gtk2/GtkComboBoxEntry.html +374 -0
  1014. data/vendor/local/share/gtk-doc/html/gtk2/GtkComboBoxText.html +414 -0
  1015. data/vendor/local/share/gtk-doc/html/gtk2/GtkContainer.html +2054 -0
  1016. data/vendor/local/share/gtk-doc/html/gtk2/GtkCurve.html +591 -0
  1017. data/vendor/local/share/gtk-doc/html/gtk2/GtkDialog.html +1627 -0
  1018. data/vendor/local/share/gtk-doc/html/gtk2/GtkDrawingArea.html +287 -0
  1019. data/vendor/local/share/gtk-doc/html/gtk2/GtkEditable.html +896 -0
  1020. data/vendor/local/share/gtk-doc/html/gtk2/GtkEntry.html +4578 -0
  1021. data/vendor/local/share/gtk-doc/html/gtk2/GtkEntryBuffer.html +792 -0
  1022. data/vendor/local/share/gtk-doc/html/gtk2/GtkEntryCompletion.html +1574 -0
  1023. data/vendor/local/share/gtk-doc/html/gtk2/GtkEventBox.html +362 -0
  1024. data/vendor/local/share/gtk-doc/html/gtk2/GtkExpander.html +1024 -0
  1025. data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooser.html +4065 -0
  1026. data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooserButton.html +666 -0
  1027. data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooserDialog.html +353 -0
  1028. data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooserWidget.html +211 -0
  1029. data/vendor/local/share/gtk-doc/html/gtk2/GtkFileSelection.html +740 -0
  1030. data/vendor/local/share/gtk-doc/html/gtk2/GtkFixed.html +419 -0
  1031. data/vendor/local/share/gtk-doc/html/gtk2/GtkFontButton.html +804 -0
  1032. data/vendor/local/share/gtk-doc/html/gtk2/GtkFontSelection.html +728 -0
  1033. data/vendor/local/share/gtk-doc/html/gtk2/GtkFontSelectionDialog.html +546 -0
  1034. data/vendor/local/share/gtk-doc/html/gtk2/GtkFrame.html +610 -0
  1035. data/vendor/local/share/gtk-doc/html/gtk2/GtkGammaCurve.html +144 -0
  1036. data/vendor/local/share/gtk-doc/html/gtk2/GtkHBox.html +154 -0
  1037. data/vendor/local/share/gtk-doc/html/gtk2/GtkHButtonBox.html +287 -0
  1038. data/vendor/local/share/gtk-doc/html/gtk2/GtkHPaned.html +127 -0
  1039. data/vendor/local/share/gtk-doc/html/gtk2/GtkHRuler.html +143 -0
  1040. data/vendor/local/share/gtk-doc/html/gtk2/GtkHSV.html +605 -0
  1041. data/vendor/local/share/gtk-doc/html/gtk2/GtkHScale.html +210 -0
  1042. data/vendor/local/share/gtk-doc/html/gtk2/GtkHScrollbar.html +150 -0
  1043. data/vendor/local/share/gtk-doc/html/gtk2/GtkHSeparator.html +150 -0
  1044. data/vendor/local/share/gtk-doc/html/gtk2/GtkHandleBox.html +665 -0
  1045. data/vendor/local/share/gtk-doc/html/gtk2/GtkIMContext.html +1204 -0
  1046. data/vendor/local/share/gtk-doc/html/gtk2/GtkIMContextSimple.html +186 -0
  1047. data/vendor/local/share/gtk-doc/html/gtk2/GtkIMMulticontext.html +231 -0
  1048. data/vendor/local/share/gtk-doc/html/gtk2/GtkIconTheme.html +1796 -0
  1049. data/vendor/local/share/gtk-doc/html/gtk2/GtkIconView.html +3740 -0
  1050. data/vendor/local/share/gtk-doc/html/gtk2/GtkImage.html +1961 -0
  1051. data/vendor/local/share/gtk-doc/html/gtk2/GtkImageMenuItem.html +613 -0
  1052. data/vendor/local/share/gtk-doc/html/gtk2/GtkInfoBar.html +908 -0
  1053. data/vendor/local/share/gtk-doc/html/gtk2/GtkInputDialog.html +255 -0
  1054. data/vendor/local/share/gtk-doc/html/gtk2/GtkInvisible.html +267 -0
  1055. data/vendor/local/share/gtk-doc/html/gtk2/GtkItem.html +350 -0
  1056. data/vendor/local/share/gtk-doc/html/gtk2/GtkItemFactory.html +1537 -0
  1057. data/vendor/local/share/gtk-doc/html/gtk2/GtkLabel.html +2825 -0
  1058. data/vendor/local/share/gtk-doc/html/gtk2/GtkLayout.html +797 -0
  1059. data/vendor/local/share/gtk-doc/html/gtk2/GtkLinkButton.html +520 -0
  1060. data/vendor/local/share/gtk-doc/html/gtk2/GtkList.html +1370 -0
  1061. data/vendor/local/share/gtk-doc/html/gtk2/GtkListItem.html +652 -0
  1062. data/vendor/local/share/gtk-doc/html/gtk2/GtkListStore.html +1361 -0
  1063. data/vendor/local/share/gtk-doc/html/gtk2/GtkMenu.html +1887 -0
  1064. data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuBar.html +555 -0
  1065. data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuItem.html +1279 -0
  1066. data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuShell.html +1028 -0
  1067. data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuToolButton.html +561 -0
  1068. data/vendor/local/share/gtk-doc/html/gtk2/GtkMessageDialog.html +945 -0
  1069. data/vendor/local/share/gtk-doc/html/gtk2/GtkMisc.html +411 -0
  1070. data/vendor/local/share/gtk-doc/html/gtk2/GtkNotebook.html +3748 -0
  1071. data/vendor/local/share/gtk-doc/html/gtk2/GtkObject.html +1672 -0
  1072. data/vendor/local/share/gtk-doc/html/gtk2/GtkOffscreenWindow.html +221 -0
  1073. data/vendor/local/share/gtk-doc/html/gtk2/GtkOldEditable.html +756 -0
  1074. data/vendor/local/share/gtk-doc/html/gtk2/GtkOptionMenu.html +477 -0
  1075. data/vendor/local/share/gtk-doc/html/gtk2/GtkPageSetup.html +1278 -0
  1076. data/vendor/local/share/gtk-doc/html/gtk2/GtkPageSetupUnixDialog.html +312 -0
  1077. data/vendor/local/share/gtk-doc/html/gtk2/GtkPaned.html +1032 -0
  1078. data/vendor/local/share/gtk-doc/html/gtk2/GtkPaperSize.html +1172 -0
  1079. data/vendor/local/share/gtk-doc/html/gtk2/GtkPixmap.html +306 -0
  1080. data/vendor/local/share/gtk-doc/html/gtk2/GtkPlug.html +496 -0
  1081. data/vendor/local/share/gtk-doc/html/gtk2/GtkPreview.html +822 -0
  1082. data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintContext.html +655 -0
  1083. data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintJob.html +725 -0
  1084. data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintSettings.html +3872 -0
  1085. data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintUnixDialog.html +1143 -0
  1086. data/vendor/local/share/gtk-doc/html/gtk2/GtkPrinter.html +1321 -0
  1087. data/vendor/local/share/gtk-doc/html/gtk2/GtkProgress.html +766 -0
  1088. data/vendor/local/share/gtk-doc/html/gtk2/GtkProgressBar.html +1179 -0
  1089. data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioAction.html +480 -0
  1090. data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioButton.html +681 -0
  1091. data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioMenuItem.html +609 -0
  1092. data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioToolButton.html +432 -0
  1093. data/vendor/local/share/gtk-doc/html/gtk2/GtkRange.html +1913 -0
  1094. data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentAction.html +338 -0
  1095. data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooser.html +1919 -0
  1096. data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooserDialog.html +260 -0
  1097. data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooserMenu.html +313 -0
  1098. data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooserWidget.html +182 -0
  1099. data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentFilter.html +823 -0
  1100. data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentManager.html +2084 -0
  1101. data/vendor/local/share/gtk-doc/html/gtk2/GtkRuler.html +444 -0
  1102. data/vendor/local/share/gtk-doc/html/gtk2/GtkScale.html +724 -0
  1103. data/vendor/local/share/gtk-doc/html/gtk2/GtkScaleButton.html +783 -0
  1104. data/vendor/local/share/gtk-doc/html/gtk2/GtkScrollbar.html +232 -0
  1105. data/vendor/local/share/gtk-doc/html/gtk2/GtkScrolledWindow.html +1035 -0
  1106. data/vendor/local/share/gtk-doc/html/gtk2/GtkSeparator.html +96 -0
  1107. data/vendor/local/share/gtk-doc/html/gtk2/GtkSeparatorMenuItem.html +130 -0
  1108. data/vendor/local/share/gtk-doc/html/gtk2/GtkSeparatorToolItem.html +270 -0
  1109. data/vendor/local/share/gtk-doc/html/gtk2/GtkSettings.html +1679 -0
  1110. data/vendor/local/share/gtk-doc/html/gtk2/GtkSizeGroup.html +579 -0
  1111. data/vendor/local/share/gtk-doc/html/gtk2/GtkSocket.html +460 -0
  1112. data/vendor/local/share/gtk-doc/html/gtk2/GtkSpinButton.html +1793 -0
  1113. data/vendor/local/share/gtk-doc/html/gtk2/GtkSpinner.html +265 -0
  1114. data/vendor/local/share/gtk-doc/html/gtk2/GtkStatusIcon.html +2339 -0
  1115. data/vendor/local/share/gtk-doc/html/gtk2/GtkStatusbar.html +662 -0
  1116. data/vendor/local/share/gtk-doc/html/gtk2/GtkStyle.html +5004 -0
  1117. data/vendor/local/share/gtk-doc/html/gtk2/GtkTable.html +1081 -0
  1118. data/vendor/local/share/gtk-doc/html/gtk2/GtkTearoffMenuItem.html +158 -0
  1119. data/vendor/local/share/gtk-doc/html/gtk2/GtkText.html +900 -0
  1120. data/vendor/local/share/gtk-doc/html/gtk2/GtkTextBuffer.html +4895 -0
  1121. data/vendor/local/share/gtk-doc/html/gtk2/GtkTextIter.html +4244 -0
  1122. data/vendor/local/share/gtk-doc/html/gtk2/GtkTextMark.html +444 -0
  1123. data/vendor/local/share/gtk-doc/html/gtk2/GtkTextTag.html +1680 -0
  1124. data/vendor/local/share/gtk-doc/html/gtk2/GtkTextTagTable.html +516 -0
  1125. data/vendor/local/share/gtk-doc/html/gtk2/GtkTextView.html +4124 -0
  1126. data/vendor/local/share/gtk-doc/html/gtk2/GtkTipsQuery.html +625 -0
  1127. data/vendor/local/share/gtk-doc/html/gtk2/GtkToggleAction.html +440 -0
  1128. data/vendor/local/share/gtk-doc/html/gtk2/GtkToggleButton.html +698 -0
  1129. data/vendor/local/share/gtk-doc/html/gtk2/GtkToggleToolButton.html +359 -0
  1130. data/vendor/local/share/gtk-doc/html/gtk2/GtkToolButton.html +929 -0
  1131. data/vendor/local/share/gtk-doc/html/gtk2/GtkToolItem.html +1599 -0
  1132. data/vendor/local/share/gtk-doc/html/gtk2/GtkToolItemGroup.html +1025 -0
  1133. data/vendor/local/share/gtk-doc/html/gtk2/GtkToolPalette.html +1314 -0
  1134. data/vendor/local/share/gtk-doc/html/gtk2/GtkToolShell.html +532 -0
  1135. data/vendor/local/share/gtk-doc/html/gtk2/GtkToolbar.html +2507 -0
  1136. data/vendor/local/share/gtk-doc/html/gtk2/GtkTooltip.html +554 -0
  1137. data/vendor/local/share/gtk-doc/html/gtk2/GtkTooltips.html +548 -0
  1138. data/vendor/local/share/gtk-doc/html/gtk2/GtkTree.html +1060 -0
  1139. data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeItem.html +361 -0
  1140. data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeModel.html +3330 -0
  1141. data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeModelFilter.html +885 -0
  1142. data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeModelSort.html +697 -0
  1143. data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeSelection.html +1144 -0
  1144. data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeSortable.html +595 -0
  1145. data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeStore.html +1384 -0
  1146. data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeView.html +6534 -0
  1147. data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeViewColumn.html +2679 -0
  1148. data/vendor/local/share/gtk-doc/html/gtk2/GtkUIManager.html +1631 -0
  1149. data/vendor/local/share/gtk-doc/html/gtk2/GtkVBox.html +155 -0
  1150. data/vendor/local/share/gtk-doc/html/gtk2/GtkVButtonBox.html +259 -0
  1151. data/vendor/local/share/gtk-doc/html/gtk2/GtkVPaned.html +123 -0
  1152. data/vendor/local/share/gtk-doc/html/gtk2/GtkVRuler.html +135 -0
  1153. data/vendor/local/share/gtk-doc/html/gtk2/GtkVScale.html +202 -0
  1154. data/vendor/local/share/gtk-doc/html/gtk2/GtkVScrollbar.html +144 -0
  1155. data/vendor/local/share/gtk-doc/html/gtk2/GtkVSeparator.html +125 -0
  1156. data/vendor/local/share/gtk-doc/html/gtk2/GtkViewport.html +564 -0
  1157. data/vendor/local/share/gtk-doc/html/gtk2/GtkVolumeButton.html +127 -0
  1158. data/vendor/local/share/gtk-doc/html/gtk2/GtkWidget.html +13779 -0
  1159. data/vendor/local/share/gtk-doc/html/gtk2/GtkWindow.html +5354 -0
  1160. data/vendor/local/share/gtk-doc/html/gtk2/GtkWindowGroup.html +246 -0
  1161. data/vendor/local/share/gtk-doc/html/gtk2/LayoutContainers.html +74 -0
  1162. data/vendor/local/share/gtk-doc/html/gtk2/MenusAndCombos.html +95 -0
  1163. data/vendor/local/share/gtk-doc/html/gtk2/MiscObjects.html +68 -0
  1164. data/vendor/local/share/gtk-doc/html/gtk2/NumericEntry.html +53 -0
  1165. data/vendor/local/share/gtk-doc/html/gtk2/Ornaments.html +41 -0
  1166. data/vendor/local/share/gtk-doc/html/gtk2/PlugSocket.html +38 -0
  1167. data/vendor/local/share/gtk-doc/html/gtk2/Printing.html +59 -0
  1168. data/vendor/local/share/gtk-doc/html/gtk2/RecentDocuments.html +50 -0
  1169. data/vendor/local/share/gtk-doc/html/gtk2/ScrollingWidgets.html +41 -0
  1170. data/vendor/local/share/gtk-doc/html/gtk2/SelectorWidgets.html +71 -0
  1171. data/vendor/local/share/gtk-doc/html/gtk2/SpecialObjects.html +47 -0
  1172. data/vendor/local/share/gtk-doc/html/gtk2/TextWidget.html +266 -0
  1173. data/vendor/local/share/gtk-doc/html/gtk2/TextWidgetObjects.html +53 -0
  1174. data/vendor/local/share/gtk-doc/html/gtk2/TreeWidget.html +556 -0
  1175. data/vendor/local/share/gtk-doc/html/gtk2/TreeWidgetObjects.html +104 -0
  1176. data/vendor/local/share/gtk-doc/html/gtk2/WindowWidgets.html +57 -0
  1177. data/vendor/local/share/gtk-doc/html/gtk2/aboutdialog.png +0 -0
  1178. data/vendor/local/share/gtk-doc/html/gtk2/accel-label.png +0 -0
  1179. data/vendor/local/share/gtk-doc/html/gtk2/annotation-glossary.html +69 -0
  1180. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-10.html +2090 -0
  1181. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-12.html +785 -0
  1182. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-14.html +781 -0
  1183. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-16.html +597 -0
  1184. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-18.html +513 -0
  1185. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-2.html +286 -0
  1186. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-20.html +460 -0
  1187. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-22.html +176 -0
  1188. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-24.html +131 -0
  1189. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-4.html +1853 -0
  1190. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-6.html +1085 -0
  1191. data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-8.html +381 -0
  1192. data/vendor/local/share/gtk-doc/html/gtk2/api-index-deprecated.html +3531 -0
  1193. data/vendor/local/share/gtk-doc/html/gtk2/api-index-full.html +22945 -0
  1194. data/vendor/local/share/gtk-doc/html/gtk2/application-exit.png +0 -0
  1195. data/vendor/local/share/gtk-doc/html/gtk2/assistant.png +0 -0
  1196. data/vendor/local/share/gtk-doc/html/gtk2/button.png +0 -0
  1197. data/vendor/local/share/gtk-doc/html/gtk2/ch01.html +246 -0
  1198. data/vendor/local/share/gtk-doc/html/gtk2/ch02.html +154 -0
  1199. data/vendor/local/share/gtk-doc/html/gtk2/chap-drawing-model.html +496 -0
  1200. data/vendor/local/share/gtk-doc/html/gtk2/check-button.png +0 -0
  1201. data/vendor/local/share/gtk-doc/html/gtk2/checklist-gdkeventexpose-region.html +84 -0
  1202. data/vendor/local/share/gtk-doc/html/gtk2/checklist-modifiers.html +89 -0
  1203. data/vendor/local/share/gtk-doc/html/gtk2/checklist-named-icons.html +41 -0
  1204. data/vendor/local/share/gtk-doc/html/gtk2/color-button.png +0 -0
  1205. data/vendor/local/share/gtk-doc/html/gtk2/colorsel.png +0 -0
  1206. data/vendor/local/share/gtk-doc/html/gtk2/combo-box-entry.png +0 -0
  1207. data/vendor/local/share/gtk-doc/html/gtk2/combo-box.png +0 -0
  1208. data/vendor/local/share/gtk-doc/html/gtk2/decorating-the-assistant-pages.html +50 -0
  1209. data/vendor/local/share/gtk-doc/html/gtk2/dialog-error.png +0 -0
  1210. data/vendor/local/share/gtk-doc/html/gtk2/dialog-information.png +0 -0
  1211. data/vendor/local/share/gtk-doc/html/gtk2/dialog-password.png +0 -0
  1212. data/vendor/local/share/gtk-doc/html/gtk2/dialog-question.png +0 -0
  1213. data/vendor/local/share/gtk-doc/html/gtk2/dialog-warning.png +0 -0
  1214. data/vendor/local/share/gtk-doc/html/gtk2/document-new.png +0 -0
  1215. data/vendor/local/share/gtk-doc/html/gtk2/document-open.png +0 -0
  1216. data/vendor/local/share/gtk-doc/html/gtk2/document-print-preview.png +0 -0
  1217. data/vendor/local/share/gtk-doc/html/gtk2/document-print.png +0 -0
  1218. data/vendor/local/share/gtk-doc/html/gtk2/document-properties.png +0 -0
  1219. data/vendor/local/share/gtk-doc/html/gtk2/document-revert-ltr.png +0 -0
  1220. data/vendor/local/share/gtk-doc/html/gtk2/document-revert-rtl.png +0 -0
  1221. data/vendor/local/share/gtk-doc/html/gtk2/document-save-as.png +0 -0
  1222. data/vendor/local/share/gtk-doc/html/gtk2/document-save.png +0 -0
  1223. data/vendor/local/share/gtk-doc/html/gtk2/drive-harddisk.png +0 -0
  1224. data/vendor/local/share/gtk-doc/html/gtk2/edit-clear.png +0 -0
  1225. data/vendor/local/share/gtk-doc/html/gtk2/edit-copy.png +0 -0
  1226. data/vendor/local/share/gtk-doc/html/gtk2/edit-cut.png +0 -0
  1227. data/vendor/local/share/gtk-doc/html/gtk2/edit-delete.png +0 -0
  1228. data/vendor/local/share/gtk-doc/html/gtk2/edit-find-replace.png +0 -0
  1229. data/vendor/local/share/gtk-doc/html/gtk2/edit-find.png +0 -0
  1230. data/vendor/local/share/gtk-doc/html/gtk2/edit-paste.png +0 -0
  1231. data/vendor/local/share/gtk-doc/html/gtk2/edit-redo-ltr.png +0 -0
  1232. data/vendor/local/share/gtk-doc/html/gtk2/edit-redo-rtl.png +0 -0
  1233. data/vendor/local/share/gtk-doc/html/gtk2/edit-select-all.png +0 -0
  1234. data/vendor/local/share/gtk-doc/html/gtk2/edit-undo-ltr.png +0 -0
  1235. data/vendor/local/share/gtk-doc/html/gtk2/edit-undo-rtl.png +0 -0
  1236. data/vendor/local/share/gtk-doc/html/gtk2/entry.png +0 -0
  1237. data/vendor/local/share/gtk-doc/html/gtk2/figure-hierarchical-drawing.png +0 -0
  1238. data/vendor/local/share/gtk-doc/html/gtk2/figure-windowed-label.png +0 -0
  1239. data/vendor/local/share/gtk-doc/html/gtk2/file-button.png +0 -0
  1240. data/vendor/local/share/gtk-doc/html/gtk2/filechooser.png +0 -0
  1241. data/vendor/local/share/gtk-doc/html/gtk2/folder.png +0 -0
  1242. data/vendor/local/share/gtk-doc/html/gtk2/font-button.png +0 -0
  1243. data/vendor/local/share/gtk-doc/html/gtk2/fontsel.png +0 -0
  1244. data/vendor/local/share/gtk-doc/html/gtk2/format-indent-less-ltr.png +0 -0
  1245. data/vendor/local/share/gtk-doc/html/gtk2/format-indent-less-rtl.png +0 -0
  1246. data/vendor/local/share/gtk-doc/html/gtk2/format-indent-more-ltr.png +0 -0
  1247. data/vendor/local/share/gtk-doc/html/gtk2/format-indent-more-rtl.png +0 -0
  1248. data/vendor/local/share/gtk-doc/html/gtk2/format-justify-center.png +0 -0
  1249. data/vendor/local/share/gtk-doc/html/gtk2/format-justify-fill.png +0 -0
  1250. data/vendor/local/share/gtk-doc/html/gtk2/format-justify-left.png +0 -0
  1251. data/vendor/local/share/gtk-doc/html/gtk2/format-justify-right.png +0 -0
  1252. data/vendor/local/share/gtk-doc/html/gtk2/format-text-bold.png +0 -0
  1253. data/vendor/local/share/gtk-doc/html/gtk2/format-text-italic.png +0 -0
  1254. data/vendor/local/share/gtk-doc/html/gtk2/format-text-strikethrough.png +0 -0
  1255. data/vendor/local/share/gtk-doc/html/gtk2/format-text-underline.png +0 -0
  1256. data/vendor/local/share/gtk-doc/html/gtk2/frame.png +0 -0
  1257. data/vendor/local/share/gtk-doc/html/gtk2/glossary.html +335 -0
  1258. data/vendor/local/share/gtk-doc/html/gtk2/go-bottom.png +0 -0
  1259. data/vendor/local/share/gtk-doc/html/gtk2/go-down.png +0 -0
  1260. data/vendor/local/share/gtk-doc/html/gtk2/go-first-ltr.png +0 -0
  1261. data/vendor/local/share/gtk-doc/html/gtk2/go-first-rtl.png +0 -0
  1262. data/vendor/local/share/gtk-doc/html/gtk2/go-home.png +0 -0
  1263. data/vendor/local/share/gtk-doc/html/gtk2/go-jump-ltr.png +0 -0
  1264. data/vendor/local/share/gtk-doc/html/gtk2/go-jump-rtl.png +0 -0
  1265. data/vendor/local/share/gtk-doc/html/gtk2/go-last-ltr.png +0 -0
  1266. data/vendor/local/share/gtk-doc/html/gtk2/go-last-rtl.png +0 -0
  1267. data/vendor/local/share/gtk-doc/html/gtk2/go-next-ltr.png +0 -0
  1268. data/vendor/local/share/gtk-doc/html/gtk2/go-next-rtl.png +0 -0
  1269. data/vendor/local/share/gtk-doc/html/gtk2/go-previous-ltr.png +0 -0
  1270. data/vendor/local/share/gtk-doc/html/gtk2/go-previous-rtl.png +0 -0
  1271. data/vendor/local/share/gtk-doc/html/gtk2/go-top.png +0 -0
  1272. data/vendor/local/share/gtk-doc/html/gtk2/go-up.png +0 -0
  1273. data/vendor/local/share/gtk-doc/html/gtk2/gtk-apply.png +0 -0
  1274. data/vendor/local/share/gtk-doc/html/gtk2/gtk-builder-convert.html +89 -0
  1275. data/vendor/local/share/gtk-doc/html/gtk2/gtk-building.html +441 -0
  1276. data/vendor/local/share/gtk-doc/html/gtk2/gtk-cancel.png +0 -0
  1277. data/vendor/local/share/gtk-doc/html/gtk2/gtk-caps-lock-warning.png +0 -0
  1278. data/vendor/local/share/gtk-doc/html/gtk2/gtk-changes-1-2.html +568 -0
  1279. data/vendor/local/share/gtk-doc/html/gtk2/gtk-changes-2-0.html +1175 -0
  1280. data/vendor/local/share/gtk-doc/html/gtk2/gtk-color-picker.png +0 -0
  1281. data/vendor/local/share/gtk-doc/html/gtk2/gtk-compiling.html +111 -0
  1282. data/vendor/local/share/gtk-doc/html/gtk2/gtk-connect.png +0 -0
  1283. data/vendor/local/share/gtk-doc/html/gtk2/gtk-convert.png +0 -0
  1284. data/vendor/local/share/gtk-doc/html/gtk2/gtk-directfb.html +60 -0
  1285. data/vendor/local/share/gtk-doc/html/gtk2/gtk-disconnect.png +0 -0
  1286. data/vendor/local/share/gtk-doc/html/gtk2/gtk-dnd-multiple.png +0 -0
  1287. data/vendor/local/share/gtk-doc/html/gtk2/gtk-dnd.png +0 -0
  1288. data/vendor/local/share/gtk-doc/html/gtk2/gtk-edit.png +0 -0
  1289. data/vendor/local/share/gtk-doc/html/gtk2/gtk-font.png +0 -0
  1290. data/vendor/local/share/gtk-doc/html/gtk2/gtk-index.png +0 -0
  1291. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-ClientSideWindows.html +85 -0
  1292. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkAboutDialog.html +160 -0
  1293. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkAction.html +91 -0
  1294. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkAssistant.html +102 -0
  1295. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkBuilder.html +118 -0
  1296. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkColorButton.html +107 -0
  1297. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkComboBox.html +256 -0
  1298. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkFileChooser.html +80 -0
  1299. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkIconView.html +264 -0
  1300. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkLinkButton.html +155 -0
  1301. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkRecentChooser.html +310 -0
  1302. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-checklist.html +157 -0
  1303. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-entry-icons.html +293 -0
  1304. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-label-links.html +45 -0
  1305. data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-tooltips.html +124 -0
  1306. data/vendor/local/share/gtk-doc/html/gtk2/gtk-no.png +0 -0
  1307. data/vendor/local/share/gtk-doc/html/gtk2/gtk-ok.png +0 -0
  1308. data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-landscape.png +0 -0
  1309. data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-portrait.png +0 -0
  1310. data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-reverse-landscape.png +0 -0
  1311. data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-reverse-portrait.png +0 -0
  1312. data/vendor/local/share/gtk-doc/html/gtk2/gtk-osx.html +53 -0
  1313. data/vendor/local/share/gtk-doc/html/gtk2/gtk-page-setup.png +0 -0
  1314. data/vendor/local/share/gtk-doc/html/gtk2/gtk-preferences.png +0 -0
  1315. data/vendor/local/share/gtk-doc/html/gtk2/gtk-query-immodules-2.0.html +89 -0
  1316. data/vendor/local/share/gtk-doc/html/gtk2/gtk-question-index.html +1427 -0
  1317. data/vendor/local/share/gtk-doc/html/gtk2/gtk-resources.html +146 -0
  1318. data/vendor/local/share/gtk-doc/html/gtk2/gtk-running.html +348 -0
  1319. data/vendor/local/share/gtk-doc/html/gtk2/gtk-select-color.png +0 -0
  1320. data/vendor/local/share/gtk-doc/html/gtk2/gtk-undelete-ltr.png +0 -0
  1321. data/vendor/local/share/gtk-doc/html/gtk2/gtk-undelete-rtl.png +0 -0
  1322. data/vendor/local/share/gtk-doc/html/gtk2/gtk-update-icon-cache.html +114 -0
  1323. data/vendor/local/share/gtk-doc/html/gtk2/gtk-windows.html +87 -0
  1324. data/vendor/local/share/gtk-doc/html/gtk2/gtk-x11.html +134 -0
  1325. data/vendor/local/share/gtk-doc/html/gtk2/gtk-yes.png +0 -0
  1326. data/vendor/local/share/gtk-doc/html/gtk2/gtk.html +162 -0
  1327. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Accelerator-Maps.html +744 -0
  1328. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Bindings.html +1146 -0
  1329. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Clipboards.html +2018 -0
  1330. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Drag-and-Drop.html +1962 -0
  1331. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Feature-Test-Macros.html +358 -0
  1332. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Filesystem-utilities.html +454 -0
  1333. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-General.html +2349 -0
  1334. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Graphics-Contexts.html +165 -0
  1335. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-GtkTreeView-drag-and-drop.html +566 -0
  1336. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-High-level-Printing-API.html +3267 -0
  1337. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Keyboard-Accelerators.html +1329 -0
  1338. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Orientable.html +219 -0
  1339. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Resource-Files.html +2234 -0
  1340. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Selections.html +2236 -0
  1341. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Signals.html +1991 -0
  1342. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Standard-Enumerations.html +2183 -0
  1343. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Stock-Items.html +1724 -0
  1344. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Testing.html +833 -0
  1345. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Themeable-Stock-Images.html +1998 -0
  1346. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Types.html +2138 -0
  1347. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-gtkcheckmenuitem.html +693 -0
  1348. data/vendor/local/share/gtk-doc/html/gtk2/gtk2-gtkfilefilter.html +671 -0
  1349. data/vendor/local/share/gtk-doc/html/gtk2/gtk2.devhelp2 +6133 -0
  1350. data/vendor/local/share/gtk-doc/html/gtk2/gtkbase.html +95 -0
  1351. data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-installing-extra-widgets.html +40 -0
  1352. data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-installing-preview.html +41 -0
  1353. data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-new-features.html +55 -0
  1354. data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-selection-modes.html +51 -0
  1355. data/vendor/local/share/gtk-doc/html/gtk2/gtkobjects.html +668 -0
  1356. data/vendor/local/share/gtk-doc/html/gtk2/gtkrecent-advanced.html +206 -0
  1357. data/vendor/local/share/gtk-doc/html/gtk2/gtkrecent-chooser.html +97 -0
  1358. data/vendor/local/share/gtk-doc/html/gtk2/help-about.png +0 -0
  1359. data/vendor/local/share/gtk-doc/html/gtk2/help-contents.png +0 -0
  1360. data/vendor/local/share/gtk-doc/html/gtk2/home.png +0 -0
  1361. data/vendor/local/share/gtk-doc/html/gtk2/icon-view.png +0 -0
  1362. data/vendor/local/share/gtk-doc/html/gtk2/image-missing.png +0 -0
  1363. data/vendor/local/share/gtk-doc/html/gtk2/image.png +0 -0
  1364. data/vendor/local/share/gtk-doc/html/gtk2/index.html +875 -0
  1365. data/vendor/local/share/gtk-doc/html/gtk2/index.sgml +8276 -0
  1366. data/vendor/local/share/gtk-doc/html/gtk2/label.png +0 -0
  1367. data/vendor/local/share/gtk-doc/html/gtk2/layout-btlr.png +0 -0
  1368. data/vendor/local/share/gtk-doc/html/gtk2/layout-btrl.png +0 -0
  1369. data/vendor/local/share/gtk-doc/html/gtk2/layout-lrbt.png +0 -0
  1370. data/vendor/local/share/gtk-doc/html/gtk2/layout-lrtb.png +0 -0
  1371. data/vendor/local/share/gtk-doc/html/gtk2/layout-rlbt.png +0 -0
  1372. data/vendor/local/share/gtk-doc/html/gtk2/layout-rltb.png +0 -0
  1373. data/vendor/local/share/gtk-doc/html/gtk2/layout-tblr.png +0 -0
  1374. data/vendor/local/share/gtk-doc/html/gtk2/layout-tbrl.png +0 -0
  1375. data/vendor/local/share/gtk-doc/html/gtk2/left-insensitive.png +0 -0
  1376. data/vendor/local/share/gtk-doc/html/gtk2/left.png +0 -0
  1377. data/vendor/local/share/gtk-doc/html/gtk2/link-button.png +0 -0
  1378. data/vendor/local/share/gtk-doc/html/gtk2/list-add.png +0 -0
  1379. data/vendor/local/share/gtk-doc/html/gtk2/list-and-tree.png +0 -0
  1380. data/vendor/local/share/gtk-doc/html/gtk2/list-remove.png +0 -0
  1381. data/vendor/local/share/gtk-doc/html/gtk2/media-floppy.png +0 -0
  1382. data/vendor/local/share/gtk-doc/html/gtk2/media-optical.png +0 -0
  1383. data/vendor/local/share/gtk-doc/html/gtk2/media-playback-pause.png +0 -0
  1384. data/vendor/local/share/gtk-doc/html/gtk2/media-playback-start-ltr.png +0 -0
  1385. data/vendor/local/share/gtk-doc/html/gtk2/media-playback-start-rtl.png +0 -0
  1386. data/vendor/local/share/gtk-doc/html/gtk2/media-playback-stop.png +0 -0
  1387. data/vendor/local/share/gtk-doc/html/gtk2/media-record.png +0 -0
  1388. data/vendor/local/share/gtk-doc/html/gtk2/media-seek-backward-ltr.png +0 -0
  1389. data/vendor/local/share/gtk-doc/html/gtk2/media-seek-backward-rtl.png +0 -0
  1390. data/vendor/local/share/gtk-doc/html/gtk2/media-seek-forward-ltr.png +0 -0
  1391. data/vendor/local/share/gtk-doc/html/gtk2/media-seek-forward-rtl.png +0 -0
  1392. data/vendor/local/share/gtk-doc/html/gtk2/media-skip-backward-ltr.png +0 -0
  1393. data/vendor/local/share/gtk-doc/html/gtk2/media-skip-backward-rtl.png +0 -0
  1394. data/vendor/local/share/gtk-doc/html/gtk2/media-skip-forward-ltr.png +0 -0
  1395. data/vendor/local/share/gtk-doc/html/gtk2/media-skip-forward-rtl.png +0 -0
  1396. data/vendor/local/share/gtk-doc/html/gtk2/menubar.png +0 -0
  1397. data/vendor/local/share/gtk-doc/html/gtk2/messagedialog.png +0 -0
  1398. data/vendor/local/share/gtk-doc/html/gtk2/migrating-GtkCombo.html +94 -0
  1399. data/vendor/local/share/gtk-doc/html/gtk2/migrating-gnomeuiinfo.html +351 -0
  1400. data/vendor/local/share/gtk-doc/html/gtk2/migrating.html +104 -0
  1401. data/vendor/local/share/gtk-doc/html/gtk2/multiline-text.png +0 -0
  1402. data/vendor/local/share/gtk-doc/html/gtk2/network-idle.png +0 -0
  1403. data/vendor/local/share/gtk-doc/html/gtk2/new-features-GtkComboBox.html +74 -0
  1404. data/vendor/local/share/gtk-doc/html/gtk2/notebook.png +0 -0
  1405. data/vendor/local/share/gtk-doc/html/gtk2/pagesetupdialog.png +0 -0
  1406. data/vendor/local/share/gtk-doc/html/gtk2/panes.png +0 -0
  1407. data/vendor/local/share/gtk-doc/html/gtk2/printdialog.png +0 -0
  1408. data/vendor/local/share/gtk-doc/html/gtk2/printer-error.png +0 -0
  1409. data/vendor/local/share/gtk-doc/html/gtk2/printer-info.png +0 -0
  1410. data/vendor/local/share/gtk-doc/html/gtk2/printer-paused.png +0 -0
  1411. data/vendor/local/share/gtk-doc/html/gtk2/printer-warning.png +0 -0
  1412. data/vendor/local/share/gtk-doc/html/gtk2/process-stop.png +0 -0
  1413. data/vendor/local/share/gtk-doc/html/gtk2/progressbar.png +0 -0
  1414. data/vendor/local/share/gtk-doc/html/gtk2/pt05.html +44 -0
  1415. data/vendor/local/share/gtk-doc/html/gtk2/radio-group.png +0 -0
  1416. data/vendor/local/share/gtk-doc/html/gtk2/recentchooserdialog.png +0 -0
  1417. data/vendor/local/share/gtk-doc/html/gtk2/right-insensitive.png +0 -0
  1418. data/vendor/local/share/gtk-doc/html/gtk2/right.png +0 -0
  1419. data/vendor/local/share/gtk-doc/html/gtk2/scales.png +0 -0
  1420. data/vendor/local/share/gtk-doc/html/gtk2/scrolledwindow.png +0 -0
  1421. data/vendor/local/share/gtk-doc/html/gtk2/separator.png +0 -0
  1422. data/vendor/local/share/gtk-doc/html/gtk2/setting-the-page-flow.html +77 -0
  1423. data/vendor/local/share/gtk-doc/html/gtk2/spinbutton.png +0 -0
  1424. data/vendor/local/share/gtk-doc/html/gtk2/spinner.png +0 -0
  1425. data/vendor/local/share/gtk-doc/html/gtk2/statusbar.png +0 -0
  1426. data/vendor/local/share/gtk-doc/html/gtk2/style.css +476 -0
  1427. data/vendor/local/share/gtk-doc/html/gtk2/system-run.png +0 -0
  1428. data/vendor/local/share/gtk-doc/html/gtk2/text-x-generic.png +0 -0
  1429. data/vendor/local/share/gtk-doc/html/gtk2/toggle-button.png +0 -0
  1430. data/vendor/local/share/gtk-doc/html/gtk2/toolbar.png +0 -0
  1431. data/vendor/local/share/gtk-doc/html/gtk2/toolpalette.png +0 -0
  1432. data/vendor/local/share/gtk-doc/html/gtk2/tools-check-spelling.png +0 -0
  1433. data/vendor/local/share/gtk-doc/html/gtk2/tree-view-coordinates.png +0 -0
  1434. data/vendor/local/share/gtk-doc/html/gtk2/ui-manager.html +45 -0
  1435. data/vendor/local/share/gtk-doc/html/gtk2/up-insensitive.png +0 -0
  1436. data/vendor/local/share/gtk-doc/html/gtk2/up.png +0 -0
  1437. data/vendor/local/share/gtk-doc/html/gtk2/view-fullscreen.png +0 -0
  1438. data/vendor/local/share/gtk-doc/html/gtk2/view-refresh.png +0 -0
  1439. data/vendor/local/share/gtk-doc/html/gtk2/view-restore.png +0 -0
  1440. data/vendor/local/share/gtk-doc/html/gtk2/view-sort-ascending.png +0 -0
  1441. data/vendor/local/share/gtk-doc/html/gtk2/view-sort-descending.png +0 -0
  1442. data/vendor/local/share/gtk-doc/html/gtk2/volumebutton.png +0 -0
  1443. data/vendor/local/share/gtk-doc/html/gtk2/window-close.png +0 -0
  1444. data/vendor/local/share/gtk-doc/html/gtk2/window.png +0 -0
  1445. data/vendor/local/share/gtk-doc/html/gtk2/zoom-fit-best.png +0 -0
  1446. data/vendor/local/share/gtk-doc/html/gtk2/zoom-in.png +0 -0
  1447. data/vendor/local/share/gtk-doc/html/gtk2/zoom-original.png +0 -0
  1448. data/vendor/local/share/gtk-doc/html/gtk2/zoom-out.png +0 -0
  1449. data/vendor/local/share/icons/hicolor/index.theme +1830 -0
  1450. data/vendor/local/share/license/gtk+/AUTHORS +65 -0
  1451. data/vendor/local/share/license/gtk+/COPYING +482 -0
  1452. data/vendor/local/share/license/hicolor-icon-theme/COPYING +345 -0
  1453. data/vendor/local/share/locale/af/LC_MESSAGES/gtk20-properties.mo +0 -0
  1454. data/vendor/local/share/locale/af/LC_MESSAGES/gtk20.mo +0 -0
  1455. data/vendor/local/share/locale/am/LC_MESSAGES/gtk20-properties.mo +0 -0
  1456. data/vendor/local/share/locale/am/LC_MESSAGES/gtk20.mo +0 -0
  1457. data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20-properties.mo +0 -0
  1458. data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20.mo +0 -0
  1459. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20-properties.mo +0 -0
  1460. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20.mo +0 -0
  1461. data/vendor/local/share/locale/as/LC_MESSAGES/gtk20-properties.mo +0 -0
  1462. data/vendor/local/share/locale/as/LC_MESSAGES/gtk20.mo +0 -0
  1463. data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20-properties.mo +0 -0
  1464. data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20.mo +0 -0
  1465. data/vendor/local/share/locale/az/LC_MESSAGES/gtk20-properties.mo +0 -0
  1466. data/vendor/local/share/locale/az/LC_MESSAGES/gtk20.mo +0 -0
  1467. data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo +0 -0
  1468. data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20.mo +0 -0
  1469. data/vendor/local/share/locale/be/LC_MESSAGES/gtk20-properties.mo +0 -0
  1470. data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
  1471. data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
  1472. data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20.mo +0 -0
  1473. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
  1474. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
  1475. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1476. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20.mo +0 -0
  1477. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20-properties.mo +0 -0
  1478. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20.mo +0 -0
  1479. data/vendor/local/share/locale/br/LC_MESSAGES/gtk20-properties.mo +0 -0
  1480. data/vendor/local/share/locale/br/LC_MESSAGES/gtk20.mo +0 -0
  1481. data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20-properties.mo +0 -0
  1482. data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20.mo +0 -0
  1483. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
  1484. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
  1485. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
  1486. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
  1487. data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20-properties.mo +0 -0
  1488. data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20.mo +0 -0
  1489. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20-properties.mo +0 -0
  1490. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
  1491. data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20-properties.mo +0 -0
  1492. data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20.mo +0 -0
  1493. data/vendor/local/share/locale/da/LC_MESSAGES/gtk20-properties.mo +0 -0
  1494. data/vendor/local/share/locale/da/LC_MESSAGES/gtk20.mo +0 -0
  1495. data/vendor/local/share/locale/de/LC_MESSAGES/gtk20-properties.mo +0 -0
  1496. data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
  1497. data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20-properties.mo +0 -0
  1498. data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20.mo +0 -0
  1499. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
  1500. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20.mo +0 -0
  1501. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo +0 -0
  1502. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20.mo +0 -0
  1503. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
  1504. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
  1505. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20-properties.mo +0 -0
  1506. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20.mo +0 -0
  1507. data/vendor/local/share/locale/es/LC_MESSAGES/gtk20-properties.mo +0 -0
  1508. data/vendor/local/share/locale/es/LC_MESSAGES/gtk20.mo +0 -0
  1509. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
  1510. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20.mo +0 -0
  1511. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20-properties.mo +0 -0
  1512. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20.mo +0 -0
  1513. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20-properties.mo +0 -0
  1514. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20.mo +0 -0
  1515. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1516. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20.mo +0 -0
  1517. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1518. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20.mo +0 -0
  1519. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20-properties.mo +0 -0
  1520. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20.mo +0 -0
  1521. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1522. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
  1523. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20-properties.mo +0 -0
  1524. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20.mo +0 -0
  1525. data/vendor/local/share/locale/he/LC_MESSAGES/gtk20-properties.mo +0 -0
  1526. data/vendor/local/share/locale/he/LC_MESSAGES/gtk20.mo +0 -0
  1527. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1528. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20.mo +0 -0
  1529. data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1530. data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20.mo +0 -0
  1531. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20-properties.mo +0 -0
  1532. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
  1533. data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20-properties.mo +0 -0
  1534. data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20.mo +0 -0
  1535. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20-properties.mo +0 -0
  1536. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20.mo +0 -0
  1537. data/vendor/local/share/locale/id/LC_MESSAGES/gtk20-properties.mo +0 -0
  1538. data/vendor/local/share/locale/id/LC_MESSAGES/gtk20.mo +0 -0
  1539. data/vendor/local/share/locale/io/LC_MESSAGES/gtk20-properties.mo +0 -0
  1540. data/vendor/local/share/locale/io/LC_MESSAGES/gtk20.mo +0 -0
  1541. data/vendor/local/share/locale/is/LC_MESSAGES/gtk20-properties.mo +0 -0
  1542. data/vendor/local/share/locale/is/LC_MESSAGES/gtk20.mo +0 -0
  1543. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
  1544. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
  1545. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
  1546. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20.mo +0 -0
  1547. data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20-properties.mo +0 -0
  1548. data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20.mo +0 -0
  1549. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1550. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20.mo +0 -0
  1551. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1552. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20.mo +0 -0
  1553. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20-properties.mo +0 -0
  1554. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20.mo +0 -0
  1555. data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20-properties.mo +0 -0
  1556. data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20.mo +0 -0
  1557. data/vendor/local/share/locale/li/LC_MESSAGES/gtk20-properties.mo +0 -0
  1558. data/vendor/local/share/locale/li/LC_MESSAGES/gtk20.mo +0 -0
  1559. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
  1560. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
  1561. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20-properties.mo +0 -0
  1562. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20.mo +0 -0
  1563. data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20-properties.mo +0 -0
  1564. data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20.mo +0 -0
  1565. data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1566. data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20.mo +0 -0
  1567. data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1568. data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20.mo +0 -0
  1569. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20-properties.mo +0 -0
  1570. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20.mo +0 -0
  1571. data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1572. data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20.mo +0 -0
  1573. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1574. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20.mo +0 -0
  1575. data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20-properties.mo +0 -0
  1576. data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20.mo +0 -0
  1577. data/vendor/local/share/locale/my/LC_MESSAGES/gtk20-properties.mo +0 -0
  1578. data/vendor/local/share/locale/my/LC_MESSAGES/gtk20.mo +0 -0
  1579. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20-properties.mo +0 -0
  1580. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
  1581. data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20-properties.mo +0 -0
  1582. data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20.mo +0 -0
  1583. data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20-properties.mo +0 -0
  1584. data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20.mo +0 -0
  1585. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1586. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
  1587. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1588. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20.mo +0 -0
  1589. data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20-properties.mo +0 -0
  1590. data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20.mo +0 -0
  1591. data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20-properties.mo +0 -0
  1592. data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20.mo +0 -0
  1593. data/vendor/local/share/locale/or/LC_MESSAGES/gtk20-properties.mo +0 -0
  1594. data/vendor/local/share/locale/or/LC_MESSAGES/gtk20.mo +0 -0
  1595. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20-properties.mo +0 -0
  1596. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20.mo +0 -0
  1597. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1598. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
  1599. data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20-properties.mo +0 -0
  1600. data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20.mo +0 -0
  1601. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20-properties.mo +0 -0
  1602. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20.mo +0 -0
  1603. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo +0 -0
  1604. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20.mo +0 -0
  1605. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20-properties.mo +0 -0
  1606. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20.mo +0 -0
  1607. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
  1608. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
  1609. data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20-properties.mo +0 -0
  1610. data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20.mo +0 -0
  1611. data/vendor/local/share/locale/si/LC_MESSAGES/gtk20-properties.mo +0 -0
  1612. data/vendor/local/share/locale/si/LC_MESSAGES/gtk20.mo +0 -0
  1613. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1614. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20.mo +0 -0
  1615. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1616. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
  1617. data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20-properties.mo +0 -0
  1618. data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20.mo +0 -0
  1619. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1620. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20.mo +0 -0
  1621. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo +0 -0
  1622. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20.mo +0 -0
  1623. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
  1624. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20.mo +0 -0
  1625. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20-properties.mo +0 -0
  1626. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20.mo +0 -0
  1627. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20-properties.mo +0 -0
  1628. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20.mo +0 -0
  1629. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20-properties.mo +0 -0
  1630. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
  1631. data/vendor/local/share/locale/th/LC_MESSAGES/gtk20-properties.mo +0 -0
  1632. data/vendor/local/share/locale/th/LC_MESSAGES/gtk20.mo +0 -0
  1633. data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1634. data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20.mo +0 -0
  1635. data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1636. data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20.mo +0 -0
  1637. data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20-properties.mo +0 -0
  1638. data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20.mo +0 -0
  1639. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20-properties.mo +0 -0
  1640. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20.mo +0 -0
  1641. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1642. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20.mo +0 -0
  1643. data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20-properties.mo +0 -0
  1644. data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20.mo +0 -0
  1645. data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20-properties.mo +0 -0
  1646. data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20.mo +0 -0
  1647. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20-properties.mo +0 -0
  1648. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo +0 -0
  1649. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1650. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20.mo +0 -0
  1651. data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20-properties.mo +0 -0
  1652. data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20.mo +0 -0
  1653. data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20-properties.mo +0 -0
  1654. data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20.mo +0 -0
  1655. data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1656. data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20.mo +0 -0
  1657. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo +0 -0
  1658. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20.mo +0 -0
  1659. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20-properties.mo +0 -0
  1660. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
  1661. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo +0 -0
  1662. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
  1663. data/vendor/local/share/themes/Default/gtk-2.0-key/gtkrc +3 -0
  1664. data/vendor/local/share/themes/Emacs/gtk-2.0-key/gtkrc +113 -0
  1665. data/vendor/local/share/themes/MS-Windows/gtk-2.0/gtkrc +66 -0
  1666. data/vendor/local/share/themes/Raleigh/gtk-2.0/gtkrc +3 -0
  1667. metadata +1750 -0
@@ -0,0 +1,2611 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GDK 2 Reference Manual: Drawing Primitives</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GDK 2 Reference Manual">
8
+ <link rel="up" href="reference.html" title="API Reference">
9
+ <link rel="prev" href="gdk2-Graphics-Contexts.html" title="Graphics Contexts">
10
+ <link rel="next" href="gdk2-Bitmaps-and-Pixmaps.html" title="Bitmaps and Pixmaps">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#gdk2-Drawing-Primitives.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#gdk2-Drawing-Primitives.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
20
+ </td>
21
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22
+ <td><a accesskey="u" href="reference.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23
+ <td><a accesskey="p" href="gdk2-Graphics-Contexts.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24
+ <td><a accesskey="n" href="gdk2-Bitmaps-and-Pixmaps.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25
+ </tr></table>
26
+ <div class="refentry">
27
+ <a name="gdk2-Drawing-Primitives"></a><div class="titlepage"></div>
28
+ <div class="refnamediv"><table width="100%"><tr>
29
+ <td valign="top">
30
+ <h2><span class="refentrytitle"><a name="gdk2-Drawing-Primitives.top_of_page"></a>Drawing Primitives</span></h2>
31
+ <p>Drawing Primitives — Functions for drawing points, lines, arcs, and text</p>
32
+ </td>
33
+ <td class="gallery_image" valign="top" align="right"></td>
34
+ </tr></table></div>
35
+ <div class="refsect1">
36
+ <a name="gdk2-Drawing-Primitives.functions"></a><h2>Functions</h2>
37
+ <div class="informaltable"><table width="100%" border="0">
38
+ <colgroup>
39
+ <col width="150px" class="functions_return">
40
+ <col class="functions_name">
41
+ </colgroup>
42
+ <tbody>
43
+ <tr>
44
+ <td class="function_type">
45
+ <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="returnvalue">GdkDrawable</span></a> *
46
+ </td>
47
+ <td class="function_name">
48
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-drawable-ref" title="gdk_drawable_ref ()">gdk_drawable_ref</a> <span class="c_punctuation">()</span>
49
+ </td>
50
+ </tr>
51
+ <tr>
52
+ <td class="function_type">
53
+ <span class="returnvalue">void</span>
54
+ </td>
55
+ <td class="function_name">
56
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-drawable-unref" title="gdk_drawable_unref ()">gdk_drawable_unref</a> <span class="c_punctuation">()</span>
57
+ </td>
58
+ </tr>
59
+ <tr>
60
+ <td class="function_type">
61
+ <span class="returnvalue">void</span>
62
+ </td>
63
+ <td class="function_name">
64
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-drawable-set-data" title="gdk_drawable_set_data ()">gdk_drawable_set_data</a> <span class="c_punctuation">()</span>
65
+ </td>
66
+ </tr>
67
+ <tr>
68
+ <td class="function_type">
69
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
70
+ </td>
71
+ <td class="function_name">
72
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-drawable-get-data" title="gdk_drawable_get_data ()">gdk_drawable_get_data</a> <span class="c_punctuation">()</span>
73
+ </td>
74
+ </tr>
75
+ <tr>
76
+ <td class="function_type">
77
+ <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="returnvalue">GdkDisplay</span></a> *
78
+ </td>
79
+ <td class="function_name">
80
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-drawable-get-display" title="gdk_drawable_get_display ()">gdk_drawable_get_display</a> <span class="c_punctuation">()</span>
81
+ </td>
82
+ </tr>
83
+ <tr>
84
+ <td class="function_type">
85
+ <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="returnvalue">GdkScreen</span></a> *
86
+ </td>
87
+ <td class="function_name">
88
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-drawable-get-screen" title="gdk_drawable_get_screen ()">gdk_drawable_get_screen</a> <span class="c_punctuation">()</span>
89
+ </td>
90
+ </tr>
91
+ <tr>
92
+ <td class="function_type">
93
+ <a class="link" href="gdk2-Visuals.html#GdkVisual" title="GdkVisual"><span class="returnvalue">GdkVisual</span></a> *
94
+ </td>
95
+ <td class="function_name">
96
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-drawable-get-visual" title="gdk_drawable_get_visual ()">gdk_drawable_get_visual</a> <span class="c_punctuation">()</span>
97
+ </td>
98
+ </tr>
99
+ <tr>
100
+ <td class="function_type">
101
+ <span class="returnvalue">void</span>
102
+ </td>
103
+ <td class="function_name">
104
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-drawable-set-colormap" title="gdk_drawable_set_colormap ()">gdk_drawable_set_colormap</a> <span class="c_punctuation">()</span>
105
+ </td>
106
+ </tr>
107
+ <tr>
108
+ <td class="function_type">
109
+ <a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="returnvalue">GdkColormap</span></a> *
110
+ </td>
111
+ <td class="function_name">
112
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-drawable-get-colormap" title="gdk_drawable_get_colormap ()">gdk_drawable_get_colormap</a> <span class="c_punctuation">()</span>
113
+ </td>
114
+ </tr>
115
+ <tr>
116
+ <td class="function_type">
117
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
118
+ </td>
119
+ <td class="function_name">
120
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-drawable-get-depth" title="gdk_drawable_get_depth ()">gdk_drawable_get_depth</a> <span class="c_punctuation">()</span>
121
+ </td>
122
+ </tr>
123
+ <tr>
124
+ <td class="function_type">
125
+ <span class="returnvalue">void</span>
126
+ </td>
127
+ <td class="function_name">
128
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-drawable-get-size" title="gdk_drawable_get_size ()">gdk_drawable_get_size</a> <span class="c_punctuation">()</span>
129
+ </td>
130
+ </tr>
131
+ <tr>
132
+ <td class="function_type">
133
+ <a class="link" href="gdk2-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="returnvalue">GdkRegion</span></a> *
134
+ </td>
135
+ <td class="function_name">
136
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-drawable-get-clip-region" title="gdk_drawable_get_clip_region ()">gdk_drawable_get_clip_region</a> <span class="c_punctuation">()</span>
137
+ </td>
138
+ </tr>
139
+ <tr>
140
+ <td class="function_type">
141
+ <a class="link" href="gdk2-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="returnvalue">GdkRegion</span></a> *
142
+ </td>
143
+ <td class="function_name">
144
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-drawable-get-visible-region" title="gdk_drawable_get_visible_region ()">gdk_drawable_get_visible_region</a> <span class="c_punctuation">()</span>
145
+ </td>
146
+ </tr>
147
+ <tr>
148
+ <td class="function_type">
149
+ <span class="returnvalue">void</span>
150
+ </td>
151
+ <td class="function_name">
152
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-point" title="gdk_draw_point ()">gdk_draw_point</a> <span class="c_punctuation">()</span>
153
+ </td>
154
+ </tr>
155
+ <tr>
156
+ <td class="function_type">
157
+ <span class="returnvalue">void</span>
158
+ </td>
159
+ <td class="function_name">
160
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-points" title="gdk_draw_points ()">gdk_draw_points</a> <span class="c_punctuation">()</span>
161
+ </td>
162
+ </tr>
163
+ <tr>
164
+ <td class="function_type">
165
+ <span class="returnvalue">void</span>
166
+ </td>
167
+ <td class="function_name">
168
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-line" title="gdk_draw_line ()">gdk_draw_line</a> <span class="c_punctuation">()</span>
169
+ </td>
170
+ </tr>
171
+ <tr>
172
+ <td class="function_type">
173
+ <span class="returnvalue">void</span>
174
+ </td>
175
+ <td class="function_name">
176
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-lines" title="gdk_draw_lines ()">gdk_draw_lines</a> <span class="c_punctuation">()</span>
177
+ </td>
178
+ </tr>
179
+ <tr>
180
+ <td class="function_type">
181
+ <span class="returnvalue">void</span>
182
+ </td>
183
+ <td class="function_name">
184
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-pixbuf" title="gdk_draw_pixbuf ()">gdk_draw_pixbuf</a> <span class="c_punctuation">()</span>
185
+ </td>
186
+ </tr>
187
+ <tr>
188
+ <td class="function_type">
189
+ <span class="returnvalue">void</span>
190
+ </td>
191
+ <td class="function_name">
192
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-segments" title="gdk_draw_segments ()">gdk_draw_segments</a> <span class="c_punctuation">()</span>
193
+ </td>
194
+ </tr>
195
+ <tr>
196
+ <td class="function_type">
197
+ <span class="returnvalue">void</span>
198
+ </td>
199
+ <td class="function_name">
200
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-rectangle" title="gdk_draw_rectangle ()">gdk_draw_rectangle</a> <span class="c_punctuation">()</span>
201
+ </td>
202
+ </tr>
203
+ <tr>
204
+ <td class="function_type">
205
+ <span class="returnvalue">void</span>
206
+ </td>
207
+ <td class="function_name">
208
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-arc" title="gdk_draw_arc ()">gdk_draw_arc</a> <span class="c_punctuation">()</span>
209
+ </td>
210
+ </tr>
211
+ <tr>
212
+ <td class="function_type">
213
+ <span class="returnvalue">void</span>
214
+ </td>
215
+ <td class="function_name">
216
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-polygon" title="gdk_draw_polygon ()">gdk_draw_polygon</a> <span class="c_punctuation">()</span>
217
+ </td>
218
+ </tr>
219
+ <tr>
220
+ <td class="function_type">
221
+ <span class="returnvalue">void</span>
222
+ </td>
223
+ <td class="function_name">
224
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-trapezoids" title="gdk_draw_trapezoids ()">gdk_draw_trapezoids</a> <span class="c_punctuation">()</span>
225
+ </td>
226
+ </tr>
227
+ <tr>
228
+ <td class="function_type">
229
+ <span class="returnvalue">void</span>
230
+ </td>
231
+ <td class="function_name">
232
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-glyphs" title="gdk_draw_glyphs ()">gdk_draw_glyphs</a> <span class="c_punctuation">()</span>
233
+ </td>
234
+ </tr>
235
+ <tr>
236
+ <td class="function_type">
237
+ <span class="returnvalue">void</span>
238
+ </td>
239
+ <td class="function_name">
240
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-glyphs-transformed" title="gdk_draw_glyphs_transformed ()">gdk_draw_glyphs_transformed</a> <span class="c_punctuation">()</span>
241
+ </td>
242
+ </tr>
243
+ <tr>
244
+ <td class="function_type">
245
+ <span class="returnvalue">void</span>
246
+ </td>
247
+ <td class="function_name">
248
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-layout-line" title="gdk_draw_layout_line ()">gdk_draw_layout_line</a> <span class="c_punctuation">()</span>
249
+ </td>
250
+ </tr>
251
+ <tr>
252
+ <td class="function_type">
253
+ <span class="returnvalue">void</span>
254
+ </td>
255
+ <td class="function_name">
256
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-layout-line-with-colors" title="gdk_draw_layout_line_with_colors ()">gdk_draw_layout_line_with_colors</a> <span class="c_punctuation">()</span>
257
+ </td>
258
+ </tr>
259
+ <tr>
260
+ <td class="function_type">
261
+ <span class="returnvalue">void</span>
262
+ </td>
263
+ <td class="function_name">
264
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-layout" title="gdk_draw_layout ()">gdk_draw_layout</a> <span class="c_punctuation">()</span>
265
+ </td>
266
+ </tr>
267
+ <tr>
268
+ <td class="function_type">
269
+ <span class="returnvalue">void</span>
270
+ </td>
271
+ <td class="function_name">
272
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-layout-with-colors" title="gdk_draw_layout_with_colors ()">gdk_draw_layout_with_colors</a> <span class="c_punctuation">()</span>
273
+ </td>
274
+ </tr>
275
+ <tr>
276
+ <td class="function_type">
277
+ <span class="returnvalue">void</span>
278
+ </td>
279
+ <td class="function_name">
280
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-string" title="gdk_draw_string ()">gdk_draw_string</a> <span class="c_punctuation">()</span>
281
+ </td>
282
+ </tr>
283
+ <tr>
284
+ <td class="function_type">
285
+ <span class="returnvalue">void</span>
286
+ </td>
287
+ <td class="function_name">
288
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-text" title="gdk_draw_text ()">gdk_draw_text</a> <span class="c_punctuation">()</span>
289
+ </td>
290
+ </tr>
291
+ <tr>
292
+ <td class="function_type">
293
+ <span class="returnvalue">void</span>
294
+ </td>
295
+ <td class="function_name">
296
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-text-wc" title="gdk_draw_text_wc ()">gdk_draw_text_wc</a> <span class="c_punctuation">()</span>
297
+ </td>
298
+ </tr>
299
+ <tr>
300
+ <td class="function_type">
301
+ <span class="returnvalue">void</span>
302
+ </td>
303
+ <td class="function_name">
304
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-drawable" title="gdk_draw_drawable ()">gdk_draw_drawable</a> <span class="c_punctuation">()</span>
305
+ </td>
306
+ </tr>
307
+ <tr>
308
+ <td class="function_type">
309
+ <span class="returnvalue">void</span>
310
+ </td>
311
+ <td class="function_name">
312
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-image" title="gdk_draw_image ()">gdk_draw_image</a> <span class="c_punctuation">()</span>
313
+ </td>
314
+ </tr>
315
+ <tr>
316
+ <td class="function_type">
317
+ <a class="link" href="gdk2-Images.html#GdkImage" title="GdkImage"><span class="returnvalue">GdkImage</span></a> *
318
+ </td>
319
+ <td class="function_name">
320
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-drawable-get-image" title="gdk_drawable_get_image ()">gdk_drawable_get_image</a> <span class="c_punctuation">()</span>
321
+ </td>
322
+ </tr>
323
+ <tr>
324
+ <td class="function_type">
325
+ <a class="link" href="gdk2-Images.html#GdkImage" title="GdkImage"><span class="returnvalue">GdkImage</span></a> *
326
+ </td>
327
+ <td class="function_name">
328
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-drawable-copy-to-image" title="gdk_drawable_copy_to_image ()">gdk_drawable_copy_to_image</a> <span class="c_punctuation">()</span>
329
+ </td>
330
+ </tr>
331
+ </tbody>
332
+ </table></div>
333
+ </div>
334
+ <a name="GdkDrawable"></a><div class="refsect1">
335
+ <a name="gdk2-Drawing-Primitives.other"></a><h2>Types and Values</h2>
336
+ <div class="informaltable"><table width="100%" border="0">
337
+ <colgroup>
338
+ <col width="150px" class="name">
339
+ <col class="description">
340
+ </colgroup>
341
+ <tbody>
342
+ <tr>
343
+ <td class="datatype_keyword"> </td>
344
+ <td class="function_name"><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable-struct" title="GdkDrawable">GdkDrawable</a></td>
345
+ </tr>
346
+ <tr>
347
+ <td class="datatype_keyword">struct</td>
348
+ <td class="function_name"><a class="link" href="gdk2-Drawing-Primitives.html#GdkSegment" title="struct GdkSegment">GdkSegment</a></td>
349
+ </tr>
350
+ <tr>
351
+ <td class="datatype_keyword">struct</td>
352
+ <td class="function_name"><a class="link" href="gdk2-Drawing-Primitives.html#GdkTrapezoid" title="struct GdkTrapezoid">GdkTrapezoid</a></td>
353
+ </tr>
354
+ <tr>
355
+ <td class="define_keyword">#define</td>
356
+ <td class="function_name"><a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-pixmap" title="gdk_draw_pixmap">gdk_draw_pixmap</a></td>
357
+ </tr>
358
+ </tbody>
359
+ </table></div>
360
+ </div>
361
+ <div class="refsect1">
362
+ <a name="gdk2-Drawing-Primitives.object-hierarchy"></a><h2>Object Hierarchy</h2>
363
+ <pre class="screen"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
364
+ <span class="lineart">╰──</span> GdkDrawable
365
+ <span class="lineart">├──</span> <a class="link" href="gdk2-Windows.html#GdkWindow">GdkWindow</a>
366
+ <span class="lineart">╰──</span> <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap">GdkPixmap</a>
367
+ </pre>
368
+ </div>
369
+ <div class="refsect1">
370
+ <a name="gdk2-Drawing-Primitives.includes"></a><h2>Includes</h2>
371
+ <pre class="synopsis">#include &lt;gdk/gdk.h&gt;
372
+ </pre>
373
+ </div>
374
+ <div class="refsect1">
375
+ <a name="gdk2-Drawing-Primitives.description"></a><h2>Description</h2>
376
+ <p>
377
+ These functions provide support for drawing points, lines, arcs and text
378
+ onto what are called 'drawables'. Drawables, as the name suggests, are things
379
+ which support drawing onto them, and are either <a class="link" href="gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> or <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>
380
+ objects.
381
+ </p>
382
+ <p>
383
+ Many of the drawing operations take a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> argument, which represents a
384
+ graphics context. This <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> contains a number of drawing attributes such
385
+ as foreground color, background color and line width, and is used to reduce
386
+ the number of arguments needed for each drawing operation. See the
387
+ Graphics Contexts section for
388
+ more information.
389
+ </p>
390
+ <p><a name="pango-data-structures"></a>
391
+ Some of the drawing operations take Pango data structures like <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a>,
392
+ <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> or <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayoutLine"><span class="type">PangoLayoutLine</span></a> as arguments. If you're using GTK+, the ususal
393
+ way to obtain these structures is via <a href="http://developer.gnome.org/gtk2/GtkWidget.html#gtk-widget-create-pango-context"><code class="function">gtk_widget_create_pango_context()</code></a> or
394
+ <a href="http://developer.gnome.org/gtk2/GtkWidget.html#gtk-widget-create-pango-layout"><code class="function">gtk_widget_create_pango_layout()</code></a>.
395
+ </p>
396
+ </div>
397
+ <div class="refsect1">
398
+ <a name="gdk2-Drawing-Primitives.functions_details"></a><h2>Functions</h2>
399
+ <div class="refsect2">
400
+ <a name="gdk-drawable-ref"></a><h3>gdk_drawable_ref ()</h3>
401
+ <pre class="programlisting"><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="returnvalue">GdkDrawable</span></a> *
402
+ gdk_drawable_ref (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);</pre>
403
+ <div class="warning">
404
+ <p><code class="literal">gdk_drawable_ref</code> has been deprecated since version 2.0 and should not be used in newly-written code.</p>
405
+ <p>Use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-ref"><code class="function">g_object_ref()</code></a> instead.</p>
406
+ </div>
407
+ <p>Deprecated equivalent of calling <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-ref"><code class="function">g_object_ref()</code></a> on <em class="parameter"><code>drawable</code></em>
408
+ .
409
+ (Drawables were not objects in previous versions of GDK.)</p>
410
+ <div class="refsect3">
411
+ <a name="id-1.2.9.9.2.6"></a><h4>Parameters</h4>
412
+ <div class="informaltable"><table width="100%" border="0">
413
+ <colgroup>
414
+ <col width="150px" class="parameters_name">
415
+ <col class="parameters_description">
416
+ <col width="200px" class="parameters_annotations">
417
+ </colgroup>
418
+ <tbody><tr>
419
+ <td class="parameter_name"><p>drawable</p></td>
420
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
421
+ <td class="parameter_annotations"> </td>
422
+ </tr></tbody>
423
+ </table></div>
424
+ </div>
425
+ <div class="refsect3">
426
+ <a name="id-1.2.9.9.2.7"></a><h4>Returns</h4>
427
+ <p> the same <em class="parameter"><code>drawable</code></em>
428
+ passed in</p>
429
+ <p></p>
430
+ </div>
431
+ </div>
432
+ <hr>
433
+ <div class="refsect2">
434
+ <a name="gdk-drawable-unref"></a><h3>gdk_drawable_unref ()</h3>
435
+ <pre class="programlisting"><span class="returnvalue">void</span>
436
+ gdk_drawable_unref (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);</pre>
437
+ <div class="warning">
438
+ <p><code class="literal">gdk_drawable_unref</code> has been deprecated since version 2.0 and should not be used in newly-written code.</p>
439
+ <p>Use <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> instead.</p>
440
+ </div>
441
+ <p>Deprecated equivalent of calling <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> on <em class="parameter"><code>drawable</code></em>
442
+ .</p>
443
+ <div class="refsect3">
444
+ <a name="id-1.2.9.9.3.6"></a><h4>Parameters</h4>
445
+ <div class="informaltable"><table width="100%" border="0">
446
+ <colgroup>
447
+ <col width="150px" class="parameters_name">
448
+ <col class="parameters_description">
449
+ <col width="200px" class="parameters_annotations">
450
+ </colgroup>
451
+ <tbody><tr>
452
+ <td class="parameter_name"><p>drawable</p></td>
453
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
454
+ <td class="parameter_annotations"> </td>
455
+ </tr></tbody>
456
+ </table></div>
457
+ </div>
458
+ </div>
459
+ <hr>
460
+ <div class="refsect2">
461
+ <a name="gdk-drawable-set-data"></a><h3>gdk_drawable_set_data ()</h3>
462
+ <pre class="programlisting"><span class="returnvalue">void</span>
463
+ gdk_drawable_set_data (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
464
+ <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *key</code></em>,
465
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
466
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy_func</code></em>);</pre>
467
+ <div class="warning"><p><code class="literal">gdk_drawable_set_data</code> is deprecated and should not be used in newly-written code.</p></div>
468
+ <p>This function is equivalent to <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-set-data"><code class="function">g_object_set_data()</code></a>,
469
+ the <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> variant should be used instead.</p>
470
+ <div class="refsect3">
471
+ <a name="id-1.2.9.9.4.6"></a><h4>Parameters</h4>
472
+ <div class="informaltable"><table width="100%" border="0">
473
+ <colgroup>
474
+ <col width="150px" class="parameters_name">
475
+ <col class="parameters_description">
476
+ <col width="200px" class="parameters_annotations">
477
+ </colgroup>
478
+ <tbody>
479
+ <tr>
480
+ <td class="parameter_name"><p>drawable</p></td>
481
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
482
+ <td class="parameter_annotations"> </td>
483
+ </tr>
484
+ <tr>
485
+ <td class="parameter_name"><p>key</p></td>
486
+ <td class="parameter_description"><p>name to store the data under</p></td>
487
+ <td class="parameter_annotations"> </td>
488
+ </tr>
489
+ <tr>
490
+ <td class="parameter_name"><p>data</p></td>
491
+ <td class="parameter_description"><p>arbitrary data</p></td>
492
+ <td class="parameter_annotations"> </td>
493
+ </tr>
494
+ <tr>
495
+ <td class="parameter_name"><p>destroy_func</p></td>
496
+ <td class="parameter_description"><p> function to free <em class="parameter"><code>data</code></em>
497
+ , or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
498
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
499
+ </tr>
500
+ </tbody>
501
+ </table></div>
502
+ </div>
503
+ </div>
504
+ <hr>
505
+ <div class="refsect2">
506
+ <a name="gdk-drawable-get-data"></a><h3>gdk_drawable_get_data ()</h3>
507
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a>
508
+ gdk_drawable_get_data (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
509
+ <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *key</code></em>);</pre>
510
+ <div class="warning"><p><code class="literal">gdk_drawable_get_data</code> is deprecated and should not be used in newly-written code.</p></div>
511
+ <p>Equivalent to <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-get-data"><code class="function">g_object_get_data()</code></a>; the <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> variant should be
512
+ used instead.</p>
513
+ <div class="refsect3">
514
+ <a name="id-1.2.9.9.5.6"></a><h4>Parameters</h4>
515
+ <div class="informaltable"><table width="100%" border="0">
516
+ <colgroup>
517
+ <col width="150px" class="parameters_name">
518
+ <col class="parameters_description">
519
+ <col width="200px" class="parameters_annotations">
520
+ </colgroup>
521
+ <tbody>
522
+ <tr>
523
+ <td class="parameter_name"><p>drawable</p></td>
524
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
525
+ <td class="parameter_annotations"> </td>
526
+ </tr>
527
+ <tr>
528
+ <td class="parameter_name"><p>key</p></td>
529
+ <td class="parameter_description"><p>name the data was stored under</p></td>
530
+ <td class="parameter_annotations"> </td>
531
+ </tr>
532
+ </tbody>
533
+ </table></div>
534
+ </div>
535
+ <div class="refsect3">
536
+ <a name="id-1.2.9.9.5.7"></a><h4>Returns</h4>
537
+ <p> the data stored at <em class="parameter"><code>key</code></em>
538
+ </p>
539
+ <p></p>
540
+ </div>
541
+ </div>
542
+ <hr>
543
+ <div class="refsect2">
544
+ <a name="gdk-drawable-get-display"></a><h3>gdk_drawable_get_display ()</h3>
545
+ <pre class="programlisting"><a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="returnvalue">GdkDisplay</span></a> *
546
+ gdk_drawable_get_display (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);</pre>
547
+ <div class="warning">
548
+ <p><code class="literal">gdk_drawable_get_display</code> has been deprecated since version 2.24 and should not be used in newly-written code.</p>
549
+ <p>Use <a class="link" href="gdk2-Windows.html#gdk-window-get-display" title="gdk_window_get_display ()"><code class="function">gdk_window_get_display()</code></a> instead</p>
550
+ </div>
551
+ <p>Gets the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> associated with a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>.</p>
552
+ <div class="refsect3">
553
+ <a name="id-1.2.9.9.6.7"></a><h4>Parameters</h4>
554
+ <div class="informaltable"><table width="100%" border="0">
555
+ <colgroup>
556
+ <col width="150px" class="parameters_name">
557
+ <col class="parameters_description">
558
+ <col width="200px" class="parameters_annotations">
559
+ </colgroup>
560
+ <tbody><tr>
561
+ <td class="parameter_name"><p>drawable</p></td>
562
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
563
+ <td class="parameter_annotations"> </td>
564
+ </tr></tbody>
565
+ </table></div>
566
+ </div>
567
+ <div class="refsect3">
568
+ <a name="id-1.2.9.9.6.8"></a><h4>Returns</h4>
569
+ <p> the <a class="link" href="GdkDisplay.html" title="GdkDisplay"><span class="type">GdkDisplay</span></a> associated with <em class="parameter"><code>drawable</code></em>
570
+ </p>
571
+ <p></p>
572
+ </div>
573
+ <p class="since">Since 2.2</p>
574
+ </div>
575
+ <hr>
576
+ <div class="refsect2">
577
+ <a name="gdk-drawable-get-screen"></a><h3>gdk_drawable_get_screen ()</h3>
578
+ <pre class="programlisting"><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="returnvalue">GdkScreen</span></a> *
579
+ gdk_drawable_get_screen (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);</pre>
580
+ <div class="warning">
581
+ <p><code class="literal">gdk_drawable_get_screen</code> has been deprecated since version 2.24 and should not be used in newly-written code.</p>
582
+ <p>Use <a class="link" href="gdk2-Windows.html#gdk-window-get-screen" title="gdk_window_get_screen ()"><code class="function">gdk_window_get_screen()</code></a> instead</p>
583
+ </div>
584
+ <p>Gets the <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> associated with a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>.</p>
585
+ <div class="refsect3">
586
+ <a name="id-1.2.9.9.7.7"></a><h4>Parameters</h4>
587
+ <div class="informaltable"><table width="100%" border="0">
588
+ <colgroup>
589
+ <col width="150px" class="parameters_name">
590
+ <col class="parameters_description">
591
+ <col width="200px" class="parameters_annotations">
592
+ </colgroup>
593
+ <tbody><tr>
594
+ <td class="parameter_name"><p>drawable</p></td>
595
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
596
+ <td class="parameter_annotations"> </td>
597
+ </tr></tbody>
598
+ </table></div>
599
+ </div>
600
+ <div class="refsect3">
601
+ <a name="id-1.2.9.9.7.8"></a><h4>Returns</h4>
602
+ <p> the <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> associated with <em class="parameter"><code>drawable</code></em>
603
+ </p>
604
+ <p></p>
605
+ </div>
606
+ <p class="since">Since 2.2</p>
607
+ </div>
608
+ <hr>
609
+ <div class="refsect2">
610
+ <a name="gdk-drawable-get-visual"></a><h3>gdk_drawable_get_visual ()</h3>
611
+ <pre class="programlisting"><a class="link" href="gdk2-Visuals.html#GdkVisual" title="GdkVisual"><span class="returnvalue">GdkVisual</span></a> *
612
+ gdk_drawable_get_visual (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);</pre>
613
+ <div class="warning">
614
+ <p><code class="literal">gdk_drawable_get_visual</code> has been deprecated since version 2.24 and should not be used in newly-written code.</p>
615
+ <p>Use <a class="link" href="gdk2-Windows.html#gdk-window-get-visual" title="gdk_window_get_visual ()"><code class="function">gdk_window_get_visual()</code></a></p>
616
+ </div>
617
+ <p>Gets the <a class="link" href="gdk2-Visuals.html#GdkVisual" title="GdkVisual"><span class="type">GdkVisual</span></a> describing the pixel format of <em class="parameter"><code>drawable</code></em>
618
+ .</p>
619
+ <div class="refsect3">
620
+ <a name="id-1.2.9.9.8.6"></a><h4>Parameters</h4>
621
+ <div class="informaltable"><table width="100%" border="0">
622
+ <colgroup>
623
+ <col width="150px" class="parameters_name">
624
+ <col class="parameters_description">
625
+ <col width="200px" class="parameters_annotations">
626
+ </colgroup>
627
+ <tbody><tr>
628
+ <td class="parameter_name"><p>drawable</p></td>
629
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
630
+ <td class="parameter_annotations"> </td>
631
+ </tr></tbody>
632
+ </table></div>
633
+ </div>
634
+ <div class="refsect3">
635
+ <a name="id-1.2.9.9.8.7"></a><h4>Returns</h4>
636
+ <p> a <a class="link" href="gdk2-Visuals.html#GdkVisual" title="GdkVisual"><span class="type">GdkVisual</span></a></p>
637
+ <p></p>
638
+ </div>
639
+ </div>
640
+ <hr>
641
+ <div class="refsect2">
642
+ <a name="gdk-drawable-set-colormap"></a><h3>gdk_drawable_set_colormap ()</h3>
643
+ <pre class="programlisting"><span class="returnvalue">void</span>
644
+ gdk_drawable_set_colormap (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
645
+ <em class="parameter"><code><a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a> *colormap</code></em>);</pre>
646
+ <div class="warning"><p><code class="literal">gdk_drawable_set_colormap</code> is deprecated and should not be used in newly-written code.</p></div>
647
+ <p>Sets the colormap associated with <em class="parameter"><code>drawable</code></em>
648
+ . Normally this will
649
+ happen automatically when the drawable is created; you only need to
650
+ use this function if the drawable-creating function did not have a
651
+ way to determine the colormap, and you then use drawable operations
652
+ that require a colormap. The colormap for all drawables and
653
+ graphics contexts you intend to use together should match. i.e.
654
+ when using a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> to draw to a drawable, or copying one drawable
655
+ to another, the colormaps should match.</p>
656
+ <div class="refsect3">
657
+ <a name="id-1.2.9.9.9.6"></a><h4>Parameters</h4>
658
+ <div class="informaltable"><table width="100%" border="0">
659
+ <colgroup>
660
+ <col width="150px" class="parameters_name">
661
+ <col class="parameters_description">
662
+ <col width="200px" class="parameters_annotations">
663
+ </colgroup>
664
+ <tbody>
665
+ <tr>
666
+ <td class="parameter_name"><p>drawable</p></td>
667
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
668
+ <td class="parameter_annotations"> </td>
669
+ </tr>
670
+ <tr>
671
+ <td class="parameter_name"><p>colormap</p></td>
672
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a></p></td>
673
+ <td class="parameter_annotations"> </td>
674
+ </tr>
675
+ </tbody>
676
+ </table></div>
677
+ </div>
678
+ </div>
679
+ <hr>
680
+ <div class="refsect2">
681
+ <a name="gdk-drawable-get-colormap"></a><h3>gdk_drawable_get_colormap ()</h3>
682
+ <pre class="programlisting"><a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="returnvalue">GdkColormap</span></a> *
683
+ gdk_drawable_get_colormap (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);</pre>
684
+ <p>Gets the colormap for <em class="parameter"><code>drawable</code></em>
685
+ , if one is set; returns
686
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> otherwise.</p>
687
+ <div class="refsect3">
688
+ <a name="id-1.2.9.9.10.5"></a><h4>Parameters</h4>
689
+ <div class="informaltable"><table width="100%" border="0">
690
+ <colgroup>
691
+ <col width="150px" class="parameters_name">
692
+ <col class="parameters_description">
693
+ <col width="200px" class="parameters_annotations">
694
+ </colgroup>
695
+ <tbody><tr>
696
+ <td class="parameter_name"><p>drawable</p></td>
697
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
698
+ <td class="parameter_annotations"> </td>
699
+ </tr></tbody>
700
+ </table></div>
701
+ </div>
702
+ <div class="refsect3">
703
+ <a name="id-1.2.9.9.10.6"></a><h4>Returns</h4>
704
+ <p> the colormap, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p>
705
+ <p></p>
706
+ </div>
707
+ </div>
708
+ <hr>
709
+ <div class="refsect2">
710
+ <a name="gdk-drawable-get-depth"></a><h3>gdk_drawable_get_depth ()</h3>
711
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
712
+ gdk_drawable_get_depth (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);</pre>
713
+ <p>Obtains the bit depth of the drawable, that is, the number of bits
714
+ that make up a pixel in the drawable's visual. Examples are 8 bits
715
+ per pixel, 24 bits per pixel, etc.</p>
716
+ <div class="refsect3">
717
+ <a name="id-1.2.9.9.11.5"></a><h4>Parameters</h4>
718
+ <div class="informaltable"><table width="100%" border="0">
719
+ <colgroup>
720
+ <col width="150px" class="parameters_name">
721
+ <col class="parameters_description">
722
+ <col width="200px" class="parameters_annotations">
723
+ </colgroup>
724
+ <tbody><tr>
725
+ <td class="parameter_name"><p>drawable</p></td>
726
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
727
+ <td class="parameter_annotations"> </td>
728
+ </tr></tbody>
729
+ </table></div>
730
+ </div>
731
+ <div class="refsect3">
732
+ <a name="id-1.2.9.9.11.6"></a><h4>Returns</h4>
733
+ <p> number of bits per pixel</p>
734
+ <p></p>
735
+ </div>
736
+ </div>
737
+ <hr>
738
+ <div class="refsect2">
739
+ <a name="gdk-drawable-get-size"></a><h3>gdk_drawable_get_size ()</h3>
740
+ <pre class="programlisting"><span class="returnvalue">void</span>
741
+ gdk_drawable_get_size (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
742
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *width</code></em>,
743
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *height</code></em>);</pre>
744
+ <div class="warning">
745
+ <p><code class="literal">gdk_drawable_get_size</code> has been deprecated since version 2.24 and should not be used in newly-written code.</p>
746
+ <p>Use <a class="link" href="gdk2-Windows.html#gdk-window-get-width" title="gdk_window_get_width ()"><code class="function">gdk_window_get_width()</code></a> and <a class="link" href="gdk2-Windows.html#gdk-window-get-height" title="gdk_window_get_height ()"><code class="function">gdk_window_get_height()</code></a> for
747
+ <a href="gdk2-Windows.html#GdkWindow"><span class="type">GdkWindows</span></a>. Use <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#gdk-pixmap-get-size" title="gdk_pixmap_get_size ()"><code class="function">gdk_pixmap_get_size()</code></a> for <a href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmaps</span></a>.</p>
748
+ </div>
749
+ <p>Fills *<em class="parameter"><code>width</code></em>
750
+ and *<em class="parameter"><code>height</code></em>
751
+ with the size of <em class="parameter"><code>drawable</code></em>
752
+ .
753
+ <em class="parameter"><code>width</code></em>
754
+ or <em class="parameter"><code>height</code></em>
755
+ can be <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if you only want the other one.</p>
756
+ <p>On the X11 platform, if <em class="parameter"><code>drawable</code></em>
757
+ is a <a class="link" href="gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>, the returned
758
+ size is the size reported in the most-recently-processed configure
759
+ event, rather than the current size on the X server.</p>
760
+ <div class="refsect3">
761
+ <a name="id-1.2.9.9.12.7"></a><h4>Parameters</h4>
762
+ <div class="informaltable"><table width="100%" border="0">
763
+ <colgroup>
764
+ <col width="150px" class="parameters_name">
765
+ <col class="parameters_description">
766
+ <col width="200px" class="parameters_annotations">
767
+ </colgroup>
768
+ <tbody>
769
+ <tr>
770
+ <td class="parameter_name"><p>drawable</p></td>
771
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
772
+ <td class="parameter_annotations"> </td>
773
+ </tr>
774
+ <tr>
775
+ <td class="parameter_name"><p>width</p></td>
776
+ <td class="parameter_description"><p> location to store drawable's width, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
777
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
778
+ </tr>
779
+ <tr>
780
+ <td class="parameter_name"><p>height</p></td>
781
+ <td class="parameter_description"><p> location to store drawable's height, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
782
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
783
+ </tr>
784
+ </tbody>
785
+ </table></div>
786
+ </div>
787
+ </div>
788
+ <hr>
789
+ <div class="refsect2">
790
+ <a name="gdk-drawable-get-clip-region"></a><h3>gdk_drawable_get_clip_region ()</h3>
791
+ <pre class="programlisting"><a class="link" href="gdk2-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="returnvalue">GdkRegion</span></a> *
792
+ gdk_drawable_get_clip_region (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);</pre>
793
+ <div class="warning"><p><code class="literal">gdk_drawable_get_clip_region</code> is deprecated and should not be used in newly-written code.</p></div>
794
+ <p>Computes the region of a drawable that potentially can be written
795
+ to by drawing primitives. This region will not take into account
796
+ the clip region for the GC, and may also not take into account
797
+ other factors such as if the window is obscured by other windows,
798
+ but no area outside of this region will be affected by drawing
799
+ primitives.</p>
800
+ <div class="refsect3">
801
+ <a name="id-1.2.9.9.13.6"></a><h4>Parameters</h4>
802
+ <div class="informaltable"><table width="100%" border="0">
803
+ <colgroup>
804
+ <col width="150px" class="parameters_name">
805
+ <col class="parameters_description">
806
+ <col width="200px" class="parameters_annotations">
807
+ </colgroup>
808
+ <tbody><tr>
809
+ <td class="parameter_name"><p>drawable</p></td>
810
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
811
+ <td class="parameter_annotations"> </td>
812
+ </tr></tbody>
813
+ </table></div>
814
+ </div>
815
+ <div class="refsect3">
816
+ <a name="id-1.2.9.9.13.7"></a><h4>Returns</h4>
817
+ <p> a <a class="link" href="gdk2-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="type">GdkRegion</span></a>. This must be freed with <a class="link" href="gdk2-Points-Rectangles-and-Regions.html#gdk-region-destroy" title="gdk_region_destroy ()"><code class="function">gdk_region_destroy()</code></a>
818
+ when you are done.</p>
819
+ <p></p>
820
+ </div>
821
+ </div>
822
+ <hr>
823
+ <div class="refsect2">
824
+ <a name="gdk-drawable-get-visible-region"></a><h3>gdk_drawable_get_visible_region ()</h3>
825
+ <pre class="programlisting"><a class="link" href="gdk2-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="returnvalue">GdkRegion</span></a> *
826
+ gdk_drawable_get_visible_region (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);</pre>
827
+ <p>Computes the region of a drawable that is potentially visible.
828
+ This does not necessarily take into account if the window is
829
+ obscured by other windows, but no area outside of this region
830
+ is visible.</p>
831
+ <div class="refsect3">
832
+ <a name="id-1.2.9.9.14.5"></a><h4>Parameters</h4>
833
+ <div class="informaltable"><table width="100%" border="0">
834
+ <colgroup>
835
+ <col width="150px" class="parameters_name">
836
+ <col class="parameters_description">
837
+ <col width="200px" class="parameters_annotations">
838
+ </colgroup>
839
+ <tbody><tr>
840
+ <td class="parameter_name"><p>drawable</p></td>
841
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
842
+ <td class="parameter_annotations"> </td>
843
+ </tr></tbody>
844
+ </table></div>
845
+ </div>
846
+ <div class="refsect3">
847
+ <a name="id-1.2.9.9.14.6"></a><h4>Returns</h4>
848
+ <p> a <a class="link" href="gdk2-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="type">GdkRegion</span></a>. This must be freed with <a class="link" href="gdk2-Points-Rectangles-and-Regions.html#gdk-region-destroy" title="gdk_region_destroy ()"><code class="function">gdk_region_destroy()</code></a>
849
+ when you are done.</p>
850
+ <p></p>
851
+ </div>
852
+ </div>
853
+ <hr>
854
+ <div class="refsect2">
855
+ <a name="gdk-draw-point"></a><h3>gdk_draw_point ()</h3>
856
+ <pre class="programlisting"><span class="returnvalue">void</span>
857
+ gdk_draw_point (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
858
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
859
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
860
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);</pre>
861
+ <div class="warning">
862
+ <p><code class="literal">gdk_draw_point</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
863
+ <p>Use <code class="function">cairo_rectangle()</code> and <code class="function">cairo_fill()</code> or
864
+ <code class="function">cairo_move_to()</code> and <code class="function">cairo_stroke()</code> instead.</p>
865
+ </div>
866
+ <p>Draws a point, using the foreground color and other attributes of
867
+ the <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p>
868
+ <div class="refsect3">
869
+ <a name="id-1.2.9.9.15.6"></a><h4>Parameters</h4>
870
+ <div class="informaltable"><table width="100%" border="0">
871
+ <colgroup>
872
+ <col width="150px" class="parameters_name">
873
+ <col class="parameters_description">
874
+ <col width="200px" class="parameters_annotations">
875
+ </colgroup>
876
+ <tbody>
877
+ <tr>
878
+ <td class="parameter_name"><p>drawable</p></td>
879
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> (a <a class="link" href="gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> or a <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>).</p></td>
880
+ <td class="parameter_annotations"> </td>
881
+ </tr>
882
+ <tr>
883
+ <td class="parameter_name"><p>gc</p></td>
884
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
885
+ <td class="parameter_annotations"> </td>
886
+ </tr>
887
+ <tr>
888
+ <td class="parameter_name"><p>x</p></td>
889
+ <td class="parameter_description"><p>the x coordinate of the point.</p></td>
890
+ <td class="parameter_annotations"> </td>
891
+ </tr>
892
+ <tr>
893
+ <td class="parameter_name"><p>y</p></td>
894
+ <td class="parameter_description"><p>the y coordinate of the point.</p></td>
895
+ <td class="parameter_annotations"> </td>
896
+ </tr>
897
+ </tbody>
898
+ </table></div>
899
+ </div>
900
+ </div>
901
+ <hr>
902
+ <div class="refsect2">
903
+ <a name="gdk-draw-points"></a><h3>gdk_draw_points ()</h3>
904
+ <pre class="programlisting"><span class="returnvalue">void</span>
905
+ gdk_draw_points (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
906
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
907
+ <em class="parameter"><code>const <a class="link" href="gdk2-Points-Rectangles-and-Regions.html#GdkPoint" title="struct GdkPoint"><span class="type">GdkPoint</span></a> *points</code></em>,
908
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_points</code></em>);</pre>
909
+ <div class="warning">
910
+ <p><code class="literal">gdk_draw_points</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
911
+ <p>Use <em class="parameter"><code>n_points</code></em>
912
+ calls to <code class="function">cairo_rectangle()</code> and
913
+ <code class="function">cairo_fill()</code> instead.</p>
914
+ </div>
915
+ <p>Draws a number of points, using the foreground color and other
916
+ attributes of the <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p>
917
+ <div class="refsect3">
918
+ <a name="id-1.2.9.9.16.6"></a><h4>Parameters</h4>
919
+ <div class="informaltable"><table width="100%" border="0">
920
+ <colgroup>
921
+ <col width="150px" class="parameters_name">
922
+ <col class="parameters_description">
923
+ <col width="200px" class="parameters_annotations">
924
+ </colgroup>
925
+ <tbody>
926
+ <tr>
927
+ <td class="parameter_name"><p>drawable</p></td>
928
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> (a <a class="link" href="gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> or a <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>).</p></td>
929
+ <td class="parameter_annotations"> </td>
930
+ </tr>
931
+ <tr>
932
+ <td class="parameter_name"><p>gc</p></td>
933
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
934
+ <td class="parameter_annotations"> </td>
935
+ </tr>
936
+ <tr>
937
+ <td class="parameter_name"><p>points</p></td>
938
+ <td class="parameter_description"><p>an array of <a class="link" href="gdk2-Points-Rectangles-and-Regions.html#GdkPoint" title="struct GdkPoint"><span class="type">GdkPoint</span></a> structures.</p></td>
939
+ <td class="parameter_annotations"> </td>
940
+ </tr>
941
+ <tr>
942
+ <td class="parameter_name"><p>n_points</p></td>
943
+ <td class="parameter_description"><p>the number of points to be drawn.</p></td>
944
+ <td class="parameter_annotations"> </td>
945
+ </tr>
946
+ </tbody>
947
+ </table></div>
948
+ </div>
949
+ </div>
950
+ <hr>
951
+ <div class="refsect2">
952
+ <a name="gdk-draw-line"></a><h3>gdk_draw_line ()</h3>
953
+ <pre class="programlisting"><span class="returnvalue">void</span>
954
+ gdk_draw_line (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
955
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
956
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x1_</code></em>,
957
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y1_</code></em>,
958
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x2_</code></em>,
959
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y2_</code></em>);</pre>
960
+ <div class="warning">
961
+ <p><code class="literal">gdk_draw_line</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
962
+ <p>Use <code class="function">cairo_line_to()</code> and <code class="function">cairo_stroke()</code> instead.
963
+ Be aware that the default line width in Cairo is 2 pixels and that your
964
+ coordinates need to describe the center of the line. To draw a single
965
+ pixel wide pixel-aligned line, you would use:</p>
966
+ <div class="informalexample">
967
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
968
+ <tbody>
969
+ <tr>
970
+ <td class="listing_lines" align="right"><pre>1
971
+ 2
972
+ 3
973
+ 4
974
+ 5
975
+ 6</pre></td>
976
+ <td class="listing_code"><pre class="programlisting"><span class="function">cairo_set_line_cap</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">cr</span><span class="symbol">,</span><span class="normal"> CAIRO_LINE_CAP_SQUARE</span><span class="symbol">);</span>
977
+ <span class="function">cairo_move_to</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">cr</span><span class="symbol">,</span><span class="normal"> </span><span class="number">0.5</span><span class="symbol">,</span><span class="normal"> </span><span class="number">0.5</span><span class="symbol">);</span>
978
+ <span class="function">cairo_line_to</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">cr</span><span class="symbol">,</span><span class="normal"> </span><span class="number">9.5</span><span class="symbol">,</span><span class="normal"> </span><span class="number">0.5</span><span class="symbol">);</span>
979
+ <span class="function">cairo_stroke</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">cr</span><span class="symbol">);]|</span>
980
+ <span class="usertype">See</span><span class="normal"> also </span><span class="symbol">&lt;</span><span class="usertype">ulink</span><span class="normal"> url</span><span class="symbol">=</span><span class="string">"http://cairographics.org/FAQ/#sharp_lines"</span><span class="symbol">&gt;</span><span class="normal">the Cairo</span>
981
+ <span class="normal">FAQ</span><span class="symbol">&lt;/</span><span class="normal">ulink</span><span class="symbol">&gt;</span><span class="normal"> on </span><span class="usertype">this</span><span class="normal"> topic</span><span class="symbol">.</span></pre></td>
982
+ </tr>
983
+ </tbody>
984
+ </table>
985
+ </div>
986
+
987
+ </div>
988
+ <p>Draws a line, using the foreground color and other attributes of
989
+ the <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p>
990
+ <div class="refsect3">
991
+ <a name="id-1.2.9.9.17.6"></a><h4>Parameters</h4>
992
+ <div class="informaltable"><table width="100%" border="0">
993
+ <colgroup>
994
+ <col width="150px" class="parameters_name">
995
+ <col class="parameters_description">
996
+ <col width="200px" class="parameters_annotations">
997
+ </colgroup>
998
+ <tbody>
999
+ <tr>
1000
+ <td class="parameter_name"><p>drawable</p></td>
1001
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> (a <a class="link" href="gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> or a <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>). </p></td>
1002
+ <td class="parameter_annotations"> </td>
1003
+ </tr>
1004
+ <tr>
1005
+ <td class="parameter_name"><p>gc</p></td>
1006
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
1007
+ <td class="parameter_annotations"> </td>
1008
+ </tr>
1009
+ <tr>
1010
+ <td class="parameter_name"><p>x1_</p></td>
1011
+ <td class="parameter_description"><p>the x coordinate of the start point.</p></td>
1012
+ <td class="parameter_annotations"> </td>
1013
+ </tr>
1014
+ <tr>
1015
+ <td class="parameter_name"><p>y1_</p></td>
1016
+ <td class="parameter_description"><p>the y coordinate of the start point.</p></td>
1017
+ <td class="parameter_annotations"> </td>
1018
+ </tr>
1019
+ <tr>
1020
+ <td class="parameter_name"><p>x2_</p></td>
1021
+ <td class="parameter_description"><p>the x coordinate of the end point.</p></td>
1022
+ <td class="parameter_annotations"> </td>
1023
+ </tr>
1024
+ <tr>
1025
+ <td class="parameter_name"><p>y2_</p></td>
1026
+ <td class="parameter_description"><p>the y coordinate of the end point.</p></td>
1027
+ <td class="parameter_annotations"> </td>
1028
+ </tr>
1029
+ </tbody>
1030
+ </table></div>
1031
+ </div>
1032
+ </div>
1033
+ <hr>
1034
+ <div class="refsect2">
1035
+ <a name="gdk-draw-lines"></a><h3>gdk_draw_lines ()</h3>
1036
+ <pre class="programlisting"><span class="returnvalue">void</span>
1037
+ gdk_draw_lines (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
1038
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1039
+ <em class="parameter"><code>const <a class="link" href="gdk2-Points-Rectangles-and-Regions.html#GdkPoint" title="struct GdkPoint"><span class="type">GdkPoint</span></a> *points</code></em>,
1040
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_points</code></em>);</pre>
1041
+ <div class="warning">
1042
+ <p><code class="literal">gdk_draw_lines</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1043
+ <p>Use <code class="function">cairo_line_to()</code> and <code class="function">cairo_stroke()</code> instead. See the
1044
+ documentation of <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-line" title="gdk_draw_line ()"><code class="function">gdk_draw_line()</code></a> for notes on line drawing with Cairo.</p>
1045
+ </div>
1046
+ <p>Draws a series of lines connecting the given points.
1047
+ The way in which joins between lines are draw is determined by the
1048
+ <a class="link" href="gdk2-Graphics-Contexts.html#GdkCapStyle" title="enum GdkCapStyle"><span class="type">GdkCapStyle</span></a> value in the <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>. This can be set with
1049
+ <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-set-line-attributes" title="gdk_gc_set_line_attributes ()"><code class="function">gdk_gc_set_line_attributes()</code></a>.</p>
1050
+ <div class="refsect3">
1051
+ <a name="id-1.2.9.9.18.6"></a><h4>Parameters</h4>
1052
+ <div class="informaltable"><table width="100%" border="0">
1053
+ <colgroup>
1054
+ <col width="150px" class="parameters_name">
1055
+ <col class="parameters_description">
1056
+ <col width="200px" class="parameters_annotations">
1057
+ </colgroup>
1058
+ <tbody>
1059
+ <tr>
1060
+ <td class="parameter_name"><p>drawable</p></td>
1061
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> (a <a class="link" href="gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> or a <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>).</p></td>
1062
+ <td class="parameter_annotations"> </td>
1063
+ </tr>
1064
+ <tr>
1065
+ <td class="parameter_name"><p>gc</p></td>
1066
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
1067
+ <td class="parameter_annotations"> </td>
1068
+ </tr>
1069
+ <tr>
1070
+ <td class="parameter_name"><p>points</p></td>
1071
+ <td class="parameter_description"><p>an array of <a class="link" href="gdk2-Points-Rectangles-and-Regions.html#GdkPoint" title="struct GdkPoint"><span class="type">GdkPoint</span></a> structures specifying the endpoints of the</p></td>
1072
+ <td class="parameter_annotations"> </td>
1073
+ </tr>
1074
+ <tr>
1075
+ <td class="parameter_name"><p>n_points</p></td>
1076
+ <td class="parameter_description"><p>the size of the <em class="parameter"><code>points</code></em>
1077
+ array.</p></td>
1078
+ <td class="parameter_annotations"> </td>
1079
+ </tr>
1080
+ </tbody>
1081
+ </table></div>
1082
+ </div>
1083
+ </div>
1084
+ <hr>
1085
+ <div class="refsect2">
1086
+ <a name="gdk-draw-pixbuf"></a><h3>gdk_draw_pixbuf ()</h3>
1087
+ <pre class="programlisting"><span class="returnvalue">void</span>
1088
+ gdk_draw_pixbuf (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
1089
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1090
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>,
1091
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> src_x</code></em>,
1092
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> src_y</code></em>,
1093
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> dest_x</code></em>,
1094
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> dest_y</code></em>,
1095
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> width</code></em>,
1096
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> height</code></em>,
1097
+ <em class="parameter"><code><a class="link" href="gdk2-GdkRGB.html#GdkRgbDither" title="enum GdkRgbDither"><span class="type">GdkRgbDither</span></a> dither</code></em>,
1098
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x_dither</code></em>,
1099
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y_dither</code></em>);</pre>
1100
+ <div class="warning">
1101
+ <p><code class="literal">gdk_draw_pixbuf</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1102
+ <p>Use <a class="link" href="gdk2-Cairo-Interaction.html#gdk-cairo-set-source-pixbuf" title="gdk_cairo_set_source_pixbuf ()"><code class="function">gdk_cairo_set_source_pixbuf()</code></a> and <code class="function">cairo_paint()</code> or
1103
+ <code class="function">cairo_rectangle()</code> and <code class="function">cairo_fill()</code> instead.</p>
1104
+ </div>
1105
+ <p>Renders a rectangular portion of a pixbuf to a drawable. The destination
1106
+ drawable must have a colormap. All windows have a colormap, however, pixmaps
1107
+ only have colormap by default if they were created with a non-<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> window
1108
+ argument. Otherwise a colormap must be set on them with
1109
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-drawable-set-colormap" title="gdk_drawable_set_colormap ()"><code class="function">gdk_drawable_set_colormap()</code></a>.</p>
1110
+ <p>On older X servers, rendering pixbufs with an alpha channel involves round
1111
+ trips to the X server, and may be somewhat slow.</p>
1112
+ <p>If GDK is built with the Sun mediaLib library, the gdk_draw_pixbuf
1113
+ function is accelerated using mediaLib, which provides hardware
1114
+ acceleration on Intel, AMD, and Sparc chipsets. If desired, mediaLib
1115
+ support can be turned off by setting the GDK_DISABLE_MEDIALIB environment
1116
+ variable.</p>
1117
+ <div class="refsect3">
1118
+ <a name="id-1.2.9.9.19.9"></a><h4>Parameters</h4>
1119
+ <div class="informaltable"><table width="100%" border="0">
1120
+ <colgroup>
1121
+ <col width="150px" class="parameters_name">
1122
+ <col class="parameters_description">
1123
+ <col width="200px" class="parameters_annotations">
1124
+ </colgroup>
1125
+ <tbody>
1126
+ <tr>
1127
+ <td class="parameter_name"><p>drawable</p></td>
1128
+ <td class="parameter_description"><p>Destination drawable.</p></td>
1129
+ <td class="parameter_annotations"> </td>
1130
+ </tr>
1131
+ <tr>
1132
+ <td class="parameter_name"><p>gc</p></td>
1133
+ <td class="parameter_description"><p> a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>, used for clipping, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
1134
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1135
+ </tr>
1136
+ <tr>
1137
+ <td class="parameter_name"><p>pixbuf</p></td>
1138
+ <td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a></p></td>
1139
+ <td class="parameter_annotations"> </td>
1140
+ </tr>
1141
+ <tr>
1142
+ <td class="parameter_name"><p>src_x</p></td>
1143
+ <td class="parameter_description"><p>Source X coordinate within pixbuf.</p></td>
1144
+ <td class="parameter_annotations"> </td>
1145
+ </tr>
1146
+ <tr>
1147
+ <td class="parameter_name"><p>src_y</p></td>
1148
+ <td class="parameter_description"><p>Source Y coordinates within pixbuf.</p></td>
1149
+ <td class="parameter_annotations"> </td>
1150
+ </tr>
1151
+ <tr>
1152
+ <td class="parameter_name"><p>dest_x</p></td>
1153
+ <td class="parameter_description"><p>Destination X coordinate within drawable.</p></td>
1154
+ <td class="parameter_annotations"> </td>
1155
+ </tr>
1156
+ <tr>
1157
+ <td class="parameter_name"><p>dest_y</p></td>
1158
+ <td class="parameter_description"><p>Destination Y coordinate within drawable.</p></td>
1159
+ <td class="parameter_annotations"> </td>
1160
+ </tr>
1161
+ <tr>
1162
+ <td class="parameter_name"><p>width</p></td>
1163
+ <td class="parameter_description"><p>Width of region to render, in pixels, or -1 to use pixbuf width.</p></td>
1164
+ <td class="parameter_annotations"> </td>
1165
+ </tr>
1166
+ <tr>
1167
+ <td class="parameter_name"><p>height</p></td>
1168
+ <td class="parameter_description"><p>Height of region to render, in pixels, or -1 to use pixbuf height.</p></td>
1169
+ <td class="parameter_annotations"> </td>
1170
+ </tr>
1171
+ <tr>
1172
+ <td class="parameter_name"><p>dither</p></td>
1173
+ <td class="parameter_description"><p>Dithering mode for <span class="type">GdkRGB</span>.</p></td>
1174
+ <td class="parameter_annotations"> </td>
1175
+ </tr>
1176
+ <tr>
1177
+ <td class="parameter_name"><p>x_dither</p></td>
1178
+ <td class="parameter_description"><p>X offset for dither.</p></td>
1179
+ <td class="parameter_annotations"> </td>
1180
+ </tr>
1181
+ <tr>
1182
+ <td class="parameter_name"><p>y_dither</p></td>
1183
+ <td class="parameter_description"><p>Y offset for dither.</p></td>
1184
+ <td class="parameter_annotations"> </td>
1185
+ </tr>
1186
+ </tbody>
1187
+ </table></div>
1188
+ </div>
1189
+ <p class="since">Since 2.2</p>
1190
+ </div>
1191
+ <hr>
1192
+ <div class="refsect2">
1193
+ <a name="gdk-draw-segments"></a><h3>gdk_draw_segments ()</h3>
1194
+ <pre class="programlisting"><span class="returnvalue">void</span>
1195
+ gdk_draw_segments (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
1196
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1197
+ <em class="parameter"><code>const <a class="link" href="gdk2-Drawing-Primitives.html#GdkSegment" title="struct GdkSegment"><span class="type">GdkSegment</span></a> *segs</code></em>,
1198
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_segs</code></em>);</pre>
1199
+ <div class="warning">
1200
+ <p><code class="literal">gdk_draw_segments</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1201
+ <p>Use <code class="function">cairo_move_to()</code>, <code class="function">cairo_line_to()</code> and <code class="function">cairo_stroke()</code>
1202
+ instead. See the documentation of <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-line" title="gdk_draw_line ()"><code class="function">gdk_draw_line()</code></a> for notes on line drawing
1203
+ with Cairo.</p>
1204
+ </div>
1205
+ <p>Draws a number of unconnected lines.</p>
1206
+ <div class="refsect3">
1207
+ <a name="id-1.2.9.9.20.6"></a><h4>Parameters</h4>
1208
+ <div class="informaltable"><table width="100%" border="0">
1209
+ <colgroup>
1210
+ <col width="150px" class="parameters_name">
1211
+ <col class="parameters_description">
1212
+ <col width="200px" class="parameters_annotations">
1213
+ </colgroup>
1214
+ <tbody>
1215
+ <tr>
1216
+ <td class="parameter_name"><p>drawable</p></td>
1217
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> (a <a class="link" href="gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> or a <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>).</p></td>
1218
+ <td class="parameter_annotations"> </td>
1219
+ </tr>
1220
+ <tr>
1221
+ <td class="parameter_name"><p>gc</p></td>
1222
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
1223
+ <td class="parameter_annotations"> </td>
1224
+ </tr>
1225
+ <tr>
1226
+ <td class="parameter_name"><p>segs</p></td>
1227
+ <td class="parameter_description"><p>an array of <a class="link" href="gdk2-Drawing-Primitives.html#GdkSegment" title="struct GdkSegment"><span class="type">GdkSegment</span></a> structures specifying the start and
1228
+ end points of the lines to be drawn.</p></td>
1229
+ <td class="parameter_annotations"> </td>
1230
+ </tr>
1231
+ <tr>
1232
+ <td class="parameter_name"><p>n_segs</p></td>
1233
+ <td class="parameter_description"><p>the number of line segments to draw, i.e. the size of the
1234
+ <em class="parameter"><code>segs</code></em>
1235
+ array.</p></td>
1236
+ <td class="parameter_annotations"> </td>
1237
+ </tr>
1238
+ </tbody>
1239
+ </table></div>
1240
+ </div>
1241
+ </div>
1242
+ <hr>
1243
+ <div class="refsect2">
1244
+ <a name="gdk-draw-rectangle"></a><h3>gdk_draw_rectangle ()</h3>
1245
+ <pre class="programlisting"><span class="returnvalue">void</span>
1246
+ gdk_draw_rectangle (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
1247
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1248
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> filled</code></em>,
1249
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
1250
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
1251
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> width</code></em>,
1252
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> height</code></em>);</pre>
1253
+ <div class="warning">
1254
+ <p><code class="literal">gdk_draw_rectangle</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1255
+ <p>Use <code class="function">cairo_rectangle()</code> and <code class="function">cairo_fill()</code> or <code class="function">cairo_stroke()</code>
1256
+ instead. For stroking, the same caveats for converting code apply as for
1257
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-line" title="gdk_draw_line ()"><code class="function">gdk_draw_line()</code></a>.</p>
1258
+ </div>
1259
+ <p>Draws a rectangular outline or filled rectangle, using the foreground color
1260
+ and other attributes of the <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p>
1261
+ <p>A rectangle drawn filled is 1 pixel smaller in both dimensions than a
1262
+ rectangle outlined. Calling
1263
+ <code class="literal">gdk_draw_rectangle (window, gc, TRUE, 0, 0, 20, 20)</code>
1264
+ results in a filled rectangle 20 pixels wide and 20 pixels high. Calling
1265
+ <code class="literal">gdk_draw_rectangle (window, gc, FALSE, 0, 0, 20, 20)</code>
1266
+ results in an outlined rectangle with corners at (0, 0), (0, 20), (20, 20),
1267
+ and (20, 0), which makes it 21 pixels wide and 21 pixels high.</p>
1268
+ <p>
1269
+ </p>
1270
+ <div class="note"><p>
1271
+ </p></div>
1272
+ <div class="refsect3">
1273
+ <a name="id-1.2.9.9.21.8"></a><h4>Parameters</h4>
1274
+ <div class="informaltable"><table width="100%" border="0">
1275
+ <colgroup>
1276
+ <col width="150px" class="parameters_name">
1277
+ <col class="parameters_description">
1278
+ <col width="200px" class="parameters_annotations">
1279
+ </colgroup>
1280
+ <tbody>
1281
+ <tr>
1282
+ <td class="parameter_name"><p>drawable</p></td>
1283
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> (a <a class="link" href="gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> or a <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>).</p></td>
1284
+ <td class="parameter_annotations"> </td>
1285
+ </tr>
1286
+ <tr>
1287
+ <td class="parameter_name"><p>gc</p></td>
1288
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
1289
+ <td class="parameter_annotations"> </td>
1290
+ </tr>
1291
+ <tr>
1292
+ <td class="parameter_name"><p>filled</p></td>
1293
+ <td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the rectangle should be filled.</p></td>
1294
+ <td class="parameter_annotations"> </td>
1295
+ </tr>
1296
+ <tr>
1297
+ <td class="parameter_name"><p>x</p></td>
1298
+ <td class="parameter_description"><p>the x coordinate of the left edge of the rectangle.</p></td>
1299
+ <td class="parameter_annotations"> </td>
1300
+ </tr>
1301
+ <tr>
1302
+ <td class="parameter_name"><p>y</p></td>
1303
+ <td class="parameter_description"><p>the y coordinate of the top edge of the rectangle.</p></td>
1304
+ <td class="parameter_annotations"> </td>
1305
+ </tr>
1306
+ <tr>
1307
+ <td class="parameter_name"><p>width</p></td>
1308
+ <td class="parameter_description"><p>the width of the rectangle.</p></td>
1309
+ <td class="parameter_annotations"> </td>
1310
+ </tr>
1311
+ <tr>
1312
+ <td class="parameter_name"><p>height</p></td>
1313
+ <td class="parameter_description"><p>the height of the rectangle.</p></td>
1314
+ <td class="parameter_annotations"> </td>
1315
+ </tr>
1316
+ </tbody>
1317
+ </table></div>
1318
+ </div>
1319
+ </div>
1320
+ <hr>
1321
+ <div class="refsect2">
1322
+ <a name="gdk-draw-arc"></a><h3>gdk_draw_arc ()</h3>
1323
+ <pre class="programlisting"><span class="returnvalue">void</span>
1324
+ gdk_draw_arc (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
1325
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1326
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> filled</code></em>,
1327
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
1328
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
1329
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> width</code></em>,
1330
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> height</code></em>,
1331
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> angle1</code></em>,
1332
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> angle2</code></em>);</pre>
1333
+ <div class="warning">
1334
+ <p><code class="literal">gdk_draw_arc</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1335
+ <p>Use <code class="function">cairo_arc()</code> and <code class="function">cairo_fill()</code> or <code class="function">cairo_stroke()</code>
1336
+ instead. Note that arcs just like any drawing operation in Cairo are
1337
+ antialiased unless you call <code class="function">cairo_set_antialias()</code>.</p>
1338
+ </div>
1339
+ <p>Draws an arc or a filled 'pie slice'. The arc is defined by the bounding
1340
+ rectangle of the entire ellipse, and the start and end angles of the part
1341
+ of the ellipse to be drawn.</p>
1342
+ <div class="refsect3">
1343
+ <a name="id-1.2.9.9.22.6"></a><h4>Parameters</h4>
1344
+ <div class="informaltable"><table width="100%" border="0">
1345
+ <colgroup>
1346
+ <col width="150px" class="parameters_name">
1347
+ <col class="parameters_description">
1348
+ <col width="200px" class="parameters_annotations">
1349
+ </colgroup>
1350
+ <tbody>
1351
+ <tr>
1352
+ <td class="parameter_name"><p>drawable</p></td>
1353
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> (a <a class="link" href="gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> or a <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>).</p></td>
1354
+ <td class="parameter_annotations"> </td>
1355
+ </tr>
1356
+ <tr>
1357
+ <td class="parameter_name"><p>gc</p></td>
1358
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
1359
+ <td class="parameter_annotations"> </td>
1360
+ </tr>
1361
+ <tr>
1362
+ <td class="parameter_name"><p>filled</p></td>
1363
+ <td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the arc should be filled, producing a 'pie slice'.</p></td>
1364
+ <td class="parameter_annotations"> </td>
1365
+ </tr>
1366
+ <tr>
1367
+ <td class="parameter_name"><p>x</p></td>
1368
+ <td class="parameter_description"><p>the x coordinate of the left edge of the bounding rectangle.</p></td>
1369
+ <td class="parameter_annotations"> </td>
1370
+ </tr>
1371
+ <tr>
1372
+ <td class="parameter_name"><p>y</p></td>
1373
+ <td class="parameter_description"><p>the y coordinate of the top edge of the bounding rectangle.</p></td>
1374
+ <td class="parameter_annotations"> </td>
1375
+ </tr>
1376
+ <tr>
1377
+ <td class="parameter_name"><p>width</p></td>
1378
+ <td class="parameter_description"><p>the width of the bounding rectangle.</p></td>
1379
+ <td class="parameter_annotations"> </td>
1380
+ </tr>
1381
+ <tr>
1382
+ <td class="parameter_name"><p>height</p></td>
1383
+ <td class="parameter_description"><p>the height of the bounding rectangle.</p></td>
1384
+ <td class="parameter_annotations"> </td>
1385
+ </tr>
1386
+ <tr>
1387
+ <td class="parameter_name"><p>angle1</p></td>
1388
+ <td class="parameter_description"><p>the start angle of the arc, relative to the 3 o'clock position,
1389
+ counter-clockwise, in 1/64ths of a degree.</p></td>
1390
+ <td class="parameter_annotations"> </td>
1391
+ </tr>
1392
+ <tr>
1393
+ <td class="parameter_name"><p>angle2</p></td>
1394
+ <td class="parameter_description"><p>the end angle of the arc, relative to <em class="parameter"><code>angle1</code></em>
1395
+ , in 1/64ths
1396
+ of a degree.</p></td>
1397
+ <td class="parameter_annotations"> </td>
1398
+ </tr>
1399
+ </tbody>
1400
+ </table></div>
1401
+ </div>
1402
+ </div>
1403
+ <hr>
1404
+ <div class="refsect2">
1405
+ <a name="gdk-draw-polygon"></a><h3>gdk_draw_polygon ()</h3>
1406
+ <pre class="programlisting"><span class="returnvalue">void</span>
1407
+ gdk_draw_polygon (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
1408
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1409
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> filled</code></em>,
1410
+ <em class="parameter"><code>const <a class="link" href="gdk2-Points-Rectangles-and-Regions.html#GdkPoint" title="struct GdkPoint"><span class="type">GdkPoint</span></a> *points</code></em>,
1411
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_points</code></em>);</pre>
1412
+ <div class="warning">
1413
+ <p><code class="literal">gdk_draw_polygon</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1414
+ <p>Use <code class="function">cairo_line_to()</code> or <code class="function">cairo_append_path()</code> and
1415
+ <code class="function">cairo_fill()</code> or <code class="function">cairo_stroke()</code> instead.</p>
1416
+ </div>
1417
+ <p>Draws an outlined or filled polygon.</p>
1418
+ <div class="refsect3">
1419
+ <a name="id-1.2.9.9.23.6"></a><h4>Parameters</h4>
1420
+ <div class="informaltable"><table width="100%" border="0">
1421
+ <colgroup>
1422
+ <col width="150px" class="parameters_name">
1423
+ <col class="parameters_description">
1424
+ <col width="200px" class="parameters_annotations">
1425
+ </colgroup>
1426
+ <tbody>
1427
+ <tr>
1428
+ <td class="parameter_name"><p>drawable</p></td>
1429
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> (a <a class="link" href="gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> or a <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>).</p></td>
1430
+ <td class="parameter_annotations"> </td>
1431
+ </tr>
1432
+ <tr>
1433
+ <td class="parameter_name"><p>gc</p></td>
1434
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
1435
+ <td class="parameter_annotations"> </td>
1436
+ </tr>
1437
+ <tr>
1438
+ <td class="parameter_name"><p>filled</p></td>
1439
+ <td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the polygon should be filled. The polygon is closed
1440
+ automatically, connecting the last point to the first point if
1441
+ necessary.</p></td>
1442
+ <td class="parameter_annotations"> </td>
1443
+ </tr>
1444
+ <tr>
1445
+ <td class="parameter_name"><p>points</p></td>
1446
+ <td class="parameter_description"><p>an array of <a class="link" href="gdk2-Points-Rectangles-and-Regions.html#GdkPoint" title="struct GdkPoint"><span class="type">GdkPoint</span></a> structures specifying the points making
1447
+ up the polygon.</p></td>
1448
+ <td class="parameter_annotations"> </td>
1449
+ </tr>
1450
+ <tr>
1451
+ <td class="parameter_name"><p>n_points</p></td>
1452
+ <td class="parameter_description"><p>the number of points.</p></td>
1453
+ <td class="parameter_annotations"> </td>
1454
+ </tr>
1455
+ </tbody>
1456
+ </table></div>
1457
+ </div>
1458
+ </div>
1459
+ <hr>
1460
+ <div class="refsect2">
1461
+ <a name="gdk-draw-trapezoids"></a><h3>gdk_draw_trapezoids ()</h3>
1462
+ <pre class="programlisting"><span class="returnvalue">void</span>
1463
+ gdk_draw_trapezoids (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
1464
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1465
+ <em class="parameter"><code>const <a class="link" href="gdk2-Drawing-Primitives.html#GdkTrapezoid" title="struct GdkTrapezoid"><span class="type">GdkTrapezoid</span></a> *trapezoids</code></em>,
1466
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_trapezoids</code></em>);</pre>
1467
+ <div class="warning">
1468
+ <p><code class="literal">gdk_draw_trapezoids</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1469
+ <p>Use Cairo path contruction functions and <code class="function">cairo_fill()</code>
1470
+ instead.</p>
1471
+ </div>
1472
+ <p>Draws a set of anti-aliased trapezoids. The trapezoids are
1473
+ combined using saturation addition, then drawn over the background
1474
+ as a set. This is low level functionality used internally to implement
1475
+ rotated underlines and backgrouds when rendering a PangoLayout and is
1476
+ likely not useful for applications.</p>
1477
+ <div class="refsect3">
1478
+ <a name="id-1.2.9.9.24.7"></a><h4>Parameters</h4>
1479
+ <div class="informaltable"><table width="100%" border="0">
1480
+ <colgroup>
1481
+ <col width="150px" class="parameters_name">
1482
+ <col class="parameters_description">
1483
+ <col width="200px" class="parameters_annotations">
1484
+ </colgroup>
1485
+ <tbody>
1486
+ <tr>
1487
+ <td class="parameter_name"><p>drawable</p></td>
1488
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
1489
+ <td class="parameter_annotations"> </td>
1490
+ </tr>
1491
+ <tr>
1492
+ <td class="parameter_name"><p>gc</p></td>
1493
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a></p></td>
1494
+ <td class="parameter_annotations"> </td>
1495
+ </tr>
1496
+ <tr>
1497
+ <td class="parameter_name"><p>trapezoids</p></td>
1498
+ <td class="parameter_description"><p>an array of <a class="link" href="gdk2-Drawing-Primitives.html#GdkTrapezoid" title="struct GdkTrapezoid"><span class="type">GdkTrapezoid</span></a> structures</p></td>
1499
+ <td class="parameter_annotations"> </td>
1500
+ </tr>
1501
+ <tr>
1502
+ <td class="parameter_name"><p>n_trapezoids</p></td>
1503
+ <td class="parameter_description"><p>the number of trapezoids to draw</p></td>
1504
+ <td class="parameter_annotations"> </td>
1505
+ </tr>
1506
+ </tbody>
1507
+ </table></div>
1508
+ </div>
1509
+ <p class="since">Since 2.6</p>
1510
+ </div>
1511
+ <hr>
1512
+ <div class="refsect2">
1513
+ <a name="gdk-draw-glyphs"></a><h3>gdk_draw_glyphs ()</h3>
1514
+ <pre class="programlisting"><span class="returnvalue">void</span>
1515
+ gdk_draw_glyphs (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
1516
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1517
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
1518
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
1519
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
1520
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Glyph-Storage.html#PangoGlyphString"><span class="type">PangoGlyphString</span></a> *glyphs</code></em>);</pre>
1521
+ <div class="warning">
1522
+ <p><code class="literal">gdk_draw_glyphs</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1523
+ <p>Use <code class="function">pango_cairo_show_glyphs()</code> instead.</p>
1524
+ </div>
1525
+ <p>This is a low-level function; 99% of text rendering should be done
1526
+ using <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-layout" title="gdk_draw_layout ()"><code class="function">gdk_draw_layout()</code></a> instead.</p>
1527
+ <p>A glyph is a single image in a font. This function draws a sequence of
1528
+ glyphs. To obtain a sequence of glyphs you have to understand a
1529
+ lot about internationalized text handling, which you don't want to
1530
+ understand; thus, use <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-layout" title="gdk_draw_layout ()"><code class="function">gdk_draw_layout()</code></a> instead of this function,
1531
+ <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-layout" title="gdk_draw_layout ()"><code class="function">gdk_draw_layout()</code></a> handles the details.</p>
1532
+ <div class="refsect3">
1533
+ <a name="id-1.2.9.9.25.7"></a><h4>Parameters</h4>
1534
+ <div class="informaltable"><table width="100%" border="0">
1535
+ <colgroup>
1536
+ <col width="150px" class="parameters_name">
1537
+ <col class="parameters_description">
1538
+ <col width="200px" class="parameters_annotations">
1539
+ </colgroup>
1540
+ <tbody>
1541
+ <tr>
1542
+ <td class="parameter_name"><p>drawable</p></td>
1543
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
1544
+ <td class="parameter_annotations"> </td>
1545
+ </tr>
1546
+ <tr>
1547
+ <td class="parameter_name"><p>gc</p></td>
1548
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a></p></td>
1549
+ <td class="parameter_annotations"> </td>
1550
+ </tr>
1551
+ <tr>
1552
+ <td class="parameter_name"><p>font</p></td>
1553
+ <td class="parameter_description"><p>font to be used</p></td>
1554
+ <td class="parameter_annotations"> </td>
1555
+ </tr>
1556
+ <tr>
1557
+ <td class="parameter_name"><p>x</p></td>
1558
+ <td class="parameter_description"><p>X coordinate of baseline origin</p></td>
1559
+ <td class="parameter_annotations"> </td>
1560
+ </tr>
1561
+ <tr>
1562
+ <td class="parameter_name"><p>y</p></td>
1563
+ <td class="parameter_description"><p>Y coordinate of baseline origin</p></td>
1564
+ <td class="parameter_annotations"> </td>
1565
+ </tr>
1566
+ <tr>
1567
+ <td class="parameter_name"><p>glyphs</p></td>
1568
+ <td class="parameter_description"><p>the glyph string to draw</p></td>
1569
+ <td class="parameter_annotations"> </td>
1570
+ </tr>
1571
+ </tbody>
1572
+ </table></div>
1573
+ </div>
1574
+ </div>
1575
+ <hr>
1576
+ <div class="refsect2">
1577
+ <a name="gdk-draw-glyphs-transformed"></a><h3>gdk_draw_glyphs_transformed ()</h3>
1578
+ <pre class="programlisting"><span class="returnvalue">void</span>
1579
+ gdk_draw_glyphs_transformed (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
1580
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1581
+ <em class="parameter"><code>const <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Glyph-Storage.html#PangoMatrix"><span class="type">PangoMatrix</span></a> *matrix</code></em>,
1582
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Fonts.html#PangoFont"><span class="type">PangoFont</span></a> *font</code></em>,
1583
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
1584
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
1585
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Glyph-Storage.html#PangoGlyphString"><span class="type">PangoGlyphString</span></a> *glyphs</code></em>);</pre>
1586
+ <div class="warning">
1587
+ <p><code class="literal">gdk_draw_glyphs_transformed</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1588
+ <p>Use <code class="function">pango_cairo_show_glyphs()</code> instead.</p>
1589
+ </div>
1590
+ <p>Renders a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Glyph-Storage.html#PangoGlyphString"><span class="type">PangoGlyphString</span></a> onto a drawable, possibly
1591
+ transforming the layed-out coordinates through a transformation
1592
+ matrix. Note that the transformation matrix for <em class="parameter"><code>font</code></em>
1593
+ is not
1594
+ changed, so to produce correct rendering results, the <em class="parameter"><code>font</code></em>
1595
+
1596
+ must have been loaded using a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a> with an identical
1597
+ transformation matrix to that passed in to this function.</p>
1598
+ <p>See also <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-glyphs" title="gdk_draw_glyphs ()"><code class="function">gdk_draw_glyphs()</code></a>, <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-layout" title="gdk_draw_layout ()"><code class="function">gdk_draw_layout()</code></a>.</p>
1599
+ <div class="refsect3">
1600
+ <a name="id-1.2.9.9.26.8"></a><h4>Parameters</h4>
1601
+ <div class="informaltable"><table width="100%" border="0">
1602
+ <colgroup>
1603
+ <col width="150px" class="parameters_name">
1604
+ <col class="parameters_description">
1605
+ <col width="200px" class="parameters_annotations">
1606
+ </colgroup>
1607
+ <tbody>
1608
+ <tr>
1609
+ <td class="parameter_name"><p>drawable</p></td>
1610
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
1611
+ <td class="parameter_annotations"> </td>
1612
+ </tr>
1613
+ <tr>
1614
+ <td class="parameter_name"><p>gc</p></td>
1615
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a></p></td>
1616
+ <td class="parameter_annotations"> </td>
1617
+ </tr>
1618
+ <tr>
1619
+ <td class="parameter_name"><p>matrix</p></td>
1620
+ <td class="parameter_description"><p> a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Glyph-Storage.html#PangoMatrix"><span class="type">PangoMatrix</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use an identity transformation. </p></td>
1621
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1622
+ </tr>
1623
+ <tr>
1624
+ <td class="parameter_name"><p>font</p></td>
1625
+ <td class="parameter_description"><p>the font in which to draw the string</p></td>
1626
+ <td class="parameter_annotations"> </td>
1627
+ </tr>
1628
+ <tr>
1629
+ <td class="parameter_name"><p>x</p></td>
1630
+ <td class="parameter_description"><p>the x position of the start of the string (in Pango
1631
+ units in user space coordinates)</p></td>
1632
+ <td class="parameter_annotations"> </td>
1633
+ </tr>
1634
+ <tr>
1635
+ <td class="parameter_name"><p>y</p></td>
1636
+ <td class="parameter_description"><p>the y position of the baseline (in Pango units
1637
+ in user space coordinates)</p></td>
1638
+ <td class="parameter_annotations"> </td>
1639
+ </tr>
1640
+ <tr>
1641
+ <td class="parameter_name"><p>glyphs</p></td>
1642
+ <td class="parameter_description"><p>the glyph string to draw</p></td>
1643
+ <td class="parameter_annotations"> </td>
1644
+ </tr>
1645
+ </tbody>
1646
+ </table></div>
1647
+ </div>
1648
+ <p class="since">Since 2.6</p>
1649
+ </div>
1650
+ <hr>
1651
+ <div class="refsect2">
1652
+ <a name="gdk-draw-layout-line"></a><h3>gdk_draw_layout_line ()</h3>
1653
+ <pre class="programlisting"><span class="returnvalue">void</span>
1654
+ gdk_draw_layout_line (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
1655
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1656
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
1657
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
1658
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayoutLine"><span class="type">PangoLayoutLine</span></a> *line</code></em>);</pre>
1659
+ <div class="warning"><p><code class="literal">gdk_draw_layout_line</code> is deprecated and should not be used in newly-written code.</p></div>
1660
+ <p>Render a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayoutLine"><span class="type">PangoLayoutLine</span></a> onto an GDK drawable</p>
1661
+ <p>If the layout's <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a> has a transformation matrix set, then
1662
+ <em class="parameter"><code>x</code></em>
1663
+ and <em class="parameter"><code>y</code></em>
1664
+ specify the position of the left edge of the baseline
1665
+ (left is in before-tranform user coordinates) in after-transform
1666
+ device coordinates.</p>
1667
+ <div class="refsect3">
1668
+ <a name="id-1.2.9.9.27.7"></a><h4>Parameters</h4>
1669
+ <div class="informaltable"><table width="100%" border="0">
1670
+ <colgroup>
1671
+ <col width="150px" class="parameters_name">
1672
+ <col class="parameters_description">
1673
+ <col width="200px" class="parameters_annotations">
1674
+ </colgroup>
1675
+ <tbody>
1676
+ <tr>
1677
+ <td class="parameter_name"><p>drawable</p></td>
1678
+ <td class="parameter_description"><p>the drawable on which to draw the line</p></td>
1679
+ <td class="parameter_annotations"> </td>
1680
+ </tr>
1681
+ <tr>
1682
+ <td class="parameter_name"><p>gc</p></td>
1683
+ <td class="parameter_description"><p>base graphics to use</p></td>
1684
+ <td class="parameter_annotations"> </td>
1685
+ </tr>
1686
+ <tr>
1687
+ <td class="parameter_name"><p>x</p></td>
1688
+ <td class="parameter_description"><p>the x position of start of string (in pixels)</p></td>
1689
+ <td class="parameter_annotations"> </td>
1690
+ </tr>
1691
+ <tr>
1692
+ <td class="parameter_name"><p>y</p></td>
1693
+ <td class="parameter_description"><p>the y position of baseline (in pixels)</p></td>
1694
+ <td class="parameter_annotations"> </td>
1695
+ </tr>
1696
+ <tr>
1697
+ <td class="parameter_name"><p>line</p></td>
1698
+ <td class="parameter_description"><p>a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayoutLine"><span class="type">PangoLayoutLine</span></a></p></td>
1699
+ <td class="parameter_annotations"> </td>
1700
+ </tr>
1701
+ </tbody>
1702
+ </table></div>
1703
+ </div>
1704
+ </div>
1705
+ <hr>
1706
+ <div class="refsect2">
1707
+ <a name="gdk-draw-layout-line-with-colors"></a><h3>gdk_draw_layout_line_with_colors ()</h3>
1708
+ <pre class="programlisting"><span class="returnvalue">void</span>
1709
+ gdk_draw_layout_line_with_colors (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
1710
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1711
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
1712
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
1713
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayoutLine"><span class="type">PangoLayoutLine</span></a> *line</code></em>,
1714
+ <em class="parameter"><code>const <a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *foreground</code></em>,
1715
+ <em class="parameter"><code>const <a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *background</code></em>);</pre>
1716
+ <div class="warning"><p><code class="literal">gdk_draw_layout_line_with_colors</code> is deprecated and should not be used in newly-written code.</p></div>
1717
+ <p>Render a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayoutLine"><span class="type">PangoLayoutLine</span></a> onto a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>, overriding the
1718
+ layout's normal colors with <em class="parameter"><code>foreground</code></em>
1719
+ and/or <em class="parameter"><code>background</code></em>
1720
+ .
1721
+ <em class="parameter"><code>foreground</code></em>
1722
+ and <em class="parameter"><code>background</code></em>
1723
+ need not be allocated.</p>
1724
+ <p>If the layout's <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a> has a transformation matrix set, then
1725
+ <em class="parameter"><code>x</code></em>
1726
+ and <em class="parameter"><code>y</code></em>
1727
+ specify the position of the left edge of the baseline
1728
+ (left is in before-tranform user coordinates) in after-transform
1729
+ device coordinates.</p>
1730
+ <div class="refsect3">
1731
+ <a name="id-1.2.9.9.28.7"></a><h4>Parameters</h4>
1732
+ <div class="informaltable"><table width="100%" border="0">
1733
+ <colgroup>
1734
+ <col width="150px" class="parameters_name">
1735
+ <col class="parameters_description">
1736
+ <col width="200px" class="parameters_annotations">
1737
+ </colgroup>
1738
+ <tbody>
1739
+ <tr>
1740
+ <td class="parameter_name"><p>drawable</p></td>
1741
+ <td class="parameter_description"><p>the drawable on which to draw the line</p></td>
1742
+ <td class="parameter_annotations"> </td>
1743
+ </tr>
1744
+ <tr>
1745
+ <td class="parameter_name"><p>gc</p></td>
1746
+ <td class="parameter_description"><p>base graphics to use</p></td>
1747
+ <td class="parameter_annotations"> </td>
1748
+ </tr>
1749
+ <tr>
1750
+ <td class="parameter_name"><p>x</p></td>
1751
+ <td class="parameter_description"><p>the x position of start of string (in pixels)</p></td>
1752
+ <td class="parameter_annotations"> </td>
1753
+ </tr>
1754
+ <tr>
1755
+ <td class="parameter_name"><p>y</p></td>
1756
+ <td class="parameter_description"><p>the y position of baseline (in pixels)</p></td>
1757
+ <td class="parameter_annotations"> </td>
1758
+ </tr>
1759
+ <tr>
1760
+ <td class="parameter_name"><p>line</p></td>
1761
+ <td class="parameter_description"><p>a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayoutLine"><span class="type">PangoLayoutLine</span></a></p></td>
1762
+ <td class="parameter_annotations"> </td>
1763
+ </tr>
1764
+ <tr>
1765
+ <td class="parameter_name"><p>foreground</p></td>
1766
+ <td class="parameter_description"><p> foreground override color, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for none. </p></td>
1767
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1768
+ </tr>
1769
+ <tr>
1770
+ <td class="parameter_name"><p>background</p></td>
1771
+ <td class="parameter_description"><p> background override color, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for none. </p></td>
1772
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1773
+ </tr>
1774
+ </tbody>
1775
+ </table></div>
1776
+ </div>
1777
+ </div>
1778
+ <hr>
1779
+ <div class="refsect2">
1780
+ <a name="gdk-draw-layout"></a><h3>gdk_draw_layout ()</h3>
1781
+ <pre class="programlisting"><span class="returnvalue">void</span>
1782
+ gdk_draw_layout (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
1783
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1784
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
1785
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
1786
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> *layout</code></em>);</pre>
1787
+ <div class="warning"><p><code class="literal">gdk_draw_layout</code> is deprecated and should not be used in newly-written code.</p></div>
1788
+ <p>Render a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> onto a GDK drawable</p>
1789
+ <p>If the layout's <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a> has a transformation matrix set, then
1790
+ <em class="parameter"><code>x</code></em>
1791
+ and <em class="parameter"><code>y</code></em>
1792
+ specify the position of the top left corner of the
1793
+ bounding box (in device space) of the transformed layout.</p>
1794
+ <p>If you're using GTK+, the usual way to obtain a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a>
1795
+ is <a href="http://developer.gnome.org/gtk2/GtkWidget.html#gtk-widget-create-pango-layout"><code class="function">gtk_widget_create_pango_layout()</code></a>.</p>
1796
+ <div class="refsect3">
1797
+ <a name="id-1.2.9.9.29.8"></a><h4>Parameters</h4>
1798
+ <div class="informaltable"><table width="100%" border="0">
1799
+ <colgroup>
1800
+ <col width="150px" class="parameters_name">
1801
+ <col class="parameters_description">
1802
+ <col width="200px" class="parameters_annotations">
1803
+ </colgroup>
1804
+ <tbody>
1805
+ <tr>
1806
+ <td class="parameter_name"><p>drawable</p></td>
1807
+ <td class="parameter_description"><p>the drawable on which to draw string</p></td>
1808
+ <td class="parameter_annotations"> </td>
1809
+ </tr>
1810
+ <tr>
1811
+ <td class="parameter_name"><p>gc</p></td>
1812
+ <td class="parameter_description"><p>base graphics context to use</p></td>
1813
+ <td class="parameter_annotations"> </td>
1814
+ </tr>
1815
+ <tr>
1816
+ <td class="parameter_name"><p>x</p></td>
1817
+ <td class="parameter_description"><p>the X position of the left of the layout (in pixels)</p></td>
1818
+ <td class="parameter_annotations"> </td>
1819
+ </tr>
1820
+ <tr>
1821
+ <td class="parameter_name"><p>y</p></td>
1822
+ <td class="parameter_description"><p>the Y position of the top of the layout (in pixels)</p></td>
1823
+ <td class="parameter_annotations"> </td>
1824
+ </tr>
1825
+ <tr>
1826
+ <td class="parameter_name"><p>layout</p></td>
1827
+ <td class="parameter_description"><p>a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a></p></td>
1828
+ <td class="parameter_annotations"> </td>
1829
+ </tr>
1830
+ </tbody>
1831
+ </table></div>
1832
+ </div>
1833
+ </div>
1834
+ <hr>
1835
+ <div class="refsect2">
1836
+ <a name="gdk-draw-layout-with-colors"></a><h3>gdk_draw_layout_with_colors ()</h3>
1837
+ <pre class="programlisting"><span class="returnvalue">void</span>
1838
+ gdk_draw_layout_with_colors (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
1839
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1840
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
1841
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
1842
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> *layout</code></em>,
1843
+ <em class="parameter"><code>const <a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *foreground</code></em>,
1844
+ <em class="parameter"><code>const <a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *background</code></em>);</pre>
1845
+ <div class="warning"><p><code class="literal">gdk_draw_layout_with_colors</code> is deprecated and should not be used in newly-written code.</p></div>
1846
+ <p>Render a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> onto a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>, overriding the
1847
+ layout's normal colors with <em class="parameter"><code>foreground</code></em>
1848
+ and/or <em class="parameter"><code>background</code></em>
1849
+ .
1850
+ <em class="parameter"><code>foreground</code></em>
1851
+ and <em class="parameter"><code>background</code></em>
1852
+ need not be allocated.</p>
1853
+ <p>If the layout's <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Text-Processing.html#PangoContext"><span class="type">PangoContext</span></a> has a transformation matrix set, then
1854
+ <em class="parameter"><code>x</code></em>
1855
+ and <em class="parameter"><code>y</code></em>
1856
+ specify the position of the top left corner of the
1857
+ bounding box (in device space) of the transformed layout.</p>
1858
+ <p>If you're using GTK+, the ususal way to obtain a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a>
1859
+ is <a href="http://developer.gnome.org/gtk2/GtkWidget.html#gtk-widget-create-pango-layout"><code class="function">gtk_widget_create_pango_layout()</code></a>.</p>
1860
+ <div class="refsect3">
1861
+ <a name="id-1.2.9.9.30.8"></a><h4>Parameters</h4>
1862
+ <div class="informaltable"><table width="100%" border="0">
1863
+ <colgroup>
1864
+ <col width="150px" class="parameters_name">
1865
+ <col class="parameters_description">
1866
+ <col width="200px" class="parameters_annotations">
1867
+ </colgroup>
1868
+ <tbody>
1869
+ <tr>
1870
+ <td class="parameter_name"><p>drawable</p></td>
1871
+ <td class="parameter_description"><p>the drawable on which to draw string</p></td>
1872
+ <td class="parameter_annotations"> </td>
1873
+ </tr>
1874
+ <tr>
1875
+ <td class="parameter_name"><p>gc</p></td>
1876
+ <td class="parameter_description"><p>base graphics context to use</p></td>
1877
+ <td class="parameter_annotations"> </td>
1878
+ </tr>
1879
+ <tr>
1880
+ <td class="parameter_name"><p>x</p></td>
1881
+ <td class="parameter_description"><p>the X position of the left of the layout (in pixels)</p></td>
1882
+ <td class="parameter_annotations"> </td>
1883
+ </tr>
1884
+ <tr>
1885
+ <td class="parameter_name"><p>y</p></td>
1886
+ <td class="parameter_description"><p>the Y position of the top of the layout (in pixels)</p></td>
1887
+ <td class="parameter_annotations"> </td>
1888
+ </tr>
1889
+ <tr>
1890
+ <td class="parameter_name"><p>layout</p></td>
1891
+ <td class="parameter_description"><p>a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a></p></td>
1892
+ <td class="parameter_annotations"> </td>
1893
+ </tr>
1894
+ <tr>
1895
+ <td class="parameter_name"><p>foreground</p></td>
1896
+ <td class="parameter_description"><p> foreground override color, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for none. </p></td>
1897
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1898
+ </tr>
1899
+ <tr>
1900
+ <td class="parameter_name"><p>background</p></td>
1901
+ <td class="parameter_description"><p> background override color, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for none. </p></td>
1902
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1903
+ </tr>
1904
+ </tbody>
1905
+ </table></div>
1906
+ </div>
1907
+ </div>
1908
+ <hr>
1909
+ <div class="refsect2">
1910
+ <a name="gdk-draw-string"></a><h3>gdk_draw_string ()</h3>
1911
+ <pre class="programlisting"><span class="returnvalue">void</span>
1912
+ gdk_draw_string (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
1913
+ <em class="parameter"><code><a class="link" href="gdk2-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> *font</code></em>,
1914
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1915
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
1916
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
1917
+ <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *string</code></em>);</pre>
1918
+ <div class="warning">
1919
+ <p><code class="literal">gdk_draw_string</code> has been deprecated since version 2.4 and should not be used in newly-written code.</p>
1920
+ <p>Use <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-layout" title="gdk_draw_layout ()"><code class="function">gdk_draw_layout()</code></a> instead.</p>
1921
+ </div>
1922
+ <p>Draws a string of characters in the given font or fontset.</p>
1923
+ <div class="refsect3">
1924
+ <a name="id-1.2.9.9.31.6"></a><h4>Parameters</h4>
1925
+ <div class="informaltable"><table width="100%" border="0">
1926
+ <colgroup>
1927
+ <col width="150px" class="parameters_name">
1928
+ <col class="parameters_description">
1929
+ <col width="200px" class="parameters_annotations">
1930
+ </colgroup>
1931
+ <tbody>
1932
+ <tr>
1933
+ <td class="parameter_name"><p>drawable</p></td>
1934
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> (a <a class="link" href="gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> or a <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>).</p></td>
1935
+ <td class="parameter_annotations"> </td>
1936
+ </tr>
1937
+ <tr>
1938
+ <td class="parameter_name"><p>font</p></td>
1939
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a>.</p></td>
1940
+ <td class="parameter_annotations"> </td>
1941
+ </tr>
1942
+ <tr>
1943
+ <td class="parameter_name"><p>gc</p></td>
1944
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
1945
+ <td class="parameter_annotations"> </td>
1946
+ </tr>
1947
+ <tr>
1948
+ <td class="parameter_name"><p>x</p></td>
1949
+ <td class="parameter_description"><p>the x coordinate of the left edge of the text.</p></td>
1950
+ <td class="parameter_annotations"> </td>
1951
+ </tr>
1952
+ <tr>
1953
+ <td class="parameter_name"><p>y</p></td>
1954
+ <td class="parameter_description"><p>the y coordinate of the baseline of the text.</p></td>
1955
+ <td class="parameter_annotations"> </td>
1956
+ </tr>
1957
+ <tr>
1958
+ <td class="parameter_name"><p>string</p></td>
1959
+ <td class="parameter_description"><p>the string of characters to draw.</p></td>
1960
+ <td class="parameter_annotations"> </td>
1961
+ </tr>
1962
+ </tbody>
1963
+ </table></div>
1964
+ </div>
1965
+ </div>
1966
+ <hr>
1967
+ <div class="refsect2">
1968
+ <a name="gdk-draw-text"></a><h3>gdk_draw_text ()</h3>
1969
+ <pre class="programlisting"><span class="returnvalue">void</span>
1970
+ gdk_draw_text (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
1971
+ <em class="parameter"><code><a class="link" href="gdk2-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> *font</code></em>,
1972
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1973
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
1974
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
1975
+ <em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
1976
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> text_length</code></em>);</pre>
1977
+ <div class="warning">
1978
+ <p><code class="literal">gdk_draw_text</code> has been deprecated since version 2.4 and should not be used in newly-written code.</p>
1979
+ <p>Use <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-layout" title="gdk_draw_layout ()"><code class="function">gdk_draw_layout()</code></a> instead.</p>
1980
+ </div>
1981
+ <p>Draws a number of characters in the given font or fontset.</p>
1982
+ <div class="refsect3">
1983
+ <a name="id-1.2.9.9.32.6"></a><h4>Parameters</h4>
1984
+ <div class="informaltable"><table width="100%" border="0">
1985
+ <colgroup>
1986
+ <col width="150px" class="parameters_name">
1987
+ <col class="parameters_description">
1988
+ <col width="200px" class="parameters_annotations">
1989
+ </colgroup>
1990
+ <tbody>
1991
+ <tr>
1992
+ <td class="parameter_name"><p>drawable</p></td>
1993
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> (a <a class="link" href="gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> or a <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>).</p></td>
1994
+ <td class="parameter_annotations"> </td>
1995
+ </tr>
1996
+ <tr>
1997
+ <td class="parameter_name"><p>font</p></td>
1998
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a>.</p></td>
1999
+ <td class="parameter_annotations"> </td>
2000
+ </tr>
2001
+ <tr>
2002
+ <td class="parameter_name"><p>gc</p></td>
2003
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
2004
+ <td class="parameter_annotations"> </td>
2005
+ </tr>
2006
+ <tr>
2007
+ <td class="parameter_name"><p>x</p></td>
2008
+ <td class="parameter_description"><p>the x coordinate of the left edge of the text.</p></td>
2009
+ <td class="parameter_annotations"> </td>
2010
+ </tr>
2011
+ <tr>
2012
+ <td class="parameter_name"><p>y</p></td>
2013
+ <td class="parameter_description"><p>the y coordinate of the baseline of the text.</p></td>
2014
+ <td class="parameter_annotations"> </td>
2015
+ </tr>
2016
+ <tr>
2017
+ <td class="parameter_name"><p>text</p></td>
2018
+ <td class="parameter_description"><p>the characters to draw.</p></td>
2019
+ <td class="parameter_annotations"> </td>
2020
+ </tr>
2021
+ <tr>
2022
+ <td class="parameter_name"><p>text_length</p></td>
2023
+ <td class="parameter_description"><p>the number of characters of <em class="parameter"><code>text</code></em>
2024
+ to draw.</p></td>
2025
+ <td class="parameter_annotations"> </td>
2026
+ </tr>
2027
+ </tbody>
2028
+ </table></div>
2029
+ </div>
2030
+ </div>
2031
+ <hr>
2032
+ <div class="refsect2">
2033
+ <a name="gdk-draw-text-wc"></a><h3>gdk_draw_text_wc ()</h3>
2034
+ <pre class="programlisting"><span class="returnvalue">void</span>
2035
+ gdk_draw_text_wc (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
2036
+ <em class="parameter"><code><a class="link" href="gdk2-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> *font</code></em>,
2037
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
2038
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
2039
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
2040
+ <em class="parameter"><code>const <a class="link" href="gdk2-Fonts.html#GdkWChar" title="GdkWChar"><span class="type">GdkWChar</span></a> *text</code></em>,
2041
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> text_length</code></em>);</pre>
2042
+ <div class="warning">
2043
+ <p><code class="literal">gdk_draw_text_wc</code> has been deprecated since version 2.4 and should not be used in newly-written code.</p>
2044
+ <p>Use <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-layout" title="gdk_draw_layout ()"><code class="function">gdk_draw_layout()</code></a> instead.</p>
2045
+ </div>
2046
+ <p>Draws a number of wide characters using the given font of fontset.
2047
+ If the font is a 1-byte font, the string is converted into 1-byte
2048
+ characters (discarding the high bytes) before output.</p>
2049
+ <div class="refsect3">
2050
+ <a name="id-1.2.9.9.33.6"></a><h4>Parameters</h4>
2051
+ <div class="informaltable"><table width="100%" border="0">
2052
+ <colgroup>
2053
+ <col width="150px" class="parameters_name">
2054
+ <col class="parameters_description">
2055
+ <col width="200px" class="parameters_annotations">
2056
+ </colgroup>
2057
+ <tbody>
2058
+ <tr>
2059
+ <td class="parameter_name"><p>drawable</p></td>
2060
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> (a <a class="link" href="gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> or a <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>).</p></td>
2061
+ <td class="parameter_annotations"> </td>
2062
+ </tr>
2063
+ <tr>
2064
+ <td class="parameter_name"><p>font</p></td>
2065
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a>.</p></td>
2066
+ <td class="parameter_annotations"> </td>
2067
+ </tr>
2068
+ <tr>
2069
+ <td class="parameter_name"><p>gc</p></td>
2070
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
2071
+ <td class="parameter_annotations"> </td>
2072
+ </tr>
2073
+ <tr>
2074
+ <td class="parameter_name"><p>x</p></td>
2075
+ <td class="parameter_description"><p>the x coordinate of the left edge of the text.</p></td>
2076
+ <td class="parameter_annotations"> </td>
2077
+ </tr>
2078
+ <tr>
2079
+ <td class="parameter_name"><p>y</p></td>
2080
+ <td class="parameter_description"><p>the y coordinate of the baseline of the text.</p></td>
2081
+ <td class="parameter_annotations"> </td>
2082
+ </tr>
2083
+ <tr>
2084
+ <td class="parameter_name"><p>text</p></td>
2085
+ <td class="parameter_description"><p>the wide characters to draw.</p></td>
2086
+ <td class="parameter_annotations"> </td>
2087
+ </tr>
2088
+ <tr>
2089
+ <td class="parameter_name"><p>text_length</p></td>
2090
+ <td class="parameter_description"><p>the number of characters to draw.</p></td>
2091
+ <td class="parameter_annotations"> </td>
2092
+ </tr>
2093
+ </tbody>
2094
+ </table></div>
2095
+ </div>
2096
+ </div>
2097
+ <hr>
2098
+ <div class="refsect2">
2099
+ <a name="gdk-draw-drawable"></a><h3>gdk_draw_drawable ()</h3>
2100
+ <pre class="programlisting"><span class="returnvalue">void</span>
2101
+ gdk_draw_drawable (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
2102
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
2103
+ <em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *src</code></em>,
2104
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> xsrc</code></em>,
2105
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> ysrc</code></em>,
2106
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> xdest</code></em>,
2107
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> ydest</code></em>,
2108
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> width</code></em>,
2109
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> height</code></em>);</pre>
2110
+ <div class="warning">
2111
+ <p><code class="literal">gdk_draw_drawable</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
2112
+ <p>Use <a class="link" href="gdk2-Cairo-Interaction.html#gdk-cairo-set-source-pixmap" title="gdk_cairo_set_source_pixmap ()"><code class="function">gdk_cairo_set_source_pixmap()</code></a>, <code class="function">cairo_rectangle()</code>
2113
+ and <code class="function">cairo_fill()</code> to draw pixmap on top of other drawables. Also keep
2114
+ in mind that the limitations on allowed sources do not apply to Cairo.</p>
2115
+ </div>
2116
+ <p>Copies the <em class="parameter"><code>width</code></em>
2117
+ x <em class="parameter"><code>height</code></em>
2118
+ region of <em class="parameter"><code>src</code></em>
2119
+ at coordinates (<em class="parameter"><code>xsrc</code></em>
2120
+ ,
2121
+ <em class="parameter"><code>ysrc</code></em>
2122
+ ) to coordinates (<em class="parameter"><code>xdest</code></em>
2123
+ , <em class="parameter"><code>ydest</code></em>
2124
+ ) in <em class="parameter"><code>drawable</code></em>
2125
+ .
2126
+ <em class="parameter"><code>width</code></em>
2127
+ and/or <em class="parameter"><code>height</code></em>
2128
+ may be given as -1, in which case the entire
2129
+ <em class="parameter"><code>src</code></em>
2130
+ drawable will be copied.</p>
2131
+ <p>Most fields in <em class="parameter"><code>gc</code></em>
2132
+ are not used for this operation, but notably the
2133
+ clip mask or clip region will be honored.</p>
2134
+ <p>The source and destination drawables must have the same visual and
2135
+ colormap, or errors will result. (On X11, failure to match
2136
+ visual/colormap results in a BadMatch error from the X server.)
2137
+ A common cause of this problem is an attempt to draw a bitmap to
2138
+ a color drawable. The way to draw a bitmap is to set the bitmap as
2139
+ the stipple on the <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>, set the fill mode to <a class="link" href="gdk2-Graphics-Contexts.html#GDK-STIPPLED:CAPS"><code class="literal">GDK_STIPPLED</code></a>, and
2140
+ then draw the rectangle.</p>
2141
+ <div class="refsect3">
2142
+ <a name="id-1.2.9.9.34.8"></a><h4>Parameters</h4>
2143
+ <div class="informaltable"><table width="100%" border="0">
2144
+ <colgroup>
2145
+ <col width="150px" class="parameters_name">
2146
+ <col class="parameters_description">
2147
+ <col width="200px" class="parameters_annotations">
2148
+ </colgroup>
2149
+ <tbody>
2150
+ <tr>
2151
+ <td class="parameter_name"><p>drawable</p></td>
2152
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
2153
+ <td class="parameter_annotations"> </td>
2154
+ </tr>
2155
+ <tr>
2156
+ <td class="parameter_name"><p>gc</p></td>
2157
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> sharing the drawable's visual and colormap</p></td>
2158
+ <td class="parameter_annotations"> </td>
2159
+ </tr>
2160
+ <tr>
2161
+ <td class="parameter_name"><p>src</p></td>
2162
+ <td class="parameter_description"><p>the source <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>, which may be the same as <em class="parameter"><code>drawable</code></em>
2163
+ </p></td>
2164
+ <td class="parameter_annotations"> </td>
2165
+ </tr>
2166
+ <tr>
2167
+ <td class="parameter_name"><p>xsrc</p></td>
2168
+ <td class="parameter_description"><p>X position in <em class="parameter"><code>src</code></em>
2169
+ of rectangle to draw</p></td>
2170
+ <td class="parameter_annotations"> </td>
2171
+ </tr>
2172
+ <tr>
2173
+ <td class="parameter_name"><p>ysrc</p></td>
2174
+ <td class="parameter_description"><p>Y position in <em class="parameter"><code>src</code></em>
2175
+ of rectangle to draw</p></td>
2176
+ <td class="parameter_annotations"> </td>
2177
+ </tr>
2178
+ <tr>
2179
+ <td class="parameter_name"><p>xdest</p></td>
2180
+ <td class="parameter_description"><p>X position in <em class="parameter"><code>drawable</code></em>
2181
+ where the rectangle should be drawn</p></td>
2182
+ <td class="parameter_annotations"> </td>
2183
+ </tr>
2184
+ <tr>
2185
+ <td class="parameter_name"><p>ydest</p></td>
2186
+ <td class="parameter_description"><p>Y position in <em class="parameter"><code>drawable</code></em>
2187
+ where the rectangle should be drawn</p></td>
2188
+ <td class="parameter_annotations"> </td>
2189
+ </tr>
2190
+ <tr>
2191
+ <td class="parameter_name"><p>width</p></td>
2192
+ <td class="parameter_description"><p>width of rectangle to draw, or -1 for entire <em class="parameter"><code>src</code></em>
2193
+ width</p></td>
2194
+ <td class="parameter_annotations"> </td>
2195
+ </tr>
2196
+ <tr>
2197
+ <td class="parameter_name"><p>height</p></td>
2198
+ <td class="parameter_description"><p>height of rectangle to draw, or -1 for entire <em class="parameter"><code>src</code></em>
2199
+ height</p></td>
2200
+ <td class="parameter_annotations"> </td>
2201
+ </tr>
2202
+ </tbody>
2203
+ </table></div>
2204
+ </div>
2205
+ </div>
2206
+ <hr>
2207
+ <div class="refsect2">
2208
+ <a name="gdk-draw-image"></a><h3>gdk_draw_image ()</h3>
2209
+ <pre class="programlisting"><span class="returnvalue">void</span>
2210
+ gdk_draw_image (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
2211
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
2212
+ <em class="parameter"><code><a class="link" href="gdk2-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a> *image</code></em>,
2213
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> xsrc</code></em>,
2214
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> ysrc</code></em>,
2215
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> xdest</code></em>,
2216
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> ydest</code></em>,
2217
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> width</code></em>,
2218
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> height</code></em>);</pre>
2219
+ <div class="warning">
2220
+ <p><code class="literal">gdk_draw_image</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
2221
+ <p>Do not use <a class="link" href="gdk2-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a> anymore, instead use Cairo image
2222
+ surfaces.</p>
2223
+ </div>
2224
+ <p>Draws a <a class="link" href="gdk2-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a> onto a drawable.
2225
+ The depth of the <a class="link" href="gdk2-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a> must match the depth of the <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>.</p>
2226
+ <div class="refsect3">
2227
+ <a name="id-1.2.9.9.35.6"></a><h4>Parameters</h4>
2228
+ <div class="informaltable"><table width="100%" border="0">
2229
+ <colgroup>
2230
+ <col width="150px" class="parameters_name">
2231
+ <col class="parameters_description">
2232
+ <col width="200px" class="parameters_annotations">
2233
+ </colgroup>
2234
+ <tbody>
2235
+ <tr>
2236
+ <td class="parameter_name"><p>drawable</p></td>
2237
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> (a <a class="link" href="gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> or a <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>).</p></td>
2238
+ <td class="parameter_annotations"> </td>
2239
+ </tr>
2240
+ <tr>
2241
+ <td class="parameter_name"><p>gc</p></td>
2242
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
2243
+ <td class="parameter_annotations"> </td>
2244
+ </tr>
2245
+ <tr>
2246
+ <td class="parameter_name"><p>image</p></td>
2247
+ <td class="parameter_description"><p>the <a class="link" href="gdk2-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a> to draw.</p></td>
2248
+ <td class="parameter_annotations"> </td>
2249
+ </tr>
2250
+ <tr>
2251
+ <td class="parameter_name"><p>xsrc</p></td>
2252
+ <td class="parameter_description"><p>the left edge of the source rectangle within <em class="parameter"><code>image</code></em>
2253
+ .</p></td>
2254
+ <td class="parameter_annotations"> </td>
2255
+ </tr>
2256
+ <tr>
2257
+ <td class="parameter_name"><p>ysrc</p></td>
2258
+ <td class="parameter_description"><p>the top of the source rectangle within <em class="parameter"><code>image</code></em>
2259
+ .</p></td>
2260
+ <td class="parameter_annotations"> </td>
2261
+ </tr>
2262
+ <tr>
2263
+ <td class="parameter_name"><p>xdest</p></td>
2264
+ <td class="parameter_description"><p>the x coordinate of the destination within <em class="parameter"><code>drawable</code></em>
2265
+ .</p></td>
2266
+ <td class="parameter_annotations"> </td>
2267
+ </tr>
2268
+ <tr>
2269
+ <td class="parameter_name"><p>ydest</p></td>
2270
+ <td class="parameter_description"><p>the y coordinate of the destination within <em class="parameter"><code>drawable</code></em>
2271
+ .</p></td>
2272
+ <td class="parameter_annotations"> </td>
2273
+ </tr>
2274
+ <tr>
2275
+ <td class="parameter_name"><p>width</p></td>
2276
+ <td class="parameter_description"><p>the width of the area to be copied, or -1 to make the area
2277
+ extend to the right edge of <em class="parameter"><code>image</code></em>
2278
+ .</p></td>
2279
+ <td class="parameter_annotations"> </td>
2280
+ </tr>
2281
+ <tr>
2282
+ <td class="parameter_name"><p>height</p></td>
2283
+ <td class="parameter_description"><p>the height of the area to be copied, or -1 to make the area
2284
+ extend to the bottom edge of <em class="parameter"><code>image</code></em>
2285
+ .</p></td>
2286
+ <td class="parameter_annotations"> </td>
2287
+ </tr>
2288
+ </tbody>
2289
+ </table></div>
2290
+ </div>
2291
+ </div>
2292
+ <hr>
2293
+ <div class="refsect2">
2294
+ <a name="gdk-drawable-get-image"></a><h3>gdk_drawable_get_image ()</h3>
2295
+ <pre class="programlisting"><a class="link" href="gdk2-Images.html#GdkImage" title="GdkImage"><span class="returnvalue">GdkImage</span></a> *
2296
+ gdk_drawable_get_image (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
2297
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
2298
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
2299
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> width</code></em>,
2300
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> height</code></em>);</pre>
2301
+ <div class="warning">
2302
+ <p><code class="literal">gdk_drawable_get_image</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
2303
+ <p>Use <em class="parameter"><code>drawable</code></em>
2304
+ as the source and draw to a Cairo image
2305
+ surface if you want to download contents to the client.</p>
2306
+ </div>
2307
+ <p>A <a class="link" href="gdk2-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a> stores client-side image data (pixels). In contrast,
2308
+ <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> and <a class="link" href="gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> are server-side
2309
+ objects. <a class="link" href="gdk2-Drawing-Primitives.html#gdk-drawable-get-image" title="gdk_drawable_get_image ()"><code class="function">gdk_drawable_get_image()</code></a> obtains the pixels from a
2310
+ server-side drawable as a client-side <a class="link" href="gdk2-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a>. The format of a
2311
+ <a class="link" href="gdk2-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a> depends on the <a class="link" href="gdk2-Visuals.html#GdkVisual" title="GdkVisual"><span class="type">GdkVisual</span></a> of the current display, which
2312
+ makes manipulating <a class="link" href="gdk2-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a> extremely difficult; therefore, in
2313
+ most cases you should use <a class="link" href="gdk2-Pixbufs.html#gdk-pixbuf-get-from-drawable" title="gdk_pixbuf_get_from_drawable ()"><code class="function">gdk_pixbuf_get_from_drawable()</code></a> instead of
2314
+ this lower-level function. A <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> contains image data in a
2315
+ canonicalized RGB format, rather than a display-dependent format.
2316
+ Of course, there's a convenience vs. speed tradeoff here, so you'll
2317
+ want to think about what makes sense for your application.</p>
2318
+ <p><em class="parameter"><code>x</code></em>
2319
+ , <em class="parameter"><code>y</code></em>
2320
+ , <em class="parameter"><code>width</code></em>
2321
+ , and <em class="parameter"><code>height</code></em>
2322
+ define the region of <em class="parameter"><code>drawable</code></em>
2323
+ to
2324
+ obtain as an image.</p>
2325
+ <p>You would usually copy image data to the client side if you intend
2326
+ to examine the values of individual pixels, for example to darken
2327
+ an image or add a red tint. It would be prohibitively slow to
2328
+ make a round-trip request to the windowing system for each pixel,
2329
+ so instead you get all of them at once, modify them, then copy
2330
+ them all back at once.</p>
2331
+ <p>If the X server or other windowing system backend is on the local
2332
+ machine, this function may use shared memory to avoid copying
2333
+ the image data.</p>
2334
+ <p>If the source drawable is a <a class="link" href="gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> and partially offscreen
2335
+ or obscured, then the obscured portions of the returned image
2336
+ will contain undefined data.</p>
2337
+ <div class="refsect3">
2338
+ <a name="id-1.2.9.9.36.10"></a><h4>Parameters</h4>
2339
+ <div class="informaltable"><table width="100%" border="0">
2340
+ <colgroup>
2341
+ <col width="150px" class="parameters_name">
2342
+ <col class="parameters_description">
2343
+ <col width="200px" class="parameters_annotations">
2344
+ </colgroup>
2345
+ <tbody>
2346
+ <tr>
2347
+ <td class="parameter_name"><p>drawable</p></td>
2348
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
2349
+ <td class="parameter_annotations"> </td>
2350
+ </tr>
2351
+ <tr>
2352
+ <td class="parameter_name"><p>x</p></td>
2353
+ <td class="parameter_description"><p>x coordinate on <em class="parameter"><code>drawable</code></em>
2354
+ </p></td>
2355
+ <td class="parameter_annotations"> </td>
2356
+ </tr>
2357
+ <tr>
2358
+ <td class="parameter_name"><p>y</p></td>
2359
+ <td class="parameter_description"><p>y coordinate on <em class="parameter"><code>drawable</code></em>
2360
+ </p></td>
2361
+ <td class="parameter_annotations"> </td>
2362
+ </tr>
2363
+ <tr>
2364
+ <td class="parameter_name"><p>width</p></td>
2365
+ <td class="parameter_description"><p>width of region to get</p></td>
2366
+ <td class="parameter_annotations"> </td>
2367
+ </tr>
2368
+ <tr>
2369
+ <td class="parameter_name"><p>height</p></td>
2370
+ <td class="parameter_description"><p>height or region to get</p></td>
2371
+ <td class="parameter_annotations"> </td>
2372
+ </tr>
2373
+ </tbody>
2374
+ </table></div>
2375
+ </div>
2376
+ <div class="refsect3">
2377
+ <a name="id-1.2.9.9.36.11"></a><h4>Returns</h4>
2378
+ <p> a <a class="link" href="gdk2-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a> containing the contents of <em class="parameter"><code>drawable</code></em>
2379
+ </p>
2380
+ <p></p>
2381
+ </div>
2382
+ </div>
2383
+ <hr>
2384
+ <div class="refsect2">
2385
+ <a name="gdk-drawable-copy-to-image"></a><h3>gdk_drawable_copy_to_image ()</h3>
2386
+ <pre class="programlisting"><a class="link" href="gdk2-Images.html#GdkImage" title="GdkImage"><span class="returnvalue">GdkImage</span></a> *
2387
+ gdk_drawable_copy_to_image (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
2388
+ <em class="parameter"><code><a class="link" href="gdk2-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a> *image</code></em>,
2389
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> src_x</code></em>,
2390
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> src_y</code></em>,
2391
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> dest_x</code></em>,
2392
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> dest_y</code></em>,
2393
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> width</code></em>,
2394
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> height</code></em>);</pre>
2395
+ <div class="warning">
2396
+ <p><code class="literal">gdk_drawable_copy_to_image</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
2397
+ <p>Use <em class="parameter"><code>drawable</code></em>
2398
+ as the source and draw to a Cairo image
2399
+ surface if you want to download contents to the client.</p>
2400
+ </div>
2401
+ <p>Copies a portion of <em class="parameter"><code>drawable</code></em>
2402
+ into the client side image structure
2403
+ <em class="parameter"><code>image</code></em>
2404
+ . If <em class="parameter"><code>image</code></em>
2405
+ is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, creates a new image of size <em class="parameter"><code>width</code></em>
2406
+ x <em class="parameter"><code>height</code></em>
2407
+
2408
+ and copies into that. See <a class="link" href="gdk2-Drawing-Primitives.html#gdk-drawable-get-image" title="gdk_drawable_get_image ()"><code class="function">gdk_drawable_get_image()</code></a> for further details.</p>
2409
+ <div class="refsect3">
2410
+ <a name="id-1.2.9.9.37.7"></a><h4>Parameters</h4>
2411
+ <div class="informaltable"><table width="100%" border="0">
2412
+ <colgroup>
2413
+ <col width="150px" class="parameters_name">
2414
+ <col class="parameters_description">
2415
+ <col width="200px" class="parameters_annotations">
2416
+ </colgroup>
2417
+ <tbody>
2418
+ <tr>
2419
+ <td class="parameter_name"><p>drawable</p></td>
2420
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a></p></td>
2421
+ <td class="parameter_annotations"> </td>
2422
+ </tr>
2423
+ <tr>
2424
+ <td class="parameter_name"><p>image</p></td>
2425
+ <td class="parameter_description"><p> a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if a new <em class="parameter"><code>image</code></em>
2426
+ should be created. </p></td>
2427
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
2428
+ </tr>
2429
+ <tr>
2430
+ <td class="parameter_name"><p>src_x</p></td>
2431
+ <td class="parameter_description"><p>x coordinate on <em class="parameter"><code>drawable</code></em>
2432
+ </p></td>
2433
+ <td class="parameter_annotations"> </td>
2434
+ </tr>
2435
+ <tr>
2436
+ <td class="parameter_name"><p>src_y</p></td>
2437
+ <td class="parameter_description"><p>y coordinate on <em class="parameter"><code>drawable</code></em>
2438
+ </p></td>
2439
+ <td class="parameter_annotations"> </td>
2440
+ </tr>
2441
+ <tr>
2442
+ <td class="parameter_name"><p>dest_x</p></td>
2443
+ <td class="parameter_description"><p>x coordinate within <em class="parameter"><code>image</code></em>
2444
+ . Must be 0 if <em class="parameter"><code>image</code></em>
2445
+ is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
2446
+ <td class="parameter_annotations"> </td>
2447
+ </tr>
2448
+ <tr>
2449
+ <td class="parameter_name"><p>dest_y</p></td>
2450
+ <td class="parameter_description"><p>y coordinate within <em class="parameter"><code>image</code></em>
2451
+ . Must be 0 if <em class="parameter"><code>image</code></em>
2452
+ is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
2453
+ <td class="parameter_annotations"> </td>
2454
+ </tr>
2455
+ <tr>
2456
+ <td class="parameter_name"><p>width</p></td>
2457
+ <td class="parameter_description"><p>width of region to get</p></td>
2458
+ <td class="parameter_annotations"> </td>
2459
+ </tr>
2460
+ <tr>
2461
+ <td class="parameter_name"><p>height</p></td>
2462
+ <td class="parameter_description"><p>height or region to get</p></td>
2463
+ <td class="parameter_annotations"> </td>
2464
+ </tr>
2465
+ </tbody>
2466
+ </table></div>
2467
+ </div>
2468
+ <div class="refsect3">
2469
+ <a name="id-1.2.9.9.37.8"></a><h4>Returns</h4>
2470
+ <p> <em class="parameter"><code>image</code></em>
2471
+ , or a new a <a class="link" href="gdk2-Images.html#GdkImage" title="GdkImage"><span class="type">GdkImage</span></a> containing the contents
2472
+ of <em class="parameter"><code>drawable</code></em>
2473
+ </p>
2474
+ <p></p>
2475
+ </div>
2476
+ <p class="since">Since 2.4</p>
2477
+ </div>
2478
+ </div>
2479
+ <div class="refsect1">
2480
+ <a name="gdk2-Drawing-Primitives.other_details"></a><h2>Types and Values</h2>
2481
+ <div class="refsect2">
2482
+ <a name="GdkDrawable-struct"></a><h3>GdkDrawable</h3>
2483
+ <pre class="programlisting">typedef struct _GdkDrawable GdkDrawable;</pre>
2484
+ <p>
2485
+ An opaque structure representing an object that can be
2486
+ drawn onto. This can be a <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>, a <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkBitmap" title="GdkBitmap"><span class="type">GdkBitmap</span></a>,
2487
+ or a <a class="link" href="gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>.
2488
+ </p>
2489
+ </div>
2490
+ <hr>
2491
+ <div class="refsect2">
2492
+ <a name="GdkSegment"></a><h3>struct GdkSegment</h3>
2493
+ <pre class="programlisting">struct GdkSegment {
2494
+ gint x1;
2495
+ gint y1;
2496
+ gint x2;
2497
+ gint y2;
2498
+ };
2499
+ </pre>
2500
+ <p>
2501
+ Specifies the start and end point of a line for use by the <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-segments" title="gdk_draw_segments ()"><code class="function">gdk_draw_segments()</code></a>
2502
+ function.
2503
+ </p>
2504
+ <div class="refsect3">
2505
+ <a name="id-1.2.9.10.3.5"></a><h4>Members</h4>
2506
+ <div class="informaltable"><table width="100%" border="0">
2507
+ <colgroup>
2508
+ <col width="300px" class="struct_members_name">
2509
+ <col class="struct_members_description">
2510
+ <col width="200px" class="struct_members_annotations">
2511
+ </colgroup>
2512
+ <tbody>
2513
+ <tr>
2514
+ <td class="struct_member_name"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkSegment.x1"></a>x1</code></em>;</p></td>
2515
+ <td class="struct_member_description"><p>the x coordinate of the start point.</p></td>
2516
+ <td class="struct_member_annotations"> </td>
2517
+ </tr>
2518
+ <tr>
2519
+ <td class="struct_member_name"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkSegment.y1"></a>y1</code></em>;</p></td>
2520
+ <td class="struct_member_description"><p>the y coordinate of the start point.</p></td>
2521
+ <td class="struct_member_annotations"> </td>
2522
+ </tr>
2523
+ <tr>
2524
+ <td class="struct_member_name"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkSegment.x2"></a>x2</code></em>;</p></td>
2525
+ <td class="struct_member_description"><p>the x coordinate of the end point.</p></td>
2526
+ <td class="struct_member_annotations"> </td>
2527
+ </tr>
2528
+ <tr>
2529
+ <td class="struct_member_name"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkSegment.y2"></a>y2</code></em>;</p></td>
2530
+ <td class="struct_member_description"><p>the y coordinate of the end point.</p></td>
2531
+ <td class="struct_member_annotations"> </td>
2532
+ </tr>
2533
+ </tbody>
2534
+ </table></div>
2535
+ </div>
2536
+ </div>
2537
+ <hr>
2538
+ <div class="refsect2">
2539
+ <a name="GdkTrapezoid"></a><h3>struct GdkTrapezoid</h3>
2540
+ <pre class="programlisting">struct GdkTrapezoid {
2541
+ double y1, x11, x21, y2, x12, x22;
2542
+ };
2543
+ </pre>
2544
+ <p>
2545
+ Specifies a trapezpoid for use by the <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-trapezoids" title="gdk_draw_trapezoids ()"><code class="function">gdk_draw_trapezoids()</code></a>.
2546
+ The trapezoids used here have parallel, horizontal top and
2547
+ bottom edges.
2548
+ </p>
2549
+ <div class="refsect3">
2550
+ <a name="id-1.2.9.10.4.5"></a><h4>Members</h4>
2551
+ <div class="informaltable"><table width="100%" border="0">
2552
+ <colgroup>
2553
+ <col width="300px" class="struct_members_name">
2554
+ <col class="struct_members_description">
2555
+ <col width="200px" class="struct_members_annotations">
2556
+ </colgroup>
2557
+ <tbody>
2558
+ <tr>
2559
+ <td class="struct_member_name"><p><span class="type">double</span> <em class="structfield"><code><a name="GdkTrapezoid.y1"></a>y1</code></em>;</p></td>
2560
+ <td class="struct_member_description"><p>the y coordinate of the start point.</p></td>
2561
+ <td class="struct_member_annotations"> </td>
2562
+ </tr>
2563
+ <tr>
2564
+ <td class="struct_member_name"><p><span class="type">double</span> <em class="structfield"><code><a name="GdkTrapezoid.x11"></a>x11</code></em>;</p></td>
2565
+ <td class="struct_member_description"><p>the x coordinate of the top left corner</p></td>
2566
+ <td class="struct_member_annotations"> </td>
2567
+ </tr>
2568
+ <tr>
2569
+ <td class="struct_member_name"><p><span class="type">double</span> <em class="structfield"><code><a name="GdkTrapezoid.x21"></a>x21</code></em>;</p></td>
2570
+ <td class="struct_member_description"><p>the x coordinate of the top right corner</p></td>
2571
+ <td class="struct_member_annotations"> </td>
2572
+ </tr>
2573
+ <tr>
2574
+ <td class="struct_member_name"><p><span class="type">double</span> <em class="structfield"><code><a name="GdkTrapezoid.y2"></a>y2</code></em>;</p></td>
2575
+ <td class="struct_member_description"><p>the y coordinate of the end point.</p></td>
2576
+ <td class="struct_member_annotations"> </td>
2577
+ </tr>
2578
+ <tr>
2579
+ <td class="struct_member_name"><p><span class="type">double</span> <em class="structfield"><code><a name="GdkTrapezoid.x12"></a>x12</code></em>;</p></td>
2580
+ <td class="struct_member_description"><p>the x coordinate of the bottom left corner</p></td>
2581
+ <td class="struct_member_annotations"> </td>
2582
+ </tr>
2583
+ <tr>
2584
+ <td class="struct_member_name"><p><span class="type">double</span> <em class="structfield"><code><a name="GdkTrapezoid.x22"></a>x22</code></em>;</p></td>
2585
+ <td class="struct_member_description"><p>the x coordinate of the bottom right corner</p></td>
2586
+ <td class="struct_member_annotations"> </td>
2587
+ </tr>
2588
+ </tbody>
2589
+ </table></div>
2590
+ </div>
2591
+ </div>
2592
+ <hr>
2593
+ <div class="refsect2">
2594
+ <a name="gdk-draw-pixmap"></a><h3>gdk_draw_pixmap</h3>
2595
+ <pre class="programlisting">#define gdk_draw_pixmap gdk_draw_drawable
2596
+ </pre>
2597
+ <div class="warning">
2598
+ <p><code class="literal">gdk_draw_pixmap</code> is deprecated and should not be used in newly-written code.</p>
2599
+ <p>Use <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-drawable" title="gdk_draw_drawable ()"><code class="function">gdk_draw_drawable()</code></a> instead.</p>
2600
+ </div>
2601
+ <p>
2602
+ Draws a pixmap, or a part of a pixmap, onto another drawable.
2603
+ </p>
2604
+ </div>
2605
+ </div>
2606
+ </div>
2607
+ <div class="footer">
2608
+ <hr>
2609
+ Generated by GTK-Doc V1.21.1</div>
2610
+ </body>
2611
+ </html>