gtk3 1.2.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1599) hide show
  1. data/Rakefile +32 -0
  2. data/ext/gtk3/conversions.c +34 -0
  3. data/ext/gtk3/depend +11 -0
  4. data/ext/gtk3/extconf.rb +108 -0
  5. data/ext/gtk3/gtk3.def +10 -0
  6. data/ext/gtk3/init.c +38 -0
  7. data/ext/gtk3/rbgdkdisplay.c +39 -0
  8. data/ext/gtk3/rbgdkdragcontext.c +108 -0
  9. data/ext/gtk3/rbgdkevent.c +38 -0
  10. data/ext/gtk3/rbgdkscreen.c +61 -0
  11. data/ext/gtk3/rbgtk.c +625 -0
  12. data/ext/gtk3/rbgtk3.h +57 -0
  13. data/ext/gtk3/rbgtk3conversions.h +347 -0
  14. data/ext/gtk3/rbgtk3private.h +282 -0
  15. data/ext/gtk3/rbgtk3util.c +67 -0
  16. data/ext/gtk3/rbgtk3util.h +32 -0
  17. data/ext/gtk3/rbgtkaboutdialog.c +117 -0
  18. data/ext/gtk3/rbgtkaccelerator.c +78 -0
  19. data/ext/gtk3/rbgtkaccelgroup.c +199 -0
  20. data/ext/gtk3/rbgtkaccelgroupentry.c +93 -0
  21. data/ext/gtk3/rbgtkaccelkey.c +119 -0
  22. data/ext/gtk3/rbgtkaccellabel.c +55 -0
  23. data/ext/gtk3/rbgtkaccelmap.c +135 -0
  24. data/ext/gtk3/rbgtkaccessible.c +56 -0
  25. data/ext/gtk3/rbgtkaction.c +205 -0
  26. data/ext/gtk3/rbgtkactiongroup.c +466 -0
  27. data/ext/gtk3/rbgtkactivatable.c +30 -0
  28. data/ext/gtk3/rbgtkadjustment.c +98 -0
  29. data/ext/gtk3/rbgtkalignment.c +75 -0
  30. data/ext/gtk3/rbgtkallocation.c +166 -0
  31. data/ext/gtk3/rbgtkappchooser.c +47 -0
  32. data/ext/gtk3/rbgtkappchooserbutton.c +70 -0
  33. data/ext/gtk3/rbgtkappchooserdialog.c +68 -0
  34. data/ext/gtk3/rbgtkappchooserwidget.c +40 -0
  35. data/ext/gtk3/rbgtkapplication.c +69 -0
  36. data/ext/gtk3/rbgtkarrow.c +56 -0
  37. data/ext/gtk3/rbgtkaspectframe.c +56 -0
  38. data/ext/gtk3/rbgtkassistant.c +218 -0
  39. data/ext/gtk3/rbgtkbin.c +42 -0
  40. data/ext/gtk3/rbgtkbindingset.c +164 -0
  41. data/ext/gtk3/rbgtkborder.c +119 -0
  42. data/ext/gtk3/rbgtkbox.c +146 -0
  43. data/ext/gtk3/rbgtkbuildable.c +96 -0
  44. data/ext/gtk3/rbgtkbuilder.c +166 -0
  45. data/ext/gtk3/rbgtkbutton.c +93 -0
  46. data/ext/gtk3/rbgtkbuttonbox.c +87 -0
  47. data/ext/gtk3/rbgtkcalendar.c +118 -0
  48. data/ext/gtk3/rbgtkcelleditable.c +57 -0
  49. data/ext/gtk3/rbgtkcelllayout.c +144 -0
  50. data/ext/gtk3/rbgtkcellrenderer.c +116 -0
  51. data/ext/gtk3/rbgtkcellrendereraccel.c +41 -0
  52. data/ext/gtk3/rbgtkcellrenderercombo.c +38 -0
  53. data/ext/gtk3/rbgtkcellrendererpixbuf.c +41 -0
  54. data/ext/gtk3/rbgtkcellrendererprogress.c +38 -0
  55. data/ext/gtk3/rbgtkcellrendererspin.c +39 -0
  56. data/ext/gtk3/rbgtkcellrendererspinner.c +38 -0
  57. data/ext/gtk3/rbgtkcellrenderertext.c +48 -0
  58. data/ext/gtk3/rbgtkcellrenderertoggle.c +39 -0
  59. data/ext/gtk3/rbgtkcellview.c +109 -0
  60. data/ext/gtk3/rbgtkcheckbutton.c +64 -0
  61. data/ext/gtk3/rbgtkcheckmenuitem.c +64 -0
  62. data/ext/gtk3/rbgtkclipboard.c +389 -0
  63. data/ext/gtk3/rbgtkcolorbutton.c +49 -0
  64. data/ext/gtk3/rbgtkcolorselection.c +219 -0
  65. data/ext/gtk3/rbgtkcolorselectiondialog.c +56 -0
  66. data/ext/gtk3/rbgtkcombobox.c +147 -0
  67. data/ext/gtk3/rbgtkcomboboxtext.c +138 -0
  68. data/ext/gtk3/rbgtkconst.c +79 -0
  69. data/ext/gtk3/rbgtkcontainer.c +784 -0
  70. data/ext/gtk3/rbgtkcssprovider.c +110 -0
  71. data/ext/gtk3/rbgtkdialog.c +186 -0
  72. data/ext/gtk3/rbgtkdrag.c +93 -0
  73. data/ext/gtk3/rbgtkdrawingarea.c +42 -0
  74. data/ext/gtk3/rbgtkeditable.c +149 -0
  75. data/ext/gtk3/rbgtkentry.c +198 -0
  76. data/ext/gtk3/rbgtkentrybuffer.c +87 -0
  77. data/ext/gtk3/rbgtkentrycompletion.c +122 -0
  78. data/ext/gtk3/rbgtkeventbox.c +42 -0
  79. data/ext/gtk3/rbgtkexpander.c +49 -0
  80. data/ext/gtk3/rbgtkfilechooser.c +384 -0
  81. data/ext/gtk3/rbgtkfilechooserbutton.c +50 -0
  82. data/ext/gtk3/rbgtkfilechooserdialog.c +62 -0
  83. data/ext/gtk3/rbgtkfilechooserwidget.c +40 -0
  84. data/ext/gtk3/rbgtkfilefilter.c +128 -0
  85. data/ext/gtk3/rbgtkfilesystemerror.c +48 -0
  86. data/ext/gtk3/rbgtkfixed.c +61 -0
  87. data/ext/gtk3/rbgtkfontbutton.c +49 -0
  88. data/ext/gtk3/rbgtkfontchooser.c +78 -0
  89. data/ext/gtk3/rbgtkfontchooserdialog.c +56 -0
  90. data/ext/gtk3/rbgtkfontchooserwidget.c +45 -0
  91. data/ext/gtk3/rbgtkframe.c +69 -0
  92. data/ext/gtk3/rbgtkgrid.c +105 -0
  93. data/ext/gtk3/rbgtkhandlebox.c +45 -0
  94. data/ext/gtk3/rbgtkhsv.c +102 -0
  95. data/ext/gtk3/rbgtkiconfactory.c +85 -0
  96. data/ext/gtk3/rbgtkiconinfo.c +115 -0
  97. data/ext/gtk3/rbgtkiconset.c +84 -0
  98. data/ext/gtk3/rbgtkiconsize.c +91 -0
  99. data/ext/gtk3/rbgtkiconsource.c +184 -0
  100. data/ext/gtk3/rbgtkicontheme.c +268 -0
  101. data/ext/gtk3/rbgtkiconview.c +270 -0
  102. data/ext/gtk3/rbgtkimage.c +96 -0
  103. data/ext/gtk3/rbgtkimagemenuitem.c +67 -0
  104. data/ext/gtk3/rbgtkimcontext.c +133 -0
  105. data/ext/gtk3/rbgtkimcontextsimple.c +69 -0
  106. data/ext/gtk3/rbgtkimmulticontext.c +48 -0
  107. data/ext/gtk3/rbgtkinfobar.c +121 -0
  108. data/ext/gtk3/rbgtkinvisible.c +49 -0
  109. data/ext/gtk3/rbgtklabel.c +139 -0
  110. data/ext/gtk3/rbgtklayout.c +93 -0
  111. data/ext/gtk3/rbgtklinkbutton.c +55 -0
  112. data/ext/gtk3/rbgtkliststore.c +408 -0
  113. data/ext/gtk3/rbgtklockbutton.c +50 -0
  114. data/ext/gtk3/rbgtkmenu.c +168 -0
  115. data/ext/gtk3/rbgtkmenubar.c +43 -0
  116. data/ext/gtk3/rbgtkmenuitem.c +95 -0
  117. data/ext/gtk3/rbgtkmenushell.c +106 -0
  118. data/ext/gtk3/rbgtkmenutoolbutton.c +81 -0
  119. data/ext/gtk3/rbgtkmessagedialog.c +74 -0
  120. data/ext/gtk3/rbgtkmisc.c +70 -0
  121. data/ext/gtk3/rbgtknotebook.c +383 -0
  122. data/ext/gtk3/rbgtknumerableicon.c +50 -0
  123. data/ext/gtk3/rbgtkorientable.c +27 -0
  124. data/ext/gtk3/rbgtkoverlay.c +53 -0
  125. data/ext/gtk3/rbgtkpagesetup.c +195 -0
  126. data/ext/gtk3/rbgtkpagesetupunixdialog.c +94 -0
  127. data/ext/gtk3/rbgtkpaned.c +114 -0
  128. data/ext/gtk3/rbgtkpapersize.c +179 -0
  129. data/ext/gtk3/rbgtkplug.c +85 -0
  130. data/ext/gtk3/rbgtkprintcontext.c +125 -0
  131. data/ext/gtk3/rbgtkprinter.c +155 -0
  132. data/ext/gtk3/rbgtkprintjob.c +148 -0
  133. data/ext/gtk3/rbgtkprintoperation.c +149 -0
  134. data/ext/gtk3/rbgtkprintoperationpreview.c +59 -0
  135. data/ext/gtk3/rbgtkprintsettings.c +807 -0
  136. data/ext/gtk3/rbgtkprintunixdialog.c +90 -0
  137. data/ext/gtk3/rbgtkprogressbar.c +72 -0
  138. data/ext/gtk3/rbgtkradioaction.c +122 -0
  139. data/ext/gtk3/rbgtkradiobutton.c +89 -0
  140. data/ext/gtk3/rbgtkradiomenuitem.c +147 -0
  141. data/ext/gtk3/rbgtkradiotoolbutton.c +131 -0
  142. data/ext/gtk3/rbgtkrange.c +68 -0
  143. data/ext/gtk3/rbgtkrecentaction.c +64 -0
  144. data/ext/gtk3/rbgtkrecentchooser.c +198 -0
  145. data/ext/gtk3/rbgtkrecentchooserdialog.c +66 -0
  146. data/ext/gtk3/rbgtkrecentchoosermenu.c +50 -0
  147. data/ext/gtk3/rbgtkrecentchooserwidget.c +48 -0
  148. data/ext/gtk3/rbgtkrecentdata.c +187 -0
  149. data/ext/gtk3/rbgtkrecentfilter.c +169 -0
  150. data/ext/gtk3/rbgtkrecentfilterinfo.c +200 -0
  151. data/ext/gtk3/rbgtkrecentinfo.c +213 -0
  152. data/ext/gtk3/rbgtkrecentmanager.c +134 -0
  153. data/ext/gtk3/rbgtkscale.c +97 -0
  154. data/ext/gtk3/rbgtkscalebutton.c +84 -0
  155. data/ext/gtk3/rbgtkscrollable.c +31 -0
  156. data/ext/gtk3/rbgtkscrollbar.c +52 -0
  157. data/ext/gtk3/rbgtkscrolledwindow.c +122 -0
  158. data/ext/gtk3/rbgtkselection.c +168 -0
  159. data/ext/gtk3/rbgtkselectiondata.c +282 -0
  160. data/ext/gtk3/rbgtkseparator.c +44 -0
  161. data/ext/gtk3/rbgtkseparatormenuitem.c +39 -0
  162. data/ext/gtk3/rbgtkseparatortoolitem.c +38 -0
  163. data/ext/gtk3/rbgtksettings.c +229 -0
  164. data/ext/gtk3/rbgtksizegroup.c +66 -0
  165. data/ext/gtk3/rbgtksocket.c +82 -0
  166. data/ext/gtk3/rbgtkspinbutton.c +132 -0
  167. data/ext/gtk3/rbgtkspinner.c +55 -0
  168. data/ext/gtk3/rbgtkstatusbar.c +77 -0
  169. data/ext/gtk3/rbgtkstatusicon.c +122 -0
  170. data/ext/gtk3/rbgtkstock.c +213 -0
  171. data/ext/gtk3/rbgtkstylecontext.c +411 -0
  172. data/ext/gtk3/rbgtkstyleproperties.c +119 -0
  173. data/ext/gtk3/rbgtkstyleprovider.c +68 -0
  174. data/ext/gtk3/rbgtkswitch.c +40 -0
  175. data/ext/gtk3/rbgtktable.c +190 -0
  176. data/ext/gtk3/rbgtktargetlist.c +125 -0
  177. data/ext/gtk3/rbgtktearoffmenuitem.c +41 -0
  178. data/ext/gtk3/rbgtktextappearance.c +236 -0
  179. data/ext/gtk3/rbgtktextattributes.c +326 -0
  180. data/ext/gtk3/rbgtktextbuffer.c +899 -0
  181. data/ext/gtk3/rbgtktextchildanchor.c +56 -0
  182. data/ext/gtk3/rbgtktextiter.c +732 -0
  183. data/ext/gtk3/rbgtktextmark.c +71 -0
  184. data/ext/gtk3/rbgtktexttag.c +68 -0
  185. data/ext/gtk3/rbgtktexttagtable.c +96 -0
  186. data/ext/gtk3/rbgtktextview.c +336 -0
  187. data/ext/gtk3/rbgtkthemingengine.c +257 -0
  188. data/ext/gtk3/rbgtktoggleaction.c +61 -0
  189. data/ext/gtk3/rbgtktogglebutton.c +87 -0
  190. data/ext/gtk3/rbgtktoggletoolbutton.c +61 -0
  191. data/ext/gtk3/rbgtktoolbar.c +118 -0
  192. data/ext/gtk3/rbgtktoolbutton.c +66 -0
  193. data/ext/gtk3/rbgtktoolitem.c +200 -0
  194. data/ext/gtk3/rbgtktoolitemgroup.c +70 -0
  195. data/ext/gtk3/rbgtktoolshell.c +96 -0
  196. data/ext/gtk3/rbgtktooltip.c +100 -0
  197. data/ext/gtk3/rbgtktreedragdest.c +28 -0
  198. data/ext/gtk3/rbgtktreedragsource.c +28 -0
  199. data/ext/gtk3/rbgtktreeiter.c +258 -0
  200. data/ext/gtk3/rbgtktreemodel.c +236 -0
  201. data/ext/gtk3/rbgtktreemodelfilter.c +197 -0
  202. data/ext/gtk3/rbgtktreemodelsort.c +111 -0
  203. data/ext/gtk3/rbgtktreepath.c +191 -0
  204. data/ext/gtk3/rbgtktreerowreference.c +140 -0
  205. data/ext/gtk3/rbgtktreeselection.c +205 -0
  206. data/ext/gtk3/rbgtktreesortable.c +122 -0
  207. data/ext/gtk3/rbgtktreestore.c +330 -0
  208. data/ext/gtk3/rbgtktreeview.c +715 -0
  209. data/ext/gtk3/rbgtktreeviewcolumn.c +256 -0
  210. data/ext/gtk3/rbgtkuimanager.c +189 -0
  211. data/ext/gtk3/rbgtkviewport.c +44 -0
  212. data/ext/gtk3/rbgtkvolumebutton.c +41 -0
  213. data/ext/gtk3/rbgtkwidget.c +1564 -0
  214. data/ext/gtk3/rbgtkwidgetpath.c +229 -0
  215. data/ext/gtk3/rbgtkwindow.c +557 -0
  216. data/ext/gtk3/rbgtkwindowgroup.c +80 -0
  217. data/extconf.rb +49 -0
  218. data/lib/1.8/gtk3.so +0 -0
  219. data/lib/1.9/gtk3.so +0 -0
  220. data/lib/gtk3.rb +10 -0
  221. data/lib/gtk3/base.rb +67 -0
  222. data/lib/gtk3/deprecated.rb +1001 -0
  223. data/sample/gtk-demo/README +7 -0
  224. data/sample/gtk-demo/alphatest.png +0 -0
  225. data/sample/gtk-demo/apple-red.png +0 -0
  226. data/sample/gtk-demo/appwindow.rb +233 -0
  227. data/sample/gtk-demo/background.jpg +0 -0
  228. data/sample/gtk-demo/builder.rb +51 -0
  229. data/sample/gtk-demo/button_box.rb +84 -0
  230. data/sample/gtk-demo/cairo-arc-negative.rb +41 -0
  231. data/sample/gtk-demo/cairo-arc.rb +41 -0
  232. data/sample/gtk-demo/cairo-clip-image.rb +51 -0
  233. data/sample/gtk-demo/cairo-clip-rectangle.rb +35 -0
  234. data/sample/gtk-demo/cairo-clip.rb +35 -0
  235. data/sample/gtk-demo/cairo-curve-rectangle.rb +76 -0
  236. data/sample/gtk-demo/cairo-curve-to.rb +43 -0
  237. data/sample/gtk-demo/cairo-dash.rb +39 -0
  238. data/sample/gtk-demo/cairo-fill-and-stroke.rb +32 -0
  239. data/sample/gtk-demo/cairo-fill-and-stroke2.rb +38 -0
  240. data/sample/gtk-demo/cairo-gradient.rb +35 -0
  241. data/sample/gtk-demo/cairo-image-pattern.rb +39 -0
  242. data/sample/gtk-demo/cairo-image.rb +49 -0
  243. data/sample/gtk-demo/cairo-line-cap.rb +53 -0
  244. data/sample/gtk-demo/cairo-line-join.rb +41 -0
  245. data/sample/gtk-demo/cairo-long-lines.rb +41 -0
  246. data/sample/gtk-demo/cairo-operator.rb +83 -0
  247. data/sample/gtk-demo/cairo-path.rb +28 -0
  248. data/sample/gtk-demo/cairo-pattern-fill.rb +88 -0
  249. data/sample/gtk-demo/cairo-self-intersect.rb +32 -0
  250. data/sample/gtk-demo/cairo-text-align-center.rb +45 -0
  251. data/sample/gtk-demo/cairo-text-extents.rb +46 -0
  252. data/sample/gtk-demo/cairo-text.rb +43 -0
  253. data/sample/gtk-demo/changedisplay.rb +408 -0
  254. data/sample/gtk-demo/clipboard.rb +72 -0
  255. data/sample/gtk-demo/colorsel.rb +84 -0
  256. data/sample/gtk-demo/common.rb +88 -0
  257. data/sample/gtk-demo/demo.ui +258 -0
  258. data/sample/gtk-demo/dialog.rb +137 -0
  259. data/sample/gtk-demo/drawingarea.rb +226 -0
  260. data/sample/gtk-demo/editable_cells.rb +172 -0
  261. data/sample/gtk-demo/entry_completion.rb +63 -0
  262. data/sample/gtk-demo/expander.rb +40 -0
  263. data/sample/gtk-demo/floppybuddy.gif +0 -0
  264. data/sample/gtk-demo/gnome-applets.png +0 -0
  265. data/sample/gtk-demo/gnome-calendar.png +0 -0
  266. data/sample/gtk-demo/gnome-foot.png +0 -0
  267. data/sample/gtk-demo/gnome-fs-directory.png +0 -0
  268. data/sample/gtk-demo/gnome-fs-regular.png +0 -0
  269. data/sample/gtk-demo/gnome-gimp.png +0 -0
  270. data/sample/gtk-demo/gnome-gmush.png +0 -0
  271. data/sample/gtk-demo/gnome-gsame.png +0 -0
  272. data/sample/gtk-demo/gnu-keys.png +0 -0
  273. data/sample/gtk-demo/gtk-logo-rgb.gif +0 -0
  274. data/sample/gtk-demo/hypertext.rb +211 -0
  275. data/sample/gtk-demo/iconview.rb +109 -0
  276. data/sample/gtk-demo/images.rb +197 -0
  277. data/sample/gtk-demo/item_factory.rb +94 -0
  278. data/sample/gtk-demo/list_store.rb +138 -0
  279. data/sample/gtk-demo/main.rb +382 -0
  280. data/sample/gtk-demo/menus.rb +172 -0
  281. data/sample/gtk-demo/panes.rb +156 -0
  282. data/sample/gtk-demo/pixbufs.rb +176 -0
  283. data/sample/gtk-demo/printing.rb +128 -0
  284. data/sample/gtk-demo/rotated_text.rb +84 -0
  285. data/sample/gtk-demo/ruby-gnome2-logo.png +0 -0
  286. data/sample/gtk-demo/sizegroup.rb +118 -0
  287. data/sample/gtk-demo/stock_browser.rb +235 -0
  288. data/sample/gtk-demo/textview.rb +436 -0
  289. data/sample/gtk-demo/tree_store.rb +270 -0
  290. data/sample/misc/aboutdialog.rb +42 -0
  291. data/sample/misc/aboutdialog2.rb +42 -0
  292. data/sample/misc/alpha-demo.rb +70 -0
  293. data/sample/misc/assistant.rb +347 -0
  294. data/sample/misc/bindings.rb +107 -0
  295. data/sample/misc/button.rb +69 -0
  296. data/sample/misc/button2.rb +28 -0
  297. data/sample/misc/buttonbox.rb +93 -0
  298. data/sample/misc/cairo-pong.rb +215 -0
  299. data/sample/misc/calendar.rb +66 -0
  300. data/sample/misc/checkbutton.rb +46 -0
  301. data/sample/misc/colorselection.rb +25 -0
  302. data/sample/misc/combo_check.rb +71 -0
  303. data/sample/misc/combobox.rb +86 -0
  304. data/sample/misc/composited-windows.rb +113 -0
  305. data/sample/misc/cursor.rb +32 -0
  306. data/sample/misc/dialog.rb +44 -0
  307. data/sample/misc/dialog2.rb +39 -0
  308. data/sample/misc/dnd.rb +64 -0
  309. data/sample/misc/dndtreeview.rb +56 -0
  310. data/sample/misc/drag-move.rb +131 -0
  311. data/sample/misc/drawing.rb +90 -0
  312. data/sample/misc/entry.rb +34 -0
  313. data/sample/misc/entrycompletion.rb +33 -0
  314. data/sample/misc/expander.rb +27 -0
  315. data/sample/misc/filechooser.rb +41 -0
  316. data/sample/misc/frame.rb +69 -0
  317. data/sample/misc/gdkscreen.rb +32 -0
  318. data/sample/misc/gnome-logo-icon.png +0 -0
  319. data/sample/misc/helloworld.rb +35 -0
  320. data/sample/misc/iconview.rb +38 -0
  321. data/sample/misc/image.rb +42 -0
  322. data/sample/misc/itemfactory.rb +73 -0
  323. data/sample/misc/itemfactory2.rb +74 -0
  324. data/sample/misc/keyboard_grab.rb +29 -0
  325. data/sample/misc/label.rb +33 -0
  326. data/sample/misc/linkbutton.rb +42 -0
  327. data/sample/misc/listview.rb +92 -0
  328. data/sample/misc/menu.rb +81 -0
  329. data/sample/misc/misc_button.rb +49 -0
  330. data/sample/misc/mouse-gesture.rb +465 -0
  331. data/sample/misc/pangorenderer.rb +66 -0
  332. data/sample/misc/pointer_grab.rb +34 -0
  333. data/sample/misc/print.rb +247 -0
  334. data/sample/misc/properties.rb +85 -0
  335. data/sample/misc/radiobutton.rb +47 -0
  336. data/sample/misc/recentchooserdialog.rb +52 -0
  337. data/sample/misc/rgtk+cairo.rb +42 -0
  338. data/sample/misc/scalebutton.rb +19 -0
  339. data/sample/misc/settings.rb +41 -0
  340. data/sample/misc/statusicon.rb +123 -0
  341. data/sample/misc/stock.rb +36 -0
  342. data/sample/misc/style_property.rb +67 -0
  343. data/sample/misc/style_property.rc +19 -0
  344. data/sample/misc/t-gtkplug.rb +58 -0
  345. data/sample/misc/t-gtksocket.rb +65 -0
  346. data/sample/misc/test.xpm +92 -0
  347. data/sample/misc/textbuffer_serialize.rb +130 -0
  348. data/sample/misc/threads.rb +72 -0
  349. data/sample/misc/to_drawable.rb +42 -0
  350. data/sample/misc/togglebutton.rb +34 -0
  351. data/sample/misc/toolbar.rb +55 -0
  352. data/sample/misc/tooltips.rb +204 -0
  353. data/sample/misc/tree_combo.rb +79 -0
  354. data/sample/misc/tree_progress.rb +63 -0
  355. data/sample/misc/treemodelfilter.rb +49 -0
  356. data/sample/misc/treeview.rb +71 -0
  357. data/sample/misc/uimanager.rb +148 -0
  358. data/sample/misc/uimanager2.rb +91 -0
  359. data/sample/misc/uimanager2.xml +36 -0
  360. data/sample/misc/window.rb +24 -0
  361. data/sample/misc/xbm_cursor.rb +43 -0
  362. data/sample/testgtk/3DRings.xpm +116 -0
  363. data/sample/testgtk/FilesQueue.xpm +98 -0
  364. data/sample/testgtk/Modeller.xpm +117 -0
  365. data/sample/testgtk/README +14 -0
  366. data/sample/testgtk/button.rb +124 -0
  367. data/sample/testgtk/buttonbox.rb +100 -0
  368. data/sample/testgtk/check-n.xpm +21 -0
  369. data/sample/testgtk/check-y.xpm +21 -0
  370. data/sample/testgtk/checkbutton.rb +67 -0
  371. data/sample/testgtk/circles.xbm +46 -0
  372. data/sample/testgtk/colorselect.rb +33 -0
  373. data/sample/testgtk/dialog.rb +48 -0
  374. data/sample/testgtk/entry.rb +73 -0
  375. data/sample/testgtk/filesel.rb +65 -0
  376. data/sample/testgtk/fontselection.rb +56 -0
  377. data/sample/testgtk/labels.rb +74 -0
  378. data/sample/testgtk/layout.rb +108 -0
  379. data/sample/testgtk/marble.xpm +408 -0
  380. data/sample/testgtk/menu.rb +79 -0
  381. data/sample/testgtk/notebook.rb +280 -0
  382. data/sample/testgtk/pixmap.rb +58 -0
  383. data/sample/testgtk/progressbar.rb +173 -0
  384. data/sample/testgtk/radiobutton.rb +61 -0
  385. data/sample/testgtk/range.rb +65 -0
  386. data/sample/testgtk/reparent.rb +91 -0
  387. data/sample/testgtk/sample.rb +80 -0
  388. data/sample/testgtk/savedposition.rb +87 -0
  389. data/sample/testgtk/scrolledwindow.rb +67 -0
  390. data/sample/testgtk/shapedwindow.rb +99 -0
  391. data/sample/testgtk/spinbutton.rb +181 -0
  392. data/sample/testgtk/statusbar.rb +89 -0
  393. data/sample/testgtk/test.xpm +92 -0
  394. data/sample/testgtk/testgtk.rb +176 -0
  395. data/sample/testgtk/testgtkrc +146 -0
  396. data/sample/testgtk/testgtkrc2 +21 -0
  397. data/sample/testgtk/togglebutton.rb +53 -0
  398. data/sample/testgtk/toolbar.rb +82 -0
  399. data/sample/testgtk/tooltips.rb +41 -0
  400. data/sample/testgtk/wmhints.rb +40 -0
  401. data/test/gtk-test-utils.rb +15 -0
  402. data/test/run-test.rb +32 -0
  403. data/test/test_gc.rb +25 -0
  404. data/test/test_gdk.rb +18 -0
  405. data/test/test_gdk_color.rb +10 -0
  406. data/test/test_gdk_display.rb +37 -0
  407. data/test/test_gdk_event.rb +11 -0
  408. data/test/test_gdk_gc.rb +7 -0
  409. data/test/test_gdk_keymap.rb +8 -0
  410. data/test/test_gdk_pango.rb +9 -0
  411. data/test/test_gdk_selection_data.rb +17 -0
  412. data/test/test_gdk_window.rb +29 -0
  413. data/test/test_gdk_window_attribute.rb +9 -0
  414. data/test/test_gtk_about_dialog.rb +14 -0
  415. data/test/test_gtk_buildable.rb +66 -0
  416. data/test/test_gtk_builder.rb +188 -0
  417. data/test/test_gtk_entry.rb +18 -0
  418. data/test/test_gtk_icon_theme.rb +30 -0
  419. data/test/test_gtk_image.rb +8 -0
  420. data/test/test_gtk_list_store.rb +65 -0
  421. data/test/test_gtk_menu_item.rb +13 -0
  422. data/test/test_gtk_rc_style.rb +14 -0
  423. data/test/test_gtk_tree_path.rb +20 -0
  424. data/test/test_gtk_unix_print.rb +14 -0
  425. data/test/test_gtk_widget.rb +32 -0
  426. data/vendor/local/bin/gtk-builder-convert +799 -0
  427. data/vendor/local/bin/gtk-demo.exe +0 -0
  428. data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
  429. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  430. data/vendor/local/bin/gtk-update-icon-cache.exe.manifest +17 -0
  431. data/vendor/local/bin/libgailutil-18.dll +0 -0
  432. data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
  433. data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
  434. data/vendor/local/etc/gtk-2.0/gtk.immodules +4 -0
  435. data/vendor/local/etc/gtk-2.0/gtkrc +1 -0
  436. data/vendor/local/etc/gtk-2.0/im-multipress.conf +22 -0
  437. data/vendor/local/include/gail-1.0/gail/gailwidget.h +65 -0
  438. data/vendor/local/include/gail-1.0/libgail-util/gail-util.h +2 -0
  439. data/vendor/local/include/gail-1.0/libgail-util/gailmisc.h +82 -0
  440. data/vendor/local/include/gail-1.0/libgail-util/gailtextutil.h +87 -0
  441. data/vendor/local/include/gtk-2.0/gdk/gdk.h +241 -0
  442. data/vendor/local/include/gtk-2.0/gdk/gdkapplaunchcontext.h +76 -0
  443. data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +59 -0
  444. data/vendor/local/include/gtk-2.0/gdk/gdkcolor.h +176 -0
  445. data/vendor/local/include/gtk-2.0/gdk/gdkcursor.h +168 -0
  446. data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +229 -0
  447. data/vendor/local/include/gtk-2.0/gdk/gdkdisplaymanager.h +67 -0
  448. data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +186 -0
  449. data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +436 -0
  450. data/vendor/local/include/gtk-2.0/gdk/gdkenumtypes.h +137 -0
  451. data/vendor/local/include/gtk-2.0/gdk/gdkevents.h +566 -0
  452. data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +138 -0
  453. data/vendor/local/include/gtk-2.0/gdk/gdkgc.h +298 -0
  454. data/vendor/local/include/gtk-2.0/gdk/gdki18n.h +59 -0
  455. data/vendor/local/include/gtk-2.0/gdk/gdkimage.h +145 -0
  456. data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +192 -0
  457. data/vendor/local/include/gtk-2.0/gdk/gdkkeys.h +134 -0
  458. data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms-compat.h +2208 -0
  459. data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms.h +2221 -0
  460. data/vendor/local/include/gtk-2.0/gdk/gdkpango.h +166 -0
  461. data/vendor/local/include/gtk-2.0/gdk/gdkpixbuf.h +115 -0
  462. data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +136 -0
  463. data/vendor/local/include/gtk-2.0/gdk/gdkprivate.h +60 -0
  464. data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +128 -0
  465. data/vendor/local/include/gtk-2.0/gdk/gdkregion.h +127 -0
  466. data/vendor/local/include/gtk-2.0/gdk/gdkrgb.h +149 -0
  467. data/vendor/local/include/gtk-2.0/gdk/gdkscreen.h +132 -0
  468. data/vendor/local/include/gtk-2.0/gdk/gdkselection.h +111 -0
  469. data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +64 -0
  470. data/vendor/local/include/gtk-2.0/gdk/gdktestutils.h +49 -0
  471. data/vendor/local/include/gtk-2.0/gdk/gdktypes.h +226 -0
  472. data/vendor/local/include/gtk-2.0/gdk/gdkvisual.h +147 -0
  473. data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +129 -0
  474. data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +743 -0
  475. data/vendor/local/include/gtk-2.0/gtk/gtk.h +248 -0
  476. data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +157 -0
  477. data/vendor/local/include/gtk-2.0/gtk/gtkaccelgroup.h +216 -0
  478. data/vendor/local/include/gtk-2.0/gtk/gtkaccellabel.h +114 -0
  479. data/vendor/local/include/gtk-2.0/gtk/gtkaccelmap.h +101 -0
  480. data/vendor/local/include/gtk-2.0/gtk/gtkaccessible.h +80 -0
  481. data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +180 -0
  482. data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +184 -0
  483. data/vendor/local/include/gtk-2.0/gtk/gtkactivatable.h +88 -0
  484. data/vendor/local/include/gtk-2.0/gtk/gtkadjustment.h +121 -0
  485. data/vendor/local/include/gtk-2.0/gtk/gtkalignment.h +94 -0
  486. data/vendor/local/include/gtk-2.0/gtk/gtkarrow.h +77 -0
  487. data/vendor/local/include/gtk-2.0/gtk/gtkaspectframe.h +84 -0
  488. data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +176 -0
  489. data/vendor/local/include/gtk-2.0/gtk/gtkbbox.h +105 -0
  490. data/vendor/local/include/gtk-2.0/gtk/gtkbin.h +70 -0
  491. data/vendor/local/include/gtk-2.0/gtk/gtkbindings.h +158 -0
  492. data/vendor/local/include/gtk-2.0/gtk/gtkbox.h +159 -0
  493. data/vendor/local/include/gtk-2.0/gtk/gtkbuildable.h +176 -0
  494. data/vendor/local/include/gtk-2.0/gtk/gtkbuilder.h +143 -0
  495. data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +147 -0
  496. data/vendor/local/include/gtk-2.0/gtk/gtkcalendar.h +209 -0
  497. data/vendor/local/include/gtk-2.0/gtk/gtkcelleditable.h +64 -0
  498. data/vendor/local/include/gtk-2.0/gtk/gtkcelllayout.h +122 -0
  499. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderer.h +195 -0
  500. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendereraccel.h +92 -0
  501. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderercombo.h +64 -0
  502. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h +71 -0
  503. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererprogress.h +74 -0
  504. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspin.h +57 -0
  505. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspinner.h +67 -0
  506. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertext.h +105 -0
  507. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertoggle.h +85 -0
  508. data/vendor/local/include/gtk-2.0/gtk/gtkcellview.h +81 -0
  509. data/vendor/local/include/gtk-2.0/gtk/gtkcheckbutton.h +82 -0
  510. data/vendor/local/include/gtk-2.0/gtk/gtkcheckmenuitem.h +102 -0
  511. data/vendor/local/include/gtk-2.0/gtk/gtkclipboard.h +157 -0
  512. data/vendor/local/include/gtk-2.0/gtk/gtkclist.h +792 -0
  513. data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +103 -0
  514. data/vendor/local/include/gtk-2.0/gtk/gtkcolorsel.h +135 -0
  515. data/vendor/local/include/gtk-2.0/gtk/gtkcolorseldialog.h +82 -0
  516. data/vendor/local/include/gtk-2.0/gtk/gtkcombo.h +118 -0
  517. data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +153 -0
  518. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +81 -0
  519. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
  520. data/vendor/local/include/gtk-2.0/gtk/gtkcontainer.h +229 -0
  521. data/vendor/local/include/gtk-2.0/gtk/gtkctree.h +445 -0
  522. data/vendor/local/include/gtk-2.0/gtk/gtkcurve.h +106 -0
  523. data/vendor/local/include/gtk-2.0/gtk/gtkdebug.h +79 -0
  524. data/vendor/local/include/gtk-2.0/gtk/gtkdialog.h +186 -0
  525. data/vendor/local/include/gtk-2.0/gtk/gtkdnd.h +188 -0
  526. data/vendor/local/include/gtk-2.0/gtk/gtkdrawingarea.h +82 -0
  527. data/vendor/local/include/gtk-2.0/gtk/gtkeditable.h +117 -0
  528. data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +334 -0
  529. data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +133 -0
  530. data/vendor/local/include/gtk-2.0/gtk/gtkentrycompletion.h +132 -0
  531. data/vendor/local/include/gtk-2.0/gtk/gtkenums.h +584 -0
  532. data/vendor/local/include/gtk-2.0/gtk/gtkeventbox.h +71 -0
  533. data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +98 -0
  534. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +264 -0
  535. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +92 -0
  536. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserdialog.h +74 -0
  537. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserwidget.h +67 -0
  538. data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +83 -0
  539. data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +125 -0
  540. data/vendor/local/include/gtk-2.0/gtk/gtkfixed.h +90 -0
  541. data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +100 -0
  542. data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +220 -0
  543. data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +96 -0
  544. data/vendor/local/include/gtk-2.0/gtk/gtkgamma.h +82 -0
  545. data/vendor/local/include/gtk-2.0/gtk/gtkgc.h +49 -0
  546. data/vendor/local/include/gtk-2.0/gtk/gtkhandlebox.h +112 -0
  547. data/vendor/local/include/gtk-2.0/gtk/gtkhbbox.h +80 -0
  548. data/vendor/local/include/gtk-2.0/gtk/gtkhbox.h +68 -0
  549. data/vendor/local/include/gtk-2.0/gtk/gtkhpaned.h +65 -0
  550. data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +84 -0
  551. data/vendor/local/include/gtk-2.0/gtk/gtkhscale.h +71 -0
  552. data/vendor/local/include/gtk-2.0/gtk/gtkhscrollbar.h +70 -0
  553. data/vendor/local/include/gtk-2.0/gtk/gtkhseparator.h +68 -0
  554. data/vendor/local/include/gtk-2.0/gtk/gtkhsv.h +115 -0
  555. data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +189 -0
  556. data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +198 -0
  557. data/vendor/local/include/gtk-2.0/gtk/gtkiconview.h +242 -0
  558. data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +274 -0
  559. data/vendor/local/include/gtk-2.0/gtk/gtkimagemenuitem.h +86 -0
  560. data/vendor/local/include/gtk-2.0/gtk/gtkimcontext.h +132 -0
  561. data/vendor/local/include/gtk-2.0/gtk/gtkimcontextsimple.h +77 -0
  562. data/vendor/local/include/gtk-2.0/gtk/gtkimmodule.h +58 -0
  563. data/vendor/local/include/gtk-2.0/gtk/gtkimmulticontext.h +78 -0
  564. data/vendor/local/include/gtk-2.0/gtk/gtkinfobar.h +120 -0
  565. data/vendor/local/include/gtk-2.0/gtk/gtkinputdialog.h +100 -0
  566. data/vendor/local/include/gtk-2.0/gtk/gtkinvisible.h +78 -0
  567. data/vendor/local/include/gtk-2.0/gtk/gtkitem.h +81 -0
  568. data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +236 -0
  569. data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +207 -0
  570. data/vendor/local/include/gtk-2.0/gtk/gtklayout.h +138 -0
  571. data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +91 -0
  572. data/vendor/local/include/gtk-2.0/gtk/gtklist.h +138 -0
  573. data/vendor/local/include/gtk-2.0/gtk/gtklistitem.h +91 -0
  574. data/vendor/local/include/gtk-2.0/gtk/gtkliststore.h +147 -0
  575. data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +233 -0
  576. data/vendor/local/include/gtk-2.0/gtk/gtkmarshal.h +283 -0
  577. data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +219 -0
  578. data/vendor/local/include/gtk-2.0/gtk/gtkmenubar.h +92 -0
  579. data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +145 -0
  580. data/vendor/local/include/gtk-2.0/gtk/gtkmenushell.h +141 -0
  581. data/vendor/local/include/gtk-2.0/gtk/gtkmenutoolbutton.h +89 -0
  582. data/vendor/local/include/gtk-2.0/gtk/gtkmessagedialog.h +135 -0
  583. data/vendor/local/include/gtk-2.0/gtk/gtkmisc.h +85 -0
  584. data/vendor/local/include/gtk-2.0/gtk/gtkmodules.h +54 -0
  585. data/vendor/local/include/gtk-2.0/gtk/gtkmountoperation.h +83 -0
  586. data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +317 -0
  587. data/vendor/local/include/gtk-2.0/gtk/gtkobject.h +250 -0
  588. data/vendor/local/include/gtk-2.0/gtk/gtkoffscreenwindow.h +60 -0
  589. data/vendor/local/include/gtk-2.0/gtk/gtkoldeditable.h +126 -0
  590. data/vendor/local/include/gtk-2.0/gtk/gtkoptionmenu.h +88 -0
  591. data/vendor/local/include/gtk-2.0/gtk/gtkorientable.h +60 -0
  592. data/vendor/local/include/gtk-2.0/gtk/gtkpagesetup.h +108 -0
  593. data/vendor/local/include/gtk-2.0/gtk/gtkpaned.h +144 -0
  594. data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +101 -0
  595. data/vendor/local/include/gtk-2.0/gtk/gtkpixmap.h +83 -0
  596. data/vendor/local/include/gtk-2.0/gtk/gtkplug.h +105 -0
  597. data/vendor/local/include/gtk-2.0/gtk/gtkpreview.h +137 -0
  598. data/vendor/local/include/gtk-2.0/gtk/gtkprintcontext.h +71 -0
  599. data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +207 -0
  600. data/vendor/local/include/gtk-2.0/gtk/gtkprintoperationpreview.h +80 -0
  601. data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +234 -0
  602. data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +157 -0
  603. data/vendor/local/include/gtk-2.0/gtk/gtkprogress.h +120 -0
  604. data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +172 -0
  605. data/vendor/local/include/gtk-2.0/gtk/gtkradioaction.h +90 -0
  606. data/vendor/local/include/gtk-2.0/gtk/gtkradiobutton.h +94 -0
  607. data/vendor/local/include/gtk-2.0/gtk/gtkradiomenuitem.h +94 -0
  608. data/vendor/local/include/gtk-2.0/gtk/gtkradiotoolbutton.h +74 -0
  609. data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +215 -0
  610. data/vendor/local/include/gtk-2.0/gtk/gtkrc.h +271 -0
  611. data/vendor/local/include/gtk-2.0/gtk/gtkrecentaction.h +74 -0
  612. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooser.h +191 -0
  613. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserdialog.h +74 -0
  614. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchoosermenu.h +74 -0
  615. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserwidget.h +64 -0
  616. data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +94 -0
  617. data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +216 -0
  618. data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +136 -0
  619. data/vendor/local/include/gtk-2.0/gtk/gtkscale.h +111 -0
  620. data/vendor/local/include/gtk-2.0/gtk/gtkscalebutton.h +112 -0
  621. data/vendor/local/include/gtk-2.0/gtk/gtkscrollbar.h +72 -0
  622. data/vendor/local/include/gtk-2.0/gtk/gtkscrolledwindow.h +136 -0
  623. data/vendor/local/include/gtk-2.0/gtk/gtkselection.h +221 -0
  624. data/vendor/local/include/gtk-2.0/gtk/gtkseparator.h +66 -0
  625. data/vendor/local/include/gtk-2.0/gtk/gtkseparatormenuitem.h +68 -0
  626. data/vendor/local/include/gtk-2.0/gtk/gtkseparatortoolitem.h +72 -0
  627. data/vendor/local/include/gtk-2.0/gtk/gtksettings.h +139 -0
  628. data/vendor/local/include/gtk-2.0/gtk/gtkshow.h +39 -0
  629. data/vendor/local/include/gtk-2.0/gtk/gtksignal.h +149 -0
  630. data/vendor/local/include/gtk-2.0/gtk/gtksizegroup.h +111 -0
  631. data/vendor/local/include/gtk-2.0/gtk/gtksocket.h +102 -0
  632. data/vendor/local/include/gtk-2.0/gtk/gtkspinbutton.h +196 -0
  633. data/vendor/local/include/gtk-2.0/gtk/gtkspinner.h +65 -0
  634. data/vendor/local/include/gtk-2.0/gtk/gtkstatusbar.h +117 -0
  635. data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +157 -0
  636. data/vendor/local/include/gtk-2.0/gtk/gtkstock.h +1016 -0
  637. data/vendor/local/include/gtk-2.0/gtk/gtkstyle.h +945 -0
  638. data/vendor/local/include/gtk-2.0/gtk/gtktable.h +151 -0
  639. data/vendor/local/include/gtk-2.0/gtk/gtktearoffmenuitem.h +75 -0
  640. data/vendor/local/include/gtk-2.0/gtk/gtktestutils.h +71 -0
  641. data/vendor/local/include/gtk-2.0/gtk/gtktext.h +217 -0
  642. data/vendor/local/include/gtk-2.0/gtk/gtktextbuffer.h +409 -0
  643. data/vendor/local/include/gtk-2.0/gtk/gtktextbufferrichtext.h +96 -0
  644. data/vendor/local/include/gtk-2.0/gtk/gtktextchild.h +82 -0
  645. data/vendor/local/include/gtk-2.0/gtk/gtktextdisplay.h +112 -0
  646. data/vendor/local/include/gtk-2.0/gtk/gtktextiter.h +307 -0
  647. data/vendor/local/include/gtk-2.0/gtk/gtktextlayout.h +439 -0
  648. data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +106 -0
  649. data/vendor/local/include/gtk-2.0/gtk/gtktexttag.h +289 -0
  650. data/vendor/local/include/gtk-2.0/gtk/gtktexttagtable.h +101 -0
  651. data/vendor/local/include/gtk-2.0/gtk/gtktextview.h +376 -0
  652. data/vendor/local/include/gtk-2.0/gtk/gtktipsquery.h +110 -0
  653. data/vendor/local/include/gtk-2.0/gtk/gtktoggleaction.h +91 -0
  654. data/vendor/local/include/gtk-2.0/gtk/gtktogglebutton.h +97 -0
  655. data/vendor/local/include/gtk-2.0/gtk/gtktoggletoolbutton.h +77 -0
  656. data/vendor/local/include/gtk-2.0/gtk/gtktoolbar.h +288 -0
  657. data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +99 -0
  658. data/vendor/local/include/gtk-2.0/gtk/gtktoolitem.h +142 -0
  659. data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +99 -0
  660. data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +144 -0
  661. data/vendor/local/include/gtk-2.0/gtk/gtktoolshell.h +91 -0
  662. data/vendor/local/include/gtk-2.0/gtk/gtktooltip.h +77 -0
  663. data/vendor/local/include/gtk-2.0/gtk/gtktooltips.h +109 -0
  664. data/vendor/local/include/gtk-2.0/gtk/gtktree.h +132 -0
  665. data/vendor/local/include/gtk-2.0/gtk/gtktreednd.h +125 -0
  666. data/vendor/local/include/gtk-2.0/gtk/gtktreeitem.h +90 -0
  667. data/vendor/local/include/gtk-2.0/gtk/gtktreemodel.h +270 -0
  668. data/vendor/local/include/gtk-2.0/gtk/gtktreemodelfilter.h +109 -0
  669. data/vendor/local/include/gtk-2.0/gtk/gtktreemodelsort.h +106 -0
  670. data/vendor/local/include/gtk-2.0/gtk/gtktreeselection.h +125 -0
  671. data/vendor/local/include/gtk-2.0/gtk/gtktreesortable.h +103 -0
  672. data/vendor/local/include/gtk-2.0/gtk/gtktreestore.h +159 -0
  673. data/vendor/local/include/gtk-2.0/gtk/gtktreeview.h +431 -0
  674. data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +245 -0
  675. data/vendor/local/include/gtk-2.0/gtk/gtktypebuiltins.h +335 -0
  676. data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +264 -0
  677. data/vendor/local/include/gtk-2.0/gtk/gtkuimanager.h +153 -0
  678. data/vendor/local/include/gtk-2.0/gtk/gtkvbbox.h +82 -0
  679. data/vendor/local/include/gtk-2.0/gtk/gtkvbox.h +68 -0
  680. data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +51 -0
  681. data/vendor/local/include/gtk-2.0/gtk/gtkviewport.h +93 -0
  682. data/vendor/local/include/gtk-2.0/gtk/gtkvolumebutton.h +72 -0
  683. data/vendor/local/include/gtk-2.0/gtk/gtkvpaned.h +65 -0
  684. data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +84 -0
  685. data/vendor/local/include/gtk-2.0/gtk/gtkvscale.h +79 -0
  686. data/vendor/local/include/gtk-2.0/gtk/gtkvscrollbar.h +76 -0
  687. data/vendor/local/include/gtk-2.0/gtk/gtkvseparator.h +76 -0
  688. data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +1351 -0
  689. data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +452 -0
  690. data/vendor/local/lib/gailutil.lib +0 -0
  691. data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
  692. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
  693. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
  694. data/vendor/local/lib/gtk-2.0/include/gdkconfig.h +35 -0
  695. data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
  696. data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
  697. data/vendor/local/lib/libgailutil.dll.a +0 -0
  698. data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
  699. data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
  700. data/vendor/local/lib/pkgconfig/gail.pc +11 -0
  701. data/vendor/local/lib/pkgconfig/gdk-2.0.pc +12 -0
  702. data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +12 -0
  703. data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +15 -0
  704. data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +15 -0
  705. data/vendor/local/manifest/gtk+-dev_2.24.10-1_win32.mft +947 -0
  706. data/vendor/local/manifest/gtk+_2.24.10-1_win32.mft +225 -0
  707. data/vendor/local/share/aclocal/gtk-2.0.m4 +196 -0
  708. data/vendor/local/share/doc/gtk+-2.24.10/COPYING +482 -0
  709. data/vendor/local/share/doc/gtk+-dev-2.24.10/COPYING +482 -0
  710. data/vendor/local/share/gtk-2.0/demo/alphatest.png +0 -0
  711. data/vendor/local/share/gtk-2.0/demo/apple-red.png +0 -0
  712. data/vendor/local/share/gtk-2.0/demo/appwindow.c +591 -0
  713. data/vendor/local/share/gtk-2.0/demo/assistant.c +216 -0
  714. data/vendor/local/share/gtk-2.0/demo/background.jpg +0 -0
  715. data/vendor/local/share/gtk-2.0/demo/builder.c +68 -0
  716. data/vendor/local/share/gtk-2.0/demo/button_box.c +127 -0
  717. data/vendor/local/share/gtk-2.0/demo/changedisplay.c +643 -0
  718. data/vendor/local/share/gtk-2.0/demo/clipboard.c +326 -0
  719. data/vendor/local/share/gtk-2.0/demo/colorsel.c +142 -0
  720. data/vendor/local/share/gtk-2.0/demo/combobox.c +454 -0
  721. data/vendor/local/share/gtk-2.0/demo/demo.ui +258 -0
  722. data/vendor/local/share/gtk-2.0/demo/dialog.c +181 -0
  723. data/vendor/local/share/gtk-2.0/demo/drawingarea.c +308 -0
  724. data/vendor/local/share/gtk-2.0/demo/editable_cells.c +393 -0
  725. data/vendor/local/share/gtk-2.0/demo/entry_buffer.c +65 -0
  726. data/vendor/local/share/gtk-2.0/demo/entry_completion.c +97 -0
  727. data/vendor/local/share/gtk-2.0/demo/expander.c +58 -0
  728. data/vendor/local/share/gtk-2.0/demo/floppybuddy.gif +0 -0
  729. data/vendor/local/share/gtk-2.0/demo/gnome-applets.png +0 -0
  730. data/vendor/local/share/gtk-2.0/demo/gnome-calendar.png +0 -0
  731. data/vendor/local/share/gtk-2.0/demo/gnome-foot.png +0 -0
  732. data/vendor/local/share/gtk-2.0/demo/gnome-fs-directory.png +0 -0
  733. data/vendor/local/share/gtk-2.0/demo/gnome-fs-regular.png +0 -0
  734. data/vendor/local/share/gtk-2.0/demo/gnome-gimp.png +0 -0
  735. data/vendor/local/share/gtk-2.0/demo/gnome-gmush.png +0 -0
  736. data/vendor/local/share/gtk-2.0/demo/gnome-gsame.png +0 -0
  737. data/vendor/local/share/gtk-2.0/demo/gnu-keys.png +0 -0
  738. data/vendor/local/share/gtk-2.0/demo/gtk-logo-rgb.gif +0 -0
  739. data/vendor/local/share/gtk-2.0/demo/hypertext.c +315 -0
  740. data/vendor/local/share/gtk-2.0/demo/iconview.c +372 -0
  741. data/vendor/local/share/gtk-2.0/demo/iconview_edit.c +159 -0
  742. data/vendor/local/share/gtk-2.0/demo/images.c +464 -0
  743. data/vendor/local/share/gtk-2.0/demo/infobar.c +104 -0
  744. data/vendor/local/share/gtk-2.0/demo/links.c +84 -0
  745. data/vendor/local/share/gtk-2.0/demo/list_store.c +295 -0
  746. data/vendor/local/share/gtk-2.0/demo/menus.c +210 -0
  747. data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +579 -0
  748. data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +500 -0
  749. data/vendor/local/share/gtk-2.0/demo/panes.c +194 -0
  750. data/vendor/local/share/gtk-2.0/demo/pickers.c +73 -0
  751. data/vendor/local/share/gtk-2.0/demo/pixbufs.c +270 -0
  752. data/vendor/local/share/gtk-2.0/demo/printing.c +212 -0
  753. data/vendor/local/share/gtk-2.0/demo/rotated_text.c +237 -0
  754. data/vendor/local/share/gtk-2.0/demo/search_entry.c +335 -0
  755. data/vendor/local/share/gtk-2.0/demo/sizegroup.c +167 -0
  756. data/vendor/local/share/gtk-2.0/demo/spinner.c +94 -0
  757. data/vendor/local/share/gtk-2.0/demo/stock_browser.c +546 -0
  758. data/vendor/local/share/gtk-2.0/demo/textscroll.c +200 -0
  759. data/vendor/local/share/gtk-2.0/demo/textview.c +569 -0
  760. data/vendor/local/share/gtk-2.0/demo/toolpalette.c +795 -0
  761. data/vendor/local/share/gtk-2.0/demo/tree_store.c +450 -0
  762. data/vendor/local/share/gtk-2.0/demo/ui_manager.c +237 -0
  763. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +449 -0
  764. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +275 -0
  765. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +30 -0
  766. data/vendor/local/share/gtk-doc/html/gail-libgail-util/home.png +0 -0
  767. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +44 -0
  768. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.sgml +27 -0
  769. data/vendor/local/share/gtk-doc/html/gail-libgail-util/left.png +0 -0
  770. data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +41 -0
  771. data/vendor/local/share/gtk-doc/html/gail-libgail-util/right.png +0 -0
  772. data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +266 -0
  773. data/vendor/local/share/gtk-doc/html/gail-libgail-util/up.png +0 -0
  774. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +1283 -0
  775. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +262 -0
  776. data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +1526 -0
  777. data/vendor/local/share/gtk-doc/html/gdk/X_cursor.png +0 -0
  778. data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +74 -0
  779. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +123 -0
  780. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +124 -0
  781. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +124 -0
  782. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +42 -0
  783. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +109 -0
  784. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +515 -0
  785. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +51 -0
  786. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +224 -0
  787. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +123 -0
  788. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +128 -0
  789. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +115 -0
  790. data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +1012 -0
  791. data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +3674 -0
  792. data/vendor/local/share/gtk-doc/html/gdk/arrow.png +0 -0
  793. data/vendor/local/share/gtk-doc/html/gdk/based_arrow_down.png +0 -0
  794. data/vendor/local/share/gtk-doc/html/gdk/based_arrow_up.png +0 -0
  795. data/vendor/local/share/gtk-doc/html/gdk/boat.png +0 -0
  796. data/vendor/local/share/gtk-doc/html/gdk/bogosity.png +0 -0
  797. data/vendor/local/share/gtk-doc/html/gdk/bottom_left_corner.png +0 -0
  798. data/vendor/local/share/gtk-doc/html/gdk/bottom_right_corner.png +0 -0
  799. data/vendor/local/share/gtk-doc/html/gdk/bottom_side.png +0 -0
  800. data/vendor/local/share/gtk-doc/html/gdk/bottom_tee.png +0 -0
  801. data/vendor/local/share/gtk-doc/html/gdk/box_spiral.png +0 -0
  802. data/vendor/local/share/gtk-doc/html/gdk/center_ptr.png +0 -0
  803. data/vendor/local/share/gtk-doc/html/gdk/circle.png +0 -0
  804. data/vendor/local/share/gtk-doc/html/gdk/clock.png +0 -0
  805. data/vendor/local/share/gtk-doc/html/gdk/coffee_mug.png +0 -0
  806. data/vendor/local/share/gtk-doc/html/gdk/cross.png +0 -0
  807. data/vendor/local/share/gtk-doc/html/gdk/cross_reverse.png +0 -0
  808. data/vendor/local/share/gtk-doc/html/gdk/crosshair.png +0 -0
  809. data/vendor/local/share/gtk-doc/html/gdk/diamond_cross.png +0 -0
  810. data/vendor/local/share/gtk-doc/html/gdk/dot.png +0 -0
  811. data/vendor/local/share/gtk-doc/html/gdk/dotbox.png +0 -0
  812. data/vendor/local/share/gtk-doc/html/gdk/double_arrow.png +0 -0
  813. data/vendor/local/share/gtk-doc/html/gdk/draft_large.png +0 -0
  814. data/vendor/local/share/gtk-doc/html/gdk/draft_small.png +0 -0
  815. data/vendor/local/share/gtk-doc/html/gdk/draped_box.png +0 -0
  816. data/vendor/local/share/gtk-doc/html/gdk/exchange.png +0 -0
  817. data/vendor/local/share/gtk-doc/html/gdk/fleur.png +0 -0
  818. data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +319 -0
  819. data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +611 -0
  820. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +415 -0
  821. data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +950 -0
  822. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +1137 -0
  823. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +911 -0
  824. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +2088 -0
  825. data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +1690 -0
  826. data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +1264 -0
  827. data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +1449 -0
  828. data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +1182 -0
  829. data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +902 -0
  830. data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +1653 -0
  831. data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +824 -0
  832. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +960 -0
  833. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +297 -0
  834. data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +1016 -0
  835. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +861 -0
  836. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +648 -0
  837. data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +968 -0
  838. data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +1005 -0
  839. data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +657 -0
  840. data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +210 -0
  841. data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +933 -0
  842. data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +827 -0
  843. data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +6581 -0
  844. data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +2486 -0
  845. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +1331 -0
  846. data/vendor/local/share/gtk-doc/html/gdk/gobbler.png +0 -0
  847. data/vendor/local/share/gtk-doc/html/gdk/gumby.png +0 -0
  848. data/vendor/local/share/gtk-doc/html/gdk/hand1.png +0 -0
  849. data/vendor/local/share/gtk-doc/html/gdk/hand2.png +0 -0
  850. data/vendor/local/share/gtk-doc/html/gdk/heart.png +0 -0
  851. data/vendor/local/share/gtk-doc/html/gdk/home.png +0 -0
  852. data/vendor/local/share/gtk-doc/html/gdk/icon.png +0 -0
  853. data/vendor/local/share/gtk-doc/html/gdk/index.html +143 -0
  854. data/vendor/local/share/gtk-doc/html/gdk/index.sgml +1446 -0
  855. data/vendor/local/share/gtk-doc/html/gdk/iron_cross.png +0 -0
  856. data/vendor/local/share/gtk-doc/html/gdk/left.png +0 -0
  857. data/vendor/local/share/gtk-doc/html/gdk/left_ptr.png +0 -0
  858. data/vendor/local/share/gtk-doc/html/gdk/left_side.png +0 -0
  859. data/vendor/local/share/gtk-doc/html/gdk/left_tee.png +0 -0
  860. data/vendor/local/share/gtk-doc/html/gdk/leftbutton.png +0 -0
  861. data/vendor/local/share/gtk-doc/html/gdk/ll_angle.png +0 -0
  862. data/vendor/local/share/gtk-doc/html/gdk/lr_angle.png +0 -0
  863. data/vendor/local/share/gtk-doc/html/gdk/man.png +0 -0
  864. data/vendor/local/share/gtk-doc/html/gdk/middlebutton.png +0 -0
  865. data/vendor/local/share/gtk-doc/html/gdk/mouse.png +0 -0
  866. data/vendor/local/share/gtk-doc/html/gdk/multihead.html +201 -0
  867. data/vendor/local/share/gtk-doc/html/gdk/pencil.png +0 -0
  868. data/vendor/local/share/gtk-doc/html/gdk/pirate.png +0 -0
  869. data/vendor/local/share/gtk-doc/html/gdk/plus.png +0 -0
  870. data/vendor/local/share/gtk-doc/html/gdk/question_arrow.png +0 -0
  871. data/vendor/local/share/gtk-doc/html/gdk/reference.html +131 -0
  872. data/vendor/local/share/gtk-doc/html/gdk/right.png +0 -0
  873. data/vendor/local/share/gtk-doc/html/gdk/right_ptr.png +0 -0
  874. data/vendor/local/share/gtk-doc/html/gdk/right_side.png +0 -0
  875. data/vendor/local/share/gtk-doc/html/gdk/right_tee.png +0 -0
  876. data/vendor/local/share/gtk-doc/html/gdk/rightbutton.png +0 -0
  877. data/vendor/local/share/gtk-doc/html/gdk/rotated-text.png +0 -0
  878. data/vendor/local/share/gtk-doc/html/gdk/rtl_logo.png +0 -0
  879. data/vendor/local/share/gtk-doc/html/gdk/sailboat.png +0 -0
  880. data/vendor/local/share/gtk-doc/html/gdk/sb_down_arrow.png +0 -0
  881. data/vendor/local/share/gtk-doc/html/gdk/sb_h_double_arrow.png +0 -0
  882. data/vendor/local/share/gtk-doc/html/gdk/sb_left_arrow.png +0 -0
  883. data/vendor/local/share/gtk-doc/html/gdk/sb_right_arrow.png +0 -0
  884. data/vendor/local/share/gtk-doc/html/gdk/sb_up_arrow.png +0 -0
  885. data/vendor/local/share/gtk-doc/html/gdk/sb_v_double_arrow.png +0 -0
  886. data/vendor/local/share/gtk-doc/html/gdk/shuttle.png +0 -0
  887. data/vendor/local/share/gtk-doc/html/gdk/sizing.png +0 -0
  888. data/vendor/local/share/gtk-doc/html/gdk/spider.png +0 -0
  889. data/vendor/local/share/gtk-doc/html/gdk/spraycan.png +0 -0
  890. data/vendor/local/share/gtk-doc/html/gdk/star.png +0 -0
  891. data/vendor/local/share/gtk-doc/html/gdk/style.css +266 -0
  892. data/vendor/local/share/gtk-doc/html/gdk/target.png +0 -0
  893. data/vendor/local/share/gtk-doc/html/gdk/tcross.png +0 -0
  894. data/vendor/local/share/gtk-doc/html/gdk/top_left_arrow.png +0 -0
  895. data/vendor/local/share/gtk-doc/html/gdk/top_left_corner.png +0 -0
  896. data/vendor/local/share/gtk-doc/html/gdk/top_right_corner.png +0 -0
  897. data/vendor/local/share/gtk-doc/html/gdk/top_side.png +0 -0
  898. data/vendor/local/share/gtk-doc/html/gdk/top_tee.png +0 -0
  899. data/vendor/local/share/gtk-doc/html/gdk/trek.png +0 -0
  900. data/vendor/local/share/gtk-doc/html/gdk/ul_angle.png +0 -0
  901. data/vendor/local/share/gtk-doc/html/gdk/umbrella.png +0 -0
  902. data/vendor/local/share/gtk-doc/html/gdk/up.png +0 -0
  903. data/vendor/local/share/gtk-doc/html/gdk/ur_angle.png +0 -0
  904. data/vendor/local/share/gtk-doc/html/gdk/watch.png +0 -0
  905. data/vendor/local/share/gtk-doc/html/gdk/xterm.png +0 -0
  906. data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +77 -0
  907. data/vendor/local/share/gtk-doc/html/gtk/Actions.html +53 -0
  908. data/vendor/local/share/gtk-doc/html/gtk/Builder.html +38 -0
  909. data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +53 -0
  910. data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +83 -0
  911. data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +56 -0
  912. data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +1423 -0
  913. data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +340 -0
  914. data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +147 -0
  915. data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +1582 -0
  916. data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +1222 -0
  917. data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +856 -0
  918. data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +807 -0
  919. data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +390 -0
  920. data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +205 -0
  921. data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +238 -0
  922. data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +1134 -0
  923. data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +131 -0
  924. data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +773 -0
  925. data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +638 -0
  926. data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +1121 -0
  927. data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +1110 -0
  928. data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +555 -0
  929. data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +3832 -0
  930. data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +2563 -0
  931. data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +1059 -0
  932. data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +270 -0
  933. data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +520 -0
  934. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +1132 -0
  935. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +254 -0
  936. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +227 -0
  937. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +206 -0
  938. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +199 -0
  939. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +161 -0
  940. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +157 -0
  941. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +582 -0
  942. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +351 -0
  943. data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +433 -0
  944. data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +214 -0
  945. data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +436 -0
  946. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +786 -0
  947. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +231 -0
  948. data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +507 -0
  949. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +1555 -0
  950. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +298 -0
  951. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +328 -0
  952. data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +1510 -0
  953. data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +423 -0
  954. data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +1323 -0
  955. data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +251 -0
  956. data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +662 -0
  957. data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +3428 -0
  958. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +590 -0
  959. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +1128 -0
  960. data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +292 -0
  961. data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +739 -0
  962. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +3186 -0
  963. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +498 -0
  964. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +321 -0
  965. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +170 -0
  966. data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +611 -0
  967. data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +326 -0
  968. data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +571 -0
  969. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +526 -0
  970. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +417 -0
  971. data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +444 -0
  972. data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +127 -0
  973. data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +132 -0
  974. data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +230 -0
  975. data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +108 -0
  976. data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +129 -0
  977. data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +462 -0
  978. data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +160 -0
  979. data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +125 -0
  980. data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +130 -0
  981. data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +478 -0
  982. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +947 -0
  983. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +148 -0
  984. data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +175 -0
  985. data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +1410 -0
  986. data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +2689 -0
  987. data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +1501 -0
  988. data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +456 -0
  989. data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +714 -0
  990. data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +200 -0
  991. data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +197 -0
  992. data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +235 -0
  993. data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +1172 -0
  994. data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +2086 -0
  995. data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +577 -0
  996. data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +390 -0
  997. data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +972 -0
  998. data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +438 -0
  999. data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +1056 -0
  1000. data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +1353 -0
  1001. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +412 -0
  1002. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +882 -0
  1003. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +671 -0
  1004. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +431 -0
  1005. data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +786 -0
  1006. data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +313 -0
  1007. data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +2682 -0
  1008. data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +1217 -0
  1009. data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +186 -0
  1010. data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +501 -0
  1011. data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +333 -0
  1012. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +937 -0
  1013. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +242 -0
  1014. data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +760 -0
  1015. data/vendor/local/share/gtk-doc/html/gtk/GtkPaperSize.html +820 -0
  1016. data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +239 -0
  1017. data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +357 -0
  1018. data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +652 -0
  1019. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +513 -0
  1020. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +527 -0
  1021. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +2677 -0
  1022. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +853 -0
  1023. data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +931 -0
  1024. data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +555 -0
  1025. data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +852 -0
  1026. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +367 -0
  1027. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +525 -0
  1028. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +457 -0
  1029. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +327 -0
  1030. data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +1389 -0
  1031. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +267 -0
  1032. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +1376 -0
  1033. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +228 -0
  1034. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +259 -0
  1035. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +155 -0
  1036. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +620 -0
  1037. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +1564 -0
  1038. data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +357 -0
  1039. data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +537 -0
  1040. data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +571 -0
  1041. data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +187 -0
  1042. data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +738 -0
  1043. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +90 -0
  1044. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +110 -0
  1045. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +211 -0
  1046. data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +1215 -0
  1047. data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +440 -0
  1048. data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +388 -0
  1049. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +1260 -0
  1050. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +203 -0
  1051. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +1716 -0
  1052. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +491 -0
  1053. data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +4192 -0
  1054. data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +759 -0
  1055. data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +135 -0
  1056. data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +668 -0
  1057. data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +3605 -0
  1058. data/vendor/local/share/gtk-doc/html/gtk/GtkTextIter.html +2871 -0
  1059. data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +325 -0
  1060. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +1157 -0
  1061. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +381 -0
  1062. data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +3002 -0
  1063. data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +452 -0
  1064. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +315 -0
  1065. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +508 -0
  1066. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +279 -0
  1067. data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +667 -0
  1068. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +1147 -0
  1069. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +705 -0
  1070. data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +1007 -0
  1071. data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +394 -0
  1072. data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +1851 -0
  1073. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +414 -0
  1074. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +450 -0
  1075. data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +767 -0
  1076. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +266 -0
  1077. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +2402 -0
  1078. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +654 -0
  1079. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +551 -0
  1080. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +796 -0
  1081. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +458 -0
  1082. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +1028 -0
  1083. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +4656 -0
  1084. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +1845 -0
  1085. data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +1290 -0
  1086. data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +133 -0
  1087. data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +209 -0
  1088. data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +108 -0
  1089. data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +129 -0
  1090. data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +160 -0
  1091. data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +123 -0
  1092. data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +111 -0
  1093. data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +398 -0
  1094. data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +112 -0
  1095. data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +10064 -0
  1096. data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +4007 -0
  1097. data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +175 -0
  1098. data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +74 -0
  1099. data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +95 -0
  1100. data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +68 -0
  1101. data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +53 -0
  1102. data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +41 -0
  1103. data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +38 -0
  1104. data/vendor/local/share/gtk-doc/html/gtk/Printing.html +59 -0
  1105. data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +50 -0
  1106. data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +41 -0
  1107. data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +71 -0
  1108. data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +47 -0
  1109. data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +266 -0
  1110. data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +53 -0
  1111. data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +556 -0
  1112. data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +104 -0
  1113. data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +57 -0
  1114. data/vendor/local/share/gtk-doc/html/gtk/aboutdialog.png +0 -0
  1115. data/vendor/local/share/gtk-doc/html/gtk/accel-label.png +0 -0
  1116. data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +95 -0
  1117. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +2095 -0
  1118. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +790 -0
  1119. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +786 -0
  1120. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +602 -0
  1121. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +518 -0
  1122. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +291 -0
  1123. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +465 -0
  1124. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +181 -0
  1125. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +121 -0
  1126. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +1858 -0
  1127. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +1090 -0
  1128. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +386 -0
  1129. data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +3401 -0
  1130. data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +22926 -0
  1131. data/vendor/local/share/gtk-doc/html/gtk/application-exit.png +0 -0
  1132. data/vendor/local/share/gtk-doc/html/gtk/assistant.png +0 -0
  1133. data/vendor/local/share/gtk-doc/html/gtk/button.png +0 -0
  1134. data/vendor/local/share/gtk-doc/html/gtk/ch01.html +246 -0
  1135. data/vendor/local/share/gtk-doc/html/gtk/ch02.html +154 -0
  1136. data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +496 -0
  1137. data/vendor/local/share/gtk-doc/html/gtk/check-button.png +0 -0
  1138. data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +84 -0
  1139. data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +89 -0
  1140. data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +41 -0
  1141. data/vendor/local/share/gtk-doc/html/gtk/color-button.png +0 -0
  1142. data/vendor/local/share/gtk-doc/html/gtk/colorsel.png +0 -0
  1143. data/vendor/local/share/gtk-doc/html/gtk/combo-box-entry.png +0 -0
  1144. data/vendor/local/share/gtk-doc/html/gtk/combo-box.png +0 -0
  1145. data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +50 -0
  1146. data/vendor/local/share/gtk-doc/html/gtk/dialog-error.png +0 -0
  1147. data/vendor/local/share/gtk-doc/html/gtk/dialog-information.png +0 -0
  1148. data/vendor/local/share/gtk-doc/html/gtk/dialog-password.png +0 -0
  1149. data/vendor/local/share/gtk-doc/html/gtk/dialog-question.png +0 -0
  1150. data/vendor/local/share/gtk-doc/html/gtk/dialog-warning.png +0 -0
  1151. data/vendor/local/share/gtk-doc/html/gtk/document-new.png +0 -0
  1152. data/vendor/local/share/gtk-doc/html/gtk/document-open.png +0 -0
  1153. data/vendor/local/share/gtk-doc/html/gtk/document-print-preview.png +0 -0
  1154. data/vendor/local/share/gtk-doc/html/gtk/document-print.png +0 -0
  1155. data/vendor/local/share/gtk-doc/html/gtk/document-properties.png +0 -0
  1156. data/vendor/local/share/gtk-doc/html/gtk/document-revert-ltr.png +0 -0
  1157. data/vendor/local/share/gtk-doc/html/gtk/document-revert-rtl.png +0 -0
  1158. data/vendor/local/share/gtk-doc/html/gtk/document-save-as.png +0 -0
  1159. data/vendor/local/share/gtk-doc/html/gtk/document-save.png +0 -0
  1160. data/vendor/local/share/gtk-doc/html/gtk/drive-harddisk.png +0 -0
  1161. data/vendor/local/share/gtk-doc/html/gtk/edit-clear.png +0 -0
  1162. data/vendor/local/share/gtk-doc/html/gtk/edit-copy.png +0 -0
  1163. data/vendor/local/share/gtk-doc/html/gtk/edit-cut.png +0 -0
  1164. data/vendor/local/share/gtk-doc/html/gtk/edit-delete.png +0 -0
  1165. data/vendor/local/share/gtk-doc/html/gtk/edit-find-replace.png +0 -0
  1166. data/vendor/local/share/gtk-doc/html/gtk/edit-find.png +0 -0
  1167. data/vendor/local/share/gtk-doc/html/gtk/edit-paste.png +0 -0
  1168. data/vendor/local/share/gtk-doc/html/gtk/edit-redo-ltr.png +0 -0
  1169. data/vendor/local/share/gtk-doc/html/gtk/edit-redo-rtl.png +0 -0
  1170. data/vendor/local/share/gtk-doc/html/gtk/edit-select-all.png +0 -0
  1171. data/vendor/local/share/gtk-doc/html/gtk/edit-undo-ltr.png +0 -0
  1172. data/vendor/local/share/gtk-doc/html/gtk/edit-undo-rtl.png +0 -0
  1173. data/vendor/local/share/gtk-doc/html/gtk/entry.png +0 -0
  1174. data/vendor/local/share/gtk-doc/html/gtk/figure-hierarchical-drawing.png +0 -0
  1175. data/vendor/local/share/gtk-doc/html/gtk/figure-windowed-label.png +0 -0
  1176. data/vendor/local/share/gtk-doc/html/gtk/file-button.png +0 -0
  1177. data/vendor/local/share/gtk-doc/html/gtk/filechooser.png +0 -0
  1178. data/vendor/local/share/gtk-doc/html/gtk/folder.png +0 -0
  1179. data/vendor/local/share/gtk-doc/html/gtk/font-button.png +0 -0
  1180. data/vendor/local/share/gtk-doc/html/gtk/fontsel.png +0 -0
  1181. data/vendor/local/share/gtk-doc/html/gtk/format-indent-less-ltr.png +0 -0
  1182. data/vendor/local/share/gtk-doc/html/gtk/format-indent-less-rtl.png +0 -0
  1183. data/vendor/local/share/gtk-doc/html/gtk/format-indent-more-ltr.png +0 -0
  1184. data/vendor/local/share/gtk-doc/html/gtk/format-indent-more-rtl.png +0 -0
  1185. data/vendor/local/share/gtk-doc/html/gtk/format-justify-center.png +0 -0
  1186. data/vendor/local/share/gtk-doc/html/gtk/format-justify-fill.png +0 -0
  1187. data/vendor/local/share/gtk-doc/html/gtk/format-justify-left.png +0 -0
  1188. data/vendor/local/share/gtk-doc/html/gtk/format-justify-right.png +0 -0
  1189. data/vendor/local/share/gtk-doc/html/gtk/format-text-bold.png +0 -0
  1190. data/vendor/local/share/gtk-doc/html/gtk/format-text-italic.png +0 -0
  1191. data/vendor/local/share/gtk-doc/html/gtk/format-text-strikethrough.png +0 -0
  1192. data/vendor/local/share/gtk-doc/html/gtk/format-text-underline.png +0 -0
  1193. data/vendor/local/share/gtk-doc/html/gtk/frame.png +0 -0
  1194. data/vendor/local/share/gtk-doc/html/gtk/glossary.html +312 -0
  1195. data/vendor/local/share/gtk-doc/html/gtk/go-bottom.png +0 -0
  1196. data/vendor/local/share/gtk-doc/html/gtk/go-down.png +0 -0
  1197. data/vendor/local/share/gtk-doc/html/gtk/go-first-ltr.png +0 -0
  1198. data/vendor/local/share/gtk-doc/html/gtk/go-first-rtl.png +0 -0
  1199. data/vendor/local/share/gtk-doc/html/gtk/go-home.png +0 -0
  1200. data/vendor/local/share/gtk-doc/html/gtk/go-jump-ltr.png +0 -0
  1201. data/vendor/local/share/gtk-doc/html/gtk/go-jump-rtl.png +0 -0
  1202. data/vendor/local/share/gtk-doc/html/gtk/go-last-ltr.png +0 -0
  1203. data/vendor/local/share/gtk-doc/html/gtk/go-last-rtl.png +0 -0
  1204. data/vendor/local/share/gtk-doc/html/gtk/go-next-ltr.png +0 -0
  1205. data/vendor/local/share/gtk-doc/html/gtk/go-next-rtl.png +0 -0
  1206. data/vendor/local/share/gtk-doc/html/gtk/go-previous-ltr.png +0 -0
  1207. data/vendor/local/share/gtk-doc/html/gtk/go-previous-rtl.png +0 -0
  1208. data/vendor/local/share/gtk-doc/html/gtk/go-top.png +0 -0
  1209. data/vendor/local/share/gtk-doc/html/gtk/go-up.png +0 -0
  1210. data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +522 -0
  1211. data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +857 -0
  1212. data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +1525 -0
  1213. data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +1419 -0
  1214. data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +285 -0
  1215. data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +346 -0
  1216. data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +1760 -0
  1217. data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +123 -0
  1218. data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +439 -0
  1219. data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +2571 -0
  1220. data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +979 -0
  1221. data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +169 -0
  1222. data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +1726 -0
  1223. data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +1601 -0
  1224. data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +1536 -0
  1225. data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +1357 -0
  1226. data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +1565 -0
  1227. data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +589 -0
  1228. data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +1497 -0
  1229. data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +1574 -0
  1230. data/vendor/local/share/gtk-doc/html/gtk/gtk-apply.png +0 -0
  1231. data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +86 -0
  1232. data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +441 -0
  1233. data/vendor/local/share/gtk-doc/html/gtk/gtk-cancel.png +0 -0
  1234. data/vendor/local/share/gtk-doc/html/gtk/gtk-caps-lock-warning.png +0 -0
  1235. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +568 -0
  1236. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +1175 -0
  1237. data/vendor/local/share/gtk-doc/html/gtk/gtk-color-picker.png +0 -0
  1238. data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +111 -0
  1239. data/vendor/local/share/gtk-doc/html/gtk/gtk-connect.png +0 -0
  1240. data/vendor/local/share/gtk-doc/html/gtk/gtk-convert.png +0 -0
  1241. data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +60 -0
  1242. data/vendor/local/share/gtk-doc/html/gtk/gtk-disconnect.png +0 -0
  1243. data/vendor/local/share/gtk-doc/html/gtk/gtk-dnd-multiple.png +0 -0
  1244. data/vendor/local/share/gtk-doc/html/gtk/gtk-dnd.png +0 -0
  1245. data/vendor/local/share/gtk-doc/html/gtk/gtk-edit.png +0 -0
  1246. data/vendor/local/share/gtk-doc/html/gtk/gtk-font.png +0 -0
  1247. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +493 -0
  1248. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +509 -0
  1249. data/vendor/local/share/gtk-doc/html/gtk/gtk-index.png +0 -0
  1250. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +85 -0
  1251. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +160 -0
  1252. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +91 -0
  1253. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +102 -0
  1254. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +118 -0
  1255. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +107 -0
  1256. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +256 -0
  1257. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +80 -0
  1258. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +264 -0
  1259. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +155 -0
  1260. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +310 -0
  1261. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +163 -0
  1262. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +293 -0
  1263. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +45 -0
  1264. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +124 -0
  1265. data/vendor/local/share/gtk-doc/html/gtk/gtk-no.png +0 -0
  1266. data/vendor/local/share/gtk-doc/html/gtk/gtk-ok.png +0 -0
  1267. data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-landscape.png +0 -0
  1268. data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-portrait.png +0 -0
  1269. data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-reverse-landscape.png +0 -0
  1270. data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-reverse-portrait.png +0 -0
  1271. data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +53 -0
  1272. data/vendor/local/share/gtk-doc/html/gtk/gtk-page-setup.png +0 -0
  1273. data/vendor/local/share/gtk-doc/html/gtk/gtk-preferences.png +0 -0
  1274. data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +68 -0
  1275. data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +1422 -0
  1276. data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +143 -0
  1277. data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +344 -0
  1278. data/vendor/local/share/gtk-doc/html/gtk/gtk-select-color.png +0 -0
  1279. data/vendor/local/share/gtk-doc/html/gtk/gtk-undelete-ltr.png +0 -0
  1280. data/vendor/local/share/gtk-doc/html/gtk/gtk-undelete-rtl.png +0 -0
  1281. data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +106 -0
  1282. data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +87 -0
  1283. data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +134 -0
  1284. data/vendor/local/share/gtk-doc/html/gtk/gtk-yes.png +0 -0
  1285. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +6465 -0
  1286. data/vendor/local/share/gtk-doc/html/gtk/gtk.html +159 -0
  1287. data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +95 -0
  1288. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +40 -0
  1289. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +41 -0
  1290. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +55 -0
  1291. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +51 -0
  1292. data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +668 -0
  1293. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +206 -0
  1294. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +97 -0
  1295. data/vendor/local/share/gtk-doc/html/gtk/help-about.png +0 -0
  1296. data/vendor/local/share/gtk-doc/html/gtk/help-contents.png +0 -0
  1297. data/vendor/local/share/gtk-doc/html/gtk/home.png +0 -0
  1298. data/vendor/local/share/gtk-doc/html/gtk/icon-view.png +0 -0
  1299. data/vendor/local/share/gtk-doc/html/gtk/image-missing.png +0 -0
  1300. data/vendor/local/share/gtk-doc/html/gtk/image.png +0 -0
  1301. data/vendor/local/share/gtk-doc/html/gtk/index.html +875 -0
  1302. data/vendor/local/share/gtk-doc/html/gtk/index.sgml +7988 -0
  1303. data/vendor/local/share/gtk-doc/html/gtk/label.png +0 -0
  1304. data/vendor/local/share/gtk-doc/html/gtk/layout-btlr.png +0 -0
  1305. data/vendor/local/share/gtk-doc/html/gtk/layout-btrl.png +0 -0
  1306. data/vendor/local/share/gtk-doc/html/gtk/layout-lrbt.png +0 -0
  1307. data/vendor/local/share/gtk-doc/html/gtk/layout-lrtb.png +0 -0
  1308. data/vendor/local/share/gtk-doc/html/gtk/layout-rlbt.png +0 -0
  1309. data/vendor/local/share/gtk-doc/html/gtk/layout-rltb.png +0 -0
  1310. data/vendor/local/share/gtk-doc/html/gtk/layout-tblr.png +0 -0
  1311. data/vendor/local/share/gtk-doc/html/gtk/layout-tbrl.png +0 -0
  1312. data/vendor/local/share/gtk-doc/html/gtk/left.png +0 -0
  1313. data/vendor/local/share/gtk-doc/html/gtk/link-button.png +0 -0
  1314. data/vendor/local/share/gtk-doc/html/gtk/list-add.png +0 -0
  1315. data/vendor/local/share/gtk-doc/html/gtk/list-and-tree.png +0 -0
  1316. data/vendor/local/share/gtk-doc/html/gtk/list-remove.png +0 -0
  1317. data/vendor/local/share/gtk-doc/html/gtk/media-floppy.png +0 -0
  1318. data/vendor/local/share/gtk-doc/html/gtk/media-optical.png +0 -0
  1319. data/vendor/local/share/gtk-doc/html/gtk/media-playback-pause.png +0 -0
  1320. data/vendor/local/share/gtk-doc/html/gtk/media-playback-start-ltr.png +0 -0
  1321. data/vendor/local/share/gtk-doc/html/gtk/media-playback-start-rtl.png +0 -0
  1322. data/vendor/local/share/gtk-doc/html/gtk/media-playback-stop.png +0 -0
  1323. data/vendor/local/share/gtk-doc/html/gtk/media-record.png +0 -0
  1324. data/vendor/local/share/gtk-doc/html/gtk/media-seek-backward-ltr.png +0 -0
  1325. data/vendor/local/share/gtk-doc/html/gtk/media-seek-backward-rtl.png +0 -0
  1326. data/vendor/local/share/gtk-doc/html/gtk/media-seek-forward-ltr.png +0 -0
  1327. data/vendor/local/share/gtk-doc/html/gtk/media-seek-forward-rtl.png +0 -0
  1328. data/vendor/local/share/gtk-doc/html/gtk/media-skip-backward-ltr.png +0 -0
  1329. data/vendor/local/share/gtk-doc/html/gtk/media-skip-backward-rtl.png +0 -0
  1330. data/vendor/local/share/gtk-doc/html/gtk/media-skip-forward-ltr.png +0 -0
  1331. data/vendor/local/share/gtk-doc/html/gtk/media-skip-forward-rtl.png +0 -0
  1332. data/vendor/local/share/gtk-doc/html/gtk/menubar.png +0 -0
  1333. data/vendor/local/share/gtk-doc/html/gtk/messagedialog.png +0 -0
  1334. data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +94 -0
  1335. data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +351 -0
  1336. data/vendor/local/share/gtk-doc/html/gtk/migrating.html +104 -0
  1337. data/vendor/local/share/gtk-doc/html/gtk/multiline-text.png +0 -0
  1338. data/vendor/local/share/gtk-doc/html/gtk/network-idle.png +0 -0
  1339. data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +71 -0
  1340. data/vendor/local/share/gtk-doc/html/gtk/notebook.png +0 -0
  1341. data/vendor/local/share/gtk-doc/html/gtk/pagesetupdialog.png +0 -0
  1342. data/vendor/local/share/gtk-doc/html/gtk/panes.png +0 -0
  1343. data/vendor/local/share/gtk-doc/html/gtk/printdialog.png +0 -0
  1344. data/vendor/local/share/gtk-doc/html/gtk/printer-error.png +0 -0
  1345. data/vendor/local/share/gtk-doc/html/gtk/printer-info.png +0 -0
  1346. data/vendor/local/share/gtk-doc/html/gtk/printer-paused.png +0 -0
  1347. data/vendor/local/share/gtk-doc/html/gtk/printer-warning.png +0 -0
  1348. data/vendor/local/share/gtk-doc/html/gtk/process-stop.png +0 -0
  1349. data/vendor/local/share/gtk-doc/html/gtk/progressbar.png +0 -0
  1350. data/vendor/local/share/gtk-doc/html/gtk/pt05.html +44 -0
  1351. data/vendor/local/share/gtk-doc/html/gtk/radio-group.png +0 -0
  1352. data/vendor/local/share/gtk-doc/html/gtk/recentchooserdialog.png +0 -0
  1353. data/vendor/local/share/gtk-doc/html/gtk/right.png +0 -0
  1354. data/vendor/local/share/gtk-doc/html/gtk/scales.png +0 -0
  1355. data/vendor/local/share/gtk-doc/html/gtk/scrolledwindow.png +0 -0
  1356. data/vendor/local/share/gtk-doc/html/gtk/separator.png +0 -0
  1357. data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +77 -0
  1358. data/vendor/local/share/gtk-doc/html/gtk/spinbutton.png +0 -0
  1359. data/vendor/local/share/gtk-doc/html/gtk/spinner.png +0 -0
  1360. data/vendor/local/share/gtk-doc/html/gtk/statusbar.png +0 -0
  1361. data/vendor/local/share/gtk-doc/html/gtk/style.css +266 -0
  1362. data/vendor/local/share/gtk-doc/html/gtk/system-run.png +0 -0
  1363. data/vendor/local/share/gtk-doc/html/gtk/text-x-generic.png +0 -0
  1364. data/vendor/local/share/gtk-doc/html/gtk/toggle-button.png +0 -0
  1365. data/vendor/local/share/gtk-doc/html/gtk/toolbar.png +0 -0
  1366. data/vendor/local/share/gtk-doc/html/gtk/toolpalette.png +0 -0
  1367. data/vendor/local/share/gtk-doc/html/gtk/tools-check-spelling.png +0 -0
  1368. data/vendor/local/share/gtk-doc/html/gtk/tree-view-coordinates.png +0 -0
  1369. data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +45 -0
  1370. data/vendor/local/share/gtk-doc/html/gtk/up.png +0 -0
  1371. data/vendor/local/share/gtk-doc/html/gtk/view-fullscreen.png +0 -0
  1372. data/vendor/local/share/gtk-doc/html/gtk/view-refresh.png +0 -0
  1373. data/vendor/local/share/gtk-doc/html/gtk/view-restore.png +0 -0
  1374. data/vendor/local/share/gtk-doc/html/gtk/view-sort-ascending.png +0 -0
  1375. data/vendor/local/share/gtk-doc/html/gtk/view-sort-descending.png +0 -0
  1376. data/vendor/local/share/gtk-doc/html/gtk/volumebutton.png +0 -0
  1377. data/vendor/local/share/gtk-doc/html/gtk/window-close.png +0 -0
  1378. data/vendor/local/share/gtk-doc/html/gtk/window.png +0 -0
  1379. data/vendor/local/share/gtk-doc/html/gtk/zoom-fit-best.png +0 -0
  1380. data/vendor/local/share/gtk-doc/html/gtk/zoom-in.png +0 -0
  1381. data/vendor/local/share/gtk-doc/html/gtk/zoom-original.png +0 -0
  1382. data/vendor/local/share/gtk-doc/html/gtk/zoom-out.png +0 -0
  1383. data/vendor/local/share/locale/af/LC_MESSAGES/gtk20-properties.mo +0 -0
  1384. data/vendor/local/share/locale/af/LC_MESSAGES/gtk20.mo +0 -0
  1385. data/vendor/local/share/locale/am/LC_MESSAGES/gtk20-properties.mo +0 -0
  1386. data/vendor/local/share/locale/am/LC_MESSAGES/gtk20.mo +0 -0
  1387. data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20-properties.mo +0 -0
  1388. data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20.mo +0 -0
  1389. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20-properties.mo +0 -0
  1390. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20.mo +0 -0
  1391. data/vendor/local/share/locale/as/LC_MESSAGES/gtk20-properties.mo +0 -0
  1392. data/vendor/local/share/locale/as/LC_MESSAGES/gtk20.mo +0 -0
  1393. data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20-properties.mo +0 -0
  1394. data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20.mo +0 -0
  1395. data/vendor/local/share/locale/az/LC_MESSAGES/gtk20-properties.mo +0 -0
  1396. data/vendor/local/share/locale/az/LC_MESSAGES/gtk20.mo +0 -0
  1397. data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo +0 -0
  1398. data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20.mo +0 -0
  1399. data/vendor/local/share/locale/be/LC_MESSAGES/gtk20-properties.mo +0 -0
  1400. data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
  1401. data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
  1402. data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20.mo +0 -0
  1403. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
  1404. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
  1405. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1406. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20.mo +0 -0
  1407. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20-properties.mo +0 -0
  1408. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20.mo +0 -0
  1409. data/vendor/local/share/locale/br/LC_MESSAGES/gtk20-properties.mo +0 -0
  1410. data/vendor/local/share/locale/br/LC_MESSAGES/gtk20.mo +0 -0
  1411. data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20-properties.mo +0 -0
  1412. data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20.mo +0 -0
  1413. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
  1414. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
  1415. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
  1416. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
  1417. data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20-properties.mo +0 -0
  1418. data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20.mo +0 -0
  1419. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20-properties.mo +0 -0
  1420. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
  1421. data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20-properties.mo +0 -0
  1422. data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20.mo +0 -0
  1423. data/vendor/local/share/locale/da/LC_MESSAGES/gtk20-properties.mo +0 -0
  1424. data/vendor/local/share/locale/da/LC_MESSAGES/gtk20.mo +0 -0
  1425. data/vendor/local/share/locale/de/LC_MESSAGES/gtk20-properties.mo +0 -0
  1426. data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
  1427. data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20-properties.mo +0 -0
  1428. data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20.mo +0 -0
  1429. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
  1430. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20.mo +0 -0
  1431. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo +0 -0
  1432. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20.mo +0 -0
  1433. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
  1434. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
  1435. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20-properties.mo +0 -0
  1436. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20.mo +0 -0
  1437. data/vendor/local/share/locale/es/LC_MESSAGES/gtk20-properties.mo +0 -0
  1438. data/vendor/local/share/locale/es/LC_MESSAGES/gtk20.mo +0 -0
  1439. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
  1440. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20.mo +0 -0
  1441. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20-properties.mo +0 -0
  1442. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20.mo +0 -0
  1443. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20-properties.mo +0 -0
  1444. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20.mo +0 -0
  1445. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1446. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20.mo +0 -0
  1447. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1448. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20.mo +0 -0
  1449. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20-properties.mo +0 -0
  1450. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20.mo +0 -0
  1451. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1452. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
  1453. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20-properties.mo +0 -0
  1454. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20.mo +0 -0
  1455. data/vendor/local/share/locale/he/LC_MESSAGES/gtk20-properties.mo +0 -0
  1456. data/vendor/local/share/locale/he/LC_MESSAGES/gtk20.mo +0 -0
  1457. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1458. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20.mo +0 -0
  1459. data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1460. data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20.mo +0 -0
  1461. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20-properties.mo +0 -0
  1462. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
  1463. data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20-properties.mo +0 -0
  1464. data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20.mo +0 -0
  1465. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20-properties.mo +0 -0
  1466. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20.mo +0 -0
  1467. data/vendor/local/share/locale/id/LC_MESSAGES/gtk20-properties.mo +0 -0
  1468. data/vendor/local/share/locale/id/LC_MESSAGES/gtk20.mo +0 -0
  1469. data/vendor/local/share/locale/io/LC_MESSAGES/gtk20-properties.mo +0 -0
  1470. data/vendor/local/share/locale/io/LC_MESSAGES/gtk20.mo +0 -0
  1471. data/vendor/local/share/locale/is/LC_MESSAGES/gtk20-properties.mo +0 -0
  1472. data/vendor/local/share/locale/is/LC_MESSAGES/gtk20.mo +0 -0
  1473. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
  1474. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
  1475. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
  1476. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20.mo +0 -0
  1477. data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20-properties.mo +0 -0
  1478. data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20.mo +0 -0
  1479. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1480. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20.mo +0 -0
  1481. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1482. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20.mo +0 -0
  1483. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20-properties.mo +0 -0
  1484. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20.mo +0 -0
  1485. data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20-properties.mo +0 -0
  1486. data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20.mo +0 -0
  1487. data/vendor/local/share/locale/li/LC_MESSAGES/gtk20-properties.mo +0 -0
  1488. data/vendor/local/share/locale/li/LC_MESSAGES/gtk20.mo +0 -0
  1489. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
  1490. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
  1491. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20-properties.mo +0 -0
  1492. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20.mo +0 -0
  1493. data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20-properties.mo +0 -0
  1494. data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20.mo +0 -0
  1495. data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1496. data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20.mo +0 -0
  1497. data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1498. data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20.mo +0 -0
  1499. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20-properties.mo +0 -0
  1500. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20.mo +0 -0
  1501. data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1502. data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20.mo +0 -0
  1503. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1504. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20.mo +0 -0
  1505. data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20-properties.mo +0 -0
  1506. data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20.mo +0 -0
  1507. data/vendor/local/share/locale/my/LC_MESSAGES/gtk20-properties.mo +0 -0
  1508. data/vendor/local/share/locale/my/LC_MESSAGES/gtk20.mo +0 -0
  1509. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20-properties.mo +0 -0
  1510. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
  1511. data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20-properties.mo +0 -0
  1512. data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20.mo +0 -0
  1513. data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20-properties.mo +0 -0
  1514. data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20.mo +0 -0
  1515. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1516. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
  1517. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1518. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20.mo +0 -0
  1519. data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20-properties.mo +0 -0
  1520. data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20.mo +0 -0
  1521. data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20-properties.mo +0 -0
  1522. data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20.mo +0 -0
  1523. data/vendor/local/share/locale/or/LC_MESSAGES/gtk20-properties.mo +0 -0
  1524. data/vendor/local/share/locale/or/LC_MESSAGES/gtk20.mo +0 -0
  1525. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20-properties.mo +0 -0
  1526. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20.mo +0 -0
  1527. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1528. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
  1529. data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20-properties.mo +0 -0
  1530. data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20.mo +0 -0
  1531. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20-properties.mo +0 -0
  1532. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20.mo +0 -0
  1533. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo +0 -0
  1534. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20.mo +0 -0
  1535. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20-properties.mo +0 -0
  1536. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20.mo +0 -0
  1537. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
  1538. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
  1539. data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20-properties.mo +0 -0
  1540. data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20.mo +0 -0
  1541. data/vendor/local/share/locale/si/LC_MESSAGES/gtk20-properties.mo +0 -0
  1542. data/vendor/local/share/locale/si/LC_MESSAGES/gtk20.mo +0 -0
  1543. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1544. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20.mo +0 -0
  1545. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1546. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
  1547. data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20-properties.mo +0 -0
  1548. data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20.mo +0 -0
  1549. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1550. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20.mo +0 -0
  1551. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo +0 -0
  1552. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20.mo +0 -0
  1553. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
  1554. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20.mo +0 -0
  1555. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20-properties.mo +0 -0
  1556. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20.mo +0 -0
  1557. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20-properties.mo +0 -0
  1558. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20.mo +0 -0
  1559. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20-properties.mo +0 -0
  1560. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
  1561. data/vendor/local/share/locale/th/LC_MESSAGES/gtk20-properties.mo +0 -0
  1562. data/vendor/local/share/locale/th/LC_MESSAGES/gtk20.mo +0 -0
  1563. data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1564. data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20.mo +0 -0
  1565. data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1566. data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20.mo +0 -0
  1567. data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20-properties.mo +0 -0
  1568. data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20.mo +0 -0
  1569. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20-properties.mo +0 -0
  1570. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20.mo +0 -0
  1571. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1572. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20.mo +0 -0
  1573. data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20-properties.mo +0 -0
  1574. data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20.mo +0 -0
  1575. data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20-properties.mo +0 -0
  1576. data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20.mo +0 -0
  1577. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20-properties.mo +0 -0
  1578. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo +0 -0
  1579. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1580. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20.mo +0 -0
  1581. data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20-properties.mo +0 -0
  1582. data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20.mo +0 -0
  1583. data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20-properties.mo +0 -0
  1584. data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20.mo +0 -0
  1585. data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1586. data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20.mo +0 -0
  1587. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo +0 -0
  1588. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20.mo +0 -0
  1589. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20-properties.mo +0 -0
  1590. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
  1591. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo +0 -0
  1592. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
  1593. data/vendor/local/share/themes/Default/gtk-2.0-key/gtkrc +3 -0
  1594. data/vendor/local/share/themes/Emacs/gtk-2.0-key/gtkrc +113 -0
  1595. data/vendor/local/share/themes/MS-Windows/gtk-2.0/gtkrc +66 -0
  1596. data/vendor/local/share/themes/Raleigh/gtk-2.0/gtkrc +3 -0
  1597. data/vendor/local/src/dieterv/packaging/gtk+_2.24.10-1_win32.log +4954 -0
  1598. data/vendor/local/src/dieterv/packaging/gtk+_2.24.10-1_win32.sh +99 -0
  1599. metadata +1759 -0
@@ -0,0 +1,381 @@
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>GtkTextTagTable</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.76.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="GtkTextTag.html" title="GtkTextTag">
10
+ <link rel="next" href="GtkTextView.html" title="GtkTextView">
11
+ <meta name="generator" content="GTK-Doc V1.18 (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="2">
16
+ <tr valign="middle">
17
+ <td><a accesskey="p" href="GtkTextTag.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="TextWidgetObjects.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
+ <th width="100%" align="center">GTK+ 2 Reference Manual</th>
21
+ <td><a accesskey="n" href="GtkTextView.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
+ </tr>
23
+ <tr><td colspan="5" class="shortcuts">
24
+ <a href="#GtkTextTagTable.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GtkTextTagTable.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GtkTextTagTable.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#GtkTextTagTable.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
31
+  | 
32
+ <a href="#GtkTextTagTable.signals" class="shortcut">Signals</a>
33
+ </td></tr>
34
+ </table>
35
+ <div class="refentry">
36
+ <a name="GtkTextTagTable"></a><div class="titlepage"></div>
37
+ <div class="refnamediv"><table width="100%"><tr>
38
+ <td valign="top">
39
+ <h2><span class="refentrytitle"><a name="GtkTextTagTable.top_of_page"></a>GtkTextTagTable</span></h2>
40
+ <p>GtkTextTagTable — Collection of tags that can be used together</p>
41
+ </td>
42
+ <td valign="top" align="right"></td>
43
+ </tr></table></div>
44
+ <div class="refsynopsisdiv">
45
+ <a name="GtkTextTagTable.synopsis"></a><h2>Synopsis</h2>
46
+ <pre class="synopsis">
47
+ #include &lt;gtk/gtk.h&gt;
48
+
49
+ <a class="link" href="GtkTextTagTable.html#GtkTextTagTable-struct" title="GtkTextTagTable">GtkTextTagTable</a>;
50
+ <span class="returnvalue">void</span> (<a class="link" href="GtkTextTagTable.html#GtkTextTagTableForeach" title="GtkTextTagTableForeach ()">*GtkTextTagTableForeach</a>) (<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
51
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);
52
+ <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="returnvalue">GtkTextTagTable</span></a> * <a class="link" href="GtkTextTagTable.html#gtk-text-tag-table-new" title="gtk_text_tag_table_new ()">gtk_text_tag_table_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
53
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextTagTable.html#gtk-text-tag-table-add" title="gtk_text_tag_table_add ()">gtk_text_tag_table_add</a> (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>,
54
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);
55
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextTagTable.html#gtk-text-tag-table-remove" title="gtk_text_tag_table_remove ()">gtk_text_tag_table_remove</a> (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>,
56
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);
57
+ <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="returnvalue">GtkTextTag</span></a> * <a class="link" href="GtkTextTagTable.html#gtk-text-tag-table-lookup" title="gtk_text_tag_table_lookup ()">gtk_text_tag_table_lookup</a> (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>,
58
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);
59
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextTagTable.html#gtk-text-tag-table-foreach" title="gtk_text_tag_table_foreach ()">gtk_text_tag_table_foreach</a> (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>,
60
+ <em class="parameter"><code><a class="link" href="GtkTextTagTable.html#GtkTextTagTableForeach" title="GtkTextTagTableForeach ()"><span class="type">GtkTextTagTableForeach</span></a> func</code></em>,
61
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);
62
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkTextTagTable.html#gtk-text-tag-table-get-size" title="gtk_text_tag_table_get_size ()">gtk_text_tag_table_get_size</a> (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>);
63
+ </pre>
64
+ </div>
65
+ <div class="refsect1">
66
+ <a name="GtkTextTagTable.object-hierarchy"></a><h2>Object Hierarchy</h2>
67
+ <pre class="synopsis">
68
+ <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
69
+ +----GtkTextTagTable
70
+ </pre>
71
+ </div>
72
+ <div class="refsect1">
73
+ <a name="GtkTextTagTable.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
74
+ <p>
75
+ GtkTextTagTable implements
76
+ <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
77
+ </div>
78
+ <div class="refsect1">
79
+ <a name="GtkTextTagTable.signals"></a><h2>Signals</h2>
80
+ <pre class="synopsis">
81
+ "<a class="link" href="GtkTextTagTable.html#GtkTextTagTable-tag-added" title='The "tag-added" signal'>tag-added</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
82
+ "<a class="link" href="GtkTextTagTable.html#GtkTextTagTable-tag-changed" title='The "tag-changed" signal'>tag-changed</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
83
+ "<a class="link" href="GtkTextTagTable.html#GtkTextTagTable-tag-removed" title='The "tag-removed" signal'>tag-removed</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
84
+ </pre>
85
+ </div>
86
+ <div class="refsect1">
87
+ <a name="GtkTextTagTable.description"></a><h2>Description</h2>
88
+ <p>
89
+ You may wish to begin by reading the <a class="link" href="TextWidget.html" title="Text Widget Overview">text widget
90
+ conceptual overview</a> which gives an overview of all the objects and data
91
+ types related to the text widget and how they work together.
92
+ </p>
93
+ <p>
94
+ </p>
95
+ <div class="refsect2">
96
+ <a name="GtkTextTagTable-BUILDER-UI"></a><h3>GtkTextTagTables as GtkBuildable</h3>
97
+ <p>
98
+ The GtkTextTagTable implementation of the GtkBuildable interface
99
+ supports adding tags by specifying "tag" as the "type"
100
+ attribute of a &lt;child&gt; element.
101
+ </p>
102
+ <div class="example">
103
+ <a name="id664643"></a><p class="title"><b>Example 20. A UI definition fragment specifying tags</b></p>
104
+ <div class="example-contents">
105
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
106
+ <tbody>
107
+ <tr>
108
+ <td class="listing_lines" align="right"><pre>1
109
+ 2
110
+ 3
111
+ 4
112
+ 5</pre></td>
113
+ <td class="listing_code"><pre class="programlisting"><span class="symbol">&lt;</span><span class="usertype">object</span><span class="normal"> class</span><span class="symbol">=</span><span class="string">"GtkTextTagTable"</span><span class="symbol">&gt;</span>
114
+ <span class="normal"> </span><span class="symbol">&lt;</span><span class="usertype">child</span><span class="normal"> type</span><span class="symbol">=</span><span class="string">"tag"</span><span class="symbol">&gt;</span>
115
+ <span class="normal"> </span><span class="symbol">&lt;</span><span class="usertype">object</span><span class="normal"> class</span><span class="symbol">=</span><span class="string">"GtkTextTag"</span><span class="symbol">/&gt;</span>
116
+ <span class="normal"> </span><span class="symbol">&lt;/</span><span class="normal">child</span><span class="symbol">&gt;</span>
117
+ <span class="symbol">&lt;/</span><span class="normal">object</span><span class="symbol">&gt;</span></pre></td>
118
+ </tr>
119
+ </tbody>
120
+ </table>
121
+ </div>
122
+
123
+ </div>
124
+ <br class="example-break">
125
+ </div>
126
+ <p>
127
+ </p>
128
+ <p>
129
+ You may wish to begin by reading the <a class="link" href="TextWidget.html" title="Text Widget Overview">text widget
130
+ conceptual overview</a> which gives an overview of all the objects and data
131
+ types related to the text widget and how they work together.
132
+ </p>
133
+ <p>
134
+ </p>
135
+ </div>
136
+ <div class="refsect1">
137
+ <a name="GtkTextTagTable.details"></a><h2>Details</h2>
138
+ <div class="refsect2">
139
+ <a name="GtkTextTagTable-struct"></a><h3>GtkTextTagTable</h3>
140
+ <pre class="programlisting">typedef struct _GtkTextTagTable GtkTextTagTable;</pre>
141
+ <p>
142
+ </p>
143
+ </div>
144
+ <hr>
145
+ <div class="refsect2">
146
+ <a name="GtkTextTagTableForeach"></a><h3>GtkTextTagTableForeach ()</h3>
147
+ <pre class="programlisting"><span class="returnvalue">void</span> (*GtkTextTagTableForeach) (<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
148
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
149
+ <p>
150
+ </p>
151
+ </div>
152
+ <hr>
153
+ <div class="refsect2">
154
+ <a name="gtk-text-tag-table-new"></a><h3>gtk_text_tag_table_new ()</h3>
155
+ <pre class="programlisting"><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="returnvalue">GtkTextTagTable</span></a> * gtk_text_tag_table_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
156
+ <p>
157
+ Creates a new <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>. The table contains no tags by
158
+ default.
159
+ </p>
160
+ <div class="variablelist"><table border="0">
161
+ <col align="left" valign="top">
162
+ <tbody><tr>
163
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
164
+ <td>a new <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>
165
+ </td>
166
+ </tr></tbody>
167
+ </table></div>
168
+ </div>
169
+ <hr>
170
+ <div class="refsect2">
171
+ <a name="gtk-text-tag-table-add"></a><h3>gtk_text_tag_table_add ()</h3>
172
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_tag_table_add (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>,
173
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);</pre>
174
+ <p>
175
+ Add a tag to the table. The tag is assigned the highest priority
176
+ in the table.
177
+ </p>
178
+ <p>
179
+ <em class="parameter"><code>tag</code></em> must not be in a tag table already, and may not have
180
+ the same name as an already-added tag.
181
+ </p>
182
+ <div class="variablelist"><table border="0">
183
+ <col align="left" valign="top">
184
+ <tbody>
185
+ <tr>
186
+ <td><p><span class="term"><em class="parameter"><code>table</code></em> :</span></p></td>
187
+ <td>a <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>
188
+ </td>
189
+ </tr>
190
+ <tr>
191
+ <td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
192
+ <td>a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>
193
+ </td>
194
+ </tr>
195
+ </tbody>
196
+ </table></div>
197
+ </div>
198
+ <hr>
199
+ <div class="refsect2">
200
+ <a name="gtk-text-tag-table-remove"></a><h3>gtk_text_tag_table_remove ()</h3>
201
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_tag_table_remove (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>,
202
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);</pre>
203
+ <p>
204
+ Remove a tag from the table. This will remove the table's
205
+ reference to the tag, so be careful - the tag will end
206
+ up destroyed if you don't have a reference to it.
207
+ </p>
208
+ <div class="variablelist"><table border="0">
209
+ <col align="left" valign="top">
210
+ <tbody>
211
+ <tr>
212
+ <td><p><span class="term"><em class="parameter"><code>table</code></em> :</span></p></td>
213
+ <td>a <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>
214
+ </td>
215
+ </tr>
216
+ <tr>
217
+ <td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
218
+ <td>a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>
219
+ </td>
220
+ </tr>
221
+ </tbody>
222
+ </table></div>
223
+ </div>
224
+ <hr>
225
+ <div class="refsect2">
226
+ <a name="gtk-text-tag-table-lookup"></a><h3>gtk_text_tag_table_lookup ()</h3>
227
+ <pre class="programlisting"><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="returnvalue">GtkTextTag</span></a> * gtk_text_tag_table_lookup (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>,
228
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
229
+ <p>
230
+ Look up a named tag.
231
+ </p>
232
+ <div class="variablelist"><table border="0">
233
+ <col align="left" valign="top">
234
+ <tbody>
235
+ <tr>
236
+ <td><p><span class="term"><em class="parameter"><code>table</code></em> :</span></p></td>
237
+ <td>a <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>
238
+ </td>
239
+ </tr>
240
+ <tr>
241
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
242
+ <td>name of a tag</td>
243
+ </tr>
244
+ <tr>
245
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
246
+ <td>The tag, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if none by that name is in the table. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
247
+ </td>
248
+ </tr>
249
+ </tbody>
250
+ </table></div>
251
+ </div>
252
+ <hr>
253
+ <div class="refsect2">
254
+ <a name="gtk-text-tag-table-foreach"></a><h3>gtk_text_tag_table_foreach ()</h3>
255
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_tag_table_foreach (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>,
256
+ <em class="parameter"><code><a class="link" href="GtkTextTagTable.html#GtkTextTagTableForeach" title="GtkTextTagTableForeach ()"><span class="type">GtkTextTagTableForeach</span></a> func</code></em>,
257
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
258
+ <p>
259
+ Calls <em class="parameter"><code>func</code></em> on each tag in <em class="parameter"><code>table</code></em>, with user data <em class="parameter"><code>data</code></em>.
260
+ Note that the table may not be modified while iterating
261
+ over it (you can't add/remove tags).
262
+ </p>
263
+ <div class="variablelist"><table border="0">
264
+ <col align="left" valign="top">
265
+ <tbody>
266
+ <tr>
267
+ <td><p><span class="term"><em class="parameter"><code>table</code></em> :</span></p></td>
268
+ <td>a <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>
269
+ </td>
270
+ </tr>
271
+ <tr>
272
+ <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
273
+ <td>a function to call on each tag. <span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span>
274
+ </td>
275
+ </tr>
276
+ <tr>
277
+ <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
278
+ <td>user data</td>
279
+ </tr>
280
+ </tbody>
281
+ </table></div>
282
+ </div>
283
+ <hr>
284
+ <div class="refsect2">
285
+ <a name="gtk-text-tag-table-get-size"></a><h3>gtk_text_tag_table_get_size ()</h3>
286
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_text_tag_table_get_size (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>);</pre>
287
+ <p>
288
+ Returns the size of the table (number of tags)
289
+ </p>
290
+ <div class="variablelist"><table border="0">
291
+ <col align="left" valign="top">
292
+ <tbody>
293
+ <tr>
294
+ <td><p><span class="term"><em class="parameter"><code>table</code></em> :</span></p></td>
295
+ <td>a <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>
296
+ </td>
297
+ </tr>
298
+ <tr>
299
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
300
+ <td>number of tags in <em class="parameter"><code>table</code></em>
301
+ </td>
302
+ </tr>
303
+ </tbody>
304
+ </table></div>
305
+ </div>
306
+ </div>
307
+ <div class="refsect1">
308
+ <a name="GtkTextTagTable.signal-details"></a><h2>Signal Details</h2>
309
+ <div class="refsect2">
310
+ <a name="GtkTextTagTable-tag-added"></a><h3>The <code class="literal">"tag-added"</code> signal</h3>
311
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *texttagtable,
312
+ <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *arg1,
313
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
314
+ <p>
315
+ </p>
316
+ <div class="variablelist"><table border="0">
317
+ <col align="left" valign="top">
318
+ <tbody>
319
+ <tr>
320
+ <td><p><span class="term"><em class="parameter"><code>texttagtable</code></em> :</span></p></td>
321
+ <td>the object which received the signal.</td>
322
+ </tr>
323
+ <tr>
324
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
325
+ <td>user data set when the signal handler was connected.</td>
326
+ </tr>
327
+ </tbody>
328
+ </table></div>
329
+ </div>
330
+ <hr>
331
+ <div class="refsect2">
332
+ <a name="GtkTextTagTable-tag-changed"></a><h3>The <code class="literal">"tag-changed"</code> signal</h3>
333
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *texttagtable,
334
+ <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *arg1,
335
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> arg2,
336
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
337
+ <p>
338
+ </p>
339
+ <div class="variablelist"><table border="0">
340
+ <col align="left" valign="top">
341
+ <tbody>
342
+ <tr>
343
+ <td><p><span class="term"><em class="parameter"><code>texttagtable</code></em> :</span></p></td>
344
+ <td>the object which received the signal.</td>
345
+ </tr>
346
+ <tr>
347
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
348
+ <td>user data set when the signal handler was connected.</td>
349
+ </tr>
350
+ </tbody>
351
+ </table></div>
352
+ </div>
353
+ <hr>
354
+ <div class="refsect2">
355
+ <a name="GtkTextTagTable-tag-removed"></a><h3>The <code class="literal">"tag-removed"</code> signal</h3>
356
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *texttagtable,
357
+ <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *arg1,
358
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
359
+ <p>
360
+ </p>
361
+ <div class="variablelist"><table border="0">
362
+ <col align="left" valign="top">
363
+ <tbody>
364
+ <tr>
365
+ <td><p><span class="term"><em class="parameter"><code>texttagtable</code></em> :</span></p></td>
366
+ <td>the object which received the signal.</td>
367
+ </tr>
368
+ <tr>
369
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
370
+ <td>user data set when the signal handler was connected.</td>
371
+ </tr>
372
+ </tbody>
373
+ </table></div>
374
+ </div>
375
+ </div>
376
+ </div>
377
+ <div class="footer">
378
+ <hr>
379
+ Generated by GTK-Doc V1.18</div>
380
+ </body>
381
+ </html>
@@ -0,0 +1,3002 @@
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>GtkTextView</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.76.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.18 (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="2">
16
+ <tr valign="middle">
17
+ <td><a accesskey="p" href="GtkTextTagTable.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="TextWidgetObjects.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
+ <th width="100%" align="center">GTK+ 2 Reference Manual</th>
21
+ <td><a accesskey="n" href="TreeWidgetObjects.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
+ </tr>
23
+ <tr><td colspan="5" class="shortcuts">
24
+ <a href="#GtkTextView.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GtkTextView.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GtkTextView.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#GtkTextView.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
31
+  | 
32
+ <a href="#GtkTextView.properties" class="shortcut">Properties</a>
33
+  | 
34
+ <a href="#GtkTextView.style-properties" class="shortcut">Style Properties</a>
35
+  | 
36
+ <a href="#GtkTextView.signals" class="shortcut">Signals</a>
37
+ </td></tr>
38
+ </table>
39
+ <div class="refentry">
40
+ <a name="GtkTextView"></a><div class="titlepage"></div>
41
+ <div class="refnamediv"><table width="100%"><tr>
42
+ <td valign="top">
43
+ <h2><span class="refentrytitle"><a name="GtkTextView.top_of_page"></a>GtkTextView</span></h2>
44
+ <p>GtkTextView — Widget that displays a GtkTextBuffer</p>
45
+ </td>
46
+ <td valign="top" align="right"><img src="multiline-text.png"></td>
47
+ </tr></table></div>
48
+ <div class="refsynopsisdiv">
49
+ <a name="GtkTextView.synopsis"></a><h2>Synopsis</h2>
50
+ <a name="GtkTextChildAnchor"></a><pre class="synopsis">
51
+ #include &lt;gtk/gtk.h&gt;
52
+
53
+ struct <a class="link" href="GtkTextView.html#GtkTextView-struct" title="struct GtkTextView">GtkTextView</a>;
54
+ enum <a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType">GtkTextWindowType</a>;
55
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkTextView.html#gtk-text-view-new" title="gtk_text_view_new ()">gtk_text_view_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
56
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <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> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
57
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-buffer" title="gtk_text_view_set_buffer ()">gtk_text_view_set_buffer</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
58
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
59
+ <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="returnvalue">GtkTextBuffer</span></a> * <a class="link" href="GtkTextView.html#gtk-text-view-get-buffer" title="gtk_text_view_get_buffer ()">gtk_text_view_get_buffer</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
60
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
61
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
62
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> within_margin</code></em>,
63
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> use_align</code></em>,
64
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> xalign</code></em>,
65
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> yalign</code></em>);
66
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
67
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
68
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> within_margin</code></em>,
69
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> use_align</code></em>,
70
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> xalign</code></em>,
71
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> yalign</code></em>);
72
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
73
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);
74
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
75
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);
76
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
77
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
78
+ <em class="parameter"><code><a href="../gdk/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *visible_rect</code></em>);
79
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
80
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
81
+ <em class="parameter"><code><a href="../gdk/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *location</code></em>);
82
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
83
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *target_iter</code></em>,
84
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
85
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *line_top</code></em>);
86
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
87
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
88
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>,
89
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *height</code></em>);
90
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
91
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
92
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
93
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);
94
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
95
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
96
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *trailing</code></em>,
97
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
98
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);
99
+ <span class="returnvalue">void</span> <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>
100
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
101
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> win</code></em>,
102
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> buffer_x</code></em>,
103
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> buffer_y</code></em>,
104
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *window_x</code></em>,
105
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *window_y</code></em>);
106
+ <span class="returnvalue">void</span> <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>
107
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
108
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> win</code></em>,
109
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> window_x</code></em>,
110
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> window_y</code></em>,
111
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *buffer_x</code></em>,
112
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *buffer_y</code></em>);
113
+ <a href="../gdk/gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> * <a class="link" href="GtkTextView.html#gtk-text-view-get-window" title="gtk_text_view_get_window ()">gtk_text_view_get_window</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
114
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> win</code></em>);
115
+ <a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="returnvalue">GtkTextWindowType</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
116
+ <em class="parameter"><code><a href="../gdk/gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);
117
+ <span class="returnvalue">void</span> <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>
118
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
119
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> type</code></em>,
120
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>);
121
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>
122
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
123
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> type</code></em>);
124
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
125
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
126
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
127
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
128
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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>
129
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
130
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
131
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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>
132
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
133
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
134
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
135
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
136
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextView.html#gtk-text-view-move-visually" title="gtk_text_view_move_visually ()">gtk_text_view_move_visually</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
137
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
138
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count</code></em>);
139
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
140
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
141
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);
142
+ struct <a class="link" href="GtkTextView.html#GtkTextChildAnchor-struct" title="struct GtkTextChildAnchor">GtkTextChildAnchor</a>;
143
+ <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="returnvalue">GtkTextChildAnchor</span></a> * <a class="link" href="GtkTextView.html#gtk-text-child-anchor-new" title="gtk_text_child_anchor_new ()">gtk_text_child_anchor_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
144
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);
145
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);
146
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
147
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
148
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> which_window</code></em>,
149
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> xpos</code></em>,
150
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> ypos</code></em>);
151
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-move-child" title="gtk_text_view_move_child ()">gtk_text_view_move_child</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
152
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
153
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> xpos</code></em>,
154
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> ypos</code></em>);
155
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
156
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="type">GtkWrapMode</span></a> wrap_mode</code></em>);
157
+ <a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="returnvalue">GtkWrapMode</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
158
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-editable" title="gtk_text_view_set_editable ()">gtk_text_view_set_editable</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
159
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);
160
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextView.html#gtk-text-view-get-editable" title="gtk_text_view_get_editable ()">gtk_text_view_get_editable</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
161
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
162
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);
163
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
164
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-overwrite" title="gtk_text_view_set_overwrite ()">gtk_text_view_set_overwrite</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
165
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> overwrite</code></em>);
166
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextView.html#gtk-text-view-get-overwrite" title="gtk_text_view_get_overwrite ()">gtk_text_view_get_overwrite</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
167
+ <span class="returnvalue">void</span> <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>
168
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
169
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> pixels_above_lines</code></em>);
170
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>
171
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
172
+ <span class="returnvalue">void</span> <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>
173
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
174
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> pixels_below_lines</code></em>);
175
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>
176
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
177
+ <span class="returnvalue">void</span> <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>
178
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
179
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> pixels_inside_wrap</code></em>);
180
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>
181
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
182
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-justification" title="gtk_text_view_set_justification ()">gtk_text_view_set_justification</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
183
+ <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> justification</code></em>);
184
+ <a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="returnvalue">GtkJustification</span></a> <a class="link" href="GtkTextView.html#gtk-text-view-get-justification" title="gtk_text_view_get_justification ()">gtk_text_view_get_justification</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
185
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
186
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> left_margin</code></em>);
187
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
188
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
189
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> right_margin</code></em>);
190
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
191
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-indent" title="gtk_text_view_set_indent ()">gtk_text_view_set_indent</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
192
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> indent</code></em>);
193
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkTextView.html#gtk-text-view-get-indent" title="gtk_text_view_get_indent ()">gtk_text_view_get_indent</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
194
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-tabs" title="gtk_text_view_set_tabs ()">gtk_text_view_set_tabs</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
195
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/pango/pango-Tab-Stops.html#PangoTabArray"><span class="type">PangoTabArray</span></a> *tabs</code></em>);
196
+ <a href="/usr/share/gtk-doc/html/pango/pango-Tab-Stops.html#PangoTabArray"><span class="returnvalue">PangoTabArray</span></a> * <a class="link" href="GtkTextView.html#gtk-text-view-get-tabs" title="gtk_text_view_get_tabs ()">gtk_text_view_get_tabs</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
197
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
198
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> accepts_tab</code></em>);
199
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
200
+ <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> * <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>
201
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
202
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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>
203
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
204
+ <em class="parameter"><code><a href="../gdk/gdk-Event-Structures.html#GdkEventKey"><span class="type">GdkEventKey</span></a> *event</code></em>);
205
+ <span class="returnvalue">void</span> <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> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
206
+ <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * <a class="link" href="GtkTextView.html#gtk-text-view-get-hadjustment" title="gtk_text_view_get_hadjustment ()">gtk_text_view_get_hadjustment</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
207
+ <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * <a class="link" href="GtkTextView.html#gtk-text-view-get-vadjustment" title="gtk_text_view_get_vadjustment ()">gtk_text_view_get_vadjustment</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
208
+ #define <a class="link" href="GtkTextView.html#GTK-TEXT-VIEW-PRIORITY-VALIDATE:CAPS" title="GTK_TEXT_VIEW_PRIORITY_VALIDATE">GTK_TEXT_VIEW_PRIORITY_VALIDATE</a>
209
+ </pre>
210
+ </div>
211
+ <div class="refsect1">
212
+ <a name="GtkTextView.object-hierarchy"></a><h2>Object Hierarchy</h2>
213
+ <pre class="synopsis">
214
+ <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
215
+ +----<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
216
+ +----<a class="link" href="GtkObject.html" title="GtkObject">GtkObject</a>
217
+ +----<a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
218
+ +----<a class="link" href="GtkContainer.html" title="GtkContainer">GtkContainer</a>
219
+ +----GtkTextView
220
+ </pre>
221
+ <pre class="synopsis">
222
+ <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
223
+ +----GtkTextChildAnchor
224
+ </pre>
225
+ </div>
226
+ <div class="refsect1">
227
+ <a name="GtkTextView.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
228
+ <p>
229
+ GtkTextView implements
230
+ AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
231
+ </div>
232
+ <div class="refsect1">
233
+ <a name="GtkTextView.properties"></a><h2>Properties</h2>
234
+ <pre class="synopsis">
235
+ "<a class="link" href="GtkTextView.html#GtkTextView--accepts-tab" title='The "accepts-tab" property'>accepts-tab</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
236
+ "<a class="link" href="GtkTextView.html#GtkTextView--buffer" title='The "buffer" property'>buffer</a>" <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>* : Read / Write
237
+ "<a class="link" href="GtkTextView.html#GtkTextView--cursor-visible" title='The "cursor-visible" property'>cursor-visible</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
238
+ "<a class="link" href="GtkTextView.html#GtkTextView--editable" title='The "editable" property'>editable</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
239
+ "<a class="link" href="GtkTextView.html#GtkTextView--im-module" title='The "im-module" property'>im-module</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
240
+ "<a class="link" href="GtkTextView.html#GtkTextView--indent" title='The "indent" property'>indent</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
241
+ "<a class="link" href="GtkTextView.html#GtkTextView--justification" title='The "justification" property'>justification</a>" <a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> : Read / Write
242
+ "<a class="link" href="GtkTextView.html#GtkTextView--left-margin" title='The "left-margin" property'>left-margin</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
243
+ "<a class="link" href="GtkTextView.html#GtkTextView--overwrite" title='The "overwrite" property'>overwrite</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
244
+ "<a class="link" href="GtkTextView.html#GtkTextView--pixels-above-lines" title='The "pixels-above-lines" property'>pixels-above-lines</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
245
+ "<a class="link" href="GtkTextView.html#GtkTextView--pixels-below-lines" title='The "pixels-below-lines" property'>pixels-below-lines</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
246
+ "<a class="link" href="GtkTextView.html#GtkTextView--pixels-inside-wrap" title='The "pixels-inside-wrap" property'>pixels-inside-wrap</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
247
+ "<a class="link" href="GtkTextView.html#GtkTextView--right-margin" title='The "right-margin" property'>right-margin</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
248
+ "<a class="link" href="GtkTextView.html#GtkTextView--tabs" title='The "tabs" property'>tabs</a>" <a href="/usr/share/gtk-doc/html/pango/pango-Tab-Stops.html#PangoTabArray"><span class="type">PangoTabArray</span></a>* : Read / Write
249
+ "<a class="link" href="GtkTextView.html#GtkTextView--wrap-mode" title='The "wrap-mode" property'>wrap-mode</a>" <a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="type">GtkWrapMode</span></a> : Read / Write
250
+ </pre>
251
+ </div>
252
+ <div class="refsect1">
253
+ <a name="GtkTextView.style-properties"></a><h2>Style Properties</h2>
254
+ <pre class="synopsis">
255
+ "<a class="link" href="GtkTextView.html#GtkTextView--s-error-underline-color" title='The "error-underline-color" style property'>error-underline-color</a>" <a href="../gdk/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read
256
+ </pre>
257
+ </div>
258
+ <div class="refsect1">
259
+ <a name="GtkTextView.signals"></a><h2>Signals</h2>
260
+ <pre class="synopsis">
261
+ "<a class="link" href="GtkTextView.html#GtkTextView-backspace" title='The "backspace" signal'>backspace</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
262
+ "<a class="link" href="GtkTextView.html#GtkTextView-copy-clipboard" title='The "copy-clipboard" signal'>copy-clipboard</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
263
+ "<a class="link" href="GtkTextView.html#GtkTextView-cut-clipboard" title='The "cut-clipboard" signal'>cut-clipboard</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
264
+ "<a class="link" href="GtkTextView.html#GtkTextView-delete-from-cursor" title='The "delete-from-cursor" signal'>delete-from-cursor</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
265
+ "<a class="link" href="GtkTextView.html#GtkTextView-insert-at-cursor" title='The "insert-at-cursor" signal'>insert-at-cursor</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
266
+ "<a class="link" href="GtkTextView.html#GtkTextView-move-cursor" title='The "move-cursor" signal'>move-cursor</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
267
+ "<a class="link" href="GtkTextView.html#GtkTextView-move-viewport" title='The "move-viewport" signal'>move-viewport</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
268
+ "<a class="link" href="GtkTextView.html#GtkTextView-page-horizontally" title='The "page-horizontally" signal'>page-horizontally</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
269
+ "<a class="link" href="GtkTextView.html#GtkTextView-paste-clipboard" title='The "paste-clipboard" signal'>paste-clipboard</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
270
+ "<a class="link" href="GtkTextView.html#GtkTextView-populate-popup" title='The "populate-popup" signal'>populate-popup</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
271
+ "<a class="link" href="GtkTextView.html#GtkTextView-preedit-changed" title='The "preedit-changed" signal'>preedit-changed</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
272
+ "<a class="link" href="GtkTextView.html#GtkTextView-select-all" title='The "select-all" signal'>select-all</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
273
+ "<a class="link" href="GtkTextView.html#GtkTextView-set-anchor" title='The "set-anchor" signal'>set-anchor</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
274
+ "<a class="link" href="GtkTextView.html#GtkTextView-set-scroll-adjustments" title='The "set-scroll-adjustments" signal'>set-scroll-adjustments</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
275
+ "<a class="link" href="GtkTextView.html#GtkTextView-toggle-cursor-visible" title='The "toggle-cursor-visible" signal'>toggle-cursor-visible</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
276
+ "<a class="link" href="GtkTextView.html#GtkTextView-toggle-overwrite" title='The "toggle-overwrite" signal'>toggle-overwrite</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
277
+ </pre>
278
+ </div>
279
+ <div class="refsect1">
280
+ <a name="GtkTextView.description"></a><h2>Description</h2>
281
+ <p>
282
+ You may wish to begin by reading the <a class="link" href="TextWidget.html" title="Text Widget Overview">text widget
283
+ conceptual overview</a> which gives an overview of all the objects and data
284
+ types related to the text widget and how they work together.
285
+ </p>
286
+ <p>
287
+ </p>
288
+ </div>
289
+ <div class="refsect1">
290
+ <a name="GtkTextView.details"></a><h2>Details</h2>
291
+ <div class="refsect2">
292
+ <a name="GtkTextView-struct"></a><h3>struct GtkTextView</h3>
293
+ <pre class="programlisting">struct GtkTextView;</pre>
294
+ <p>
295
+ </p>
296
+ </div>
297
+ <hr>
298
+ <div class="refsect2">
299
+ <a name="GtkTextWindowType"></a><h3>enum GtkTextWindowType</h3>
300
+ <pre class="programlisting">typedef enum {
301
+ GTK_TEXT_WINDOW_PRIVATE,
302
+ GTK_TEXT_WINDOW_WIDGET,
303
+ GTK_TEXT_WINDOW_TEXT,
304
+ GTK_TEXT_WINDOW_LEFT,
305
+ GTK_TEXT_WINDOW_RIGHT,
306
+ GTK_TEXT_WINDOW_TOP,
307
+ GTK_TEXT_WINDOW_BOTTOM
308
+ } GtkTextWindowType;
309
+ </pre>
310
+ <p>
311
+ </p>
312
+ </div>
313
+ <hr>
314
+ <div class="refsect2">
315
+ <a name="gtk-text-view-new"></a><h3>gtk_text_view_new ()</h3>
316
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_text_view_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
317
+ <p>
318
+ 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>
319
+ before using the text view, an empty default buffer will be created
320
+ 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
321
+ 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>.
322
+ </p>
323
+ <div class="variablelist"><table border="0">
324
+ <col align="left" valign="top">
325
+ <tbody><tr>
326
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
327
+ <td>a new <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
328
+ </td>
329
+ </tr></tbody>
330
+ </table></div>
331
+ </div>
332
+ <hr>
333
+ <div class="refsect2">
334
+ <a name="gtk-text-view-new-with-buffer"></a><h3>gtk_text_view_new_with_buffer ()</h3>
335
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * 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>
336
+ <p>
337
+ Creates a new <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> widget displaying the buffer
338
+ <em class="parameter"><code>buffer</code></em>. One buffer can be shared among many widgets.
339
+ <em class="parameter"><code>buffer</code></em> may be <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to create a default buffer, in which case
340
+ 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
341
+ text view adds its own reference count to the buffer; it does not
342
+ take over an existing reference.
343
+ </p>
344
+ <div class="variablelist"><table border="0">
345
+ <col align="left" valign="top">
346
+ <tbody>
347
+ <tr>
348
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
349
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
350
+ </td>
351
+ </tr>
352
+ <tr>
353
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
354
+ <td>a new <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>.</td>
355
+ </tr>
356
+ </tbody>
357
+ </table></div>
358
+ </div>
359
+ <hr>
360
+ <div class="refsect2">
361
+ <a name="gtk-text-view-set-buffer"></a><h3>gtk_text_view_set_buffer ()</h3>
362
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
363
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
364
+ <p>
365
+ Sets <em class="parameter"><code>buffer</code></em> as the buffer being displayed by <em class="parameter"><code>text_view</code></em>. The previous
366
+ buffer displayed by the text view is unreferenced, and a reference is
367
+ added to <em class="parameter"><code>buffer</code></em>. If you owned a reference to <em class="parameter"><code>buffer</code></em> before passing it
368
+ to this function, you must remove that reference yourself; <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
369
+ will not "adopt" it.
370
+ </p>
371
+ <div class="variablelist"><table border="0">
372
+ <col align="left" valign="top">
373
+ <tbody>
374
+ <tr>
375
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
376
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
377
+ </td>
378
+ </tr>
379
+ <tr>
380
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
381
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
382
+ </td>
383
+ </tr>
384
+ </tbody>
385
+ </table></div>
386
+ </div>
387
+ <hr>
388
+ <div class="refsect2">
389
+ <a name="gtk-text-view-get-buffer"></a><h3>gtk_text_view_get_buffer ()</h3>
390
+ <pre class="programlisting"><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="returnvalue">GtkTextBuffer</span></a> * 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>
391
+ <p>
392
+ Returns the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> being displayed by this text view.
393
+ The reference count on the buffer is not incremented; the caller
394
+ of this function won't own a new reference.
395
+ </p>
396
+ <div class="variablelist"><table border="0">
397
+ <col align="left" valign="top">
398
+ <tbody>
399
+ <tr>
400
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
401
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
402
+ </td>
403
+ </tr>
404
+ <tr>
405
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
406
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
407
+ </td>
408
+ </tr>
409
+ </tbody>
410
+ </table></div>
411
+ </div>
412
+ <hr>
413
+ <div class="refsect2">
414
+ <a name="gtk-text-view-scroll-to-mark"></a><h3>gtk_text_view_scroll_to_mark ()</h3>
415
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
416
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
417
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> within_margin</code></em>,
418
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> use_align</code></em>,
419
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> xalign</code></em>,
420
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> yalign</code></em>);</pre>
421
+ <p>
422
+ Scrolls <em class="parameter"><code>text_view</code></em> so that <em class="parameter"><code>mark</code></em> is on the screen in the position
423
+ indicated by <em class="parameter"><code>xalign</code></em> and <em class="parameter"><code>yalign</code></em>. An alignment of 0.0 indicates
424
+ left or top, 1.0 indicates right or bottom, 0.5 means center.
425
+ If <em class="parameter"><code>use_align</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, the text scrolls the minimal distance to
426
+ get the mark onscreen, possibly not scrolling at all. The effective
427
+ screen for purposes of this function is reduced by a margin of size
428
+ <em class="parameter"><code>within_margin</code></em>.
429
+ </p>
430
+ <div class="variablelist"><table border="0">
431
+ <col align="left" valign="top">
432
+ <tbody>
433
+ <tr>
434
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
435
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
436
+ </td>
437
+ </tr>
438
+ <tr>
439
+ <td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
440
+ <td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>
441
+ </td>
442
+ </tr>
443
+ <tr>
444
+ <td><p><span class="term"><em class="parameter"><code>within_margin</code></em> :</span></p></td>
445
+ <td>margin as a [0.0,0.5) fraction of screen size</td>
446
+ </tr>
447
+ <tr>
448
+ <td><p><span class="term"><em class="parameter"><code>use_align</code></em> :</span></p></td>
449
+ <td>whether to use alignment arguments (if <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, just
450
+ get the mark onscreen)</td>
451
+ </tr>
452
+ <tr>
453
+ <td><p><span class="term"><em class="parameter"><code>xalign</code></em> :</span></p></td>
454
+ <td>horizontal alignment of mark within visible area</td>
455
+ </tr>
456
+ <tr>
457
+ <td><p><span class="term"><em class="parameter"><code>yalign</code></em> :</span></p></td>
458
+ <td>vertical alignment of mark within visible area</td>
459
+ </tr>
460
+ </tbody>
461
+ </table></div>
462
+ </div>
463
+ <hr>
464
+ <div class="refsect2">
465
+ <a name="gtk-text-view-scroll-to-iter"></a><h3>gtk_text_view_scroll_to_iter ()</h3>
466
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
467
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
468
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> within_margin</code></em>,
469
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> use_align</code></em>,
470
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> xalign</code></em>,
471
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> yalign</code></em>);</pre>
472
+ <p>
473
+ Scrolls <em class="parameter"><code>text_view</code></em> so that <em class="parameter"><code>iter</code></em> is on the screen in the position
474
+ indicated by <em class="parameter"><code>xalign</code></em> and <em class="parameter"><code>yalign</code></em>. An alignment of 0.0 indicates
475
+ left or top, 1.0 indicates right or bottom, 0.5 means center.
476
+ If <em class="parameter"><code>use_align</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, the text scrolls the minimal distance to
477
+ get the mark onscreen, possibly not scrolling at all. The effective
478
+ screen for purposes of this function is reduced by a margin of size
479
+ <em class="parameter"><code>within_margin</code></em>.
480
+ </p>
481
+ <p>
482
+ Note that this function uses the currently-computed height of the
483
+ lines in the text buffer. Line heights are computed in an idle
484
+ handler; so this function may not have the desired effect if it's
485
+ called before the height computations. To avoid oddness, consider
486
+ 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
487
+ scrolled to after line validation.
488
+ </p>
489
+ <div class="variablelist"><table border="0">
490
+ <col align="left" valign="top">
491
+ <tbody>
492
+ <tr>
493
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
494
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
495
+ </td>
496
+ </tr>
497
+ <tr>
498
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
499
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
500
+ </td>
501
+ </tr>
502
+ <tr>
503
+ <td><p><span class="term"><em class="parameter"><code>within_margin</code></em> :</span></p></td>
504
+ <td>margin as a [0.0,0.5) fraction of screen size</td>
505
+ </tr>
506
+ <tr>
507
+ <td><p><span class="term"><em class="parameter"><code>use_align</code></em> :</span></p></td>
508
+ <td>whether to use alignment arguments (if <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>,
509
+ just get the mark onscreen)</td>
510
+ </tr>
511
+ <tr>
512
+ <td><p><span class="term"><em class="parameter"><code>xalign</code></em> :</span></p></td>
513
+ <td>horizontal alignment of mark within visible area</td>
514
+ </tr>
515
+ <tr>
516
+ <td><p><span class="term"><em class="parameter"><code>yalign</code></em> :</span></p></td>
517
+ <td>vertical alignment of mark within visible area</td>
518
+ </tr>
519
+ <tr>
520
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
521
+ <td>
522
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if scrolling occurred</td>
523
+ </tr>
524
+ </tbody>
525
+ </table></div>
526
+ </div>
527
+ <hr>
528
+ <div class="refsect2">
529
+ <a name="gtk-text-view-scroll-mark-onscreen"></a><h3>gtk_text_view_scroll_mark_onscreen ()</h3>
530
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
531
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
532
+ <p>
533
+ Scrolls <em class="parameter"><code>text_view</code></em> the minimum distance such that <em class="parameter"><code>mark</code></em> is contained
534
+ within the visible area of the widget.
535
+ </p>
536
+ <div class="variablelist"><table border="0">
537
+ <col align="left" valign="top">
538
+ <tbody>
539
+ <tr>
540
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
541
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
542
+ </td>
543
+ </tr>
544
+ <tr>
545
+ <td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
546
+ <td>a mark in the buffer for <em class="parameter"><code>text_view</code></em>
547
+ </td>
548
+ </tr>
549
+ </tbody>
550
+ </table></div>
551
+ </div>
552
+ <hr>
553
+ <div class="refsect2">
554
+ <a name="gtk-text-view-move-mark-onscreen"></a><h3>gtk_text_view_move_mark_onscreen ()</h3>
555
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
556
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
557
+ <p>
558
+ Moves a mark within the buffer so that it's
559
+ located within the currently-visible text area.
560
+ </p>
561
+ <div class="variablelist"><table border="0">
562
+ <col align="left" valign="top">
563
+ <tbody>
564
+ <tr>
565
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
566
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
567
+ </td>
568
+ </tr>
569
+ <tr>
570
+ <td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
571
+ <td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>
572
+ </td>
573
+ </tr>
574
+ <tr>
575
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
576
+ <td>
577
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the mark moved (wasn't already onscreen)</td>
578
+ </tr>
579
+ </tbody>
580
+ </table></div>
581
+ </div>
582
+ <hr>
583
+ <div class="refsect2">
584
+ <a name="gtk-text-view-place-cursor-onscreen"></a><h3>gtk_text_view_place_cursor_onscreen ()</h3>
585
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>
586
+ <p>
587
+ Moves the cursor to the currently visible region of the
588
+ buffer, it it isn't there already.
589
+ </p>
590
+ <div class="variablelist"><table border="0">
591
+ <col align="left" valign="top">
592
+ <tbody>
593
+ <tr>
594
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
595
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
596
+ </td>
597
+ </tr>
598
+ <tr>
599
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
600
+ <td>
601
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the cursor had to be moved.</td>
602
+ </tr>
603
+ </tbody>
604
+ </table></div>
605
+ </div>
606
+ <hr>
607
+ <div class="refsect2">
608
+ <a name="gtk-text-view-get-visible-rect"></a><h3>gtk_text_view_get_visible_rect ()</h3>
609
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
610
+ <em class="parameter"><code><a href="../gdk/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *visible_rect</code></em>);</pre>
611
+ <p>
612
+ Fills <em class="parameter"><code>visible_rect</code></em> with the currently-visible
613
+ region of the buffer, in buffer coordinates. Convert to window coordinates
614
+ 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>.
615
+ </p>
616
+ <div class="variablelist"><table border="0">
617
+ <col align="left" valign="top">
618
+ <tbody>
619
+ <tr>
620
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
621
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
622
+ </td>
623
+ </tr>
624
+ <tr>
625
+ <td><p><span class="term"><em class="parameter"><code>visible_rect</code></em> :</span></p></td>
626
+ <td>rectangle to fill. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
627
+ </td>
628
+ </tr>
629
+ </tbody>
630
+ </table></div>
631
+ </div>
632
+ <hr>
633
+ <div class="refsect2">
634
+ <a name="gtk-text-view-get-iter-location"></a><h3>gtk_text_view_get_iter_location ()</h3>
635
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
636
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
637
+ <em class="parameter"><code><a href="../gdk/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *location</code></em>);</pre>
638
+ <p>
639
+ Gets a rectangle which roughly contains the character at <em class="parameter"><code>iter</code></em>.
640
+ The rectangle position is in buffer coordinates; use
641
+ <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
642
+ coordinates to coordinates for one of the windows in the text view.
643
+ </p>
644
+ <div class="variablelist"><table border="0">
645
+ <col align="left" valign="top">
646
+ <tbody>
647
+ <tr>
648
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
649
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
650
+ </td>
651
+ </tr>
652
+ <tr>
653
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
654
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
655
+ </td>
656
+ </tr>
657
+ <tr>
658
+ <td><p><span class="term"><em class="parameter"><code>location</code></em> :</span></p></td>
659
+ <td>bounds of the character at <em class="parameter"><code>iter</code></em>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
660
+ </td>
661
+ </tr>
662
+ </tbody>
663
+ </table></div>
664
+ </div>
665
+ <hr>
666
+ <div class="refsect2">
667
+ <a name="gtk-text-view-get-line-at-y"></a><h3>gtk_text_view_get_line_at_y ()</h3>
668
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
669
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *target_iter</code></em>,
670
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
671
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *line_top</code></em>);</pre>
672
+ <p>
673
+ Gets the <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> at the start of the line containing
674
+ the coordinate <em class="parameter"><code>y</code></em>. <em class="parameter"><code>y</code></em> is in buffer coordinates, convert from
675
+ 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>.
676
+ If non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, <em class="parameter"><code>line_top</code></em> will be filled with the coordinate of the top
677
+ edge of the line.
678
+ </p>
679
+ <div class="variablelist"><table border="0">
680
+ <col align="left" valign="top">
681
+ <tbody>
682
+ <tr>
683
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
684
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
685
+ </td>
686
+ </tr>
687
+ <tr>
688
+ <td><p><span class="term"><em class="parameter"><code>target_iter</code></em> :</span></p></td>
689
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
690
+ </td>
691
+ </tr>
692
+ <tr>
693
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
694
+ <td>a y coordinate</td>
695
+ </tr>
696
+ <tr>
697
+ <td><p><span class="term"><em class="parameter"><code>line_top</code></em> :</span></p></td>
698
+ <td>return location for top coordinate of the line. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
699
+ </td>
700
+ </tr>
701
+ </tbody>
702
+ </table></div>
703
+ </div>
704
+ <hr>
705
+ <div class="refsect2">
706
+ <a name="gtk-text-view-get-line-yrange"></a><h3>gtk_text_view_get_line_yrange ()</h3>
707
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
708
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
709
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>,
710
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *height</code></em>);</pre>
711
+ <p>
712
+ Gets the y coordinate of the top of the line containing <em class="parameter"><code>iter</code></em>,
713
+ and the height of the line. The coordinate is a buffer coordinate;
714
+ 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>.
715
+ </p>
716
+ <div class="variablelist"><table border="0">
717
+ <col align="left" valign="top">
718
+ <tbody>
719
+ <tr>
720
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
721
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
722
+ </td>
723
+ </tr>
724
+ <tr>
725
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
726
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
727
+ </td>
728
+ </tr>
729
+ <tr>
730
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
731
+ <td>return location for a y coordinate. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
732
+ </td>
733
+ </tr>
734
+ <tr>
735
+ <td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
736
+ <td>return location for a height. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
737
+ </td>
738
+ </tr>
739
+ </tbody>
740
+ </table></div>
741
+ </div>
742
+ <hr>
743
+ <div class="refsect2">
744
+ <a name="gtk-text-view-get-iter-at-location"></a><h3>gtk_text_view_get_iter_at_location ()</h3>
745
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
746
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
747
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
748
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);</pre>
749
+ <p>
750
+ Retrieves the iterator at buffer coordinates <em class="parameter"><code>x</code></em> and <em class="parameter"><code>y</code></em>. Buffer
751
+ coordinates are coordinates for the entire buffer, not just the
752
+ currently-displayed portion. If you have coordinates from an
753
+ event, you have to convert those to buffer coordinates with
754
+ <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>.
755
+ </p>
756
+ <div class="variablelist"><table border="0">
757
+ <col align="left" valign="top">
758
+ <tbody>
759
+ <tr>
760
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
761
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
762
+ </td>
763
+ </tr>
764
+ <tr>
765
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
766
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
767
+ </td>
768
+ </tr>
769
+ <tr>
770
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
771
+ <td>x position, in buffer coordinates</td>
772
+ </tr>
773
+ <tr>
774
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
775
+ <td>y position, in buffer coordinates</td>
776
+ </tr>
777
+ </tbody>
778
+ </table></div>
779
+ </div>
780
+ <hr>
781
+ <div class="refsect2">
782
+ <a name="gtk-text-view-get-iter-at-position"></a><h3>gtk_text_view_get_iter_at_position ()</h3>
783
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
784
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
785
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *trailing</code></em>,
786
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
787
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);</pre>
788
+ <p>
789
+ Retrieves the iterator pointing to the character at buffer
790
+ coordinates <em class="parameter"><code>x</code></em> and <em class="parameter"><code>y</code></em>. Buffer coordinates are coordinates for
791
+ the entire buffer, not just the currently-displayed portion.
792
+ If you have coordinates from an event, you have to convert
793
+ those to buffer coordinates with
794
+ <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>.
795
+ </p>
796
+ <p>
797
+ 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>,
798
+ which returns cursor locations, i.e. positions <span class="emphasis"><em>between</em></span>
799
+ characters.
800
+ </p>
801
+ <div class="variablelist"><table border="0">
802
+ <col align="left" valign="top">
803
+ <tbody>
804
+ <tr>
805
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
806
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
807
+ </td>
808
+ </tr>
809
+ <tr>
810
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
811
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
812
+ </td>
813
+ </tr>
814
+ <tr>
815
+ <td><p><span class="term"><em class="parameter"><code>trailing</code></em> :</span></p></td>
816
+ <td>if non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, location to store an integer indicating where
817
+ in the grapheme the user clicked. It will either be
818
+ zero, or the number of characters in the grapheme.
819
+ 0 represents the trailing edge of the grapheme. <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>
820
+ </td>
821
+ </tr>
822
+ <tr>
823
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
824
+ <td>x position, in buffer coordinates</td>
825
+ </tr>
826
+ <tr>
827
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
828
+ <td>y position, in buffer coordinates</td>
829
+ </tr>
830
+ </tbody>
831
+ </table></div>
832
+ <p class="since">Since 2.6</p>
833
+ </div>
834
+ <hr>
835
+ <div class="refsect2">
836
+ <a name="gtk-text-view-buffer-to-window-coords"></a><h3>gtk_text_view_buffer_to_window_coords ()</h3>
837
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_buffer_to_window_coords
838
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
839
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> win</code></em>,
840
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> buffer_x</code></em>,
841
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> buffer_y</code></em>,
842
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *window_x</code></em>,
843
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *window_y</code></em>);</pre>
844
+ <p>
845
+ Converts coordinate (<em class="parameter"><code>buffer_x</code></em>, <em class="parameter"><code>buffer_y</code></em>) to coordinates for the window
846
+ <em class="parameter"><code>win</code></em>, and stores the result in (<em class="parameter"><code>window_x</code></em>, <em class="parameter"><code>window_y</code></em>).
847
+ </p>
848
+ <p>
849
+ Note that you can't convert coordinates for a nonexisting window (see
850
+ <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>).
851
+ </p>
852
+ <div class="variablelist"><table border="0">
853
+ <col align="left" valign="top">
854
+ <tbody>
855
+ <tr>
856
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
857
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
858
+ </td>
859
+ </tr>
860
+ <tr>
861
+ <td><p><span class="term"><em class="parameter"><code>win</code></em> :</span></p></td>
862
+ <td>a <a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> except <span class="type">GTK_TEXT_WINDOW_PRIVATE</span>
863
+ </td>
864
+ </tr>
865
+ <tr>
866
+ <td><p><span class="term"><em class="parameter"><code>buffer_x</code></em> :</span></p></td>
867
+ <td>buffer x coordinate</td>
868
+ </tr>
869
+ <tr>
870
+ <td><p><span class="term"><em class="parameter"><code>buffer_y</code></em> :</span></p></td>
871
+ <td>buffer y coordinate</td>
872
+ </tr>
873
+ <tr>
874
+ <td><p><span class="term"><em class="parameter"><code>window_x</code></em> :</span></p></td>
875
+ <td>window x coordinate return location or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <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>
876
+ </td>
877
+ </tr>
878
+ <tr>
879
+ <td><p><span class="term"><em class="parameter"><code>window_y</code></em> :</span></p></td>
880
+ <td>window y coordinate return location or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <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>
881
+ </td>
882
+ </tr>
883
+ </tbody>
884
+ </table></div>
885
+ </div>
886
+ <hr>
887
+ <div class="refsect2">
888
+ <a name="gtk-text-view-window-to-buffer-coords"></a><h3>gtk_text_view_window_to_buffer_coords ()</h3>
889
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_window_to_buffer_coords
890
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
891
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> win</code></em>,
892
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> window_x</code></em>,
893
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> window_y</code></em>,
894
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *buffer_x</code></em>,
895
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *buffer_y</code></em>);</pre>
896
+ <p>
897
+ Converts coordinates on the window identified by <em class="parameter"><code>win</code></em> to buffer
898
+ coordinates, storing the result in (<em class="parameter"><code>buffer_x</code></em>,<em class="parameter"><code>buffer_y</code></em>).
899
+ </p>
900
+ <p>
901
+ Note that you can't convert coordinates for a nonexisting window (see
902
+ <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>).
903
+ </p>
904
+ <div class="variablelist"><table border="0">
905
+ <col align="left" valign="top">
906
+ <tbody>
907
+ <tr>
908
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
909
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
910
+ </td>
911
+ </tr>
912
+ <tr>
913
+ <td><p><span class="term"><em class="parameter"><code>win</code></em> :</span></p></td>
914
+ <td>a <a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> except <span class="type">GTK_TEXT_WINDOW_PRIVATE</span>
915
+ </td>
916
+ </tr>
917
+ <tr>
918
+ <td><p><span class="term"><em class="parameter"><code>window_x</code></em> :</span></p></td>
919
+ <td>window x coordinate</td>
920
+ </tr>
921
+ <tr>
922
+ <td><p><span class="term"><em class="parameter"><code>window_y</code></em> :</span></p></td>
923
+ <td>window y coordinate</td>
924
+ </tr>
925
+ <tr>
926
+ <td><p><span class="term"><em class="parameter"><code>buffer_x</code></em> :</span></p></td>
927
+ <td>buffer x coordinate return location or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <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>
928
+ </td>
929
+ </tr>
930
+ <tr>
931
+ <td><p><span class="term"><em class="parameter"><code>buffer_y</code></em> :</span></p></td>
932
+ <td>buffer y coordinate return location or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <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>
933
+ </td>
934
+ </tr>
935
+ </tbody>
936
+ </table></div>
937
+ </div>
938
+ <hr>
939
+ <div class="refsect2">
940
+ <a name="gtk-text-view-get-window"></a><h3>gtk_text_view_get_window ()</h3>
941
+ <pre class="programlisting"><a href="../gdk/gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> * 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>,
942
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> win</code></em>);</pre>
943
+ <p>
944
+ Retrieves the <a href="../gdk/gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> corresponding to an area of the text view;
945
+ possible windows include the overall widget window, child windows
946
+ on the left, right, top, bottom, and the window that displays the
947
+ text buffer. Windows are <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> and nonexistent if their width or
948
+ height is 0, and are nonexistent before the widget has been
949
+ realized.
950
+ </p>
951
+ <div class="variablelist"><table border="0">
952
+ <col align="left" valign="top">
953
+ <tbody>
954
+ <tr>
955
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
956
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
957
+ </td>
958
+ </tr>
959
+ <tr>
960
+ <td><p><span class="term"><em class="parameter"><code>win</code></em> :</span></p></td>
961
+ <td>window to get</td>
962
+ </tr>
963
+ <tr>
964
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
965
+ <td>a <a href="../gdk/gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
966
+ </td>
967
+ </tr>
968
+ </tbody>
969
+ </table></div>
970
+ </div>
971
+ <hr>
972
+ <div class="refsect2">
973
+ <a name="gtk-text-view-get-window-type"></a><h3>gtk_text_view_get_window_type ()</h3>
974
+ <pre class="programlisting"><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="returnvalue">GtkTextWindowType</span></a> 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>,
975
+ <em class="parameter"><code><a href="../gdk/gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);</pre>
976
+ <p>
977
+ Usually used to find out which window an event corresponds to.
978
+ If you connect to an event signal on <em class="parameter"><code>text_view</code></em>, this function
979
+ should be called on <code class="literal">event-&gt;window</code> to
980
+ see which window it was.
981
+ </p>
982
+ <div class="variablelist"><table border="0">
983
+ <col align="left" valign="top">
984
+ <tbody>
985
+ <tr>
986
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
987
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
988
+ </td>
989
+ </tr>
990
+ <tr>
991
+ <td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
992
+ <td>a window type</td>
993
+ </tr>
994
+ <tr>
995
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
996
+ <td>the window type.</td>
997
+ </tr>
998
+ </tbody>
999
+ </table></div>
1000
+ </div>
1001
+ <hr>
1002
+ <div class="refsect2">
1003
+ <a name="gtk-text-view-set-border-window-size"></a><h3>gtk_text_view_set_border_window_size ()</h3>
1004
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_border_window_size
1005
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1006
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> type</code></em>,
1007
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>);</pre>
1008
+ <p>
1009
+ Sets the width of <code class="literal">GTK_TEXT_WINDOW_LEFT</code> or <code class="literal">GTK_TEXT_WINDOW_RIGHT</code>,
1010
+ or the height of <code class="literal">GTK_TEXT_WINDOW_TOP</code> or <code class="literal">GTK_TEXT_WINDOW_BOTTOM</code>.
1011
+ Automatically destroys the corresponding window if the size is set
1012
+ to 0, and creates the window if the size is set to non-zero. This
1013
+ function can only be used for the "border windows," it doesn't work
1014
+ with <span class="type">GTK_TEXT_WINDOW_WIDGET</span>, <span class="type">GTK_TEXT_WINDOW_TEXT</span>, or
1015
+ <span class="type">GTK_TEXT_WINDOW_PRIVATE</span>.
1016
+ </p>
1017
+ <div class="variablelist"><table border="0">
1018
+ <col align="left" valign="top">
1019
+ <tbody>
1020
+ <tr>
1021
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1022
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1023
+ </td>
1024
+ </tr>
1025
+ <tr>
1026
+ <td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
1027
+ <td>window to affect</td>
1028
+ </tr>
1029
+ <tr>
1030
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
1031
+ <td>width or height of the window</td>
1032
+ </tr>
1033
+ </tbody>
1034
+ </table></div>
1035
+ </div>
1036
+ <hr>
1037
+ <div class="refsect2">
1038
+ <a name="gtk-text-view-get-border-window-size"></a><h3>gtk_text_view_get_border_window_size ()</h3>
1039
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_text_view_get_border_window_size
1040
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1041
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> type</code></em>);</pre>
1042
+ <p>
1043
+ Gets the width of the specified border window. See
1044
+ <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>.
1045
+ </p>
1046
+ <div class="variablelist"><table border="0">
1047
+ <col align="left" valign="top">
1048
+ <tbody>
1049
+ <tr>
1050
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1051
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1052
+ </td>
1053
+ </tr>
1054
+ <tr>
1055
+ <td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
1056
+ <td>window to return size from</td>
1057
+ </tr>
1058
+ <tr>
1059
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1060
+ <td>width of window</td>
1061
+ </tr>
1062
+ </tbody>
1063
+ </table></div>
1064
+ </div>
1065
+ <hr>
1066
+ <div class="refsect2">
1067
+ <a name="gtk-text-view-forward-display-line"></a><h3>gtk_text_view_forward_display_line ()</h3>
1068
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
1069
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1070
+ <p>
1071
+ Moves the given <em class="parameter"><code>iter</code></em> forward by one display (wrapped) line.
1072
+ A display line is different from a paragraph. Paragraphs are
1073
+ separated by newlines or other paragraph separator characters.
1074
+ Display lines are created by line-wrapping a paragraph. If
1075
+ wrapping is turned off, display lines and paragraphs will be the
1076
+ same. Display lines are divided differently for each view, since
1077
+ they depend on the view's width; paragraphs are the same in all
1078
+ views, since they depend on the contents of the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
1079
+ </p>
1080
+ <div class="variablelist"><table border="0">
1081
+ <col align="left" valign="top">
1082
+ <tbody>
1083
+ <tr>
1084
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1085
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1086
+ </td>
1087
+ </tr>
1088
+ <tr>
1089
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1090
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1091
+ </td>
1092
+ </tr>
1093
+ <tr>
1094
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1095
+ <td>
1096
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>iter</code></em> was moved and is not on the end iterator</td>
1097
+ </tr>
1098
+ </tbody>
1099
+ </table></div>
1100
+ </div>
1101
+ <hr>
1102
+ <div class="refsect2">
1103
+ <a name="gtk-text-view-backward-display-line"></a><h3>gtk_text_view_backward_display_line ()</h3>
1104
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
1105
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1106
+ <p>
1107
+ Moves the given <em class="parameter"><code>iter</code></em> backward by one display (wrapped) line.
1108
+ A display line is different from a paragraph. Paragraphs are
1109
+ separated by newlines or other paragraph separator characters.
1110
+ Display lines are created by line-wrapping a paragraph. If
1111
+ wrapping is turned off, display lines and paragraphs will be the
1112
+ same. Display lines are divided differently for each view, since
1113
+ they depend on the view's width; paragraphs are the same in all
1114
+ views, since they depend on the contents of the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
1115
+ </p>
1116
+ <div class="variablelist"><table border="0">
1117
+ <col align="left" valign="top">
1118
+ <tbody>
1119
+ <tr>
1120
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1121
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1122
+ </td>
1123
+ </tr>
1124
+ <tr>
1125
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1126
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1127
+ </td>
1128
+ </tr>
1129
+ <tr>
1130
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1131
+ <td>
1132
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>iter</code></em> was moved and is not on the end iterator</td>
1133
+ </tr>
1134
+ </tbody>
1135
+ </table></div>
1136
+ </div>
1137
+ <hr>
1138
+ <div class="refsect2">
1139
+ <a name="gtk-text-view-forward-display-line-end"></a><h3>gtk_text_view_forward_display_line_end ()</h3>
1140
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_text_view_forward_display_line_end
1141
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1142
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1143
+ <p>
1144
+ Moves the given <em class="parameter"><code>iter</code></em> forward to the next display line end.
1145
+ A display line is different from a paragraph. Paragraphs are
1146
+ separated by newlines or other paragraph separator characters.
1147
+ Display lines are created by line-wrapping a paragraph. If
1148
+ wrapping is turned off, display lines and paragraphs will be the
1149
+ same. Display lines are divided differently for each view, since
1150
+ they depend on the view's width; paragraphs are the same in all
1151
+ views, since they depend on the contents of the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
1152
+ </p>
1153
+ <div class="variablelist"><table border="0">
1154
+ <col align="left" valign="top">
1155
+ <tbody>
1156
+ <tr>
1157
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1158
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1159
+ </td>
1160
+ </tr>
1161
+ <tr>
1162
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1163
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1164
+ </td>
1165
+ </tr>
1166
+ <tr>
1167
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1168
+ <td>
1169
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>iter</code></em> was moved and is not on the end iterator</td>
1170
+ </tr>
1171
+ </tbody>
1172
+ </table></div>
1173
+ </div>
1174
+ <hr>
1175
+ <div class="refsect2">
1176
+ <a name="gtk-text-view-backward-display-line-start"></a><h3>gtk_text_view_backward_display_line_start ()</h3>
1177
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_text_view_backward_display_line_start
1178
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1179
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1180
+ <p>
1181
+ Moves the given <em class="parameter"><code>iter</code></em> backward to the next display line start.
1182
+ A display line is different from a paragraph. Paragraphs are
1183
+ separated by newlines or other paragraph separator characters.
1184
+ Display lines are created by line-wrapping a paragraph. If
1185
+ wrapping is turned off, display lines and paragraphs will be the
1186
+ same. Display lines are divided differently for each view, since
1187
+ they depend on the view's width; paragraphs are the same in all
1188
+ views, since they depend on the contents of the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
1189
+ </p>
1190
+ <div class="variablelist"><table border="0">
1191
+ <col align="left" valign="top">
1192
+ <tbody>
1193
+ <tr>
1194
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1195
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1196
+ </td>
1197
+ </tr>
1198
+ <tr>
1199
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1200
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1201
+ </td>
1202
+ </tr>
1203
+ <tr>
1204
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1205
+ <td>
1206
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>iter</code></em> was moved and is not on the end iterator</td>
1207
+ </tr>
1208
+ </tbody>
1209
+ </table></div>
1210
+ </div>
1211
+ <hr>
1212
+ <div class="refsect2">
1213
+ <a name="gtk-text-view-starts-display-line"></a><h3>gtk_text_view_starts_display_line ()</h3>
1214
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
1215
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1216
+ <p>
1217
+ Determines whether <em class="parameter"><code>iter</code></em> is at the start of a display line.
1218
+ 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
1219
+ display lines vs. paragraphs.
1220
+ </p>
1221
+ <div class="variablelist"><table border="0">
1222
+ <col align="left" valign="top">
1223
+ <tbody>
1224
+ <tr>
1225
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1226
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1227
+ </td>
1228
+ </tr>
1229
+ <tr>
1230
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1231
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1232
+ </td>
1233
+ </tr>
1234
+ <tr>
1235
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1236
+ <td>
1237
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>iter</code></em> begins a wrapped line</td>
1238
+ </tr>
1239
+ </tbody>
1240
+ </table></div>
1241
+ </div>
1242
+ <hr>
1243
+ <div class="refsect2">
1244
+ <a name="gtk-text-view-move-visually"></a><h3>gtk_text_view_move_visually ()</h3>
1245
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
1246
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1247
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count</code></em>);</pre>
1248
+ <p>
1249
+ Move the iterator a given number of characters visually, treating
1250
+ it as the strong cursor position. If <em class="parameter"><code>count</code></em> is positive, then the
1251
+ new strong cursor position will be <em class="parameter"><code>count</code></em> positions to the right of
1252
+ the old cursor position. If <em class="parameter"><code>count</code></em> is negative then the new strong
1253
+ cursor position will be <em class="parameter"><code>count</code></em> positions to the left of the old
1254
+ cursor position.
1255
+ </p>
1256
+ <p>
1257
+ In the presence of bi-directional text, the correspondence
1258
+ between logical and visual order will depend on the direction
1259
+ of the current run, and there may be jumps when the cursor
1260
+ is moved off of the end of a run.
1261
+ </p>
1262
+ <div class="variablelist"><table border="0">
1263
+ <col align="left" valign="top">
1264
+ <tbody>
1265
+ <tr>
1266
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1267
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1268
+ </td>
1269
+ </tr>
1270
+ <tr>
1271
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1272
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1273
+ </td>
1274
+ </tr>
1275
+ <tr>
1276
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
1277
+ <td>number of characters to move (negative moves left,
1278
+ positive moves right)</td>
1279
+ </tr>
1280
+ <tr>
1281
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1282
+ <td>
1283
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>iter</code></em> moved and is not on the end iterator</td>
1284
+ </tr>
1285
+ </tbody>
1286
+ </table></div>
1287
+ </div>
1288
+ <hr>
1289
+ <div class="refsect2">
1290
+ <a name="gtk-text-view-add-child-at-anchor"></a><h3>gtk_text_view_add_child_at_anchor ()</h3>
1291
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
1292
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
1293
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);</pre>
1294
+ <p>
1295
+ Adds a child widget in the text buffer, at the given <em class="parameter"><code>anchor</code></em>.
1296
+ </p>
1297
+ <div class="variablelist"><table border="0">
1298
+ <col align="left" valign="top">
1299
+ <tbody>
1300
+ <tr>
1301
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1302
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1303
+ </td>
1304
+ </tr>
1305
+ <tr>
1306
+ <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
1307
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>
1308
+ </td>
1309
+ </tr>
1310
+ <tr>
1311
+ <td><p><span class="term"><em class="parameter"><code>anchor</code></em> :</span></p></td>
1312
+ <td>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>
1313
+ </td>
1314
+ </tr>
1315
+ </tbody>
1316
+ </table></div>
1317
+ </div>
1318
+ <hr>
1319
+ <div class="refsect2">
1320
+ <a name="GtkTextChildAnchor-struct"></a><h3>struct GtkTextChildAnchor</h3>
1321
+ <pre class="programlisting">struct GtkTextChildAnchor;</pre>
1322
+ <p>
1323
+ A <span class="structname">GtkTextChildAnchor</span> is a spot in the buffer
1324
+ where child widgets can be "anchored" (inserted inline, as if they were
1325
+ characters). The anchor can have multiple widgets anchored, to allow for
1326
+ multiple views.
1327
+ </p>
1328
+ </div>
1329
+ <hr>
1330
+ <div class="refsect2">
1331
+ <a name="gtk-text-child-anchor-new"></a><h3>gtk_text_child_anchor_new ()</h3>
1332
+ <pre class="programlisting"><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="returnvalue">GtkTextChildAnchor</span></a> * gtk_text_child_anchor_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1333
+ <p>
1334
+ Creates a new <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a>. Usually you would then insert
1335
+ 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>.
1336
+ To perform the creation and insertion in one step, use the
1337
+ 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>.
1338
+ </p>
1339
+ <div class="variablelist"><table border="0">
1340
+ <col align="left" valign="top">
1341
+ <tbody><tr>
1342
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1343
+ <td>a new <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a>
1344
+ </td>
1345
+ </tr></tbody>
1346
+ </table></div>
1347
+ </div>
1348
+ <hr>
1349
+ <div class="refsect2">
1350
+ <a name="gtk-text-child-anchor-get-widgets"></a><h3>gtk_text_child_anchor_get_widgets ()</h3>
1351
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * 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>
1352
+ <p>
1353
+ Gets a list of all widgets anchored at this child anchor.
1354
+ The returned list should be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>.
1355
+ </p>
1356
+ <div class="variablelist"><table border="0">
1357
+ <col align="left" valign="top">
1358
+ <tbody>
1359
+ <tr>
1360
+ <td><p><span class="term"><em class="parameter"><code>anchor</code></em> :</span></p></td>
1361
+ <td>a <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a>
1362
+ </td>
1363
+ </tr>
1364
+ <tr>
1365
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1366
+ <td>list of widgets anchored at <em class="parameter"><code>anchor</code></em>. <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>
1367
+ </td>
1368
+ </tr>
1369
+ </tbody>
1370
+ </table></div>
1371
+ </div>
1372
+ <hr>
1373
+ <div class="refsect2">
1374
+ <a name="gtk-text-child-anchor-get-deleted"></a><h3>gtk_text_child_anchor_get_deleted ()</h3>
1375
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>
1376
+ <p>
1377
+ Determines whether a child anchor has been deleted from
1378
+ the buffer. Keep in mind that the child anchor will be
1379
+ unreferenced when removed from the buffer, so you need to
1380
+ hold your own reference (with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-ref"><code class="function">g_object_ref()</code></a>) if you plan
1381
+ to use this function — otherwise all deleted child anchors
1382
+ will also be finalized.
1383
+ </p>
1384
+ <div class="variablelist"><table border="0">
1385
+ <col align="left" valign="top">
1386
+ <tbody>
1387
+ <tr>
1388
+ <td><p><span class="term"><em class="parameter"><code>anchor</code></em> :</span></p></td>
1389
+ <td>a <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a>
1390
+ </td>
1391
+ </tr>
1392
+ <tr>
1393
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1394
+ <td>
1395
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the child anchor has been deleted from its buffer</td>
1396
+ </tr>
1397
+ </tbody>
1398
+ </table></div>
1399
+ </div>
1400
+ <hr>
1401
+ <div class="refsect2">
1402
+ <a name="gtk-text-view-add-child-in-window"></a><h3>gtk_text_view_add_child_in_window ()</h3>
1403
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
1404
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
1405
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> which_window</code></em>,
1406
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> xpos</code></em>,
1407
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> ypos</code></em>);</pre>
1408
+ <p>
1409
+ Adds a child at fixed coordinates in one of the text widget's
1410
+ windows. The window must have nonzero size (see
1411
+ <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
1412
+ coordinates are given relative to the <a href="../gdk/gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> in question, and
1413
+ that these coordinates have no sane relationship to scrolling. When
1414
+ placing a child in <span class="type">GTK_TEXT_WINDOW_WIDGET</span>, scrolling is
1415
+ irrelevant, the child floats above all scrollable areas. But when
1416
+ placing a child in one of the scrollable windows (border windows or
1417
+ text window), you'll need to compute the child's correct position
1418
+ in buffer coordinates any time scrolling occurs or buffer changes
1419
+ 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
1420
+ child's position. Unfortunately there's no good way to detect that
1421
+ scrolling has occurred, using the current API; a possible hack
1422
+ would be to update all child positions when the scroll adjustments
1423
+ change or the text buffer changes. See bug 64518 on
1424
+ bugzilla.gnome.org for status of fixing this issue.
1425
+ </p>
1426
+ <div class="variablelist"><table border="0">
1427
+ <col align="left" valign="top">
1428
+ <tbody>
1429
+ <tr>
1430
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1431
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1432
+ </td>
1433
+ </tr>
1434
+ <tr>
1435
+ <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
1436
+ <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>
1437
+ </td>
1438
+ </tr>
1439
+ <tr>
1440
+ <td><p><span class="term"><em class="parameter"><code>which_window</code></em> :</span></p></td>
1441
+ <td>which window the child should appear in</td>
1442
+ </tr>
1443
+ <tr>
1444
+ <td><p><span class="term"><em class="parameter"><code>xpos</code></em> :</span></p></td>
1445
+ <td>X position of child in window coordinates</td>
1446
+ </tr>
1447
+ <tr>
1448
+ <td><p><span class="term"><em class="parameter"><code>ypos</code></em> :</span></p></td>
1449
+ <td>Y position of child in window coordinates</td>
1450
+ </tr>
1451
+ </tbody>
1452
+ </table></div>
1453
+ </div>
1454
+ <hr>
1455
+ <div class="refsect2">
1456
+ <a name="gtk-text-view-move-child"></a><h3>gtk_text_view_move_child ()</h3>
1457
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
1458
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
1459
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> xpos</code></em>,
1460
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> ypos</code></em>);</pre>
1461
+ <p>
1462
+ 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>.
1463
+ </p>
1464
+ <div class="variablelist"><table border="0">
1465
+ <col align="left" valign="top">
1466
+ <tbody>
1467
+ <tr>
1468
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1469
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1470
+ </td>
1471
+ </tr>
1472
+ <tr>
1473
+ <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
1474
+ <td>child widget already added to the text view</td>
1475
+ </tr>
1476
+ <tr>
1477
+ <td><p><span class="term"><em class="parameter"><code>xpos</code></em> :</span></p></td>
1478
+ <td>new X position in window coordinates</td>
1479
+ </tr>
1480
+ <tr>
1481
+ <td><p><span class="term"><em class="parameter"><code>ypos</code></em> :</span></p></td>
1482
+ <td>new Y position in window coordinates</td>
1483
+ </tr>
1484
+ </tbody>
1485
+ </table></div>
1486
+ </div>
1487
+ <hr>
1488
+ <div class="refsect2">
1489
+ <a name="gtk-text-view-set-wrap-mode"></a><h3>gtk_text_view_set_wrap_mode ()</h3>
1490
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
1491
+ <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>
1492
+ <p>
1493
+ Sets the line wrapping for the view.
1494
+ </p>
1495
+ <div class="variablelist"><table border="0">
1496
+ <col align="left" valign="top">
1497
+ <tbody>
1498
+ <tr>
1499
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1500
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1501
+ </td>
1502
+ </tr>
1503
+ <tr>
1504
+ <td><p><span class="term"><em class="parameter"><code>wrap_mode</code></em> :</span></p></td>
1505
+ <td>a <a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="type">GtkWrapMode</span></a>
1506
+ </td>
1507
+ </tr>
1508
+ </tbody>
1509
+ </table></div>
1510
+ </div>
1511
+ <hr>
1512
+ <div class="refsect2">
1513
+ <a name="gtk-text-view-get-wrap-mode"></a><h3>gtk_text_view_get_wrap_mode ()</h3>
1514
+ <pre class="programlisting"><a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="returnvalue">GtkWrapMode</span></a> 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>
1515
+ <p>
1516
+ Gets the line wrapping for the view.
1517
+ </p>
1518
+ <div class="variablelist"><table border="0">
1519
+ <col align="left" valign="top">
1520
+ <tbody>
1521
+ <tr>
1522
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1523
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1524
+ </td>
1525
+ </tr>
1526
+ <tr>
1527
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1528
+ <td>the line wrap setting</td>
1529
+ </tr>
1530
+ </tbody>
1531
+ </table></div>
1532
+ </div>
1533
+ <hr>
1534
+ <div class="refsect2">
1535
+ <a name="gtk-text-view-set-editable"></a><h3>gtk_text_view_set_editable ()</h3>
1536
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
1537
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
1538
+ <p>
1539
+ Sets the default editability of the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>. You can override
1540
+ this default setting with tags in the buffer, using the "editable"
1541
+ attribute of tags.
1542
+ </p>
1543
+ <div class="variablelist"><table border="0">
1544
+ <col align="left" valign="top">
1545
+ <tbody>
1546
+ <tr>
1547
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1548
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1549
+ </td>
1550
+ </tr>
1551
+ <tr>
1552
+ <td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
1553
+ <td>whether it's editable</td>
1554
+ </tr>
1555
+ </tbody>
1556
+ </table></div>
1557
+ </div>
1558
+ <hr>
1559
+ <div class="refsect2">
1560
+ <a name="gtk-text-view-get-editable"></a><h3>gtk_text_view_get_editable ()</h3>
1561
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>
1562
+ <p>
1563
+ Returns the default editability of the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>. Tags in the
1564
+ buffer may override this setting for some ranges of text.
1565
+ </p>
1566
+ <div class="variablelist"><table border="0">
1567
+ <col align="left" valign="top">
1568
+ <tbody>
1569
+ <tr>
1570
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1571
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1572
+ </td>
1573
+ </tr>
1574
+ <tr>
1575
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1576
+ <td>whether text is editable by default</td>
1577
+ </tr>
1578
+ </tbody>
1579
+ </table></div>
1580
+ </div>
1581
+ <hr>
1582
+ <div class="refsect2">
1583
+ <a name="gtk-text-view-set-cursor-visible"></a><h3>gtk_text_view_set_cursor_visible ()</h3>
1584
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
1585
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
1586
+ <p>
1587
+ Toggles whether the insertion point is displayed. A buffer with no editable
1588
+ text probably shouldn't have a visible cursor, so you may want to turn
1589
+ the cursor off.
1590
+ </p>
1591
+ <div class="variablelist"><table border="0">
1592
+ <col align="left" valign="top">
1593
+ <tbody>
1594
+ <tr>
1595
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1596
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1597
+ </td>
1598
+ </tr>
1599
+ <tr>
1600
+ <td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
1601
+ <td>whether to show the insertion cursor</td>
1602
+ </tr>
1603
+ </tbody>
1604
+ </table></div>
1605
+ </div>
1606
+ <hr>
1607
+ <div class="refsect2">
1608
+ <a name="gtk-text-view-get-cursor-visible"></a><h3>gtk_text_view_get_cursor_visible ()</h3>
1609
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>
1610
+ <p>
1611
+ Find out whether the cursor is being displayed.
1612
+ </p>
1613
+ <div class="variablelist"><table border="0">
1614
+ <col align="left" valign="top">
1615
+ <tbody>
1616
+ <tr>
1617
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1618
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1619
+ </td>
1620
+ </tr>
1621
+ <tr>
1622
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1623
+ <td>whether the insertion mark is visible</td>
1624
+ </tr>
1625
+ </tbody>
1626
+ </table></div>
1627
+ </div>
1628
+ <hr>
1629
+ <div class="refsect2">
1630
+ <a name="gtk-text-view-set-overwrite"></a><h3>gtk_text_view_set_overwrite ()</h3>
1631
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
1632
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> overwrite</code></em>);</pre>
1633
+ <p>
1634
+ Changes the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> overwrite mode.
1635
+ </p>
1636
+ <div class="variablelist"><table border="0">
1637
+ <col align="left" valign="top">
1638
+ <tbody>
1639
+ <tr>
1640
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1641
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1642
+ </td>
1643
+ </tr>
1644
+ <tr>
1645
+ <td><p><span class="term"><em class="parameter"><code>overwrite</code></em> :</span></p></td>
1646
+ <td>
1647
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to turn on overwrite mode, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to turn it off</td>
1648
+ </tr>
1649
+ </tbody>
1650
+ </table></div>
1651
+ <p class="since">Since 2.4</p>
1652
+ </div>
1653
+ <hr>
1654
+ <div class="refsect2">
1655
+ <a name="gtk-text-view-get-overwrite"></a><h3>gtk_text_view_get_overwrite ()</h3>
1656
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>
1657
+ <p>
1658
+ Returns whether the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> is in overwrite mode or not.
1659
+ </p>
1660
+ <div class="variablelist"><table border="0">
1661
+ <col align="left" valign="top">
1662
+ <tbody>
1663
+ <tr>
1664
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1665
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1666
+ </td>
1667
+ </tr>
1668
+ <tr>
1669
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1670
+ <td>whether <em class="parameter"><code>text_view</code></em> is in overwrite mode or not.</td>
1671
+ </tr>
1672
+ </tbody>
1673
+ </table></div>
1674
+ <p class="since">Since 2.4</p>
1675
+ </div>
1676
+ <hr>
1677
+ <div class="refsect2">
1678
+ <a name="gtk-text-view-set-pixels-above-lines"></a><h3>gtk_text_view_set_pixels_above_lines ()</h3>
1679
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_pixels_above_lines
1680
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1681
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> pixels_above_lines</code></em>);</pre>
1682
+ <p>
1683
+ Sets the default number of blank pixels above paragraphs in <em class="parameter"><code>text_view</code></em>.
1684
+ Tags in the buffer for <em class="parameter"><code>text_view</code></em> may override the defaults.
1685
+ </p>
1686
+ <div class="variablelist"><table border="0">
1687
+ <col align="left" valign="top">
1688
+ <tbody>
1689
+ <tr>
1690
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1691
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1692
+ </td>
1693
+ </tr>
1694
+ <tr>
1695
+ <td><p><span class="term"><em class="parameter"><code>pixels_above_lines</code></em> :</span></p></td>
1696
+ <td>pixels above paragraphs</td>
1697
+ </tr>
1698
+ </tbody>
1699
+ </table></div>
1700
+ </div>
1701
+ <hr>
1702
+ <div class="refsect2">
1703
+ <a name="gtk-text-view-get-pixels-above-lines"></a><h3>gtk_text_view_get_pixels_above_lines ()</h3>
1704
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_text_view_get_pixels_above_lines
1705
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
1706
+ <p>
1707
+ Gets the default number of pixels to put above paragraphs.
1708
+ </p>
1709
+ <div class="variablelist"><table border="0">
1710
+ <col align="left" valign="top">
1711
+ <tbody>
1712
+ <tr>
1713
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1714
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1715
+ </td>
1716
+ </tr>
1717
+ <tr>
1718
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1719
+ <td>default number of pixels above paragraphs</td>
1720
+ </tr>
1721
+ </tbody>
1722
+ </table></div>
1723
+ </div>
1724
+ <hr>
1725
+ <div class="refsect2">
1726
+ <a name="gtk-text-view-set-pixels-below-lines"></a><h3>gtk_text_view_set_pixels_below_lines ()</h3>
1727
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_pixels_below_lines
1728
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1729
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> pixels_below_lines</code></em>);</pre>
1730
+ <p>
1731
+ Sets the default number of pixels of blank space
1732
+ to put below paragraphs in <em class="parameter"><code>text_view</code></em>. May be overridden
1733
+ by tags applied to <em class="parameter"><code>text_view</code></em>'s buffer.
1734
+ </p>
1735
+ <div class="variablelist"><table border="0">
1736
+ <col align="left" valign="top">
1737
+ <tbody>
1738
+ <tr>
1739
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1740
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1741
+ </td>
1742
+ </tr>
1743
+ <tr>
1744
+ <td><p><span class="term"><em class="parameter"><code>pixels_below_lines</code></em> :</span></p></td>
1745
+ <td>pixels below paragraphs</td>
1746
+ </tr>
1747
+ </tbody>
1748
+ </table></div>
1749
+ </div>
1750
+ <hr>
1751
+ <div class="refsect2">
1752
+ <a name="gtk-text-view-get-pixels-below-lines"></a><h3>gtk_text_view_get_pixels_below_lines ()</h3>
1753
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_text_view_get_pixels_below_lines
1754
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
1755
+ <p>
1756
+ 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>.
1757
+ </p>
1758
+ <div class="variablelist"><table border="0">
1759
+ <col align="left" valign="top">
1760
+ <tbody>
1761
+ <tr>
1762
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1763
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1764
+ </td>
1765
+ </tr>
1766
+ <tr>
1767
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1768
+ <td>default number of blank pixels below paragraphs</td>
1769
+ </tr>
1770
+ </tbody>
1771
+ </table></div>
1772
+ </div>
1773
+ <hr>
1774
+ <div class="refsect2">
1775
+ <a name="gtk-text-view-set-pixels-inside-wrap"></a><h3>gtk_text_view_set_pixels_inside_wrap ()</h3>
1776
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_pixels_inside_wrap
1777
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
1778
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> pixels_inside_wrap</code></em>);</pre>
1779
+ <p>
1780
+ Sets the default number of pixels of blank space to leave between
1781
+ display/wrapped lines within a paragraph. May be overridden by
1782
+ tags in <em class="parameter"><code>text_view</code></em>'s buffer.
1783
+ </p>
1784
+ <div class="variablelist"><table border="0">
1785
+ <col align="left" valign="top">
1786
+ <tbody>
1787
+ <tr>
1788
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1789
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1790
+ </td>
1791
+ </tr>
1792
+ <tr>
1793
+ <td><p><span class="term"><em class="parameter"><code>pixels_inside_wrap</code></em> :</span></p></td>
1794
+ <td>default number of pixels between wrapped lines</td>
1795
+ </tr>
1796
+ </tbody>
1797
+ </table></div>
1798
+ </div>
1799
+ <hr>
1800
+ <div class="refsect2">
1801
+ <a name="gtk-text-view-get-pixels-inside-wrap"></a><h3>gtk_text_view_get_pixels_inside_wrap ()</h3>
1802
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_text_view_get_pixels_inside_wrap
1803
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
1804
+ <p>
1805
+ 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>.
1806
+ </p>
1807
+ <div class="variablelist"><table border="0">
1808
+ <col align="left" valign="top">
1809
+ <tbody>
1810
+ <tr>
1811
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1812
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1813
+ </td>
1814
+ </tr>
1815
+ <tr>
1816
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1817
+ <td>default number of pixels of blank space between wrapped lines</td>
1818
+ </tr>
1819
+ </tbody>
1820
+ </table></div>
1821
+ </div>
1822
+ <hr>
1823
+ <div class="refsect2">
1824
+ <a name="gtk-text-view-set-justification"></a><h3>gtk_text_view_set_justification ()</h3>
1825
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
1826
+ <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> justification</code></em>);</pre>
1827
+ <p>
1828
+ Sets the default justification of text in <em class="parameter"><code>text_view</code></em>.
1829
+ Tags in the view's buffer may override the default.
1830
+ </p>
1831
+ <div class="variablelist"><table border="0">
1832
+ <col align="left" valign="top">
1833
+ <tbody>
1834
+ <tr>
1835
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1836
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1837
+ </td>
1838
+ </tr>
1839
+ <tr>
1840
+ <td><p><span class="term"><em class="parameter"><code>justification</code></em> :</span></p></td>
1841
+ <td>justification</td>
1842
+ </tr>
1843
+ </tbody>
1844
+ </table></div>
1845
+ </div>
1846
+ <hr>
1847
+ <div class="refsect2">
1848
+ <a name="gtk-text-view-get-justification"></a><h3>gtk_text_view_get_justification ()</h3>
1849
+ <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="returnvalue">GtkJustification</span></a> 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>
1850
+ <p>
1851
+ Gets the default justification of paragraphs in <em class="parameter"><code>text_view</code></em>.
1852
+ Tags in the buffer may override the default.
1853
+ </p>
1854
+ <div class="variablelist"><table border="0">
1855
+ <col align="left" valign="top">
1856
+ <tbody>
1857
+ <tr>
1858
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1859
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1860
+ </td>
1861
+ </tr>
1862
+ <tr>
1863
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1864
+ <td>default justification</td>
1865
+ </tr>
1866
+ </tbody>
1867
+ </table></div>
1868
+ </div>
1869
+ <hr>
1870
+ <div class="refsect2">
1871
+ <a name="gtk-text-view-set-left-margin"></a><h3>gtk_text_view_set_left_margin ()</h3>
1872
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
1873
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> left_margin</code></em>);</pre>
1874
+ <p>
1875
+ Sets the default left margin for text in <em class="parameter"><code>text_view</code></em>.
1876
+ Tags in the buffer may override the default.
1877
+ </p>
1878
+ <div class="variablelist"><table border="0">
1879
+ <col align="left" valign="top">
1880
+ <tbody>
1881
+ <tr>
1882
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1883
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1884
+ </td>
1885
+ </tr>
1886
+ <tr>
1887
+ <td><p><span class="term"><em class="parameter"><code>left_margin</code></em> :</span></p></td>
1888
+ <td>left margin in pixels</td>
1889
+ </tr>
1890
+ </tbody>
1891
+ </table></div>
1892
+ </div>
1893
+ <hr>
1894
+ <div class="refsect2">
1895
+ <a name="gtk-text-view-get-left-margin"></a><h3>gtk_text_view_get_left_margin ()</h3>
1896
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
1897
+ <p>
1898
+ Gets the default left margin size of paragraphs in the <em class="parameter"><code>text_view</code></em>.
1899
+ Tags in the buffer may override the default.
1900
+ </p>
1901
+ <div class="variablelist"><table border="0">
1902
+ <col align="left" valign="top">
1903
+ <tbody>
1904
+ <tr>
1905
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1906
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1907
+ </td>
1908
+ </tr>
1909
+ <tr>
1910
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1911
+ <td>left margin in pixels</td>
1912
+ </tr>
1913
+ </tbody>
1914
+ </table></div>
1915
+ </div>
1916
+ <hr>
1917
+ <div class="refsect2">
1918
+ <a name="gtk-text-view-set-right-margin"></a><h3>gtk_text_view_set_right_margin ()</h3>
1919
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
1920
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> right_margin</code></em>);</pre>
1921
+ <p>
1922
+ Sets the default right margin for text in the text view.
1923
+ Tags in the buffer may override the default.
1924
+ </p>
1925
+ <div class="variablelist"><table border="0">
1926
+ <col align="left" valign="top">
1927
+ <tbody>
1928
+ <tr>
1929
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1930
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1931
+ </td>
1932
+ </tr>
1933
+ <tr>
1934
+ <td><p><span class="term"><em class="parameter"><code>right_margin</code></em> :</span></p></td>
1935
+ <td>right margin in pixels</td>
1936
+ </tr>
1937
+ </tbody>
1938
+ </table></div>
1939
+ </div>
1940
+ <hr>
1941
+ <div class="refsect2">
1942
+ <a name="gtk-text-view-get-right-margin"></a><h3>gtk_text_view_get_right_margin ()</h3>
1943
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
1944
+ <p>
1945
+ Gets the default right margin for text in <em class="parameter"><code>text_view</code></em>. Tags
1946
+ in the buffer may override the default.
1947
+ </p>
1948
+ <div class="variablelist"><table border="0">
1949
+ <col align="left" valign="top">
1950
+ <tbody>
1951
+ <tr>
1952
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1953
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1954
+ </td>
1955
+ </tr>
1956
+ <tr>
1957
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1958
+ <td>right margin in pixels</td>
1959
+ </tr>
1960
+ </tbody>
1961
+ </table></div>
1962
+ </div>
1963
+ <hr>
1964
+ <div class="refsect2">
1965
+ <a name="gtk-text-view-set-indent"></a><h3>gtk_text_view_set_indent ()</h3>
1966
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
1967
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> indent</code></em>);</pre>
1968
+ <p>
1969
+ Sets the default indentation for paragraphs in <em class="parameter"><code>text_view</code></em>.
1970
+ Tags in the buffer may override the default.
1971
+ </p>
1972
+ <div class="variablelist"><table border="0">
1973
+ <col align="left" valign="top">
1974
+ <tbody>
1975
+ <tr>
1976
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
1977
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
1978
+ </td>
1979
+ </tr>
1980
+ <tr>
1981
+ <td><p><span class="term"><em class="parameter"><code>indent</code></em> :</span></p></td>
1982
+ <td>indentation in pixels</td>
1983
+ </tr>
1984
+ </tbody>
1985
+ </table></div>
1986
+ </div>
1987
+ <hr>
1988
+ <div class="refsect2">
1989
+ <a name="gtk-text-view-get-indent"></a><h3>gtk_text_view_get_indent ()</h3>
1990
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
1991
+ <p>
1992
+ Gets the default indentation of paragraphs in <em class="parameter"><code>text_view</code></em>.
1993
+ Tags in the view's buffer may override the default.
1994
+ The indentation may be negative.
1995
+ </p>
1996
+ <div class="variablelist"><table border="0">
1997
+ <col align="left" valign="top">
1998
+ <tbody>
1999
+ <tr>
2000
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2001
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
2002
+ </td>
2003
+ </tr>
2004
+ <tr>
2005
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2006
+ <td>number of pixels of indentation</td>
2007
+ </tr>
2008
+ </tbody>
2009
+ </table></div>
2010
+ </div>
2011
+ <hr>
2012
+ <div class="refsect2">
2013
+ <a name="gtk-text-view-set-tabs"></a><h3>gtk_text_view_set_tabs ()</h3>
2014
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
2015
+ <em class="parameter"><code><a href="/usr/share/gtk-doc/html/pango/pango-Tab-Stops.html#PangoTabArray"><span class="type">PangoTabArray</span></a> *tabs</code></em>);</pre>
2016
+ <p>
2017
+ Sets the default tab stops for paragraphs in <em class="parameter"><code>text_view</code></em>.
2018
+ Tags in the buffer may override the default.
2019
+ </p>
2020
+ <div class="variablelist"><table border="0">
2021
+ <col align="left" valign="top">
2022
+ <tbody>
2023
+ <tr>
2024
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2025
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
2026
+ </td>
2027
+ </tr>
2028
+ <tr>
2029
+ <td><p><span class="term"><em class="parameter"><code>tabs</code></em> :</span></p></td>
2030
+ <td>tabs as a <a href="/usr/share/gtk-doc/html/pango/pango-Tab-Stops.html#PangoTabArray"><span class="type">PangoTabArray</span></a>
2031
+ </td>
2032
+ </tr>
2033
+ </tbody>
2034
+ </table></div>
2035
+ </div>
2036
+ <hr>
2037
+ <div class="refsect2">
2038
+ <a name="gtk-text-view-get-tabs"></a><h3>gtk_text_view_get_tabs ()</h3>
2039
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/pango/pango-Tab-Stops.html#PangoTabArray"><span class="returnvalue">PangoTabArray</span></a> * 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>
2040
+ <p>
2041
+ Gets the default tabs for <em class="parameter"><code>text_view</code></em>. Tags in the buffer may
2042
+ override the defaults. The returned array will be <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if
2043
+ "standard" (8-space) tabs are used. Free the return value
2044
+ with <a href="/usr/share/gtk-doc/html/pango/pango-Tab-Stops.html#pango-tab-array-free"><code class="function">pango_tab_array_free()</code></a>.
2045
+ </p>
2046
+ <div class="variablelist"><table border="0">
2047
+ <col align="left" valign="top">
2048
+ <tbody>
2049
+ <tr>
2050
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2051
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
2052
+ </td>
2053
+ </tr>
2054
+ <tr>
2055
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2056
+ <td>copy of default tab array, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if "standard"
2057
+ tabs are used; must be freed with <a href="/usr/share/gtk-doc/html/pango/pango-Tab-Stops.html#pango-tab-array-free"><code class="function">pango_tab_array_free()</code></a>.</td>
2058
+ </tr>
2059
+ </tbody>
2060
+ </table></div>
2061
+ </div>
2062
+ <hr>
2063
+ <div class="refsect2">
2064
+ <a name="gtk-text-view-set-accepts-tab"></a><h3>gtk_text_view_set_accepts_tab ()</h3>
2065
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>,
2066
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> accepts_tab</code></em>);</pre>
2067
+ <p>
2068
+ Sets the behavior of the text widget when the Tab key is pressed.
2069
+ If <em class="parameter"><code>accepts_tab</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/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>
2070
+ is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> the keyboard focus is moved to the next widget in the focus
2071
+ chain.
2072
+ </p>
2073
+ <div class="variablelist"><table border="0">
2074
+ <col align="left" valign="top">
2075
+ <tbody>
2076
+ <tr>
2077
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2078
+ <td>A <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
2079
+ </td>
2080
+ </tr>
2081
+ <tr>
2082
+ <td><p><span class="term"><em class="parameter"><code>accepts_tab</code></em> :</span></p></td>
2083
+ <td>
2084
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if pressing the Tab key should insert a tab
2085
+ character, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, if pressing the Tab key should move the
2086
+ keyboard focus.</td>
2087
+ </tr>
2088
+ </tbody>
2089
+ </table></div>
2090
+ <p class="since">Since 2.4</p>
2091
+ </div>
2092
+ <hr>
2093
+ <div class="refsect2">
2094
+ <a name="gtk-text-view-get-accepts-tab"></a><h3>gtk_text_view_get_accepts_tab ()</h3>
2095
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>
2096
+ <p>
2097
+ Returns whether pressing the Tab key inserts a tab characters.
2098
+ <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>.
2099
+ </p>
2100
+ <div class="variablelist"><table border="0">
2101
+ <col align="left" valign="top">
2102
+ <tbody>
2103
+ <tr>
2104
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2105
+ <td>A <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
2106
+ </td>
2107
+ </tr>
2108
+ <tr>
2109
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2110
+ <td>
2111
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if pressing the Tab key inserts a tab character,
2112
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if pressing the Tab key moves the keyboard focus.</td>
2113
+ </tr>
2114
+ </tbody>
2115
+ </table></div>
2116
+ <p class="since">Since 2.4</p>
2117
+ </div>
2118
+ <hr>
2119
+ <div class="refsect2">
2120
+ <a name="gtk-text-view-get-default-attributes"></a><h3>gtk_text_view_get_default_attributes ()</h3>
2121
+ <pre class="programlisting"><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> * gtk_text_view_get_default_attributes
2122
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
2123
+ <p>
2124
+ Obtains a copy of the default text attributes. These are the
2125
+ attributes used for text unless a tag overrides them.
2126
+ You'd typically pass the default attributes in to
2127
+ <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
2128
+ attributes in effect at a given text position.
2129
+ </p>
2130
+ <p>
2131
+ The return value is a copy owned by the caller of this function,
2132
+ and should be freed.
2133
+ </p>
2134
+ <div class="variablelist"><table border="0">
2135
+ <col align="left" valign="top">
2136
+ <tbody>
2137
+ <tr>
2138
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2139
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
2140
+ </td>
2141
+ </tr>
2142
+ <tr>
2143
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2144
+ <td>a new <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>
2145
+ </td>
2146
+ </tr>
2147
+ </tbody>
2148
+ </table></div>
2149
+ </div>
2150
+ <hr>
2151
+ <div class="refsect2">
2152
+ <a name="gtk-text-view-im-context-filter-keypress"></a><h3>gtk_text_view_im_context_filter_keypress ()</h3>
2153
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_text_view_im_context_filter_keypress
2154
+ (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
2155
+ <em class="parameter"><code><a href="../gdk/gdk-Event-Structures.html#GdkEventKey"><span class="type">GdkEventKey</span></a> *event</code></em>);</pre>
2156
+ <p>
2157
+ Allow the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> input method to internally handle key press
2158
+ and release events. If this function returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, then no further
2159
+ processing should be done for this key event. See
2160
+ <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>.
2161
+ </p>
2162
+ <p>
2163
+ Note that you are expected to call this function from your handler
2164
+ when overriding key event handling. This is needed in the case when
2165
+ you need to insert your own key handling between the input method
2166
+ and the default key event handling of the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>.
2167
+ </p>
2168
+ <p>
2169
+ </p>
2170
+ <div class="informalexample">
2171
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
2172
+ <tbody>
2173
+ <tr>
2174
+ <td class="listing_lines" align="right"><pre>1
2175
+ 2
2176
+ 3
2177
+ 4
2178
+ 5
2179
+ 6
2180
+ 7
2181
+ 8
2182
+ 9
2183
+ 10
2184
+ 11
2185
+ 12
2186
+ 13
2187
+ 14</pre></td>
2188
+ <td class="listing_code"><pre class="programlisting"><span class="keyword">static</span><span class="normal"> <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean">gboolean</a></span>
2189
+ <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>
2190
+ <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>
2191
+ <span class="cbracket">{</span>
2192
+ <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>
2193
+ <span class="normal"> </span><span class="cbracket">{</span>
2194
+ <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>
2195
+ <span class="normal"> </span><span class="keyword">return</span><span class="normal"> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS">TRUE</a></span><span class="symbol">;</span>
2196
+ <span class="normal"> </span><span class="cbracket">}</span>
2197
+
2198
+ <span class="normal"> </span><span class="comment">/* Do some stuff */</span>
2199
+
2200
+ <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>
2201
+ <span class="cbracket">}</span></pre></td>
2202
+ </tr>
2203
+ </tbody>
2204
+ </table>
2205
+ </div>
2206
+
2207
+ <p>
2208
+ </p>
2209
+ <div class="variablelist"><table border="0">
2210
+ <col align="left" valign="top">
2211
+ <tbody>
2212
+ <tr>
2213
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2214
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
2215
+ </td>
2216
+ </tr>
2217
+ <tr>
2218
+ <td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
2219
+ <td>the key event</td>
2220
+ </tr>
2221
+ <tr>
2222
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2223
+ <td>
2224
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the input method handled the key event.</td>
2225
+ </tr>
2226
+ </tbody>
2227
+ </table></div>
2228
+ <p class="since">Since 2.22</p>
2229
+ </div>
2230
+ <hr>
2231
+ <div class="refsect2">
2232
+ <a name="gtk-text-view-reset-im-context"></a><h3>gtk_text_view_reset_im_context ()</h3>
2233
+ <pre class="programlisting"><span class="returnvalue">void</span> 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>
2234
+ <p>
2235
+ Reset the input method context of the text view if needed.
2236
+ </p>
2237
+ <p>
2238
+ This can be necessary in the case where modifying the buffer
2239
+ would confuse on-going input method behavior.
2240
+ </p>
2241
+ <div class="variablelist"><table border="0">
2242
+ <col align="left" valign="top">
2243
+ <tbody><tr>
2244
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2245
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
2246
+ </td>
2247
+ </tr></tbody>
2248
+ </table></div>
2249
+ <p class="since">Since 2.22</p>
2250
+ </div>
2251
+ <hr>
2252
+ <div class="refsect2">
2253
+ <a name="gtk-text-view-get-hadjustment"></a><h3>gtk_text_view_get_hadjustment ()</h3>
2254
+ <pre class="programlisting"><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * 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>
2255
+ <p>
2256
+ Gets the horizontal-scrolling <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>.
2257
+ </p>
2258
+ <div class="variablelist"><table border="0">
2259
+ <col align="left" valign="top">
2260
+ <tbody>
2261
+ <tr>
2262
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2263
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
2264
+ </td>
2265
+ </tr>
2266
+ <tr>
2267
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2268
+ <td>pointer to the horizontal <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2269
+ </td>
2270
+ </tr>
2271
+ </tbody>
2272
+ </table></div>
2273
+ <p class="since">Since 2.22</p>
2274
+ </div>
2275
+ <hr>
2276
+ <div class="refsect2">
2277
+ <a name="gtk-text-view-get-vadjustment"></a><h3>gtk_text_view_get_vadjustment ()</h3>
2278
+ <pre class="programlisting"><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * 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>
2279
+ <p>
2280
+ Gets the vertical-scrolling <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>.
2281
+ </p>
2282
+ <div class="variablelist"><table border="0">
2283
+ <col align="left" valign="top">
2284
+ <tbody>
2285
+ <tr>
2286
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2287
+ <td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
2288
+ </td>
2289
+ </tr>
2290
+ <tr>
2291
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2292
+ <td>pointer to the vertical <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2293
+ </td>
2294
+ </tr>
2295
+ </tbody>
2296
+ </table></div>
2297
+ <p class="since">Since 2.22</p>
2298
+ </div>
2299
+ <hr>
2300
+ <div class="refsect2">
2301
+ <a name="GTK-TEXT-VIEW-PRIORITY-VALIDATE:CAPS"></a><h3>GTK_TEXT_VIEW_PRIORITY_VALIDATE</h3>
2302
+ <pre class="programlisting">#define GTK_TEXT_VIEW_PRIORITY_VALIDATE (GDK_PRIORITY_REDRAW + 5)
2303
+ </pre>
2304
+ <p>
2305
+ The priority at which the text view validates onscreen lines
2306
+ in an idle job in the background.
2307
+ </p>
2308
+ </div>
2309
+ </div>
2310
+ <div class="refsect1">
2311
+ <a name="GtkTextView.property-details"></a><h2>Property Details</h2>
2312
+ <div class="refsect2">
2313
+ <a name="GtkTextView--accepts-tab"></a><h3>The <code class="literal">"accepts-tab"</code> property</h3>
2314
+ <pre class="programlisting"> "accepts-tab" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
2315
+ <p>Whether Tab will result in a tab character being entered.</p>
2316
+ <p>Default value: TRUE</p>
2317
+ </div>
2318
+ <hr>
2319
+ <div class="refsect2">
2320
+ <a name="GtkTextView--buffer"></a><h3>The <code class="literal">"buffer"</code> property</h3>
2321
+ <pre class="programlisting"> "buffer" <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>* : Read / Write</pre>
2322
+ <p>The buffer which is displayed.</p>
2323
+ </div>
2324
+ <hr>
2325
+ <div class="refsect2">
2326
+ <a name="GtkTextView--cursor-visible"></a><h3>The <code class="literal">"cursor-visible"</code> property</h3>
2327
+ <pre class="programlisting"> "cursor-visible" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
2328
+ <p>If the insertion cursor is shown.</p>
2329
+ <p>Default value: TRUE</p>
2330
+ </div>
2331
+ <hr>
2332
+ <div class="refsect2">
2333
+ <a name="GtkTextView--editable"></a><h3>The <code class="literal">"editable"</code> property</h3>
2334
+ <pre class="programlisting"> "editable" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
2335
+ <p>Whether the text can be modified by the user.</p>
2336
+ <p>Default value: TRUE</p>
2337
+ </div>
2338
+ <hr>
2339
+ <div class="refsect2">
2340
+ <a name="GtkTextView--im-module"></a><h3>The <code class="literal">"im-module"</code> property</h3>
2341
+ <pre class="programlisting"> "im-module" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
2342
+ <p>
2343
+ Which IM (input method) module should be used for this entry.
2344
+ See <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a>.
2345
+ </p>
2346
+ <p>
2347
+ Setting this to a non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> value overrides the
2348
+ system-wide IM module setting. See the GtkSettings
2349
+ <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.
2350
+ </p>
2351
+ <p>Default value: NULL</p>
2352
+ <p class="since">Since 2.16</p>
2353
+ </div>
2354
+ <hr>
2355
+ <div class="refsect2">
2356
+ <a name="GtkTextView--indent"></a><h3>The <code class="literal">"indent"</code> property</h3>
2357
+ <pre class="programlisting"> "indent" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2358
+ <p>Amount to indent the paragraph, in pixels.</p>
2359
+ <p>Default value: 0</p>
2360
+ </div>
2361
+ <hr>
2362
+ <div class="refsect2">
2363
+ <a name="GtkTextView--justification"></a><h3>The <code class="literal">"justification"</code> property</h3>
2364
+ <pre class="programlisting"> "justification" <a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> : Read / Write</pre>
2365
+ <p>Left, right, or center justification.</p>
2366
+ <p>Default value: GTK_JUSTIFY_LEFT</p>
2367
+ </div>
2368
+ <hr>
2369
+ <div class="refsect2">
2370
+ <a name="GtkTextView--left-margin"></a><h3>The <code class="literal">"left-margin"</code> property</h3>
2371
+ <pre class="programlisting"> "left-margin" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2372
+ <p>Width of the left margin in pixels.</p>
2373
+ <p>Allowed values: &gt;= 0</p>
2374
+ <p>Default value: 0</p>
2375
+ </div>
2376
+ <hr>
2377
+ <div class="refsect2">
2378
+ <a name="GtkTextView--overwrite"></a><h3>The <code class="literal">"overwrite"</code> property</h3>
2379
+ <pre class="programlisting"> "overwrite" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
2380
+ <p>Whether entered text overwrites existing contents.</p>
2381
+ <p>Default value: FALSE</p>
2382
+ </div>
2383
+ <hr>
2384
+ <div class="refsect2">
2385
+ <a name="GtkTextView--pixels-above-lines"></a><h3>The <code class="literal">"pixels-above-lines"</code> property</h3>
2386
+ <pre class="programlisting"> "pixels-above-lines" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2387
+ <p>Pixels of blank space above paragraphs.</p>
2388
+ <p>Allowed values: &gt;= 0</p>
2389
+ <p>Default value: 0</p>
2390
+ </div>
2391
+ <hr>
2392
+ <div class="refsect2">
2393
+ <a name="GtkTextView--pixels-below-lines"></a><h3>The <code class="literal">"pixels-below-lines"</code> property</h3>
2394
+ <pre class="programlisting"> "pixels-below-lines" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2395
+ <p>Pixels of blank space below paragraphs.</p>
2396
+ <p>Allowed values: &gt;= 0</p>
2397
+ <p>Default value: 0</p>
2398
+ </div>
2399
+ <hr>
2400
+ <div class="refsect2">
2401
+ <a name="GtkTextView--pixels-inside-wrap"></a><h3>The <code class="literal">"pixels-inside-wrap"</code> property</h3>
2402
+ <pre class="programlisting"> "pixels-inside-wrap" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2403
+ <p>Pixels of blank space between wrapped lines in a paragraph.</p>
2404
+ <p>Allowed values: &gt;= 0</p>
2405
+ <p>Default value: 0</p>
2406
+ </div>
2407
+ <hr>
2408
+ <div class="refsect2">
2409
+ <a name="GtkTextView--right-margin"></a><h3>The <code class="literal">"right-margin"</code> property</h3>
2410
+ <pre class="programlisting"> "right-margin" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2411
+ <p>Width of the right margin in pixels.</p>
2412
+ <p>Allowed values: &gt;= 0</p>
2413
+ <p>Default value: 0</p>
2414
+ </div>
2415
+ <hr>
2416
+ <div class="refsect2">
2417
+ <a name="GtkTextView--tabs"></a><h3>The <code class="literal">"tabs"</code> property</h3>
2418
+ <pre class="programlisting"> "tabs" <a href="/usr/share/gtk-doc/html/pango/pango-Tab-Stops.html#PangoTabArray"><span class="type">PangoTabArray</span></a>* : Read / Write</pre>
2419
+ <p>Custom tabs for this text.</p>
2420
+ </div>
2421
+ <hr>
2422
+ <div class="refsect2">
2423
+ <a name="GtkTextView--wrap-mode"></a><h3>The <code class="literal">"wrap-mode"</code> property</h3>
2424
+ <pre class="programlisting"> "wrap-mode" <a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="type">GtkWrapMode</span></a> : Read / Write</pre>
2425
+ <p>Whether to wrap lines never, at word boundaries, or at character boundaries.</p>
2426
+ <p>Default value: GTK_WRAP_NONE</p>
2427
+ </div>
2428
+ </div>
2429
+ <div class="refsect1">
2430
+ <a name="GtkTextView.style-property-details"></a><h2>Style Property Details</h2>
2431
+ <div class="refsect2">
2432
+ <a name="GtkTextView--s-error-underline-color"></a><h3>The <code class="literal">"error-underline-color"</code> style property</h3>
2433
+ <pre class="programlisting"> "error-underline-color" <a href="../gdk/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read</pre>
2434
+ <p>Color with which to draw error-indication underlines.</p>
2435
+ </div>
2436
+ </div>
2437
+ <div class="refsect1">
2438
+ <a name="GtkTextView.signal-details"></a><h2>Signal Details</h2>
2439
+ <div class="refsect2">
2440
+ <a name="GtkTextView-backspace"></a><h3>The <code class="literal">"backspace"</code> signal</h3>
2441
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
2442
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2443
+ <p>
2444
+ The ::backspace signal is a
2445
+ <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2446
+ which gets emitted when the user asks for it.
2447
+ </p>
2448
+ <p>
2449
+ The default bindings for this signal are
2450
+ Backspace and Shift-Backspace.
2451
+ </p>
2452
+ <div class="variablelist"><table border="0">
2453
+ <col align="left" valign="top">
2454
+ <tbody>
2455
+ <tr>
2456
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2457
+ <td>the object which received the signal</td>
2458
+ </tr>
2459
+ <tr>
2460
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2461
+ <td>user data set when the signal handler was connected.</td>
2462
+ </tr>
2463
+ </tbody>
2464
+ </table></div>
2465
+ </div>
2466
+ <hr>
2467
+ <div class="refsect2">
2468
+ <a name="GtkTextView-copy-clipboard"></a><h3>The <code class="literal">"copy-clipboard"</code> signal</h3>
2469
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
2470
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2471
+ <p>
2472
+ The ::copy-clipboard signal is a
2473
+ <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2474
+ which gets emitted to copy the selection to the clipboard.
2475
+ </p>
2476
+ <p>
2477
+ The default bindings for this signal are
2478
+ Ctrl-c and Ctrl-Insert.
2479
+ </p>
2480
+ <div class="variablelist"><table border="0">
2481
+ <col align="left" valign="top">
2482
+ <tbody>
2483
+ <tr>
2484
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2485
+ <td>the object which received the signal</td>
2486
+ </tr>
2487
+ <tr>
2488
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2489
+ <td>user data set when the signal handler was connected.</td>
2490
+ </tr>
2491
+ </tbody>
2492
+ </table></div>
2493
+ </div>
2494
+ <hr>
2495
+ <div class="refsect2">
2496
+ <a name="GtkTextView-cut-clipboard"></a><h3>The <code class="literal">"cut-clipboard"</code> signal</h3>
2497
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
2498
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2499
+ <p>
2500
+ The ::cut-clipboard signal is a
2501
+ <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2502
+ which gets emitted to cut the selection to the clipboard.
2503
+ </p>
2504
+ <p>
2505
+ The default bindings for this signal are
2506
+ Ctrl-x and Shift-Delete.
2507
+ </p>
2508
+ <div class="variablelist"><table border="0">
2509
+ <col align="left" valign="top">
2510
+ <tbody>
2511
+ <tr>
2512
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2513
+ <td>the object which received the signal</td>
2514
+ </tr>
2515
+ <tr>
2516
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2517
+ <td>user data set when the signal handler was connected.</td>
2518
+ </tr>
2519
+ </tbody>
2520
+ </table></div>
2521
+ </div>
2522
+ <hr>
2523
+ <div class="refsect2">
2524
+ <a name="GtkTextView-delete-from-cursor"></a><h3>The <code class="literal">"delete-from-cursor"</code> signal</h3>
2525
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
2526
+ <a class="link" href="gtk-Standard-Enumerations.html#GtkDeleteType" title="enum GtkDeleteType"><span class="type">GtkDeleteType</span></a> type,
2527
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
2528
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2529
+ <p>
2530
+ The ::delete-from-cursor signal is a
2531
+ <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2532
+ which gets emitted when the user initiates a text deletion.
2533
+ </p>
2534
+ <p>
2535
+ If the <em class="parameter"><code>type</code></em> is <code class="literal">GTK_DELETE_CHARS</code>, GTK+ deletes the selection
2536
+ if there is one, otherwise it deletes the requested number
2537
+ of characters.
2538
+ </p>
2539
+ <p>
2540
+ The default bindings for this signal are
2541
+ Delete for deleting a character, Ctrl-Delete for
2542
+ deleting a word and Ctrl-Backspace for deleting a word
2543
+ backwords.
2544
+ </p>
2545
+ <div class="variablelist"><table border="0">
2546
+ <col align="left" valign="top">
2547
+ <tbody>
2548
+ <tr>
2549
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2550
+ <td>the object which received the signal</td>
2551
+ </tr>
2552
+ <tr>
2553
+ <td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
2554
+ <td>the granularity of the deletion, as a <a class="link" href="gtk-Standard-Enumerations.html#GtkDeleteType" title="enum GtkDeleteType"><span class="type">GtkDeleteType</span></a>
2555
+ </td>
2556
+ </tr>
2557
+ <tr>
2558
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
2559
+ <td>the number of <em class="parameter"><code>type</code></em> units to delete</td>
2560
+ </tr>
2561
+ <tr>
2562
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2563
+ <td>user data set when the signal handler was connected.</td>
2564
+ </tr>
2565
+ </tbody>
2566
+ </table></div>
2567
+ </div>
2568
+ <hr>
2569
+ <div class="refsect2">
2570
+ <a name="GtkTextView-insert-at-cursor"></a><h3>The <code class="literal">"insert-at-cursor"</code> signal</h3>
2571
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
2572
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *string,
2573
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2574
+ <p>
2575
+ The ::insert-at-cursor signal is a
2576
+ <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2577
+ which gets emitted when the user initiates the insertion of a
2578
+ fixed string at the cursor.
2579
+ </p>
2580
+ <p>
2581
+ This signal has no default bindings.
2582
+ </p>
2583
+ <div class="variablelist"><table border="0">
2584
+ <col align="left" valign="top">
2585
+ <tbody>
2586
+ <tr>
2587
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2588
+ <td>the object which received the signal</td>
2589
+ </tr>
2590
+ <tr>
2591
+ <td><p><span class="term"><em class="parameter"><code>string</code></em> :</span></p></td>
2592
+ <td>the string to insert</td>
2593
+ </tr>
2594
+ <tr>
2595
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2596
+ <td>user data set when the signal handler was connected.</td>
2597
+ </tr>
2598
+ </tbody>
2599
+ </table></div>
2600
+ </div>
2601
+ <hr>
2602
+ <div class="refsect2">
2603
+ <a name="GtkTextView-move-cursor"></a><h3>The <code class="literal">"move-cursor"</code> signal</h3>
2604
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
2605
+ <a class="link" href="gtk-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a> step,
2606
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
2607
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> extend_selection,
2608
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2609
+ <p>
2610
+ The ::move-cursor signal is a
2611
+ <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2612
+ which gets emitted when the user initiates a cursor movement.
2613
+ If the cursor is not visible in <em class="parameter"><code>text_view</code></em>, this signal causes
2614
+ the viewport to be moved instead.
2615
+ </p>
2616
+ <p>
2617
+ Applications should not connect to it, but may emit it with
2618
+ <a href="http://library.gnome.org/devel/gobject/unstable/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
2619
+ programmatically.
2620
+ </p>
2621
+ <p>
2622
+ The default bindings for this signal come in two variants,
2623
+ the variant with the Shift modifier extends the selection,
2624
+ the variant without the Shift modifer does not.
2625
+ There are too many key combinations to list them all here.
2626
+ </p>
2627
+ <div class="itemizedlist"><ul class="itemizedlist" type="disc">
2628
+ <li class="listitem">Arrow keys move by individual characters/lines</li>
2629
+ <li class="listitem">Ctrl-arrow key combinations move by words/paragraphs</li>
2630
+ <li class="listitem">Home/End keys move to the ends of the buffer</li>
2631
+ <li class="listitem">PageUp/PageDown keys move vertically by pages</li>
2632
+ <li class="listitem">Ctrl-PageUp/PageDown keys move horizontally by pages</li>
2633
+ </ul></div>
2634
+ <p>
2635
+ </p>
2636
+ <div class="variablelist"><table border="0">
2637
+ <col align="left" valign="top">
2638
+ <tbody>
2639
+ <tr>
2640
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2641
+ <td>the object which received the signal</td>
2642
+ </tr>
2643
+ <tr>
2644
+ <td><p><span class="term"><em class="parameter"><code>step</code></em> :</span></p></td>
2645
+ <td>the granularity of the move, as a <a class="link" href="gtk-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a>
2646
+ </td>
2647
+ </tr>
2648
+ <tr>
2649
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
2650
+ <td>the number of <em class="parameter"><code>step</code></em> units to move</td>
2651
+ </tr>
2652
+ <tr>
2653
+ <td><p><span class="term"><em class="parameter"><code>extend_selection</code></em> :</span></p></td>
2654
+ <td>
2655
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the move should extend the selection</td>
2656
+ </tr>
2657
+ <tr>
2658
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2659
+ <td>user data set when the signal handler was connected.</td>
2660
+ </tr>
2661
+ </tbody>
2662
+ </table></div>
2663
+ </div>
2664
+ <hr>
2665
+ <div class="refsect2">
2666
+ <a name="GtkTextView-move-viewport"></a><h3>The <code class="literal">"move-viewport"</code> signal</h3>
2667
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
2668
+ <a class="link" href="gtk-Standard-Enumerations.html#GtkScrollStep" title="enum GtkScrollStep"><span class="type">GtkScrollStep</span></a> step,
2669
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
2670
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2671
+ <p>
2672
+ The ::move-viewport signal is a
2673
+ <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2674
+ which can be bound to key combinations to allow the user
2675
+ to move the viewport, i.e. change what part of the text view
2676
+ is visible in a containing scrolled window.
2677
+ </p>
2678
+ <p>
2679
+ There are no default bindings for this signal.
2680
+ </p>
2681
+ <div class="variablelist"><table border="0">
2682
+ <col align="left" valign="top">
2683
+ <tbody>
2684
+ <tr>
2685
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2686
+ <td>the object which received the signal</td>
2687
+ </tr>
2688
+ <tr>
2689
+ <td><p><span class="term"><em class="parameter"><code>step</code></em> :</span></p></td>
2690
+ <td>the granularity of the move, as a <a class="link" href="gtk-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a>
2691
+ </td>
2692
+ </tr>
2693
+ <tr>
2694
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
2695
+ <td>the number of <em class="parameter"><code>step</code></em> units to move</td>
2696
+ </tr>
2697
+ <tr>
2698
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2699
+ <td>user data set when the signal handler was connected.</td>
2700
+ </tr>
2701
+ </tbody>
2702
+ </table></div>
2703
+ </div>
2704
+ <hr>
2705
+ <div class="refsect2">
2706
+ <a name="GtkTextView-page-horizontally"></a><h3>The <code class="literal">"page-horizontally"</code> signal</h3>
2707
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
2708
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
2709
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> extend_selection,
2710
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2711
+ <p>
2712
+ The ::page-horizontally signal is a
2713
+ <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2714
+ which can be bound to key combinations to allow the user
2715
+ to initiate horizontal cursor movement by pages.
2716
+ </p>
2717
+ <p>
2718
+ This signal should not be used anymore, instead use the
2719
+ <span class="type">"move-cursor"</span> signal with the <a href="http://library.gnome.org/devel/gtk/gtk3-Standard-Enumerations.html#GTK-MOVEMENT-HORIZONTAL-PAGES:CAPS"><span class="type">GTK_MOVEMENT_HORIZONTAL_PAGES</span></a>
2720
+ granularity.
2721
+ </p>
2722
+ <div class="variablelist"><table border="0">
2723
+ <col align="left" valign="top">
2724
+ <tbody>
2725
+ <tr>
2726
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2727
+ <td>the object which received the signal</td>
2728
+ </tr>
2729
+ <tr>
2730
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
2731
+ <td>the number of <em class="parameter"><code>step</code></em> units to move</td>
2732
+ </tr>
2733
+ <tr>
2734
+ <td><p><span class="term"><em class="parameter"><code>extend_selection</code></em> :</span></p></td>
2735
+ <td>
2736
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the move should extend the selection</td>
2737
+ </tr>
2738
+ <tr>
2739
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2740
+ <td>user data set when the signal handler was connected.</td>
2741
+ </tr>
2742
+ </tbody>
2743
+ </table></div>
2744
+ </div>
2745
+ <hr>
2746
+ <div class="refsect2">
2747
+ <a name="GtkTextView-paste-clipboard"></a><h3>The <code class="literal">"paste-clipboard"</code> signal</h3>
2748
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
2749
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2750
+ <p>
2751
+ The ::paste-clipboard signal is a
2752
+ <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2753
+ which gets emitted to paste the contents of the clipboard
2754
+ into the text view.
2755
+ </p>
2756
+ <p>
2757
+ The default bindings for this signal are
2758
+ Ctrl-v and Shift-Insert.
2759
+ </p>
2760
+ <div class="variablelist"><table border="0">
2761
+ <col align="left" valign="top">
2762
+ <tbody>
2763
+ <tr>
2764
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2765
+ <td>the object which received the signal</td>
2766
+ </tr>
2767
+ <tr>
2768
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2769
+ <td>user data set when the signal handler was connected.</td>
2770
+ </tr>
2771
+ </tbody>
2772
+ </table></div>
2773
+ </div>
2774
+ <hr>
2775
+ <div class="refsect2">
2776
+ <a name="GtkTextView-populate-popup"></a><h3>The <code class="literal">"populate-popup"</code> signal</h3>
2777
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *entry,
2778
+ <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu,
2779
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
2780
+ <p>
2781
+ The ::populate-popup signal gets emitted before showing the
2782
+ context menu of the text view.
2783
+ </p>
2784
+ <p>
2785
+ If you need to add items to the context menu, connect
2786
+ to this signal and append your menuitems to the <em class="parameter"><code>menu</code></em>.
2787
+ </p>
2788
+ <div class="variablelist"><table border="0">
2789
+ <col align="left" valign="top">
2790
+ <tbody>
2791
+ <tr>
2792
+ <td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
2793
+ <td>The text view on which the signal is emitted</td>
2794
+ </tr>
2795
+ <tr>
2796
+ <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
2797
+ <td>the menu that is being populated</td>
2798
+ </tr>
2799
+ <tr>
2800
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2801
+ <td>user data set when the signal handler was connected.</td>
2802
+ </tr>
2803
+ </tbody>
2804
+ </table></div>
2805
+ </div>
2806
+ <hr>
2807
+ <div class="refsect2">
2808
+ <a name="GtkTextView-preedit-changed"></a><h3>The <code class="literal">"preedit-changed"</code> signal</h3>
2809
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
2810
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *preedit,
2811
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2812
+ <p>
2813
+ If an input method is used, the typed text will not immediately
2814
+ be committed to the buffer. So if you are interested in the text,
2815
+ connect to this signal.
2816
+ </p>
2817
+ <p>
2818
+ This signal is only emitted if the text at the given position
2819
+ is actually editable.
2820
+ </p>
2821
+ <div class="variablelist"><table border="0">
2822
+ <col align="left" valign="top">
2823
+ <tbody>
2824
+ <tr>
2825
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2826
+ <td>the object which received the signal</td>
2827
+ </tr>
2828
+ <tr>
2829
+ <td><p><span class="term"><em class="parameter"><code>preedit</code></em> :</span></p></td>
2830
+ <td>the current preedit string</td>
2831
+ </tr>
2832
+ <tr>
2833
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2834
+ <td>user data set when the signal handler was connected.</td>
2835
+ </tr>
2836
+ </tbody>
2837
+ </table></div>
2838
+ <p class="since">Since 2.20</p>
2839
+ </div>
2840
+ <hr>
2841
+ <div class="refsect2">
2842
+ <a name="GtkTextView-select-all"></a><h3>The <code class="literal">"select-all"</code> signal</h3>
2843
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
2844
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> select,
2845
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2846
+ <p>
2847
+ The ::select-all signal is a
2848
+ <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2849
+ which gets emitted to select or unselect the complete
2850
+ contents of the text view.
2851
+ </p>
2852
+ <p>
2853
+ The default bindings for this signal are Ctrl-a and Ctrl-/
2854
+ for selecting and Shift-Ctrl-a and Ctrl-\ for unselecting.
2855
+ </p>
2856
+ <div class="variablelist"><table border="0">
2857
+ <col align="left" valign="top">
2858
+ <tbody>
2859
+ <tr>
2860
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2861
+ <td>the object which received the signal</td>
2862
+ </tr>
2863
+ <tr>
2864
+ <td><p><span class="term"><em class="parameter"><code>select</code></em> :</span></p></td>
2865
+ <td>
2866
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to select, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to unselect</td>
2867
+ </tr>
2868
+ <tr>
2869
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2870
+ <td>user data set when the signal handler was connected.</td>
2871
+ </tr>
2872
+ </tbody>
2873
+ </table></div>
2874
+ </div>
2875
+ <hr>
2876
+ <div class="refsect2">
2877
+ <a name="GtkTextView-set-anchor"></a><h3>The <code class="literal">"set-anchor"</code> signal</h3>
2878
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
2879
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2880
+ <p>
2881
+ The ::set-anchor signal is a
2882
+ <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2883
+ which gets emitted when the user initiates setting the "anchor"
2884
+ mark. The "anchor" mark gets placed at the same position as the
2885
+ "insert" mark.
2886
+ </p>
2887
+ <p>
2888
+ This signal has no default bindings.
2889
+ </p>
2890
+ <div class="variablelist"><table border="0">
2891
+ <col align="left" valign="top">
2892
+ <tbody>
2893
+ <tr>
2894
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2895
+ <td>the object which received the signal</td>
2896
+ </tr>
2897
+ <tr>
2898
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2899
+ <td>user data set when the signal handler was connected.</td>
2900
+ </tr>
2901
+ </tbody>
2902
+ </table></div>
2903
+ </div>
2904
+ <hr>
2905
+ <div class="refsect2">
2906
+ <a name="GtkTextView-set-scroll-adjustments"></a><h3>The <code class="literal">"set-scroll-adjustments"</code> signal</h3>
2907
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *horizontal,
2908
+ <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *vertical,
2909
+ <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *arg2,
2910
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2911
+ <p>
2912
+ Set the scroll adjustments for the text view. Usually scrolled containers
2913
+ like <a class="link" href="GtkScrolledWindow.html" title="GtkScrolledWindow"><span class="type">GtkScrolledWindow</span></a> will emit this signal to connect two instances
2914
+ 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>.
2915
+ </p>
2916
+ <div class="variablelist"><table border="0">
2917
+ <col align="left" valign="top">
2918
+ <tbody>
2919
+ <tr>
2920
+ <td><p><span class="term"><em class="parameter"><code>horizontal</code></em> :</span></p></td>
2921
+ <td>the horizontal <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>
2922
+ </td>
2923
+ </tr>
2924
+ <tr>
2925
+ <td><p><span class="term"><em class="parameter"><code>vertical</code></em> :</span></p></td>
2926
+ <td>the vertical <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>
2927
+ </td>
2928
+ </tr>
2929
+ <tr>
2930
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2931
+ <td>user data set when the signal handler was connected.</td>
2932
+ </tr>
2933
+ </tbody>
2934
+ </table></div>
2935
+ </div>
2936
+ <hr>
2937
+ <div class="refsect2">
2938
+ <a name="GtkTextView-toggle-cursor-visible"></a><h3>The <code class="literal">"toggle-cursor-visible"</code> signal</h3>
2939
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
2940
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2941
+ <p>
2942
+ The ::toggle-cursor-visible signal is a
2943
+ <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2944
+ which gets emitted to toggle the visibility of the cursor.
2945
+ </p>
2946
+ <p>
2947
+ The default binding for this signal is F7.
2948
+ </p>
2949
+ <div class="variablelist"><table border="0">
2950
+ <col align="left" valign="top">
2951
+ <tbody>
2952
+ <tr>
2953
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2954
+ <td>the object which received the signal</td>
2955
+ </tr>
2956
+ <tr>
2957
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2958
+ <td>user data set when the signal handler was connected.</td>
2959
+ </tr>
2960
+ </tbody>
2961
+ </table></div>
2962
+ </div>
2963
+ <hr>
2964
+ <div class="refsect2">
2965
+ <a name="GtkTextView-toggle-overwrite"></a><h3>The <code class="literal">"toggle-overwrite"</code> signal</h3>
2966
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
2967
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2968
+ <p>
2969
+ The ::toggle-overwrite signal is a
2970
+ <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
2971
+ which gets emitted to toggle the overwrite mode of the text view.
2972
+ </p>
2973
+ <p>
2974
+ The default bindings for this signal is Insert.
2975
+ </p>
2976
+ <div class="variablelist"><table border="0">
2977
+ <col align="left" valign="top">
2978
+ <tbody>
2979
+ <tr>
2980
+ <td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
2981
+ <td>the object which received the signal</td>
2982
+ </tr>
2983
+ <tr>
2984
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2985
+ <td>user data set when the signal handler was connected.</td>
2986
+ </tr>
2987
+ </tbody>
2988
+ </table></div>
2989
+ </div>
2990
+ </div>
2991
+ <div class="refsect1">
2992
+ <a name="GtkTextView.see-also"></a><h2>See Also</h2>
2993
+ <p>
2994
+ <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>
2995
+ </p>
2996
+ </div>
2997
+ </div>
2998
+ <div class="footer">
2999
+ <hr>
3000
+ Generated by GTK-Doc V1.18</div>
3001
+ </body>
3002
+ </html>