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,4124 @@
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>GTK+ 2 Reference Manual: GtkTextView</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
8
+ <link rel="up" href="TextWidgetObjects.html" title="Multiline Text Editor">
9
+ <link rel="prev" href="GtkTextTagTable.html" title="GtkTextTagTable">
10
+ <link rel="next" href="TreeWidgetObjects.html" title="Tree, List and Icon Grid Widgets">
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="#GtkTextView.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19
+ <a href="#GtkTextView.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces">  <span class="dim">|</span> 
20
+ <a href="#GtkTextView.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties">  <span class="dim">|</span> 
21
+ <a href="#GtkTextView.properties" class="shortcut">Properties</a></span><span id="nav_style_properties">  <span class="dim">|</span> 
22
+ <a href="#GtkTextView.style-properties" class="shortcut">Style Properties</a></span><span id="nav_signals">  <span class="dim">|</span> 
23
+ <a href="#GtkTextView.signals" class="shortcut">Signals</a></span>
24
+ </td>
25
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
26
+ <td><a accesskey="u" href="TextWidgetObjects.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
27
+ <td><a accesskey="p" href="GtkTextTagTable.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
28
+ <td><a accesskey="n" href="TreeWidgetObjects.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
29
+ </tr></table>
30
+ <div class="refentry">
31
+ <a name="GtkTextView"></a><div class="titlepage"></div>
32
+ <div class="refnamediv"><table width="100%"><tr>
33
+ <td valign="top">
34
+ <h2><span class="refentrytitle"><a name="GtkTextView.top_of_page"></a>GtkTextView</span></h2>
35
+ <p>GtkTextView — Widget that displays a GtkTextBuffer</p>
36
+ </td>
37
+ <td class="gallery_image" valign="top" align="right"><img src="multiline-text.png"></td>
38
+ </tr></table></div>
39
+ <div class="refsect1">
40
+ <a name="GtkTextView.functions"></a><h2>Functions</h2>
41
+ <div class="informaltable"><table width="100%" border="0">
42
+ <colgroup>
43
+ <col width="150px" class="functions_return">
44
+ <col class="functions_name">
45
+ </colgroup>
46
+ <tbody>
47
+ <tr>
48
+ <td class="function_type">
49
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
50
+ </td>
51
+ <td class="function_name">
52
+ <a class="link" href="GtkTextView.html#gtk-text-view-new" title="gtk_text_view_new ()">gtk_text_view_new</a> <span class="c_punctuation">()</span>
53
+ </td>
54
+ </tr>
55
+ <tr>
56
+ <td class="function_type">
57
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
58
+ </td>
59
+ <td class="function_name">
60
+ <a class="link" href="GtkTextView.html#gtk-text-view-new-with-buffer" title="gtk_text_view_new_with_buffer ()">gtk_text_view_new_with_buffer</a> <span class="c_punctuation">()</span>
61
+ </td>
62
+ </tr>
63
+ <tr>
64
+ <td class="function_type">
65
+ <span class="returnvalue">void</span>
66
+ </td>
67
+ <td class="function_name">
68
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-buffer" title="gtk_text_view_set_buffer ()">gtk_text_view_set_buffer</a> <span class="c_punctuation">()</span>
69
+ </td>
70
+ </tr>
71
+ <tr>
72
+ <td class="function_type">
73
+ <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="returnvalue">GtkTextBuffer</span></a> *
74
+ </td>
75
+ <td class="function_name">
76
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-buffer" title="gtk_text_view_get_buffer ()">gtk_text_view_get_buffer</a> <span class="c_punctuation">()</span>
77
+ </td>
78
+ </tr>
79
+ <tr>
80
+ <td class="function_type">
81
+ <span class="returnvalue">void</span>
82
+ </td>
83
+ <td class="function_name">
84
+ <a class="link" href="GtkTextView.html#gtk-text-view-scroll-to-mark" title="gtk_text_view_scroll_to_mark ()">gtk_text_view_scroll_to_mark</a> <span class="c_punctuation">()</span>
85
+ </td>
86
+ </tr>
87
+ <tr>
88
+ <td class="function_type">
89
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
90
+ </td>
91
+ <td class="function_name">
92
+ <a class="link" href="GtkTextView.html#gtk-text-view-scroll-to-iter" title="gtk_text_view_scroll_to_iter ()">gtk_text_view_scroll_to_iter</a> <span class="c_punctuation">()</span>
93
+ </td>
94
+ </tr>
95
+ <tr>
96
+ <td class="function_type">
97
+ <span class="returnvalue">void</span>
98
+ </td>
99
+ <td class="function_name">
100
+ <a class="link" href="GtkTextView.html#gtk-text-view-scroll-mark-onscreen" title="gtk_text_view_scroll_mark_onscreen ()">gtk_text_view_scroll_mark_onscreen</a> <span class="c_punctuation">()</span>
101
+ </td>
102
+ </tr>
103
+ <tr>
104
+ <td class="function_type">
105
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
106
+ </td>
107
+ <td class="function_name">
108
+ <a class="link" href="GtkTextView.html#gtk-text-view-move-mark-onscreen" title="gtk_text_view_move_mark_onscreen ()">gtk_text_view_move_mark_onscreen</a> <span class="c_punctuation">()</span>
109
+ </td>
110
+ </tr>
111
+ <tr>
112
+ <td class="function_type">
113
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
114
+ </td>
115
+ <td class="function_name">
116
+ <a class="link" href="GtkTextView.html#gtk-text-view-place-cursor-onscreen" title="gtk_text_view_place_cursor_onscreen ()">gtk_text_view_place_cursor_onscreen</a> <span class="c_punctuation">()</span>
117
+ </td>
118
+ </tr>
119
+ <tr>
120
+ <td class="function_type">
121
+ <span class="returnvalue">void</span>
122
+ </td>
123
+ <td class="function_name">
124
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-visible-rect" title="gtk_text_view_get_visible_rect ()">gtk_text_view_get_visible_rect</a> <span class="c_punctuation">()</span>
125
+ </td>
126
+ </tr>
127
+ <tr>
128
+ <td class="function_type">
129
+ <span class="returnvalue">void</span>
130
+ </td>
131
+ <td class="function_name">
132
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-iter-location" title="gtk_text_view_get_iter_location ()">gtk_text_view_get_iter_location</a> <span class="c_punctuation">()</span>
133
+ </td>
134
+ </tr>
135
+ <tr>
136
+ <td class="function_type">
137
+ <span class="returnvalue">void</span>
138
+ </td>
139
+ <td class="function_name">
140
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-line-at-y" title="gtk_text_view_get_line_at_y ()">gtk_text_view_get_line_at_y</a> <span class="c_punctuation">()</span>
141
+ </td>
142
+ </tr>
143
+ <tr>
144
+ <td class="function_type">
145
+ <span class="returnvalue">void</span>
146
+ </td>
147
+ <td class="function_name">
148
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-line-yrange" title="gtk_text_view_get_line_yrange ()">gtk_text_view_get_line_yrange</a> <span class="c_punctuation">()</span>
149
+ </td>
150
+ </tr>
151
+ <tr>
152
+ <td class="function_type">
153
+ <span class="returnvalue">void</span>
154
+ </td>
155
+ <td class="function_name">
156
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-iter-at-location" title="gtk_text_view_get_iter_at_location ()">gtk_text_view_get_iter_at_location</a> <span class="c_punctuation">()</span>
157
+ </td>
158
+ </tr>
159
+ <tr>
160
+ <td class="function_type">
161
+ <span class="returnvalue">void</span>
162
+ </td>
163
+ <td class="function_name">
164
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-iter-at-position" title="gtk_text_view_get_iter_at_position ()">gtk_text_view_get_iter_at_position</a> <span class="c_punctuation">()</span>
165
+ </td>
166
+ </tr>
167
+ <tr>
168
+ <td class="function_type">
169
+ <span class="returnvalue">void</span>
170
+ </td>
171
+ <td class="function_name">
172
+ <a class="link" href="GtkTextView.html#gtk-text-view-buffer-to-window-coords" title="gtk_text_view_buffer_to_window_coords ()">gtk_text_view_buffer_to_window_coords</a> <span class="c_punctuation">()</span>
173
+ </td>
174
+ </tr>
175
+ <tr>
176
+ <td class="function_type">
177
+ <span class="returnvalue">void</span>
178
+ </td>
179
+ <td class="function_name">
180
+ <a class="link" href="GtkTextView.html#gtk-text-view-window-to-buffer-coords" title="gtk_text_view_window_to_buffer_coords ()">gtk_text_view_window_to_buffer_coords</a> <span class="c_punctuation">()</span>
181
+ </td>
182
+ </tr>
183
+ <tr>
184
+ <td class="function_type">
185
+ <a href="http://library.gnome.org/devel/gdk3/gdk2-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> *
186
+ </td>
187
+ <td class="function_name">
188
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-window" title="gtk_text_view_get_window ()">gtk_text_view_get_window</a> <span class="c_punctuation">()</span>
189
+ </td>
190
+ </tr>
191
+ <tr>
192
+ <td class="function_type">
193
+ <a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="returnvalue">GtkTextWindowType</span></a>
194
+ </td>
195
+ <td class="function_name">
196
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-window-type" title="gtk_text_view_get_window_type ()">gtk_text_view_get_window_type</a> <span class="c_punctuation">()</span>
197
+ </td>
198
+ </tr>
199
+ <tr>
200
+ <td class="function_type">
201
+ <span class="returnvalue">void</span>
202
+ </td>
203
+ <td class="function_name">
204
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-border-window-size" title="gtk_text_view_set_border_window_size ()">gtk_text_view_set_border_window_size</a> <span class="c_punctuation">()</span>
205
+ </td>
206
+ </tr>
207
+ <tr>
208
+ <td class="function_type">
209
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
210
+ </td>
211
+ <td class="function_name">
212
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-border-window-size" title="gtk_text_view_get_border_window_size ()">gtk_text_view_get_border_window_size</a> <span class="c_punctuation">()</span>
213
+ </td>
214
+ </tr>
215
+ <tr>
216
+ <td class="function_type">
217
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
218
+ </td>
219
+ <td class="function_name">
220
+ <a class="link" href="GtkTextView.html#gtk-text-view-forward-display-line" title="gtk_text_view_forward_display_line ()">gtk_text_view_forward_display_line</a> <span class="c_punctuation">()</span>
221
+ </td>
222
+ </tr>
223
+ <tr>
224
+ <td class="function_type">
225
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
226
+ </td>
227
+ <td class="function_name">
228
+ <a class="link" href="GtkTextView.html#gtk-text-view-backward-display-line" title="gtk_text_view_backward_display_line ()">gtk_text_view_backward_display_line</a> <span class="c_punctuation">()</span>
229
+ </td>
230
+ </tr>
231
+ <tr>
232
+ <td class="function_type">
233
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
234
+ </td>
235
+ <td class="function_name">
236
+ <a class="link" href="GtkTextView.html#gtk-text-view-forward-display-line-end" title="gtk_text_view_forward_display_line_end ()">gtk_text_view_forward_display_line_end</a> <span class="c_punctuation">()</span>
237
+ </td>
238
+ </tr>
239
+ <tr>
240
+ <td class="function_type">
241
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
242
+ </td>
243
+ <td class="function_name">
244
+ <a class="link" href="GtkTextView.html#gtk-text-view-backward-display-line-start" title="gtk_text_view_backward_display_line_start ()">gtk_text_view_backward_display_line_start</a> <span class="c_punctuation">()</span>
245
+ </td>
246
+ </tr>
247
+ <tr>
248
+ <td class="function_type">
249
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
250
+ </td>
251
+ <td class="function_name">
252
+ <a class="link" href="GtkTextView.html#gtk-text-view-starts-display-line" title="gtk_text_view_starts_display_line ()">gtk_text_view_starts_display_line</a> <span class="c_punctuation">()</span>
253
+ </td>
254
+ </tr>
255
+ <tr>
256
+ <td class="function_type">
257
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
258
+ </td>
259
+ <td class="function_name">
260
+ <a class="link" href="GtkTextView.html#gtk-text-view-move-visually" title="gtk_text_view_move_visually ()">gtk_text_view_move_visually</a> <span class="c_punctuation">()</span>
261
+ </td>
262
+ </tr>
263
+ <tr>
264
+ <td class="function_type">
265
+ <span class="returnvalue">void</span>
266
+ </td>
267
+ <td class="function_name">
268
+ <a class="link" href="GtkTextView.html#gtk-text-view-add-child-at-anchor" title="gtk_text_view_add_child_at_anchor ()">gtk_text_view_add_child_at_anchor</a> <span class="c_punctuation">()</span>
269
+ </td>
270
+ </tr>
271
+ <tr>
272
+ <td class="function_type">
273
+ <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="returnvalue">GtkTextChildAnchor</span></a> *
274
+ </td>
275
+ <td class="function_name">
276
+ <a class="link" href="GtkTextView.html#gtk-text-child-anchor-new" title="gtk_text_child_anchor_new ()">gtk_text_child_anchor_new</a> <span class="c_punctuation">()</span>
277
+ </td>
278
+ </tr>
279
+ <tr>
280
+ <td class="function_type">
281
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
282
+ </td>
283
+ <td class="function_name">
284
+ <a class="link" href="GtkTextView.html#gtk-text-child-anchor-get-widgets" title="gtk_text_child_anchor_get_widgets ()">gtk_text_child_anchor_get_widgets</a> <span class="c_punctuation">()</span>
285
+ </td>
286
+ </tr>
287
+ <tr>
288
+ <td class="function_type">
289
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
290
+ </td>
291
+ <td class="function_name">
292
+ <a class="link" href="GtkTextView.html#gtk-text-child-anchor-get-deleted" title="gtk_text_child_anchor_get_deleted ()">gtk_text_child_anchor_get_deleted</a> <span class="c_punctuation">()</span>
293
+ </td>
294
+ </tr>
295
+ <tr>
296
+ <td class="function_type">
297
+ <span class="returnvalue">void</span>
298
+ </td>
299
+ <td class="function_name">
300
+ <a class="link" href="GtkTextView.html#gtk-text-view-add-child-in-window" title="gtk_text_view_add_child_in_window ()">gtk_text_view_add_child_in_window</a> <span class="c_punctuation">()</span>
301
+ </td>
302
+ </tr>
303
+ <tr>
304
+ <td class="function_type">
305
+ <span class="returnvalue">void</span>
306
+ </td>
307
+ <td class="function_name">
308
+ <a class="link" href="GtkTextView.html#gtk-text-view-move-child" title="gtk_text_view_move_child ()">gtk_text_view_move_child</a> <span class="c_punctuation">()</span>
309
+ </td>
310
+ </tr>
311
+ <tr>
312
+ <td class="function_type">
313
+ <span class="returnvalue">void</span>
314
+ </td>
315
+ <td class="function_name">
316
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-wrap-mode" title="gtk_text_view_set_wrap_mode ()">gtk_text_view_set_wrap_mode</a> <span class="c_punctuation">()</span>
317
+ </td>
318
+ </tr>
319
+ <tr>
320
+ <td class="function_type">
321
+ <a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="returnvalue">GtkWrapMode</span></a>
322
+ </td>
323
+ <td class="function_name">
324
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-wrap-mode" title="gtk_text_view_get_wrap_mode ()">gtk_text_view_get_wrap_mode</a> <span class="c_punctuation">()</span>
325
+ </td>
326
+ </tr>
327
+ <tr>
328
+ <td class="function_type">
329
+ <span class="returnvalue">void</span>
330
+ </td>
331
+ <td class="function_name">
332
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-editable" title="gtk_text_view_set_editable ()">gtk_text_view_set_editable</a> <span class="c_punctuation">()</span>
333
+ </td>
334
+ </tr>
335
+ <tr>
336
+ <td class="function_type">
337
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
338
+ </td>
339
+ <td class="function_name">
340
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-editable" title="gtk_text_view_get_editable ()">gtk_text_view_get_editable</a> <span class="c_punctuation">()</span>
341
+ </td>
342
+ </tr>
343
+ <tr>
344
+ <td class="function_type">
345
+ <span class="returnvalue">void</span>
346
+ </td>
347
+ <td class="function_name">
348
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-cursor-visible" title="gtk_text_view_set_cursor_visible ()">gtk_text_view_set_cursor_visible</a> <span class="c_punctuation">()</span>
349
+ </td>
350
+ </tr>
351
+ <tr>
352
+ <td class="function_type">
353
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
354
+ </td>
355
+ <td class="function_name">
356
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-cursor-visible" title="gtk_text_view_get_cursor_visible ()">gtk_text_view_get_cursor_visible</a> <span class="c_punctuation">()</span>
357
+ </td>
358
+ </tr>
359
+ <tr>
360
+ <td class="function_type">
361
+ <span class="returnvalue">void</span>
362
+ </td>
363
+ <td class="function_name">
364
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-overwrite" title="gtk_text_view_set_overwrite ()">gtk_text_view_set_overwrite</a> <span class="c_punctuation">()</span>
365
+ </td>
366
+ </tr>
367
+ <tr>
368
+ <td class="function_type">
369
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
370
+ </td>
371
+ <td class="function_name">
372
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-overwrite" title="gtk_text_view_get_overwrite ()">gtk_text_view_get_overwrite</a> <span class="c_punctuation">()</span>
373
+ </td>
374
+ </tr>
375
+ <tr>
376
+ <td class="function_type">
377
+ <span class="returnvalue">void</span>
378
+ </td>
379
+ <td class="function_name">
380
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-pixels-above-lines" title="gtk_text_view_set_pixels_above_lines ()">gtk_text_view_set_pixels_above_lines</a> <span class="c_punctuation">()</span>
381
+ </td>
382
+ </tr>
383
+ <tr>
384
+ <td class="function_type">
385
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
386
+ </td>
387
+ <td class="function_name">
388
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-pixels-above-lines" title="gtk_text_view_get_pixels_above_lines ()">gtk_text_view_get_pixels_above_lines</a> <span class="c_punctuation">()</span>
389
+ </td>
390
+ </tr>
391
+ <tr>
392
+ <td class="function_type">
393
+ <span class="returnvalue">void</span>
394
+ </td>
395
+ <td class="function_name">
396
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-pixels-below-lines" title="gtk_text_view_set_pixels_below_lines ()">gtk_text_view_set_pixels_below_lines</a> <span class="c_punctuation">()</span>
397
+ </td>
398
+ </tr>
399
+ <tr>
400
+ <td class="function_type">
401
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
402
+ </td>
403
+ <td class="function_name">
404
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-pixels-below-lines" title="gtk_text_view_get_pixels_below_lines ()">gtk_text_view_get_pixels_below_lines</a> <span class="c_punctuation">()</span>
405
+ </td>
406
+ </tr>
407
+ <tr>
408
+ <td class="function_type">
409
+ <span class="returnvalue">void</span>
410
+ </td>
411
+ <td class="function_name">
412
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-pixels-inside-wrap" title="gtk_text_view_set_pixels_inside_wrap ()">gtk_text_view_set_pixels_inside_wrap</a> <span class="c_punctuation">()</span>
413
+ </td>
414
+ </tr>
415
+ <tr>
416
+ <td class="function_type">
417
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
418
+ </td>
419
+ <td class="function_name">
420
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-pixels-inside-wrap" title="gtk_text_view_get_pixels_inside_wrap ()">gtk_text_view_get_pixels_inside_wrap</a> <span class="c_punctuation">()</span>
421
+ </td>
422
+ </tr>
423
+ <tr>
424
+ <td class="function_type">
425
+ <span class="returnvalue">void</span>
426
+ </td>
427
+ <td class="function_name">
428
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-justification" title="gtk_text_view_set_justification ()">gtk_text_view_set_justification</a> <span class="c_punctuation">()</span>
429
+ </td>
430
+ </tr>
431
+ <tr>
432
+ <td class="function_type">
433
+ <a class="link" href="gtk2-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="returnvalue">GtkJustification</span></a>
434
+ </td>
435
+ <td class="function_name">
436
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-justification" title="gtk_text_view_get_justification ()">gtk_text_view_get_justification</a> <span class="c_punctuation">()</span>
437
+ </td>
438
+ </tr>
439
+ <tr>
440
+ <td class="function_type">
441
+ <span class="returnvalue">void</span>
442
+ </td>
443
+ <td class="function_name">
444
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-left-margin" title="gtk_text_view_set_left_margin ()">gtk_text_view_set_left_margin</a> <span class="c_punctuation">()</span>
445
+ </td>
446
+ </tr>
447
+ <tr>
448
+ <td class="function_type">
449
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
450
+ </td>
451
+ <td class="function_name">
452
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-left-margin" title="gtk_text_view_get_left_margin ()">gtk_text_view_get_left_margin</a> <span class="c_punctuation">()</span>
453
+ </td>
454
+ </tr>
455
+ <tr>
456
+ <td class="function_type">
457
+ <span class="returnvalue">void</span>
458
+ </td>
459
+ <td class="function_name">
460
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-right-margin" title="gtk_text_view_set_right_margin ()">gtk_text_view_set_right_margin</a> <span class="c_punctuation">()</span>
461
+ </td>
462
+ </tr>
463
+ <tr>
464
+ <td class="function_type">
465
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
466
+ </td>
467
+ <td class="function_name">
468
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-right-margin" title="gtk_text_view_get_right_margin ()">gtk_text_view_get_right_margin</a> <span class="c_punctuation">()</span>
469
+ </td>
470
+ </tr>
471
+ <tr>
472
+ <td class="function_type">
473
+ <span class="returnvalue">void</span>
474
+ </td>
475
+ <td class="function_name">
476
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-indent" title="gtk_text_view_set_indent ()">gtk_text_view_set_indent</a> <span class="c_punctuation">()</span>
477
+ </td>
478
+ </tr>
479
+ <tr>
480
+ <td class="function_type">
481
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
482
+ </td>
483
+ <td class="function_name">
484
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-indent" title="gtk_text_view_get_indent ()">gtk_text_view_get_indent</a> <span class="c_punctuation">()</span>
485
+ </td>
486
+ </tr>
487
+ <tr>
488
+ <td class="function_type">
489
+ <span class="returnvalue">void</span>
490
+ </td>
491
+ <td class="function_name">
492
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-tabs" title="gtk_text_view_set_tabs ()">gtk_text_view_set_tabs</a> <span class="c_punctuation">()</span>
493
+ </td>
494
+ </tr>
495
+ <tr>
496
+ <td class="function_type">
497
+ <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Tab-Stops.html#PangoTabArray"><span class="returnvalue">PangoTabArray</span></a> *
498
+ </td>
499
+ <td class="function_name">
500
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-tabs" title="gtk_text_view_get_tabs ()">gtk_text_view_get_tabs</a> <span class="c_punctuation">()</span>
501
+ </td>
502
+ </tr>
503
+ <tr>
504
+ <td class="function_type">
505
+ <span class="returnvalue">void</span>
506
+ </td>
507
+ <td class="function_name">
508
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-accepts-tab" title="gtk_text_view_set_accepts_tab ()">gtk_text_view_set_accepts_tab</a> <span class="c_punctuation">()</span>
509
+ </td>
510
+ </tr>
511
+ <tr>
512
+ <td class="function_type">
513
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
514
+ </td>
515
+ <td class="function_name">
516
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-accepts-tab" title="gtk_text_view_get_accepts_tab ()">gtk_text_view_get_accepts_tab</a> <span class="c_punctuation">()</span>
517
+ </td>
518
+ </tr>
519
+ <tr>
520
+ <td class="function_type">
521
+ <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> *
522
+ </td>
523
+ <td class="function_name">
524
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-default-attributes" title="gtk_text_view_get_default_attributes ()">gtk_text_view_get_default_attributes</a> <span class="c_punctuation">()</span>
525
+ </td>
526
+ </tr>
527
+ <tr>
528
+ <td class="function_type">
529
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
530
+ </td>
531
+ <td class="function_name">
532
+ <a class="link" href="GtkTextView.html#gtk-text-view-im-context-filter-keypress" title="gtk_text_view_im_context_filter_keypress ()">gtk_text_view_im_context_filter_keypress</a> <span class="c_punctuation">()</span>
533
+ </td>
534
+ </tr>
535
+ <tr>
536
+ <td class="function_type">
537
+ <span class="returnvalue">void</span>
538
+ </td>
539
+ <td class="function_name">
540
+ <a class="link" href="GtkTextView.html#gtk-text-view-reset-im-context" title="gtk_text_view_reset_im_context ()">gtk_text_view_reset_im_context</a> <span class="c_punctuation">()</span>
541
+ </td>
542
+ </tr>
543
+ <tr>
544
+ <td class="function_type">
545
+ <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> *
546
+ </td>
547
+ <td class="function_name">
548
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-hadjustment" title="gtk_text_view_get_hadjustment ()">gtk_text_view_get_hadjustment</a> <span class="c_punctuation">()</span>
549
+ </td>
550
+ </tr>
551
+ <tr>
552
+ <td class="function_type">
553
+ <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> *
554
+ </td>
555
+ <td class="function_name">
556
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-vadjustment" title="gtk_text_view_get_vadjustment ()">gtk_text_view_get_vadjustment</a> <span class="c_punctuation">()</span>
557
+ </td>
558
+ </tr>
559
+ <tr>
560
+ <td class="define_keyword">#define</td>
561
+ <td class="function_name"><a class="link" href="GtkTextView.html#GTK-TEXT-VIEW-PRIORITY-VALIDATE:CAPS" title="GTK_TEXT_VIEW_PRIORITY_VALIDATE">GTK_TEXT_VIEW_PRIORITY_VALIDATE</a></td>
562
+ </tr>
563
+ </tbody>
564
+ </table></div>
565
+ </div>
566
+ <div class="refsect1">
567
+ <a name="GtkTextView.properties"></a><h2>Properties</h2>
568
+ <div class="informaltable"><table border="0">
569
+ <colgroup>
570
+ <col width="150px" class="properties_type">
571
+ <col width="300px" class="properties_name">
572
+ <col width="200px" class="properties_flags">
573
+ </colgroup>
574
+ <tbody>
575
+ <tr>
576
+ <td class="property_type"><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></td>
577
+ <td class="property_name"><a class="link" href="GtkTextView.html#GtkTextView--accepts-tab" title="The “accepts-tab” property">accepts-tab</a></td>
578
+ <td class="property_flags">Read / Write</td>
579
+ </tr>
580
+ <tr>
581
+ <td class="property_type">
582
+ <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *</td>
583
+ <td class="property_name"><a class="link" href="GtkTextView.html#GtkTextView--buffer" title="The “buffer” property">buffer</a></td>
584
+ <td class="property_flags">Read / Write</td>
585
+ </tr>
586
+ <tr>
587
+ <td class="property_type"><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></td>
588
+ <td class="property_name"><a class="link" href="GtkTextView.html#GtkTextView--cursor-visible" title="The “cursor-visible” property">cursor-visible</a></td>
589
+ <td class="property_flags">Read / Write</td>
590
+ </tr>
591
+ <tr>
592
+ <td class="property_type"><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></td>
593
+ <td class="property_name"><a class="link" href="GtkTextView.html#GtkTextView--editable" title="The “editable” property">editable</a></td>
594
+ <td class="property_flags">Read / Write</td>
595
+ </tr>
596
+ <tr>
597
+ <td class="property_type">
598
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
599
+ <td class="property_name"><a class="link" href="GtkTextView.html#GtkTextView--im-module" title="The “im-module” property">im-module</a></td>
600
+ <td class="property_flags">Read / Write</td>
601
+ </tr>
602
+ <tr>
603
+ <td class="property_type"><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></td>
604
+ <td class="property_name"><a class="link" href="GtkTextView.html#GtkTextView--indent" title="The “indent” property">indent</a></td>
605
+ <td class="property_flags">Read / Write</td>
606
+ </tr>
607
+ <tr>
608
+ <td class="property_type"><a class="link" href="gtk2-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a></td>
609
+ <td class="property_name"><a class="link" href="GtkTextView.html#GtkTextView--justification" title="The “justification” property">justification</a></td>
610
+ <td class="property_flags">Read / Write</td>
611
+ </tr>
612
+ <tr>
613
+ <td class="property_type"><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></td>
614
+ <td class="property_name"><a class="link" href="GtkTextView.html#GtkTextView--left-margin" title="The “left-margin” property">left-margin</a></td>
615
+ <td class="property_flags">Read / Write</td>
616
+ </tr>
617
+ <tr>
618
+ <td class="property_type"><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></td>
619
+ <td class="property_name"><a class="link" href="GtkTextView.html#GtkTextView--overwrite" title="The “overwrite” property">overwrite</a></td>
620
+ <td class="property_flags">Read / Write</td>
621
+ </tr>
622
+ <tr>
623
+ <td class="property_type"><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></td>
624
+ <td class="property_name"><a class="link" href="GtkTextView.html#GtkTextView--pixels-above-lines" title="The “pixels-above-lines” property">pixels-above-lines</a></td>
625
+ <td class="property_flags">Read / Write</td>
626
+ </tr>
627
+ <tr>
628
+ <td class="property_type"><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></td>
629
+ <td class="property_name"><a class="link" href="GtkTextView.html#GtkTextView--pixels-below-lines" title="The “pixels-below-lines” property">pixels-below-lines</a></td>
630
+ <td class="property_flags">Read / Write</td>
631
+ </tr>
632
+ <tr>
633
+ <td class="property_type"><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></td>
634
+ <td class="property_name"><a class="link" href="GtkTextView.html#GtkTextView--pixels-inside-wrap" title="The “pixels-inside-wrap” property">pixels-inside-wrap</a></td>
635
+ <td class="property_flags">Read / Write</td>
636
+ </tr>
637
+ <tr>
638
+ <td class="property_type"><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></td>
639
+ <td class="property_name"><a class="link" href="GtkTextView.html#GtkTextView--right-margin" title="The “right-margin” property">right-margin</a></td>
640
+ <td class="property_flags">Read / Write</td>
641
+ </tr>
642
+ <tr>
643
+ <td class="property_type">
644
+ <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Tab-Stops.html#PangoTabArray"><span class="type">PangoTabArray</span></a> *</td>
645
+ <td class="property_name"><a class="link" href="GtkTextView.html#GtkTextView--tabs" title="The “tabs” property">tabs</a></td>
646
+ <td class="property_flags">Read / Write</td>
647
+ </tr>
648
+ <tr>
649
+ <td class="property_type"><a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="type">GtkWrapMode</span></a></td>
650
+ <td class="property_name"><a class="link" href="GtkTextView.html#GtkTextView--wrap-mode" title="The “wrap-mode” property">wrap-mode</a></td>
651
+ <td class="property_flags">Read / Write</td>
652
+ </tr>
653
+ </tbody>
654
+ </table></div>
655
+ </div>
656
+ <div class="refsect1">
657
+ <a name="GtkTextView.style-properties"></a><h2>Style Properties</h2>
658
+ <div class="informaltable"><table border="0">
659
+ <colgroup>
660
+ <col width="150px" class="style_properties_type">
661
+ <col width="300px" class="style_properties_name">
662
+ <col width="200px" class="style_properties_flags">
663
+ </colgroup>
664
+ <tbody><tr>
665
+ <td class="property_type">
666
+ <a href="http://library.gnome.org/devel/gdk3/gdk2-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *</td>
667
+ <td class="property_name"><a class="link" href="GtkTextView.html#GtkTextView--s-error-underline-color" title="The “error-underline-color” style property">error-underline-color</a></td>
668
+ <td class="property_flags">Read</td>
669
+ </tr></tbody>
670
+ </table></div>
671
+ </div>
672
+ <div class="refsect1">
673
+ <a name="GtkTextView.signals"></a><h2>Signals</h2>
674
+ <div class="informaltable"><table border="0">
675
+ <colgroup>
676
+ <col width="150px" class="signals_return">
677
+ <col width="300px" class="signals_name">
678
+ <col width="200px" class="signals_flags">
679
+ </colgroup>
680
+ <tbody>
681
+ <tr>
682
+ <td class="signal_type"><span class="returnvalue">void</span></td>
683
+ <td class="signal_name"><a class="link" href="GtkTextView.html#GtkTextView-backspace" title="The “backspace” signal">backspace</a></td>
684
+ <td class="signal_flags">Action</td>
685
+ </tr>
686
+ <tr>
687
+ <td class="signal_type"><span class="returnvalue">void</span></td>
688
+ <td class="signal_name"><a class="link" href="GtkTextView.html#GtkTextView-copy-clipboard" title="The “copy-clipboard” signal">copy-clipboard</a></td>
689
+ <td class="signal_flags">Action</td>
690
+ </tr>
691
+ <tr>
692
+ <td class="signal_type"><span class="returnvalue">void</span></td>
693
+ <td class="signal_name"><a class="link" href="GtkTextView.html#GtkTextView-cut-clipboard" title="The “cut-clipboard” signal">cut-clipboard</a></td>
694
+ <td class="signal_flags">Action</td>
695
+ </tr>
696
+ <tr>
697
+ <td class="signal_type"><span class="returnvalue">void</span></td>
698
+ <td class="signal_name"><a class="link" href="GtkTextView.html#GtkTextView-delete-from-cursor" title="The “delete-from-cursor” signal">delete-from-cursor</a></td>
699
+ <td class="signal_flags">Action</td>
700
+ </tr>
701
+ <tr>
702
+ <td class="signal_type"><span class="returnvalue">void</span></td>
703
+ <td class="signal_name"><a class="link" href="GtkTextView.html#GtkTextView-insert-at-cursor" title="The “insert-at-cursor” signal">insert-at-cursor</a></td>
704
+ <td class="signal_flags">Action</td>
705
+ </tr>
706
+ <tr>
707
+ <td class="signal_type"><span class="returnvalue">void</span></td>
708
+ <td class="signal_name"><a class="link" href="GtkTextView.html#GtkTextView-move-cursor" title="The “move-cursor” signal">move-cursor</a></td>
709
+ <td class="signal_flags">Action</td>
710
+ </tr>
711
+ <tr>
712
+ <td class="signal_type"><span class="returnvalue">void</span></td>
713
+ <td class="signal_name"><a class="link" href="GtkTextView.html#GtkTextView-move-viewport" title="The “move-viewport” signal">move-viewport</a></td>
714
+ <td class="signal_flags">Action</td>
715
+ </tr>
716
+ <tr>
717
+ <td class="signal_type"><span class="returnvalue">void</span></td>
718
+ <td class="signal_name"><a class="link" href="GtkTextView.html#GtkTextView-page-horizontally" title="The “page-horizontally” signal">page-horizontally</a></td>
719
+ <td class="signal_flags">Action</td>
720
+ </tr>
721
+ <tr>
722
+ <td class="signal_type"><span class="returnvalue">void</span></td>
723
+ <td class="signal_name"><a class="link" href="GtkTextView.html#GtkTextView-paste-clipboard" title="The “paste-clipboard” signal">paste-clipboard</a></td>
724
+ <td class="signal_flags">Action</td>
725
+ </tr>
726
+ <tr>
727
+ <td class="signal_type"><span class="returnvalue">void</span></td>
728
+ <td class="signal_name"><a class="link" href="GtkTextView.html#GtkTextView-populate-popup" title="The “populate-popup” signal">populate-popup</a></td>
729
+ <td class="signal_flags">Run Last</td>
730
+ </tr>
731
+ <tr>
732
+ <td class="signal_type"><span class="returnvalue">void</span></td>
733
+ <td class="signal_name"><a class="link" href="GtkTextView.html#GtkTextView-preedit-changed" title="The “preedit-changed” signal">preedit-changed</a></td>
734
+ <td class="signal_flags">Action</td>
735
+ </tr>
736
+ <tr>
737
+ <td class="signal_type"><span class="returnvalue">void</span></td>
738
+ <td class="signal_name"><a class="link" href="GtkTextView.html#GtkTextView-select-all" title="The “select-all” signal">select-all</a></td>
739
+ <td class="signal_flags">Action</td>
740
+ </tr>
741
+ <tr>
742
+ <td class="signal_type"><span class="returnvalue">void</span></td>
743
+ <td class="signal_name"><a class="link" href="GtkTextView.html#GtkTextView-set-anchor" title="The “set-anchor” signal">set-anchor</a></td>
744
+ <td class="signal_flags">Action</td>
745
+ </tr>
746
+ <tr>
747
+ <td class="signal_type"><span class="returnvalue">void</span></td>
748
+ <td class="signal_name"><a class="link" href="GtkTextView.html#GtkTextView-set-scroll-adjustments" title="The “set-scroll-adjustments” signal">set-scroll-adjustments</a></td>
749
+ <td class="signal_flags">Action</td>
750
+ </tr>
751
+ <tr>
752
+ <td class="signal_type"><span class="returnvalue">void</span></td>
753
+ <td class="signal_name"><a class="link" href="GtkTextView.html#GtkTextView-toggle-cursor-visible" title="The “toggle-cursor-visible” signal">toggle-cursor-visible</a></td>
754
+ <td class="signal_flags">Action</td>
755
+ </tr>
756
+ <tr>
757
+ <td class="signal_type"><span class="returnvalue">void</span></td>
758
+ <td class="signal_name"><a class="link" href="GtkTextView.html#GtkTextView-toggle-overwrite" title="The “toggle-overwrite” signal">toggle-overwrite</a></td>
759
+ <td class="signal_flags">Action</td>
760
+ </tr>
761
+ </tbody>
762
+ </table></div>
763
+ </div>
764
+ <a name="GtkTextChildAnchor"></a><div class="refsect1">
765
+ <a name="GtkTextView.other"></a><h2>Types and Values</h2>
766
+ <div class="informaltable"><table width="100%" border="0">
767
+ <colgroup>
768
+ <col width="150px" class="name">
769
+ <col class="description">
770
+ </colgroup>
771
+ <tbody>
772
+ <tr>
773
+ <td class="datatype_keyword">struct</td>
774
+ <td class="function_name"><a class="link" href="GtkTextView.html#GtkTextView-struct" title="struct GtkTextView">GtkTextView</a></td>
775
+ </tr>
776
+ <tr>
777
+ <td class="datatype_keyword">enum</td>
778
+ <td class="function_name"><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType">GtkTextWindowType</a></td>
779
+ </tr>
780
+ <tr>
781
+ <td class="datatype_keyword">struct</td>
782
+ <td class="function_name"><a class="link" href="GtkTextView.html#GtkTextChildAnchor-struct" title="struct GtkTextChildAnchor">GtkTextChildAnchor</a></td>
783
+ </tr>
784
+ </tbody>
785
+ </table></div>
786
+ </div>
787
+ <div class="refsect1">
788
+ <a name="GtkTextView.object-hierarchy"></a><h2>Object Hierarchy</h2>
789
+ <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>
790
+ <span class="lineart">├──</span> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
791
+ <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GtkObject.html" title="GtkObject">GtkObject</a>
792
+ <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
793
+ <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="GtkContainer.html" title="GtkContainer">GtkContainer</a>
794
+ <span class="lineart">│</span> <span class="lineart">╰──</span> GtkTextView
795
+ <span class="lineart">╰──</span> GtkTextChildAnchor
796
+ </pre>
797
+ </div>
798
+ <div class="refsect1">
799
+ <a name="GtkTextView.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
800
+ <p>
801
+ GtkTextView implements
802
+ AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
803
+ </div>
804
+ <div class="refsect1">
805
+ <a name="GtkTextView.includes"></a><h2>Includes</h2>
806
+ <pre class="synopsis">#include &lt;gtk/gtk.h&gt;
807
+ </pre>
808
+ </div>
809
+ <div class="refsect1">
810
+ <a name="GtkTextView.description"></a><h2>Description</h2>
811
+ <p>
812
+ You may wish to begin by reading the <a class="link" href="TextWidget.html" title="Text Widget Overview">text widget
813
+ conceptual overview</a> which gives an overview of all the objects and data
814
+ types related to the text widget and how they work together.
815
+ </p>
816
+ <p>
817
+ </p>
818
+ </div>
819
+ <div class="refsect1">
820
+ <a name="GtkTextView.functions_details"></a><h2>Functions</h2>
821
+ <div class="refsect2">
822
+ <a name="gtk-text-view-new"></a><h3>gtk_text_view_new ()</h3>
823
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
824
+ gtk_text_view_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
825
+ <p>Creates a new <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>. If you don't call <a class="link" href="GtkTextView.html#gtk-text-view-set-buffer" title="gtk_text_view_set_buffer ()"><code class="function">gtk_text_view_set_buffer()</code></a>
826
+ before using the text view, an empty default buffer will be created
827
+ for you. Get the buffer with <a class="link" href="GtkTextView.html#gtk-text-view-get-buffer" title="gtk_text_view_get_buffer ()"><code class="function">gtk_text_view_get_buffer()</code></a>. If you want
828
+ to specify your own buffer, consider <a class="link" href="GtkTextView.html#gtk-text-view-new-with-buffer" title="gtk_text_view_new_with_buffer ()"><code class="function">gtk_text_view_new_with_buffer()</code></a>.</p>
829
+ <div class="refsect3">
830
+ <a name="id-1.4.8.8.13.2.5"></a><h4>Returns</h4>
831
+ <p> a new <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p>
832
+ <p></p>
833
+ </div>
834
+ </div>
835
+ <hr>
836
+ <div class="refsect2">
837
+ <a name="gtk-text-view-new-with-buffer"></a><h3>gtk_text_view_new_with_buffer ()</h3>
838
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
839
+ gtk_text_view_new_with_buffer (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
840
+ <p>Creates a new <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> widget displaying the buffer
841
+ <em class="parameter"><code>buffer</code></em>
842
+ . One buffer can be shared among many widgets.
843
+ <em class="parameter"><code>buffer</code></em>
844
+ may be <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to create a default buffer, in which case
845
+ this function is equivalent to <a class="link" href="GtkTextView.html#gtk-text-view-new" title="gtk_text_view_new ()"><code class="function">gtk_text_view_new()</code></a>. The
846
+ text view adds its own reference count to the buffer; it does not
847
+ take over an existing reference.</p>
848
+ <div class="refsect3">
849
+ <a name="id-1.4.8.8.13.3.5"></a><h4>Parameters</h4>
850
+ <div class="informaltable"><table width="100%" border="0">
851
+ <colgroup>
852
+ <col width="150px" class="parameters_name">
853
+ <col class="parameters_description">
854
+ <col width="200px" class="parameters_annotations">
855
+ </colgroup>
856
+ <tbody><tr>
857
+ <td class="parameter_name"><p>buffer</p></td>
858
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a></p></td>
859
+ <td class="parameter_annotations"> </td>
860
+ </tr></tbody>
861
+ </table></div>
862
+ </div>
863
+ <div class="refsect3">
864
+ <a name="id-1.4.8.8.13.3.6"></a><h4>Returns</h4>
865
+ <p> a new <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>.</p>
866
+ <p></p>
867
+ </div>
868
+ </div>
869
+ <hr>
870
+ <div class="refsect2">
871
+ <a name="gtk-text-view-set-buffer"></a><h3>gtk_text_view_set_buffer ()</h3>
872
+ <pre class="programlisting"><span class="returnvalue">void</span>
873
+ gtk_text_view_set_buffer (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
874
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
875
+ <p>Sets <em class="parameter"><code>buffer</code></em>
876
+ as the buffer being displayed by <em class="parameter"><code>text_view</code></em>
877
+ . The previous
878
+ buffer displayed by the text view is unreferenced, and a reference is
879
+ added to <em class="parameter"><code>buffer</code></em>
880
+ . If you owned a reference to <em class="parameter"><code>buffer</code></em>
881
+ before passing it
882
+ to this function, you must remove that reference yourself; <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
883
+ will not "adopt" it.</p>
884
+ <div class="refsect3">
885
+ <a name="id-1.4.8.8.13.4.5"></a><h4>Parameters</h4>
886
+ <div class="informaltable"><table width="100%" border="0">
887
+ <colgroup>
888
+ <col width="150px" class="parameters_name">
889
+ <col class="parameters_description">
890
+ <col width="200px" class="parameters_annotations">
891
+ </colgroup>
892
+ <tbody>
893
+ <tr>
894
+ <td class="parameter_name"><p>text_view</p></td>
895
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
896
+ <td class="parameter_annotations"> </td>
897
+ </tr>
898
+ <tr>
899
+ <td class="parameter_name"><p>buffer</p></td>
900
+ <td class="parameter_description"><p> a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>. </p></td>
901
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
902
+ </tr>
903
+ </tbody>
904
+ </table></div>
905
+ </div>
906
+ </div>
907
+ <hr>
908
+ <div class="refsect2">
909
+ <a name="gtk-text-view-get-buffer"></a><h3>gtk_text_view_get_buffer ()</h3>
910
+ <pre class="programlisting"><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="returnvalue">GtkTextBuffer</span></a> *
911
+ gtk_text_view_get_buffer (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
912
+ <p>Returns the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> being displayed by this text view.
913
+ The reference count on the buffer is not incremented; the caller
914
+ of this function won't own a new reference.</p>
915
+ <div class="refsect3">
916
+ <a name="id-1.4.8.8.13.5.5"></a><h4>Parameters</h4>
917
+ <div class="informaltable"><table width="100%" border="0">
918
+ <colgroup>
919
+ <col width="150px" class="parameters_name">
920
+ <col class="parameters_description">
921
+ <col width="200px" class="parameters_annotations">
922
+ </colgroup>
923
+ <tbody><tr>
924
+ <td class="parameter_name"><p>text_view</p></td>
925
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
926
+ <td class="parameter_annotations"> </td>
927
+ </tr></tbody>
928
+ </table></div>
929
+ </div>
930
+ <div class="refsect3">
931
+ <a name="id-1.4.8.8.13.5.6"></a><h4>Returns</h4>
932
+ <p> a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>. </p>
933
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
934
+ </div>
935
+ </div>
936
+ <hr>
937
+ <div class="refsect2">
938
+ <a name="gtk-text-view-scroll-to-mark"></a><h3>gtk_text_view_scroll_to_mark ()</h3>
939
+ <pre class="programlisting"><span class="returnvalue">void</span>
940
+ gtk_text_view_scroll_to_mark (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
941
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
942
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> within_margin</code></em>,
943
+ <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> use_align</code></em>,
944
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> xalign</code></em>,
945
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> yalign</code></em>);</pre>
946
+ <p>Scrolls <em class="parameter"><code>text_view</code></em>
947
+ so that <em class="parameter"><code>mark</code></em>
948
+ is on the screen in the position
949
+ indicated by <em class="parameter"><code>xalign</code></em>
950
+ and <em class="parameter"><code>yalign</code></em>
951
+ . An alignment of 0.0 indicates
952
+ left or top, 1.0 indicates right or bottom, 0.5 means center.
953
+ If <em class="parameter"><code>use_align</code></em>
954
+ is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, the text scrolls the minimal distance to
955
+ get the mark onscreen, possibly not scrolling at all. The effective
956
+ screen for purposes of this function is reduced by a margin of size
957
+ <em class="parameter"><code>within_margin</code></em>
958
+ .</p>
959
+ <div class="refsect3">
960
+ <a name="id-1.4.8.8.13.6.5"></a><h4>Parameters</h4>
961
+ <div class="informaltable"><table width="100%" border="0">
962
+ <colgroup>
963
+ <col width="150px" class="parameters_name">
964
+ <col class="parameters_description">
965
+ <col width="200px" class="parameters_annotations">
966
+ </colgroup>
967
+ <tbody>
968
+ <tr>
969
+ <td class="parameter_name"><p>text_view</p></td>
970
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
971
+ <td class="parameter_annotations"> </td>
972
+ </tr>
973
+ <tr>
974
+ <td class="parameter_name"><p>mark</p></td>
975
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a></p></td>
976
+ <td class="parameter_annotations"> </td>
977
+ </tr>
978
+ <tr>
979
+ <td class="parameter_name"><p>within_margin</p></td>
980
+ <td class="parameter_description"><p>margin as a [0.0,0.5) fraction of screen size</p></td>
981
+ <td class="parameter_annotations"> </td>
982
+ </tr>
983
+ <tr>
984
+ <td class="parameter_name"><p>use_align</p></td>
985
+ <td class="parameter_description"><p>whether to use alignment arguments (if <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, just
986
+ get the mark onscreen)</p></td>
987
+ <td class="parameter_annotations"> </td>
988
+ </tr>
989
+ <tr>
990
+ <td class="parameter_name"><p>xalign</p></td>
991
+ <td class="parameter_description"><p>horizontal alignment of mark within visible area</p></td>
992
+ <td class="parameter_annotations"> </td>
993
+ </tr>
994
+ <tr>
995
+ <td class="parameter_name"><p>yalign</p></td>
996
+ <td class="parameter_description"><p>vertical alignment of mark within visible area</p></td>
997
+ <td class="parameter_annotations"> </td>
998
+ </tr>
999
+ </tbody>
1000
+ </table></div>
1001
+ </div>
1002
+ </div>
1003
+ <hr>
1004
+ <div class="refsect2">
1005
+ <a name="gtk-text-view-scroll-to-iter"></a><h3>gtk_text_view_scroll_to_iter ()</h3>
1006
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1007
+ gtk_text_view_scroll_to_iter (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1008
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1009
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> within_margin</code></em>,
1010
+ <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> use_align</code></em>,
1011
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> xalign</code></em>,
1012
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> yalign</code></em>);</pre>
1013
+ <p>Scrolls <em class="parameter"><code>text_view</code></em>
1014
+ so that <em class="parameter"><code>iter</code></em>
1015
+ is on the screen in the position
1016
+ indicated by <em class="parameter"><code>xalign</code></em>
1017
+ and <em class="parameter"><code>yalign</code></em>
1018
+ . An alignment of 0.0 indicates
1019
+ left or top, 1.0 indicates right or bottom, 0.5 means center.
1020
+ If <em class="parameter"><code>use_align</code></em>
1021
+ is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, the text scrolls the minimal distance to
1022
+ get the mark onscreen, possibly not scrolling at all. The effective
1023
+ screen for purposes of this function is reduced by a margin of size
1024
+ <em class="parameter"><code>within_margin</code></em>
1025
+ .</p>
1026
+ <p>Note that this function uses the currently-computed height of the
1027
+ lines in the text buffer. Line heights are computed in an idle
1028
+ handler; so this function may not have the desired effect if it's
1029
+ called before the height computations. To avoid oddness, consider
1030
+ using <a class="link" href="GtkTextView.html#gtk-text-view-scroll-to-mark" title="gtk_text_view_scroll_to_mark ()"><code class="function">gtk_text_view_scroll_to_mark()</code></a> which saves a point to be
1031
+ scrolled to after line validation.</p>
1032
+ <div class="refsect3">
1033
+ <a name="id-1.4.8.8.13.7.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>text_view</p></td>
1043
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1044
+ <td class="parameter_annotations"> </td>
1045
+ </tr>
1046
+ <tr>
1047
+ <td class="parameter_name"><p>iter</p></td>
1048
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a></p></td>
1049
+ <td class="parameter_annotations"> </td>
1050
+ </tr>
1051
+ <tr>
1052
+ <td class="parameter_name"><p>within_margin</p></td>
1053
+ <td class="parameter_description"><p>margin as a [0.0,0.5) fraction of screen size</p></td>
1054
+ <td class="parameter_annotations"> </td>
1055
+ </tr>
1056
+ <tr>
1057
+ <td class="parameter_name"><p>use_align</p></td>
1058
+ <td class="parameter_description"><p>whether to use alignment arguments (if <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>,
1059
+ just get the mark onscreen)</p></td>
1060
+ <td class="parameter_annotations"> </td>
1061
+ </tr>
1062
+ <tr>
1063
+ <td class="parameter_name"><p>xalign</p></td>
1064
+ <td class="parameter_description"><p>horizontal alignment of mark within visible area</p></td>
1065
+ <td class="parameter_annotations"> </td>
1066
+ </tr>
1067
+ <tr>
1068
+ <td class="parameter_name"><p>yalign</p></td>
1069
+ <td class="parameter_description"><p>vertical alignment of mark within visible area</p></td>
1070
+ <td class="parameter_annotations"> </td>
1071
+ </tr>
1072
+ </tbody>
1073
+ </table></div>
1074
+ </div>
1075
+ <div class="refsect3">
1076
+ <a name="id-1.4.8.8.13.7.7"></a><h4>Returns</h4>
1077
+ <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if scrolling occurred</p>
1078
+ <p></p>
1079
+ </div>
1080
+ </div>
1081
+ <hr>
1082
+ <div class="refsect2">
1083
+ <a name="gtk-text-view-scroll-mark-onscreen"></a><h3>gtk_text_view_scroll_mark_onscreen ()</h3>
1084
+ <pre class="programlisting"><span class="returnvalue">void</span>
1085
+ gtk_text_view_scroll_mark_onscreen (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1086
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
1087
+ <p>Scrolls <em class="parameter"><code>text_view</code></em>
1088
+ the minimum distance such that <em class="parameter"><code>mark</code></em>
1089
+ is contained
1090
+ within the visible area of the widget.</p>
1091
+ <div class="refsect3">
1092
+ <a name="id-1.4.8.8.13.8.5"></a><h4>Parameters</h4>
1093
+ <div class="informaltable"><table width="100%" border="0">
1094
+ <colgroup>
1095
+ <col width="150px" class="parameters_name">
1096
+ <col class="parameters_description">
1097
+ <col width="200px" class="parameters_annotations">
1098
+ </colgroup>
1099
+ <tbody>
1100
+ <tr>
1101
+ <td class="parameter_name"><p>text_view</p></td>
1102
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1103
+ <td class="parameter_annotations"> </td>
1104
+ </tr>
1105
+ <tr>
1106
+ <td class="parameter_name"><p>mark</p></td>
1107
+ <td class="parameter_description"><p>a mark in the buffer for <em class="parameter"><code>text_view</code></em>
1108
+ </p></td>
1109
+ <td class="parameter_annotations"> </td>
1110
+ </tr>
1111
+ </tbody>
1112
+ </table></div>
1113
+ </div>
1114
+ </div>
1115
+ <hr>
1116
+ <div class="refsect2">
1117
+ <a name="gtk-text-view-move-mark-onscreen"></a><h3>gtk_text_view_move_mark_onscreen ()</h3>
1118
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1119
+ gtk_text_view_move_mark_onscreen (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1120
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
1121
+ <p>Moves a mark within the buffer so that it's
1122
+ located within the currently-visible text area.</p>
1123
+ <div class="refsect3">
1124
+ <a name="id-1.4.8.8.13.9.5"></a><h4>Parameters</h4>
1125
+ <div class="informaltable"><table width="100%" border="0">
1126
+ <colgroup>
1127
+ <col width="150px" class="parameters_name">
1128
+ <col class="parameters_description">
1129
+ <col width="200px" class="parameters_annotations">
1130
+ </colgroup>
1131
+ <tbody>
1132
+ <tr>
1133
+ <td class="parameter_name"><p>text_view</p></td>
1134
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1135
+ <td class="parameter_annotations"> </td>
1136
+ </tr>
1137
+ <tr>
1138
+ <td class="parameter_name"><p>mark</p></td>
1139
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a></p></td>
1140
+ <td class="parameter_annotations"> </td>
1141
+ </tr>
1142
+ </tbody>
1143
+ </table></div>
1144
+ </div>
1145
+ <div class="refsect3">
1146
+ <a name="id-1.4.8.8.13.9.6"></a><h4>Returns</h4>
1147
+ <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the mark moved (wasn't already onscreen)</p>
1148
+ <p></p>
1149
+ </div>
1150
+ </div>
1151
+ <hr>
1152
+ <div class="refsect2">
1153
+ <a name="gtk-text-view-place-cursor-onscreen"></a><h3>gtk_text_view_place_cursor_onscreen ()</h3>
1154
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1155
+ gtk_text_view_place_cursor_onscreen (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
1156
+ <p>Moves the cursor to the currently visible region of the
1157
+ buffer, it it isn't there already.</p>
1158
+ <div class="refsect3">
1159
+ <a name="id-1.4.8.8.13.10.5"></a><h4>Parameters</h4>
1160
+ <div class="informaltable"><table width="100%" border="0">
1161
+ <colgroup>
1162
+ <col width="150px" class="parameters_name">
1163
+ <col class="parameters_description">
1164
+ <col width="200px" class="parameters_annotations">
1165
+ </colgroup>
1166
+ <tbody><tr>
1167
+ <td class="parameter_name"><p>text_view</p></td>
1168
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1169
+ <td class="parameter_annotations"> </td>
1170
+ </tr></tbody>
1171
+ </table></div>
1172
+ </div>
1173
+ <div class="refsect3">
1174
+ <a name="id-1.4.8.8.13.10.6"></a><h4>Returns</h4>
1175
+ <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the cursor had to be moved.</p>
1176
+ <p></p>
1177
+ </div>
1178
+ </div>
1179
+ <hr>
1180
+ <div class="refsect2">
1181
+ <a name="gtk-text-view-get-visible-rect"></a><h3>gtk_text_view_get_visible_rect ()</h3>
1182
+ <pre class="programlisting"><span class="returnvalue">void</span>
1183
+ gtk_text_view_get_visible_rect (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1184
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *visible_rect</code></em>);</pre>
1185
+ <p>Fills <em class="parameter"><code>visible_rect</code></em>
1186
+ with the currently-visible
1187
+ region of the buffer, in buffer coordinates. Convert to window coordinates
1188
+ with <a class="link" href="GtkTextView.html#gtk-text-view-buffer-to-window-coords" title="gtk_text_view_buffer_to_window_coords ()"><code class="function">gtk_text_view_buffer_to_window_coords()</code></a>.</p>
1189
+ <div class="refsect3">
1190
+ <a name="id-1.4.8.8.13.11.5"></a><h4>Parameters</h4>
1191
+ <div class="informaltable"><table width="100%" border="0">
1192
+ <colgroup>
1193
+ <col width="150px" class="parameters_name">
1194
+ <col class="parameters_description">
1195
+ <col width="200px" class="parameters_annotations">
1196
+ </colgroup>
1197
+ <tbody>
1198
+ <tr>
1199
+ <td class="parameter_name"><p>text_view</p></td>
1200
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1201
+ <td class="parameter_annotations"> </td>
1202
+ </tr>
1203
+ <tr>
1204
+ <td class="parameter_name"><p>visible_rect</p></td>
1205
+ <td class="parameter_description"><p> rectangle to fill. </p></td>
1206
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
1207
+ </tr>
1208
+ </tbody>
1209
+ </table></div>
1210
+ </div>
1211
+ </div>
1212
+ <hr>
1213
+ <div class="refsect2">
1214
+ <a name="gtk-text-view-get-iter-location"></a><h3>gtk_text_view_get_iter_location ()</h3>
1215
+ <pre class="programlisting"><span class="returnvalue">void</span>
1216
+ gtk_text_view_get_iter_location (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1217
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1218
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *location</code></em>);</pre>
1219
+ <p>Gets a rectangle which roughly contains the character at <em class="parameter"><code>iter</code></em>
1220
+ .
1221
+ The rectangle position is in buffer coordinates; use
1222
+ <a class="link" href="GtkTextView.html#gtk-text-view-buffer-to-window-coords" title="gtk_text_view_buffer_to_window_coords ()"><code class="function">gtk_text_view_buffer_to_window_coords()</code></a> to convert these
1223
+ coordinates to coordinates for one of the windows in the text view.</p>
1224
+ <div class="refsect3">
1225
+ <a name="id-1.4.8.8.13.12.5"></a><h4>Parameters</h4>
1226
+ <div class="informaltable"><table width="100%" border="0">
1227
+ <colgroup>
1228
+ <col width="150px" class="parameters_name">
1229
+ <col class="parameters_description">
1230
+ <col width="200px" class="parameters_annotations">
1231
+ </colgroup>
1232
+ <tbody>
1233
+ <tr>
1234
+ <td class="parameter_name"><p>text_view</p></td>
1235
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1236
+ <td class="parameter_annotations"> </td>
1237
+ </tr>
1238
+ <tr>
1239
+ <td class="parameter_name"><p>iter</p></td>
1240
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a></p></td>
1241
+ <td class="parameter_annotations"> </td>
1242
+ </tr>
1243
+ <tr>
1244
+ <td class="parameter_name"><p>location</p></td>
1245
+ <td class="parameter_description"><p> bounds of the character at <em class="parameter"><code>iter</code></em>
1246
+ . </p></td>
1247
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
1248
+ </tr>
1249
+ </tbody>
1250
+ </table></div>
1251
+ </div>
1252
+ </div>
1253
+ <hr>
1254
+ <div class="refsect2">
1255
+ <a name="gtk-text-view-get-line-at-y"></a><h3>gtk_text_view_get_line_at_y ()</h3>
1256
+ <pre class="programlisting"><span class="returnvalue">void</span>
1257
+ gtk_text_view_get_line_at_y (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1258
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *target_iter</code></em>,
1259
+ <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>,
1260
+ <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_top</code></em>);</pre>
1261
+ <p>Gets the <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> at the start of the line containing
1262
+ the coordinate <em class="parameter"><code>y</code></em>
1263
+ . <em class="parameter"><code>y</code></em>
1264
+ is in buffer coordinates, convert from
1265
+ window coordinates with <a class="link" href="GtkTextView.html#gtk-text-view-window-to-buffer-coords" title="gtk_text_view_window_to_buffer_coords ()"><code class="function">gtk_text_view_window_to_buffer_coords()</code></a>.
1266
+ If non-<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, <em class="parameter"><code>line_top</code></em>
1267
+ will be filled with the coordinate of the top
1268
+ edge of the line.</p>
1269
+ <div class="refsect3">
1270
+ <a name="id-1.4.8.8.13.13.5"></a><h4>Parameters</h4>
1271
+ <div class="informaltable"><table width="100%" border="0">
1272
+ <colgroup>
1273
+ <col width="150px" class="parameters_name">
1274
+ <col class="parameters_description">
1275
+ <col width="200px" class="parameters_annotations">
1276
+ </colgroup>
1277
+ <tbody>
1278
+ <tr>
1279
+ <td class="parameter_name"><p>text_view</p></td>
1280
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1281
+ <td class="parameter_annotations"> </td>
1282
+ </tr>
1283
+ <tr>
1284
+ <td class="parameter_name"><p>target_iter</p></td>
1285
+ <td class="parameter_description"><p> a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>. </p></td>
1286
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
1287
+ </tr>
1288
+ <tr>
1289
+ <td class="parameter_name"><p>y</p></td>
1290
+ <td class="parameter_description"><p>a y coordinate</p></td>
1291
+ <td class="parameter_annotations"> </td>
1292
+ </tr>
1293
+ <tr>
1294
+ <td class="parameter_name"><p>line_top</p></td>
1295
+ <td class="parameter_description"><p> return location for top coordinate of the line. </p></td>
1296
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
1297
+ </tr>
1298
+ </tbody>
1299
+ </table></div>
1300
+ </div>
1301
+ </div>
1302
+ <hr>
1303
+ <div class="refsect2">
1304
+ <a name="gtk-text-view-get-line-yrange"></a><h3>gtk_text_view_get_line_yrange ()</h3>
1305
+ <pre class="programlisting"><span class="returnvalue">void</span>
1306
+ gtk_text_view_get_line_yrange (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1307
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1308
+ <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>,
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> *height</code></em>);</pre>
1310
+ <p>Gets the y coordinate of the top of the line containing <em class="parameter"><code>iter</code></em>
1311
+ ,
1312
+ and the height of the line. The coordinate is a buffer coordinate;
1313
+ convert to window coordinates with <a class="link" href="GtkTextView.html#gtk-text-view-buffer-to-window-coords" title="gtk_text_view_buffer_to_window_coords ()"><code class="function">gtk_text_view_buffer_to_window_coords()</code></a>.</p>
1314
+ <div class="refsect3">
1315
+ <a name="id-1.4.8.8.13.14.5"></a><h4>Parameters</h4>
1316
+ <div class="informaltable"><table width="100%" border="0">
1317
+ <colgroup>
1318
+ <col width="150px" class="parameters_name">
1319
+ <col class="parameters_description">
1320
+ <col width="200px" class="parameters_annotations">
1321
+ </colgroup>
1322
+ <tbody>
1323
+ <tr>
1324
+ <td class="parameter_name"><p>text_view</p></td>
1325
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1326
+ <td class="parameter_annotations"> </td>
1327
+ </tr>
1328
+ <tr>
1329
+ <td class="parameter_name"><p>iter</p></td>
1330
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a></p></td>
1331
+ <td class="parameter_annotations"> </td>
1332
+ </tr>
1333
+ <tr>
1334
+ <td class="parameter_name"><p>y</p></td>
1335
+ <td class="parameter_description"><p> return location for a y coordinate. </p></td>
1336
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
1337
+ </tr>
1338
+ <tr>
1339
+ <td class="parameter_name"><p>height</p></td>
1340
+ <td class="parameter_description"><p> return location for a height. </p></td>
1341
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
1342
+ </tr>
1343
+ </tbody>
1344
+ </table></div>
1345
+ </div>
1346
+ </div>
1347
+ <hr>
1348
+ <div class="refsect2">
1349
+ <a name="gtk-text-view-get-iter-at-location"></a><h3>gtk_text_view_get_iter_at_location ()</h3>
1350
+ <pre class="programlisting"><span class="returnvalue">void</span>
1351
+ gtk_text_view_get_iter_at_location (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1352
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1353
+ <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>,
1354
+ <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>
1355
+ <p>Retrieves the iterator at buffer coordinates <em class="parameter"><code>x</code></em>
1356
+ and <em class="parameter"><code>y</code></em>
1357
+ . Buffer
1358
+ coordinates are coordinates for the entire buffer, not just the
1359
+ currently-displayed portion. If you have coordinates from an
1360
+ event, you have to convert those to buffer coordinates with
1361
+ <a class="link" href="GtkTextView.html#gtk-text-view-window-to-buffer-coords" title="gtk_text_view_window_to_buffer_coords ()"><code class="function">gtk_text_view_window_to_buffer_coords()</code></a>.</p>
1362
+ <div class="refsect3">
1363
+ <a name="id-1.4.8.8.13.15.5"></a><h4>Parameters</h4>
1364
+ <div class="informaltable"><table width="100%" border="0">
1365
+ <colgroup>
1366
+ <col width="150px" class="parameters_name">
1367
+ <col class="parameters_description">
1368
+ <col width="200px" class="parameters_annotations">
1369
+ </colgroup>
1370
+ <tbody>
1371
+ <tr>
1372
+ <td class="parameter_name"><p>text_view</p></td>
1373
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1374
+ <td class="parameter_annotations"> </td>
1375
+ </tr>
1376
+ <tr>
1377
+ <td class="parameter_name"><p>iter</p></td>
1378
+ <td class="parameter_description"><p> a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>. </p></td>
1379
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
1380
+ </tr>
1381
+ <tr>
1382
+ <td class="parameter_name"><p>x</p></td>
1383
+ <td class="parameter_description"><p>x position, in buffer coordinates</p></td>
1384
+ <td class="parameter_annotations"> </td>
1385
+ </tr>
1386
+ <tr>
1387
+ <td class="parameter_name"><p>y</p></td>
1388
+ <td class="parameter_description"><p>y position, in buffer coordinates</p></td>
1389
+ <td class="parameter_annotations"> </td>
1390
+ </tr>
1391
+ </tbody>
1392
+ </table></div>
1393
+ </div>
1394
+ </div>
1395
+ <hr>
1396
+ <div class="refsect2">
1397
+ <a name="gtk-text-view-get-iter-at-position"></a><h3>gtk_text_view_get_iter_at_position ()</h3>
1398
+ <pre class="programlisting"><span class="returnvalue">void</span>
1399
+ gtk_text_view_get_iter_at_position (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1400
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1401
+ <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> *trailing</code></em>,
1402
+ <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>,
1403
+ <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>
1404
+ <p>Retrieves the iterator pointing to the character at buffer
1405
+ coordinates <em class="parameter"><code>x</code></em>
1406
+ and <em class="parameter"><code>y</code></em>
1407
+ . Buffer coordinates are coordinates for
1408
+ the entire buffer, not just the currently-displayed portion.
1409
+ If you have coordinates from an event, you have to convert
1410
+ those to buffer coordinates with
1411
+ <a class="link" href="GtkTextView.html#gtk-text-view-window-to-buffer-coords" title="gtk_text_view_window_to_buffer_coords ()"><code class="function">gtk_text_view_window_to_buffer_coords()</code></a>.</p>
1412
+ <p>Note that this is different from <a class="link" href="GtkTextView.html#gtk-text-view-get-iter-at-location" title="gtk_text_view_get_iter_at_location ()"><code class="function">gtk_text_view_get_iter_at_location()</code></a>,
1413
+ which returns cursor locations, i.e. positions <span class="emphasis"><em>between</em></span>
1414
+ characters.</p>
1415
+ <div class="refsect3">
1416
+ <a name="id-1.4.8.8.13.16.6"></a><h4>Parameters</h4>
1417
+ <div class="informaltable"><table width="100%" border="0">
1418
+ <colgroup>
1419
+ <col width="150px" class="parameters_name">
1420
+ <col class="parameters_description">
1421
+ <col width="200px" class="parameters_annotations">
1422
+ </colgroup>
1423
+ <tbody>
1424
+ <tr>
1425
+ <td class="parameter_name"><p>text_view</p></td>
1426
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1427
+ <td class="parameter_annotations"> </td>
1428
+ </tr>
1429
+ <tr>
1430
+ <td class="parameter_name"><p>iter</p></td>
1431
+ <td class="parameter_description"><p> a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>. </p></td>
1432
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
1433
+ </tr>
1434
+ <tr>
1435
+ <td class="parameter_name"><p>trailing</p></td>
1436
+ <td class="parameter_description"><p> if non-<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, location to store an integer indicating where
1437
+ in the grapheme the user clicked. It will either be
1438
+ zero, or the number of characters in the grapheme.
1439
+ 0 represents the trailing edge of the grapheme. </p></td>
1440
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1441
+ </tr>
1442
+ <tr>
1443
+ <td class="parameter_name"><p>x</p></td>
1444
+ <td class="parameter_description"><p>x position, in buffer coordinates</p></td>
1445
+ <td class="parameter_annotations"> </td>
1446
+ </tr>
1447
+ <tr>
1448
+ <td class="parameter_name"><p>y</p></td>
1449
+ <td class="parameter_description"><p>y position, in buffer coordinates</p></td>
1450
+ <td class="parameter_annotations"> </td>
1451
+ </tr>
1452
+ </tbody>
1453
+ </table></div>
1454
+ </div>
1455
+ <p class="since">Since 2.6</p>
1456
+ </div>
1457
+ <hr>
1458
+ <div class="refsect2">
1459
+ <a name="gtk-text-view-buffer-to-window-coords"></a><h3>gtk_text_view_buffer_to_window_coords ()</h3>
1460
+ <pre class="programlisting"><span class="returnvalue">void</span>
1461
+ gtk_text_view_buffer_to_window_coords (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1462
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> win</code></em>,
1463
+ <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> buffer_x</code></em>,
1464
+ <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> buffer_y</code></em>,
1465
+ <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> *window_x</code></em>,
1466
+ <em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *window_y</code></em>);</pre>
1467
+ <p>Converts coordinate (<em class="parameter"><code>buffer_x</code></em>
1468
+ , <em class="parameter"><code>buffer_y</code></em>
1469
+ ) to coordinates for the window
1470
+ <em class="parameter"><code>win</code></em>
1471
+ , and stores the result in (<em class="parameter"><code>window_x</code></em>
1472
+ , <em class="parameter"><code>window_y</code></em>
1473
+ ). </p>
1474
+ <p>Note that you can't convert coordinates for a nonexisting window (see
1475
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-border-window-size" title="gtk_text_view_set_border_window_size ()"><code class="function">gtk_text_view_set_border_window_size()</code></a>).</p>
1476
+ <div class="refsect3">
1477
+ <a name="id-1.4.8.8.13.17.6"></a><h4>Parameters</h4>
1478
+ <div class="informaltable"><table width="100%" border="0">
1479
+ <colgroup>
1480
+ <col width="150px" class="parameters_name">
1481
+ <col class="parameters_description">
1482
+ <col width="200px" class="parameters_annotations">
1483
+ </colgroup>
1484
+ <tbody>
1485
+ <tr>
1486
+ <td class="parameter_name"><p>text_view</p></td>
1487
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1488
+ <td class="parameter_annotations"> </td>
1489
+ </tr>
1490
+ <tr>
1491
+ <td class="parameter_name"><p>win</p></td>
1492
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> except <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-PRIVATE:CAPS"><span class="type">GTK_TEXT_WINDOW_PRIVATE</span></a></p></td>
1493
+ <td class="parameter_annotations"> </td>
1494
+ </tr>
1495
+ <tr>
1496
+ <td class="parameter_name"><p>buffer_x</p></td>
1497
+ <td class="parameter_description"><p>buffer x coordinate</p></td>
1498
+ <td class="parameter_annotations"> </td>
1499
+ </tr>
1500
+ <tr>
1501
+ <td class="parameter_name"><p>buffer_y</p></td>
1502
+ <td class="parameter_description"><p>buffer y coordinate</p></td>
1503
+ <td class="parameter_annotations"> </td>
1504
+ </tr>
1505
+ <tr>
1506
+ <td class="parameter_name"><p>window_x</p></td>
1507
+ <td class="parameter_description"><p> window x coordinate return location or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
1508
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1509
+ </tr>
1510
+ <tr>
1511
+ <td class="parameter_name"><p>window_y</p></td>
1512
+ <td class="parameter_description"><p> window y coordinate return location or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
1513
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1514
+ </tr>
1515
+ </tbody>
1516
+ </table></div>
1517
+ </div>
1518
+ </div>
1519
+ <hr>
1520
+ <div class="refsect2">
1521
+ <a name="gtk-text-view-window-to-buffer-coords"></a><h3>gtk_text_view_window_to_buffer_coords ()</h3>
1522
+ <pre class="programlisting"><span class="returnvalue">void</span>
1523
+ gtk_text_view_window_to_buffer_coords (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1524
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> win</code></em>,
1525
+ <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> window_x</code></em>,
1526
+ <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> window_y</code></em>,
1527
+ <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> *buffer_x</code></em>,
1528
+ <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> *buffer_y</code></em>);</pre>
1529
+ <p>Converts coordinates on the window identified by <em class="parameter"><code>win</code></em>
1530
+ to buffer
1531
+ coordinates, storing the result in (<em class="parameter"><code>buffer_x</code></em>
1532
+ ,<em class="parameter"><code>buffer_y</code></em>
1533
+ ).</p>
1534
+ <p>Note that you can't convert coordinates for a nonexisting window (see
1535
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-border-window-size" title="gtk_text_view_set_border_window_size ()"><code class="function">gtk_text_view_set_border_window_size()</code></a>).</p>
1536
+ <div class="refsect3">
1537
+ <a name="id-1.4.8.8.13.18.6"></a><h4>Parameters</h4>
1538
+ <div class="informaltable"><table width="100%" border="0">
1539
+ <colgroup>
1540
+ <col width="150px" class="parameters_name">
1541
+ <col class="parameters_description">
1542
+ <col width="200px" class="parameters_annotations">
1543
+ </colgroup>
1544
+ <tbody>
1545
+ <tr>
1546
+ <td class="parameter_name"><p>text_view</p></td>
1547
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1548
+ <td class="parameter_annotations"> </td>
1549
+ </tr>
1550
+ <tr>
1551
+ <td class="parameter_name"><p>win</p></td>
1552
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> except <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-PRIVATE:CAPS"><span class="type">GTK_TEXT_WINDOW_PRIVATE</span></a></p></td>
1553
+ <td class="parameter_annotations"> </td>
1554
+ </tr>
1555
+ <tr>
1556
+ <td class="parameter_name"><p>window_x</p></td>
1557
+ <td class="parameter_description"><p>window x coordinate</p></td>
1558
+ <td class="parameter_annotations"> </td>
1559
+ </tr>
1560
+ <tr>
1561
+ <td class="parameter_name"><p>window_y</p></td>
1562
+ <td class="parameter_description"><p>window y coordinate</p></td>
1563
+ <td class="parameter_annotations"> </td>
1564
+ </tr>
1565
+ <tr>
1566
+ <td class="parameter_name"><p>buffer_x</p></td>
1567
+ <td class="parameter_description"><p> buffer x coordinate return location or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
1568
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1569
+ </tr>
1570
+ <tr>
1571
+ <td class="parameter_name"><p>buffer_y</p></td>
1572
+ <td class="parameter_description"><p> buffer y coordinate return location or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
1573
+ <td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
1574
+ </tr>
1575
+ </tbody>
1576
+ </table></div>
1577
+ </div>
1578
+ </div>
1579
+ <hr>
1580
+ <div class="refsect2">
1581
+ <a name="gtk-text-view-get-window"></a><h3>gtk_text_view_get_window ()</h3>
1582
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk3/gdk2-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> *
1583
+ gtk_text_view_get_window (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1584
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> win</code></em>);</pre>
1585
+ <p>Retrieves the <a href="http://library.gnome.org/devel/gdk3/gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> corresponding to an area of the text view;
1586
+ possible windows include the overall widget window, child windows
1587
+ on the left, right, top, bottom, and the window that displays the
1588
+ text buffer. Windows are <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> and nonexistent if their width or
1589
+ height is 0, and are nonexistent before the widget has been
1590
+ realized.</p>
1591
+ <div class="refsect3">
1592
+ <a name="id-1.4.8.8.13.19.5"></a><h4>Parameters</h4>
1593
+ <div class="informaltable"><table width="100%" border="0">
1594
+ <colgroup>
1595
+ <col width="150px" class="parameters_name">
1596
+ <col class="parameters_description">
1597
+ <col width="200px" class="parameters_annotations">
1598
+ </colgroup>
1599
+ <tbody>
1600
+ <tr>
1601
+ <td class="parameter_name"><p>text_view</p></td>
1602
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1603
+ <td class="parameter_annotations"> </td>
1604
+ </tr>
1605
+ <tr>
1606
+ <td class="parameter_name"><p>win</p></td>
1607
+ <td class="parameter_description"><p>window to get</p></td>
1608
+ <td class="parameter_annotations"> </td>
1609
+ </tr>
1610
+ </tbody>
1611
+ </table></div>
1612
+ </div>
1613
+ <div class="refsect3">
1614
+ <a name="id-1.4.8.8.13.19.6"></a><h4>Returns</h4>
1615
+ <p> a <a href="http://library.gnome.org/devel/gdk3/gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p>
1616
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
1617
+ </div>
1618
+ </div>
1619
+ <hr>
1620
+ <div class="refsect2">
1621
+ <a name="gtk-text-view-get-window-type"></a><h3>gtk_text_view_get_window_type ()</h3>
1622
+ <pre class="programlisting"><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="returnvalue">GtkTextWindowType</span></a>
1623
+ gtk_text_view_get_window_type (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1624
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);</pre>
1625
+ <p>Usually used to find out which window an event corresponds to.
1626
+ If you connect to an event signal on <em class="parameter"><code>text_view</code></em>
1627
+ , this function
1628
+ should be called on <code class="literal">event-&gt;window</code> to
1629
+ see which window it was.</p>
1630
+ <div class="refsect3">
1631
+ <a name="id-1.4.8.8.13.20.5"></a><h4>Parameters</h4>
1632
+ <div class="informaltable"><table width="100%" border="0">
1633
+ <colgroup>
1634
+ <col width="150px" class="parameters_name">
1635
+ <col class="parameters_description">
1636
+ <col width="200px" class="parameters_annotations">
1637
+ </colgroup>
1638
+ <tbody>
1639
+ <tr>
1640
+ <td class="parameter_name"><p>text_view</p></td>
1641
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1642
+ <td class="parameter_annotations"> </td>
1643
+ </tr>
1644
+ <tr>
1645
+ <td class="parameter_name"><p>window</p></td>
1646
+ <td class="parameter_description"><p>a window type</p></td>
1647
+ <td class="parameter_annotations"> </td>
1648
+ </tr>
1649
+ </tbody>
1650
+ </table></div>
1651
+ </div>
1652
+ <div class="refsect3">
1653
+ <a name="id-1.4.8.8.13.20.6"></a><h4>Returns</h4>
1654
+ <p> the window type.</p>
1655
+ <p></p>
1656
+ </div>
1657
+ </div>
1658
+ <hr>
1659
+ <div class="refsect2">
1660
+ <a name="gtk-text-view-set-border-window-size"></a><h3>gtk_text_view_set_border_window_size ()</h3>
1661
+ <pre class="programlisting"><span class="returnvalue">void</span>
1662
+ gtk_text_view_set_border_window_size (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1663
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> type</code></em>,
1664
+ <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> size</code></em>);</pre>
1665
+ <p>Sets the width of <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-LEFT:CAPS"><code class="literal">GTK_TEXT_WINDOW_LEFT</code></a> or <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-RIGHT:CAPS"><code class="literal">GTK_TEXT_WINDOW_RIGHT</code></a>,
1666
+ or the height of <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-TOP:CAPS"><code class="literal">GTK_TEXT_WINDOW_TOP</code></a> or <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-BOTTOM:CAPS"><code class="literal">GTK_TEXT_WINDOW_BOTTOM</code></a>.
1667
+ Automatically destroys the corresponding window if the size is set
1668
+ to 0, and creates the window if the size is set to non-zero. This
1669
+ function can only be used for the "border windows," it doesn't work
1670
+ with <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-WIDGET:CAPS"><span class="type">GTK_TEXT_WINDOW_WIDGET</span></a>, <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-TEXT:CAPS"><span class="type">GTK_TEXT_WINDOW_TEXT</span></a>, or
1671
+ <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-PRIVATE:CAPS"><span class="type">GTK_TEXT_WINDOW_PRIVATE</span></a>.</p>
1672
+ <div class="refsect3">
1673
+ <a name="id-1.4.8.8.13.21.5"></a><h4>Parameters</h4>
1674
+ <div class="informaltable"><table width="100%" border="0">
1675
+ <colgroup>
1676
+ <col width="150px" class="parameters_name">
1677
+ <col class="parameters_description">
1678
+ <col width="200px" class="parameters_annotations">
1679
+ </colgroup>
1680
+ <tbody>
1681
+ <tr>
1682
+ <td class="parameter_name"><p>text_view</p></td>
1683
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1684
+ <td class="parameter_annotations"> </td>
1685
+ </tr>
1686
+ <tr>
1687
+ <td class="parameter_name"><p>type</p></td>
1688
+ <td class="parameter_description"><p>window to affect</p></td>
1689
+ <td class="parameter_annotations"> </td>
1690
+ </tr>
1691
+ <tr>
1692
+ <td class="parameter_name"><p>size</p></td>
1693
+ <td class="parameter_description"><p>width or height of the window</p></td>
1694
+ <td class="parameter_annotations"> </td>
1695
+ </tr>
1696
+ </tbody>
1697
+ </table></div>
1698
+ </div>
1699
+ </div>
1700
+ <hr>
1701
+ <div class="refsect2">
1702
+ <a name="gtk-text-view-get-border-window-size"></a><h3>gtk_text_view_get_border_window_size ()</h3>
1703
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
1704
+ gtk_text_view_get_border_window_size (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1705
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> type</code></em>);</pre>
1706
+ <p>Gets the width of the specified border window. See
1707
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-border-window-size" title="gtk_text_view_set_border_window_size ()"><code class="function">gtk_text_view_set_border_window_size()</code></a>.</p>
1708
+ <div class="refsect3">
1709
+ <a name="id-1.4.8.8.13.22.5"></a><h4>Parameters</h4>
1710
+ <div class="informaltable"><table width="100%" border="0">
1711
+ <colgroup>
1712
+ <col width="150px" class="parameters_name">
1713
+ <col class="parameters_description">
1714
+ <col width="200px" class="parameters_annotations">
1715
+ </colgroup>
1716
+ <tbody>
1717
+ <tr>
1718
+ <td class="parameter_name"><p>text_view</p></td>
1719
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1720
+ <td class="parameter_annotations"> </td>
1721
+ </tr>
1722
+ <tr>
1723
+ <td class="parameter_name"><p>type</p></td>
1724
+ <td class="parameter_description"><p>window to return size from</p></td>
1725
+ <td class="parameter_annotations"> </td>
1726
+ </tr>
1727
+ </tbody>
1728
+ </table></div>
1729
+ </div>
1730
+ <div class="refsect3">
1731
+ <a name="id-1.4.8.8.13.22.6"></a><h4>Returns</h4>
1732
+ <p> width of window</p>
1733
+ <p></p>
1734
+ </div>
1735
+ </div>
1736
+ <hr>
1737
+ <div class="refsect2">
1738
+ <a name="gtk-text-view-forward-display-line"></a><h3>gtk_text_view_forward_display_line ()</h3>
1739
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1740
+ gtk_text_view_forward_display_line (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1741
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1742
+ <p>Moves the given <em class="parameter"><code>iter</code></em>
1743
+ forward by one display (wrapped) line.
1744
+ A display line is different from a paragraph. Paragraphs are
1745
+ separated by newlines or other paragraph separator characters.
1746
+ Display lines are created by line-wrapping a paragraph. If
1747
+ wrapping is turned off, display lines and paragraphs will be the
1748
+ same. Display lines are divided differently for each view, since
1749
+ they depend on the view's width; paragraphs are the same in all
1750
+ views, since they depend on the contents of the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.</p>
1751
+ <div class="refsect3">
1752
+ <a name="id-1.4.8.8.13.23.5"></a><h4>Parameters</h4>
1753
+ <div class="informaltable"><table width="100%" border="0">
1754
+ <colgroup>
1755
+ <col width="150px" class="parameters_name">
1756
+ <col class="parameters_description">
1757
+ <col width="200px" class="parameters_annotations">
1758
+ </colgroup>
1759
+ <tbody>
1760
+ <tr>
1761
+ <td class="parameter_name"><p>text_view</p></td>
1762
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1763
+ <td class="parameter_annotations"> </td>
1764
+ </tr>
1765
+ <tr>
1766
+ <td class="parameter_name"><p>iter</p></td>
1767
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a></p></td>
1768
+ <td class="parameter_annotations"> </td>
1769
+ </tr>
1770
+ </tbody>
1771
+ </table></div>
1772
+ </div>
1773
+ <div class="refsect3">
1774
+ <a name="id-1.4.8.8.13.23.6"></a><h4>Returns</h4>
1775
+ <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>iter</code></em>
1776
+ was moved and is not on the end iterator</p>
1777
+ <p></p>
1778
+ </div>
1779
+ </div>
1780
+ <hr>
1781
+ <div class="refsect2">
1782
+ <a name="gtk-text-view-backward-display-line"></a><h3>gtk_text_view_backward_display_line ()</h3>
1783
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1784
+ gtk_text_view_backward_display_line (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1785
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1786
+ <p>Moves the given <em class="parameter"><code>iter</code></em>
1787
+ backward by one display (wrapped) line.
1788
+ A display line is different from a paragraph. Paragraphs are
1789
+ separated by newlines or other paragraph separator characters.
1790
+ Display lines are created by line-wrapping a paragraph. If
1791
+ wrapping is turned off, display lines and paragraphs will be the
1792
+ same. Display lines are divided differently for each view, since
1793
+ they depend on the view's width; paragraphs are the same in all
1794
+ views, since they depend on the contents of the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.</p>
1795
+ <div class="refsect3">
1796
+ <a name="id-1.4.8.8.13.24.5"></a><h4>Parameters</h4>
1797
+ <div class="informaltable"><table width="100%" border="0">
1798
+ <colgroup>
1799
+ <col width="150px" class="parameters_name">
1800
+ <col class="parameters_description">
1801
+ <col width="200px" class="parameters_annotations">
1802
+ </colgroup>
1803
+ <tbody>
1804
+ <tr>
1805
+ <td class="parameter_name"><p>text_view</p></td>
1806
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1807
+ <td class="parameter_annotations"> </td>
1808
+ </tr>
1809
+ <tr>
1810
+ <td class="parameter_name"><p>iter</p></td>
1811
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a></p></td>
1812
+ <td class="parameter_annotations"> </td>
1813
+ </tr>
1814
+ </tbody>
1815
+ </table></div>
1816
+ </div>
1817
+ <div class="refsect3">
1818
+ <a name="id-1.4.8.8.13.24.6"></a><h4>Returns</h4>
1819
+ <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>iter</code></em>
1820
+ was moved and is not on the end iterator</p>
1821
+ <p></p>
1822
+ </div>
1823
+ </div>
1824
+ <hr>
1825
+ <div class="refsect2">
1826
+ <a name="gtk-text-view-forward-display-line-end"></a><h3>gtk_text_view_forward_display_line_end ()</h3>
1827
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1828
+ gtk_text_view_forward_display_line_end
1829
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1830
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1831
+ <p>Moves the given <em class="parameter"><code>iter</code></em>
1832
+ forward to the next display line end.
1833
+ A display line is different from a paragraph. Paragraphs are
1834
+ separated by newlines or other paragraph separator characters.
1835
+ Display lines are created by line-wrapping a paragraph. If
1836
+ wrapping is turned off, display lines and paragraphs will be the
1837
+ same. Display lines are divided differently for each view, since
1838
+ they depend on the view's width; paragraphs are the same in all
1839
+ views, since they depend on the contents of the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.</p>
1840
+ <div class="refsect3">
1841
+ <a name="id-1.4.8.8.13.25.5"></a><h4>Parameters</h4>
1842
+ <div class="informaltable"><table width="100%" border="0">
1843
+ <colgroup>
1844
+ <col width="150px" class="parameters_name">
1845
+ <col class="parameters_description">
1846
+ <col width="200px" class="parameters_annotations">
1847
+ </colgroup>
1848
+ <tbody>
1849
+ <tr>
1850
+ <td class="parameter_name"><p>text_view</p></td>
1851
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1852
+ <td class="parameter_annotations"> </td>
1853
+ </tr>
1854
+ <tr>
1855
+ <td class="parameter_name"><p>iter</p></td>
1856
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a></p></td>
1857
+ <td class="parameter_annotations"> </td>
1858
+ </tr>
1859
+ </tbody>
1860
+ </table></div>
1861
+ </div>
1862
+ <div class="refsect3">
1863
+ <a name="id-1.4.8.8.13.25.6"></a><h4>Returns</h4>
1864
+ <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>iter</code></em>
1865
+ was moved and is not on the end iterator</p>
1866
+ <p></p>
1867
+ </div>
1868
+ </div>
1869
+ <hr>
1870
+ <div class="refsect2">
1871
+ <a name="gtk-text-view-backward-display-line-start"></a><h3>gtk_text_view_backward_display_line_start ()</h3>
1872
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1873
+ gtk_text_view_backward_display_line_start
1874
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1875
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1876
+ <p>Moves the given <em class="parameter"><code>iter</code></em>
1877
+ backward to the next display line start.
1878
+ A display line is different from a paragraph. Paragraphs are
1879
+ separated by newlines or other paragraph separator characters.
1880
+ Display lines are created by line-wrapping a paragraph. If
1881
+ wrapping is turned off, display lines and paragraphs will be the
1882
+ same. Display lines are divided differently for each view, since
1883
+ they depend on the view's width; paragraphs are the same in all
1884
+ views, since they depend on the contents of the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.</p>
1885
+ <div class="refsect3">
1886
+ <a name="id-1.4.8.8.13.26.5"></a><h4>Parameters</h4>
1887
+ <div class="informaltable"><table width="100%" border="0">
1888
+ <colgroup>
1889
+ <col width="150px" class="parameters_name">
1890
+ <col class="parameters_description">
1891
+ <col width="200px" class="parameters_annotations">
1892
+ </colgroup>
1893
+ <tbody>
1894
+ <tr>
1895
+ <td class="parameter_name"><p>text_view</p></td>
1896
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1897
+ <td class="parameter_annotations"> </td>
1898
+ </tr>
1899
+ <tr>
1900
+ <td class="parameter_name"><p>iter</p></td>
1901
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a></p></td>
1902
+ <td class="parameter_annotations"> </td>
1903
+ </tr>
1904
+ </tbody>
1905
+ </table></div>
1906
+ </div>
1907
+ <div class="refsect3">
1908
+ <a name="id-1.4.8.8.13.26.6"></a><h4>Returns</h4>
1909
+ <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>iter</code></em>
1910
+ was moved and is not on the end iterator</p>
1911
+ <p></p>
1912
+ </div>
1913
+ </div>
1914
+ <hr>
1915
+ <div class="refsect2">
1916
+ <a name="gtk-text-view-starts-display-line"></a><h3>gtk_text_view_starts_display_line ()</h3>
1917
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1918
+ gtk_text_view_starts_display_line (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1919
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1920
+ <p>Determines whether <em class="parameter"><code>iter</code></em>
1921
+ is at the start of a display line.
1922
+ See <a class="link" href="GtkTextView.html#gtk-text-view-forward-display-line" title="gtk_text_view_forward_display_line ()"><code class="function">gtk_text_view_forward_display_line()</code></a> for an explanation of
1923
+ display lines vs. paragraphs.</p>
1924
+ <div class="refsect3">
1925
+ <a name="id-1.4.8.8.13.27.5"></a><h4>Parameters</h4>
1926
+ <div class="informaltable"><table width="100%" border="0">
1927
+ <colgroup>
1928
+ <col width="150px" class="parameters_name">
1929
+ <col class="parameters_description">
1930
+ <col width="200px" class="parameters_annotations">
1931
+ </colgroup>
1932
+ <tbody>
1933
+ <tr>
1934
+ <td class="parameter_name"><p>text_view</p></td>
1935
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1936
+ <td class="parameter_annotations"> </td>
1937
+ </tr>
1938
+ <tr>
1939
+ <td class="parameter_name"><p>iter</p></td>
1940
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a></p></td>
1941
+ <td class="parameter_annotations"> </td>
1942
+ </tr>
1943
+ </tbody>
1944
+ </table></div>
1945
+ </div>
1946
+ <div class="refsect3">
1947
+ <a name="id-1.4.8.8.13.27.6"></a><h4>Returns</h4>
1948
+ <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>iter</code></em>
1949
+ begins a wrapped line</p>
1950
+ <p></p>
1951
+ </div>
1952
+ </div>
1953
+ <hr>
1954
+ <div class="refsect2">
1955
+ <a name="gtk-text-view-move-visually"></a><h3>gtk_text_view_move_visually ()</h3>
1956
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1957
+ gtk_text_view_move_visually (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1958
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1959
+ <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> count</code></em>);</pre>
1960
+ <p>Move the iterator a given number of characters visually, treating
1961
+ it as the strong cursor position. If <em class="parameter"><code>count</code></em>
1962
+ is positive, then the
1963
+ new strong cursor position will be <em class="parameter"><code>count</code></em>
1964
+ positions to the right of
1965
+ the old cursor position. If <em class="parameter"><code>count</code></em>
1966
+ is negative then the new strong
1967
+ cursor position will be <em class="parameter"><code>count</code></em>
1968
+ positions to the left of the old
1969
+ cursor position.</p>
1970
+ <p>In the presence of bi-directional text, the correspondence
1971
+ between logical and visual order will depend on the direction
1972
+ of the current run, and there may be jumps when the cursor
1973
+ is moved off of the end of a run.</p>
1974
+ <div class="refsect3">
1975
+ <a name="id-1.4.8.8.13.28.6"></a><h4>Parameters</h4>
1976
+ <div class="informaltable"><table width="100%" border="0">
1977
+ <colgroup>
1978
+ <col width="150px" class="parameters_name">
1979
+ <col class="parameters_description">
1980
+ <col width="200px" class="parameters_annotations">
1981
+ </colgroup>
1982
+ <tbody>
1983
+ <tr>
1984
+ <td class="parameter_name"><p>text_view</p></td>
1985
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
1986
+ <td class="parameter_annotations"> </td>
1987
+ </tr>
1988
+ <tr>
1989
+ <td class="parameter_name"><p>iter</p></td>
1990
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a></p></td>
1991
+ <td class="parameter_annotations"> </td>
1992
+ </tr>
1993
+ <tr>
1994
+ <td class="parameter_name"><p>count</p></td>
1995
+ <td class="parameter_description"><p>number of characters to move (negative moves left,
1996
+ positive moves right)</p></td>
1997
+ <td class="parameter_annotations"> </td>
1998
+ </tr>
1999
+ </tbody>
2000
+ </table></div>
2001
+ </div>
2002
+ <div class="refsect3">
2003
+ <a name="id-1.4.8.8.13.28.7"></a><h4>Returns</h4>
2004
+ <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>iter</code></em>
2005
+ moved and is not on the end iterator</p>
2006
+ <p></p>
2007
+ </div>
2008
+ </div>
2009
+ <hr>
2010
+ <div class="refsect2">
2011
+ <a name="gtk-text-view-add-child-at-anchor"></a><h3>gtk_text_view_add_child_at_anchor ()</h3>
2012
+ <pre class="programlisting"><span class="returnvalue">void</span>
2013
+ gtk_text_view_add_child_at_anchor (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
2014
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
2015
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);</pre>
2016
+ <p>Adds a child widget in the text buffer, at the given <em class="parameter"><code>anchor</code></em>
2017
+ .</p>
2018
+ <div class="refsect3">
2019
+ <a name="id-1.4.8.8.13.29.5"></a><h4>Parameters</h4>
2020
+ <div class="informaltable"><table width="100%" border="0">
2021
+ <colgroup>
2022
+ <col width="150px" class="parameters_name">
2023
+ <col class="parameters_description">
2024
+ <col width="200px" class="parameters_annotations">
2025
+ </colgroup>
2026
+ <tbody>
2027
+ <tr>
2028
+ <td class="parameter_name"><p>text_view</p></td>
2029
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2030
+ <td class="parameter_annotations"> </td>
2031
+ </tr>
2032
+ <tr>
2033
+ <td class="parameter_name"><p>child</p></td>
2034
+ <td class="parameter_description"><p>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a></p></td>
2035
+ <td class="parameter_annotations"> </td>
2036
+ </tr>
2037
+ <tr>
2038
+ <td class="parameter_name"><p>anchor</p></td>
2039
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> in the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> for <em class="parameter"><code>text_view</code></em>
2040
+ </p></td>
2041
+ <td class="parameter_annotations"> </td>
2042
+ </tr>
2043
+ </tbody>
2044
+ </table></div>
2045
+ </div>
2046
+ </div>
2047
+ <hr>
2048
+ <div class="refsect2">
2049
+ <a name="gtk-text-child-anchor-new"></a><h3>gtk_text_child_anchor_new ()</h3>
2050
+ <pre class="programlisting"><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="returnvalue">GtkTextChildAnchor</span></a> *
2051
+ gtk_text_child_anchor_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
2052
+ <p>Creates a new <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a>. Usually you would then insert
2053
+ it into a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> with <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-child-anchor" title="gtk_text_buffer_insert_child_anchor ()"><code class="function">gtk_text_buffer_insert_child_anchor()</code></a>.
2054
+ To perform the creation and insertion in one step, use the
2055
+ convenience function <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-create-child-anchor" title="gtk_text_buffer_create_child_anchor ()"><code class="function">gtk_text_buffer_create_child_anchor()</code></a>.</p>
2056
+ <div class="refsect3">
2057
+ <a name="id-1.4.8.8.13.30.5"></a><h4>Returns</h4>
2058
+ <p> a new <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a></p>
2059
+ <p></p>
2060
+ </div>
2061
+ </div>
2062
+ <hr>
2063
+ <div class="refsect2">
2064
+ <a name="gtk-text-child-anchor-get-widgets"></a><h3>gtk_text_child_anchor_get_widgets ()</h3>
2065
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> *
2066
+ gtk_text_child_anchor_get_widgets (<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);</pre>
2067
+ <p>Gets a list of all widgets anchored at this child anchor.
2068
+ The returned list should be freed with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>.</p>
2069
+ <div class="refsect3">
2070
+ <a name="id-1.4.8.8.13.31.5"></a><h4>Parameters</h4>
2071
+ <div class="informaltable"><table width="100%" border="0">
2072
+ <colgroup>
2073
+ <col width="150px" class="parameters_name">
2074
+ <col class="parameters_description">
2075
+ <col width="200px" class="parameters_annotations">
2076
+ </colgroup>
2077
+ <tbody><tr>
2078
+ <td class="parameter_name"><p>anchor</p></td>
2079
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a></p></td>
2080
+ <td class="parameter_annotations"> </td>
2081
+ </tr></tbody>
2082
+ </table></div>
2083
+ </div>
2084
+ <div class="refsect3">
2085
+ <a name="id-1.4.8.8.13.31.6"></a><h4>Returns</h4>
2086
+ <p> list of widgets anchored at <em class="parameter"><code>anchor</code></em>
2087
+ . </p>
2088
+ <p><span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GtkWidget][<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>]</span></p>
2089
+ </div>
2090
+ </div>
2091
+ <hr>
2092
+ <div class="refsect2">
2093
+ <a name="gtk-text-child-anchor-get-deleted"></a><h3>gtk_text_child_anchor_get_deleted ()</h3>
2094
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2095
+ gtk_text_child_anchor_get_deleted (<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);</pre>
2096
+ <p>Determines whether a child anchor has been deleted from
2097
+ the buffer. Keep in mind that the child anchor will be
2098
+ unreferenced when removed from the buffer, so you need to
2099
+ hold your own reference (with <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>) if you plan
2100
+ to use this function — otherwise all deleted child anchors
2101
+ will also be finalized.</p>
2102
+ <div class="refsect3">
2103
+ <a name="id-1.4.8.8.13.32.5"></a><h4>Parameters</h4>
2104
+ <div class="informaltable"><table width="100%" border="0">
2105
+ <colgroup>
2106
+ <col width="150px" class="parameters_name">
2107
+ <col class="parameters_description">
2108
+ <col width="200px" class="parameters_annotations">
2109
+ </colgroup>
2110
+ <tbody><tr>
2111
+ <td class="parameter_name"><p>anchor</p></td>
2112
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a></p></td>
2113
+ <td class="parameter_annotations"> </td>
2114
+ </tr></tbody>
2115
+ </table></div>
2116
+ </div>
2117
+ <div class="refsect3">
2118
+ <a name="id-1.4.8.8.13.32.6"></a><h4>Returns</h4>
2119
+ <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the child anchor has been deleted from its buffer</p>
2120
+ <p></p>
2121
+ </div>
2122
+ </div>
2123
+ <hr>
2124
+ <div class="refsect2">
2125
+ <a name="gtk-text-view-add-child-in-window"></a><h3>gtk_text_view_add_child_in_window ()</h3>
2126
+ <pre class="programlisting"><span class="returnvalue">void</span>
2127
+ gtk_text_view_add_child_in_window (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
2128
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
2129
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> which_window</code></em>,
2130
+ <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> xpos</code></em>,
2131
+ <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> ypos</code></em>);</pre>
2132
+ <p>Adds a child at fixed coordinates in one of the text widget's
2133
+ windows. The window must have nonzero size (see
2134
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-border-window-size" title="gtk_text_view_set_border_window_size ()"><code class="function">gtk_text_view_set_border_window_size()</code></a>). Note that the child
2135
+ coordinates are given relative to the <a href="http://library.gnome.org/devel/gdk3/gdk2-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> in question, and
2136
+ that these coordinates have no sane relationship to scrolling. When
2137
+ placing a child in <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-WIDGET:CAPS"><span class="type">GTK_TEXT_WINDOW_WIDGET</span></a>, scrolling is
2138
+ irrelevant, the child floats above all scrollable areas. But when
2139
+ placing a child in one of the scrollable windows (border windows or
2140
+ text window), you'll need to compute the child's correct position
2141
+ in buffer coordinates any time scrolling occurs or buffer changes
2142
+ occur, and then call <a class="link" href="GtkTextView.html#gtk-text-view-move-child" title="gtk_text_view_move_child ()"><code class="function">gtk_text_view_move_child()</code></a> to update the
2143
+ child's position. Unfortunately there's no good way to detect that
2144
+ scrolling has occurred, using the current API; a possible hack
2145
+ would be to update all child positions when the scroll adjustments
2146
+ change or the text buffer changes. See bug 64518 on
2147
+ bugzilla.gnome.org for status of fixing this issue.</p>
2148
+ <div class="refsect3">
2149
+ <a name="id-1.4.8.8.13.33.5"></a><h4>Parameters</h4>
2150
+ <div class="informaltable"><table width="100%" border="0">
2151
+ <colgroup>
2152
+ <col width="150px" class="parameters_name">
2153
+ <col class="parameters_description">
2154
+ <col width="200px" class="parameters_annotations">
2155
+ </colgroup>
2156
+ <tbody>
2157
+ <tr>
2158
+ <td class="parameter_name"><p>text_view</p></td>
2159
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2160
+ <td class="parameter_annotations"> </td>
2161
+ </tr>
2162
+ <tr>
2163
+ <td class="parameter_name"><p>child</p></td>
2164
+ <td class="parameter_description"><p>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a></p></td>
2165
+ <td class="parameter_annotations"> </td>
2166
+ </tr>
2167
+ <tr>
2168
+ <td class="parameter_name"><p>which_window</p></td>
2169
+ <td class="parameter_description"><p>which window the child should appear in</p></td>
2170
+ <td class="parameter_annotations"> </td>
2171
+ </tr>
2172
+ <tr>
2173
+ <td class="parameter_name"><p>xpos</p></td>
2174
+ <td class="parameter_description"><p>X position of child in window coordinates</p></td>
2175
+ <td class="parameter_annotations"> </td>
2176
+ </tr>
2177
+ <tr>
2178
+ <td class="parameter_name"><p>ypos</p></td>
2179
+ <td class="parameter_description"><p>Y position of child in window coordinates</p></td>
2180
+ <td class="parameter_annotations"> </td>
2181
+ </tr>
2182
+ </tbody>
2183
+ </table></div>
2184
+ </div>
2185
+ </div>
2186
+ <hr>
2187
+ <div class="refsect2">
2188
+ <a name="gtk-text-view-move-child"></a><h3>gtk_text_view_move_child ()</h3>
2189
+ <pre class="programlisting"><span class="returnvalue">void</span>
2190
+ gtk_text_view_move_child (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
2191
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
2192
+ <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> xpos</code></em>,
2193
+ <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> ypos</code></em>);</pre>
2194
+ <p>Updates the position of a child, as for <a class="link" href="GtkTextView.html#gtk-text-view-add-child-in-window" title="gtk_text_view_add_child_in_window ()"><code class="function">gtk_text_view_add_child_in_window()</code></a>.</p>
2195
+ <div class="refsect3">
2196
+ <a name="id-1.4.8.8.13.34.5"></a><h4>Parameters</h4>
2197
+ <div class="informaltable"><table width="100%" border="0">
2198
+ <colgroup>
2199
+ <col width="150px" class="parameters_name">
2200
+ <col class="parameters_description">
2201
+ <col width="200px" class="parameters_annotations">
2202
+ </colgroup>
2203
+ <tbody>
2204
+ <tr>
2205
+ <td class="parameter_name"><p>text_view</p></td>
2206
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2207
+ <td class="parameter_annotations"> </td>
2208
+ </tr>
2209
+ <tr>
2210
+ <td class="parameter_name"><p>child</p></td>
2211
+ <td class="parameter_description"><p>child widget already added to the text view</p></td>
2212
+ <td class="parameter_annotations"> </td>
2213
+ </tr>
2214
+ <tr>
2215
+ <td class="parameter_name"><p>xpos</p></td>
2216
+ <td class="parameter_description"><p>new X position in window coordinates</p></td>
2217
+ <td class="parameter_annotations"> </td>
2218
+ </tr>
2219
+ <tr>
2220
+ <td class="parameter_name"><p>ypos</p></td>
2221
+ <td class="parameter_description"><p>new Y position in window coordinates</p></td>
2222
+ <td class="parameter_annotations"> </td>
2223
+ </tr>
2224
+ </tbody>
2225
+ </table></div>
2226
+ </div>
2227
+ </div>
2228
+ <hr>
2229
+ <div class="refsect2">
2230
+ <a name="gtk-text-view-set-wrap-mode"></a><h3>gtk_text_view_set_wrap_mode ()</h3>
2231
+ <pre class="programlisting"><span class="returnvalue">void</span>
2232
+ gtk_text_view_set_wrap_mode (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
2233
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="type">GtkWrapMode</span></a> wrap_mode</code></em>);</pre>
2234
+ <p>Sets the line wrapping for the view.</p>
2235
+ <div class="refsect3">
2236
+ <a name="id-1.4.8.8.13.35.5"></a><h4>Parameters</h4>
2237
+ <div class="informaltable"><table width="100%" border="0">
2238
+ <colgroup>
2239
+ <col width="150px" class="parameters_name">
2240
+ <col class="parameters_description">
2241
+ <col width="200px" class="parameters_annotations">
2242
+ </colgroup>
2243
+ <tbody>
2244
+ <tr>
2245
+ <td class="parameter_name"><p>text_view</p></td>
2246
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2247
+ <td class="parameter_annotations"> </td>
2248
+ </tr>
2249
+ <tr>
2250
+ <td class="parameter_name"><p>wrap_mode</p></td>
2251
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="type">GtkWrapMode</span></a></p></td>
2252
+ <td class="parameter_annotations"> </td>
2253
+ </tr>
2254
+ </tbody>
2255
+ </table></div>
2256
+ </div>
2257
+ </div>
2258
+ <hr>
2259
+ <div class="refsect2">
2260
+ <a name="gtk-text-view-get-wrap-mode"></a><h3>gtk_text_view_get_wrap_mode ()</h3>
2261
+ <pre class="programlisting"><a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="returnvalue">GtkWrapMode</span></a>
2262
+ gtk_text_view_get_wrap_mode (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
2263
+ <p>Gets the line wrapping for the view.</p>
2264
+ <div class="refsect3">
2265
+ <a name="id-1.4.8.8.13.36.5"></a><h4>Parameters</h4>
2266
+ <div class="informaltable"><table width="100%" border="0">
2267
+ <colgroup>
2268
+ <col width="150px" class="parameters_name">
2269
+ <col class="parameters_description">
2270
+ <col width="200px" class="parameters_annotations">
2271
+ </colgroup>
2272
+ <tbody><tr>
2273
+ <td class="parameter_name"><p>text_view</p></td>
2274
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2275
+ <td class="parameter_annotations"> </td>
2276
+ </tr></tbody>
2277
+ </table></div>
2278
+ </div>
2279
+ <div class="refsect3">
2280
+ <a name="id-1.4.8.8.13.36.6"></a><h4>Returns</h4>
2281
+ <p> the line wrap setting</p>
2282
+ <p></p>
2283
+ </div>
2284
+ </div>
2285
+ <hr>
2286
+ <div class="refsect2">
2287
+ <a name="gtk-text-view-set-editable"></a><h3>gtk_text_view_set_editable ()</h3>
2288
+ <pre class="programlisting"><span class="returnvalue">void</span>
2289
+ gtk_text_view_set_editable (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
2290
+ <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> setting</code></em>);</pre>
2291
+ <p>Sets the default editability of the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>. You can override
2292
+ this default setting with tags in the buffer, using the "editable"
2293
+ attribute of tags.</p>
2294
+ <div class="refsect3">
2295
+ <a name="id-1.4.8.8.13.37.5"></a><h4>Parameters</h4>
2296
+ <div class="informaltable"><table width="100%" border="0">
2297
+ <colgroup>
2298
+ <col width="150px" class="parameters_name">
2299
+ <col class="parameters_description">
2300
+ <col width="200px" class="parameters_annotations">
2301
+ </colgroup>
2302
+ <tbody>
2303
+ <tr>
2304
+ <td class="parameter_name"><p>text_view</p></td>
2305
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2306
+ <td class="parameter_annotations"> </td>
2307
+ </tr>
2308
+ <tr>
2309
+ <td class="parameter_name"><p>setting</p></td>
2310
+ <td class="parameter_description"><p>whether it's editable</p></td>
2311
+ <td class="parameter_annotations"> </td>
2312
+ </tr>
2313
+ </tbody>
2314
+ </table></div>
2315
+ </div>
2316
+ </div>
2317
+ <hr>
2318
+ <div class="refsect2">
2319
+ <a name="gtk-text-view-get-editable"></a><h3>gtk_text_view_get_editable ()</h3>
2320
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2321
+ gtk_text_view_get_editable (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
2322
+ <p>Returns the default editability of the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>. Tags in the
2323
+ buffer may override this setting for some ranges of text.</p>
2324
+ <div class="refsect3">
2325
+ <a name="id-1.4.8.8.13.38.5"></a><h4>Parameters</h4>
2326
+ <div class="informaltable"><table width="100%" border="0">
2327
+ <colgroup>
2328
+ <col width="150px" class="parameters_name">
2329
+ <col class="parameters_description">
2330
+ <col width="200px" class="parameters_annotations">
2331
+ </colgroup>
2332
+ <tbody><tr>
2333
+ <td class="parameter_name"><p>text_view</p></td>
2334
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2335
+ <td class="parameter_annotations"> </td>
2336
+ </tr></tbody>
2337
+ </table></div>
2338
+ </div>
2339
+ <div class="refsect3">
2340
+ <a name="id-1.4.8.8.13.38.6"></a><h4>Returns</h4>
2341
+ <p> whether text is editable by default</p>
2342
+ <p></p>
2343
+ </div>
2344
+ </div>
2345
+ <hr>
2346
+ <div class="refsect2">
2347
+ <a name="gtk-text-view-set-cursor-visible"></a><h3>gtk_text_view_set_cursor_visible ()</h3>
2348
+ <pre class="programlisting"><span class="returnvalue">void</span>
2349
+ gtk_text_view_set_cursor_visible (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
2350
+ <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> setting</code></em>);</pre>
2351
+ <p>Toggles whether the insertion point is displayed. A buffer with no editable
2352
+ text probably shouldn't have a visible cursor, so you may want to turn
2353
+ the cursor off.</p>
2354
+ <div class="refsect3">
2355
+ <a name="id-1.4.8.8.13.39.5"></a><h4>Parameters</h4>
2356
+ <div class="informaltable"><table width="100%" border="0">
2357
+ <colgroup>
2358
+ <col width="150px" class="parameters_name">
2359
+ <col class="parameters_description">
2360
+ <col width="200px" class="parameters_annotations">
2361
+ </colgroup>
2362
+ <tbody>
2363
+ <tr>
2364
+ <td class="parameter_name"><p>text_view</p></td>
2365
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2366
+ <td class="parameter_annotations"> </td>
2367
+ </tr>
2368
+ <tr>
2369
+ <td class="parameter_name"><p>setting</p></td>
2370
+ <td class="parameter_description"><p>whether to show the insertion cursor</p></td>
2371
+ <td class="parameter_annotations"> </td>
2372
+ </tr>
2373
+ </tbody>
2374
+ </table></div>
2375
+ </div>
2376
+ </div>
2377
+ <hr>
2378
+ <div class="refsect2">
2379
+ <a name="gtk-text-view-get-cursor-visible"></a><h3>gtk_text_view_get_cursor_visible ()</h3>
2380
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2381
+ gtk_text_view_get_cursor_visible (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
2382
+ <p>Find out whether the cursor is being displayed.</p>
2383
+ <div class="refsect3">
2384
+ <a name="id-1.4.8.8.13.40.5"></a><h4>Parameters</h4>
2385
+ <div class="informaltable"><table width="100%" border="0">
2386
+ <colgroup>
2387
+ <col width="150px" class="parameters_name">
2388
+ <col class="parameters_description">
2389
+ <col width="200px" class="parameters_annotations">
2390
+ </colgroup>
2391
+ <tbody><tr>
2392
+ <td class="parameter_name"><p>text_view</p></td>
2393
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2394
+ <td class="parameter_annotations"> </td>
2395
+ </tr></tbody>
2396
+ </table></div>
2397
+ </div>
2398
+ <div class="refsect3">
2399
+ <a name="id-1.4.8.8.13.40.6"></a><h4>Returns</h4>
2400
+ <p> whether the insertion mark is visible</p>
2401
+ <p></p>
2402
+ </div>
2403
+ </div>
2404
+ <hr>
2405
+ <div class="refsect2">
2406
+ <a name="gtk-text-view-set-overwrite"></a><h3>gtk_text_view_set_overwrite ()</h3>
2407
+ <pre class="programlisting"><span class="returnvalue">void</span>
2408
+ gtk_text_view_set_overwrite (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
2409
+ <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> overwrite</code></em>);</pre>
2410
+ <p>Changes the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> overwrite mode.</p>
2411
+ <div class="refsect3">
2412
+ <a name="id-1.4.8.8.13.41.5"></a><h4>Parameters</h4>
2413
+ <div class="informaltable"><table width="100%" border="0">
2414
+ <colgroup>
2415
+ <col width="150px" class="parameters_name">
2416
+ <col class="parameters_description">
2417
+ <col width="200px" class="parameters_annotations">
2418
+ </colgroup>
2419
+ <tbody>
2420
+ <tr>
2421
+ <td class="parameter_name"><p>text_view</p></td>
2422
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2423
+ <td class="parameter_annotations"> </td>
2424
+ </tr>
2425
+ <tr>
2426
+ <td class="parameter_name"><p>overwrite</p></td>
2427
+ <td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to turn on overwrite mode, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to turn it off</p></td>
2428
+ <td class="parameter_annotations"> </td>
2429
+ </tr>
2430
+ </tbody>
2431
+ </table></div>
2432
+ </div>
2433
+ <p class="since">Since 2.4</p>
2434
+ </div>
2435
+ <hr>
2436
+ <div class="refsect2">
2437
+ <a name="gtk-text-view-get-overwrite"></a><h3>gtk_text_view_get_overwrite ()</h3>
2438
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2439
+ gtk_text_view_get_overwrite (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
2440
+ <p>Returns whether the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> is in overwrite mode or not.</p>
2441
+ <div class="refsect3">
2442
+ <a name="id-1.4.8.8.13.42.5"></a><h4>Parameters</h4>
2443
+ <div class="informaltable"><table width="100%" border="0">
2444
+ <colgroup>
2445
+ <col width="150px" class="parameters_name">
2446
+ <col class="parameters_description">
2447
+ <col width="200px" class="parameters_annotations">
2448
+ </colgroup>
2449
+ <tbody><tr>
2450
+ <td class="parameter_name"><p>text_view</p></td>
2451
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2452
+ <td class="parameter_annotations"> </td>
2453
+ </tr></tbody>
2454
+ </table></div>
2455
+ </div>
2456
+ <div class="refsect3">
2457
+ <a name="id-1.4.8.8.13.42.6"></a><h4>Returns</h4>
2458
+ <p> whether <em class="parameter"><code>text_view</code></em>
2459
+ is in overwrite mode or not.</p>
2460
+ <p></p>
2461
+ </div>
2462
+ <p class="since">Since 2.4</p>
2463
+ </div>
2464
+ <hr>
2465
+ <div class="refsect2">
2466
+ <a name="gtk-text-view-set-pixels-above-lines"></a><h3>gtk_text_view_set_pixels_above_lines ()</h3>
2467
+ <pre class="programlisting"><span class="returnvalue">void</span>
2468
+ gtk_text_view_set_pixels_above_lines (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
2469
+ <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> pixels_above_lines</code></em>);</pre>
2470
+ <p>Sets the default number of blank pixels above paragraphs in <em class="parameter"><code>text_view</code></em>
2471
+ .
2472
+ Tags in the buffer for <em class="parameter"><code>text_view</code></em>
2473
+ may override the defaults.</p>
2474
+ <div class="refsect3">
2475
+ <a name="id-1.4.8.8.13.43.5"></a><h4>Parameters</h4>
2476
+ <div class="informaltable"><table width="100%" border="0">
2477
+ <colgroup>
2478
+ <col width="150px" class="parameters_name">
2479
+ <col class="parameters_description">
2480
+ <col width="200px" class="parameters_annotations">
2481
+ </colgroup>
2482
+ <tbody>
2483
+ <tr>
2484
+ <td class="parameter_name"><p>text_view</p></td>
2485
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2486
+ <td class="parameter_annotations"> </td>
2487
+ </tr>
2488
+ <tr>
2489
+ <td class="parameter_name"><p>pixels_above_lines</p></td>
2490
+ <td class="parameter_description"><p>pixels above paragraphs</p></td>
2491
+ <td class="parameter_annotations"> </td>
2492
+ </tr>
2493
+ </tbody>
2494
+ </table></div>
2495
+ </div>
2496
+ </div>
2497
+ <hr>
2498
+ <div class="refsect2">
2499
+ <a name="gtk-text-view-get-pixels-above-lines"></a><h3>gtk_text_view_get_pixels_above_lines ()</h3>
2500
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
2501
+ gtk_text_view_get_pixels_above_lines (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
2502
+ <p>Gets the default number of pixels to put above paragraphs.</p>
2503
+ <div class="refsect3">
2504
+ <a name="id-1.4.8.8.13.44.5"></a><h4>Parameters</h4>
2505
+ <div class="informaltable"><table width="100%" border="0">
2506
+ <colgroup>
2507
+ <col width="150px" class="parameters_name">
2508
+ <col class="parameters_description">
2509
+ <col width="200px" class="parameters_annotations">
2510
+ </colgroup>
2511
+ <tbody><tr>
2512
+ <td class="parameter_name"><p>text_view</p></td>
2513
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2514
+ <td class="parameter_annotations"> </td>
2515
+ </tr></tbody>
2516
+ </table></div>
2517
+ </div>
2518
+ <div class="refsect3">
2519
+ <a name="id-1.4.8.8.13.44.6"></a><h4>Returns</h4>
2520
+ <p> default number of pixels above paragraphs</p>
2521
+ <p></p>
2522
+ </div>
2523
+ </div>
2524
+ <hr>
2525
+ <div class="refsect2">
2526
+ <a name="gtk-text-view-set-pixels-below-lines"></a><h3>gtk_text_view_set_pixels_below_lines ()</h3>
2527
+ <pre class="programlisting"><span class="returnvalue">void</span>
2528
+ gtk_text_view_set_pixels_below_lines (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
2529
+ <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> pixels_below_lines</code></em>);</pre>
2530
+ <p>Sets the default number of pixels of blank space
2531
+ to put below paragraphs in <em class="parameter"><code>text_view</code></em>
2532
+ . May be overridden
2533
+ by tags applied to <em class="parameter"><code>text_view</code></em>
2534
+ 's buffer.</p>
2535
+ <div class="refsect3">
2536
+ <a name="id-1.4.8.8.13.45.5"></a><h4>Parameters</h4>
2537
+ <div class="informaltable"><table width="100%" border="0">
2538
+ <colgroup>
2539
+ <col width="150px" class="parameters_name">
2540
+ <col class="parameters_description">
2541
+ <col width="200px" class="parameters_annotations">
2542
+ </colgroup>
2543
+ <tbody>
2544
+ <tr>
2545
+ <td class="parameter_name"><p>text_view</p></td>
2546
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2547
+ <td class="parameter_annotations"> </td>
2548
+ </tr>
2549
+ <tr>
2550
+ <td class="parameter_name"><p>pixels_below_lines</p></td>
2551
+ <td class="parameter_description"><p>pixels below paragraphs </p></td>
2552
+ <td class="parameter_annotations"> </td>
2553
+ </tr>
2554
+ </tbody>
2555
+ </table></div>
2556
+ </div>
2557
+ </div>
2558
+ <hr>
2559
+ <div class="refsect2">
2560
+ <a name="gtk-text-view-get-pixels-below-lines"></a><h3>gtk_text_view_get_pixels_below_lines ()</h3>
2561
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
2562
+ gtk_text_view_get_pixels_below_lines (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
2563
+ <p>Gets the value set by <a class="link" href="GtkTextView.html#gtk-text-view-set-pixels-below-lines" title="gtk_text_view_set_pixels_below_lines ()"><code class="function">gtk_text_view_set_pixels_below_lines()</code></a>.</p>
2564
+ <div class="refsect3">
2565
+ <a name="id-1.4.8.8.13.46.5"></a><h4>Parameters</h4>
2566
+ <div class="informaltable"><table width="100%" border="0">
2567
+ <colgroup>
2568
+ <col width="150px" class="parameters_name">
2569
+ <col class="parameters_description">
2570
+ <col width="200px" class="parameters_annotations">
2571
+ </colgroup>
2572
+ <tbody><tr>
2573
+ <td class="parameter_name"><p>text_view</p></td>
2574
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2575
+ <td class="parameter_annotations"> </td>
2576
+ </tr></tbody>
2577
+ </table></div>
2578
+ </div>
2579
+ <div class="refsect3">
2580
+ <a name="id-1.4.8.8.13.46.6"></a><h4>Returns</h4>
2581
+ <p> default number of blank pixels below paragraphs</p>
2582
+ <p></p>
2583
+ </div>
2584
+ </div>
2585
+ <hr>
2586
+ <div class="refsect2">
2587
+ <a name="gtk-text-view-set-pixels-inside-wrap"></a><h3>gtk_text_view_set_pixels_inside_wrap ()</h3>
2588
+ <pre class="programlisting"><span class="returnvalue">void</span>
2589
+ gtk_text_view_set_pixels_inside_wrap (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
2590
+ <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> pixels_inside_wrap</code></em>);</pre>
2591
+ <p>Sets the default number of pixels of blank space to leave between
2592
+ display/wrapped lines within a paragraph. May be overridden by
2593
+ tags in <em class="parameter"><code>text_view</code></em>
2594
+ 's buffer.</p>
2595
+ <div class="refsect3">
2596
+ <a name="id-1.4.8.8.13.47.5"></a><h4>Parameters</h4>
2597
+ <div class="informaltable"><table width="100%" border="0">
2598
+ <colgroup>
2599
+ <col width="150px" class="parameters_name">
2600
+ <col class="parameters_description">
2601
+ <col width="200px" class="parameters_annotations">
2602
+ </colgroup>
2603
+ <tbody>
2604
+ <tr>
2605
+ <td class="parameter_name"><p>text_view</p></td>
2606
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2607
+ <td class="parameter_annotations"> </td>
2608
+ </tr>
2609
+ <tr>
2610
+ <td class="parameter_name"><p>pixels_inside_wrap</p></td>
2611
+ <td class="parameter_description"><p>default number of pixels between wrapped lines</p></td>
2612
+ <td class="parameter_annotations"> </td>
2613
+ </tr>
2614
+ </tbody>
2615
+ </table></div>
2616
+ </div>
2617
+ </div>
2618
+ <hr>
2619
+ <div class="refsect2">
2620
+ <a name="gtk-text-view-get-pixels-inside-wrap"></a><h3>gtk_text_view_get_pixels_inside_wrap ()</h3>
2621
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
2622
+ gtk_text_view_get_pixels_inside_wrap (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
2623
+ <p>Gets the value set by <a class="link" href="GtkTextView.html#gtk-text-view-set-pixels-inside-wrap" title="gtk_text_view_set_pixels_inside_wrap ()"><code class="function">gtk_text_view_set_pixels_inside_wrap()</code></a>.</p>
2624
+ <div class="refsect3">
2625
+ <a name="id-1.4.8.8.13.48.5"></a><h4>Parameters</h4>
2626
+ <div class="informaltable"><table width="100%" border="0">
2627
+ <colgroup>
2628
+ <col width="150px" class="parameters_name">
2629
+ <col class="parameters_description">
2630
+ <col width="200px" class="parameters_annotations">
2631
+ </colgroup>
2632
+ <tbody><tr>
2633
+ <td class="parameter_name"><p>text_view</p></td>
2634
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2635
+ <td class="parameter_annotations"> </td>
2636
+ </tr></tbody>
2637
+ </table></div>
2638
+ </div>
2639
+ <div class="refsect3">
2640
+ <a name="id-1.4.8.8.13.48.6"></a><h4>Returns</h4>
2641
+ <p> default number of pixels of blank space between wrapped lines</p>
2642
+ <p></p>
2643
+ </div>
2644
+ </div>
2645
+ <hr>
2646
+ <div class="refsect2">
2647
+ <a name="gtk-text-view-set-justification"></a><h3>gtk_text_view_set_justification ()</h3>
2648
+ <pre class="programlisting"><span class="returnvalue">void</span>
2649
+ gtk_text_view_set_justification (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
2650
+ <em class="parameter"><code><a class="link" href="gtk2-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> justification</code></em>);</pre>
2651
+ <p>Sets the default justification of text in <em class="parameter"><code>text_view</code></em>
2652
+ .
2653
+ Tags in the view's buffer may override the default.</p>
2654
+ <div class="refsect3">
2655
+ <a name="id-1.4.8.8.13.49.5"></a><h4>Parameters</h4>
2656
+ <div class="informaltable"><table width="100%" border="0">
2657
+ <colgroup>
2658
+ <col width="150px" class="parameters_name">
2659
+ <col class="parameters_description">
2660
+ <col width="200px" class="parameters_annotations">
2661
+ </colgroup>
2662
+ <tbody>
2663
+ <tr>
2664
+ <td class="parameter_name"><p>text_view</p></td>
2665
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2666
+ <td class="parameter_annotations"> </td>
2667
+ </tr>
2668
+ <tr>
2669
+ <td class="parameter_name"><p>justification</p></td>
2670
+ <td class="parameter_description"><p>justification</p></td>
2671
+ <td class="parameter_annotations"> </td>
2672
+ </tr>
2673
+ </tbody>
2674
+ </table></div>
2675
+ </div>
2676
+ </div>
2677
+ <hr>
2678
+ <div class="refsect2">
2679
+ <a name="gtk-text-view-get-justification"></a><h3>gtk_text_view_get_justification ()</h3>
2680
+ <pre class="programlisting"><a class="link" href="gtk2-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="returnvalue">GtkJustification</span></a>
2681
+ gtk_text_view_get_justification (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
2682
+ <p>Gets the default justification of paragraphs in <em class="parameter"><code>text_view</code></em>
2683
+ .
2684
+ Tags in the buffer may override the default.</p>
2685
+ <div class="refsect3">
2686
+ <a name="id-1.4.8.8.13.50.5"></a><h4>Parameters</h4>
2687
+ <div class="informaltable"><table width="100%" border="0">
2688
+ <colgroup>
2689
+ <col width="150px" class="parameters_name">
2690
+ <col class="parameters_description">
2691
+ <col width="200px" class="parameters_annotations">
2692
+ </colgroup>
2693
+ <tbody><tr>
2694
+ <td class="parameter_name"><p>text_view</p></td>
2695
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2696
+ <td class="parameter_annotations"> </td>
2697
+ </tr></tbody>
2698
+ </table></div>
2699
+ </div>
2700
+ <div class="refsect3">
2701
+ <a name="id-1.4.8.8.13.50.6"></a><h4>Returns</h4>
2702
+ <p> default justification</p>
2703
+ <p></p>
2704
+ </div>
2705
+ </div>
2706
+ <hr>
2707
+ <div class="refsect2">
2708
+ <a name="gtk-text-view-set-left-margin"></a><h3>gtk_text_view_set_left_margin ()</h3>
2709
+ <pre class="programlisting"><span class="returnvalue">void</span>
2710
+ gtk_text_view_set_left_margin (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
2711
+ <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> left_margin</code></em>);</pre>
2712
+ <p>Sets the default left margin for text in <em class="parameter"><code>text_view</code></em>
2713
+ .
2714
+ Tags in the buffer may override the default.</p>
2715
+ <div class="refsect3">
2716
+ <a name="id-1.4.8.8.13.51.5"></a><h4>Parameters</h4>
2717
+ <div class="informaltable"><table width="100%" border="0">
2718
+ <colgroup>
2719
+ <col width="150px" class="parameters_name">
2720
+ <col class="parameters_description">
2721
+ <col width="200px" class="parameters_annotations">
2722
+ </colgroup>
2723
+ <tbody>
2724
+ <tr>
2725
+ <td class="parameter_name"><p>text_view</p></td>
2726
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2727
+ <td class="parameter_annotations"> </td>
2728
+ </tr>
2729
+ <tr>
2730
+ <td class="parameter_name"><p>left_margin</p></td>
2731
+ <td class="parameter_description"><p>left margin in pixels</p></td>
2732
+ <td class="parameter_annotations"> </td>
2733
+ </tr>
2734
+ </tbody>
2735
+ </table></div>
2736
+ </div>
2737
+ </div>
2738
+ <hr>
2739
+ <div class="refsect2">
2740
+ <a name="gtk-text-view-get-left-margin"></a><h3>gtk_text_view_get_left_margin ()</h3>
2741
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
2742
+ gtk_text_view_get_left_margin (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
2743
+ <p>Gets the default left margin size of paragraphs in the <em class="parameter"><code>text_view</code></em>
2744
+ .
2745
+ Tags in the buffer may override the default.</p>
2746
+ <div class="refsect3">
2747
+ <a name="id-1.4.8.8.13.52.5"></a><h4>Parameters</h4>
2748
+ <div class="informaltable"><table width="100%" border="0">
2749
+ <colgroup>
2750
+ <col width="150px" class="parameters_name">
2751
+ <col class="parameters_description">
2752
+ <col width="200px" class="parameters_annotations">
2753
+ </colgroup>
2754
+ <tbody><tr>
2755
+ <td class="parameter_name"><p>text_view</p></td>
2756
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2757
+ <td class="parameter_annotations"> </td>
2758
+ </tr></tbody>
2759
+ </table></div>
2760
+ </div>
2761
+ <div class="refsect3">
2762
+ <a name="id-1.4.8.8.13.52.6"></a><h4>Returns</h4>
2763
+ <p> left margin in pixels</p>
2764
+ <p></p>
2765
+ </div>
2766
+ </div>
2767
+ <hr>
2768
+ <div class="refsect2">
2769
+ <a name="gtk-text-view-set-right-margin"></a><h3>gtk_text_view_set_right_margin ()</h3>
2770
+ <pre class="programlisting"><span class="returnvalue">void</span>
2771
+ gtk_text_view_set_right_margin (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
2772
+ <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> right_margin</code></em>);</pre>
2773
+ <p>Sets the default right margin for text in the text view.
2774
+ Tags in the buffer may override the default.</p>
2775
+ <div class="refsect3">
2776
+ <a name="id-1.4.8.8.13.53.5"></a><h4>Parameters</h4>
2777
+ <div class="informaltable"><table width="100%" border="0">
2778
+ <colgroup>
2779
+ <col width="150px" class="parameters_name">
2780
+ <col class="parameters_description">
2781
+ <col width="200px" class="parameters_annotations">
2782
+ </colgroup>
2783
+ <tbody>
2784
+ <tr>
2785
+ <td class="parameter_name"><p>text_view</p></td>
2786
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2787
+ <td class="parameter_annotations"> </td>
2788
+ </tr>
2789
+ <tr>
2790
+ <td class="parameter_name"><p>right_margin</p></td>
2791
+ <td class="parameter_description"><p>right margin in pixels</p></td>
2792
+ <td class="parameter_annotations"> </td>
2793
+ </tr>
2794
+ </tbody>
2795
+ </table></div>
2796
+ </div>
2797
+ </div>
2798
+ <hr>
2799
+ <div class="refsect2">
2800
+ <a name="gtk-text-view-get-right-margin"></a><h3>gtk_text_view_get_right_margin ()</h3>
2801
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
2802
+ gtk_text_view_get_right_margin (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
2803
+ <p>Gets the default right margin for text in <em class="parameter"><code>text_view</code></em>
2804
+ . Tags
2805
+ in the buffer may override the default.</p>
2806
+ <div class="refsect3">
2807
+ <a name="id-1.4.8.8.13.54.5"></a><h4>Parameters</h4>
2808
+ <div class="informaltable"><table width="100%" border="0">
2809
+ <colgroup>
2810
+ <col width="150px" class="parameters_name">
2811
+ <col class="parameters_description">
2812
+ <col width="200px" class="parameters_annotations">
2813
+ </colgroup>
2814
+ <tbody><tr>
2815
+ <td class="parameter_name"><p>text_view</p></td>
2816
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2817
+ <td class="parameter_annotations"> </td>
2818
+ </tr></tbody>
2819
+ </table></div>
2820
+ </div>
2821
+ <div class="refsect3">
2822
+ <a name="id-1.4.8.8.13.54.6"></a><h4>Returns</h4>
2823
+ <p> right margin in pixels</p>
2824
+ <p></p>
2825
+ </div>
2826
+ </div>
2827
+ <hr>
2828
+ <div class="refsect2">
2829
+ <a name="gtk-text-view-set-indent"></a><h3>gtk_text_view_set_indent ()</h3>
2830
+ <pre class="programlisting"><span class="returnvalue">void</span>
2831
+ gtk_text_view_set_indent (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
2832
+ <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> indent</code></em>);</pre>
2833
+ <p>Sets the default indentation for paragraphs in <em class="parameter"><code>text_view</code></em>
2834
+ .
2835
+ Tags in the buffer may override the default.</p>
2836
+ <div class="refsect3">
2837
+ <a name="id-1.4.8.8.13.55.5"></a><h4>Parameters</h4>
2838
+ <div class="informaltable"><table width="100%" border="0">
2839
+ <colgroup>
2840
+ <col width="150px" class="parameters_name">
2841
+ <col class="parameters_description">
2842
+ <col width="200px" class="parameters_annotations">
2843
+ </colgroup>
2844
+ <tbody>
2845
+ <tr>
2846
+ <td class="parameter_name"><p>text_view</p></td>
2847
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2848
+ <td class="parameter_annotations"> </td>
2849
+ </tr>
2850
+ <tr>
2851
+ <td class="parameter_name"><p>indent</p></td>
2852
+ <td class="parameter_description"><p>indentation in pixels</p></td>
2853
+ <td class="parameter_annotations"> </td>
2854
+ </tr>
2855
+ </tbody>
2856
+ </table></div>
2857
+ </div>
2858
+ </div>
2859
+ <hr>
2860
+ <div class="refsect2">
2861
+ <a name="gtk-text-view-get-indent"></a><h3>gtk_text_view_get_indent ()</h3>
2862
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
2863
+ gtk_text_view_get_indent (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
2864
+ <p>Gets the default indentation of paragraphs in <em class="parameter"><code>text_view</code></em>
2865
+ .
2866
+ Tags in the view's buffer may override the default.
2867
+ The indentation may be negative.</p>
2868
+ <div class="refsect3">
2869
+ <a name="id-1.4.8.8.13.56.5"></a><h4>Parameters</h4>
2870
+ <div class="informaltable"><table width="100%" border="0">
2871
+ <colgroup>
2872
+ <col width="150px" class="parameters_name">
2873
+ <col class="parameters_description">
2874
+ <col width="200px" class="parameters_annotations">
2875
+ </colgroup>
2876
+ <tbody><tr>
2877
+ <td class="parameter_name"><p>text_view</p></td>
2878
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2879
+ <td class="parameter_annotations"> </td>
2880
+ </tr></tbody>
2881
+ </table></div>
2882
+ </div>
2883
+ <div class="refsect3">
2884
+ <a name="id-1.4.8.8.13.56.6"></a><h4>Returns</h4>
2885
+ <p> number of pixels of indentation</p>
2886
+ <p></p>
2887
+ </div>
2888
+ </div>
2889
+ <hr>
2890
+ <div class="refsect2">
2891
+ <a name="gtk-text-view-set-tabs"></a><h3>gtk_text_view_set_tabs ()</h3>
2892
+ <pre class="programlisting"><span class="returnvalue">void</span>
2893
+ gtk_text_view_set_tabs (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
2894
+ <em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Tab-Stops.html#PangoTabArray"><span class="type">PangoTabArray</span></a> *tabs</code></em>);</pre>
2895
+ <p>Sets the default tab stops for paragraphs in <em class="parameter"><code>text_view</code></em>
2896
+ .
2897
+ Tags in the buffer may override the default.</p>
2898
+ <div class="refsect3">
2899
+ <a name="id-1.4.8.8.13.57.5"></a><h4>Parameters</h4>
2900
+ <div class="informaltable"><table width="100%" border="0">
2901
+ <colgroup>
2902
+ <col width="150px" class="parameters_name">
2903
+ <col class="parameters_description">
2904
+ <col width="200px" class="parameters_annotations">
2905
+ </colgroup>
2906
+ <tbody>
2907
+ <tr>
2908
+ <td class="parameter_name"><p>text_view</p></td>
2909
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2910
+ <td class="parameter_annotations"> </td>
2911
+ </tr>
2912
+ <tr>
2913
+ <td class="parameter_name"><p>tabs</p></td>
2914
+ <td class="parameter_description"><p>tabs as a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Tab-Stops.html#PangoTabArray"><span class="type">PangoTabArray</span></a></p></td>
2915
+ <td class="parameter_annotations"> </td>
2916
+ </tr>
2917
+ </tbody>
2918
+ </table></div>
2919
+ </div>
2920
+ </div>
2921
+ <hr>
2922
+ <div class="refsect2">
2923
+ <a name="gtk-text-view-get-tabs"></a><h3>gtk_text_view_get_tabs ()</h3>
2924
+ <pre class="programlisting"><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Tab-Stops.html#PangoTabArray"><span class="returnvalue">PangoTabArray</span></a> *
2925
+ gtk_text_view_get_tabs (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
2926
+ <p>Gets the default tabs for <em class="parameter"><code>text_view</code></em>
2927
+ . Tags in the buffer may
2928
+ override the defaults. The returned array will be <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if
2929
+ "standard" (8-space) tabs are used. Free the return value
2930
+ with <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Tab-Stops.html#pango-tab-array-free"><code class="function">pango_tab_array_free()</code></a>.</p>
2931
+ <div class="refsect3">
2932
+ <a name="id-1.4.8.8.13.58.5"></a><h4>Parameters</h4>
2933
+ <div class="informaltable"><table width="100%" border="0">
2934
+ <colgroup>
2935
+ <col width="150px" class="parameters_name">
2936
+ <col class="parameters_description">
2937
+ <col width="200px" class="parameters_annotations">
2938
+ </colgroup>
2939
+ <tbody><tr>
2940
+ <td class="parameter_name"><p>text_view</p></td>
2941
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2942
+ <td class="parameter_annotations"> </td>
2943
+ </tr></tbody>
2944
+ </table></div>
2945
+ </div>
2946
+ <div class="refsect3">
2947
+ <a name="id-1.4.8.8.13.58.6"></a><h4>Returns</h4>
2948
+ <p> copy of default tab array, 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 "standard"
2949
+ tabs are used; must be freed with <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Tab-Stops.html#pango-tab-array-free"><code class="function">pango_tab_array_free()</code></a>.</p>
2950
+ <p></p>
2951
+ </div>
2952
+ </div>
2953
+ <hr>
2954
+ <div class="refsect2">
2955
+ <a name="gtk-text-view-set-accepts-tab"></a><h3>gtk_text_view_set_accepts_tab ()</h3>
2956
+ <pre class="programlisting"><span class="returnvalue">void</span>
2957
+ gtk_text_view_set_accepts_tab (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
2958
+ <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> accepts_tab</code></em>);</pre>
2959
+ <p>Sets the behavior of the text widget when the Tab key is pressed.
2960
+ If <em class="parameter"><code>accepts_tab</code></em>
2961
+ is <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>, a tab character is inserted. If <em class="parameter"><code>accepts_tab</code></em>
2962
+
2963
+ is <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> the keyboard focus is moved to the next widget in the focus
2964
+ chain.</p>
2965
+ <div class="refsect3">
2966
+ <a name="id-1.4.8.8.13.59.5"></a><h4>Parameters</h4>
2967
+ <div class="informaltable"><table width="100%" border="0">
2968
+ <colgroup>
2969
+ <col width="150px" class="parameters_name">
2970
+ <col class="parameters_description">
2971
+ <col width="200px" class="parameters_annotations">
2972
+ </colgroup>
2973
+ <tbody>
2974
+ <tr>
2975
+ <td class="parameter_name"><p>text_view</p></td>
2976
+ <td class="parameter_description"><p>A <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
2977
+ <td class="parameter_annotations"> </td>
2978
+ </tr>
2979
+ <tr>
2980
+ <td class="parameter_name"><p>accepts_tab</p></td>
2981
+ <td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if pressing the Tab key should insert a tab
2982
+ character, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, if pressing the Tab key should move the
2983
+ keyboard focus.</p></td>
2984
+ <td class="parameter_annotations"> </td>
2985
+ </tr>
2986
+ </tbody>
2987
+ </table></div>
2988
+ </div>
2989
+ <p class="since">Since 2.4</p>
2990
+ </div>
2991
+ <hr>
2992
+ <div class="refsect2">
2993
+ <a name="gtk-text-view-get-accepts-tab"></a><h3>gtk_text_view_get_accepts_tab ()</h3>
2994
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2995
+ gtk_text_view_get_accepts_tab (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
2996
+ <p>Returns whether pressing the Tab key inserts a tab characters.
2997
+ <a class="link" href="GtkTextView.html#gtk-text-view-set-accepts-tab" title="gtk_text_view_set_accepts_tab ()"><code class="function">gtk_text_view_set_accepts_tab()</code></a>.</p>
2998
+ <div class="refsect3">
2999
+ <a name="id-1.4.8.8.13.60.5"></a><h4>Parameters</h4>
3000
+ <div class="informaltable"><table width="100%" border="0">
3001
+ <colgroup>
3002
+ <col width="150px" class="parameters_name">
3003
+ <col class="parameters_description">
3004
+ <col width="200px" class="parameters_annotations">
3005
+ </colgroup>
3006
+ <tbody><tr>
3007
+ <td class="parameter_name"><p>text_view</p></td>
3008
+ <td class="parameter_description"><p>A <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
3009
+ <td class="parameter_annotations"> </td>
3010
+ </tr></tbody>
3011
+ </table></div>
3012
+ </div>
3013
+ <div class="refsect3">
3014
+ <a name="id-1.4.8.8.13.60.6"></a><h4>Returns</h4>
3015
+ <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if pressing the Tab key inserts a tab character,
3016
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if pressing the Tab key moves the keyboard focus.</p>
3017
+ <p></p>
3018
+ </div>
3019
+ <p class="since">Since 2.4</p>
3020
+ </div>
3021
+ <hr>
3022
+ <div class="refsect2">
3023
+ <a name="gtk-text-view-get-default-attributes"></a><h3>gtk_text_view_get_default_attributes ()</h3>
3024
+ <pre class="programlisting"><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> *
3025
+ gtk_text_view_get_default_attributes (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
3026
+ <p>Obtains a copy of the default text attributes. These are the
3027
+ attributes used for text unless a tag overrides them.
3028
+ You'd typically pass the default attributes in to
3029
+ <a class="link" href="GtkTextIter.html#gtk-text-iter-get-attributes" title="gtk_text_iter_get_attributes ()"><code class="function">gtk_text_iter_get_attributes()</code></a> in order to get the
3030
+ attributes in effect at a given text position.</p>
3031
+ <p>The return value is a copy owned by the caller of this function,
3032
+ and should be freed.</p>
3033
+ <div class="refsect3">
3034
+ <a name="id-1.4.8.8.13.61.6"></a><h4>Parameters</h4>
3035
+ <div class="informaltable"><table width="100%" border="0">
3036
+ <colgroup>
3037
+ <col width="150px" class="parameters_name">
3038
+ <col class="parameters_description">
3039
+ <col width="200px" class="parameters_annotations">
3040
+ </colgroup>
3041
+ <tbody><tr>
3042
+ <td class="parameter_name"><p>text_view</p></td>
3043
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
3044
+ <td class="parameter_annotations"> </td>
3045
+ </tr></tbody>
3046
+ </table></div>
3047
+ </div>
3048
+ <div class="refsect3">
3049
+ <a name="id-1.4.8.8.13.61.7"></a><h4>Returns</h4>
3050
+ <p> a new <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a></p>
3051
+ <p></p>
3052
+ </div>
3053
+ </div>
3054
+ <hr>
3055
+ <div class="refsect2">
3056
+ <a name="gtk-text-view-im-context-filter-keypress"></a><h3>gtk_text_view_im_context_filter_keypress ()</h3>
3057
+ <pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
3058
+ gtk_text_view_im_context_filter_keypress
3059
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
3060
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk2-Event-Structures.html#GdkEventKey"><span class="type">GdkEventKey</span></a> *event</code></em>);</pre>
3061
+ <p>Allow the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> input method to internally handle key press
3062
+ and release events. If this function returns <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>, then no further
3063
+ processing should be done for this key event. See
3064
+ <a class="link" href="GtkIMContext.html#gtk-im-context-filter-keypress" title="gtk_im_context_filter_keypress ()"><code class="function">gtk_im_context_filter_keypress()</code></a>.</p>
3065
+ <p>Note that you are expected to call this function from your handler
3066
+ when overriding key event handling. This is needed in the case when
3067
+ you need to insert your own key handling between the input method
3068
+ and the default key event handling of the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>.</p>
3069
+ <div class="informalexample">
3070
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
3071
+ <tbody>
3072
+ <tr>
3073
+ <td class="listing_lines" align="right"><pre>1
3074
+ 2
3075
+ 3
3076
+ 4
3077
+ 5
3078
+ 6
3079
+ 7
3080
+ 8
3081
+ 9
3082
+ 10
3083
+ 11
3084
+ 12
3085
+ 13
3086
+ 14</pre></td>
3087
+ <td class="listing_code"><pre class="programlisting"><span class="keyword">static</span><span class="normal"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean">gboolean</a></span>
3088
+ <span class="function">gtk_foo_bar_key_press_event</span><span class="normal"> </span><span class="symbol">(</span><span class="usertype">GtkWidget</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">widget</span><span class="symbol">,</span>
3089
+ <span class="normal"> </span><span class="usertype">GdkEventKey</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">event</span><span class="symbol">)</span>
3090
+ <span class="cbracket">{</span>
3091
+ <span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">((</span><span class="normal">key</span><span class="symbol">-&gt;</span><span class="normal">keyval </span><span class="symbol">==</span><span class="normal"> GDK_Return </span><span class="symbol">||</span><span class="normal"> key</span><span class="symbol">-&gt;</span><span class="normal">keyval </span><span class="symbol">==</span><span class="normal"> GDK_KP_Enter</span><span class="symbol">))</span>
3092
+ <span class="normal"> </span><span class="cbracket">{</span>
3093
+ <span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="function"><a href="GtkTextView.html#gtk-text-view-im-context-filter-keypress">gtk_text_view_im_context_filter_keypress</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function">GTK_TEXT_VIEW</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">view</span><span class="symbol">),</span><span class="normal"> event</span><span class="symbol">))</span>
3094
+ <span class="normal"> </span><span class="keyword">return</span><span class="normal"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS">TRUE</a></span><span class="symbol">;</span>
3095
+ <span class="normal"> </span><span class="cbracket">}</span>
3096
+
3097
+ <span class="normal"> </span><span class="comment">/* Do some stuff */</span>
3098
+
3099
+ <span class="normal"> </span><span class="keyword">return</span><span class="normal"> </span><span class="function">GTK_WIDGET_CLASS</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">gtk_foo_bar_parent_class</span><span class="symbol">)-&gt;</span><span class="function">key_press_event</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">widget</span><span class="symbol">,</span><span class="normal"> event</span><span class="symbol">);</span>
3100
+ <span class="cbracket">}</span></pre></td>
3101
+ </tr>
3102
+ </tbody>
3103
+ </table>
3104
+ </div>
3105
+
3106
+ <p></p>
3107
+ <div class="refsect3">
3108
+ <a name="id-1.4.8.8.13.62.8"></a><h4>Parameters</h4>
3109
+ <div class="informaltable"><table width="100%" border="0">
3110
+ <colgroup>
3111
+ <col width="150px" class="parameters_name">
3112
+ <col class="parameters_description">
3113
+ <col width="200px" class="parameters_annotations">
3114
+ </colgroup>
3115
+ <tbody>
3116
+ <tr>
3117
+ <td class="parameter_name"><p>text_view</p></td>
3118
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
3119
+ <td class="parameter_annotations"> </td>
3120
+ </tr>
3121
+ <tr>
3122
+ <td class="parameter_name"><p>event</p></td>
3123
+ <td class="parameter_description"><p>the key event</p></td>
3124
+ <td class="parameter_annotations"> </td>
3125
+ </tr>
3126
+ </tbody>
3127
+ </table></div>
3128
+ </div>
3129
+ <div class="refsect3">
3130
+ <a name="id-1.4.8.8.13.62.9"></a><h4>Returns</h4>
3131
+ <p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the input method handled the key event.</p>
3132
+ <p></p>
3133
+ </div>
3134
+ <p class="since">Since 2.22</p>
3135
+ </div>
3136
+ <hr>
3137
+ <div class="refsect2">
3138
+ <a name="gtk-text-view-reset-im-context"></a><h3>gtk_text_view_reset_im_context ()</h3>
3139
+ <pre class="programlisting"><span class="returnvalue">void</span>
3140
+ gtk_text_view_reset_im_context (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
3141
+ <p>Reset the input method context of the text view if needed.</p>
3142
+ <p>This can be necessary in the case where modifying the buffer
3143
+ would confuse on-going input method behavior.</p>
3144
+ <div class="refsect3">
3145
+ <a name="id-1.4.8.8.13.63.6"></a><h4>Parameters</h4>
3146
+ <div class="informaltable"><table width="100%" border="0">
3147
+ <colgroup>
3148
+ <col width="150px" class="parameters_name">
3149
+ <col class="parameters_description">
3150
+ <col width="200px" class="parameters_annotations">
3151
+ </colgroup>
3152
+ <tbody><tr>
3153
+ <td class="parameter_name"><p>text_view</p></td>
3154
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
3155
+ <td class="parameter_annotations"> </td>
3156
+ </tr></tbody>
3157
+ </table></div>
3158
+ </div>
3159
+ <p class="since">Since 2.22</p>
3160
+ </div>
3161
+ <hr>
3162
+ <div class="refsect2">
3163
+ <a name="gtk-text-view-get-hadjustment"></a><h3>gtk_text_view_get_hadjustment ()</h3>
3164
+ <pre class="programlisting"><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> *
3165
+ gtk_text_view_get_hadjustment (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
3166
+ <p>Gets the horizontal-scrolling <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>.</p>
3167
+ <div class="refsect3">
3168
+ <a name="id-1.4.8.8.13.64.5"></a><h4>Parameters</h4>
3169
+ <div class="informaltable"><table width="100%" border="0">
3170
+ <colgroup>
3171
+ <col width="150px" class="parameters_name">
3172
+ <col class="parameters_description">
3173
+ <col width="200px" class="parameters_annotations">
3174
+ </colgroup>
3175
+ <tbody><tr>
3176
+ <td class="parameter_name"><p>text_view</p></td>
3177
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
3178
+ <td class="parameter_annotations"> </td>
3179
+ </tr></tbody>
3180
+ </table></div>
3181
+ </div>
3182
+ <div class="refsect3">
3183
+ <a name="id-1.4.8.8.13.64.6"></a><h4>Returns</h4>
3184
+ <p> pointer to the horizontal <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>. </p>
3185
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
3186
+ </div>
3187
+ <p class="since">Since 2.22</p>
3188
+ </div>
3189
+ <hr>
3190
+ <div class="refsect2">
3191
+ <a name="gtk-text-view-get-vadjustment"></a><h3>gtk_text_view_get_vadjustment ()</h3>
3192
+ <pre class="programlisting"><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> *
3193
+ gtk_text_view_get_vadjustment (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
3194
+ <p>Gets the vertical-scrolling <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>.</p>
3195
+ <div class="refsect3">
3196
+ <a name="id-1.4.8.8.13.65.5"></a><h4>Parameters</h4>
3197
+ <div class="informaltable"><table width="100%" border="0">
3198
+ <colgroup>
3199
+ <col width="150px" class="parameters_name">
3200
+ <col class="parameters_description">
3201
+ <col width="200px" class="parameters_annotations">
3202
+ </colgroup>
3203
+ <tbody><tr>
3204
+ <td class="parameter_name"><p>text_view</p></td>
3205
+ <td class="parameter_description"><p>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></p></td>
3206
+ <td class="parameter_annotations"> </td>
3207
+ </tr></tbody>
3208
+ </table></div>
3209
+ </div>
3210
+ <div class="refsect3">
3211
+ <a name="id-1.4.8.8.13.65.6"></a><h4>Returns</h4>
3212
+ <p> pointer to the vertical <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>. </p>
3213
+ <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
3214
+ </div>
3215
+ <p class="since">Since 2.22</p>
3216
+ </div>
3217
+ <hr>
3218
+ <div class="refsect2">
3219
+ <a name="GTK-TEXT-VIEW-PRIORITY-VALIDATE:CAPS"></a><h3>GTK_TEXT_VIEW_PRIORITY_VALIDATE</h3>
3220
+ <pre class="programlisting">#define GTK_TEXT_VIEW_PRIORITY_VALIDATE (GDK_PRIORITY_REDRAW + 5)
3221
+ </pre>
3222
+ <p>
3223
+ The priority at which the text view validates onscreen lines
3224
+ in an idle job in the background.
3225
+ </p>
3226
+ </div>
3227
+ </div>
3228
+ <div class="refsect1">
3229
+ <a name="GtkTextView.other_details"></a><h2>Types and Values</h2>
3230
+ <div class="refsect2">
3231
+ <a name="GtkTextView-struct"></a><h3>struct GtkTextView</h3>
3232
+ <pre class="programlisting">struct GtkTextView;</pre>
3233
+ <p>
3234
+ </p>
3235
+ </div>
3236
+ <hr>
3237
+ <div class="refsect2">
3238
+ <a name="GtkTextWindowType"></a><h3>enum GtkTextWindowType</h3>
3239
+ <p>
3240
+ </p>
3241
+ <div class="refsect3">
3242
+ <a name="id-1.4.8.8.14.3.4"></a><h4>Members</h4>
3243
+ <div class="informaltable"><table width="100%" border="0">
3244
+ <colgroup>
3245
+ <col width="300px" class="enum_members_name">
3246
+ <col class="enum_members_description">
3247
+ <col width="200px" class="enum_members_annotations">
3248
+ </colgroup>
3249
+ <tbody>
3250
+ <tr>
3251
+ <td class="enum_member_name"><p><a name="GTK-TEXT-WINDOW-PRIVATE:CAPS"></a>GTK_TEXT_WINDOW_PRIVATE</p></td>
3252
+ <td class="enum_member_description"> </td>
3253
+ <td class="enum_member_annotations"> </td>
3254
+ </tr>
3255
+ <tr>
3256
+ <td class="enum_member_name"><p><a name="GTK-TEXT-WINDOW-WIDGET:CAPS"></a>GTK_TEXT_WINDOW_WIDGET</p></td>
3257
+ <td class="enum_member_description"> </td>
3258
+ <td class="enum_member_annotations"> </td>
3259
+ </tr>
3260
+ <tr>
3261
+ <td class="enum_member_name"><p><a name="GTK-TEXT-WINDOW-TEXT:CAPS"></a>GTK_TEXT_WINDOW_TEXT</p></td>
3262
+ <td class="enum_member_description"> </td>
3263
+ <td class="enum_member_annotations"> </td>
3264
+ </tr>
3265
+ <tr>
3266
+ <td class="enum_member_name"><p><a name="GTK-TEXT-WINDOW-LEFT:CAPS"></a>GTK_TEXT_WINDOW_LEFT</p></td>
3267
+ <td class="enum_member_description"> </td>
3268
+ <td class="enum_member_annotations"> </td>
3269
+ </tr>
3270
+ <tr>
3271
+ <td class="enum_member_name"><p><a name="GTK-TEXT-WINDOW-RIGHT:CAPS"></a>GTK_TEXT_WINDOW_RIGHT</p></td>
3272
+ <td class="enum_member_description"> </td>
3273
+ <td class="enum_member_annotations"> </td>
3274
+ </tr>
3275
+ <tr>
3276
+ <td class="enum_member_name"><p><a name="GTK-TEXT-WINDOW-TOP:CAPS"></a>GTK_TEXT_WINDOW_TOP</p></td>
3277
+ <td class="enum_member_description"> </td>
3278
+ <td class="enum_member_annotations"> </td>
3279
+ </tr>
3280
+ <tr>
3281
+ <td class="enum_member_name"><p><a name="GTK-TEXT-WINDOW-BOTTOM:CAPS"></a>GTK_TEXT_WINDOW_BOTTOM</p></td>
3282
+ <td class="enum_member_description"> </td>
3283
+ <td class="enum_member_annotations"> </td>
3284
+ </tr>
3285
+ </tbody>
3286
+ </table></div>
3287
+ </div>
3288
+ </div>
3289
+ <hr>
3290
+ <div class="refsect2">
3291
+ <a name="GtkTextChildAnchor-struct"></a><h3>struct GtkTextChildAnchor</h3>
3292
+ <pre class="programlisting">struct GtkTextChildAnchor;</pre>
3293
+ <p>
3294
+ A <span class="structname">GtkTextChildAnchor</span> is a spot in the buffer
3295
+ where child widgets can be "anchored" (inserted inline, as if they were
3296
+ characters). The anchor can have multiple widgets anchored, to allow for
3297
+ multiple views.
3298
+ </p>
3299
+ </div>
3300
+ </div>
3301
+ <div class="refsect1">
3302
+ <a name="GtkTextView.property-details"></a><h2>Property Details</h2>
3303
+ <div class="refsect2">
3304
+ <a name="GtkTextView--accepts-tab"></a><h3>The <code class="literal">“accepts-tab”</code> property</h3>
3305
+ <pre class="programlisting"> “accepts-tab” <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></pre>
3306
+ <p>Whether Tab will result in a tab character being entered.</p>
3307
+ <p>Flags: Read / Write</p>
3308
+ <p>Default value: TRUE</p>
3309
+ </div>
3310
+ <hr>
3311
+ <div class="refsect2">
3312
+ <a name="GtkTextView--buffer"></a><h3>The <code class="literal">“buffer”</code> property</h3>
3313
+ <pre class="programlisting"> “buffer” <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *</pre>
3314
+ <p>The buffer which is displayed.</p>
3315
+ <p>Flags: Read / Write</p>
3316
+ </div>
3317
+ <hr>
3318
+ <div class="refsect2">
3319
+ <a name="GtkTextView--cursor-visible"></a><h3>The <code class="literal">“cursor-visible”</code> property</h3>
3320
+ <pre class="programlisting"> “cursor-visible” <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></pre>
3321
+ <p>If the insertion cursor is shown.</p>
3322
+ <p>Flags: Read / Write</p>
3323
+ <p>Default value: TRUE</p>
3324
+ </div>
3325
+ <hr>
3326
+ <div class="refsect2">
3327
+ <a name="GtkTextView--editable"></a><h3>The <code class="literal">“editable”</code> property</h3>
3328
+ <pre class="programlisting"> “editable” <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></pre>
3329
+ <p>Whether the text can be modified by the user.</p>
3330
+ <p>Flags: Read / Write</p>
3331
+ <p>Default value: TRUE</p>
3332
+ </div>
3333
+ <hr>
3334
+ <div class="refsect2">
3335
+ <a name="GtkTextView--im-module"></a><h3>The <code class="literal">“im-module”</code> property</h3>
3336
+ <pre class="programlisting"> “im-module” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
3337
+ <p>Which IM (input method) module should be used for this entry.
3338
+
3339
+ See <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a>.</p>
3340
+ <p>Setting this to a non-<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> value overrides the
3341
+ system-wide IM module setting. See the GtkSettings
3342
+
3343
+ <a class="link" href="GtkSettings.html#GtkSettings--gtk-im-module" title="The “gtk-im-module” property"><span class="type">“gtk-im-module”</span></a> property.</p>
3344
+ <p>Flags: Read / Write</p>
3345
+ <p>Default value: NULL</p>
3346
+ <p class="since">Since 2.16</p>
3347
+ </div>
3348
+ <hr>
3349
+ <div class="refsect2">
3350
+ <a name="GtkTextView--indent"></a><h3>The <code class="literal">“indent”</code> property</h3>
3351
+ <pre class="programlisting"> “indent” <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></pre>
3352
+ <p>Amount to indent the paragraph, in pixels.</p>
3353
+ <p>Flags: Read / Write</p>
3354
+ <p>Default value: 0</p>
3355
+ </div>
3356
+ <hr>
3357
+ <div class="refsect2">
3358
+ <a name="GtkTextView--justification"></a><h3>The <code class="literal">“justification”</code> property</h3>
3359
+ <pre class="programlisting"> “justification” <a class="link" href="gtk2-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a></pre>
3360
+ <p>Left, right, or center justification.</p>
3361
+ <p>Flags: Read / Write</p>
3362
+ <p>Default value: GTK_JUSTIFY_LEFT</p>
3363
+ </div>
3364
+ <hr>
3365
+ <div class="refsect2">
3366
+ <a name="GtkTextView--left-margin"></a><h3>The <code class="literal">“left-margin”</code> property</h3>
3367
+ <pre class="programlisting"> “left-margin” <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></pre>
3368
+ <p>Width of the left margin in pixels.</p>
3369
+ <p>Flags: Read / Write</p>
3370
+ <p>Allowed values: &gt;= 0</p>
3371
+ <p>Default value: 0</p>
3372
+ </div>
3373
+ <hr>
3374
+ <div class="refsect2">
3375
+ <a name="GtkTextView--overwrite"></a><h3>The <code class="literal">“overwrite”</code> property</h3>
3376
+ <pre class="programlisting"> “overwrite” <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></pre>
3377
+ <p>Whether entered text overwrites existing contents.</p>
3378
+ <p>Flags: Read / Write</p>
3379
+ <p>Default value: FALSE</p>
3380
+ </div>
3381
+ <hr>
3382
+ <div class="refsect2">
3383
+ <a name="GtkTextView--pixels-above-lines"></a><h3>The <code class="literal">“pixels-above-lines”</code> property</h3>
3384
+ <pre class="programlisting"> “pixels-above-lines” <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></pre>
3385
+ <p>Pixels of blank space above paragraphs.</p>
3386
+ <p>Flags: Read / Write</p>
3387
+ <p>Allowed values: &gt;= 0</p>
3388
+ <p>Default value: 0</p>
3389
+ </div>
3390
+ <hr>
3391
+ <div class="refsect2">
3392
+ <a name="GtkTextView--pixels-below-lines"></a><h3>The <code class="literal">“pixels-below-lines”</code> property</h3>
3393
+ <pre class="programlisting"> “pixels-below-lines” <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></pre>
3394
+ <p>Pixels of blank space below paragraphs.</p>
3395
+ <p>Flags: Read / Write</p>
3396
+ <p>Allowed values: &gt;= 0</p>
3397
+ <p>Default value: 0</p>
3398
+ </div>
3399
+ <hr>
3400
+ <div class="refsect2">
3401
+ <a name="GtkTextView--pixels-inside-wrap"></a><h3>The <code class="literal">“pixels-inside-wrap”</code> property</h3>
3402
+ <pre class="programlisting"> “pixels-inside-wrap” <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></pre>
3403
+ <p>Pixels of blank space between wrapped lines in a paragraph.</p>
3404
+ <p>Flags: Read / Write</p>
3405
+ <p>Allowed values: &gt;= 0</p>
3406
+ <p>Default value: 0</p>
3407
+ </div>
3408
+ <hr>
3409
+ <div class="refsect2">
3410
+ <a name="GtkTextView--right-margin"></a><h3>The <code class="literal">“right-margin”</code> property</h3>
3411
+ <pre class="programlisting"> “right-margin” <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></pre>
3412
+ <p>Width of the right margin in pixels.</p>
3413
+ <p>Flags: Read / Write</p>
3414
+ <p>Allowed values: &gt;= 0</p>
3415
+ <p>Default value: 0</p>
3416
+ </div>
3417
+ <hr>
3418
+ <div class="refsect2">
3419
+ <a name="GtkTextView--tabs"></a><h3>The <code class="literal">“tabs”</code> property</h3>
3420
+ <pre class="programlisting"> “tabs” <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Tab-Stops.html#PangoTabArray"><span class="type">PangoTabArray</span></a> *</pre>
3421
+ <p>Custom tabs for this text.</p>
3422
+ <p>Flags: Read / Write</p>
3423
+ </div>
3424
+ <hr>
3425
+ <div class="refsect2">
3426
+ <a name="GtkTextView--wrap-mode"></a><h3>The <code class="literal">“wrap-mode”</code> property</h3>
3427
+ <pre class="programlisting"> “wrap-mode” <a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="type">GtkWrapMode</span></a></pre>
3428
+ <p>Whether to wrap lines never, at word boundaries, or at character boundaries.</p>
3429
+ <p>Flags: Read / Write</p>
3430
+ <p>Default value: GTK_WRAP_NONE</p>
3431
+ </div>
3432
+ </div>
3433
+ <div class="refsect1">
3434
+ <a name="GtkTextView.style-property-details"></a><h2>Style Property Details</h2>
3435
+ <div class="refsect2">
3436
+ <a name="GtkTextView--s-error-underline-color"></a><h3>The <code class="literal">“error-underline-color”</code> style property</h3>
3437
+ <pre class="programlisting"> “error-underline-color” <a href="http://library.gnome.org/devel/gdk3/gdk2-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *</pre>
3438
+ <p>Color with which to draw error-indication underlines.</p>
3439
+ <p>Flags: Read</p>
3440
+ </div>
3441
+ </div>
3442
+ <div class="refsect1">
3443
+ <a name="GtkTextView.signal-details"></a><h2>Signal Details</h2>
3444
+ <div class="refsect2">
3445
+ <a name="GtkTextView-backspace"></a><h3>The <code class="literal">“backspace”</code> signal</h3>
3446
+ <pre class="programlisting"><span class="returnvalue">void</span>
3447
+ user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
3448
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3449
+ <p>The ::backspace signal is a </p>
3450
+ <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a><p>which gets emitted when the user asks for it.</p>
3451
+ <p>The default bindings for this signal are
3452
+ Backspace and Shift-Backspace.</p>
3453
+ <div class="refsect3">
3454
+ <a name="id-1.4.8.8.17.2.8"></a><h4>Parameters</h4>
3455
+ <div class="informaltable"><table width="100%" border="0">
3456
+ <colgroup>
3457
+ <col width="150px" class="parameters_name">
3458
+ <col class="parameters_description">
3459
+ <col width="200px" class="parameters_annotations">
3460
+ </colgroup>
3461
+ <tbody>
3462
+ <tr>
3463
+ <td class="parameter_name"><p>text_view</p></td>
3464
+ <td class="parameter_description"><p>the object which received the signal</p></td>
3465
+ <td class="parameter_annotations"> </td>
3466
+ </tr>
3467
+ <tr>
3468
+ <td class="parameter_name"><p>user_data</p></td>
3469
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3470
+ <td class="parameter_annotations"> </td>
3471
+ </tr>
3472
+ </tbody>
3473
+ </table></div>
3474
+ </div>
3475
+ <p>Flags: Action</p>
3476
+ </div>
3477
+ <hr>
3478
+ <div class="refsect2">
3479
+ <a name="GtkTextView-copy-clipboard"></a><h3>The <code class="literal">“copy-clipboard”</code> signal</h3>
3480
+ <pre class="programlisting"><span class="returnvalue">void</span>
3481
+ user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
3482
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3483
+ <p>The ::copy-clipboard signal is a </p>
3484
+ <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a><p>which gets emitted to copy the selection to the clipboard.</p>
3485
+ <p>The default bindings for this signal are
3486
+ Ctrl-c and Ctrl-Insert.</p>
3487
+ <div class="refsect3">
3488
+ <a name="id-1.4.8.8.17.3.8"></a><h4>Parameters</h4>
3489
+ <div class="informaltable"><table width="100%" border="0">
3490
+ <colgroup>
3491
+ <col width="150px" class="parameters_name">
3492
+ <col class="parameters_description">
3493
+ <col width="200px" class="parameters_annotations">
3494
+ </colgroup>
3495
+ <tbody>
3496
+ <tr>
3497
+ <td class="parameter_name"><p>text_view</p></td>
3498
+ <td class="parameter_description"><p>the object which received the signal</p></td>
3499
+ <td class="parameter_annotations"> </td>
3500
+ </tr>
3501
+ <tr>
3502
+ <td class="parameter_name"><p>user_data</p></td>
3503
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3504
+ <td class="parameter_annotations"> </td>
3505
+ </tr>
3506
+ </tbody>
3507
+ </table></div>
3508
+ </div>
3509
+ <p>Flags: Action</p>
3510
+ </div>
3511
+ <hr>
3512
+ <div class="refsect2">
3513
+ <a name="GtkTextView-cut-clipboard"></a><h3>The <code class="literal">“cut-clipboard”</code> signal</h3>
3514
+ <pre class="programlisting"><span class="returnvalue">void</span>
3515
+ user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
3516
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3517
+ <p>The ::cut-clipboard signal is a </p>
3518
+ <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a><p>which gets emitted to cut the selection to the clipboard.</p>
3519
+ <p>The default bindings for this signal are
3520
+ Ctrl-x and Shift-Delete.</p>
3521
+ <div class="refsect3">
3522
+ <a name="id-1.4.8.8.17.4.8"></a><h4>Parameters</h4>
3523
+ <div class="informaltable"><table width="100%" border="0">
3524
+ <colgroup>
3525
+ <col width="150px" class="parameters_name">
3526
+ <col class="parameters_description">
3527
+ <col width="200px" class="parameters_annotations">
3528
+ </colgroup>
3529
+ <tbody>
3530
+ <tr>
3531
+ <td class="parameter_name"><p>text_view</p></td>
3532
+ <td class="parameter_description"><p>the object which received the signal</p></td>
3533
+ <td class="parameter_annotations"> </td>
3534
+ </tr>
3535
+ <tr>
3536
+ <td class="parameter_name"><p>user_data</p></td>
3537
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3538
+ <td class="parameter_annotations"> </td>
3539
+ </tr>
3540
+ </tbody>
3541
+ </table></div>
3542
+ </div>
3543
+ <p>Flags: Action</p>
3544
+ </div>
3545
+ <hr>
3546
+ <div class="refsect2">
3547
+ <a name="GtkTextView-delete-from-cursor"></a><h3>The <code class="literal">“delete-from-cursor”</code> signal</h3>
3548
+ <pre class="programlisting"><span class="returnvalue">void</span>
3549
+ user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
3550
+ <a class="link" href="gtk2-Standard-Enumerations.html#GtkDeleteType" title="enum GtkDeleteType"><span class="type">GtkDeleteType</span></a> type,
3551
+ <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> count,
3552
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3553
+ <p>The ::delete-from-cursor signal is a </p>
3554
+ <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a><p>which gets emitted when the user initiates a text deletion.</p>
3555
+ <p>If the <em class="parameter"><code>type</code></em>
3556
+ is <a class="link" href="gtk2-Standard-Enumerations.html#GTK-DELETE-CHARS:CAPS"><code class="literal">GTK_DELETE_CHARS</code></a>, GTK+ deletes the selection
3557
+ if there is one, otherwise it deletes the requested number
3558
+ of characters.</p>
3559
+ <p>The default bindings for this signal are
3560
+ Delete for deleting a character, Ctrl-Delete for
3561
+
3562
+ deleting a word and Ctrl-Backspace for deleting a word
3563
+
3564
+ backwords.</p>
3565
+ <div class="refsect3">
3566
+ <a name="id-1.4.8.8.17.5.9"></a><h4>Parameters</h4>
3567
+ <div class="informaltable"><table width="100%" border="0">
3568
+ <colgroup>
3569
+ <col width="150px" class="parameters_name">
3570
+ <col class="parameters_description">
3571
+ <col width="200px" class="parameters_annotations">
3572
+ </colgroup>
3573
+ <tbody>
3574
+ <tr>
3575
+ <td class="parameter_name"><p>text_view</p></td>
3576
+ <td class="parameter_description"><p>the object which received the signal</p></td>
3577
+ <td class="parameter_annotations"> </td>
3578
+ </tr>
3579
+ <tr>
3580
+ <td class="parameter_name"><p>type</p></td>
3581
+ <td class="parameter_description"><p>the granularity of the deletion, as a <a class="link" href="gtk2-Standard-Enumerations.html#GtkDeleteType" title="enum GtkDeleteType"><span class="type">GtkDeleteType</span></a></p></td>
3582
+ <td class="parameter_annotations"> </td>
3583
+ </tr>
3584
+ <tr>
3585
+ <td class="parameter_name"><p>count</p></td>
3586
+ <td class="parameter_description"><p>the number of <em class="parameter"><code>type</code></em>
3587
+ units to delete</p></td>
3588
+ <td class="parameter_annotations"> </td>
3589
+ </tr>
3590
+ <tr>
3591
+ <td class="parameter_name"><p>user_data</p></td>
3592
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3593
+ <td class="parameter_annotations"> </td>
3594
+ </tr>
3595
+ </tbody>
3596
+ </table></div>
3597
+ </div>
3598
+ <p>Flags: Action</p>
3599
+ </div>
3600
+ <hr>
3601
+ <div class="refsect2">
3602
+ <a name="GtkTextView-insert-at-cursor"></a><h3>The <code class="literal">“insert-at-cursor”</code> signal</h3>
3603
+ <pre class="programlisting"><span class="returnvalue">void</span>
3604
+ user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
3605
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *string,
3606
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3607
+ <p>The ::insert-at-cursor signal is a</p>
3608
+ <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a><p>which gets emitted when the user initiates the insertion of a
3609
+
3610
+ fixed string at the cursor.</p>
3611
+ <p>This signal has no default bindings.</p>
3612
+ <div class="refsect3">
3613
+ <a name="id-1.4.8.8.17.6.8"></a><h4>Parameters</h4>
3614
+ <div class="informaltable"><table width="100%" border="0">
3615
+ <colgroup>
3616
+ <col width="150px" class="parameters_name">
3617
+ <col class="parameters_description">
3618
+ <col width="200px" class="parameters_annotations">
3619
+ </colgroup>
3620
+ <tbody>
3621
+ <tr>
3622
+ <td class="parameter_name"><p>text_view</p></td>
3623
+ <td class="parameter_description"><p>the object which received the signal</p></td>
3624
+ <td class="parameter_annotations"> </td>
3625
+ </tr>
3626
+ <tr>
3627
+ <td class="parameter_name"><p>string</p></td>
3628
+ <td class="parameter_description"><p>the string to insert</p></td>
3629
+ <td class="parameter_annotations"> </td>
3630
+ </tr>
3631
+ <tr>
3632
+ <td class="parameter_name"><p>user_data</p></td>
3633
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3634
+ <td class="parameter_annotations"> </td>
3635
+ </tr>
3636
+ </tbody>
3637
+ </table></div>
3638
+ </div>
3639
+ <p>Flags: Action</p>
3640
+ </div>
3641
+ <hr>
3642
+ <div class="refsect2">
3643
+ <a name="GtkTextView-move-cursor"></a><h3>The <code class="literal">“move-cursor”</code> signal</h3>
3644
+ <pre class="programlisting"><span class="returnvalue">void</span>
3645
+ user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
3646
+ <a class="link" href="gtk2-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a> step,
3647
+ <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> count,
3648
+ <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> extend_selection,
3649
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3650
+ <p>The ::move-cursor signal is a </p>
3651
+ <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a><p>which gets emitted when the user initiates a cursor movement.
3652
+
3653
+ If the cursor is not visible in <em class="parameter"><code>text_view</code></em>
3654
+ , this signal causes
3655
+ the viewport to be moved instead.</p>
3656
+ <p>Applications should not connect to it, but may emit it with
3657
+
3658
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> if they need to control the cursor
3659
+ programmatically.</p>
3660
+ <p>The default bindings for this signal come in two variants,
3661
+ the variant with the Shift modifier extends the selection,
3662
+ the variant without the Shift modifer does not.
3663
+ There are too many key combinations to list them all here.</p>
3664
+ <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
3665
+ <li class="listitem">Arrow keys move by individual characters/lines</li>
3666
+ <li class="listitem">Ctrl-arrow key combinations move by words/paragraphs</li>
3667
+ <li class="listitem">Home/End keys move to the ends of the buffer</li>
3668
+ <li class="listitem">PageUp/PageDown keys move vertically by pages</li>
3669
+ <li class="listitem">Ctrl-PageUp/PageDown keys move horizontally by pages</li>
3670
+ </ul></div>
3671
+ <div class="refsect3">
3672
+ <a name="id-1.4.8.8.17.7.10"></a><h4>Parameters</h4>
3673
+ <div class="informaltable"><table width="100%" border="0">
3674
+ <colgroup>
3675
+ <col width="150px" class="parameters_name">
3676
+ <col class="parameters_description">
3677
+ <col width="200px" class="parameters_annotations">
3678
+ </colgroup>
3679
+ <tbody>
3680
+ <tr>
3681
+ <td class="parameter_name"><p>text_view</p></td>
3682
+ <td class="parameter_description"><p>the object which received the signal</p></td>
3683
+ <td class="parameter_annotations"> </td>
3684
+ </tr>
3685
+ <tr>
3686
+ <td class="parameter_name"><p>step</p></td>
3687
+ <td class="parameter_description"><p>the granularity of the move, as a <a class="link" href="gtk2-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a></p></td>
3688
+ <td class="parameter_annotations"> </td>
3689
+ </tr>
3690
+ <tr>
3691
+ <td class="parameter_name"><p>count</p></td>
3692
+ <td class="parameter_description"><p>the number of <em class="parameter"><code>step</code></em>
3693
+ units to move</p></td>
3694
+ <td class="parameter_annotations"> </td>
3695
+ </tr>
3696
+ <tr>
3697
+ <td class="parameter_name"><p>extend_selection</p></td>
3698
+ <td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the move should extend the selection</p></td>
3699
+ <td class="parameter_annotations"> </td>
3700
+ </tr>
3701
+ <tr>
3702
+ <td class="parameter_name"><p>user_data</p></td>
3703
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3704
+ <td class="parameter_annotations"> </td>
3705
+ </tr>
3706
+ </tbody>
3707
+ </table></div>
3708
+ </div>
3709
+ <p>Flags: Action</p>
3710
+ </div>
3711
+ <hr>
3712
+ <div class="refsect2">
3713
+ <a name="GtkTextView-move-viewport"></a><h3>The <code class="literal">“move-viewport”</code> signal</h3>
3714
+ <pre class="programlisting"><span class="returnvalue">void</span>
3715
+ user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
3716
+ <a class="link" href="gtk2-Standard-Enumerations.html#GtkScrollStep" title="enum GtkScrollStep"><span class="type">GtkScrollStep</span></a> step,
3717
+ <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> count,
3718
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3719
+ <p>The ::move-viewport signal is a </p>
3720
+ <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a><p>which can be bound to key combinations to allow the user
3721
+ to move the viewport, i.e. change what part of the text view
3722
+ is visible in a containing scrolled window.</p>
3723
+ <p>There are no default bindings for this signal.</p>
3724
+ <div class="refsect3">
3725
+ <a name="id-1.4.8.8.17.8.8"></a><h4>Parameters</h4>
3726
+ <div class="informaltable"><table width="100%" border="0">
3727
+ <colgroup>
3728
+ <col width="150px" class="parameters_name">
3729
+ <col class="parameters_description">
3730
+ <col width="200px" class="parameters_annotations">
3731
+ </colgroup>
3732
+ <tbody>
3733
+ <tr>
3734
+ <td class="parameter_name"><p>text_view</p></td>
3735
+ <td class="parameter_description"><p>the object which received the signal</p></td>
3736
+ <td class="parameter_annotations"> </td>
3737
+ </tr>
3738
+ <tr>
3739
+ <td class="parameter_name"><p>step</p></td>
3740
+ <td class="parameter_description"><p>the granularity of the move, as a <a class="link" href="gtk2-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a></p></td>
3741
+ <td class="parameter_annotations"> </td>
3742
+ </tr>
3743
+ <tr>
3744
+ <td class="parameter_name"><p>count</p></td>
3745
+ <td class="parameter_description"><p>the number of <em class="parameter"><code>step</code></em>
3746
+ units to move</p></td>
3747
+ <td class="parameter_annotations"> </td>
3748
+ </tr>
3749
+ <tr>
3750
+ <td class="parameter_name"><p>user_data</p></td>
3751
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3752
+ <td class="parameter_annotations"> </td>
3753
+ </tr>
3754
+ </tbody>
3755
+ </table></div>
3756
+ </div>
3757
+ <p>Flags: Action</p>
3758
+ </div>
3759
+ <hr>
3760
+ <div class="refsect2">
3761
+ <a name="GtkTextView-page-horizontally"></a><h3>The <code class="literal">“page-horizontally”</code> signal</h3>
3762
+ <pre class="programlisting"><span class="returnvalue">void</span>
3763
+ user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
3764
+ <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> count,
3765
+ <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> extend_selection,
3766
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3767
+ <p>The ::page-horizontally signal is a </p>
3768
+ <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a><p>which can be bound to key combinations to allow the user
3769
+ to initiate horizontal cursor movement by pages. </p>
3770
+ <p>This signal should not be used anymore, instead use the
3771
+ <span class="type">“move-cursor”</span> signal with the <a class="link" href="gtk2-Standard-Enumerations.html#GTK-MOVEMENT-HORIZONTAL-PAGES:CAPS"><span class="type">GTK_MOVEMENT_HORIZONTAL_PAGES</span></a>
3772
+ granularity.</p>
3773
+ <div class="refsect3">
3774
+ <a name="id-1.4.8.8.17.9.8"></a><h4>Parameters</h4>
3775
+ <div class="informaltable"><table width="100%" border="0">
3776
+ <colgroup>
3777
+ <col width="150px" class="parameters_name">
3778
+ <col class="parameters_description">
3779
+ <col width="200px" class="parameters_annotations">
3780
+ </colgroup>
3781
+ <tbody>
3782
+ <tr>
3783
+ <td class="parameter_name"><p>text_view</p></td>
3784
+ <td class="parameter_description"><p>the object which received the signal</p></td>
3785
+ <td class="parameter_annotations"> </td>
3786
+ </tr>
3787
+ <tr>
3788
+ <td class="parameter_name"><p>count</p></td>
3789
+ <td class="parameter_description"><p>the number of <em class="parameter"><code>step</code></em>
3790
+ units to move</p></td>
3791
+ <td class="parameter_annotations"> </td>
3792
+ </tr>
3793
+ <tr>
3794
+ <td class="parameter_name"><p>extend_selection</p></td>
3795
+ <td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the move should extend the selection</p></td>
3796
+ <td class="parameter_annotations"> </td>
3797
+ </tr>
3798
+ <tr>
3799
+ <td class="parameter_name"><p>user_data</p></td>
3800
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3801
+ <td class="parameter_annotations"> </td>
3802
+ </tr>
3803
+ </tbody>
3804
+ </table></div>
3805
+ </div>
3806
+ <p>Flags: Action</p>
3807
+ </div>
3808
+ <hr>
3809
+ <div class="refsect2">
3810
+ <a name="GtkTextView-paste-clipboard"></a><h3>The <code class="literal">“paste-clipboard”</code> signal</h3>
3811
+ <pre class="programlisting"><span class="returnvalue">void</span>
3812
+ user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
3813
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3814
+ <p>The ::paste-clipboard signal is a </p>
3815
+ <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a><p>which gets emitted to paste the contents of the clipboard
3816
+
3817
+ into the text view.</p>
3818
+ <p>The default bindings for this signal are
3819
+ Ctrl-v and Shift-Insert.</p>
3820
+ <div class="refsect3">
3821
+ <a name="id-1.4.8.8.17.10.8"></a><h4>Parameters</h4>
3822
+ <div class="informaltable"><table width="100%" border="0">
3823
+ <colgroup>
3824
+ <col width="150px" class="parameters_name">
3825
+ <col class="parameters_description">
3826
+ <col width="200px" class="parameters_annotations">
3827
+ </colgroup>
3828
+ <tbody>
3829
+ <tr>
3830
+ <td class="parameter_name"><p>text_view</p></td>
3831
+ <td class="parameter_description"><p>the object which received the signal</p></td>
3832
+ <td class="parameter_annotations"> </td>
3833
+ </tr>
3834
+ <tr>
3835
+ <td class="parameter_name"><p>user_data</p></td>
3836
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3837
+ <td class="parameter_annotations"> </td>
3838
+ </tr>
3839
+ </tbody>
3840
+ </table></div>
3841
+ </div>
3842
+ <p>Flags: Action</p>
3843
+ </div>
3844
+ <hr>
3845
+ <div class="refsect2">
3846
+ <a name="GtkTextView-populate-popup"></a><h3>The <code class="literal">“populate-popup”</code> signal</h3>
3847
+ <pre class="programlisting"><span class="returnvalue">void</span>
3848
+ user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *entry,
3849
+ <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu,
3850
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3851
+ <p>The ::populate-popup signal gets emitted before showing the
3852
+
3853
+ context menu of the text view.</p>
3854
+ <p>If you need to add items to the context menu, connect
3855
+ to this signal and append your menuitems to the <em class="parameter"><code>menu</code></em>
3856
+ .</p>
3857
+ <div class="refsect3">
3858
+ <a name="id-1.4.8.8.17.11.6"></a><h4>Parameters</h4>
3859
+ <div class="informaltable"><table width="100%" border="0">
3860
+ <colgroup>
3861
+ <col width="150px" class="parameters_name">
3862
+ <col class="parameters_description">
3863
+ <col width="200px" class="parameters_annotations">
3864
+ </colgroup>
3865
+ <tbody>
3866
+ <tr>
3867
+ <td class="parameter_name"><p>entry</p></td>
3868
+ <td class="parameter_description"><p>The text view on which the signal is emitted</p></td>
3869
+ <td class="parameter_annotations"> </td>
3870
+ </tr>
3871
+ <tr>
3872
+ <td class="parameter_name"><p>menu</p></td>
3873
+ <td class="parameter_description"><p>the menu that is being populated</p></td>
3874
+ <td class="parameter_annotations"> </td>
3875
+ </tr>
3876
+ <tr>
3877
+ <td class="parameter_name"><p>user_data</p></td>
3878
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3879
+ <td class="parameter_annotations"> </td>
3880
+ </tr>
3881
+ </tbody>
3882
+ </table></div>
3883
+ </div>
3884
+ <p>Flags: Run Last</p>
3885
+ </div>
3886
+ <hr>
3887
+ <div class="refsect2">
3888
+ <a name="GtkTextView-preedit-changed"></a><h3>The <code class="literal">“preedit-changed”</code> signal</h3>
3889
+ <pre class="programlisting"><span class="returnvalue">void</span>
3890
+ user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
3891
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *preedit,
3892
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3893
+ <p>If an input method is used, the typed text will not immediately
3894
+ be committed to the buffer. So if you are interested in the text,
3895
+ connect to this signal.</p>
3896
+ <p>This signal is only emitted if the text at the given position
3897
+ is actually editable.</p>
3898
+ <div class="refsect3">
3899
+ <a name="id-1.4.8.8.17.12.6"></a><h4>Parameters</h4>
3900
+ <div class="informaltable"><table width="100%" border="0">
3901
+ <colgroup>
3902
+ <col width="150px" class="parameters_name">
3903
+ <col class="parameters_description">
3904
+ <col width="200px" class="parameters_annotations">
3905
+ </colgroup>
3906
+ <tbody>
3907
+ <tr>
3908
+ <td class="parameter_name"><p>text_view</p></td>
3909
+ <td class="parameter_description"><p>the object which received the signal</p></td>
3910
+ <td class="parameter_annotations"> </td>
3911
+ </tr>
3912
+ <tr>
3913
+ <td class="parameter_name"><p>preedit</p></td>
3914
+ <td class="parameter_description"><p>the current preedit string</p></td>
3915
+ <td class="parameter_annotations"> </td>
3916
+ </tr>
3917
+ <tr>
3918
+ <td class="parameter_name"><p>user_data</p></td>
3919
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3920
+ <td class="parameter_annotations"> </td>
3921
+ </tr>
3922
+ </tbody>
3923
+ </table></div>
3924
+ </div>
3925
+ <p>Flags: Action</p>
3926
+ <p class="since">Since 2.20</p>
3927
+ </div>
3928
+ <hr>
3929
+ <div class="refsect2">
3930
+ <a name="GtkTextView-select-all"></a><h3>The <code class="literal">“select-all”</code> signal</h3>
3931
+ <pre class="programlisting"><span class="returnvalue">void</span>
3932
+ user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
3933
+ <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> select,
3934
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3935
+ <p>The ::select-all signal is a </p>
3936
+ <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a><p>which gets emitted to select or unselect the complete
3937
+ contents of the text view.</p>
3938
+ <p>The default bindings for this signal are Ctrl-a and Ctrl-/
3939
+
3940
+ for selecting and Shift-Ctrl-a and Ctrl-\ for unselecting.</p>
3941
+ <div class="refsect3">
3942
+ <a name="id-1.4.8.8.17.13.8"></a><h4>Parameters</h4>
3943
+ <div class="informaltable"><table width="100%" border="0">
3944
+ <colgroup>
3945
+ <col width="150px" class="parameters_name">
3946
+ <col class="parameters_description">
3947
+ <col width="200px" class="parameters_annotations">
3948
+ </colgroup>
3949
+ <tbody>
3950
+ <tr>
3951
+ <td class="parameter_name"><p>text_view</p></td>
3952
+ <td class="parameter_description"><p>the object which received the signal</p></td>
3953
+ <td class="parameter_annotations"> </td>
3954
+ </tr>
3955
+ <tr>
3956
+ <td class="parameter_name"><p>select</p></td>
3957
+ <td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to select, <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to unselect</p></td>
3958
+ <td class="parameter_annotations"> </td>
3959
+ </tr>
3960
+ <tr>
3961
+ <td class="parameter_name"><p>user_data</p></td>
3962
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3963
+ <td class="parameter_annotations"> </td>
3964
+ </tr>
3965
+ </tbody>
3966
+ </table></div>
3967
+ </div>
3968
+ <p>Flags: Action</p>
3969
+ </div>
3970
+ <hr>
3971
+ <div class="refsect2">
3972
+ <a name="GtkTextView-set-anchor"></a><h3>The <code class="literal">“set-anchor”</code> signal</h3>
3973
+ <pre class="programlisting"><span class="returnvalue">void</span>
3974
+ user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
3975
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3976
+ <p>The ::set-anchor signal is a</p>
3977
+ <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a><p>which gets emitted when the user initiates setting the "anchor"
3978
+
3979
+ mark. The "anchor" mark gets placed at the same position as the
3980
+ "insert" mark.</p>
3981
+ <p>This signal has no default bindings.</p>
3982
+ <div class="refsect3">
3983
+ <a name="id-1.4.8.8.17.14.8"></a><h4>Parameters</h4>
3984
+ <div class="informaltable"><table width="100%" border="0">
3985
+ <colgroup>
3986
+ <col width="150px" class="parameters_name">
3987
+ <col class="parameters_description">
3988
+ <col width="200px" class="parameters_annotations">
3989
+ </colgroup>
3990
+ <tbody>
3991
+ <tr>
3992
+ <td class="parameter_name"><p>text_view</p></td>
3993
+ <td class="parameter_description"><p>the object which received the signal</p></td>
3994
+ <td class="parameter_annotations"> </td>
3995
+ </tr>
3996
+ <tr>
3997
+ <td class="parameter_name"><p>user_data</p></td>
3998
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
3999
+ <td class="parameter_annotations"> </td>
4000
+ </tr>
4001
+ </tbody>
4002
+ </table></div>
4003
+ </div>
4004
+ <p>Flags: Action</p>
4005
+ </div>
4006
+ <hr>
4007
+ <div class="refsect2">
4008
+ <a name="GtkTextView-set-scroll-adjustments"></a><h3>The <code class="literal">“set-scroll-adjustments”</code> signal</h3>
4009
+ <pre class="programlisting"><span class="returnvalue">void</span>
4010
+ user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *horizontal,
4011
+ <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *vertical,
4012
+ <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *arg2,
4013
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
4014
+ <p>Set the scroll adjustments for the text view. Usually scrolled containers
4015
+ like <a class="link" href="GtkScrolledWindow.html" title="GtkScrolledWindow"><span class="type">GtkScrolledWindow</span></a> will emit this signal to connect two instances
4016
+ of <a class="link" href="GtkScrollbar.html" title="GtkScrollbar"><span class="type">GtkScrollbar</span></a> to the scroll directions of the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>.</p>
4017
+ <div class="refsect3">
4018
+ <a name="id-1.4.8.8.17.15.5"></a><h4>Parameters</h4>
4019
+ <div class="informaltable"><table width="100%" border="0">
4020
+ <colgroup>
4021
+ <col width="150px" class="parameters_name">
4022
+ <col class="parameters_description">
4023
+ <col width="200px" class="parameters_annotations">
4024
+ </colgroup>
4025
+ <tbody>
4026
+ <tr>
4027
+ <td class="parameter_name"><p>horizontal</p></td>
4028
+ <td class="parameter_description"><p>the horizontal <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a></p></td>
4029
+ <td class="parameter_annotations"> </td>
4030
+ </tr>
4031
+ <tr>
4032
+ <td class="parameter_name"><p>vertical</p></td>
4033
+ <td class="parameter_description"><p>the vertical <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a></p></td>
4034
+ <td class="parameter_annotations"> </td>
4035
+ </tr>
4036
+ <tr>
4037
+ <td class="parameter_name"><p>user_data</p></td>
4038
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
4039
+ <td class="parameter_annotations"> </td>
4040
+ </tr>
4041
+ </tbody>
4042
+ </table></div>
4043
+ </div>
4044
+ <p>Flags: Action</p>
4045
+ </div>
4046
+ <hr>
4047
+ <div class="refsect2">
4048
+ <a name="GtkTextView-toggle-cursor-visible"></a><h3>The <code class="literal">“toggle-cursor-visible”</code> signal</h3>
4049
+ <pre class="programlisting"><span class="returnvalue">void</span>
4050
+ user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
4051
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
4052
+ <p>The ::toggle-cursor-visible signal is a </p>
4053
+ <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a><p>which gets emitted to toggle the visibility of the cursor.</p>
4054
+ <p>The default binding for this signal is F7.</p>
4055
+ <div class="refsect3">
4056
+ <a name="id-1.4.8.8.17.16.8"></a><h4>Parameters</h4>
4057
+ <div class="informaltable"><table width="100%" border="0">
4058
+ <colgroup>
4059
+ <col width="150px" class="parameters_name">
4060
+ <col class="parameters_description">
4061
+ <col width="200px" class="parameters_annotations">
4062
+ </colgroup>
4063
+ <tbody>
4064
+ <tr>
4065
+ <td class="parameter_name"><p>text_view</p></td>
4066
+ <td class="parameter_description"><p>the object which received the signal</p></td>
4067
+ <td class="parameter_annotations"> </td>
4068
+ </tr>
4069
+ <tr>
4070
+ <td class="parameter_name"><p>user_data</p></td>
4071
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
4072
+ <td class="parameter_annotations"> </td>
4073
+ </tr>
4074
+ </tbody>
4075
+ </table></div>
4076
+ </div>
4077
+ <p>Flags: Action</p>
4078
+ </div>
4079
+ <hr>
4080
+ <div class="refsect2">
4081
+ <a name="GtkTextView-toggle-overwrite"></a><h3>The <code class="literal">“toggle-overwrite”</code> signal</h3>
4082
+ <pre class="programlisting"><span class="returnvalue">void</span>
4083
+ user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
4084
+ <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
4085
+ <p>The ::toggle-overwrite signal is a </p>
4086
+ <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a><p>which gets emitted to toggle the overwrite mode of the text view.</p>
4087
+ <p>The default bindings for this signal is Insert.</p>
4088
+ <div class="refsect3">
4089
+ <a name="id-1.4.8.8.17.17.8"></a><h4>Parameters</h4>
4090
+ <div class="informaltable"><table width="100%" border="0">
4091
+ <colgroup>
4092
+ <col width="150px" class="parameters_name">
4093
+ <col class="parameters_description">
4094
+ <col width="200px" class="parameters_annotations">
4095
+ </colgroup>
4096
+ <tbody>
4097
+ <tr>
4098
+ <td class="parameter_name"><p>text_view</p></td>
4099
+ <td class="parameter_description"><p>the object which received the signal</p></td>
4100
+ <td class="parameter_annotations"> </td>
4101
+ </tr>
4102
+ <tr>
4103
+ <td class="parameter_name"><p>user_data</p></td>
4104
+ <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
4105
+ <td class="parameter_annotations"> </td>
4106
+ </tr>
4107
+ </tbody>
4108
+ </table></div>
4109
+ </div>
4110
+ <p>Flags: Action</p>
4111
+ </div>
4112
+ </div>
4113
+ <div class="refsect1">
4114
+ <a name="GtkTextView.see-also"></a><h2>See Also</h2>
4115
+ <p>
4116
+ <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>, <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
4117
+ </p>
4118
+ </div>
4119
+ </div>
4120
+ <div class="footer">
4121
+ <hr>
4122
+ Generated by GTK-Doc V1.21.1</div>
4123
+ </body>
4124
+ </html>