gtk2 2.2.4-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
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,2201 @@
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: Graphics Contexts</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-Points-Rectangles-and-Regions.html" title="Points, Rectangles and Regions">
10
+ <link rel="next" href="gdk2-Drawing-Primitives.html" title="Drawing Primitives">
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-Graphics-Contexts.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#gdk2-Graphics-Contexts.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-Points-Rectangles-and-Regions.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24
+ <td><a accesskey="n" href="gdk2-Drawing-Primitives.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-Graphics-Contexts"></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-Graphics-Contexts.top_of_page"></a>Graphics Contexts</span></h2>
31
+ <p>Graphics Contexts — Objects to encapsulate drawing properties</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-Graphics-Contexts.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-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> *
46
+ </td>
47
+ <td class="function_name">
48
+ <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-new" title="gdk_gc_new ()">gdk_gc_new</a> <span class="c_punctuation">()</span>
49
+ </td>
50
+ </tr>
51
+ <tr>
52
+ <td class="function_type">
53
+ <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> *
54
+ </td>
55
+ <td class="function_name">
56
+ <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-new-with-values" title="gdk_gc_new_with_values ()">gdk_gc_new_with_values</a> <span class="c_punctuation">()</span>
57
+ </td>
58
+ </tr>
59
+ <tr>
60
+ <td class="function_type">
61
+ <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="returnvalue">GdkScreen</span></a> *
62
+ </td>
63
+ <td class="function_name">
64
+ <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-get-screen" title="gdk_gc_get_screen ()">gdk_gc_get_screen</a> <span class="c_punctuation">()</span>
65
+ </td>
66
+ </tr>
67
+ <tr>
68
+ <td class="function_type">
69
+ <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> *
70
+ </td>
71
+ <td class="function_name">
72
+ <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-ref" title="gdk_gc_ref ()">gdk_gc_ref</a> <span class="c_punctuation">()</span>
73
+ </td>
74
+ </tr>
75
+ <tr>
76
+ <td class="function_type">
77
+ <span class="returnvalue">void</span>
78
+ </td>
79
+ <td class="function_name">
80
+ <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-unref" title="gdk_gc_unref ()">gdk_gc_unref</a> <span class="c_punctuation">()</span>
81
+ </td>
82
+ </tr>
83
+ <tr>
84
+ <td class="function_type">
85
+ <span class="returnvalue">void</span>
86
+ </td>
87
+ <td class="function_name">
88
+ <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-set-values" title="gdk_gc_set_values ()">gdk_gc_set_values</a> <span class="c_punctuation">()</span>
89
+ </td>
90
+ </tr>
91
+ <tr>
92
+ <td class="function_type">
93
+ <span class="returnvalue">void</span>
94
+ </td>
95
+ <td class="function_name">
96
+ <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-get-values" title="gdk_gc_get_values ()">gdk_gc_get_values</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-Graphics-Contexts.html#gdk-gc-set-foreground" title="gdk_gc_set_foreground ()">gdk_gc_set_foreground</a> <span class="c_punctuation">()</span>
105
+ </td>
106
+ </tr>
107
+ <tr>
108
+ <td class="function_type">
109
+ <span class="returnvalue">void</span>
110
+ </td>
111
+ <td class="function_name">
112
+ <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-set-background" title="gdk_gc_set_background ()">gdk_gc_set_background</a> <span class="c_punctuation">()</span>
113
+ </td>
114
+ </tr>
115
+ <tr>
116
+ <td class="function_type">
117
+ <span class="returnvalue">void</span>
118
+ </td>
119
+ <td class="function_name">
120
+ <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-set-rgb-fg-color" title="gdk_gc_set_rgb_fg_color ()">gdk_gc_set_rgb_fg_color</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-Graphics-Contexts.html#gdk-gc-set-rgb-bg-color" title="gdk_gc_set_rgb_bg_color ()">gdk_gc_set_rgb_bg_color</a> <span class="c_punctuation">()</span>
129
+ </td>
130
+ </tr>
131
+ <tr>
132
+ <td class="function_type">
133
+ <span class="returnvalue">void</span>
134
+ </td>
135
+ <td class="function_name">
136
+ <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-set-font" title="gdk_gc_set_font ()">gdk_gc_set_font</a> <span class="c_punctuation">()</span>
137
+ </td>
138
+ </tr>
139
+ <tr>
140
+ <td class="function_type">
141
+ <span class="returnvalue">void</span>
142
+ </td>
143
+ <td class="function_name">
144
+ <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-set-function" title="gdk_gc_set_function ()">gdk_gc_set_function</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-Graphics-Contexts.html#gdk-gc-set-fill" title="gdk_gc_set_fill ()">gdk_gc_set_fill</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-Graphics-Contexts.html#gdk-gc-set-tile" title="gdk_gc_set_tile ()">gdk_gc_set_tile</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-Graphics-Contexts.html#gdk-gc-set-stipple" title="gdk_gc_set_stipple ()">gdk_gc_set_stipple</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-Graphics-Contexts.html#gdk-gc-set-ts-origin" title="gdk_gc_set_ts_origin ()">gdk_gc_set_ts_origin</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-Graphics-Contexts.html#gdk-gc-set-clip-origin" title="gdk_gc_set_clip_origin ()">gdk_gc_set_clip_origin</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-Graphics-Contexts.html#gdk-gc-set-clip-mask" title="gdk_gc_set_clip_mask ()">gdk_gc_set_clip_mask</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-Graphics-Contexts.html#gdk-gc-set-clip-rectangle" title="gdk_gc_set_clip_rectangle ()">gdk_gc_set_clip_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-Graphics-Contexts.html#gdk-gc-set-clip-region" title="gdk_gc_set_clip_region ()">gdk_gc_set_clip_region</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-Graphics-Contexts.html#gdk-gc-set-subwindow" title="gdk_gc_set_subwindow ()">gdk_gc_set_subwindow</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-Graphics-Contexts.html#gdk-gc-set-exposures" title="gdk_gc_set_exposures ()">gdk_gc_set_exposures</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-Graphics-Contexts.html#gdk-gc-set-line-attributes" title="gdk_gc_set_line_attributes ()">gdk_gc_set_line_attributes</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-Graphics-Contexts.html#gdk-gc-set-dashes" title="gdk_gc_set_dashes ()">gdk_gc_set_dashes</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-Graphics-Contexts.html#gdk-gc-copy" title="gdk_gc_copy ()">gdk_gc_copy</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-Graphics-Contexts.html#gdk-gc-set-colormap" title="gdk_gc_set_colormap ()">gdk_gc_set_colormap</a> <span class="c_punctuation">()</span>
257
+ </td>
258
+ </tr>
259
+ <tr>
260
+ <td class="function_type">
261
+ <a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="returnvalue">GdkColormap</span></a> *
262
+ </td>
263
+ <td class="function_name">
264
+ <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-get-colormap" title="gdk_gc_get_colormap ()">gdk_gc_get_colormap</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-Graphics-Contexts.html#gdk-gc-offset" title="gdk_gc_offset ()">gdk_gc_offset</a> <span class="c_punctuation">()</span>
273
+ </td>
274
+ </tr>
275
+ </tbody>
276
+ </table></div>
277
+ </div>
278
+ <a name="GdkGC"></a><div class="refsect1">
279
+ <a name="gdk2-Graphics-Contexts.other"></a><h2>Types and Values</h2>
280
+ <div class="informaltable"><table width="100%" border="0">
281
+ <colgroup>
282
+ <col width="150px" class="name">
283
+ <col class="description">
284
+ </colgroup>
285
+ <tbody>
286
+ <tr>
287
+ <td class="datatype_keyword"> </td>
288
+ <td class="function_name"><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC-struct" title="GdkGC">GdkGC</a></td>
289
+ </tr>
290
+ <tr>
291
+ <td class="datatype_keyword">struct</td>
292
+ <td class="function_name"><a class="link" href="gdk2-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues">GdkGCValues</a></td>
293
+ </tr>
294
+ <tr>
295
+ <td class="datatype_keyword">enum</td>
296
+ <td class="function_name"><a class="link" href="gdk2-Graphics-Contexts.html#GdkGCValuesMask" title="enum GdkGCValuesMask">GdkGCValuesMask</a></td>
297
+ </tr>
298
+ <tr>
299
+ <td class="datatype_keyword">enum</td>
300
+ <td class="function_name"><a class="link" href="gdk2-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction">GdkFunction</a></td>
301
+ </tr>
302
+ <tr>
303
+ <td class="define_keyword">#define</td>
304
+ <td class="function_name"><a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-destroy" title="gdk_gc_destroy">gdk_gc_destroy</a></td>
305
+ </tr>
306
+ <tr>
307
+ <td class="datatype_keyword">enum</td>
308
+ <td class="function_name"><a class="link" href="gdk2-Graphics-Contexts.html#GdkFill" title="enum GdkFill">GdkFill</a></td>
309
+ </tr>
310
+ <tr>
311
+ <td class="datatype_keyword">enum</td>
312
+ <td class="function_name"><a class="link" href="gdk2-Graphics-Contexts.html#GdkSubwindowMode" title="enum GdkSubwindowMode">GdkSubwindowMode</a></td>
313
+ </tr>
314
+ <tr>
315
+ <td class="datatype_keyword">enum</td>
316
+ <td class="function_name"><a class="link" href="gdk2-Graphics-Contexts.html#GdkLineStyle" title="enum GdkLineStyle">GdkLineStyle</a></td>
317
+ </tr>
318
+ <tr>
319
+ <td class="datatype_keyword">enum</td>
320
+ <td class="function_name"><a class="link" href="gdk2-Graphics-Contexts.html#GdkCapStyle" title="enum GdkCapStyle">GdkCapStyle</a></td>
321
+ </tr>
322
+ <tr>
323
+ <td class="datatype_keyword">enum</td>
324
+ <td class="function_name"><a class="link" href="gdk2-Graphics-Contexts.html#GdkJoinStyle" title="enum GdkJoinStyle">GdkJoinStyle</a></td>
325
+ </tr>
326
+ </tbody>
327
+ </table></div>
328
+ </div>
329
+ <div class="refsect1">
330
+ <a name="gdk2-Graphics-Contexts.object-hierarchy"></a><h2>Object Hierarchy</h2>
331
+ <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>
332
+ <span class="lineart">╰──</span> GdkGC
333
+ </pre>
334
+ </div>
335
+ <div class="refsect1">
336
+ <a name="gdk2-Graphics-Contexts.includes"></a><h2>Includes</h2>
337
+ <pre class="synopsis">#include &lt;gdk/gdk.h&gt;
338
+ </pre>
339
+ </div>
340
+ <div class="refsect1">
341
+ <a name="gdk2-Graphics-Contexts.description"></a><h2>Description</h2>
342
+ <p>
343
+ All drawing operations in GDK take a
344
+ <em class="firstterm">graphics context</em> (GC) argument.
345
+ A graphics context encapsulates information about
346
+ the way things are drawn, such as the foreground
347
+ color or line width. By using graphics contexts,
348
+ the number of arguments to each drawing call is
349
+ greatly reduced, and communication overhead is
350
+ minimized, since identical arguments do not need
351
+ to be passed repeatedly.
352
+ </p>
353
+ <p>
354
+ Most values of a graphics context can be set at
355
+ creation time by using <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-new-with-values" title="gdk_gc_new_with_values ()"><code class="function">gdk_gc_new_with_values()</code></a>,
356
+ or can be set one-by-one using functions such
357
+ as <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-set-foreground" title="gdk_gc_set_foreground ()"><code class="function">gdk_gc_set_foreground()</code></a>. A few of the values
358
+ in the GC, such as the dash pattern, can only
359
+ be set by the latter method.
360
+ </p>
361
+ </div>
362
+ <div class="refsect1">
363
+ <a name="gdk2-Graphics-Contexts.functions_details"></a><h2>Functions</h2>
364
+ <div class="refsect2">
365
+ <a name="gdk-gc-new"></a><h3>gdk_gc_new ()</h3>
366
+ <pre class="programlisting"><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> *
367
+ gdk_gc_new (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);</pre>
368
+ <div class="warning">
369
+ <p><code class="literal">gdk_gc_new</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
370
+ <p>Use Cairo for rendering.</p>
371
+ </div>
372
+ <p>Create a new graphics context with default values.</p>
373
+ <div class="refsect3">
374
+ <a name="id-1.2.8.9.2.6"></a><h4>Parameters</h4>
375
+ <div class="informaltable"><table width="100%" border="0">
376
+ <colgroup>
377
+ <col width="150px" class="parameters_name">
378
+ <col class="parameters_description">
379
+ <col width="200px" class="parameters_annotations">
380
+ </colgroup>
381
+ <tbody><tr>
382
+ <td class="parameter_name"><p>drawable</p></td>
383
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>. The created GC must always be used
384
+ with drawables of the same depth as this one.</p></td>
385
+ <td class="parameter_annotations"> </td>
386
+ </tr></tbody>
387
+ </table></div>
388
+ </div>
389
+ <div class="refsect3">
390
+ <a name="id-1.2.8.9.2.7"></a><h4>Returns</h4>
391
+ <p> the new graphics context.</p>
392
+ <p></p>
393
+ </div>
394
+ </div>
395
+ <hr>
396
+ <div class="refsect2">
397
+ <a name="gdk-gc-new-with-values"></a><h3>gdk_gc_new_with_values ()</h3>
398
+ <pre class="programlisting"><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> *
399
+ gdk_gc_new_with_values (<em class="parameter"><code><a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
400
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
401
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGCValuesMask" title="enum GdkGCValuesMask"><span class="type">GdkGCValuesMask</span></a> values_mask</code></em>);</pre>
402
+ <div class="warning">
403
+ <p><code class="literal">gdk_gc_new_with_values</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
404
+ <p>Use Cairo for rendering.</p>
405
+ </div>
406
+ <p>Create a new GC with the given initial values.</p>
407
+ <div class="refsect3">
408
+ <a name="id-1.2.8.9.3.6"></a><h4>Parameters</h4>
409
+ <div class="informaltable"><table width="100%" border="0">
410
+ <colgroup>
411
+ <col width="150px" class="parameters_name">
412
+ <col class="parameters_description">
413
+ <col width="200px" class="parameters_annotations">
414
+ </colgroup>
415
+ <tbody>
416
+ <tr>
417
+ <td class="parameter_name"><p>drawable</p></td>
418
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>. The created GC must always be used
419
+ with drawables of the same depth as this one.</p></td>
420
+ <td class="parameter_annotations"> </td>
421
+ </tr>
422
+ <tr>
423
+ <td class="parameter_name"><p>values</p></td>
424
+ <td class="parameter_description"><p>a structure containing initial values for the GC.</p></td>
425
+ <td class="parameter_annotations"> </td>
426
+ </tr>
427
+ <tr>
428
+ <td class="parameter_name"><p>values_mask</p></td>
429
+ <td class="parameter_description"><p>a bit mask indicating which fields in <em class="parameter"><code>values</code></em>
430
+ are set.</p></td>
431
+ <td class="parameter_annotations"> </td>
432
+ </tr>
433
+ </tbody>
434
+ </table></div>
435
+ </div>
436
+ <div class="refsect3">
437
+ <a name="id-1.2.8.9.3.7"></a><h4>Returns</h4>
438
+ <p> the new graphics context.</p>
439
+ <p></p>
440
+ </div>
441
+ </div>
442
+ <hr>
443
+ <div class="refsect2">
444
+ <a name="gdk-gc-get-screen"></a><h3>gdk_gc_get_screen ()</h3>
445
+ <pre class="programlisting"><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="returnvalue">GdkScreen</span></a> *
446
+ gdk_gc_get_screen (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);</pre>
447
+ <div class="warning"><p><code class="literal">gdk_gc_get_screen</code> is deprecated and should not be used in newly-written code.</p></div>
448
+ <p>Gets the <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> for which <em class="parameter"><code>gc</code></em>
449
+ was created</p>
450
+ <div class="refsect3">
451
+ <a name="id-1.2.8.9.4.7"></a><h4>Parameters</h4>
452
+ <div class="informaltable"><table width="100%" border="0">
453
+ <colgroup>
454
+ <col width="150px" class="parameters_name">
455
+ <col class="parameters_description">
456
+ <col width="200px" class="parameters_annotations">
457
+ </colgroup>
458
+ <tbody><tr>
459
+ <td class="parameter_name"><p>gc</p></td>
460
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
461
+ <td class="parameter_annotations"> </td>
462
+ </tr></tbody>
463
+ </table></div>
464
+ </div>
465
+ <div class="refsect3">
466
+ <a name="id-1.2.8.9.4.8"></a><h4>Returns</h4>
467
+ <p> the <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> for <em class="parameter"><code>gc</code></em>
468
+ .</p>
469
+ <p></p>
470
+ </div>
471
+ <p class="since">Since 2.2</p>
472
+ </div>
473
+ <hr>
474
+ <div class="refsect2">
475
+ <a name="gdk-gc-ref"></a><h3>gdk_gc_ref ()</h3>
476
+ <pre class="programlisting"><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> *
477
+ gdk_gc_ref (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);</pre>
478
+ <div class="warning">
479
+ <p><code class="literal">gdk_gc_ref</code> has been deprecated since version 2.0 and should not be used in newly-written code.</p>
480
+ <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>
481
+ </div>
482
+ <p>Deprecated function; 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>
483
+ <div class="refsect3">
484
+ <a name="id-1.2.8.9.5.6"></a><h4>Parameters</h4>
485
+ <div class="informaltable"><table width="100%" border="0">
486
+ <colgroup>
487
+ <col width="150px" class="parameters_name">
488
+ <col class="parameters_description">
489
+ <col width="200px" class="parameters_annotations">
490
+ </colgroup>
491
+ <tbody><tr>
492
+ <td class="parameter_name"><p>gc</p></td>
493
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a></p></td>
494
+ <td class="parameter_annotations"> </td>
495
+ </tr></tbody>
496
+ </table></div>
497
+ </div>
498
+ <div class="refsect3">
499
+ <a name="id-1.2.8.9.5.7"></a><h4>Returns</h4>
500
+ <p> the gc.</p>
501
+ <p></p>
502
+ </div>
503
+ </div>
504
+ <hr>
505
+ <div class="refsect2">
506
+ <a name="gdk-gc-unref"></a><h3>gdk_gc_unref ()</h3>
507
+ <pre class="programlisting"><span class="returnvalue">void</span>
508
+ gdk_gc_unref (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);</pre>
509
+ <div class="warning">
510
+ <p><code class="literal">gdk_gc_unref</code> has been deprecated since version 2.0 and should not be used in newly-written code.</p>
511
+ <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>
512
+ </div>
513
+ <p>Decrement the reference count of <em class="parameter"><code>gc</code></em>
514
+ .</p>
515
+ <div class="refsect3">
516
+ <a name="id-1.2.8.9.6.6"></a><h4>Parameters</h4>
517
+ <div class="informaltable"><table width="100%" border="0">
518
+ <colgroup>
519
+ <col width="150px" class="parameters_name">
520
+ <col class="parameters_description">
521
+ <col width="200px" class="parameters_annotations">
522
+ </colgroup>
523
+ <tbody><tr>
524
+ <td class="parameter_name"><p>gc</p></td>
525
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a></p></td>
526
+ <td class="parameter_annotations"> </td>
527
+ </tr></tbody>
528
+ </table></div>
529
+ </div>
530
+ </div>
531
+ <hr>
532
+ <div class="refsect2">
533
+ <a name="gdk-gc-set-values"></a><h3>gdk_gc_set_values ()</h3>
534
+ <pre class="programlisting"><span class="returnvalue">void</span>
535
+ gdk_gc_set_values (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
536
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
537
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGCValuesMask" title="enum GdkGCValuesMask"><span class="type">GdkGCValuesMask</span></a> values_mask</code></em>);</pre>
538
+ <div class="warning">
539
+ <p><code class="literal">gdk_gc_set_values</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
540
+ <p>Use Cairo for rendering.</p>
541
+ </div>
542
+ <p>Sets attributes of a graphics context in bulk. For each flag set in
543
+ <em class="parameter"><code>values_mask</code></em>
544
+ , the corresponding field will be read from <em class="parameter"><code>values</code></em>
545
+ and
546
+ set as the new value for <em class="parameter"><code>gc</code></em>
547
+ . If you're only setting a few values
548
+ on <em class="parameter"><code>gc</code></em>
549
+ , calling individual "setter" functions is likely more
550
+ convenient.</p>
551
+ <div class="refsect3">
552
+ <a name="id-1.2.8.9.7.6"></a><h4>Parameters</h4>
553
+ <div class="informaltable"><table width="100%" border="0">
554
+ <colgroup>
555
+ <col width="150px" class="parameters_name">
556
+ <col class="parameters_description">
557
+ <col width="200px" class="parameters_annotations">
558
+ </colgroup>
559
+ <tbody>
560
+ <tr>
561
+ <td class="parameter_name"><p>gc</p></td>
562
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a></p></td>
563
+ <td class="parameter_annotations"> </td>
564
+ </tr>
565
+ <tr>
566
+ <td class="parameter_name"><p>values</p></td>
567
+ <td class="parameter_description"><p>struct containing the new values</p></td>
568
+ <td class="parameter_annotations"> </td>
569
+ </tr>
570
+ <tr>
571
+ <td class="parameter_name"><p>values_mask</p></td>
572
+ <td class="parameter_description"><p>mask indicating which struct fields are to be used</p></td>
573
+ <td class="parameter_annotations"> </td>
574
+ </tr>
575
+ </tbody>
576
+ </table></div>
577
+ </div>
578
+ </div>
579
+ <hr>
580
+ <div class="refsect2">
581
+ <a name="gdk-gc-get-values"></a><h3>gdk_gc_get_values ()</h3>
582
+ <pre class="programlisting"><span class="returnvalue">void</span>
583
+ gdk_gc_get_values (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
584
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>);</pre>
585
+ <div class="warning">
586
+ <p><code class="literal">gdk_gc_get_values</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
587
+ <p>Use Cairo for rendering.</p>
588
+ </div>
589
+ <p>Retrieves the current values from a graphics context. Note that
590
+ only the pixel values of the <em class="parameter"><code>values-&gt;foreground</code></em>
591
+ and <em class="parameter"><code>values-&gt;background</code></em>
592
+
593
+ are filled, use <a class="link" href="gdk2-Colormaps-and-Colors.html#gdk-colormap-query-color" title="gdk_colormap_query_color ()"><code class="function">gdk_colormap_query_color()</code></a> to obtain the rgb values
594
+ if you need them.</p>
595
+ <div class="refsect3">
596
+ <a name="id-1.2.8.9.8.6"></a><h4>Parameters</h4>
597
+ <div class="informaltable"><table width="100%" border="0">
598
+ <colgroup>
599
+ <col width="150px" class="parameters_name">
600
+ <col class="parameters_description">
601
+ <col width="200px" class="parameters_annotations">
602
+ </colgroup>
603
+ <tbody>
604
+ <tr>
605
+ <td class="parameter_name"><p>gc</p></td>
606
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
607
+ <td class="parameter_annotations"> </td>
608
+ </tr>
609
+ <tr>
610
+ <td class="parameter_name"><p>values</p></td>
611
+ <td class="parameter_description"><p>the <a class="link" href="gdk2-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> structure in which to store the results.</p></td>
612
+ <td class="parameter_annotations"> </td>
613
+ </tr>
614
+ </tbody>
615
+ </table></div>
616
+ </div>
617
+ </div>
618
+ <hr>
619
+ <div class="refsect2">
620
+ <a name="gdk-gc-set-foreground"></a><h3>gdk_gc_set_foreground ()</h3>
621
+ <pre class="programlisting"><span class="returnvalue">void</span>
622
+ gdk_gc_set_foreground (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
623
+ <em class="parameter"><code>const <a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
624
+ <div class="warning">
625
+ <p><code class="literal">gdk_gc_set_foreground</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
626
+ <p>Use <a class="link" href="gdk2-Cairo-Interaction.html#gdk-cairo-set-source-color" title="gdk_cairo_set_source_color ()"><code class="function">gdk_cairo_set_source_color()</code></a> to use a <a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a>
627
+ as the source in Cairo.</p>
628
+ </div>
629
+ <p>Sets the foreground color for a graphics context.
630
+ Note that this function uses <em class="parameter"><code>color-&gt;pixel</code></em>
631
+ , use
632
+ <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-set-rgb-fg-color" title="gdk_gc_set_rgb_fg_color ()"><code class="function">gdk_gc_set_rgb_fg_color()</code></a> to specify the foreground
633
+ color as red, green, blue components.</p>
634
+ <div class="refsect3">
635
+ <a name="id-1.2.8.9.9.6"></a><h4>Parameters</h4>
636
+ <div class="informaltable"><table width="100%" border="0">
637
+ <colgroup>
638
+ <col width="150px" class="parameters_name">
639
+ <col class="parameters_description">
640
+ <col width="200px" class="parameters_annotations">
641
+ </colgroup>
642
+ <tbody>
643
+ <tr>
644
+ <td class="parameter_name"><p>gc</p></td>
645
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
646
+ <td class="parameter_annotations"> </td>
647
+ </tr>
648
+ <tr>
649
+ <td class="parameter_name"><p>color</p></td>
650
+ <td class="parameter_description"><p>the new foreground color.</p></td>
651
+ <td class="parameter_annotations"> </td>
652
+ </tr>
653
+ </tbody>
654
+ </table></div>
655
+ </div>
656
+ </div>
657
+ <hr>
658
+ <div class="refsect2">
659
+ <a name="gdk-gc-set-background"></a><h3>gdk_gc_set_background ()</h3>
660
+ <pre class="programlisting"><span class="returnvalue">void</span>
661
+ gdk_gc_set_background (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
662
+ <em class="parameter"><code>const <a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
663
+ <div class="warning">
664
+ <p><code class="literal">gdk_gc_set_background</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
665
+ <p>Use <a class="link" href="gdk2-Cairo-Interaction.html#gdk-cairo-set-source-color" title="gdk_cairo_set_source_color ()"><code class="function">gdk_cairo_set_source_color()</code></a> to use a <a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a>
666
+ as the source in Cairo. Note that if you want to draw a background and a
667
+ foreground in Cairo, you need to call drawing functions (like <code class="function">cairo_fill()</code>)
668
+ twice.</p>
669
+ </div>
670
+ <p>Sets the background color for a graphics context.
671
+ Note that this function uses <em class="parameter"><code>color-&gt;pixel</code></em>
672
+ , use
673
+ <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-set-rgb-bg-color" title="gdk_gc_set_rgb_bg_color ()"><code class="function">gdk_gc_set_rgb_bg_color()</code></a> to specify the background
674
+ color as red, green, blue components.</p>
675
+ <div class="refsect3">
676
+ <a name="id-1.2.8.9.10.6"></a><h4>Parameters</h4>
677
+ <div class="informaltable"><table width="100%" border="0">
678
+ <colgroup>
679
+ <col width="150px" class="parameters_name">
680
+ <col class="parameters_description">
681
+ <col width="200px" class="parameters_annotations">
682
+ </colgroup>
683
+ <tbody>
684
+ <tr>
685
+ <td class="parameter_name"><p>gc</p></td>
686
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
687
+ <td class="parameter_annotations"> </td>
688
+ </tr>
689
+ <tr>
690
+ <td class="parameter_name"><p>color</p></td>
691
+ <td class="parameter_description"><p>the new background color.</p></td>
692
+ <td class="parameter_annotations"> </td>
693
+ </tr>
694
+ </tbody>
695
+ </table></div>
696
+ </div>
697
+ </div>
698
+ <hr>
699
+ <div class="refsect2">
700
+ <a name="gdk-gc-set-rgb-fg-color"></a><h3>gdk_gc_set_rgb_fg_color ()</h3>
701
+ <pre class="programlisting"><span class="returnvalue">void</span>
702
+ gdk_gc_set_rgb_fg_color (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
703
+ <em class="parameter"><code>const <a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
704
+ <div class="warning">
705
+ <p><code class="literal">gdk_gc_set_rgb_fg_color</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
706
+ <p>Use <a class="link" href="gdk2-Cairo-Interaction.html#gdk-cairo-set-source-color" title="gdk_cairo_set_source_color ()"><code class="function">gdk_cairo_set_source_color()</code></a> instead.</p>
707
+ </div>
708
+ <p>Set the foreground color of a GC using an unallocated color. The
709
+ pixel value for the color will be determined using GdkRGB. If the
710
+ colormap for the GC has not previously been initialized for GdkRGB,
711
+ then for pseudo-color colormaps (colormaps with a small modifiable
712
+ number of colors), a colorcube will be allocated in the colormap.</p>
713
+ <p>Calling this function for a GC without a colormap is an error.</p>
714
+ <div class="refsect3">
715
+ <a name="id-1.2.8.9.11.7"></a><h4>Parameters</h4>
716
+ <div class="informaltable"><table width="100%" border="0">
717
+ <colgroup>
718
+ <col width="150px" class="parameters_name">
719
+ <col class="parameters_description">
720
+ <col width="200px" class="parameters_annotations">
721
+ </colgroup>
722
+ <tbody>
723
+ <tr>
724
+ <td class="parameter_name"><p>gc</p></td>
725
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a></p></td>
726
+ <td class="parameter_annotations"> </td>
727
+ </tr>
728
+ <tr>
729
+ <td class="parameter_name"><p>color</p></td>
730
+ <td class="parameter_description"><p>an unallocated <a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a>.</p></td>
731
+ <td class="parameter_annotations"> </td>
732
+ </tr>
733
+ </tbody>
734
+ </table></div>
735
+ </div>
736
+ </div>
737
+ <hr>
738
+ <div class="refsect2">
739
+ <a name="gdk-gc-set-rgb-bg-color"></a><h3>gdk_gc_set_rgb_bg_color ()</h3>
740
+ <pre class="programlisting"><span class="returnvalue">void</span>
741
+ gdk_gc_set_rgb_bg_color (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
742
+ <em class="parameter"><code>const <a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
743
+ <div class="warning">
744
+ <p><code class="literal">gdk_gc_set_rgb_bg_color</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
745
+ <p>Use <a class="link" href="gdk2-Cairo-Interaction.html#gdk-cairo-set-source-color" title="gdk_cairo_set_source_color ()"><code class="function">gdk_cairo_set_source_color()</code></a> instead.</p>
746
+ </div>
747
+ <p>Set the background color of a GC using an unallocated color. The
748
+ pixel value for the color will be determined using GdkRGB. If the
749
+ colormap for the GC has not previously been initialized for GdkRGB,
750
+ then for pseudo-color colormaps (colormaps with a small modifiable
751
+ number of colors), a colorcube will be allocated in the colormap.</p>
752
+ <p>Calling this function for a GC without a colormap is an error.</p>
753
+ <div class="refsect3">
754
+ <a name="id-1.2.8.9.12.7"></a><h4>Parameters</h4>
755
+ <div class="informaltable"><table width="100%" border="0">
756
+ <colgroup>
757
+ <col width="150px" class="parameters_name">
758
+ <col class="parameters_description">
759
+ <col width="200px" class="parameters_annotations">
760
+ </colgroup>
761
+ <tbody>
762
+ <tr>
763
+ <td class="parameter_name"><p>gc</p></td>
764
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a></p></td>
765
+ <td class="parameter_annotations"> </td>
766
+ </tr>
767
+ <tr>
768
+ <td class="parameter_name"><p>color</p></td>
769
+ <td class="parameter_description"><p>an unallocated <a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a>.</p></td>
770
+ <td class="parameter_annotations"> </td>
771
+ </tr>
772
+ </tbody>
773
+ </table></div>
774
+ </div>
775
+ </div>
776
+ <hr>
777
+ <div class="refsect2">
778
+ <a name="gdk-gc-set-font"></a><h3>gdk_gc_set_font ()</h3>
779
+ <pre class="programlisting"><span class="returnvalue">void</span>
780
+ gdk_gc_set_font (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
781
+ <em class="parameter"><code><a class="link" href="gdk2-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> *font</code></em>);</pre>
782
+ <div class="warning"><p><code class="literal">gdk_gc_set_font</code> is deprecated and should not be used in newly-written code.</p></div>
783
+ <p>Sets the font for a graphics context. (Note that
784
+ all text-drawing functions in GDK take a <em class="parameter"><code>font</code></em>
785
+
786
+ argument; the value set here is used when that
787
+ argument 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>
788
+ <div class="refsect3">
789
+ <a name="id-1.2.8.9.13.6"></a><h4>Parameters</h4>
790
+ <div class="informaltable"><table width="100%" border="0">
791
+ <colgroup>
792
+ <col width="150px" class="parameters_name">
793
+ <col class="parameters_description">
794
+ <col width="200px" class="parameters_annotations">
795
+ </colgroup>
796
+ <tbody>
797
+ <tr>
798
+ <td class="parameter_name"><p>gc</p></td>
799
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
800
+ <td class="parameter_annotations"> </td>
801
+ </tr>
802
+ <tr>
803
+ <td class="parameter_name"><p>font</p></td>
804
+ <td class="parameter_description"><p>the new font. </p></td>
805
+ <td class="parameter_annotations"> </td>
806
+ </tr>
807
+ </tbody>
808
+ </table></div>
809
+ </div>
810
+ </div>
811
+ <hr>
812
+ <div class="refsect2">
813
+ <a name="gdk-gc-set-function"></a><h3>gdk_gc_set_function ()</h3>
814
+ <pre class="programlisting"><span class="returnvalue">void</span>
815
+ gdk_gc_set_function (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
816
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction"><span class="type">GdkFunction</span></a> function</code></em>);</pre>
817
+ <div class="warning">
818
+ <p><code class="literal">gdk_gc_set_function</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
819
+ <p>Use <code class="function">cairo_set_operator()</code> with Cairo.</p>
820
+ </div>
821
+ <p>Determines how the current pixel values and the
822
+ pixel values being drawn are combined to produce
823
+ the final pixel values.</p>
824
+ <div class="refsect3">
825
+ <a name="id-1.2.8.9.14.6"></a><h4>Parameters</h4>
826
+ <div class="informaltable"><table width="100%" border="0">
827
+ <colgroup>
828
+ <col width="150px" class="parameters_name">
829
+ <col class="parameters_description">
830
+ <col width="200px" class="parameters_annotations">
831
+ </colgroup>
832
+ <tbody>
833
+ <tr>
834
+ <td class="parameter_name"><p>gc</p></td>
835
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
836
+ <td class="parameter_annotations"> </td>
837
+ </tr>
838
+ <tr>
839
+ <td class="parameter_name"><p>function</p></td>
840
+ <td class="parameter_description"><p>the <a class="link" href="gdk2-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction"><span class="type">GdkFunction</span></a> to use</p></td>
841
+ <td class="parameter_annotations"> </td>
842
+ </tr>
843
+ </tbody>
844
+ </table></div>
845
+ </div>
846
+ </div>
847
+ <hr>
848
+ <div class="refsect2">
849
+ <a name="gdk-gc-set-fill"></a><h3>gdk_gc_set_fill ()</h3>
850
+ <pre class="programlisting"><span class="returnvalue">void</span>
851
+ gdk_gc_set_fill (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
852
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkFill" title="enum GdkFill"><span class="type">GdkFill</span></a> fill</code></em>);</pre>
853
+ <div class="warning">
854
+ <p><code class="literal">gdk_gc_set_fill</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
855
+ <p>You can achieve tiling in Cairo by using
856
+ <code class="function">cairo_pattern_set_extend()</code> on the source. For stippling, see the
857
+ deprecation comments on <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-set-stipple" title="gdk_gc_set_stipple ()"><code class="function">gdk_gc_set_stipple()</code></a>.</p>
858
+ </div>
859
+ <p>Set the fill mode for a graphics context.</p>
860
+ <div class="refsect3">
861
+ <a name="id-1.2.8.9.15.6"></a><h4>Parameters</h4>
862
+ <div class="informaltable"><table width="100%" border="0">
863
+ <colgroup>
864
+ <col width="150px" class="parameters_name">
865
+ <col class="parameters_description">
866
+ <col width="200px" class="parameters_annotations">
867
+ </colgroup>
868
+ <tbody>
869
+ <tr>
870
+ <td class="parameter_name"><p>gc</p></td>
871
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
872
+ <td class="parameter_annotations"> </td>
873
+ </tr>
874
+ <tr>
875
+ <td class="parameter_name"><p>fill</p></td>
876
+ <td class="parameter_description"><p>the new fill mode.</p></td>
877
+ <td class="parameter_annotations"> </td>
878
+ </tr>
879
+ </tbody>
880
+ </table></div>
881
+ </div>
882
+ </div>
883
+ <hr>
884
+ <div class="refsect2">
885
+ <a name="gdk-gc-set-tile"></a><h3>gdk_gc_set_tile ()</h3>
886
+ <pre class="programlisting"><span class="returnvalue">void</span>
887
+ gdk_gc_set_tile (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
888
+ <em class="parameter"><code><a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *tile</code></em>);</pre>
889
+ <div class="warning">
890
+ <p><code class="literal">gdk_gc_set_tile</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
891
+ <p>The following code snippet sets a tiling <a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>
892
+ as the source in Cairo:</p>
893
+ <div class="informalexample">
894
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
895
+ <tbody>
896
+ <tr>
897
+ <td class="listing_lines" align="right"><pre>1</pre></td>
898
+ <td class="listing_code"><pre class="programlisting"><span class="function">cairo_pattern_set_extend</span><span class="normal"> </span><span class="symbol">(</span><span class="function">cairo_get_source</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">cr</span><span class="symbol">),</span><span class="normal"> CAIRO_EXTEND_REPEAT</span><span class="symbol">);]|</span></pre></td>
899
+ </tr>
900
+ </tbody>
901
+ </table>
902
+ </div>
903
+
904
+ </div>
905
+ <p>Set a tile pixmap for a graphics context.
906
+ This will only be used if the fill mode
907
+ is <a class="link" href="gdk2-Graphics-Contexts.html#GDK-TILED:CAPS"><code class="literal">GDK_TILED</code></a>.</p>
908
+ <div class="refsect3">
909
+ <a name="id-1.2.8.9.16.6"></a><h4>Parameters</h4>
910
+ <div class="informaltable"><table width="100%" border="0">
911
+ <colgroup>
912
+ <col width="150px" class="parameters_name">
913
+ <col class="parameters_description">
914
+ <col width="200px" class="parameters_annotations">
915
+ </colgroup>
916
+ <tbody>
917
+ <tr>
918
+ <td class="parameter_name"><p>gc</p></td>
919
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
920
+ <td class="parameter_annotations"> </td>
921
+ </tr>
922
+ <tr>
923
+ <td class="parameter_name"><p>tile</p></td>
924
+ <td class="parameter_description"><p>the new tile pixmap.</p></td>
925
+ <td class="parameter_annotations"> </td>
926
+ </tr>
927
+ </tbody>
928
+ </table></div>
929
+ </div>
930
+ </div>
931
+ <hr>
932
+ <div class="refsect2">
933
+ <a name="gdk-gc-set-stipple"></a><h3>gdk_gc_set_stipple ()</h3>
934
+ <pre class="programlisting"><span class="returnvalue">void</span>
935
+ gdk_gc_set_stipple (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
936
+ <em class="parameter"><code><a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *stipple</code></em>);</pre>
937
+ <div class="warning">
938
+ <p><code class="literal">gdk_gc_set_stipple</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
939
+ <p>Stippling has no direct replacement in Cairo. If you
940
+ want to achieve an identical look, you can use the stipple bitmap as a
941
+ mask. Most likely, this involves rendering the source to an intermediate
942
+ surface using <code class="function">cairo_push_group()</code> first, so that you can then use
943
+ <code class="function">cairo_mask()</code> to achieve the stippled look.</p>
944
+ </div>
945
+ <p>Set the stipple bitmap for a graphics context. The
946
+ stipple will only be used if the fill mode is
947
+ <a class="link" href="gdk2-Graphics-Contexts.html#GDK-STIPPLED:CAPS"><code class="literal">GDK_STIPPLED</code></a> or <a class="link" href="gdk2-Graphics-Contexts.html#GDK-OPAQUE-STIPPLED:CAPS"><code class="literal">GDK_OPAQUE_STIPPLED</code></a>.</p>
948
+ <div class="refsect3">
949
+ <a name="id-1.2.8.9.17.6"></a><h4>Parameters</h4>
950
+ <div class="informaltable"><table width="100%" border="0">
951
+ <colgroup>
952
+ <col width="150px" class="parameters_name">
953
+ <col class="parameters_description">
954
+ <col width="200px" class="parameters_annotations">
955
+ </colgroup>
956
+ <tbody>
957
+ <tr>
958
+ <td class="parameter_name"><p>gc</p></td>
959
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
960
+ <td class="parameter_annotations"> </td>
961
+ </tr>
962
+ <tr>
963
+ <td class="parameter_name"><p>stipple</p></td>
964
+ <td class="parameter_description"><p>the new stipple bitmap.</p></td>
965
+ <td class="parameter_annotations"> </td>
966
+ </tr>
967
+ </tbody>
968
+ </table></div>
969
+ </div>
970
+ </div>
971
+ <hr>
972
+ <div class="refsect2">
973
+ <a name="gdk-gc-set-ts-origin"></a><h3>gdk_gc_set_ts_origin ()</h3>
974
+ <pre class="programlisting"><span class="returnvalue">void</span>
975
+ gdk_gc_set_ts_origin (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
976
+ <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>,
977
+ <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>
978
+ <div class="warning">
979
+ <p><code class="literal">gdk_gc_set_ts_origin</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
980
+ <p>You can set the origin for tiles and stipples in Cairo
981
+ by changing the source's matrix using <code class="function">cairo_pattern_set_matrix()</code>. Or you
982
+ can specify it with <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> as shown in the example
983
+ for <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-set-tile" title="gdk_gc_set_tile ()"><code class="function">gdk_gc_set_tile()</code></a>.</p>
984
+ </div>
985
+ <p>Set the origin when using tiles or stipples with
986
+ the GC. The tile or stipple will be aligned such
987
+ that the upper left corner of the tile or stipple
988
+ will coincide with this point.</p>
989
+ <div class="refsect3">
990
+ <a name="id-1.2.8.9.18.6"></a><h4>Parameters</h4>
991
+ <div class="informaltable"><table width="100%" border="0">
992
+ <colgroup>
993
+ <col width="150px" class="parameters_name">
994
+ <col class="parameters_description">
995
+ <col width="200px" class="parameters_annotations">
996
+ </colgroup>
997
+ <tbody>
998
+ <tr>
999
+ <td class="parameter_name"><p>gc</p></td>
1000
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
1001
+ <td class="parameter_annotations"> </td>
1002
+ </tr>
1003
+ <tr>
1004
+ <td class="parameter_name"><p>x</p></td>
1005
+ <td class="parameter_description"><p>the x-coordinate of the origin.</p></td>
1006
+ <td class="parameter_annotations"> </td>
1007
+ </tr>
1008
+ <tr>
1009
+ <td class="parameter_name"><p>y</p></td>
1010
+ <td class="parameter_description"><p>the y-coordinate of the origin.</p></td>
1011
+ <td class="parameter_annotations"> </td>
1012
+ </tr>
1013
+ </tbody>
1014
+ </table></div>
1015
+ </div>
1016
+ </div>
1017
+ <hr>
1018
+ <div class="refsect2">
1019
+ <a name="gdk-gc-set-clip-origin"></a><h3>gdk_gc_set_clip_origin ()</h3>
1020
+ <pre class="programlisting"><span class="returnvalue">void</span>
1021
+ gdk_gc_set_clip_origin (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1022
+ <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>,
1023
+ <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>
1024
+ <div class="warning">
1025
+ <p><code class="literal">gdk_gc_set_clip_origin</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1026
+ <p>Use <code class="function">cairo_translate()</code> before applying the clip path in
1027
+ Cairo.</p>
1028
+ </div>
1029
+ <p>Sets the origin of the clip mask. The coordinates are
1030
+ interpreted relative to the upper-left corner of
1031
+ the destination drawable of the current operation.</p>
1032
+ <div class="refsect3">
1033
+ <a name="id-1.2.8.9.19.6"></a><h4>Parameters</h4>
1034
+ <div class="informaltable"><table width="100%" border="0">
1035
+ <colgroup>
1036
+ <col width="150px" class="parameters_name">
1037
+ <col class="parameters_description">
1038
+ <col width="200px" class="parameters_annotations">
1039
+ </colgroup>
1040
+ <tbody>
1041
+ <tr>
1042
+ <td class="parameter_name"><p>gc</p></td>
1043
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
1044
+ <td class="parameter_annotations"> </td>
1045
+ </tr>
1046
+ <tr>
1047
+ <td class="parameter_name"><p>x</p></td>
1048
+ <td class="parameter_description"><p>the x-coordinate of the origin.</p></td>
1049
+ <td class="parameter_annotations"> </td>
1050
+ </tr>
1051
+ <tr>
1052
+ <td class="parameter_name"><p>y</p></td>
1053
+ <td class="parameter_description"><p>the y-coordinate of the origin.</p></td>
1054
+ <td class="parameter_annotations"> </td>
1055
+ </tr>
1056
+ </tbody>
1057
+ </table></div>
1058
+ </div>
1059
+ </div>
1060
+ <hr>
1061
+ <div class="refsect2">
1062
+ <a name="gdk-gc-set-clip-mask"></a><h3>gdk_gc_set_clip_mask ()</h3>
1063
+ <pre class="programlisting"><span class="returnvalue">void</span>
1064
+ gdk_gc_set_clip_mask (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1065
+ <em class="parameter"><code><a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkBitmap" title="GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);</pre>
1066
+ <div class="warning">
1067
+ <p><code class="literal">gdk_gc_set_clip_mask</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1068
+ <p>Use <code class="function">cairo_mask()</code> instead.</p>
1069
+ </div>
1070
+ <p>Sets the clip mask for a graphics context from a bitmap.
1071
+ The clip mask is interpreted relative to the clip
1072
+ origin. (See <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-set-clip-origin" title="gdk_gc_set_clip_origin ()"><code class="function">gdk_gc_set_clip_origin()</code></a>).</p>
1073
+ <div class="refsect3">
1074
+ <a name="id-1.2.8.9.20.6"></a><h4>Parameters</h4>
1075
+ <div class="informaltable"><table width="100%" border="0">
1076
+ <colgroup>
1077
+ <col width="150px" class="parameters_name">
1078
+ <col class="parameters_description">
1079
+ <col width="200px" class="parameters_annotations">
1080
+ </colgroup>
1081
+ <tbody>
1082
+ <tr>
1083
+ <td class="parameter_name"><p>gc</p></td>
1084
+ <td class="parameter_description"><p>the <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
1085
+ <td class="parameter_annotations"> </td>
1086
+ </tr>
1087
+ <tr>
1088
+ <td class="parameter_name"><p>mask</p></td>
1089
+ <td class="parameter_description"><p>a bitmap.</p></td>
1090
+ <td class="parameter_annotations"> </td>
1091
+ </tr>
1092
+ </tbody>
1093
+ </table></div>
1094
+ </div>
1095
+ </div>
1096
+ <hr>
1097
+ <div class="refsect2">
1098
+ <a name="gdk-gc-set-clip-rectangle"></a><h3>gdk_gc_set_clip_rectangle ()</h3>
1099
+ <pre class="programlisting"><span class="returnvalue">void</span>
1100
+ gdk_gc_set_clip_rectangle (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1101
+ <em class="parameter"><code>const <a class="link" href="gdk2-Points-Rectangles-and-Regions.html#GdkRectangle" title="struct GdkRectangle"><span class="type">GdkRectangle</span></a> *rectangle</code></em>);</pre>
1102
+ <div class="warning">
1103
+ <p><code class="literal">gdk_gc_set_clip_rectangle</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1104
+ <p>Use <code class="function">cairo_rectangle()</code> and <code class="function">cairo_clip()</code> in Cairo.</p>
1105
+ </div>
1106
+ <p>Sets the clip mask for a graphics context from a
1107
+ rectangle. The clip mask is interpreted relative to the clip
1108
+ origin. (See <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-set-clip-origin" title="gdk_gc_set_clip_origin ()"><code class="function">gdk_gc_set_clip_origin()</code></a>).</p>
1109
+ <div class="refsect3">
1110
+ <a name="id-1.2.8.9.21.6"></a><h4>Parameters</h4>
1111
+ <div class="informaltable"><table width="100%" border="0">
1112
+ <colgroup>
1113
+ <col width="150px" class="parameters_name">
1114
+ <col class="parameters_description">
1115
+ <col width="200px" class="parameters_annotations">
1116
+ </colgroup>
1117
+ <tbody>
1118
+ <tr>
1119
+ <td class="parameter_name"><p>gc</p></td>
1120
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
1121
+ <td class="parameter_annotations"> </td>
1122
+ </tr>
1123
+ <tr>
1124
+ <td class="parameter_name"><p>rectangle</p></td>
1125
+ <td class="parameter_description"><p>the rectangle to clip to.</p></td>
1126
+ <td class="parameter_annotations"> </td>
1127
+ </tr>
1128
+ </tbody>
1129
+ </table></div>
1130
+ </div>
1131
+ </div>
1132
+ <hr>
1133
+ <div class="refsect2">
1134
+ <a name="gdk-gc-set-clip-region"></a><h3>gdk_gc_set_clip_region ()</h3>
1135
+ <pre class="programlisting"><span class="returnvalue">void</span>
1136
+ gdk_gc_set_clip_region (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1137
+ <em class="parameter"><code>const <a class="link" href="gdk2-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="type">GdkRegion</span></a> *region</code></em>);</pre>
1138
+ <div class="warning">
1139
+ <p><code class="literal">gdk_gc_set_clip_region</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1140
+ <p>Use <a class="link" href="gdk2-Cairo-Interaction.html#gdk-cairo-region" title="gdk_cairo_region ()"><code class="function">gdk_cairo_region()</code></a> and <code class="function">cairo_clip()</code> in Cairo.</p>
1141
+ </div>
1142
+ <p>Sets the clip mask for a graphics context from a region structure.
1143
+ The clip mask is interpreted relative to the clip origin. (See
1144
+ <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-set-clip-origin" title="gdk_gc_set_clip_origin ()"><code class="function">gdk_gc_set_clip_origin()</code></a>).</p>
1145
+ <div class="refsect3">
1146
+ <a name="id-1.2.8.9.22.6"></a><h4>Parameters</h4>
1147
+ <div class="informaltable"><table width="100%" border="0">
1148
+ <colgroup>
1149
+ <col width="150px" class="parameters_name">
1150
+ <col class="parameters_description">
1151
+ <col width="200px" class="parameters_annotations">
1152
+ </colgroup>
1153
+ <tbody>
1154
+ <tr>
1155
+ <td class="parameter_name"><p>gc</p></td>
1156
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
1157
+ <td class="parameter_annotations"> </td>
1158
+ </tr>
1159
+ <tr>
1160
+ <td class="parameter_name"><p>region</p></td>
1161
+ <td class="parameter_description"><p>the <a class="link" href="gdk2-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="type">GdkRegion</span></a>. </p></td>
1162
+ <td class="parameter_annotations"> </td>
1163
+ </tr>
1164
+ </tbody>
1165
+ </table></div>
1166
+ </div>
1167
+ </div>
1168
+ <hr>
1169
+ <div class="refsect2">
1170
+ <a name="gdk-gc-set-subwindow"></a><h3>gdk_gc_set_subwindow ()</h3>
1171
+ <pre class="programlisting"><span class="returnvalue">void</span>
1172
+ gdk_gc_set_subwindow (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1173
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkSubwindowMode" title="enum GdkSubwindowMode"><span class="type">GdkSubwindowMode</span></a> mode</code></em>);</pre>
1174
+ <div class="warning">
1175
+ <p><code class="literal">gdk_gc_set_subwindow</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1176
+ <p>There is no replacement. If you need to control
1177
+ subwindows, you must use drawing operations of the underlying window
1178
+ system manually. Cairo will always use <a class="link" href="gdk2-Graphics-Contexts.html#GDK-INCLUDE-INFERIORS:CAPS"><code class="literal">GDK_INCLUDE_INFERIORS</code></a> on sources
1179
+ and masks and <a class="link" href="gdk2-Graphics-Contexts.html#GDK-CLIP-BY-CHILDREN:CAPS"><code class="literal">GDK_CLIP_BY_CHILDREN</code></a> on targets.</p>
1180
+ </div>
1181
+ <p>Sets how drawing with this GC on a window will affect child
1182
+ windows of that window.</p>
1183
+ <div class="refsect3">
1184
+ <a name="id-1.2.8.9.23.6"></a><h4>Parameters</h4>
1185
+ <div class="informaltable"><table width="100%" border="0">
1186
+ <colgroup>
1187
+ <col width="150px" class="parameters_name">
1188
+ <col class="parameters_description">
1189
+ <col width="200px" class="parameters_annotations">
1190
+ </colgroup>
1191
+ <tbody>
1192
+ <tr>
1193
+ <td class="parameter_name"><p>gc</p></td>
1194
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
1195
+ <td class="parameter_annotations"> </td>
1196
+ </tr>
1197
+ <tr>
1198
+ <td class="parameter_name"><p>mode</p></td>
1199
+ <td class="parameter_description"><p>the subwindow mode.</p></td>
1200
+ <td class="parameter_annotations"> </td>
1201
+ </tr>
1202
+ </tbody>
1203
+ </table></div>
1204
+ </div>
1205
+ </div>
1206
+ <hr>
1207
+ <div class="refsect2">
1208
+ <a name="gdk-gc-set-exposures"></a><h3>gdk_gc_set_exposures ()</h3>
1209
+ <pre class="programlisting"><span class="returnvalue">void</span>
1210
+ gdk_gc_set_exposures (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1211
+ <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> exposures</code></em>);</pre>
1212
+ <div class="warning">
1213
+ <p><code class="literal">gdk_gc_set_exposures</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1214
+ <p>There is no replacement. If you need to control
1215
+ exposures, you must use drawing operations of the underlying window
1216
+ system or use <a class="link" href="gdk2-Windows.html#gdk-window-invalidate-rect" title="gdk_window_invalidate_rect ()"><code class="function">gdk_window_invalidate_rect()</code></a>. Cairo will never
1217
+ generate exposures.</p>
1218
+ </div>
1219
+ <p>Sets whether copying non-visible portions of a drawable
1220
+ using this graphics context generate exposure events
1221
+ for the corresponding regions of the destination
1222
+ drawable. (See <a class="link" href="gdk2-Drawing-Primitives.html#gdk-draw-drawable" title="gdk_draw_drawable ()"><code class="function">gdk_draw_drawable()</code></a>).</p>
1223
+ <div class="refsect3">
1224
+ <a name="id-1.2.8.9.24.6"></a><h4>Parameters</h4>
1225
+ <div class="informaltable"><table width="100%" border="0">
1226
+ <colgroup>
1227
+ <col width="150px" class="parameters_name">
1228
+ <col class="parameters_description">
1229
+ <col width="200px" class="parameters_annotations">
1230
+ </colgroup>
1231
+ <tbody>
1232
+ <tr>
1233
+ <td class="parameter_name"><p>gc</p></td>
1234
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
1235
+ <td class="parameter_annotations"> </td>
1236
+ </tr>
1237
+ <tr>
1238
+ <td class="parameter_name"><p>exposures</p></td>
1239
+ <td class="parameter_description"><p>if <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>, exposure events will be generated.</p></td>
1240
+ <td class="parameter_annotations"> </td>
1241
+ </tr>
1242
+ </tbody>
1243
+ </table></div>
1244
+ </div>
1245
+ </div>
1246
+ <hr>
1247
+ <div class="refsect2">
1248
+ <a name="gdk-gc-set-line-attributes"></a><h3>gdk_gc_set_line_attributes ()</h3>
1249
+ <pre class="programlisting"><span class="returnvalue">void</span>
1250
+ gdk_gc_set_line_attributes (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</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> line_width</code></em>,
1252
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkLineStyle" title="enum GdkLineStyle"><span class="type">GdkLineStyle</span></a> line_style</code></em>,
1253
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkCapStyle" title="enum GdkCapStyle"><span class="type">GdkCapStyle</span></a> cap_style</code></em>,
1254
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkJoinStyle" title="enum GdkJoinStyle"><span class="type">GdkJoinStyle</span></a> join_style</code></em>);</pre>
1255
+ <div class="warning">
1256
+ <p><code class="literal">gdk_gc_set_line_attributes</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1257
+ <p>Use the Cairo functions <code class="function">cairo_set_line_width()</code>,
1258
+ <code class="function">cairo_set_line_join()</code>, <code class="function">cairo_set_line_cap()</code> and <code class="function">cairo_set_dash()</code>
1259
+ to affect the stroking behavior in Cairo. Keep in mind that the default
1260
+ attributes of a <span class="type">cairo_t</span> are different from the default attributes of
1261
+ a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p>
1262
+ </div>
1263
+ <p>Sets various attributes of how lines are drawn. See
1264
+ the corresponding members of <a class="link" href="gdk2-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> for full
1265
+ explanations of the arguments.</p>
1266
+ <div class="refsect3">
1267
+ <a name="id-1.2.8.9.25.6"></a><h4>Parameters</h4>
1268
+ <div class="informaltable"><table width="100%" border="0">
1269
+ <colgroup>
1270
+ <col width="150px" class="parameters_name">
1271
+ <col class="parameters_description">
1272
+ <col width="200px" class="parameters_annotations">
1273
+ </colgroup>
1274
+ <tbody>
1275
+ <tr>
1276
+ <td class="parameter_name"><p>gc</p></td>
1277
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
1278
+ <td class="parameter_annotations"> </td>
1279
+ </tr>
1280
+ <tr>
1281
+ <td class="parameter_name"><p>line_width</p></td>
1282
+ <td class="parameter_description"><p>the width of lines.</p></td>
1283
+ <td class="parameter_annotations"> </td>
1284
+ </tr>
1285
+ <tr>
1286
+ <td class="parameter_name"><p>line_style</p></td>
1287
+ <td class="parameter_description"><p>the dash-style for lines.</p></td>
1288
+ <td class="parameter_annotations"> </td>
1289
+ </tr>
1290
+ <tr>
1291
+ <td class="parameter_name"><p>cap_style</p></td>
1292
+ <td class="parameter_description"><p>the manner in which the ends of lines are drawn.</p></td>
1293
+ <td class="parameter_annotations"> </td>
1294
+ </tr>
1295
+ <tr>
1296
+ <td class="parameter_name"><p>join_style</p></td>
1297
+ <td class="parameter_description"><p>the in which lines are joined together.</p></td>
1298
+ <td class="parameter_annotations"> </td>
1299
+ </tr>
1300
+ </tbody>
1301
+ </table></div>
1302
+ </div>
1303
+ </div>
1304
+ <hr>
1305
+ <div class="refsect2">
1306
+ <a name="gdk-gc-set-dashes"></a><h3>gdk_gc_set_dashes ()</h3>
1307
+ <pre class="programlisting"><span class="returnvalue">void</span>
1308
+ gdk_gc_set_dashes (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1309
+ <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> dash_offset</code></em>,
1310
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> dash_list[]</code></em>,
1311
+ <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</code></em>);</pre>
1312
+ <div class="warning">
1313
+ <p><code class="literal">gdk_gc_set_dashes</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1314
+ <p>Use <code class="function">cairo_set_dash()</code> to set the dash in Cairo.</p>
1315
+ </div>
1316
+ <p>Sets the way dashed-lines are drawn. Lines will be
1317
+ drawn with alternating on and off segments of the
1318
+ lengths specified in <em class="parameter"><code>dash_list</code></em>
1319
+ . The manner in
1320
+ which the on and off segments are drawn is determined
1321
+ by the <em class="parameter"><code>line_style</code></em>
1322
+ value of the GC. (This can
1323
+ be changed with <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>
1324
+ <p>The <em class="parameter"><code>dash_offset</code></em>
1325
+ defines the phase of the pattern,
1326
+ specifying how many pixels into the dash-list the pattern
1327
+ should actually begin.</p>
1328
+ <div class="refsect3">
1329
+ <a name="id-1.2.8.9.26.7"></a><h4>Parameters</h4>
1330
+ <div class="informaltable"><table width="100%" border="0">
1331
+ <colgroup>
1332
+ <col width="150px" class="parameters_name">
1333
+ <col class="parameters_description">
1334
+ <col width="200px" class="parameters_annotations">
1335
+ </colgroup>
1336
+ <tbody>
1337
+ <tr>
1338
+ <td class="parameter_name"><p>gc</p></td>
1339
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p></td>
1340
+ <td class="parameter_annotations"> </td>
1341
+ </tr>
1342
+ <tr>
1343
+ <td class="parameter_name"><p>dash_offset</p></td>
1344
+ <td class="parameter_description"><p>the phase of the dash pattern.</p></td>
1345
+ <td class="parameter_annotations"> </td>
1346
+ </tr>
1347
+ <tr>
1348
+ <td class="parameter_name"><p>dash_list</p></td>
1349
+ <td class="parameter_description"><p>an array of dash lengths.</p></td>
1350
+ <td class="parameter_annotations"> </td>
1351
+ </tr>
1352
+ <tr>
1353
+ <td class="parameter_name"><p>n</p></td>
1354
+ <td class="parameter_description"><p>the number of elements in <em class="parameter"><code>dash_list</code></em>
1355
+ .</p></td>
1356
+ <td class="parameter_annotations"> </td>
1357
+ </tr>
1358
+ </tbody>
1359
+ </table></div>
1360
+ </div>
1361
+ </div>
1362
+ <hr>
1363
+ <div class="refsect2">
1364
+ <a name="gdk-gc-copy"></a><h3>gdk_gc_copy ()</h3>
1365
+ <pre class="programlisting"><span class="returnvalue">void</span>
1366
+ gdk_gc_copy (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *dst_gc</code></em>,
1367
+ <em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *src_gc</code></em>);</pre>
1368
+ <div class="warning">
1369
+ <p><code class="literal">gdk_gc_copy</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1370
+ <p>Use Cairo for drawing. <code class="function">cairo_save()</code> and <code class="function">cairo_restore()</code>
1371
+ can be helpful in cases where you'd have copied a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p>
1372
+ </div>
1373
+ <p>Copy the set of values from one graphics context
1374
+ onto another graphics context.</p>
1375
+ <div class="refsect3">
1376
+ <a name="id-1.2.8.9.27.6"></a><h4>Parameters</h4>
1377
+ <div class="informaltable"><table width="100%" border="0">
1378
+ <colgroup>
1379
+ <col width="150px" class="parameters_name">
1380
+ <col class="parameters_description">
1381
+ <col width="200px" class="parameters_annotations">
1382
+ </colgroup>
1383
+ <tbody>
1384
+ <tr>
1385
+ <td class="parameter_name"><p>dst_gc</p></td>
1386
+ <td class="parameter_description"><p>the destination graphics context.</p></td>
1387
+ <td class="parameter_annotations"> </td>
1388
+ </tr>
1389
+ <tr>
1390
+ <td class="parameter_name"><p>src_gc</p></td>
1391
+ <td class="parameter_description"><p>the source graphics context.</p></td>
1392
+ <td class="parameter_annotations"> </td>
1393
+ </tr>
1394
+ </tbody>
1395
+ </table></div>
1396
+ </div>
1397
+ </div>
1398
+ <hr>
1399
+ <div class="refsect2">
1400
+ <a name="gdk-gc-set-colormap"></a><h3>gdk_gc_set_colormap ()</h3>
1401
+ <pre class="programlisting"><span class="returnvalue">void</span>
1402
+ gdk_gc_set_colormap (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1403
+ <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>
1404
+ <div class="warning">
1405
+ <p><code class="literal">gdk_gc_set_colormap</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1406
+ <p>There is no replacement. Cairo handles colormaps
1407
+ automatically, so there is no need to care about them.</p>
1408
+ </div>
1409
+ <p>Sets the colormap for the GC to the given colormap. The depth
1410
+ of the colormap's visual must match the depth of the drawable
1411
+ for which the GC was created.</p>
1412
+ <div class="refsect3">
1413
+ <a name="id-1.2.8.9.28.6"></a><h4>Parameters</h4>
1414
+ <div class="informaltable"><table width="100%" border="0">
1415
+ <colgroup>
1416
+ <col width="150px" class="parameters_name">
1417
+ <col class="parameters_description">
1418
+ <col width="200px" class="parameters_annotations">
1419
+ </colgroup>
1420
+ <tbody>
1421
+ <tr>
1422
+ <td class="parameter_name"><p>gc</p></td>
1423
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a></p></td>
1424
+ <td class="parameter_annotations"> </td>
1425
+ </tr>
1426
+ <tr>
1427
+ <td class="parameter_name"><p>colormap</p></td>
1428
+ <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>
1429
+ <td class="parameter_annotations"> </td>
1430
+ </tr>
1431
+ </tbody>
1432
+ </table></div>
1433
+ </div>
1434
+ </div>
1435
+ <hr>
1436
+ <div class="refsect2">
1437
+ <a name="gdk-gc-get-colormap"></a><h3>gdk_gc_get_colormap ()</h3>
1438
+ <pre class="programlisting"><a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="returnvalue">GdkColormap</span></a> *
1439
+ gdk_gc_get_colormap (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);</pre>
1440
+ <div class="warning">
1441
+ <p><code class="literal">gdk_gc_get_colormap</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1442
+ <p>There is no replacement. Cairo handles colormaps
1443
+ automatically, so there is no need to care about them.</p>
1444
+ </div>
1445
+ <p>Retrieves the colormap for a given GC, if it exists.
1446
+ A GC will have a colormap if the drawable for which it was created
1447
+ has a colormap, or if a colormap was set explicitely with
1448
+ gdk_gc_set_colormap.</p>
1449
+ <div class="refsect3">
1450
+ <a name="id-1.2.8.9.29.6"></a><h4>Parameters</h4>
1451
+ <div class="informaltable"><table width="100%" border="0">
1452
+ <colgroup>
1453
+ <col width="150px" class="parameters_name">
1454
+ <col class="parameters_description">
1455
+ <col width="200px" class="parameters_annotations">
1456
+ </colgroup>
1457
+ <tbody><tr>
1458
+ <td class="parameter_name"><p>gc</p></td>
1459
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a></p></td>
1460
+ <td class="parameter_annotations"> </td>
1461
+ </tr></tbody>
1462
+ </table></div>
1463
+ </div>
1464
+ <div class="refsect3">
1465
+ <a name="id-1.2.8.9.29.7"></a><h4>Returns</h4>
1466
+ <p> the colormap of <em class="parameter"><code>gc</code></em>
1467
+ , 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 <em class="parameter"><code>gc</code></em>
1468
+ doesn't have one.</p>
1469
+ <p></p>
1470
+ </div>
1471
+ </div>
1472
+ <hr>
1473
+ <div class="refsect2">
1474
+ <a name="gdk-gc-offset"></a><h3>gdk_gc_offset ()</h3>
1475
+ <pre class="programlisting"><span class="returnvalue">void</span>
1476
+ gdk_gc_offset (<em class="parameter"><code><a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
1477
+ <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_offset</code></em>,
1478
+ <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_offset</code></em>);</pre>
1479
+ <div class="warning">
1480
+ <p><code class="literal">gdk_gc_offset</code> has been deprecated since version 2.22 and should not be used in newly-written code.</p>
1481
+ <p>There is no direct replacement, as this is just a
1482
+ convenience function for gdk_gc_set_ts_origin and <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-set-clip-origin" title="gdk_gc_set_clip_origin ()"><code class="function">gdk_gc_set_clip_origin()</code></a>.</p>
1483
+ </div>
1484
+ <p>Offset attributes such as the clip and tile-stipple origins
1485
+ of the GC so that drawing at x - x_offset, y - y_offset with
1486
+ the offset GC has the same effect as drawing at x, y with the original
1487
+ GC.</p>
1488
+ <div class="refsect3">
1489
+ <a name="id-1.2.8.9.30.6"></a><h4>Parameters</h4>
1490
+ <div class="informaltable"><table width="100%" border="0">
1491
+ <colgroup>
1492
+ <col width="150px" class="parameters_name">
1493
+ <col class="parameters_description">
1494
+ <col width="200px" class="parameters_annotations">
1495
+ </colgroup>
1496
+ <tbody>
1497
+ <tr>
1498
+ <td class="parameter_name"><p>gc</p></td>
1499
+ <td class="parameter_description"><p>a <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a></p></td>
1500
+ <td class="parameter_annotations"> </td>
1501
+ </tr>
1502
+ <tr>
1503
+ <td class="parameter_name"><p>x_offset</p></td>
1504
+ <td class="parameter_description"><p>amount by which to offset the GC in the X direction</p></td>
1505
+ <td class="parameter_annotations"> </td>
1506
+ </tr>
1507
+ <tr>
1508
+ <td class="parameter_name"><p>y_offset</p></td>
1509
+ <td class="parameter_description"><p>amount by which to offset the GC in the Y direction</p></td>
1510
+ <td class="parameter_annotations"> </td>
1511
+ </tr>
1512
+ </tbody>
1513
+ </table></div>
1514
+ </div>
1515
+ </div>
1516
+ </div>
1517
+ <div class="refsect1">
1518
+ <a name="gdk2-Graphics-Contexts.other_details"></a><h2>Types and Values</h2>
1519
+ <div class="refsect2">
1520
+ <a name="GdkGC-struct"></a><h3>GdkGC</h3>
1521
+ <pre class="programlisting">typedef struct _GdkGC GdkGC;</pre>
1522
+ <p>
1523
+ The <a class="link" href="gdk2-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> structure represents a graphics context.
1524
+ It is an opaque structure with no user-visible
1525
+ elements.
1526
+ </p>
1527
+ </div>
1528
+ <hr>
1529
+ <div class="refsect2">
1530
+ <a name="GdkGCValues"></a><h3>struct GdkGCValues</h3>
1531
+ <pre class="programlisting">struct GdkGCValues {
1532
+ GdkColor foreground;
1533
+ GdkColor background;
1534
+ GdkFont *font;
1535
+ GdkFunction function;
1536
+ GdkFill fill;
1537
+ GdkPixmap *tile;
1538
+ GdkPixmap *stipple;
1539
+ GdkPixmap *clip_mask;
1540
+ GdkSubwindowMode subwindow_mode;
1541
+ gint ts_x_origin;
1542
+ gint ts_y_origin;
1543
+ gint clip_x_origin;
1544
+ gint clip_y_origin;
1545
+ gint graphics_exposures;
1546
+ gint line_width;
1547
+ GdkLineStyle line_style;
1548
+ GdkCapStyle cap_style;
1549
+ GdkJoinStyle join_style;
1550
+ };
1551
+ </pre>
1552
+ <p>
1553
+ The <a class="link" href="gdk2-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> structure holds a set of values used
1554
+ to create or modify a graphics context.
1555
+ </p>
1556
+ <div class="refsect3">
1557
+ <a name="id-1.2.8.10.3.5"></a><h4>Members</h4>
1558
+ <div class="informaltable"><table width="100%" border="0">
1559
+ <colgroup>
1560
+ <col width="300px" class="struct_members_name">
1561
+ <col class="struct_members_description">
1562
+ <col width="200px" class="struct_members_annotations">
1563
+ </colgroup>
1564
+ <tbody>
1565
+ <tr>
1566
+ <td class="struct_member_name"><p><a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> <em class="structfield"><code><a name="GdkGCValues.foreground"></a>foreground</code></em>;</p></td>
1567
+ <td class="struct_member_description"><p>the foreground color. Note that <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-get-values" title="gdk_gc_get_values ()"><code class="function">gdk_gc_get_values()</code></a>
1568
+ only sets the pixel value.</p></td>
1569
+ <td class="struct_member_annotations"> </td>
1570
+ </tr>
1571
+ <tr>
1572
+ <td class="struct_member_name"><p><a class="link" href="gdk2-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> <em class="structfield"><code><a name="GdkGCValues.background"></a>background</code></em>;</p></td>
1573
+ <td class="struct_member_description"><p>the background color. Note that <a class="link" href="gdk2-Graphics-Contexts.html#gdk-gc-get-values" title="gdk_gc_get_values ()"><code class="function">gdk_gc_get_values()</code></a>
1574
+ only sets the pixel value.</p></td>
1575
+ <td class="struct_member_annotations"> </td>
1576
+ </tr>
1577
+ <tr>
1578
+ <td class="struct_member_name"><p><a class="link" href="gdk2-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> *<em class="structfield"><code><a name="GdkGCValues.font"></a>font</code></em>;</p></td>
1579
+ <td class="struct_member_description"><p>the default font.</p></td>
1580
+ <td class="struct_member_annotations"> </td>
1581
+ </tr>
1582
+ <tr>
1583
+ <td class="struct_member_name"><p><a class="link" href="gdk2-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction"><span class="type">GdkFunction</span></a> <em class="structfield"><code><a name="GdkGCValues.function"></a>function</code></em>;</p></td>
1584
+ <td class="struct_member_description"><p>the bitwise operation used when drawing.</p></td>
1585
+ <td class="struct_member_annotations"> </td>
1586
+ </tr>
1587
+ <tr>
1588
+ <td class="struct_member_name"><p><a class="link" href="gdk2-Graphics-Contexts.html#GdkFill" title="enum GdkFill"><span class="type">GdkFill</span></a> <em class="structfield"><code><a name="GdkGCValues.fill"></a>fill</code></em>;</p></td>
1589
+ <td class="struct_member_description"><p>the fill style.</p></td>
1590
+ <td class="struct_member_annotations"> </td>
1591
+ </tr>
1592
+ <tr>
1593
+ <td class="struct_member_name"><p><a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *<em class="structfield"><code><a name="GdkGCValues.tile"></a>tile</code></em>;</p></td>
1594
+ <td class="struct_member_description"><p>the tile pixmap.</p></td>
1595
+ <td class="struct_member_annotations"> </td>
1596
+ </tr>
1597
+ <tr>
1598
+ <td class="struct_member_name"><p><a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *<em class="structfield"><code><a name="GdkGCValues.stipple"></a>stipple</code></em>;</p></td>
1599
+ <td class="struct_member_description"><p>the stipple bitmap.</p></td>
1600
+ <td class="struct_member_annotations"> </td>
1601
+ </tr>
1602
+ <tr>
1603
+ <td class="struct_member_name"><p><a class="link" href="gdk2-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *<em class="structfield"><code><a name="GdkGCValues.clip-mask"></a>clip_mask</code></em>;</p></td>
1604
+ <td class="struct_member_description"><p>the clip mask bitmap.</p></td>
1605
+ <td class="struct_member_annotations"> </td>
1606
+ </tr>
1607
+ <tr>
1608
+ <td class="struct_member_name"><p><a class="link" href="gdk2-Graphics-Contexts.html#GdkSubwindowMode" title="enum GdkSubwindowMode"><span class="type">GdkSubwindowMode</span></a> <em class="structfield"><code><a name="GdkGCValues.subwindow-mode"></a>subwindow_mode</code></em>;</p></td>
1609
+ <td class="struct_member_description"><p>the subwindow mode.</p></td>
1610
+ <td class="struct_member_annotations"> </td>
1611
+ </tr>
1612
+ <tr>
1613
+ <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="GdkGCValues.ts-x-origin"></a>ts_x_origin</code></em>;</p></td>
1614
+ <td class="struct_member_description"><p>the x origin of the tile or stipple.</p></td>
1615
+ <td class="struct_member_annotations"> </td>
1616
+ </tr>
1617
+ <tr>
1618
+ <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="GdkGCValues.ts-y-origin"></a>ts_y_origin</code></em>;</p></td>
1619
+ <td class="struct_member_description"><p>the y origin of the tile or stipple.</p></td>
1620
+ <td class="struct_member_annotations"> </td>
1621
+ </tr>
1622
+ <tr>
1623
+ <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="GdkGCValues.clip-x-origin"></a>clip_x_origin</code></em>;</p></td>
1624
+ <td class="struct_member_description"><p>the x origin of the clip mask.</p></td>
1625
+ <td class="struct_member_annotations"> </td>
1626
+ </tr>
1627
+ <tr>
1628
+ <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="GdkGCValues.clip-y-origin"></a>clip_y_origin</code></em>;</p></td>
1629
+ <td class="struct_member_description"><p>the y origin of the clip mask.</p></td>
1630
+ <td class="struct_member_annotations"> </td>
1631
+ </tr>
1632
+ <tr>
1633
+ <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="GdkGCValues.graphics-exposures"></a>graphics_exposures</code></em>;</p></td>
1634
+ <td class="struct_member_description"><p>whether graphics exposures are enabled.</p></td>
1635
+ <td class="struct_member_annotations"> </td>
1636
+ </tr>
1637
+ <tr>
1638
+ <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="GdkGCValues.line-width"></a>line_width</code></em>;</p></td>
1639
+ <td class="struct_member_description"><p>the line width.</p></td>
1640
+ <td class="struct_member_annotations"> </td>
1641
+ </tr>
1642
+ <tr>
1643
+ <td class="struct_member_name"><p><a class="link" href="gdk2-Graphics-Contexts.html#GdkLineStyle" title="enum GdkLineStyle"><span class="type">GdkLineStyle</span></a> <em class="structfield"><code><a name="GdkGCValues.line-style"></a>line_style</code></em>;</p></td>
1644
+ <td class="struct_member_description"><p>the way dashed lines are drawn.</p></td>
1645
+ <td class="struct_member_annotations"> </td>
1646
+ </tr>
1647
+ <tr>
1648
+ <td class="struct_member_name"><p><a class="link" href="gdk2-Graphics-Contexts.html#GdkCapStyle" title="enum GdkCapStyle"><span class="type">GdkCapStyle</span></a> <em class="structfield"><code><a name="GdkGCValues.cap-style"></a>cap_style</code></em>;</p></td>
1649
+ <td class="struct_member_description"><p>the way the ends of lines are drawn.</p></td>
1650
+ <td class="struct_member_annotations"> </td>
1651
+ </tr>
1652
+ <tr>
1653
+ <td class="struct_member_name"><p><a class="link" href="gdk2-Graphics-Contexts.html#GdkJoinStyle" title="enum GdkJoinStyle"><span class="type">GdkJoinStyle</span></a> <em class="structfield"><code><a name="GdkGCValues.join-style"></a>join_style</code></em>;</p></td>
1654
+ <td class="struct_member_description"><p>the way joins between lines are drawn.</p></td>
1655
+ <td class="struct_member_annotations"> </td>
1656
+ </tr>
1657
+ </tbody>
1658
+ </table></div>
1659
+ </div>
1660
+ </div>
1661
+ <hr>
1662
+ <div class="refsect2">
1663
+ <a name="GdkGCValuesMask"></a><h3>enum GdkGCValuesMask</h3>
1664
+ <p>
1665
+ A set of bit flags used to indicate which fields
1666
+ <a class="link" href="gdk2-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> structure are set.
1667
+ </p>
1668
+ <div class="refsect3">
1669
+ <a name="id-1.2.8.10.4.4"></a><h4>Members</h4>
1670
+ <div class="informaltable"><table width="100%" border="0">
1671
+ <colgroup>
1672
+ <col width="300px" class="enum_members_name">
1673
+ <col class="enum_members_description">
1674
+ <col width="200px" class="enum_members_annotations">
1675
+ </colgroup>
1676
+ <tbody>
1677
+ <tr>
1678
+ <td class="enum_member_name"><p><a name="GDK-GC-FOREGROUND:CAPS"></a>GDK_GC_FOREGROUND</p></td>
1679
+ <td class="enum_member_description">
1680
+ <p>the <em class="parameter"><code>foreground</code></em>
1681
+ is set.</p>
1682
+ </td>
1683
+ <td class="enum_member_annotations"> </td>
1684
+ </tr>
1685
+ <tr>
1686
+ <td class="enum_member_name"><p><a name="GDK-GC-BACKGROUND:CAPS"></a>GDK_GC_BACKGROUND</p></td>
1687
+ <td class="enum_member_description">
1688
+ <p>the <em class="parameter"><code>background</code></em>
1689
+ is set.</p>
1690
+ </td>
1691
+ <td class="enum_member_annotations"> </td>
1692
+ </tr>
1693
+ <tr>
1694
+ <td class="enum_member_name"><p><a name="GDK-GC-FONT:CAPS"></a>GDK_GC_FONT</p></td>
1695
+ <td class="enum_member_description">
1696
+ <p>the <em class="parameter"><code>font</code></em>
1697
+ is set.</p>
1698
+ </td>
1699
+ <td class="enum_member_annotations"> </td>
1700
+ </tr>
1701
+ <tr>
1702
+ <td class="enum_member_name"><p><a name="GDK-GC-FUNCTION:CAPS"></a>GDK_GC_FUNCTION</p></td>
1703
+ <td class="enum_member_description">
1704
+ <p>the <em class="parameter"><code>function</code></em>
1705
+ is set.</p>
1706
+ </td>
1707
+ <td class="enum_member_annotations"> </td>
1708
+ </tr>
1709
+ <tr>
1710
+ <td class="enum_member_name"><p><a name="GDK-GC-FILL:CAPS"></a>GDK_GC_FILL</p></td>
1711
+ <td class="enum_member_description">
1712
+ <p>the <em class="parameter"><code>fill</code></em>
1713
+ is set.</p>
1714
+ </td>
1715
+ <td class="enum_member_annotations"> </td>
1716
+ </tr>
1717
+ <tr>
1718
+ <td class="enum_member_name"><p><a name="GDK-GC-TILE:CAPS"></a>GDK_GC_TILE</p></td>
1719
+ <td class="enum_member_description">
1720
+ <p>the <em class="parameter"><code>tile</code></em>
1721
+ is set.</p>
1722
+ </td>
1723
+ <td class="enum_member_annotations"> </td>
1724
+ </tr>
1725
+ <tr>
1726
+ <td class="enum_member_name"><p><a name="GDK-GC-STIPPLE:CAPS"></a>GDK_GC_STIPPLE</p></td>
1727
+ <td class="enum_member_description">
1728
+ <p>the <em class="parameter"><code>stipple</code></em>
1729
+ is set.</p>
1730
+ </td>
1731
+ <td class="enum_member_annotations"> </td>
1732
+ </tr>
1733
+ <tr>
1734
+ <td class="enum_member_name"><p><a name="GDK-GC-CLIP-MASK:CAPS"></a>GDK_GC_CLIP_MASK</p></td>
1735
+ <td class="enum_member_description">
1736
+ <p>the <em class="parameter"><code>clip_mask</code></em>
1737
+ is set.</p>
1738
+ </td>
1739
+ <td class="enum_member_annotations"> </td>
1740
+ </tr>
1741
+ <tr>
1742
+ <td class="enum_member_name"><p><a name="GDK-GC-SUBWINDOW:CAPS"></a>GDK_GC_SUBWINDOW</p></td>
1743
+ <td class="enum_member_description">
1744
+ <p>the <em class="parameter"><code>subwindow_mode</code></em>
1745
+ is set.</p>
1746
+ </td>
1747
+ <td class="enum_member_annotations"> </td>
1748
+ </tr>
1749
+ <tr>
1750
+ <td class="enum_member_name"><p><a name="GDK-GC-TS-X-ORIGIN:CAPS"></a>GDK_GC_TS_X_ORIGIN</p></td>
1751
+ <td class="enum_member_description">
1752
+ <p>the <em class="parameter"><code>ts_x_origin</code></em>
1753
+ is set.</p>
1754
+ </td>
1755
+ <td class="enum_member_annotations"> </td>
1756
+ </tr>
1757
+ <tr>
1758
+ <td class="enum_member_name"><p><a name="GDK-GC-TS-Y-ORIGIN:CAPS"></a>GDK_GC_TS_Y_ORIGIN</p></td>
1759
+ <td class="enum_member_description">
1760
+ <p>the <em class="parameter"><code>ts_y_origin</code></em>
1761
+ is set.</p>
1762
+ </td>
1763
+ <td class="enum_member_annotations"> </td>
1764
+ </tr>
1765
+ <tr>
1766
+ <td class="enum_member_name"><p><a name="GDK-GC-CLIP-X-ORIGIN:CAPS"></a>GDK_GC_CLIP_X_ORIGIN</p></td>
1767
+ <td class="enum_member_description">
1768
+ <p>the <em class="parameter"><code>clip_x_origin</code></em>
1769
+ is set.</p>
1770
+ </td>
1771
+ <td class="enum_member_annotations"> </td>
1772
+ </tr>
1773
+ <tr>
1774
+ <td class="enum_member_name"><p><a name="GDK-GC-CLIP-Y-ORIGIN:CAPS"></a>GDK_GC_CLIP_Y_ORIGIN</p></td>
1775
+ <td class="enum_member_description">
1776
+ <p>the <em class="parameter"><code>clip_y_origin</code></em>
1777
+ is set.</p>
1778
+ </td>
1779
+ <td class="enum_member_annotations"> </td>
1780
+ </tr>
1781
+ <tr>
1782
+ <td class="enum_member_name"><p><a name="GDK-GC-EXPOSURES:CAPS"></a>GDK_GC_EXPOSURES</p></td>
1783
+ <td class="enum_member_description">
1784
+ <p>the <em class="parameter"><code>graphics_exposures</code></em>
1785
+ is set.</p>
1786
+ </td>
1787
+ <td class="enum_member_annotations"> </td>
1788
+ </tr>
1789
+ <tr>
1790
+ <td class="enum_member_name"><p><a name="GDK-GC-LINE-WIDTH:CAPS"></a>GDK_GC_LINE_WIDTH</p></td>
1791
+ <td class="enum_member_description">
1792
+ <p>the <em class="parameter"><code>line_width</code></em>
1793
+ is set.</p>
1794
+ </td>
1795
+ <td class="enum_member_annotations"> </td>
1796
+ </tr>
1797
+ <tr>
1798
+ <td class="enum_member_name"><p><a name="GDK-GC-LINE-STYLE:CAPS"></a>GDK_GC_LINE_STYLE</p></td>
1799
+ <td class="enum_member_description">
1800
+ <p>the <em class="parameter"><code>line_style</code></em>
1801
+ is set.</p>
1802
+ </td>
1803
+ <td class="enum_member_annotations"> </td>
1804
+ </tr>
1805
+ <tr>
1806
+ <td class="enum_member_name"><p><a name="GDK-GC-CAP-STYLE:CAPS"></a>GDK_GC_CAP_STYLE</p></td>
1807
+ <td class="enum_member_description">
1808
+ <p>the <em class="parameter"><code>cap_style</code></em>
1809
+ is set.</p>
1810
+ </td>
1811
+ <td class="enum_member_annotations"> </td>
1812
+ </tr>
1813
+ <tr>
1814
+ <td class="enum_member_name"><p><a name="GDK-GC-JOIN-STYLE:CAPS"></a>GDK_GC_JOIN_STYLE</p></td>
1815
+ <td class="enum_member_description">
1816
+ <p>the <em class="parameter"><code>join_style</code></em>
1817
+ is set.</p>
1818
+ </td>
1819
+ <td class="enum_member_annotations"> </td>
1820
+ </tr>
1821
+ </tbody>
1822
+ </table></div>
1823
+ </div>
1824
+ </div>
1825
+ <hr>
1826
+ <div class="refsect2">
1827
+ <a name="GdkFunction"></a><h3>enum GdkFunction</h3>
1828
+ <p>
1829
+ Determines how the bit values for the source pixels are combined with
1830
+ the bit values for destination pixels to produce the final result. The
1831
+ sixteen values here correspond to the 16 different possible 2x2 truth
1832
+ tables. Only a couple of these values are usually useful; for colored
1833
+ images, only <a class="link" href="gdk2-Graphics-Contexts.html#GDK-COPY:CAPS"><code class="literal">GDK_COPY</code></a>, <a class="link" href="gdk2-Graphics-Contexts.html#GDK-XOR:CAPS"><code class="literal">GDK_XOR</code></a> and <a class="link" href="gdk2-Graphics-Contexts.html#GDK-INVERT:CAPS"><code class="literal">GDK_INVERT</code></a> are generally
1834
+ useful. For bitmaps, <a class="link" href="gdk2-Graphics-Contexts.html#GDK-AND:CAPS"><code class="literal">GDK_AND</code></a> and <a class="link" href="gdk2-Graphics-Contexts.html#GDK-OR:CAPS"><code class="literal">GDK_OR</code></a> are also useful.
1835
+ </p>
1836
+ <div class="refsect3">
1837
+ <a name="id-1.2.8.10.5.4"></a><h4>Members</h4>
1838
+ <div class="informaltable"><table width="100%" border="0">
1839
+ <colgroup>
1840
+ <col width="300px" class="enum_members_name">
1841
+ <col class="enum_members_description">
1842
+ <col width="200px" class="enum_members_annotations">
1843
+ </colgroup>
1844
+ <tbody>
1845
+ <tr>
1846
+ <td class="enum_member_name"><p><a name="GDK-COPY:CAPS"></a>GDK_COPY</p></td>
1847
+ <td class="enum_member_description">
1848
+ <p><code class="literal">dst = src</code></p>
1849
+ </td>
1850
+ <td class="enum_member_annotations"> </td>
1851
+ </tr>
1852
+ <tr>
1853
+ <td class="enum_member_name"><p><a name="GDK-INVERT:CAPS"></a>GDK_INVERT</p></td>
1854
+ <td class="enum_member_description">
1855
+ <p><code class="literal">dst = NOT dst</code></p>
1856
+ </td>
1857
+ <td class="enum_member_annotations"> </td>
1858
+ </tr>
1859
+ <tr>
1860
+ <td class="enum_member_name"><p><a name="GDK-XOR:CAPS"></a>GDK_XOR</p></td>
1861
+ <td class="enum_member_description">
1862
+ <p><code class="literal">dst = src XOR dst</code></p>
1863
+ </td>
1864
+ <td class="enum_member_annotations"> </td>
1865
+ </tr>
1866
+ <tr>
1867
+ <td class="enum_member_name"><p><a name="GDK-CLEAR:CAPS"></a>GDK_CLEAR</p></td>
1868
+ <td class="enum_member_description">
1869
+ <p><code class="literal">dst = 0</code></p>
1870
+ </td>
1871
+ <td class="enum_member_annotations"> </td>
1872
+ </tr>
1873
+ <tr>
1874
+ <td class="enum_member_name"><p><a name="GDK-AND:CAPS"></a>GDK_AND</p></td>
1875
+ <td class="enum_member_description">
1876
+ <p><code class="literal">dst = dst AND src</code></p>
1877
+ </td>
1878
+ <td class="enum_member_annotations"> </td>
1879
+ </tr>
1880
+ <tr>
1881
+ <td class="enum_member_name"><p><a name="GDK-AND-REVERSE:CAPS"></a>GDK_AND_REVERSE</p></td>
1882
+ <td class="enum_member_description">
1883
+ <p><code class="literal">dst = src AND (NOT dst)</code></p>
1884
+ </td>
1885
+ <td class="enum_member_annotations"> </td>
1886
+ </tr>
1887
+ <tr>
1888
+ <td class="enum_member_name"><p><a name="GDK-AND-INVERT:CAPS"></a>GDK_AND_INVERT</p></td>
1889
+ <td class="enum_member_description">
1890
+ <p><code class="literal">dst = (NOT src) AND dst</code></p>
1891
+ </td>
1892
+ <td class="enum_member_annotations"> </td>
1893
+ </tr>
1894
+ <tr>
1895
+ <td class="enum_member_name"><p><a name="GDK-NOOP:CAPS"></a>GDK_NOOP</p></td>
1896
+ <td class="enum_member_description">
1897
+ <p><code class="literal">dst = dst</code></p>
1898
+ </td>
1899
+ <td class="enum_member_annotations"> </td>
1900
+ </tr>
1901
+ <tr>
1902
+ <td class="enum_member_name"><p><a name="GDK-OR:CAPS"></a>GDK_OR</p></td>
1903
+ <td class="enum_member_description">
1904
+ <p><code class="literal">dst = src OR dst</code></p>
1905
+ </td>
1906
+ <td class="enum_member_annotations"> </td>
1907
+ </tr>
1908
+ <tr>
1909
+ <td class="enum_member_name"><p><a name="GDK-EQUIV:CAPS"></a>GDK_EQUIV</p></td>
1910
+ <td class="enum_member_description">
1911
+ <p><code class="literal">dst = (NOT src) XOR dst</code></p>
1912
+ </td>
1913
+ <td class="enum_member_annotations"> </td>
1914
+ </tr>
1915
+ <tr>
1916
+ <td class="enum_member_name"><p><a name="GDK-OR-REVERSE:CAPS"></a>GDK_OR_REVERSE</p></td>
1917
+ <td class="enum_member_description">
1918
+ <p><code class="literal">dst = src OR (NOT dst)</code></p>
1919
+ </td>
1920
+ <td class="enum_member_annotations"> </td>
1921
+ </tr>
1922
+ <tr>
1923
+ <td class="enum_member_name"><p><a name="GDK-COPY-INVERT:CAPS"></a>GDK_COPY_INVERT</p></td>
1924
+ <td class="enum_member_description">
1925
+ <p><code class="literal">dst = NOT src</code></p>
1926
+ </td>
1927
+ <td class="enum_member_annotations"> </td>
1928
+ </tr>
1929
+ <tr>
1930
+ <td class="enum_member_name"><p><a name="GDK-OR-INVERT:CAPS"></a>GDK_OR_INVERT</p></td>
1931
+ <td class="enum_member_description">
1932
+ <p><code class="literal">dst = (NOT src) OR dst</code></p>
1933
+ </td>
1934
+ <td class="enum_member_annotations"> </td>
1935
+ </tr>
1936
+ <tr>
1937
+ <td class="enum_member_name"><p><a name="GDK-NAND:CAPS"></a>GDK_NAND</p></td>
1938
+ <td class="enum_member_description">
1939
+ <p><code class="literal">dst = (NOT src) OR (NOT dst)</code></p>
1940
+ </td>
1941
+ <td class="enum_member_annotations"> </td>
1942
+ </tr>
1943
+ <tr>
1944
+ <td class="enum_member_name"><p><a name="GDK-NOR:CAPS"></a>GDK_NOR</p></td>
1945
+ <td class="enum_member_description">
1946
+ <p><code class="literal">dst = (NOT src) AND (NOT dst)</code></p>
1947
+ </td>
1948
+ <td class="enum_member_annotations"> </td>
1949
+ </tr>
1950
+ <tr>
1951
+ <td class="enum_member_name"><p><a name="GDK-SET:CAPS"></a>GDK_SET</p></td>
1952
+ <td class="enum_member_description">
1953
+ <p><code class="literal">dst = 1</code></p>
1954
+ </td>
1955
+ <td class="enum_member_annotations"> </td>
1956
+ </tr>
1957
+ </tbody>
1958
+ </table></div>
1959
+ </div>
1960
+ </div>
1961
+ <hr>
1962
+ <div class="refsect2">
1963
+ <a name="gdk-gc-destroy"></a><h3>gdk_gc_destroy</h3>
1964
+ <pre class="programlisting">#define gdk_gc_destroy g_object_unref
1965
+ </pre>
1966
+ <div class="warning">
1967
+ <p><code class="literal">gdk_gc_destroy</code> is deprecated and should not be used in newly-written code.</p>
1968
+ <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>
1969
+ </div>
1970
+ <p>
1971
+ This function is obsolete and should not be used.
1972
+ </p>
1973
+ </div>
1974
+ <hr>
1975
+ <div class="refsect2">
1976
+ <a name="GdkFill"></a><h3>enum GdkFill</h3>
1977
+ <p>
1978
+ Determines how primitives are drawn.
1979
+ </p>
1980
+ <div class="refsect3">
1981
+ <a name="id-1.2.8.10.7.4"></a><h4>Members</h4>
1982
+ <div class="informaltable"><table width="100%" border="0">
1983
+ <colgroup>
1984
+ <col width="300px" class="enum_members_name">
1985
+ <col class="enum_members_description">
1986
+ <col width="200px" class="enum_members_annotations">
1987
+ </colgroup>
1988
+ <tbody>
1989
+ <tr>
1990
+ <td class="enum_member_name"><p><a name="GDK-SOLID:CAPS"></a>GDK_SOLID</p></td>
1991
+ <td class="enum_member_description">
1992
+ <p>draw with the foreground color.</p>
1993
+ </td>
1994
+ <td class="enum_member_annotations"> </td>
1995
+ </tr>
1996
+ <tr>
1997
+ <td class="enum_member_name"><p><a name="GDK-TILED:CAPS"></a>GDK_TILED</p></td>
1998
+ <td class="enum_member_description">
1999
+ <p>draw with a tiled pixmap.</p>
2000
+ </td>
2001
+ <td class="enum_member_annotations"> </td>
2002
+ </tr>
2003
+ <tr>
2004
+ <td class="enum_member_name"><p><a name="GDK-STIPPLED:CAPS"></a>GDK_STIPPLED</p></td>
2005
+ <td class="enum_member_description">
2006
+ <p>draw using the stipple bitmap. Pixels corresponding
2007
+ to bits in the stipple bitmap that are set will be drawn in the
2008
+ foreground color; pixels corresponding to bits that are
2009
+ not set will be left untouched.</p>
2010
+ </td>
2011
+ <td class="enum_member_annotations"> </td>
2012
+ </tr>
2013
+ <tr>
2014
+ <td class="enum_member_name"><p><a name="GDK-OPAQUE-STIPPLED:CAPS"></a>GDK_OPAQUE_STIPPLED</p></td>
2015
+ <td class="enum_member_description">
2016
+ <p>draw using the stipple bitmap. Pixels corresponding
2017
+ to bits in the stipple bitmap that are set will be drawn in the
2018
+ foreground color; pixels corresponding to bits that are
2019
+ not set will be drawn with the background color.</p>
2020
+ </td>
2021
+ <td class="enum_member_annotations"> </td>
2022
+ </tr>
2023
+ </tbody>
2024
+ </table></div>
2025
+ </div>
2026
+ </div>
2027
+ <hr>
2028
+ <div class="refsect2">
2029
+ <a name="GdkSubwindowMode"></a><h3>enum GdkSubwindowMode</h3>
2030
+ <p>
2031
+ Determines how drawing onto a window will affect child
2032
+ windows of that window.
2033
+ </p>
2034
+ <div class="refsect3">
2035
+ <a name="id-1.2.8.10.8.4"></a><h4>Members</h4>
2036
+ <div class="informaltable"><table width="100%" border="0">
2037
+ <colgroup>
2038
+ <col width="300px" class="enum_members_name">
2039
+ <col class="enum_members_description">
2040
+ <col width="200px" class="enum_members_annotations">
2041
+ </colgroup>
2042
+ <tbody>
2043
+ <tr>
2044
+ <td class="enum_member_name"><p><a name="GDK-CLIP-BY-CHILDREN:CAPS"></a>GDK_CLIP_BY_CHILDREN</p></td>
2045
+ <td class="enum_member_description">
2046
+ <p>only draw onto the window itself.</p>
2047
+ </td>
2048
+ <td class="enum_member_annotations"> </td>
2049
+ </tr>
2050
+ <tr>
2051
+ <td class="enum_member_name"><p><a name="GDK-INCLUDE-INFERIORS:CAPS"></a>GDK_INCLUDE_INFERIORS</p></td>
2052
+ <td class="enum_member_description">
2053
+ <p>draw onto the window and child windows.</p>
2054
+ </td>
2055
+ <td class="enum_member_annotations"> </td>
2056
+ </tr>
2057
+ </tbody>
2058
+ </table></div>
2059
+ </div>
2060
+ </div>
2061
+ <hr>
2062
+ <div class="refsect2">
2063
+ <a name="GdkLineStyle"></a><h3>enum GdkLineStyle</h3>
2064
+ <p>
2065
+ Determines how lines are drawn.
2066
+ </p>
2067
+ <div class="refsect3">
2068
+ <a name="id-1.2.8.10.9.4"></a><h4>Members</h4>
2069
+ <div class="informaltable"><table width="100%" border="0">
2070
+ <colgroup>
2071
+ <col width="300px" class="enum_members_name">
2072
+ <col class="enum_members_description">
2073
+ <col width="200px" class="enum_members_annotations">
2074
+ </colgroup>
2075
+ <tbody>
2076
+ <tr>
2077
+ <td class="enum_member_name"><p><a name="GDK-LINE-SOLID:CAPS"></a>GDK_LINE_SOLID</p></td>
2078
+ <td class="enum_member_description">
2079
+ <p>lines are drawn solid.</p>
2080
+ </td>
2081
+ <td class="enum_member_annotations"> </td>
2082
+ </tr>
2083
+ <tr>
2084
+ <td class="enum_member_name"><p><a name="GDK-LINE-ON-OFF-DASH:CAPS"></a>GDK_LINE_ON_OFF_DASH</p></td>
2085
+ <td class="enum_member_description">
2086
+ <p>even segments are drawn; odd segments are not drawn.</p>
2087
+ </td>
2088
+ <td class="enum_member_annotations"> </td>
2089
+ </tr>
2090
+ <tr>
2091
+ <td class="enum_member_name"><p><a name="GDK-LINE-DOUBLE-DASH:CAPS"></a>GDK_LINE_DOUBLE_DASH</p></td>
2092
+ <td class="enum_member_description">
2093
+ <p>even segments are normally. Odd segments are drawn
2094
+ in the background color if the fill style is <a class="link" href="gdk2-Graphics-Contexts.html#GDK-SOLID:CAPS"><code class="literal">GDK_SOLID</code></a>, or in the background
2095
+ color masked by the stipple if the fill style is <a class="link" href="gdk2-Graphics-Contexts.html#GDK-STIPPLED:CAPS"><code class="literal">GDK_STIPPLED</code></a>.</p>
2096
+ </td>
2097
+ <td class="enum_member_annotations"> </td>
2098
+ </tr>
2099
+ </tbody>
2100
+ </table></div>
2101
+ </div>
2102
+ </div>
2103
+ <hr>
2104
+ <div class="refsect2">
2105
+ <a name="GdkCapStyle"></a><h3>enum GdkCapStyle</h3>
2106
+ <p>
2107
+ Determines how the end of lines are drawn.
2108
+ </p>
2109
+ <div class="refsect3">
2110
+ <a name="id-1.2.8.10.10.4"></a><h4>Members</h4>
2111
+ <div class="informaltable"><table width="100%" border="0">
2112
+ <colgroup>
2113
+ <col width="300px" class="enum_members_name">
2114
+ <col class="enum_members_description">
2115
+ <col width="200px" class="enum_members_annotations">
2116
+ </colgroup>
2117
+ <tbody>
2118
+ <tr>
2119
+ <td class="enum_member_name"><p><a name="GDK-CAP-NOT-LAST:CAPS"></a>GDK_CAP_NOT_LAST</p></td>
2120
+ <td class="enum_member_description">
2121
+ <p>the same as <a class="link" href="gdk2-Graphics-Contexts.html#GDK-CAP-BUTT:CAPS"><code class="literal">GDK_CAP_BUTT</code></a> for lines of non-zero width.
2122
+ for zero width lines, the final point on the line will not be drawn.</p>
2123
+ </td>
2124
+ <td class="enum_member_annotations"> </td>
2125
+ </tr>
2126
+ <tr>
2127
+ <td class="enum_member_name"><p><a name="GDK-CAP-BUTT:CAPS"></a>GDK_CAP_BUTT</p></td>
2128
+ <td class="enum_member_description">
2129
+ <p>the ends of the lines are drawn squared off and extending
2130
+ to the coordinates of the end point.</p>
2131
+ </td>
2132
+ <td class="enum_member_annotations"> </td>
2133
+ </tr>
2134
+ <tr>
2135
+ <td class="enum_member_name"><p><a name="GDK-CAP-ROUND:CAPS"></a>GDK_CAP_ROUND</p></td>
2136
+ <td class="enum_member_description">
2137
+ <p>the ends of the lines are drawn as semicircles with the
2138
+ diameter equal to the line width and centered at the end point.</p>
2139
+ </td>
2140
+ <td class="enum_member_annotations"> </td>
2141
+ </tr>
2142
+ <tr>
2143
+ <td class="enum_member_name"><p><a name="GDK-CAP-PROJECTING:CAPS"></a>GDK_CAP_PROJECTING</p></td>
2144
+ <td class="enum_member_description">
2145
+ <p>the ends of the lines are drawn squared off and extending
2146
+ half the width of the line beyond the end point.</p>
2147
+ </td>
2148
+ <td class="enum_member_annotations"> </td>
2149
+ </tr>
2150
+ </tbody>
2151
+ </table></div>
2152
+ </div>
2153
+ </div>
2154
+ <hr>
2155
+ <div class="refsect2">
2156
+ <a name="GdkJoinStyle"></a><h3>enum GdkJoinStyle</h3>
2157
+ <p>
2158
+ Determines how the joins between segments of a polygon are drawn.
2159
+ </p>
2160
+ <div class="refsect3">
2161
+ <a name="id-1.2.8.10.11.4"></a><h4>Members</h4>
2162
+ <div class="informaltable"><table width="100%" border="0">
2163
+ <colgroup>
2164
+ <col width="300px" class="enum_members_name">
2165
+ <col class="enum_members_description">
2166
+ <col width="200px" class="enum_members_annotations">
2167
+ </colgroup>
2168
+ <tbody>
2169
+ <tr>
2170
+ <td class="enum_member_name"><p><a name="GDK-JOIN-MITER:CAPS"></a>GDK_JOIN_MITER</p></td>
2171
+ <td class="enum_member_description">
2172
+ <p>the sides of each line are extended to meet at an angle.</p>
2173
+ </td>
2174
+ <td class="enum_member_annotations"> </td>
2175
+ </tr>
2176
+ <tr>
2177
+ <td class="enum_member_name"><p><a name="GDK-JOIN-ROUND:CAPS"></a>GDK_JOIN_ROUND</p></td>
2178
+ <td class="enum_member_description">
2179
+ <p>the sides of the two lines are joined by a circular arc.</p>
2180
+ </td>
2181
+ <td class="enum_member_annotations"> </td>
2182
+ </tr>
2183
+ <tr>
2184
+ <td class="enum_member_name"><p><a name="GDK-JOIN-BEVEL:CAPS"></a>GDK_JOIN_BEVEL</p></td>
2185
+ <td class="enum_member_description">
2186
+ <p>the sides of the two lines are joined by a straight line which
2187
+ makes an equal angle with each line.</p>
2188
+ </td>
2189
+ <td class="enum_member_annotations"> </td>
2190
+ </tr>
2191
+ </tbody>
2192
+ </table></div>
2193
+ </div>
2194
+ </div>
2195
+ </div>
2196
+ </div>
2197
+ <div class="footer">
2198
+ <hr>
2199
+ Generated by GTK-Doc V1.21.1</div>
2200
+ </body>
2201
+ </html>