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,3605 @@
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>GtkTextBuffer</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="GtkTextMark.html" title="GtkTextMark">
10
+ <link rel="next" href="GtkTextTag.html" title="GtkTextTag">
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="GtkTextMark.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="GtkTextTag.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="#GtkTextBuffer.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GtkTextBuffer.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GtkTextBuffer.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#GtkTextBuffer.properties" class="shortcut">Properties</a>
31
+  | 
32
+ <a href="#GtkTextBuffer.signals" class="shortcut">Signals</a>
33
+ </td></tr>
34
+ </table>
35
+ <div class="refentry">
36
+ <a name="GtkTextBuffer"></a><div class="titlepage"></div>
37
+ <div class="refnamediv"><table width="100%"><tr>
38
+ <td valign="top">
39
+ <h2><span class="refentrytitle"><a name="GtkTextBuffer.top_of_page"></a>GtkTextBuffer</span></h2>
40
+ <p>GtkTextBuffer — Stores attributed text for display in a GtkTextView</p>
41
+ </td>
42
+ <td valign="top" align="right"></td>
43
+ </tr></table></div>
44
+ <div class="refsynopsisdiv">
45
+ <a name="GtkTextBuffer.synopsis"></a><h2>Synopsis</h2>
46
+ <pre class="synopsis">
47
+ #include &lt;gtk/gtk.h&gt;
48
+
49
+ <a class="link" href="GtkTextBuffer.html#GtkTextBuffer-struct" title="GtkTextBuffer">GtkTextBuffer</a>;
50
+ <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="returnvalue">GtkTextBuffer</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-new" title="gtk_text_buffer_new ()">gtk_text_buffer_new</a> (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>);
51
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-line-count" title="gtk_text_buffer_get_line_count ()">gtk_text_buffer_get_line_count</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
52
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-char-count" title="gtk_text_buffer_get_char_count ()">gtk_text_buffer_get_char_count</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
53
+ <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="returnvalue">GtkTextTagTable</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-tag-table" title="gtk_text_buffer_get_tag_table ()">gtk_text_buffer_get_tag_table</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
54
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert" title="gtk_text_buffer_insert ()">gtk_text_buffer_insert</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
55
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
56
+ <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> *text</code></em>,
57
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>);
58
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-at-cursor" title="gtk_text_buffer_insert_at_cursor ()">gtk_text_buffer_insert_at_cursor</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
59
+ <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> *text</code></em>,
60
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>);
61
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-interactive" title="gtk_text_buffer_insert_interactive ()">gtk_text_buffer_insert_interactive</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
62
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
63
+ <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> *text</code></em>,
64
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>,
65
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</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="GtkTextBuffer.html#gtk-text-buffer-insert-interactive-at-cursor" title="gtk_text_buffer_insert_interactive_at_cursor ()">gtk_text_buffer_insert_interactive_at_cursor</a>
67
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
68
+ <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> *text</code></em>,
69
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>,
70
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);
71
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-range" title="gtk_text_buffer_insert_range ()">gtk_text_buffer_insert_range</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
72
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
73
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
74
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
75
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-range-interactive" title="gtk_text_buffer_insert_range_interactive ()">gtk_text_buffer_insert_range_interactive</a>
76
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
77
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
78
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
79
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
80
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);
81
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-with-tags" title="gtk_text_buffer_insert_with_tags ()">gtk_text_buffer_insert_with_tags</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
82
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
83
+ <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> *text</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> len</code></em>,
85
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *first_tag</code></em>,
86
+ <em class="parameter"><code>...</code></em>);
87
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-with-tags-by-name" title="gtk_text_buffer_insert_with_tags_by_name ()">gtk_text_buffer_insert_with_tags_by_name</a>
88
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
89
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
90
+ <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> *text</code></em>,
91
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>,
92
+ <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> *first_tag_name</code></em>,
93
+ <em class="parameter"><code>...</code></em>);
94
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete" title="gtk_text_buffer_delete ()">gtk_text_buffer_delete</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
95
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
96
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
97
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete-interactive" title="gtk_text_buffer_delete_interactive ()">gtk_text_buffer_delete_interactive</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
98
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start_iter</code></em>,
99
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end_iter</code></em>,
100
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);
101
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-backspace" title="gtk_text_buffer_backspace ()">gtk_text_buffer_backspace</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
102
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
103
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> interactive</code></em>,
104
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);
105
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-set-text" title="gtk_text_buffer_set_text ()">gtk_text_buffer_set_text</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
106
+ <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> *text</code></em>,
107
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>);
108
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-text" title="gtk_text_buffer_get_text ()">gtk_text_buffer_get_text</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
109
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
110
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
111
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> include_hidden_chars</code></em>);
112
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-slice" title="gtk_text_buffer_get_slice ()">gtk_text_buffer_get_slice</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
113
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
114
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
115
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> include_hidden_chars</code></em>);
116
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-pixbuf" title="gtk_text_buffer_insert_pixbuf ()">gtk_text_buffer_insert_pixbuf</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
117
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
118
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);
119
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-child-anchor" title="gtk_text_buffer_insert_child_anchor ()">gtk_text_buffer_insert_child_anchor</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
120
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
121
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);
122
+ <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="returnvalue">GtkTextChildAnchor</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-create-child-anchor" title="gtk_text_buffer_create_child_anchor ()">gtk_text_buffer_create_child_anchor</a>
123
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
124
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
125
+ <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-create-mark" title="gtk_text_buffer_create_mark ()">gtk_text_buffer_create_mark</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
126
+ <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> *mark_name</code></em>,
127
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>,
128
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> left_gravity</code></em>);
129
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-move-mark" title="gtk_text_buffer_move_mark ()">gtk_text_buffer_move_mark</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
130
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
131
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);
132
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-move-mark-by-name" title="gtk_text_buffer_move_mark_by_name ()">gtk_text_buffer_move_mark_by_name</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
133
+ <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>,
134
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);
135
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-add-mark" title="gtk_text_buffer_add_mark ()">gtk_text_buffer_add_mark</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
136
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
137
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);
138
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete-mark" title="gtk_text_buffer_delete_mark ()">gtk_text_buffer_delete_mark</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
139
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);
140
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete-mark-by-name" title="gtk_text_buffer_delete_mark_by_name ()">gtk_text_buffer_delete_mark_by_name</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
141
+ <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>);
142
+ <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-mark" title="gtk_text_buffer_get_mark ()">gtk_text_buffer_get_mark</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
143
+ <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>);
144
+ <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-insert" title="gtk_text_buffer_get_insert ()">gtk_text_buffer_get_insert</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
145
+ <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-selection-bound" title="gtk_text_buffer_get_selection_bound ()">gtk_text_buffer_get_selection_bound</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
146
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-has-selection" title="gtk_text_buffer_get_has_selection ()">gtk_text_buffer_get_has_selection</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
147
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-place-cursor" title="gtk_text_buffer_place_cursor ()">gtk_text_buffer_place_cursor</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
148
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);
149
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-select-range" title="gtk_text_buffer_select_range ()">gtk_text_buffer_select_range</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
150
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *ins</code></em>,
151
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *bound</code></em>);
152
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-apply-tag" title="gtk_text_buffer_apply_tag ()">gtk_text_buffer_apply_tag</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
153
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
154
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
155
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
156
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-remove-tag" title="gtk_text_buffer_remove_tag ()">gtk_text_buffer_remove_tag</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
157
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
158
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
159
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
160
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-apply-tag-by-name" title="gtk_text_buffer_apply_tag_by_name ()">gtk_text_buffer_apply_tag_by_name</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
161
+ <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>,
162
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
163
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
164
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-remove-tag-by-name" title="gtk_text_buffer_remove_tag_by_name ()">gtk_text_buffer_remove_tag_by_name</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
165
+ <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>,
166
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
167
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
168
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-remove-all-tags" title="gtk_text_buffer_remove_all_tags ()">gtk_text_buffer_remove_all_tags</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
169
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
170
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
171
+ <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="returnvalue">GtkTextTag</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-create-tag" title="gtk_text_buffer_create_tag ()">gtk_text_buffer_create_tag</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
172
+ <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> *tag_name</code></em>,
173
+ <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> *first_property_name</code></em>,
174
+ <em class="parameter"><code>...</code></em>);
175
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-iter-at-line-offset" title="gtk_text_buffer_get_iter_at_line_offset ()">gtk_text_buffer_get_iter_at_line_offset</a>
176
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
177
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
178
+ <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_number</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> char_offset</code></em>);
180
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-iter-at-offset" title="gtk_text_buffer_get_iter_at_offset ()">gtk_text_buffer_get_iter_at_offset</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
181
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
182
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> char_offset</code></em>);
183
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-iter-at-line" title="gtk_text_buffer_get_iter_at_line ()">gtk_text_buffer_get_iter_at_line</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
184
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
185
+ <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_number</code></em>);
186
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-iter-at-line-index" title="gtk_text_buffer_get_iter_at_line_index ()">gtk_text_buffer_get_iter_at_line_index</a>
187
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
188
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</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> line_number</code></em>,
190
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> byte_index</code></em>);
191
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-iter-at-mark" title="gtk_text_buffer_get_iter_at_mark ()">gtk_text_buffer_get_iter_at_mark</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
192
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
193
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);
194
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-iter-at-child-anchor" title="gtk_text_buffer_get_iter_at_child_anchor ()">gtk_text_buffer_get_iter_at_child_anchor</a>
195
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
196
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
197
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);
198
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-start-iter" title="gtk_text_buffer_get_start_iter ()">gtk_text_buffer_get_start_iter</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
199
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
200
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-end-iter" title="gtk_text_buffer_get_end_iter ()">gtk_text_buffer_get_end_iter</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
201
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
202
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-bounds" title="gtk_text_buffer_get_bounds ()">gtk_text_buffer_get_bounds</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
203
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
204
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
205
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-modified" title="gtk_text_buffer_get_modified ()">gtk_text_buffer_get_modified</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
206
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-set-modified" title="gtk_text_buffer_set_modified ()">gtk_text_buffer_set_modified</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
207
+ <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>);
208
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete-selection" title="gtk_text_buffer_delete_selection ()">gtk_text_buffer_delete_selection</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
209
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> interactive</code></em>,
210
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);
211
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-paste-clipboard" title="gtk_text_buffer_paste_clipboard ()">gtk_text_buffer_paste_clipboard</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
212
+ <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
213
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *override_location</code></em>,
214
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);
215
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-copy-clipboard" title="gtk_text_buffer_copy_clipboard ()">gtk_text_buffer_copy_clipboard</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
216
+ <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);
217
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-cut-clipboard" title="gtk_text_buffer_cut_clipboard ()">gtk_text_buffer_cut_clipboard</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
218
+ <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
219
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);
220
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-selection-bounds" title="gtk_text_buffer_get_selection_bounds ()">gtk_text_buffer_get_selection_bounds</a>
221
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
222
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
223
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
224
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-begin-user-action" title="gtk_text_buffer_begin_user_action ()">gtk_text_buffer_begin_user_action</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
225
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-end-user-action" title="gtk_text_buffer_end_user_action ()">gtk_text_buffer_end_user_action</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
226
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-add-selection-clipboard" title="gtk_text_buffer_add_selection_clipboard ()">gtk_text_buffer_add_selection_clipboard</a>
227
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
228
+ <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);
229
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-remove-selection-clipboard" title="gtk_text_buffer_remove_selection_clipboard ()">gtk_text_buffer_remove_selection_clipboard</a>
230
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
231
+ <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);
232
+
233
+ enum <a class="link" href="GtkTextBuffer.html#GtkTextBufferTargetInfo" title="enum GtkTextBufferTargetInfo">GtkTextBufferTargetInfo</a>;
234
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> (<a class="link" href="GtkTextBuffer.html#GtkTextBufferDeserializeFunc" title="GtkTextBufferDeserializeFunc ()">*GtkTextBufferDeserializeFunc</a>) (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *register_buffer</code></em>,
235
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
236
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
237
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> *data</code></em>,
238
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> length</code></em>,
239
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> create_tags</code></em>,
240
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
241
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);
242
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-deserialize" title="gtk_text_buffer_deserialize ()">gtk_text_buffer_deserialize</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *register_buffer</code></em>,
243
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
244
+ <em class="parameter"><code><a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
245
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
246
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> *data</code></em>,
247
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> length</code></em>,
248
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);
249
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-deserialize-get-can-create-tags" title="gtk_text_buffer_deserialize_get_can_create_tags ()">gtk_text_buffer_deserialize_get_can_create_tags</a>
250
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
251
+ <em class="parameter"><code><a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>);
252
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-deserialize-set-can-create-tags" title="gtk_text_buffer_deserialize_set_can_create_tags ()">gtk_text_buffer_deserialize_set_can_create_tags</a>
253
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
254
+ <em class="parameter"><code><a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
255
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> can_create_tags</code></em>);
256
+ <a class="link" href="gtk-Selections.html#GtkTargetList"><span class="returnvalue">GtkTargetList</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-copy-target-list" title="gtk_text_buffer_get_copy_target_list ()">gtk_text_buffer_get_copy_target_list</a>
257
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
258
+ <a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-deserialize-formats" title="gtk_text_buffer_get_deserialize_formats ()">gtk_text_buffer_get_deserialize_formats</a>
259
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
260
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *n_formats</code></em>);
261
+ <a class="link" href="gtk-Selections.html#GtkTargetList"><span class="returnvalue">GtkTargetList</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-paste-target-list" title="gtk_text_buffer_get_paste_target_list ()">gtk_text_buffer_get_paste_target_list</a>
262
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
263
+ <a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-serialize-formats" title="gtk_text_buffer_get_serialize_formats ()">gtk_text_buffer_get_serialize_formats</a>
264
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
265
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *n_formats</code></em>);
266
+ <a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-deserialize-format" title="gtk_text_buffer_register_deserialize_format ()">gtk_text_buffer_register_deserialize_format</a>
267
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
268
+ <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> *mime_type</code></em>,
269
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html#GtkTextBufferDeserializeFunc" title="GtkTextBufferDeserializeFunc ()"><span class="type">GtkTextBufferDeserializeFunc</span></a> function</code></em>,
270
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
271
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> user_data_destroy</code></em>);
272
+ <a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-deserialize-tagset" title="gtk_text_buffer_register_deserialize_tagset ()">gtk_text_buffer_register_deserialize_tagset</a>
273
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
274
+ <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> *tagset_name</code></em>);
275
+ <a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-serialize-format" title="gtk_text_buffer_register_serialize_format ()">gtk_text_buffer_register_serialize_format</a>
276
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
277
+ <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> *mime_type</code></em>,
278
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html#GtkTextBufferSerializeFunc" title="GtkTextBufferSerializeFunc ()"><span class="type">GtkTextBufferSerializeFunc</span></a> function</code></em>,
279
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
280
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> user_data_destroy</code></em>);
281
+ <a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-serialize-tagset" title="gtk_text_buffer_register_serialize_tagset ()">gtk_text_buffer_register_serialize_tagset</a>
282
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
283
+ <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> *tagset_name</code></em>);
284
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="returnvalue">guint8</span></a> * (<a class="link" href="GtkTextBuffer.html#GtkTextBufferSerializeFunc" title="GtkTextBufferSerializeFunc ()">*GtkTextBufferSerializeFunc</a>) (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *register_buffer</code></em>,
285
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
286
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
287
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
288
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> *length</code></em>,
289
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);
290
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="returnvalue">guint8</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-serialize" title="gtk_text_buffer_serialize ()">gtk_text_buffer_serialize</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *register_buffer</code></em>,
291
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
292
+ <em class="parameter"><code><a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
293
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
294
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
295
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> *length</code></em>);
296
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-unregister-deserialize-format" title="gtk_text_buffer_unregister_deserialize_format ()">gtk_text_buffer_unregister_deserialize_format</a>
297
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
298
+ <em class="parameter"><code><a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>);
299
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-unregister-serialize-format" title="gtk_text_buffer_unregister_serialize_format ()">gtk_text_buffer_unregister_serialize_format</a>
300
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
301
+ <em class="parameter"><code><a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>);
302
+ </pre>
303
+ </div>
304
+ <div class="refsect1">
305
+ <a name="GtkTextBuffer.object-hierarchy"></a><h2>Object Hierarchy</h2>
306
+ <pre class="synopsis">
307
+ <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
308
+ +----GtkTextBuffer
309
+ </pre>
310
+ </div>
311
+ <div class="refsect1">
312
+ <a name="GtkTextBuffer.properties"></a><h2>Properties</h2>
313
+ <pre class="synopsis">
314
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer--copy-target-list" title='The "copy-target-list" property'>copy-target-list</a>" <a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a>* : Read
315
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer--cursor-position" title='The "cursor-position" property'>cursor-position</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read
316
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer--has-selection" title='The "has-selection" property'>has-selection</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read
317
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer--paste-target-list" title='The "paste-target-list" property'>paste-target-list</a>" <a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a>* : Read
318
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer--tag-table" title='The "tag-table" property'>tag-table</a>" <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>* : Read / Write / Construct Only
319
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer--text" title='The "text" property'>text</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
320
+ </pre>
321
+ </div>
322
+ <div class="refsect1">
323
+ <a name="GtkTextBuffer.signals"></a><h2>Signals</h2>
324
+ <pre class="synopsis">
325
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-apply-tag" title='The "apply-tag" signal'>apply-tag</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>
326
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-begin-user-action" title='The "begin-user-action" signal'>begin-user-action</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>
327
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-changed" title='The "changed" signal'>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>
328
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-delete-range" title='The "delete-range" signal'>delete-range</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>
329
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-end-user-action" title='The "end-user-action" signal'>end-user-action</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>
330
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-insert-child-anchor" title='The "insert-child-anchor" signal'>insert-child-anchor</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>
331
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-insert-pixbuf" title='The "insert-pixbuf" signal'>insert-pixbuf</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>
332
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-insert-text" title='The "insert-text" signal'>insert-text</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>
333
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-mark-deleted" title='The "mark-deleted" signal'>mark-deleted</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>
334
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-mark-set" title='The "mark-set" signal'>mark-set</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>
335
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-modified-changed" title='The "modified-changed" signal'>modified-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>
336
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-paste-done" title='The "paste-done" signal'>paste-done</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>
337
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-remove-tag" title='The "remove-tag" signal'>remove-tag</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>
338
+ </pre>
339
+ </div>
340
+ <div class="refsect1">
341
+ <a name="GtkTextBuffer.description"></a><h2>Description</h2>
342
+ <p>
343
+ You may wish to begin by reading the <a class="link" href="TextWidget.html" title="Text Widget Overview">text widget
344
+ conceptual overview</a> which gives an overview of all the objects and data
345
+ types related to the text widget and how they work together.
346
+ </p>
347
+ <p>
348
+ </p>
349
+ </div>
350
+ <div class="refsect1">
351
+ <a name="GtkTextBuffer.details"></a><h2>Details</h2>
352
+ <div class="refsect2">
353
+ <a name="GtkTextBuffer-struct"></a><h3>GtkTextBuffer</h3>
354
+ <pre class="programlisting">typedef struct _GtkTextBuffer GtkTextBuffer;</pre>
355
+ <p>
356
+ </p>
357
+ </div>
358
+ <hr>
359
+ <div class="refsect2">
360
+ <a name="gtk-text-buffer-new"></a><h3>gtk_text_buffer_new ()</h3>
361
+ <pre class="programlisting"><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="returnvalue">GtkTextBuffer</span></a> * gtk_text_buffer_new (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>);</pre>
362
+ <p>
363
+ Creates a new text buffer.
364
+ </p>
365
+ <div class="variablelist"><table border="0">
366
+ <col align="left" valign="top">
367
+ <tbody>
368
+ <tr>
369
+ <td><p><span class="term"><em class="parameter"><code>table</code></em> :</span></p></td>
370
+ <td>a tag table, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to create a new one. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
371
+ </td>
372
+ </tr>
373
+ <tr>
374
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
375
+ <td>a new text buffer</td>
376
+ </tr>
377
+ </tbody>
378
+ </table></div>
379
+ </div>
380
+ <hr>
381
+ <div class="refsect2">
382
+ <a name="gtk-text-buffer-get-line-count"></a><h3>gtk_text_buffer_get_line_count ()</h3>
383
+ <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_buffer_get_line_count (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
384
+ <p>
385
+ Obtains the number of lines in the buffer. This value is cached, so
386
+ the function is very fast.
387
+ </p>
388
+ <div class="variablelist"><table border="0">
389
+ <col align="left" valign="top">
390
+ <tbody>
391
+ <tr>
392
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
393
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
394
+ </td>
395
+ </tr>
396
+ <tr>
397
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
398
+ <td>number of lines in the buffer</td>
399
+ </tr>
400
+ </tbody>
401
+ </table></div>
402
+ </div>
403
+ <hr>
404
+ <div class="refsect2">
405
+ <a name="gtk-text-buffer-get-char-count"></a><h3>gtk_text_buffer_get_char_count ()</h3>
406
+ <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_buffer_get_char_count (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
407
+ <p>
408
+ Gets the number of characters in the buffer; note that characters
409
+ and bytes are not the same, you can't e.g. expect the contents of
410
+ the buffer in string form to be this many bytes long. The character
411
+ count is cached, so this function is very fast.
412
+ </p>
413
+ <div class="variablelist"><table border="0">
414
+ <col align="left" valign="top">
415
+ <tbody>
416
+ <tr>
417
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
418
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
419
+ </td>
420
+ </tr>
421
+ <tr>
422
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
423
+ <td>number of characters in the buffer</td>
424
+ </tr>
425
+ </tbody>
426
+ </table></div>
427
+ </div>
428
+ <hr>
429
+ <div class="refsect2">
430
+ <a name="gtk-text-buffer-get-tag-table"></a><h3>gtk_text_buffer_get_tag_table ()</h3>
431
+ <pre class="programlisting"><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="returnvalue">GtkTextTagTable</span></a> * gtk_text_buffer_get_tag_table (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
432
+ <p>
433
+ Get the <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> associated with this buffer.
434
+ </p>
435
+ <div class="variablelist"><table border="0">
436
+ <col align="left" valign="top">
437
+ <tbody>
438
+ <tr>
439
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
440
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
441
+ </td>
442
+ </tr>
443
+ <tr>
444
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
445
+ <td>the buffer's tag table. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
446
+ </td>
447
+ </tr>
448
+ </tbody>
449
+ </table></div>
450
+ </div>
451
+ <hr>
452
+ <div class="refsect2">
453
+ <a name="gtk-text-buffer-insert"></a><h3>gtk_text_buffer_insert ()</h3>
454
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_insert (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
455
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
456
+ <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> *text</code></em>,
457
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>);</pre>
458
+ <p>
459
+ Inserts <em class="parameter"><code>len</code></em> bytes of <em class="parameter"><code>text</code></em> at position <em class="parameter"><code>iter</code></em>. If <em class="parameter"><code>len</code></em> is -1,
460
+ <em class="parameter"><code>text</code></em> must be nul-terminated and will be inserted in its
461
+ entirety. Emits the "insert-text" signal; insertion actually occurs
462
+ in the default handler for the signal. <em class="parameter"><code>iter</code></em> is invalidated when
463
+ insertion occurs (because the buffer contents change), but the
464
+ default signal handler revalidates it to point to the end of the
465
+ inserted text.
466
+ </p>
467
+ <div class="variablelist"><table border="0">
468
+ <col align="left" valign="top">
469
+ <tbody>
470
+ <tr>
471
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
472
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
473
+ </td>
474
+ </tr>
475
+ <tr>
476
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
477
+ <td>a position in the buffer</td>
478
+ </tr>
479
+ <tr>
480
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
481
+ <td>text in UTF-8 format</td>
482
+ </tr>
483
+ <tr>
484
+ <td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
485
+ <td>length of text in bytes, or -1</td>
486
+ </tr>
487
+ </tbody>
488
+ </table></div>
489
+ </div>
490
+ <hr>
491
+ <div class="refsect2">
492
+ <a name="gtk-text-buffer-insert-at-cursor"></a><h3>gtk_text_buffer_insert_at_cursor ()</h3>
493
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_insert_at_cursor (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
494
+ <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> *text</code></em>,
495
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>);</pre>
496
+ <p>
497
+ Simply calls <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert" title="gtk_text_buffer_insert ()"><code class="function">gtk_text_buffer_insert()</code></a>, using the current
498
+ cursor position as the insertion point.
499
+ </p>
500
+ <div class="variablelist"><table border="0">
501
+ <col align="left" valign="top">
502
+ <tbody>
503
+ <tr>
504
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
505
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
506
+ </td>
507
+ </tr>
508
+ <tr>
509
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
510
+ <td>text in UTF-8 format</td>
511
+ </tr>
512
+ <tr>
513
+ <td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
514
+ <td>length of text, in bytes</td>
515
+ </tr>
516
+ </tbody>
517
+ </table></div>
518
+ </div>
519
+ <hr>
520
+ <div class="refsect2">
521
+ <a name="gtk-text-buffer-insert-interactive"></a><h3>gtk_text_buffer_insert_interactive ()</h3>
522
+ <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_buffer_insert_interactive (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
523
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
524
+ <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> *text</code></em>,
525
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>,
526
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);</pre>
527
+ <p>
528
+ Like <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert" title="gtk_text_buffer_insert ()"><code class="function">gtk_text_buffer_insert()</code></a>, but the insertion will not occur if
529
+ <em class="parameter"><code>iter</code></em> is at a non-editable location in the buffer. Usually you
530
+ want to prevent insertions at ineditable locations if the insertion
531
+ results from a user action (is interactive).
532
+ </p>
533
+ <p>
534
+ <em class="parameter"><code>default_editable</code></em> indicates the editability of text that doesn't
535
+ have a tag affecting editability applied to it. Typically the
536
+ result of <a class="link" href="GtkTextView.html#gtk-text-view-get-editable" title="gtk_text_view_get_editable ()"><code class="function">gtk_text_view_get_editable()</code></a> is appropriate here.
537
+ </p>
538
+ <div class="variablelist"><table border="0">
539
+ <col align="left" valign="top">
540
+ <tbody>
541
+ <tr>
542
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
543
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
544
+ </td>
545
+ </tr>
546
+ <tr>
547
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
548
+ <td>a position in <em class="parameter"><code>buffer</code></em>
549
+ </td>
550
+ </tr>
551
+ <tr>
552
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
553
+ <td>some UTF-8 text</td>
554
+ </tr>
555
+ <tr>
556
+ <td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
557
+ <td>length of text in bytes, or -1</td>
558
+ </tr>
559
+ <tr>
560
+ <td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
561
+ <td>default editability of buffer</td>
562
+ </tr>
563
+ <tr>
564
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
565
+ <td>whether text was actually inserted</td>
566
+ </tr>
567
+ </tbody>
568
+ </table></div>
569
+ </div>
570
+ <hr>
571
+ <div class="refsect2">
572
+ <a name="gtk-text-buffer-insert-interactive-at-cursor"></a><h3>gtk_text_buffer_insert_interactive_at_cursor ()</h3>
573
+ <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_buffer_insert_interactive_at_cursor
574
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
575
+ <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> *text</code></em>,
576
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>,
577
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);</pre>
578
+ <p>
579
+ Calls <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-interactive" title="gtk_text_buffer_insert_interactive ()"><code class="function">gtk_text_buffer_insert_interactive()</code></a> at the cursor
580
+ position.
581
+ </p>
582
+ <p>
583
+ <em class="parameter"><code>default_editable</code></em> indicates the editability of text that doesn't
584
+ have a tag affecting editability applied to it. Typically the
585
+ result of <a class="link" href="GtkTextView.html#gtk-text-view-get-editable" title="gtk_text_view_get_editable ()"><code class="function">gtk_text_view_get_editable()</code></a> is appropriate here.
586
+ </p>
587
+ <div class="variablelist"><table border="0">
588
+ <col align="left" valign="top">
589
+ <tbody>
590
+ <tr>
591
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
592
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
593
+ </td>
594
+ </tr>
595
+ <tr>
596
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
597
+ <td>text in UTF-8 format</td>
598
+ </tr>
599
+ <tr>
600
+ <td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
601
+ <td>length of text in bytes, or -1</td>
602
+ </tr>
603
+ <tr>
604
+ <td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
605
+ <td>default editability of buffer</td>
606
+ </tr>
607
+ <tr>
608
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
609
+ <td>whether text was actually inserted</td>
610
+ </tr>
611
+ </tbody>
612
+ </table></div>
613
+ </div>
614
+ <hr>
615
+ <div class="refsect2">
616
+ <a name="gtk-text-buffer-insert-range"></a><h3>gtk_text_buffer_insert_range ()</h3>
617
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_insert_range (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
618
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
619
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
620
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
621
+ <p>
622
+ Copies text, tags, and pixbufs between <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> (the order
623
+ of <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> doesn't matter) and inserts the copy at <em class="parameter"><code>iter</code></em>.
624
+ Used instead of simply getting/inserting text because it preserves
625
+ images and tags. If <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> are in a different buffer from
626
+ <em class="parameter"><code>buffer</code></em>, the two buffers must share the same tag table.
627
+ </p>
628
+ <p>
629
+ Implemented via emissions of the insert_text and apply_tag signals,
630
+ so expect those.
631
+ </p>
632
+ <div class="variablelist"><table border="0">
633
+ <col align="left" valign="top">
634
+ <tbody>
635
+ <tr>
636
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
637
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
638
+ </td>
639
+ </tr>
640
+ <tr>
641
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
642
+ <td>a position in <em class="parameter"><code>buffer</code></em>
643
+ </td>
644
+ </tr>
645
+ <tr>
646
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
647
+ <td>a position in a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
648
+ </td>
649
+ </tr>
650
+ <tr>
651
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
652
+ <td>another position in the same buffer as <em class="parameter"><code>start</code></em>
653
+ </td>
654
+ </tr>
655
+ </tbody>
656
+ </table></div>
657
+ </div>
658
+ <hr>
659
+ <div class="refsect2">
660
+ <a name="gtk-text-buffer-insert-range-interactive"></a><h3>gtk_text_buffer_insert_range_interactive ()</h3>
661
+ <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_buffer_insert_range_interactive
662
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
663
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
664
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
665
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
666
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);</pre>
667
+ <p>
668
+ Same as <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-range" title="gtk_text_buffer_insert_range ()"><code class="function">gtk_text_buffer_insert_range()</code></a>, but does nothing if the
669
+ insertion point isn't editable. The <em class="parameter"><code>default_editable</code></em> parameter
670
+ indicates whether the text is editable at <em class="parameter"><code>iter</code></em> if no tags
671
+ enclosing <em class="parameter"><code>iter</code></em> affect editability. Typically the result of
672
+ <a class="link" href="GtkTextView.html#gtk-text-view-get-editable" title="gtk_text_view_get_editable ()"><code class="function">gtk_text_view_get_editable()</code></a> is appropriate here.
673
+ </p>
674
+ <div class="variablelist"><table border="0">
675
+ <col align="left" valign="top">
676
+ <tbody>
677
+ <tr>
678
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
679
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
680
+ </td>
681
+ </tr>
682
+ <tr>
683
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
684
+ <td>a position in <em class="parameter"><code>buffer</code></em>
685
+ </td>
686
+ </tr>
687
+ <tr>
688
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
689
+ <td>a position in a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
690
+ </td>
691
+ </tr>
692
+ <tr>
693
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
694
+ <td>another position in the same buffer as <em class="parameter"><code>start</code></em>
695
+ </td>
696
+ </tr>
697
+ <tr>
698
+ <td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
699
+ <td>default editability of the buffer</td>
700
+ </tr>
701
+ <tr>
702
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
703
+ <td>whether an insertion was possible at <em class="parameter"><code>iter</code></em>
704
+ </td>
705
+ </tr>
706
+ </tbody>
707
+ </table></div>
708
+ </div>
709
+ <hr>
710
+ <div class="refsect2">
711
+ <a name="gtk-text-buffer-insert-with-tags"></a><h3>gtk_text_buffer_insert_with_tags ()</h3>
712
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_insert_with_tags (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
713
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
714
+ <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> *text</code></em>,
715
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>,
716
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *first_tag</code></em>,
717
+ <em class="parameter"><code>...</code></em>);</pre>
718
+ <p>
719
+ Inserts <em class="parameter"><code>text</code></em> into <em class="parameter"><code>buffer</code></em> at <em class="parameter"><code>iter</code></em>, applying the list of tags to
720
+ the newly-inserted text. The last tag specified must be NULL to
721
+ terminate the list. Equivalent to calling <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert" title="gtk_text_buffer_insert ()"><code class="function">gtk_text_buffer_insert()</code></a>,
722
+ then <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-apply-tag" title="gtk_text_buffer_apply_tag ()"><code class="function">gtk_text_buffer_apply_tag()</code></a> on the inserted text;
723
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-with-tags" title="gtk_text_buffer_insert_with_tags ()"><code class="function">gtk_text_buffer_insert_with_tags()</code></a> is just a convenience function.
724
+ </p>
725
+ <div class="variablelist"><table border="0">
726
+ <col align="left" valign="top">
727
+ <tbody>
728
+ <tr>
729
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
730
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
731
+ </td>
732
+ </tr>
733
+ <tr>
734
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
735
+ <td>an iterator in <em class="parameter"><code>buffer</code></em>
736
+ </td>
737
+ </tr>
738
+ <tr>
739
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
740
+ <td>UTF-8 text</td>
741
+ </tr>
742
+ <tr>
743
+ <td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
744
+ <td>length of <em class="parameter"><code>text</code></em>, or -1</td>
745
+ </tr>
746
+ <tr>
747
+ <td><p><span class="term"><em class="parameter"><code>first_tag</code></em> :</span></p></td>
748
+ <td>first tag to apply to <em class="parameter"><code>text</code></em>
749
+ </td>
750
+ </tr>
751
+ </tbody>
752
+ </table></div>
753
+ </div>
754
+ <hr>
755
+ <div class="refsect2">
756
+ <a name="gtk-text-buffer-insert-with-tags-by-name"></a><h3>gtk_text_buffer_insert_with_tags_by_name ()</h3>
757
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_insert_with_tags_by_name
758
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
759
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
760
+ <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> *text</code></em>,
761
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>,
762
+ <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> *first_tag_name</code></em>,
763
+ <em class="parameter"><code>...</code></em>);</pre>
764
+ <p>
765
+ Same as <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-with-tags" title="gtk_text_buffer_insert_with_tags ()"><code class="function">gtk_text_buffer_insert_with_tags()</code></a>, but allows you
766
+ to pass in tag names instead of tag objects.
767
+ </p>
768
+ <div class="variablelist"><table border="0">
769
+ <col align="left" valign="top">
770
+ <tbody>
771
+ <tr>
772
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
773
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
774
+ </td>
775
+ </tr>
776
+ <tr>
777
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
778
+ <td>position in <em class="parameter"><code>buffer</code></em>
779
+ </td>
780
+ </tr>
781
+ <tr>
782
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
783
+ <td>UTF-8 text</td>
784
+ </tr>
785
+ <tr>
786
+ <td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
787
+ <td>length of <em class="parameter"><code>text</code></em>, or -1</td>
788
+ </tr>
789
+ <tr>
790
+ <td><p><span class="term"><em class="parameter"><code>first_tag_name</code></em> :</span></p></td>
791
+ <td>name of a tag to apply to <em class="parameter"><code>text</code></em>
792
+ </td>
793
+ </tr>
794
+ </tbody>
795
+ </table></div>
796
+ </div>
797
+ <hr>
798
+ <div class="refsect2">
799
+ <a name="gtk-text-buffer-delete"></a><h3>gtk_text_buffer_delete ()</h3>
800
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_delete (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
801
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
802
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
803
+ <p>
804
+ Deletes text between <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em>. The order of <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em>
805
+ is not actually relevant; <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete" title="gtk_text_buffer_delete ()"><code class="function">gtk_text_buffer_delete()</code></a> will reorder
806
+ them. This function actually emits the "delete-range" signal, and
807
+ the default handler of that signal deletes the text. Because the
808
+ buffer is modified, all outstanding iterators become invalid after
809
+ calling this function; however, the <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> will be
810
+ re-initialized to point to the location where text was deleted.
811
+ </p>
812
+ <div class="variablelist"><table border="0">
813
+ <col align="left" valign="top">
814
+ <tbody>
815
+ <tr>
816
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
817
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
818
+ </td>
819
+ </tr>
820
+ <tr>
821
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
822
+ <td>a position in <em class="parameter"><code>buffer</code></em>
823
+ </td>
824
+ </tr>
825
+ <tr>
826
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
827
+ <td>another position in <em class="parameter"><code>buffer</code></em>
828
+ </td>
829
+ </tr>
830
+ </tbody>
831
+ </table></div>
832
+ </div>
833
+ <hr>
834
+ <div class="refsect2">
835
+ <a name="gtk-text-buffer-delete-interactive"></a><h3>gtk_text_buffer_delete_interactive ()</h3>
836
+ <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_buffer_delete_interactive (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
837
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start_iter</code></em>,
838
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end_iter</code></em>,
839
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);</pre>
840
+ <p>
841
+ Deletes all <span class="emphasis"><em>editable</em></span> text in the given range.
842
+ Calls <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete" title="gtk_text_buffer_delete ()"><code class="function">gtk_text_buffer_delete()</code></a> for each editable sub-range of
843
+ [<em class="parameter"><code>start</code></em>,<em class="parameter"><code>end</code></em>). <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> are revalidated to point to
844
+ the location of the last deleted range, or left untouched if
845
+ no text was deleted.
846
+ </p>
847
+ <div class="variablelist"><table border="0">
848
+ <col align="left" valign="top">
849
+ <tbody>
850
+ <tr>
851
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
852
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
853
+ </td>
854
+ </tr>
855
+ <tr>
856
+ <td><p><span class="term"><em class="parameter"><code>start_iter</code></em> :</span></p></td>
857
+ <td>start of range to delete</td>
858
+ </tr>
859
+ <tr>
860
+ <td><p><span class="term"><em class="parameter"><code>end_iter</code></em> :</span></p></td>
861
+ <td>end of range</td>
862
+ </tr>
863
+ <tr>
864
+ <td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
865
+ <td>whether the buffer is editable by default</td>
866
+ </tr>
867
+ <tr>
868
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
869
+ <td>whether some text was actually deleted</td>
870
+ </tr>
871
+ </tbody>
872
+ </table></div>
873
+ </div>
874
+ <hr>
875
+ <div class="refsect2">
876
+ <a name="gtk-text-buffer-backspace"></a><h3>gtk_text_buffer_backspace ()</h3>
877
+ <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_buffer_backspace (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
878
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
879
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> interactive</code></em>,
880
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);</pre>
881
+ <p>
882
+ Performs the appropriate action as if the user hit the delete
883
+ key with the cursor at the position specified by <em class="parameter"><code>iter</code></em>. In the
884
+ normal case a single character will be deleted, but when
885
+ combining accents are involved, more than one character can
886
+ be deleted, and when precomposed character and accent combinations
887
+ are involved, less than one character will be deleted.
888
+ </p>
889
+ <p>
890
+ Because the buffer is modified, all outstanding iterators become
891
+ invalid after calling this function; however, the <em class="parameter"><code>iter</code></em> will be
892
+ re-initialized to point to the location where text was deleted.
893
+ </p>
894
+ <div class="variablelist"><table border="0">
895
+ <col align="left" valign="top">
896
+ <tbody>
897
+ <tr>
898
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
899
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
900
+ </td>
901
+ </tr>
902
+ <tr>
903
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
904
+ <td>a position in <em class="parameter"><code>buffer</code></em>
905
+ </td>
906
+ </tr>
907
+ <tr>
908
+ <td><p><span class="term"><em class="parameter"><code>interactive</code></em> :</span></p></td>
909
+ <td>whether the deletion is caused by user interaction</td>
910
+ </tr>
911
+ <tr>
912
+ <td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
913
+ <td>whether the buffer is editable by default</td>
914
+ </tr>
915
+ <tr>
916
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
917
+ <td>
918
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the buffer was modified</td>
919
+ </tr>
920
+ </tbody>
921
+ </table></div>
922
+ <p class="since">Since 2.6</p>
923
+ </div>
924
+ <hr>
925
+ <div class="refsect2">
926
+ <a name="gtk-text-buffer-set-text"></a><h3>gtk_text_buffer_set_text ()</h3>
927
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_set_text (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
928
+ <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> *text</code></em>,
929
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>);</pre>
930
+ <p>
931
+ Deletes current contents of <em class="parameter"><code>buffer</code></em>, and inserts <em class="parameter"><code>text</code></em> instead. If
932
+ <em class="parameter"><code>len</code></em> is -1, <em class="parameter"><code>text</code></em> must be nul-terminated. <em class="parameter"><code>text</code></em> must be valid UTF-8.
933
+ </p>
934
+ <div class="variablelist"><table border="0">
935
+ <col align="left" valign="top">
936
+ <tbody>
937
+ <tr>
938
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
939
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
940
+ </td>
941
+ </tr>
942
+ <tr>
943
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
944
+ <td>UTF-8 text to insert</td>
945
+ </tr>
946
+ <tr>
947
+ <td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
948
+ <td>length of <em class="parameter"><code>text</code></em> in bytes</td>
949
+ </tr>
950
+ </tbody>
951
+ </table></div>
952
+ </div>
953
+ <hr>
954
+ <div class="refsect2">
955
+ <a name="gtk-text-buffer-get-text"></a><h3>gtk_text_buffer_get_text ()</h3>
956
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_text_buffer_get_text (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
957
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
958
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
959
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> include_hidden_chars</code></em>);</pre>
960
+ <p>
961
+ Returns the text in the range [<em class="parameter"><code>start</code></em>,<em class="parameter"><code>end</code></em>). Excludes undisplayed
962
+ text (text marked with tags that set the invisibility attribute) if
963
+ <em class="parameter"><code>include_hidden_chars</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>. Does not include characters
964
+ representing embedded images, so byte and character indexes into
965
+ the returned string do <span class="emphasis"><em>not</em></span> correspond to byte
966
+ and character indexes into the buffer. Contrast with
967
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-slice" title="gtk_text_buffer_get_slice ()"><code class="function">gtk_text_buffer_get_slice()</code></a>.
968
+ </p>
969
+ <div class="variablelist"><table border="0">
970
+ <col align="left" valign="top">
971
+ <tbody>
972
+ <tr>
973
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
974
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
975
+ </td>
976
+ </tr>
977
+ <tr>
978
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
979
+ <td>start of a range</td>
980
+ </tr>
981
+ <tr>
982
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
983
+ <td>end of a range</td>
984
+ </tr>
985
+ <tr>
986
+ <td><p><span class="term"><em class="parameter"><code>include_hidden_chars</code></em> :</span></p></td>
987
+ <td>whether to include invisible text</td>
988
+ </tr>
989
+ <tr>
990
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
991
+ <td>an allocated UTF-8 string</td>
992
+ </tr>
993
+ </tbody>
994
+ </table></div>
995
+ </div>
996
+ <hr>
997
+ <div class="refsect2">
998
+ <a name="gtk-text-buffer-get-slice"></a><h3>gtk_text_buffer_get_slice ()</h3>
999
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_text_buffer_get_slice (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1000
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
1001
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
1002
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> include_hidden_chars</code></em>);</pre>
1003
+ <p>
1004
+ Returns the text in the range [<em class="parameter"><code>start</code></em>,<em class="parameter"><code>end</code></em>). Excludes undisplayed
1005
+ text (text marked with tags that set the invisibility attribute) if
1006
+ <em class="parameter"><code>include_hidden_chars</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 returned string includes a
1007
+ 0xFFFC character whenever the buffer contains
1008
+ embedded images, so byte and character indexes into
1009
+ the returned string <span class="emphasis"><em>do</em></span> correspond to byte
1010
+ and character indexes into the buffer. Contrast with
1011
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-text" title="gtk_text_buffer_get_text ()"><code class="function">gtk_text_buffer_get_text()</code></a>. Note that 0xFFFC can occur in normal
1012
+ text as well, so it is not a reliable indicator that a pixbuf or
1013
+ widget is in the buffer.
1014
+ </p>
1015
+ <div class="variablelist"><table border="0">
1016
+ <col align="left" valign="top">
1017
+ <tbody>
1018
+ <tr>
1019
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1020
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1021
+ </td>
1022
+ </tr>
1023
+ <tr>
1024
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
1025
+ <td>start of a range</td>
1026
+ </tr>
1027
+ <tr>
1028
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
1029
+ <td>end of a range</td>
1030
+ </tr>
1031
+ <tr>
1032
+ <td><p><span class="term"><em class="parameter"><code>include_hidden_chars</code></em> :</span></p></td>
1033
+ <td>whether to include invisible text</td>
1034
+ </tr>
1035
+ <tr>
1036
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1037
+ <td>an allocated UTF-8 string</td>
1038
+ </tr>
1039
+ </tbody>
1040
+ </table></div>
1041
+ </div>
1042
+ <hr>
1043
+ <div class="refsect2">
1044
+ <a name="gtk-text-buffer-insert-pixbuf"></a><h3>gtk_text_buffer_insert_pixbuf ()</h3>
1045
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_insert_pixbuf (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1046
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1047
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
1048
+ <p>
1049
+ Inserts an image into the text buffer at <em class="parameter"><code>iter</code></em>. The image will be
1050
+ counted as one character in character counts, and when obtaining
1051
+ the buffer contents as a string, will be represented by the Unicode
1052
+ "object replacement character" 0xFFFC. Note that the "slice"
1053
+ variants for obtaining portions of the buffer as a string include
1054
+ this character for pixbufs, but the "text" variants do
1055
+ not. e.g. see <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-slice" title="gtk_text_buffer_get_slice ()"><code class="function">gtk_text_buffer_get_slice()</code></a> and
1056
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-text" title="gtk_text_buffer_get_text ()"><code class="function">gtk_text_buffer_get_text()</code></a>.
1057
+ </p>
1058
+ <div class="variablelist"><table border="0">
1059
+ <col align="left" valign="top">
1060
+ <tbody>
1061
+ <tr>
1062
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1063
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1064
+ </td>
1065
+ </tr>
1066
+ <tr>
1067
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1068
+ <td>location to insert the pixbuf</td>
1069
+ </tr>
1070
+ <tr>
1071
+ <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
1072
+ <td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>
1073
+ </td>
1074
+ </tr>
1075
+ </tbody>
1076
+ </table></div>
1077
+ </div>
1078
+ <hr>
1079
+ <div class="refsect2">
1080
+ <a name="gtk-text-buffer-insert-child-anchor"></a><h3>gtk_text_buffer_insert_child_anchor ()</h3>
1081
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_insert_child_anchor (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1082
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1083
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);</pre>
1084
+ <p>
1085
+ Inserts a child widget anchor into the text buffer at <em class="parameter"><code>iter</code></em>. The
1086
+ anchor will be counted as one character in character counts, and
1087
+ when obtaining the buffer contents as a string, will be represented
1088
+ by the Unicode "object replacement character" 0xFFFC. Note that the
1089
+ "slice" variants for obtaining portions of the buffer as a string
1090
+ include this character for child anchors, but the "text" variants do
1091
+ not. E.g. see <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-slice" title="gtk_text_buffer_get_slice ()"><code class="function">gtk_text_buffer_get_slice()</code></a> and
1092
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-text" title="gtk_text_buffer_get_text ()"><code class="function">gtk_text_buffer_get_text()</code></a>. Consider
1093
+ <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> as a more convenient
1094
+ alternative to this function. The buffer will add a reference to
1095
+ the anchor, so you can unref it after insertion.
1096
+ </p>
1097
+ <div class="variablelist"><table border="0">
1098
+ <col align="left" valign="top">
1099
+ <tbody>
1100
+ <tr>
1101
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1102
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1103
+ </td>
1104
+ </tr>
1105
+ <tr>
1106
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1107
+ <td>location to insert the anchor</td>
1108
+ </tr>
1109
+ <tr>
1110
+ <td><p><span class="term"><em class="parameter"><code>anchor</code></em> :</span></p></td>
1111
+ <td>a <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a>
1112
+ </td>
1113
+ </tr>
1114
+ </tbody>
1115
+ </table></div>
1116
+ </div>
1117
+ <hr>
1118
+ <div class="refsect2">
1119
+ <a name="gtk-text-buffer-create-child-anchor"></a><h3>gtk_text_buffer_create_child_anchor ()</h3>
1120
+ <pre class="programlisting"><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="returnvalue">GtkTextChildAnchor</span></a> * gtk_text_buffer_create_child_anchor
1121
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1122
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1123
+ <p>
1124
+ This is a convenience function which simply creates a child anchor
1125
+ with <a class="link" href="GtkTextView.html#gtk-text-child-anchor-new" title="gtk_text_child_anchor_new ()"><code class="function">gtk_text_child_anchor_new()</code></a> and inserts it into the buffer
1126
+ 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>. The new anchor is
1127
+ owned by the buffer; no reference count is returned to
1128
+ the caller of <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>.
1129
+ </p>
1130
+ <div class="variablelist"><table border="0">
1131
+ <col align="left" valign="top">
1132
+ <tbody>
1133
+ <tr>
1134
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1135
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1136
+ </td>
1137
+ </tr>
1138
+ <tr>
1139
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1140
+ <td>location in the buffer</td>
1141
+ </tr>
1142
+ <tr>
1143
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1144
+ <td>the created child anchor. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1145
+ </td>
1146
+ </tr>
1147
+ </tbody>
1148
+ </table></div>
1149
+ </div>
1150
+ <hr>
1151
+ <div class="refsect2">
1152
+ <a name="gtk-text-buffer-create-mark"></a><h3>gtk_text_buffer_create_mark ()</h3>
1153
+ <pre class="programlisting"><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * gtk_text_buffer_create_mark (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1154
+ <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> *mark_name</code></em>,
1155
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>,
1156
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> left_gravity</code></em>);</pre>
1157
+ <p>
1158
+ Creates a mark at position <em class="parameter"><code>where</code></em>. If <em class="parameter"><code>mark_name</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, the mark
1159
+ is anonymous; otherwise, the mark can be retrieved by name using
1160
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-mark" title="gtk_text_buffer_get_mark ()"><code class="function">gtk_text_buffer_get_mark()</code></a>. If a mark has left gravity, and text is
1161
+ inserted at the mark's current location, the mark will be moved to
1162
+ the left of the newly-inserted text. If the mark has right gravity
1163
+ (<em class="parameter"><code>left_gravity</code></em> = <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>), the mark will end up on the right of
1164
+ newly-inserted text. The standard left-to-right cursor is a mark
1165
+ with right gravity (when you type, the cursor stays on the right
1166
+ side of the text you're typing).
1167
+ </p>
1168
+ <p>
1169
+ The caller of this function does <span class="emphasis"><em>not</em></span> own a
1170
+ reference to the returned <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>, so you can ignore the
1171
+ return value if you like. Marks are owned by the buffer and go
1172
+ away when the buffer does.
1173
+ </p>
1174
+ <p>
1175
+ Emits the "mark-set" signal as notification of the mark's initial
1176
+ placement.
1177
+ </p>
1178
+ <div class="variablelist"><table border="0">
1179
+ <col align="left" valign="top">
1180
+ <tbody>
1181
+ <tr>
1182
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1183
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1184
+ </td>
1185
+ </tr>
1186
+ <tr>
1187
+ <td><p><span class="term"><em class="parameter"><code>mark_name</code></em> :</span></p></td>
1188
+ <td>name for mark, 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="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1189
+ </td>
1190
+ </tr>
1191
+ <tr>
1192
+ <td><p><span class="term"><em class="parameter"><code>where</code></em> :</span></p></td>
1193
+ <td>location to place mark</td>
1194
+ </tr>
1195
+ <tr>
1196
+ <td><p><span class="term"><em class="parameter"><code>left_gravity</code></em> :</span></p></td>
1197
+ <td>whether the mark has left gravity</td>
1198
+ </tr>
1199
+ <tr>
1200
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1201
+ <td>the new <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> object. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1202
+ </td>
1203
+ </tr>
1204
+ </tbody>
1205
+ </table></div>
1206
+ </div>
1207
+ <hr>
1208
+ <div class="refsect2">
1209
+ <a name="gtk-text-buffer-move-mark"></a><h3>gtk_text_buffer_move_mark ()</h3>
1210
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_move_mark (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1211
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
1212
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);</pre>
1213
+ <p>
1214
+ Moves <em class="parameter"><code>mark</code></em> to the new location <em class="parameter"><code>where</code></em>. Emits the "mark-set" signal
1215
+ as notification of the move.
1216
+ </p>
1217
+ <div class="variablelist"><table border="0">
1218
+ <col align="left" valign="top">
1219
+ <tbody>
1220
+ <tr>
1221
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1222
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1223
+ </td>
1224
+ </tr>
1225
+ <tr>
1226
+ <td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
1227
+ <td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>
1228
+ </td>
1229
+ </tr>
1230
+ <tr>
1231
+ <td><p><span class="term"><em class="parameter"><code>where</code></em> :</span></p></td>
1232
+ <td>new location for <em class="parameter"><code>mark</code></em> in <em class="parameter"><code>buffer</code></em>
1233
+ </td>
1234
+ </tr>
1235
+ </tbody>
1236
+ </table></div>
1237
+ </div>
1238
+ <hr>
1239
+ <div class="refsect2">
1240
+ <a name="gtk-text-buffer-move-mark-by-name"></a><h3>gtk_text_buffer_move_mark_by_name ()</h3>
1241
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_move_mark_by_name (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1242
+ <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>,
1243
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);</pre>
1244
+ <p>
1245
+ Moves the mark named <em class="parameter"><code>name</code></em> (which must exist) to location <em class="parameter"><code>where</code></em>.
1246
+ See <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-move-mark" title="gtk_text_buffer_move_mark ()"><code class="function">gtk_text_buffer_move_mark()</code></a> for details.
1247
+ </p>
1248
+ <div class="variablelist"><table border="0">
1249
+ <col align="left" valign="top">
1250
+ <tbody>
1251
+ <tr>
1252
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1253
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1254
+ </td>
1255
+ </tr>
1256
+ <tr>
1257
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
1258
+ <td>name of a mark</td>
1259
+ </tr>
1260
+ <tr>
1261
+ <td><p><span class="term"><em class="parameter"><code>where</code></em> :</span></p></td>
1262
+ <td>new location for mark</td>
1263
+ </tr>
1264
+ </tbody>
1265
+ </table></div>
1266
+ </div>
1267
+ <hr>
1268
+ <div class="refsect2">
1269
+ <a name="gtk-text-buffer-add-mark"></a><h3>gtk_text_buffer_add_mark ()</h3>
1270
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_add_mark (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1271
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
1272
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);</pre>
1273
+ <p>
1274
+ Adds the mark at position <em class="parameter"><code>where</code></em>. The mark must not be added to
1275
+ another buffer, and if its name is not <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> then there must not
1276
+ be another mark in the buffer with the same name.
1277
+ </p>
1278
+ <p>
1279
+ Emits the "mark-set" signal as notification of the mark's initial
1280
+ placement.
1281
+ </p>
1282
+ <div class="variablelist"><table border="0">
1283
+ <col align="left" valign="top">
1284
+ <tbody>
1285
+ <tr>
1286
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1287
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1288
+ </td>
1289
+ </tr>
1290
+ <tr>
1291
+ <td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
1292
+ <td>the mark to add</td>
1293
+ </tr>
1294
+ <tr>
1295
+ <td><p><span class="term"><em class="parameter"><code>where</code></em> :</span></p></td>
1296
+ <td>location to place mark</td>
1297
+ </tr>
1298
+ </tbody>
1299
+ </table></div>
1300
+ <p class="since">Since 2.12</p>
1301
+ </div>
1302
+ <hr>
1303
+ <div class="refsect2">
1304
+ <a name="gtk-text-buffer-delete-mark"></a><h3>gtk_text_buffer_delete_mark ()</h3>
1305
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_delete_mark (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1306
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
1307
+ <p>
1308
+ Deletes <em class="parameter"><code>mark</code></em>, so that it's no longer located anywhere in the
1309
+ buffer. Removes the reference the buffer holds to the mark, so if
1310
+ you haven't called <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> on the mark, it will be freed. Even
1311
+ if the mark isn't freed, most operations on <em class="parameter"><code>mark</code></em> become
1312
+ invalid, until it gets added to a buffer again with
1313
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-add-mark" title="gtk_text_buffer_add_mark ()"><code class="function">gtk_text_buffer_add_mark()</code></a>. Use <a class="link" href="GtkTextMark.html#gtk-text-mark-get-deleted" title="gtk_text_mark_get_deleted ()"><code class="function">gtk_text_mark_get_deleted()</code></a> to
1314
+ find out if a mark has been removed from its buffer.
1315
+ The "mark-deleted" signal will be emitted as notification after
1316
+ the mark is deleted.
1317
+ </p>
1318
+ <div class="variablelist"><table border="0">
1319
+ <col align="left" valign="top">
1320
+ <tbody>
1321
+ <tr>
1322
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1323
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1324
+ </td>
1325
+ </tr>
1326
+ <tr>
1327
+ <td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
1328
+ <td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> in <em class="parameter"><code>buffer</code></em>
1329
+ </td>
1330
+ </tr>
1331
+ </tbody>
1332
+ </table></div>
1333
+ </div>
1334
+ <hr>
1335
+ <div class="refsect2">
1336
+ <a name="gtk-text-buffer-delete-mark-by-name"></a><h3>gtk_text_buffer_delete_mark_by_name ()</h3>
1337
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_delete_mark_by_name (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1338
+ <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>
1339
+ <p>
1340
+ Deletes the mark named <em class="parameter"><code>name</code></em>; the mark must exist. See
1341
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete-mark" title="gtk_text_buffer_delete_mark ()"><code class="function">gtk_text_buffer_delete_mark()</code></a> for details.
1342
+ </p>
1343
+ <div class="variablelist"><table border="0">
1344
+ <col align="left" valign="top">
1345
+ <tbody>
1346
+ <tr>
1347
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1348
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1349
+ </td>
1350
+ </tr>
1351
+ <tr>
1352
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
1353
+ <td>name of a mark in <em class="parameter"><code>buffer</code></em>
1354
+ </td>
1355
+ </tr>
1356
+ </tbody>
1357
+ </table></div>
1358
+ </div>
1359
+ <hr>
1360
+ <div class="refsect2">
1361
+ <a name="gtk-text-buffer-get-mark"></a><h3>gtk_text_buffer_get_mark ()</h3>
1362
+ <pre class="programlisting"><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * gtk_text_buffer_get_mark (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1363
+ <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>
1364
+ <p>
1365
+ Returns the mark named <em class="parameter"><code>name</code></em> in buffer <em class="parameter"><code>buffer</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no such
1366
+ mark exists in the buffer.
1367
+ </p>
1368
+ <div class="variablelist"><table border="0">
1369
+ <col align="left" valign="top">
1370
+ <tbody>
1371
+ <tr>
1372
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1373
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1374
+ </td>
1375
+ </tr>
1376
+ <tr>
1377
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
1378
+ <td>a mark name</td>
1379
+ </tr>
1380
+ <tr>
1381
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1382
+ <td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</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>
1383
+ </td>
1384
+ </tr>
1385
+ </tbody>
1386
+ </table></div>
1387
+ </div>
1388
+ <hr>
1389
+ <div class="refsect2">
1390
+ <a name="gtk-text-buffer-get-insert"></a><h3>gtk_text_buffer_get_insert ()</h3>
1391
+ <pre class="programlisting"><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * gtk_text_buffer_get_insert (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
1392
+ <p>
1393
+ Returns the mark that represents the cursor (insertion point).
1394
+ Equivalent to calling <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-mark" title="gtk_text_buffer_get_mark ()"><code class="function">gtk_text_buffer_get_mark()</code></a> to get the mark
1395
+ named "insert", but very slightly more efficient, and involves less
1396
+ typing.
1397
+ </p>
1398
+ <div class="variablelist"><table border="0">
1399
+ <col align="left" valign="top">
1400
+ <tbody>
1401
+ <tr>
1402
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1403
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1404
+ </td>
1405
+ </tr>
1406
+ <tr>
1407
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1408
+ <td>insertion point mark. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1409
+ </td>
1410
+ </tr>
1411
+ </tbody>
1412
+ </table></div>
1413
+ </div>
1414
+ <hr>
1415
+ <div class="refsect2">
1416
+ <a name="gtk-text-buffer-get-selection-bound"></a><h3>gtk_text_buffer_get_selection_bound ()</h3>
1417
+ <pre class="programlisting"><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * gtk_text_buffer_get_selection_bound (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
1418
+ <p>
1419
+ Returns the mark that represents the selection bound. Equivalent
1420
+ to calling <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-mark" title="gtk_text_buffer_get_mark ()"><code class="function">gtk_text_buffer_get_mark()</code></a> to get the mark named
1421
+ "selection_bound", but very slightly more efficient, and involves
1422
+ less typing.
1423
+ </p>
1424
+ <p>
1425
+ The currently-selected text in <em class="parameter"><code>buffer</code></em> is the region between the
1426
+ "selection_bound" and "insert" marks. If "selection_bound" and
1427
+ "insert" are in the same place, then there is no current selection.
1428
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-selection-bounds" title="gtk_text_buffer_get_selection_bounds ()"><code class="function">gtk_text_buffer_get_selection_bounds()</code></a> is another convenient function
1429
+ for handling the selection, if you just want to know whether there's a
1430
+ selection and what its bounds are.
1431
+ </p>
1432
+ <div class="variablelist"><table border="0">
1433
+ <col align="left" valign="top">
1434
+ <tbody>
1435
+ <tr>
1436
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1437
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1438
+ </td>
1439
+ </tr>
1440
+ <tr>
1441
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1442
+ <td>selection bound mark. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1443
+ </td>
1444
+ </tr>
1445
+ </tbody>
1446
+ </table></div>
1447
+ </div>
1448
+ <hr>
1449
+ <div class="refsect2">
1450
+ <a name="gtk-text-buffer-get-has-selection"></a><h3>gtk_text_buffer_get_has_selection ()</h3>
1451
+ <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_buffer_get_has_selection (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
1452
+ <p>
1453
+ Indicates whether the buffer has some text currently selected.
1454
+ </p>
1455
+ <div class="variablelist"><table border="0">
1456
+ <col align="left" valign="top">
1457
+ <tbody>
1458
+ <tr>
1459
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1460
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1461
+ </td>
1462
+ </tr>
1463
+ <tr>
1464
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1465
+ <td>
1466
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the there is text selected</td>
1467
+ </tr>
1468
+ </tbody>
1469
+ </table></div>
1470
+ <p class="since">Since 2.10</p>
1471
+ </div>
1472
+ <hr>
1473
+ <div class="refsect2">
1474
+ <a name="gtk-text-buffer-place-cursor"></a><h3>gtk_text_buffer_place_cursor ()</h3>
1475
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_place_cursor (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1476
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);</pre>
1477
+ <p>
1478
+ This function moves the "insert" and "selection_bound" marks
1479
+ simultaneously. If you move them to the same place in two steps
1480
+ with <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-move-mark" title="gtk_text_buffer_move_mark ()"><code class="function">gtk_text_buffer_move_mark()</code></a>, you will temporarily select a
1481
+ region in between their old and new locations, which can be pretty
1482
+ inefficient since the temporarily-selected region will force stuff
1483
+ to be recalculated. This function moves them as a unit, which can
1484
+ be optimized.
1485
+ </p>
1486
+ <div class="variablelist"><table border="0">
1487
+ <col align="left" valign="top">
1488
+ <tbody>
1489
+ <tr>
1490
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1491
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1492
+ </td>
1493
+ </tr>
1494
+ <tr>
1495
+ <td><p><span class="term"><em class="parameter"><code>where</code></em> :</span></p></td>
1496
+ <td>where to put the cursor</td>
1497
+ </tr>
1498
+ </tbody>
1499
+ </table></div>
1500
+ </div>
1501
+ <hr>
1502
+ <div class="refsect2">
1503
+ <a name="gtk-text-buffer-select-range"></a><h3>gtk_text_buffer_select_range ()</h3>
1504
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_select_range (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1505
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *ins</code></em>,
1506
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *bound</code></em>);</pre>
1507
+ <p>
1508
+ This function moves the "insert" and "selection_bound" marks
1509
+ simultaneously. If you move them in two steps
1510
+ with <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-move-mark" title="gtk_text_buffer_move_mark ()"><code class="function">gtk_text_buffer_move_mark()</code></a>, you will temporarily select a
1511
+ region in between their old and new locations, which can be pretty
1512
+ inefficient since the temporarily-selected region will force stuff
1513
+ to be recalculated. This function moves them as a unit, which can
1514
+ be optimized.
1515
+ </p>
1516
+ <div class="variablelist"><table border="0">
1517
+ <col align="left" valign="top">
1518
+ <tbody>
1519
+ <tr>
1520
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1521
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1522
+ </td>
1523
+ </tr>
1524
+ <tr>
1525
+ <td><p><span class="term"><em class="parameter"><code>ins</code></em> :</span></p></td>
1526
+ <td>where to put the "insert" mark</td>
1527
+ </tr>
1528
+ <tr>
1529
+ <td><p><span class="term"><em class="parameter"><code>bound</code></em> :</span></p></td>
1530
+ <td>where to put the "selection_bound" mark</td>
1531
+ </tr>
1532
+ </tbody>
1533
+ </table></div>
1534
+ <p class="since">Since 2.4</p>
1535
+ </div>
1536
+ <hr>
1537
+ <div class="refsect2">
1538
+ <a name="gtk-text-buffer-apply-tag"></a><h3>gtk_text_buffer_apply_tag ()</h3>
1539
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_apply_tag (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1540
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
1541
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
1542
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
1543
+ <p>
1544
+ Emits the "apply-tag" signal on <em class="parameter"><code>buffer</code></em>. The default
1545
+ handler for the signal applies <em class="parameter"><code>tag</code></em> to the given range.
1546
+ <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> do not have to be in order.
1547
+ </p>
1548
+ <div class="variablelist"><table border="0">
1549
+ <col align="left" valign="top">
1550
+ <tbody>
1551
+ <tr>
1552
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1553
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1554
+ </td>
1555
+ </tr>
1556
+ <tr>
1557
+ <td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
1558
+ <td>a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>
1559
+ </td>
1560
+ </tr>
1561
+ <tr>
1562
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
1563
+ <td>one bound of range to be tagged</td>
1564
+ </tr>
1565
+ <tr>
1566
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
1567
+ <td>other bound of range to be tagged</td>
1568
+ </tr>
1569
+ </tbody>
1570
+ </table></div>
1571
+ </div>
1572
+ <hr>
1573
+ <div class="refsect2">
1574
+ <a name="gtk-text-buffer-remove-tag"></a><h3>gtk_text_buffer_remove_tag ()</h3>
1575
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_remove_tag (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1576
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
1577
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
1578
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
1579
+ <p>
1580
+ Emits the "remove-tag" signal. The default handler for the signal
1581
+ removes all occurrences of <em class="parameter"><code>tag</code></em> from the given range. <em class="parameter"><code>start</code></em> and
1582
+ <em class="parameter"><code>end</code></em> don't have to be in order.
1583
+ </p>
1584
+ <div class="variablelist"><table border="0">
1585
+ <col align="left" valign="top">
1586
+ <tbody>
1587
+ <tr>
1588
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1589
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1590
+ </td>
1591
+ </tr>
1592
+ <tr>
1593
+ <td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
1594
+ <td>a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>
1595
+ </td>
1596
+ </tr>
1597
+ <tr>
1598
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
1599
+ <td>one bound of range to be untagged</td>
1600
+ </tr>
1601
+ <tr>
1602
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
1603
+ <td>other bound of range to be untagged</td>
1604
+ </tr>
1605
+ </tbody>
1606
+ </table></div>
1607
+ </div>
1608
+ <hr>
1609
+ <div class="refsect2">
1610
+ <a name="gtk-text-buffer-apply-tag-by-name"></a><h3>gtk_text_buffer_apply_tag_by_name ()</h3>
1611
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_apply_tag_by_name (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1612
+ <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>,
1613
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
1614
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
1615
+ <p>
1616
+ Calls <a class="link" href="GtkTextTagTable.html#gtk-text-tag-table-lookup" title="gtk_text_tag_table_lookup ()"><code class="function">gtk_text_tag_table_lookup()</code></a> on the buffer's tag table to
1617
+ get a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>, then calls <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-apply-tag" title="gtk_text_buffer_apply_tag ()"><code class="function">gtk_text_buffer_apply_tag()</code></a>.
1618
+ </p>
1619
+ <div class="variablelist"><table border="0">
1620
+ <col align="left" valign="top">
1621
+ <tbody>
1622
+ <tr>
1623
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1624
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1625
+ </td>
1626
+ </tr>
1627
+ <tr>
1628
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
1629
+ <td>name of a named <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>
1630
+ </td>
1631
+ </tr>
1632
+ <tr>
1633
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
1634
+ <td>one bound of range to be tagged</td>
1635
+ </tr>
1636
+ <tr>
1637
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
1638
+ <td>other bound of range to be tagged</td>
1639
+ </tr>
1640
+ </tbody>
1641
+ </table></div>
1642
+ </div>
1643
+ <hr>
1644
+ <div class="refsect2">
1645
+ <a name="gtk-text-buffer-remove-tag-by-name"></a><h3>gtk_text_buffer_remove_tag_by_name ()</h3>
1646
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_remove_tag_by_name (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1647
+ <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>,
1648
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
1649
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
1650
+ <p>
1651
+ Calls <a class="link" href="GtkTextTagTable.html#gtk-text-tag-table-lookup" title="gtk_text_tag_table_lookup ()"><code class="function">gtk_text_tag_table_lookup()</code></a> on the buffer's tag table to
1652
+ get a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>, then calls <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-remove-tag" title="gtk_text_buffer_remove_tag ()"><code class="function">gtk_text_buffer_remove_tag()</code></a>.
1653
+ </p>
1654
+ <div class="variablelist"><table border="0">
1655
+ <col align="left" valign="top">
1656
+ <tbody>
1657
+ <tr>
1658
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1659
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1660
+ </td>
1661
+ </tr>
1662
+ <tr>
1663
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
1664
+ <td>name of a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>
1665
+ </td>
1666
+ </tr>
1667
+ <tr>
1668
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
1669
+ <td>one bound of range to be untagged</td>
1670
+ </tr>
1671
+ <tr>
1672
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
1673
+ <td>other bound of range to be untagged</td>
1674
+ </tr>
1675
+ </tbody>
1676
+ </table></div>
1677
+ </div>
1678
+ <hr>
1679
+ <div class="refsect2">
1680
+ <a name="gtk-text-buffer-remove-all-tags"></a><h3>gtk_text_buffer_remove_all_tags ()</h3>
1681
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_remove_all_tags (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1682
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
1683
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
1684
+ <p>
1685
+ Removes all tags in the range between <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em>. Be careful
1686
+ with this function; it could remove tags added in code unrelated to
1687
+ the code you're currently writing. That is, using this function is
1688
+ probably a bad idea if you have two or more unrelated code sections
1689
+ that add tags.
1690
+ </p>
1691
+ <div class="variablelist"><table border="0">
1692
+ <col align="left" valign="top">
1693
+ <tbody>
1694
+ <tr>
1695
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1696
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1697
+ </td>
1698
+ </tr>
1699
+ <tr>
1700
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
1701
+ <td>one bound of range to be untagged</td>
1702
+ </tr>
1703
+ <tr>
1704
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
1705
+ <td>other bound of range to be untagged</td>
1706
+ </tr>
1707
+ </tbody>
1708
+ </table></div>
1709
+ </div>
1710
+ <hr>
1711
+ <div class="refsect2">
1712
+ <a name="gtk-text-buffer-create-tag"></a><h3>gtk_text_buffer_create_tag ()</h3>
1713
+ <pre class="programlisting"><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="returnvalue">GtkTextTag</span></a> * gtk_text_buffer_create_tag (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1714
+ <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> *tag_name</code></em>,
1715
+ <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> *first_property_name</code></em>,
1716
+ <em class="parameter"><code>...</code></em>);</pre>
1717
+ <p>
1718
+ Creates a tag and adds it to the tag table for <em class="parameter"><code>buffer</code></em>.
1719
+ Equivalent to calling <a class="link" href="GtkTextTag.html#gtk-text-tag-new" title="gtk_text_tag_new ()"><code class="function">gtk_text_tag_new()</code></a> and then adding the
1720
+ tag to the buffer's tag table. The returned tag is owned by
1721
+ the buffer's tag table, so the ref count will be equal to one.
1722
+ </p>
1723
+ <p>
1724
+ If <em class="parameter"><code>tag_name</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, the tag is anonymous.
1725
+ </p>
1726
+ <p>
1727
+ If <em class="parameter"><code>tag_name</code></em> is non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, a tag called <em class="parameter"><code>tag_name</code></em> must not already
1728
+ exist in the tag table for this buffer.
1729
+ </p>
1730
+ <p>
1731
+ The <em class="parameter"><code>first_property_name</code></em> argument and subsequent arguments are a list
1732
+ of properties to set on the tag, as with <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-set"><code class="function">g_object_set()</code></a>.
1733
+ </p>
1734
+ <div class="variablelist"><table border="0">
1735
+ <col align="left" valign="top">
1736
+ <tbody>
1737
+ <tr>
1738
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1739
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1740
+ </td>
1741
+ </tr>
1742
+ <tr>
1743
+ <td><p><span class="term"><em class="parameter"><code>tag_name</code></em> :</span></p></td>
1744
+ <td>name of the new tag, 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="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1745
+ </td>
1746
+ </tr>
1747
+ <tr>
1748
+ <td><p><span class="term"><em class="parameter"><code>first_property_name</code></em> :</span></p></td>
1749
+ <td>name of first property to set, 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="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1750
+ </td>
1751
+ </tr>
1752
+ <tr>
1753
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1754
+ <td>a new tag. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1755
+ </td>
1756
+ </tr>
1757
+ </tbody>
1758
+ </table></div>
1759
+ </div>
1760
+ <hr>
1761
+ <div class="refsect2">
1762
+ <a name="gtk-text-buffer-get-iter-at-line-offset"></a><h3>gtk_text_buffer_get_iter_at_line_offset ()</h3>
1763
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_iter_at_line_offset
1764
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1765
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1766
+ <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_number</code></em>,
1767
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> char_offset</code></em>);</pre>
1768
+ <p>
1769
+ Obtains an iterator pointing to <em class="parameter"><code>char_offset</code></em> within the given
1770
+ line. The <em class="parameter"><code>char_offset</code></em> must exist, offsets off the end of the line
1771
+ are not allowed. Note <span class="emphasis"><em>characters</em></span>, not bytes;
1772
+ UTF-8 may encode one character as multiple bytes.
1773
+ </p>
1774
+ <div class="variablelist"><table border="0">
1775
+ <col align="left" valign="top">
1776
+ <tbody>
1777
+ <tr>
1778
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1779
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1780
+ </td>
1781
+ </tr>
1782
+ <tr>
1783
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1784
+ <td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1785
+ </td>
1786
+ </tr>
1787
+ <tr>
1788
+ <td><p><span class="term"><em class="parameter"><code>line_number</code></em> :</span></p></td>
1789
+ <td>line number counting from 0</td>
1790
+ </tr>
1791
+ <tr>
1792
+ <td><p><span class="term"><em class="parameter"><code>char_offset</code></em> :</span></p></td>
1793
+ <td>char offset from start of line</td>
1794
+ </tr>
1795
+ </tbody>
1796
+ </table></div>
1797
+ </div>
1798
+ <hr>
1799
+ <div class="refsect2">
1800
+ <a name="gtk-text-buffer-get-iter-at-offset"></a><h3>gtk_text_buffer_get_iter_at_offset ()</h3>
1801
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_iter_at_offset (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1802
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1803
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> char_offset</code></em>);</pre>
1804
+ <p>
1805
+ Initializes <em class="parameter"><code>iter</code></em> to a position <em class="parameter"><code>char_offset</code></em> chars from the start
1806
+ of the entire buffer. If <em class="parameter"><code>char_offset</code></em> is -1 or greater than the number
1807
+ of characters in the buffer, <em class="parameter"><code>iter</code></em> is initialized to the end iterator,
1808
+ the iterator one past the last valid character in the buffer.
1809
+ </p>
1810
+ <div class="variablelist"><table border="0">
1811
+ <col align="left" valign="top">
1812
+ <tbody>
1813
+ <tr>
1814
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1815
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1816
+ </td>
1817
+ </tr>
1818
+ <tr>
1819
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1820
+ <td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1821
+ </td>
1822
+ </tr>
1823
+ <tr>
1824
+ <td><p><span class="term"><em class="parameter"><code>char_offset</code></em> :</span></p></td>
1825
+ <td>char offset from start of buffer, counting from 0, or -1</td>
1826
+ </tr>
1827
+ </tbody>
1828
+ </table></div>
1829
+ </div>
1830
+ <hr>
1831
+ <div class="refsect2">
1832
+ <a name="gtk-text-buffer-get-iter-at-line"></a><h3>gtk_text_buffer_get_iter_at_line ()</h3>
1833
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_iter_at_line (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1834
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1835
+ <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_number</code></em>);</pre>
1836
+ <p>
1837
+ Initializes <em class="parameter"><code>iter</code></em> to the start of the given line.
1838
+ </p>
1839
+ <div class="variablelist"><table border="0">
1840
+ <col align="left" valign="top">
1841
+ <tbody>
1842
+ <tr>
1843
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1844
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1845
+ </td>
1846
+ </tr>
1847
+ <tr>
1848
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1849
+ <td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1850
+ </td>
1851
+ </tr>
1852
+ <tr>
1853
+ <td><p><span class="term"><em class="parameter"><code>line_number</code></em> :</span></p></td>
1854
+ <td>line number counting from 0</td>
1855
+ </tr>
1856
+ </tbody>
1857
+ </table></div>
1858
+ </div>
1859
+ <hr>
1860
+ <div class="refsect2">
1861
+ <a name="gtk-text-buffer-get-iter-at-line-index"></a><h3>gtk_text_buffer_get_iter_at_line_index ()</h3>
1862
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_iter_at_line_index
1863
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1864
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1865
+ <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_number</code></em>,
1866
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> byte_index</code></em>);</pre>
1867
+ <p>
1868
+ Obtains an iterator pointing to <em class="parameter"><code>byte_index</code></em> within the given line.
1869
+ <em class="parameter"><code>byte_index</code></em> must be the start of a UTF-8 character, and must not be
1870
+ beyond the end of the line. Note <span class="emphasis"><em>bytes</em></span>, not
1871
+ characters; UTF-8 may encode one character as multiple bytes.
1872
+ </p>
1873
+ <div class="variablelist"><table border="0">
1874
+ <col align="left" valign="top">
1875
+ <tbody>
1876
+ <tr>
1877
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1878
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1879
+ </td>
1880
+ </tr>
1881
+ <tr>
1882
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1883
+ <td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1884
+ </td>
1885
+ </tr>
1886
+ <tr>
1887
+ <td><p><span class="term"><em class="parameter"><code>line_number</code></em> :</span></p></td>
1888
+ <td>line number counting from 0</td>
1889
+ </tr>
1890
+ <tr>
1891
+ <td><p><span class="term"><em class="parameter"><code>byte_index</code></em> :</span></p></td>
1892
+ <td>byte index from start of line</td>
1893
+ </tr>
1894
+ </tbody>
1895
+ </table></div>
1896
+ </div>
1897
+ <hr>
1898
+ <div class="refsect2">
1899
+ <a name="gtk-text-buffer-get-iter-at-mark"></a><h3>gtk_text_buffer_get_iter_at_mark ()</h3>
1900
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_iter_at_mark (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1901
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1902
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
1903
+ <p>
1904
+ Initializes <em class="parameter"><code>iter</code></em> with the current position of <em class="parameter"><code>mark</code></em>.
1905
+ </p>
1906
+ <div class="variablelist"><table border="0">
1907
+ <col align="left" valign="top">
1908
+ <tbody>
1909
+ <tr>
1910
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1911
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1912
+ </td>
1913
+ </tr>
1914
+ <tr>
1915
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1916
+ <td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1917
+ </td>
1918
+ </tr>
1919
+ <tr>
1920
+ <td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
1921
+ <td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> in <em class="parameter"><code>buffer</code></em>
1922
+ </td>
1923
+ </tr>
1924
+ </tbody>
1925
+ </table></div>
1926
+ </div>
1927
+ <hr>
1928
+ <div class="refsect2">
1929
+ <a name="gtk-text-buffer-get-iter-at-child-anchor"></a><h3>gtk_text_buffer_get_iter_at_child_anchor ()</h3>
1930
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_iter_at_child_anchor
1931
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1932
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1933
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);</pre>
1934
+ <p>
1935
+ Obtains the location of <em class="parameter"><code>anchor</code></em> within <em class="parameter"><code>buffer</code></em>.
1936
+ </p>
1937
+ <div class="variablelist"><table border="0">
1938
+ <col align="left" valign="top">
1939
+ <tbody>
1940
+ <tr>
1941
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1942
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1943
+ </td>
1944
+ </tr>
1945
+ <tr>
1946
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1947
+ <td>an iterator to be initialized. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1948
+ </td>
1949
+ </tr>
1950
+ <tr>
1951
+ <td><p><span class="term"><em class="parameter"><code>anchor</code></em> :</span></p></td>
1952
+ <td>a child anchor that appears in <em class="parameter"><code>buffer</code></em>
1953
+ </td>
1954
+ </tr>
1955
+ </tbody>
1956
+ </table></div>
1957
+ </div>
1958
+ <hr>
1959
+ <div class="refsect2">
1960
+ <a name="gtk-text-buffer-get-start-iter"></a><h3>gtk_text_buffer_get_start_iter ()</h3>
1961
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_start_iter (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1962
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1963
+ <p>
1964
+ Initialized <em class="parameter"><code>iter</code></em> with the first position in the text buffer. This
1965
+ is the same as using <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-iter-at-offset" title="gtk_text_buffer_get_iter_at_offset ()"><code class="function">gtk_text_buffer_get_iter_at_offset()</code></a> to get
1966
+ the iter at character offset 0.
1967
+ </p>
1968
+ <div class="variablelist"><table border="0">
1969
+ <col align="left" valign="top">
1970
+ <tbody>
1971
+ <tr>
1972
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1973
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1974
+ </td>
1975
+ </tr>
1976
+ <tr>
1977
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1978
+ <td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1979
+ </td>
1980
+ </tr>
1981
+ </tbody>
1982
+ </table></div>
1983
+ </div>
1984
+ <hr>
1985
+ <div class="refsect2">
1986
+ <a name="gtk-text-buffer-get-end-iter"></a><h3>gtk_text_buffer_get_end_iter ()</h3>
1987
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_end_iter (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1988
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1989
+ <p>
1990
+ Initializes <em class="parameter"><code>iter</code></em> with the "end iterator," one past the last valid
1991
+ character in the text buffer. If dereferenced with
1992
+ <a class="link" href="GtkTextIter.html#gtk-text-iter-get-char" title="gtk_text_iter_get_char ()"><code class="function">gtk_text_iter_get_char()</code></a>, the end iterator has a character value of
1993
+ 0. The entire buffer lies in the range from the first position in
1994
+ the buffer (call <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-start-iter" title="gtk_text_buffer_get_start_iter ()"><code class="function">gtk_text_buffer_get_start_iter()</code></a> to get
1995
+ character position 0) to the end iterator.
1996
+ </p>
1997
+ <div class="variablelist"><table border="0">
1998
+ <col align="left" valign="top">
1999
+ <tbody>
2000
+ <tr>
2001
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2002
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2003
+ </td>
2004
+ </tr>
2005
+ <tr>
2006
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2007
+ <td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
2008
+ </td>
2009
+ </tr>
2010
+ </tbody>
2011
+ </table></div>
2012
+ </div>
2013
+ <hr>
2014
+ <div class="refsect2">
2015
+ <a name="gtk-text-buffer-get-bounds"></a><h3>gtk_text_buffer_get_bounds ()</h3>
2016
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_bounds (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2017
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
2018
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
2019
+ <p>
2020
+ Retrieves the first and last iterators in the buffer, i.e. the
2021
+ entire buffer lies within the range [<em class="parameter"><code>start</code></em>,<em class="parameter"><code>end</code></em>).
2022
+ </p>
2023
+ <div class="variablelist"><table border="0">
2024
+ <col align="left" valign="top">
2025
+ <tbody>
2026
+ <tr>
2027
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2028
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2029
+ </td>
2030
+ </tr>
2031
+ <tr>
2032
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
2033
+ <td>iterator to initialize with first position in the buffer. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
2034
+ </td>
2035
+ </tr>
2036
+ <tr>
2037
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
2038
+ <td>iterator to initialize with the end iterator. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
2039
+ </td>
2040
+ </tr>
2041
+ </tbody>
2042
+ </table></div>
2043
+ </div>
2044
+ <hr>
2045
+ <div class="refsect2">
2046
+ <a name="gtk-text-buffer-get-modified"></a><h3>gtk_text_buffer_get_modified ()</h3>
2047
+ <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_buffer_get_modified (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
2048
+ <p>
2049
+ Indicates whether the buffer has been modified since the last call
2050
+ to <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-set-modified" title="gtk_text_buffer_set_modified ()"><code class="function">gtk_text_buffer_set_modified()</code></a> set the modification flag to
2051
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>. Used for example to enable a "save" function in a text
2052
+ editor.
2053
+ </p>
2054
+ <div class="variablelist"><table border="0">
2055
+ <col align="left" valign="top">
2056
+ <tbody>
2057
+ <tr>
2058
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2059
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2060
+ </td>
2061
+ </tr>
2062
+ <tr>
2063
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2064
+ <td>
2065
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the buffer has been modified</td>
2066
+ </tr>
2067
+ </tbody>
2068
+ </table></div>
2069
+ </div>
2070
+ <hr>
2071
+ <div class="refsect2">
2072
+ <a name="gtk-text-buffer-set-modified"></a><h3>gtk_text_buffer_set_modified ()</h3>
2073
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_set_modified (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2074
+ <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>
2075
+ <p>
2076
+ Used to keep track of whether the buffer has been modified since the
2077
+ last time it was saved. Whenever the buffer is saved to disk, call
2078
+ gtk_text_buffer_set_modified (<em class="parameter"><code>buffer</code></em>, FALSE). When the buffer is modified,
2079
+ it will automatically toggled on the modified bit again. When the modified
2080
+ bit flips, the buffer emits a "modified-changed" signal.
2081
+ </p>
2082
+ <div class="variablelist"><table border="0">
2083
+ <col align="left" valign="top">
2084
+ <tbody>
2085
+ <tr>
2086
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2087
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2088
+ </td>
2089
+ </tr>
2090
+ <tr>
2091
+ <td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
2092
+ <td>modification flag setting</td>
2093
+ </tr>
2094
+ </tbody>
2095
+ </table></div>
2096
+ </div>
2097
+ <hr>
2098
+ <div class="refsect2">
2099
+ <a name="gtk-text-buffer-delete-selection"></a><h3>gtk_text_buffer_delete_selection ()</h3>
2100
+ <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_buffer_delete_selection (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2101
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> interactive</code></em>,
2102
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);</pre>
2103
+ <p>
2104
+ Deletes the range between the "insert" and "selection_bound" marks,
2105
+ that is, the currently-selected text. If <em class="parameter"><code>interactive</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>,
2106
+ the editability of the selection will be considered (users can't delete
2107
+ uneditable text).
2108
+ </p>
2109
+ <div class="variablelist"><table border="0">
2110
+ <col align="left" valign="top">
2111
+ <tbody>
2112
+ <tr>
2113
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2114
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2115
+ </td>
2116
+ </tr>
2117
+ <tr>
2118
+ <td><p><span class="term"><em class="parameter"><code>interactive</code></em> :</span></p></td>
2119
+ <td>whether the deletion is caused by user interaction</td>
2120
+ </tr>
2121
+ <tr>
2122
+ <td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
2123
+ <td>whether the buffer is editable by default</td>
2124
+ </tr>
2125
+ <tr>
2126
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2127
+ <td>whether there was a non-empty selection to delete</td>
2128
+ </tr>
2129
+ </tbody>
2130
+ </table></div>
2131
+ </div>
2132
+ <hr>
2133
+ <div class="refsect2">
2134
+ <a name="gtk-text-buffer-paste-clipboard"></a><h3>gtk_text_buffer_paste_clipboard ()</h3>
2135
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_paste_clipboard (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2136
+ <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
2137
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *override_location</code></em>,
2138
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);</pre>
2139
+ <p>
2140
+ Pastes the contents of a clipboard at the insertion point, or
2141
+ at <em class="parameter"><code>override_location</code></em>. (Note: pasting is asynchronous, that is,
2142
+ we'll ask for the paste data and return, and at some point later
2143
+ after the main loop runs, the paste data will be inserted.)
2144
+ </p>
2145
+ <div class="variablelist"><table border="0">
2146
+ <col align="left" valign="top">
2147
+ <tbody>
2148
+ <tr>
2149
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2150
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2151
+ </td>
2152
+ </tr>
2153
+ <tr>
2154
+ <td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
2155
+ <td>the <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> to paste from</td>
2156
+ </tr>
2157
+ <tr>
2158
+ <td><p><span class="term"><em class="parameter"><code>override_location</code></em> :</span></p></td>
2159
+ <td>location to insert pasted text, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for
2160
+ at the cursor. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2161
+ </td>
2162
+ </tr>
2163
+ <tr>
2164
+ <td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
2165
+ <td>whether the buffer is editable by default</td>
2166
+ </tr>
2167
+ </tbody>
2168
+ </table></div>
2169
+ </div>
2170
+ <hr>
2171
+ <div class="refsect2">
2172
+ <a name="gtk-text-buffer-copy-clipboard"></a><h3>gtk_text_buffer_copy_clipboard ()</h3>
2173
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_copy_clipboard (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2174
+ <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
2175
+ <p>
2176
+ Copies the currently-selected text to a clipboard.
2177
+ </p>
2178
+ <div class="variablelist"><table border="0">
2179
+ <col align="left" valign="top">
2180
+ <tbody>
2181
+ <tr>
2182
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2183
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2184
+ </td>
2185
+ </tr>
2186
+ <tr>
2187
+ <td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
2188
+ <td>the <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> object to copy to</td>
2189
+ </tr>
2190
+ </tbody>
2191
+ </table></div>
2192
+ </div>
2193
+ <hr>
2194
+ <div class="refsect2">
2195
+ <a name="gtk-text-buffer-cut-clipboard"></a><h3>gtk_text_buffer_cut_clipboard ()</h3>
2196
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_cut_clipboard (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2197
+ <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
2198
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);</pre>
2199
+ <p>
2200
+ Copies the currently-selected text to a clipboard, then deletes
2201
+ said text if it's editable.
2202
+ </p>
2203
+ <div class="variablelist"><table border="0">
2204
+ <col align="left" valign="top">
2205
+ <tbody>
2206
+ <tr>
2207
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2208
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2209
+ </td>
2210
+ </tr>
2211
+ <tr>
2212
+ <td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
2213
+ <td>the <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> object to cut to</td>
2214
+ </tr>
2215
+ <tr>
2216
+ <td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
2217
+ <td>default editability of the buffer</td>
2218
+ </tr>
2219
+ </tbody>
2220
+ </table></div>
2221
+ </div>
2222
+ <hr>
2223
+ <div class="refsect2">
2224
+ <a name="gtk-text-buffer-get-selection-bounds"></a><h3>gtk_text_buffer_get_selection_bounds ()</h3>
2225
+ <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_buffer_get_selection_bounds
2226
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2227
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
2228
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
2229
+ <p>
2230
+ Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if some text is selected; places the bounds
2231
+ of the selection in <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> (if the selection has length 0,
2232
+ then <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> are filled in with the same value).
2233
+ <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> will be in ascending order. If <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> are
2234
+ NULL, then they are not filled in, but the return value still indicates
2235
+ whether text is selected.
2236
+ </p>
2237
+ <div class="variablelist"><table border="0">
2238
+ <col align="left" valign="top">
2239
+ <tbody>
2240
+ <tr>
2241
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2242
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2243
+ </td>
2244
+ </tr>
2245
+ <tr>
2246
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
2247
+ <td>iterator to initialize with selection start. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
2248
+ </td>
2249
+ </tr>
2250
+ <tr>
2251
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
2252
+ <td>iterator to initialize with selection end. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
2253
+ </td>
2254
+ </tr>
2255
+ <tr>
2256
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2257
+ <td>whether the selection has nonzero length</td>
2258
+ </tr>
2259
+ </tbody>
2260
+ </table></div>
2261
+ </div>
2262
+ <hr>
2263
+ <div class="refsect2">
2264
+ <a name="gtk-text-buffer-begin-user-action"></a><h3>gtk_text_buffer_begin_user_action ()</h3>
2265
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_begin_user_action (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
2266
+ <p>
2267
+ Called to indicate that the buffer operations between here and a
2268
+ call to <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-end-user-action" title="gtk_text_buffer_end_user_action ()"><code class="function">gtk_text_buffer_end_user_action()</code></a> are part of a single
2269
+ user-visible operation. The operations between
2270
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-begin-user-action" title="gtk_text_buffer_begin_user_action ()"><code class="function">gtk_text_buffer_begin_user_action()</code></a> and
2271
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-end-user-action" title="gtk_text_buffer_end_user_action ()"><code class="function">gtk_text_buffer_end_user_action()</code></a> can then be grouped when creating
2272
+ an undo stack. <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> maintains a count of calls to
2273
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-begin-user-action" title="gtk_text_buffer_begin_user_action ()"><code class="function">gtk_text_buffer_begin_user_action()</code></a> that have not been closed with
2274
+ a call to <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-end-user-action" title="gtk_text_buffer_end_user_action ()"><code class="function">gtk_text_buffer_end_user_action()</code></a>, and emits the
2275
+ "begin-user-action" and "end-user-action" signals only for the
2276
+ outermost pair of calls. This allows you to build user actions
2277
+ from other user actions.
2278
+ </p>
2279
+ <p>
2280
+ The "interactive" buffer mutation functions, such as
2281
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-interactive" title="gtk_text_buffer_insert_interactive ()"><code class="function">gtk_text_buffer_insert_interactive()</code></a>, automatically call begin/end
2282
+ user action around the buffer operations they perform, so there's
2283
+ no need to add extra calls if you user action consists solely of a
2284
+ single call to one of those functions.
2285
+ </p>
2286
+ <div class="variablelist"><table border="0">
2287
+ <col align="left" valign="top">
2288
+ <tbody><tr>
2289
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2290
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2291
+ </td>
2292
+ </tr></tbody>
2293
+ </table></div>
2294
+ </div>
2295
+ <hr>
2296
+ <div class="refsect2">
2297
+ <a name="gtk-text-buffer-end-user-action"></a><h3>gtk_text_buffer_end_user_action ()</h3>
2298
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_end_user_action (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
2299
+ <p>
2300
+ Should be paired with a call to <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-begin-user-action" title="gtk_text_buffer_begin_user_action ()"><code class="function">gtk_text_buffer_begin_user_action()</code></a>.
2301
+ See that function for a full explanation.
2302
+ </p>
2303
+ <div class="variablelist"><table border="0">
2304
+ <col align="left" valign="top">
2305
+ <tbody><tr>
2306
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2307
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2308
+ </td>
2309
+ </tr></tbody>
2310
+ </table></div>
2311
+ </div>
2312
+ <hr>
2313
+ <div class="refsect2">
2314
+ <a name="gtk-text-buffer-add-selection-clipboard"></a><h3>gtk_text_buffer_add_selection_clipboard ()</h3>
2315
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_add_selection_clipboard
2316
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2317
+ <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
2318
+ <p>
2319
+ Adds <em class="parameter"><code>clipboard</code></em> to the list of clipboards in which the selection
2320
+ contents of <em class="parameter"><code>buffer</code></em> are available. In most cases, <em class="parameter"><code>clipboard</code></em> will be
2321
+ the <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> of type <a href="../gdk/gdk-Selections.html#GDK-SELECTION-PRIMARY:CAPS"><code class="literal">GDK_SELECTION_PRIMARY</code></a> for a view of <em class="parameter"><code>buffer</code></em>.
2322
+ </p>
2323
+ <div class="variablelist"><table border="0">
2324
+ <col align="left" valign="top">
2325
+ <tbody>
2326
+ <tr>
2327
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2328
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2329
+ </td>
2330
+ </tr>
2331
+ <tr>
2332
+ <td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
2333
+ <td>a <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a>
2334
+ </td>
2335
+ </tr>
2336
+ </tbody>
2337
+ </table></div>
2338
+ </div>
2339
+ <hr>
2340
+ <div class="refsect2">
2341
+ <a name="gtk-text-buffer-remove-selection-clipboard"></a><h3>gtk_text_buffer_remove_selection_clipboard ()</h3>
2342
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_remove_selection_clipboard
2343
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2344
+ <em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
2345
+ <p>
2346
+ Removes a <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> added with
2347
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-add-selection-clipboard" title="gtk_text_buffer_add_selection_clipboard ()"><code class="function">gtk_text_buffer_add_selection_clipboard()</code></a>.
2348
+ </p>
2349
+ <div class="variablelist"><table border="0">
2350
+ <col align="left" valign="top">
2351
+ <tbody>
2352
+ <tr>
2353
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2354
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2355
+ </td>
2356
+ </tr>
2357
+ <tr>
2358
+ <td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
2359
+ <td>a <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> added to <em class="parameter"><code>buffer</code></em> by
2360
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-add-selection-clipboard" title="gtk_text_buffer_add_selection_clipboard ()"><code class="function">gtk_text_buffer_add_selection_clipboard()</code></a>
2361
+ </td>
2362
+ </tr>
2363
+ </tbody>
2364
+ </table></div>
2365
+ </div>
2366
+ <hr>
2367
+ <div class="refsect2">
2368
+ <a name="GtkTextBufferTargetInfo"></a><h3>enum GtkTextBufferTargetInfo</h3>
2369
+ <pre class="programlisting">typedef enum {
2370
+ GTK_TEXT_BUFFER_TARGET_INFO_BUFFER_CONTENTS = - 1,
2371
+ GTK_TEXT_BUFFER_TARGET_INFO_RICH_TEXT = - 2,
2372
+ GTK_TEXT_BUFFER_TARGET_INFO_TEXT = - 3
2373
+ } GtkTextBufferTargetInfo;
2374
+ </pre>
2375
+ <p>
2376
+ </p>
2377
+ </div>
2378
+ <hr>
2379
+ <div class="refsect2">
2380
+ <a name="GtkTextBufferDeserializeFunc"></a><h3>GtkTextBufferDeserializeFunc ()</h3>
2381
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> (*GtkTextBufferDeserializeFunc) (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *register_buffer</code></em>,
2382
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
2383
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2384
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> *data</code></em>,
2385
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> length</code></em>,
2386
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> create_tags</code></em>,
2387
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
2388
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
2389
+ <p>
2390
+ A function that is called to deserialize rich text that has been
2391
+ serialized with <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-serialize" title="gtk_text_buffer_serialize ()"><code class="function">gtk_text_buffer_serialize()</code></a>, and insert it at <em class="parameter"><code>iter</code></em>.
2392
+ </p>
2393
+ <div class="variablelist"><table border="0">
2394
+ <col align="left" valign="top">
2395
+ <tbody>
2396
+ <tr>
2397
+ <td><p><span class="term"><em class="parameter"><code>register_buffer</code></em> :</span></p></td>
2398
+ <td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> the format is registered with</td>
2399
+ </tr>
2400
+ <tr>
2401
+ <td><p><span class="term"><em class="parameter"><code>content_buffer</code></em> :</span></p></td>
2402
+ <td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> to deserialize into</td>
2403
+ </tr>
2404
+ <tr>
2405
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2406
+ <td>insertion point for the deserialized text</td>
2407
+ </tr>
2408
+ <tr>
2409
+ <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
2410
+ <td>data to deserialize</td>
2411
+ </tr>
2412
+ <tr>
2413
+ <td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
2414
+ <td>length of <code class="literal">data</code>
2415
+ </td>
2416
+ </tr>
2417
+ <tr>
2418
+ <td><p><span class="term"><em class="parameter"><code>create_tags</code></em> :</span></p></td>
2419
+ <td>
2420
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if deserializing may create tags</td>
2421
+ </tr>
2422
+ <tr>
2423
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2424
+ <td>user data that was specified when registering the format</td>
2425
+ </tr>
2426
+ <tr>
2427
+ <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
2428
+ <td>return location for a <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a>
2429
+ </td>
2430
+ </tr>
2431
+ <tr>
2432
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2433
+ <td>
2434
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</td>
2435
+ </tr>
2436
+ </tbody>
2437
+ </table></div>
2438
+ </div>
2439
+ <hr>
2440
+ <div class="refsect2">
2441
+ <a name="gtk-text-buffer-deserialize"></a><h3>gtk_text_buffer_deserialize ()</h3>
2442
+ <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_buffer_deserialize (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *register_buffer</code></em>,
2443
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
2444
+ <em class="parameter"><code><a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
2445
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2446
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> *data</code></em>,
2447
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> length</code></em>,
2448
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
2449
+ <p>
2450
+ This function deserializes rich text in format <em class="parameter"><code>format</code></em> and inserts
2451
+ it at <em class="parameter"><code>iter</code></em>.
2452
+ </p>
2453
+ <p>
2454
+ <em class="parameter"><code>format</code></em>s to be used must be registered using
2455
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-deserialize-format" title="gtk_text_buffer_register_deserialize_format ()"><code class="function">gtk_text_buffer_register_deserialize_format()</code></a> or
2456
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-deserialize-tagset" title="gtk_text_buffer_register_deserialize_tagset ()"><code class="function">gtk_text_buffer_register_deserialize_tagset()</code></a> beforehand.
2457
+ </p>
2458
+ <div class="variablelist"><table border="0">
2459
+ <col align="left" valign="top">
2460
+ <tbody>
2461
+ <tr>
2462
+ <td><p><span class="term"><em class="parameter"><code>register_buffer</code></em> :</span></p></td>
2463
+ <td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> <em class="parameter"><code>format</code></em> is registered with</td>
2464
+ </tr>
2465
+ <tr>
2466
+ <td><p><span class="term"><em class="parameter"><code>content_buffer</code></em> :</span></p></td>
2467
+ <td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> to deserialize into</td>
2468
+ </tr>
2469
+ <tr>
2470
+ <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
2471
+ <td>the rich text format to use for deserializing</td>
2472
+ </tr>
2473
+ <tr>
2474
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2475
+ <td>insertion point for the deserialized text</td>
2476
+ </tr>
2477
+ <tr>
2478
+ <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
2479
+ <td>data to deserialize. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=length]</span>
2480
+ </td>
2481
+ </tr>
2482
+ <tr>
2483
+ <td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
2484
+ <td>length of <em class="parameter"><code>data</code></em>
2485
+ </td>
2486
+ </tr>
2487
+ <tr>
2488
+ <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
2489
+ <td>return location for a <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a>
2490
+ </td>
2491
+ </tr>
2492
+ <tr>
2493
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2494
+ <td>
2495
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
2496
+ </tr>
2497
+ </tbody>
2498
+ </table></div>
2499
+ <p class="since">Since 2.10</p>
2500
+ </div>
2501
+ <hr>
2502
+ <div class="refsect2">
2503
+ <a name="gtk-text-buffer-deserialize-get-can-create-tags"></a><h3>gtk_text_buffer_deserialize_get_can_create_tags ()</h3>
2504
+ <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_buffer_deserialize_get_can_create_tags
2505
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2506
+ <em class="parameter"><code><a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>);</pre>
2507
+ <p>
2508
+ This functions returns the value set with
2509
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-deserialize-set-can-create-tags" title="gtk_text_buffer_deserialize_set_can_create_tags ()"><code class="function">gtk_text_buffer_deserialize_set_can_create_tags()</code></a>
2510
+ </p>
2511
+ <div class="variablelist"><table border="0">
2512
+ <col align="left" valign="top">
2513
+ <tbody>
2514
+ <tr>
2515
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2516
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2517
+ </td>
2518
+ </tr>
2519
+ <tr>
2520
+ <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
2521
+ <td>a <a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> representing a registered rich text format</td>
2522
+ </tr>
2523
+ <tr>
2524
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2525
+ <td>whether deserializing this format may create tags</td>
2526
+ </tr>
2527
+ </tbody>
2528
+ </table></div>
2529
+ <p class="since">Since 2.10</p>
2530
+ </div>
2531
+ <hr>
2532
+ <div class="refsect2">
2533
+ <a name="gtk-text-buffer-deserialize-set-can-create-tags"></a><h3>gtk_text_buffer_deserialize_set_can_create_tags ()</h3>
2534
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_deserialize_set_can_create_tags
2535
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2536
+ <em class="parameter"><code><a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
2537
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> can_create_tags</code></em>);</pre>
2538
+ <p>
2539
+ Use this function to allow a rich text deserialization function to
2540
+ create new tags in the receiving buffer. Note that using this
2541
+ function is almost always a bad idea, because the rich text
2542
+ functions you register should know how to map the rich text format
2543
+ they handler to your text buffers set of tags.
2544
+ </p>
2545
+ <p>
2546
+ The ability of creating new (arbitrary!) tags in the receiving buffer
2547
+ is meant for special rich text formats like the internal one that
2548
+ is registered using <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-deserialize-tagset" title="gtk_text_buffer_register_deserialize_tagset ()"><code class="function">gtk_text_buffer_register_deserialize_tagset()</code></a>,
2549
+ because that format is essentially a dump of the internal structure
2550
+ of the source buffer, including its tag names.
2551
+ </p>
2552
+ <p>
2553
+ You should allow creation of tags only if you know what you are
2554
+ doing, e.g. if you defined a tagset name for your application
2555
+ suite's text buffers and you know that it's fine to receive new
2556
+ tags from these buffers, because you know that your application can
2557
+ handle the newly created tags.
2558
+ </p>
2559
+ <div class="variablelist"><table border="0">
2560
+ <col align="left" valign="top">
2561
+ <tbody>
2562
+ <tr>
2563
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2564
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2565
+ </td>
2566
+ </tr>
2567
+ <tr>
2568
+ <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
2569
+ <td>a <a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> representing a registered rich text format</td>
2570
+ </tr>
2571
+ <tr>
2572
+ <td><p><span class="term"><em class="parameter"><code>can_create_tags</code></em> :</span></p></td>
2573
+ <td>whether deserializing this format may create tags</td>
2574
+ </tr>
2575
+ </tbody>
2576
+ </table></div>
2577
+ <p class="since">Since 2.10</p>
2578
+ </div>
2579
+ <hr>
2580
+ <div class="refsect2">
2581
+ <a name="gtk-text-buffer-get-copy-target-list"></a><h3>gtk_text_buffer_get_copy_target_list ()</h3>
2582
+ <pre class="programlisting"><a class="link" href="gtk-Selections.html#GtkTargetList"><span class="returnvalue">GtkTargetList</span></a> * gtk_text_buffer_get_copy_target_list
2583
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
2584
+ <p>
2585
+ This function returns the list of targets this text buffer can
2586
+ provide for copying and as DND source. The targets in the list are
2587
+ added with <code class="literal">info</code> values from the <a class="link" href="GtkTextBuffer.html#GtkTextBufferTargetInfo" title="enum GtkTextBufferTargetInfo"><span class="type">GtkTextBufferTargetInfo</span></a> enum,
2588
+ using <a class="link" href="gtk-Selections.html#gtk-target-list-add-rich-text-targets" title="gtk_target_list_add_rich_text_targets ()"><code class="function">gtk_target_list_add_rich_text_targets()</code></a> and
2589
+ <a class="link" href="gtk-Selections.html#gtk-target-list-add-text-targets" title="gtk_target_list_add_text_targets ()"><code class="function">gtk_target_list_add_text_targets()</code></a>.
2590
+ </p>
2591
+ <div class="variablelist"><table border="0">
2592
+ <col align="left" valign="top">
2593
+ <tbody>
2594
+ <tr>
2595
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2596
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2597
+ </td>
2598
+ </tr>
2599
+ <tr>
2600
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2601
+ <td>the <a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2602
+ </td>
2603
+ </tr>
2604
+ </tbody>
2605
+ </table></div>
2606
+ <p class="since">Since 2.10</p>
2607
+ </div>
2608
+ <hr>
2609
+ <div class="refsect2">
2610
+ <a name="gtk-text-buffer-get-deserialize-formats"></a><h3>gtk_text_buffer_get_deserialize_formats ()</h3>
2611
+ <pre class="programlisting"><a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> * gtk_text_buffer_get_deserialize_formats
2612
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2613
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *n_formats</code></em>);</pre>
2614
+ <p>
2615
+ This function returns the rich text deserialize formats registered
2616
+ with <em class="parameter"><code>buffer</code></em> using <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-deserialize-format" title="gtk_text_buffer_register_deserialize_format ()"><code class="function">gtk_text_buffer_register_deserialize_format()</code></a> or
2617
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-deserialize-tagset" title="gtk_text_buffer_register_deserialize_tagset ()"><code class="function">gtk_text_buffer_register_deserialize_tagset()</code></a>
2618
+ </p>
2619
+ <div class="variablelist"><table border="0">
2620
+ <col align="left" valign="top">
2621
+ <tbody>
2622
+ <tr>
2623
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2624
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2625
+ </td>
2626
+ </tr>
2627
+ <tr>
2628
+ <td><p><span class="term"><em class="parameter"><code>n_formats</code></em> :</span></p></td>
2629
+ <td>return location for the number of formats</td>
2630
+ </tr>
2631
+ <tr>
2632
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2633
+ <td>an array of
2634
+ <a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a>s representing the registered formats. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_formats][<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>]</span>
2635
+ </td>
2636
+ </tr>
2637
+ </tbody>
2638
+ </table></div>
2639
+ <p class="since">Since 2.10</p>
2640
+ </div>
2641
+ <hr>
2642
+ <div class="refsect2">
2643
+ <a name="gtk-text-buffer-get-paste-target-list"></a><h3>gtk_text_buffer_get_paste_target_list ()</h3>
2644
+ <pre class="programlisting"><a class="link" href="gtk-Selections.html#GtkTargetList"><span class="returnvalue">GtkTargetList</span></a> * gtk_text_buffer_get_paste_target_list
2645
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
2646
+ <p>
2647
+ This function returns the list of targets this text buffer supports
2648
+ for pasting and as DND destination. The targets in the list are
2649
+ added with <code class="literal">info</code> values from the <a class="link" href="GtkTextBuffer.html#GtkTextBufferTargetInfo" title="enum GtkTextBufferTargetInfo"><span class="type">GtkTextBufferTargetInfo</span></a> enum,
2650
+ using <a class="link" href="gtk-Selections.html#gtk-target-list-add-rich-text-targets" title="gtk_target_list_add_rich_text_targets ()"><code class="function">gtk_target_list_add_rich_text_targets()</code></a> and
2651
+ <a class="link" href="gtk-Selections.html#gtk-target-list-add-text-targets" title="gtk_target_list_add_text_targets ()"><code class="function">gtk_target_list_add_text_targets()</code></a>.
2652
+ </p>
2653
+ <div class="variablelist"><table border="0">
2654
+ <col align="left" valign="top">
2655
+ <tbody>
2656
+ <tr>
2657
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2658
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2659
+ </td>
2660
+ </tr>
2661
+ <tr>
2662
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2663
+ <td>the <a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2664
+ </td>
2665
+ </tr>
2666
+ </tbody>
2667
+ </table></div>
2668
+ <p class="since">Since 2.10</p>
2669
+ </div>
2670
+ <hr>
2671
+ <div class="refsect2">
2672
+ <a name="gtk-text-buffer-get-serialize-formats"></a><h3>gtk_text_buffer_get_serialize_formats ()</h3>
2673
+ <pre class="programlisting"><a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> * gtk_text_buffer_get_serialize_formats
2674
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2675
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *n_formats</code></em>);</pre>
2676
+ <p>
2677
+ This function returns the rich text serialize formats registered
2678
+ with <em class="parameter"><code>buffer</code></em> using <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-serialize-format" title="gtk_text_buffer_register_serialize_format ()"><code class="function">gtk_text_buffer_register_serialize_format()</code></a> or
2679
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-serialize-tagset" title="gtk_text_buffer_register_serialize_tagset ()"><code class="function">gtk_text_buffer_register_serialize_tagset()</code></a>
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>buffer</code></em> :</span></p></td>
2686
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2687
+ </td>
2688
+ </tr>
2689
+ <tr>
2690
+ <td><p><span class="term"><em class="parameter"><code>n_formats</code></em> :</span></p></td>
2691
+ <td>return location for the number of formats</td>
2692
+ </tr>
2693
+ <tr>
2694
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2695
+ <td>an array of
2696
+ <a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a>s representing the registered formats. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_formats][<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>]</span>
2697
+ </td>
2698
+ </tr>
2699
+ </tbody>
2700
+ </table></div>
2701
+ <p class="since">Since 2.10</p>
2702
+ </div>
2703
+ <hr>
2704
+ <div class="refsect2">
2705
+ <a name="gtk-text-buffer-register-deserialize-format"></a><h3>gtk_text_buffer_register_deserialize_format ()</h3>
2706
+ <pre class="programlisting"><a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> gtk_text_buffer_register_deserialize_format
2707
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2708
+ <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> *mime_type</code></em>,
2709
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html#GtkTextBufferDeserializeFunc" title="GtkTextBufferDeserializeFunc ()"><span class="type">GtkTextBufferDeserializeFunc</span></a> function</code></em>,
2710
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
2711
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> user_data_destroy</code></em>);</pre>
2712
+ <p>
2713
+ This function registers a rich text deserialization <em class="parameter"><code>function</code></em> along with
2714
+ its <em class="parameter"><code>mime_type</code></em> with the passed <em class="parameter"><code>buffer</code></em>.
2715
+ </p>
2716
+ <div class="variablelist"><table border="0">
2717
+ <col align="left" valign="top">
2718
+ <tbody>
2719
+ <tr>
2720
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2721
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2722
+ </td>
2723
+ </tr>
2724
+ <tr>
2725
+ <td><p><span class="term"><em class="parameter"><code>mime_type</code></em> :</span></p></td>
2726
+ <td>the format's mime-type</td>
2727
+ </tr>
2728
+ <tr>
2729
+ <td><p><span class="term"><em class="parameter"><code>function</code></em> :</span></p></td>
2730
+ <td>the deserialize function to register</td>
2731
+ </tr>
2732
+ <tr>
2733
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2734
+ <td>
2735
+ <em class="parameter"><code>function</code></em>'s user_data</td>
2736
+ </tr>
2737
+ <tr>
2738
+ <td><p><span class="term"><em class="parameter"><code>user_data_destroy</code></em> :</span></p></td>
2739
+ <td>a function to call when <em class="parameter"><code>user_data</code></em> is no longer needed</td>
2740
+ </tr>
2741
+ <tr>
2742
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2743
+ <td>the <a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> that corresponds to the
2744
+ newly registered format's mime-type. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2745
+ </td>
2746
+ </tr>
2747
+ </tbody>
2748
+ </table></div>
2749
+ <p class="since">Since 2.10</p>
2750
+ </div>
2751
+ <hr>
2752
+ <div class="refsect2">
2753
+ <a name="gtk-text-buffer-register-deserialize-tagset"></a><h3>gtk_text_buffer_register_deserialize_tagset ()</h3>
2754
+ <pre class="programlisting"><a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> gtk_text_buffer_register_deserialize_tagset
2755
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2756
+ <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> *tagset_name</code></em>);</pre>
2757
+ <p>
2758
+ This function registers GTK+'s internal rich text serialization
2759
+ format with the passed <em class="parameter"><code>buffer</code></em>. See
2760
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-serialize-tagset" title="gtk_text_buffer_register_serialize_tagset ()"><code class="function">gtk_text_buffer_register_serialize_tagset()</code></a> for details.
2761
+ </p>
2762
+ <div class="variablelist"><table border="0">
2763
+ <col align="left" valign="top">
2764
+ <tbody>
2765
+ <tr>
2766
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2767
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2768
+ </td>
2769
+ </tr>
2770
+ <tr>
2771
+ <td><p><span class="term"><em class="parameter"><code>tagset_name</code></em> :</span></p></td>
2772
+ <td>an optional tagset name, on <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="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2773
+ </td>
2774
+ </tr>
2775
+ <tr>
2776
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2777
+ <td>the <a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> that corresponds to the
2778
+ newly registered format's mime-type. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2779
+ </td>
2780
+ </tr>
2781
+ </tbody>
2782
+ </table></div>
2783
+ <p class="since">Since 2.10</p>
2784
+ </div>
2785
+ <hr>
2786
+ <div class="refsect2">
2787
+ <a name="gtk-text-buffer-register-serialize-format"></a><h3>gtk_text_buffer_register_serialize_format ()</h3>
2788
+ <pre class="programlisting"><a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> gtk_text_buffer_register_serialize_format
2789
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2790
+ <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> *mime_type</code></em>,
2791
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html#GtkTextBufferSerializeFunc" title="GtkTextBufferSerializeFunc ()"><span class="type">GtkTextBufferSerializeFunc</span></a> function</code></em>,
2792
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
2793
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> user_data_destroy</code></em>);</pre>
2794
+ <p>
2795
+ This function registers a rich text serialization <em class="parameter"><code>function</code></em> along with
2796
+ its <em class="parameter"><code>mime_type</code></em> with the passed <em class="parameter"><code>buffer</code></em>.
2797
+ </p>
2798
+ <div class="variablelist"><table border="0">
2799
+ <col align="left" valign="top">
2800
+ <tbody>
2801
+ <tr>
2802
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2803
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2804
+ </td>
2805
+ </tr>
2806
+ <tr>
2807
+ <td><p><span class="term"><em class="parameter"><code>mime_type</code></em> :</span></p></td>
2808
+ <td>the format's mime-type</td>
2809
+ </tr>
2810
+ <tr>
2811
+ <td><p><span class="term"><em class="parameter"><code>function</code></em> :</span></p></td>
2812
+ <td>the serialize function to register</td>
2813
+ </tr>
2814
+ <tr>
2815
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2816
+ <td>
2817
+ <code class="literal">function</code>'s user_data</td>
2818
+ </tr>
2819
+ <tr>
2820
+ <td><p><span class="term"><em class="parameter"><code>user_data_destroy</code></em> :</span></p></td>
2821
+ <td>a function to call when <em class="parameter"><code>user_data</code></em> is no longer needed</td>
2822
+ </tr>
2823
+ <tr>
2824
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2825
+ <td>the <a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> that corresponds to the
2826
+ newly registered format's mime-type. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2827
+ </td>
2828
+ </tr>
2829
+ </tbody>
2830
+ </table></div>
2831
+ <p class="since">Since 2.10</p>
2832
+ </div>
2833
+ <hr>
2834
+ <div class="refsect2">
2835
+ <a name="gtk-text-buffer-register-serialize-tagset"></a><h3>gtk_text_buffer_register_serialize_tagset ()</h3>
2836
+ <pre class="programlisting"><a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> gtk_text_buffer_register_serialize_tagset
2837
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2838
+ <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> *tagset_name</code></em>);</pre>
2839
+ <p>
2840
+ This function registers GTK+'s internal rich text serialization
2841
+ format with the passed <em class="parameter"><code>buffer</code></em>. The internal format does not comply
2842
+ to any standard rich text format and only works between <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2843
+ instances. It is capable of serializing all of a text buffer's tags
2844
+ and embedded pixbufs.
2845
+ </p>
2846
+ <p>
2847
+ This function is just a wrapper around
2848
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-serialize-format" title="gtk_text_buffer_register_serialize_format ()"><code class="function">gtk_text_buffer_register_serialize_format()</code></a>. The mime type used
2849
+ for registering is "application/x-gtk-text-buffer-rich-text", or
2850
+ "application/x-gtk-text-buffer-rich-text;format=<em class="parameter"><code>tagset_name</code></em>" if a
2851
+ <em class="parameter"><code>tagset_name</code></em> was passed.
2852
+ </p>
2853
+ <p>
2854
+ The <em class="parameter"><code>tagset_name</code></em> can be used to restrict the transfer of rich text
2855
+ to buffers with compatible sets of tags, in order to avoid unknown
2856
+ tags from being pasted. It is probably the common case to pass an
2857
+ identifier != <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> here, since the <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> tagset requires the
2858
+ receiving buffer to deal with with pasting of arbitrary tags.
2859
+ </p>
2860
+ <div class="variablelist"><table border="0">
2861
+ <col align="left" valign="top">
2862
+ <tbody>
2863
+ <tr>
2864
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2865
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2866
+ </td>
2867
+ </tr>
2868
+ <tr>
2869
+ <td><p><span class="term"><em class="parameter"><code>tagset_name</code></em> :</span></p></td>
2870
+ <td>an optional tagset name, on <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="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2871
+ </td>
2872
+ </tr>
2873
+ <tr>
2874
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2875
+ <td>the <a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> that corresponds to the
2876
+ newly registered format's mime-type. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2877
+ </td>
2878
+ </tr>
2879
+ </tbody>
2880
+ </table></div>
2881
+ <p class="since">Since 2.10</p>
2882
+ </div>
2883
+ <hr>
2884
+ <div class="refsect2">
2885
+ <a name="GtkTextBufferSerializeFunc"></a><h3>GtkTextBufferSerializeFunc ()</h3>
2886
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="returnvalue">guint8</span></a> * (*GtkTextBufferSerializeFunc) (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *register_buffer</code></em>,
2887
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
2888
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
2889
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
2890
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> *length</code></em>,
2891
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
2892
+ <p>
2893
+ A function that is called to serialize the content of a text buffer.
2894
+ It must return the serialized form of the content.
2895
+ </p>
2896
+ <div class="variablelist"><table border="0">
2897
+ <col align="left" valign="top">
2898
+ <tbody>
2899
+ <tr>
2900
+ <td><p><span class="term"><em class="parameter"><code>register_buffer</code></em> :</span></p></td>
2901
+ <td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> for which the format is registered</td>
2902
+ </tr>
2903
+ <tr>
2904
+ <td><p><span class="term"><em class="parameter"><code>content_buffer</code></em> :</span></p></td>
2905
+ <td>the <span class="type">GtkTextsBuffer</span> to serialize</td>
2906
+ </tr>
2907
+ <tr>
2908
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
2909
+ <td>start of the block of text to serialize</td>
2910
+ </tr>
2911
+ <tr>
2912
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
2913
+ <td>end of the block of text to serialize</td>
2914
+ </tr>
2915
+ <tr>
2916
+ <td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
2917
+ <td>Return location for the length of the serialized data</td>
2918
+ </tr>
2919
+ <tr>
2920
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2921
+ <td>user data that was specified when registering the format</td>
2922
+ </tr>
2923
+ <tr>
2924
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2925
+ <td>a newly-allocated array of guint8 which contains the serialized
2926
+ data, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if an error occurred</td>
2927
+ </tr>
2928
+ </tbody>
2929
+ </table></div>
2930
+ </div>
2931
+ <hr>
2932
+ <div class="refsect2">
2933
+ <a name="gtk-text-buffer-serialize"></a><h3>gtk_text_buffer_serialize ()</h3>
2934
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="returnvalue">guint8</span></a> * gtk_text_buffer_serialize (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *register_buffer</code></em>,
2935
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
2936
+ <em class="parameter"><code><a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
2937
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
2938
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
2939
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> *length</code></em>);</pre>
2940
+ <p>
2941
+ This function serializes the portion of text between <em class="parameter"><code>start</code></em>
2942
+ and <em class="parameter"><code>end</code></em> in the rich text format represented by <em class="parameter"><code>format</code></em>.
2943
+ </p>
2944
+ <p>
2945
+ <em class="parameter"><code>format</code></em>s to be used must be registered using
2946
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-serialize-format" title="gtk_text_buffer_register_serialize_format ()"><code class="function">gtk_text_buffer_register_serialize_format()</code></a> or
2947
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-serialize-tagset" title="gtk_text_buffer_register_serialize_tagset ()"><code class="function">gtk_text_buffer_register_serialize_tagset()</code></a> beforehand.
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>register_buffer</code></em> :</span></p></td>
2954
+ <td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> <em class="parameter"><code>format</code></em> is registered with</td>
2955
+ </tr>
2956
+ <tr>
2957
+ <td><p><span class="term"><em class="parameter"><code>content_buffer</code></em> :</span></p></td>
2958
+ <td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> to serialize</td>
2959
+ </tr>
2960
+ <tr>
2961
+ <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
2962
+ <td>the rich text format to use for serializing</td>
2963
+ </tr>
2964
+ <tr>
2965
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
2966
+ <td>start of block of text to serialize</td>
2967
+ </tr>
2968
+ <tr>
2969
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
2970
+ <td>end of block of test to serialize</td>
2971
+ </tr>
2972
+ <tr>
2973
+ <td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
2974
+ <td>return location for the length of the serialized data</td>
2975
+ </tr>
2976
+ <tr>
2977
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2978
+ <td>the serialized
2979
+ data, encoded as <em class="parameter"><code>format</code></em>. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=length][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
2980
+ </td>
2981
+ </tr>
2982
+ </tbody>
2983
+ </table></div>
2984
+ <p class="since">Since 2.10</p>
2985
+ </div>
2986
+ <hr>
2987
+ <div class="refsect2">
2988
+ <a name="gtk-text-buffer-unregister-deserialize-format"></a><h3>gtk_text_buffer_unregister_deserialize_format ()</h3>
2989
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_unregister_deserialize_format
2990
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2991
+ <em class="parameter"><code><a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>);</pre>
2992
+ <p>
2993
+ This function unregisters a rich text format that was previously
2994
+ registered using <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-deserialize-format" title="gtk_text_buffer_register_deserialize_format ()"><code class="function">gtk_text_buffer_register_deserialize_format()</code></a> or
2995
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-deserialize-tagset" title="gtk_text_buffer_register_deserialize_tagset ()"><code class="function">gtk_text_buffer_register_deserialize_tagset()</code></a>.
2996
+ </p>
2997
+ <div class="variablelist"><table border="0">
2998
+ <col align="left" valign="top">
2999
+ <tbody>
3000
+ <tr>
3001
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
3002
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
3003
+ </td>
3004
+ </tr>
3005
+ <tr>
3006
+ <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
3007
+ <td>a <a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> representing a registered rich text format.</td>
3008
+ </tr>
3009
+ </tbody>
3010
+ </table></div>
3011
+ <p class="since">Since 2.10</p>
3012
+ </div>
3013
+ <hr>
3014
+ <div class="refsect2">
3015
+ <a name="gtk-text-buffer-unregister-serialize-format"></a><h3>gtk_text_buffer_unregister_serialize_format ()</h3>
3016
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_unregister_serialize_format
3017
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
3018
+ <em class="parameter"><code><a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>);</pre>
3019
+ <p>
3020
+ This function unregisters a rich text format that was previously
3021
+ registered using <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-serialize-format" title="gtk_text_buffer_register_serialize_format ()"><code class="function">gtk_text_buffer_register_serialize_format()</code></a> or
3022
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-serialize-tagset" title="gtk_text_buffer_register_serialize_tagset ()"><code class="function">gtk_text_buffer_register_serialize_tagset()</code></a>
3023
+ </p>
3024
+ <div class="variablelist"><table border="0">
3025
+ <col align="left" valign="top">
3026
+ <tbody>
3027
+ <tr>
3028
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
3029
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
3030
+ </td>
3031
+ </tr>
3032
+ <tr>
3033
+ <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
3034
+ <td>a <a href="../gdk/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> representing a registered rich text format.</td>
3035
+ </tr>
3036
+ </tbody>
3037
+ </table></div>
3038
+ <p class="since">Since 2.10</p>
3039
+ </div>
3040
+ </div>
3041
+ <div class="refsect1">
3042
+ <a name="GtkTextBuffer.property-details"></a><h2>Property Details</h2>
3043
+ <div class="refsect2">
3044
+ <a name="GtkTextBuffer--copy-target-list"></a><h3>The <code class="literal">"copy-target-list"</code> property</h3>
3045
+ <pre class="programlisting"> "copy-target-list" <a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a>* : Read</pre>
3046
+ <p>
3047
+ The list of targets this buffer supports for clipboard copying
3048
+ and as DND source.
3049
+ </p>
3050
+ <p class="since">Since 2.10</p>
3051
+ </div>
3052
+ <hr>
3053
+ <div class="refsect2">
3054
+ <a name="GtkTextBuffer--cursor-position"></a><h3>The <code class="literal">"cursor-position"</code> property</h3>
3055
+ <pre class="programlisting"> "cursor-position" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
3056
+ <p>
3057
+ The position of the insert mark (as offset from the beginning
3058
+ of the buffer). It is useful for getting notified when the
3059
+ cursor moves.
3060
+ </p>
3061
+ <p>Allowed values: &gt;= 0</p>
3062
+ <p>Default value: 0</p>
3063
+ <p class="since">Since 2.10</p>
3064
+ </div>
3065
+ <hr>
3066
+ <div class="refsect2">
3067
+ <a name="GtkTextBuffer--has-selection"></a><h3>The <code class="literal">"has-selection"</code> property</h3>
3068
+ <pre class="programlisting"> "has-selection" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
3069
+ <p>
3070
+ Whether the buffer has some text currently selected.
3071
+ </p>
3072
+ <p>Default value: FALSE</p>
3073
+ <p class="since">Since 2.10</p>
3074
+ </div>
3075
+ <hr>
3076
+ <div class="refsect2">
3077
+ <a name="GtkTextBuffer--paste-target-list"></a><h3>The <code class="literal">"paste-target-list"</code> property</h3>
3078
+ <pre class="programlisting"> "paste-target-list" <a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a>* : Read</pre>
3079
+ <p>
3080
+ The list of targets this buffer supports for clipboard pasting
3081
+ and as DND destination.
3082
+ </p>
3083
+ <p class="since">Since 2.10</p>
3084
+ </div>
3085
+ <hr>
3086
+ <div class="refsect2">
3087
+ <a name="GtkTextBuffer--tag-table"></a><h3>The <code class="literal">"tag-table"</code> property</h3>
3088
+ <pre class="programlisting"> "tag-table" <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>* : Read / Write / Construct Only</pre>
3089
+ <p>Text Tag Table.</p>
3090
+ </div>
3091
+ <hr>
3092
+ <div class="refsect2">
3093
+ <a name="GtkTextBuffer--text"></a><h3>The <code class="literal">"text"</code> property</h3>
3094
+ <pre class="programlisting"> "text" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
3095
+ <p>
3096
+ The text content of the buffer. Without child widgets and images,
3097
+ see <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-text" title="gtk_text_buffer_get_text ()"><code class="function">gtk_text_buffer_get_text()</code></a> for more information.
3098
+ </p>
3099
+ <p>Default value: ""</p>
3100
+ <p class="since">Since 2.8</p>
3101
+ </div>
3102
+ </div>
3103
+ <div class="refsect1">
3104
+ <a name="GtkTextBuffer.signal-details"></a><h2>Signal Details</h2>
3105
+ <div class="refsect2">
3106
+ <a name="GtkTextBuffer-apply-tag"></a><h3>The <code class="literal">"apply-tag"</code> signal</h3>
3107
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
3108
+ <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag,
3109
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start,
3110
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end,
3111
+ <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>
3112
+ <p>
3113
+ The ::apply-tag signal is emitted to apply a tag to a
3114
+ range of text in a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
3115
+ Applying actually occurs in the default handler.
3116
+ </p>
3117
+ <p>
3118
+ Note that if your handler runs before the default handler it must not
3119
+ invalidate the <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> iters (or has to revalidate them).
3120
+ </p>
3121
+ <p>
3122
+ See also:
3123
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-apply-tag" title="gtk_text_buffer_apply_tag ()"><code class="function">gtk_text_buffer_apply_tag()</code></a>,
3124
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-with-tags" title="gtk_text_buffer_insert_with_tags ()"><code class="function">gtk_text_buffer_insert_with_tags()</code></a>,
3125
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-range" title="gtk_text_buffer_insert_range ()"><code class="function">gtk_text_buffer_insert_range()</code></a>.
3126
+ </p>
3127
+ <div class="variablelist"><table border="0">
3128
+ <col align="left" valign="top">
3129
+ <tbody>
3130
+ <tr>
3131
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3132
+ <td>the object which received the signal</td>
3133
+ </tr>
3134
+ <tr>
3135
+ <td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
3136
+ <td>the applied tag</td>
3137
+ </tr>
3138
+ <tr>
3139
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
3140
+ <td>the start of the range the tag is applied to</td>
3141
+ </tr>
3142
+ <tr>
3143
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
3144
+ <td>the end of the range the tag is applied to</td>
3145
+ </tr>
3146
+ <tr>
3147
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3148
+ <td>user data set when the signal handler was connected.</td>
3149
+ </tr>
3150
+ </tbody>
3151
+ </table></div>
3152
+ </div>
3153
+ <hr>
3154
+ <div class="refsect2">
3155
+ <a name="GtkTextBuffer-begin-user-action"></a><h3>The <code class="literal">"begin-user-action"</code> signal</h3>
3156
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
3157
+ <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>
3158
+ <p>
3159
+ The ::begin-user-action signal is emitted at the beginning of a single
3160
+ user-visible operation on a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
3161
+ </p>
3162
+ <p>
3163
+ See also:
3164
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-begin-user-action" title="gtk_text_buffer_begin_user_action ()"><code class="function">gtk_text_buffer_begin_user_action()</code></a>,
3165
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-interactive" title="gtk_text_buffer_insert_interactive ()"><code class="function">gtk_text_buffer_insert_interactive()</code></a>,
3166
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-range-interactive" title="gtk_text_buffer_insert_range_interactive ()"><code class="function">gtk_text_buffer_insert_range_interactive()</code></a>,
3167
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete-interactive" title="gtk_text_buffer_delete_interactive ()"><code class="function">gtk_text_buffer_delete_interactive()</code></a>,
3168
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-backspace" title="gtk_text_buffer_backspace ()"><code class="function">gtk_text_buffer_backspace()</code></a>,
3169
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete-selection" title="gtk_text_buffer_delete_selection ()"><code class="function">gtk_text_buffer_delete_selection()</code></a>.
3170
+ </p>
3171
+ <div class="variablelist"><table border="0">
3172
+ <col align="left" valign="top">
3173
+ <tbody>
3174
+ <tr>
3175
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3176
+ <td>the object which received the signal</td>
3177
+ </tr>
3178
+ <tr>
3179
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3180
+ <td>user data set when the signal handler was connected.</td>
3181
+ </tr>
3182
+ </tbody>
3183
+ </table></div>
3184
+ </div>
3185
+ <hr>
3186
+ <div class="refsect2">
3187
+ <a name="GtkTextBuffer-changed"></a><h3>The <code class="literal">"changed"</code> signal</h3>
3188
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
3189
+ <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>
3190
+ <p>
3191
+ The ::changed signal is emitted when the content of a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
3192
+ has changed.
3193
+ </p>
3194
+ <div class="variablelist"><table border="0">
3195
+ <col align="left" valign="top">
3196
+ <tbody>
3197
+ <tr>
3198
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3199
+ <td>the object which received the signal</td>
3200
+ </tr>
3201
+ <tr>
3202
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3203
+ <td>user data set when the signal handler was connected.</td>
3204
+ </tr>
3205
+ </tbody>
3206
+ </table></div>
3207
+ </div>
3208
+ <hr>
3209
+ <div class="refsect2">
3210
+ <a name="GtkTextBuffer-delete-range"></a><h3>The <code class="literal">"delete-range"</code> signal</h3>
3211
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
3212
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start,
3213
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end,
3214
+ <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>
3215
+ <p>
3216
+ The ::delete-range signal is emitted to delete a range
3217
+ from a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
3218
+ </p>
3219
+ <p>
3220
+ Note that if your handler runs before the default handler it must not
3221
+ invalidate the <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> iters (or has to revalidate them).
3222
+ The default signal handler revalidates the <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> iters to
3223
+ both point point to the location where text was deleted. Handlers
3224
+ which run after the default handler (see <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-connect-after"><code class="function">g_signal_connect_after()</code></a>)
3225
+ do not have access to the deleted text.
3226
+ </p>
3227
+ <p>
3228
+ See also: <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete" title="gtk_text_buffer_delete ()"><code class="function">gtk_text_buffer_delete()</code></a>.
3229
+ </p>
3230
+ <div class="variablelist"><table border="0">
3231
+ <col align="left" valign="top">
3232
+ <tbody>
3233
+ <tr>
3234
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3235
+ <td>the object which received the signal</td>
3236
+ </tr>
3237
+ <tr>
3238
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
3239
+ <td>the start of the range to be deleted</td>
3240
+ </tr>
3241
+ <tr>
3242
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
3243
+ <td>the end of the range to be deleted</td>
3244
+ </tr>
3245
+ <tr>
3246
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3247
+ <td>user data set when the signal handler was connected.</td>
3248
+ </tr>
3249
+ </tbody>
3250
+ </table></div>
3251
+ </div>
3252
+ <hr>
3253
+ <div class="refsect2">
3254
+ <a name="GtkTextBuffer-end-user-action"></a><h3>The <code class="literal">"end-user-action"</code> signal</h3>
3255
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
3256
+ <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>
3257
+ <p>
3258
+ The ::end-user-action signal is emitted at the end of a single
3259
+ user-visible operation on the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
3260
+ </p>
3261
+ <p>
3262
+ See also:
3263
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-end-user-action" title="gtk_text_buffer_end_user_action ()"><code class="function">gtk_text_buffer_end_user_action()</code></a>,
3264
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-interactive" title="gtk_text_buffer_insert_interactive ()"><code class="function">gtk_text_buffer_insert_interactive()</code></a>,
3265
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-range-interactive" title="gtk_text_buffer_insert_range_interactive ()"><code class="function">gtk_text_buffer_insert_range_interactive()</code></a>,
3266
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete-interactive" title="gtk_text_buffer_delete_interactive ()"><code class="function">gtk_text_buffer_delete_interactive()</code></a>,
3267
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-backspace" title="gtk_text_buffer_backspace ()"><code class="function">gtk_text_buffer_backspace()</code></a>,
3268
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete-selection" title="gtk_text_buffer_delete_selection ()"><code class="function">gtk_text_buffer_delete_selection()</code></a>,
3269
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-backspace" title="gtk_text_buffer_backspace ()"><code class="function">gtk_text_buffer_backspace()</code></a>.
3270
+ </p>
3271
+ <div class="variablelist"><table border="0">
3272
+ <col align="left" valign="top">
3273
+ <tbody>
3274
+ <tr>
3275
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3276
+ <td>the object which received the signal</td>
3277
+ </tr>
3278
+ <tr>
3279
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3280
+ <td>user data set when the signal handler was connected.</td>
3281
+ </tr>
3282
+ </tbody>
3283
+ </table></div>
3284
+ </div>
3285
+ <hr>
3286
+ <div class="refsect2">
3287
+ <a name="GtkTextBuffer-insert-child-anchor"></a><h3>The <code class="literal">"insert-child-anchor"</code> signal</h3>
3288
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
3289
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *location,
3290
+ <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor,
3291
+ <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>
3292
+ <p>
3293
+ The ::insert-child-anchor signal is emitted to insert a
3294
+ <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> in a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
3295
+ Insertion actually occurs in the default handler.
3296
+ </p>
3297
+ <p>
3298
+ Note that if your handler runs before the default handler it must
3299
+ not invalidate the <em class="parameter"><code>location</code></em> iter (or has to revalidate it).
3300
+ The default signal handler revalidates it to be placed after the
3301
+ inserted <em class="parameter"><code>anchor</code></em>.
3302
+ </p>
3303
+ <p>
3304
+ See also: <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>.
3305
+ </p>
3306
+ <div class="variablelist"><table border="0">
3307
+ <col align="left" valign="top">
3308
+ <tbody>
3309
+ <tr>
3310
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3311
+ <td>the object which received the signal</td>
3312
+ </tr>
3313
+ <tr>
3314
+ <td><p><span class="term"><em class="parameter"><code>location</code></em> :</span></p></td>
3315
+ <td>position to insert <em class="parameter"><code>anchor</code></em> in <em class="parameter"><code>textbuffer</code></em>
3316
+ </td>
3317
+ </tr>
3318
+ <tr>
3319
+ <td><p><span class="term"><em class="parameter"><code>anchor</code></em> :</span></p></td>
3320
+ <td>the <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> to be inserted</td>
3321
+ </tr>
3322
+ <tr>
3323
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3324
+ <td>user data set when the signal handler was connected.</td>
3325
+ </tr>
3326
+ </tbody>
3327
+ </table></div>
3328
+ </div>
3329
+ <hr>
3330
+ <div class="refsect2">
3331
+ <a name="GtkTextBuffer-insert-pixbuf"></a><h3>The <code class="literal">"insert-pixbuf"</code> signal</h3>
3332
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
3333
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *location,
3334
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf,
3335
+ <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>
3336
+ <p>
3337
+ The ::insert-pixbuf signal is emitted to insert a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>
3338
+ in a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>. Insertion actually occurs in the default handler.
3339
+ </p>
3340
+ <p>
3341
+ Note that if your handler runs before the default handler it must not
3342
+ invalidate the <em class="parameter"><code>location</code></em> iter (or has to revalidate it).
3343
+ The default signal handler revalidates it to be placed after the
3344
+ inserted <em class="parameter"><code>pixbuf</code></em>.
3345
+ </p>
3346
+ <p>
3347
+ See also: <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-pixbuf" title="gtk_text_buffer_insert_pixbuf ()"><code class="function">gtk_text_buffer_insert_pixbuf()</code></a>.
3348
+ </p>
3349
+ <div class="variablelist"><table border="0">
3350
+ <col align="left" valign="top">
3351
+ <tbody>
3352
+ <tr>
3353
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3354
+ <td>the object which received the signal</td>
3355
+ </tr>
3356
+ <tr>
3357
+ <td><p><span class="term"><em class="parameter"><code>location</code></em> :</span></p></td>
3358
+ <td>position to insert <em class="parameter"><code>pixbuf</code></em> in <em class="parameter"><code>textbuffer</code></em>
3359
+ </td>
3360
+ </tr>
3361
+ <tr>
3362
+ <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
3363
+ <td>the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> to be inserted</td>
3364
+ </tr>
3365
+ <tr>
3366
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3367
+ <td>user data set when the signal handler was connected.</td>
3368
+ </tr>
3369
+ </tbody>
3370
+ </table></div>
3371
+ </div>
3372
+ <hr>
3373
+ <div class="refsect2">
3374
+ <a name="GtkTextBuffer-insert-text"></a><h3>The <code class="literal">"insert-text"</code> signal</h3>
3375
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
3376
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *location,
3377
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text,
3378
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len,
3379
+ <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>
3380
+ <p>
3381
+ The ::insert-text signal is emitted to insert text in a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
3382
+ Insertion actually occurs in the default handler.
3383
+ </p>
3384
+ <p>
3385
+ Note that if your handler runs before the default handler it must not
3386
+ invalidate the <em class="parameter"><code>location</code></em> iter (or has to revalidate it).
3387
+ The default signal handler revalidates it to point to the end of the
3388
+ inserted text.
3389
+ </p>
3390
+ <p>
3391
+ See also:
3392
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert" title="gtk_text_buffer_insert ()"><code class="function">gtk_text_buffer_insert()</code></a>,
3393
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-range" title="gtk_text_buffer_insert_range ()"><code class="function">gtk_text_buffer_insert_range()</code></a>.
3394
+ </p>
3395
+ <div class="variablelist"><table border="0">
3396
+ <col align="left" valign="top">
3397
+ <tbody>
3398
+ <tr>
3399
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3400
+ <td>the object which received the signal</td>
3401
+ </tr>
3402
+ <tr>
3403
+ <td><p><span class="term"><em class="parameter"><code>location</code></em> :</span></p></td>
3404
+ <td>position to insert <em class="parameter"><code>text</code></em> in <em class="parameter"><code>textbuffer</code></em>
3405
+ </td>
3406
+ </tr>
3407
+ <tr>
3408
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
3409
+ <td>the UTF-8 text to be inserted</td>
3410
+ </tr>
3411
+ <tr>
3412
+ <td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
3413
+ <td>length of the inserted text in bytes</td>
3414
+ </tr>
3415
+ <tr>
3416
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3417
+ <td>user data set when the signal handler was connected.</td>
3418
+ </tr>
3419
+ </tbody>
3420
+ </table></div>
3421
+ </div>
3422
+ <hr>
3423
+ <div class="refsect2">
3424
+ <a name="GtkTextBuffer-mark-deleted"></a><h3>The <code class="literal">"mark-deleted"</code> signal</h3>
3425
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
3426
+ <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark,
3427
+ <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>
3428
+ <p>
3429
+ The ::mark-deleted signal is emitted as notification
3430
+ after a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> is deleted.
3431
+ </p>
3432
+ <p>
3433
+ See also:
3434
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete-mark" title="gtk_text_buffer_delete_mark ()"><code class="function">gtk_text_buffer_delete_mark()</code></a>.
3435
+ </p>
3436
+ <div class="variablelist"><table border="0">
3437
+ <col align="left" valign="top">
3438
+ <tbody>
3439
+ <tr>
3440
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3441
+ <td>the object which received the signal</td>
3442
+ </tr>
3443
+ <tr>
3444
+ <td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
3445
+ <td>The mark that was deleted</td>
3446
+ </tr>
3447
+ <tr>
3448
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3449
+ <td>user data set when the signal handler was connected.</td>
3450
+ </tr>
3451
+ </tbody>
3452
+ </table></div>
3453
+ </div>
3454
+ <hr>
3455
+ <div class="refsect2">
3456
+ <a name="GtkTextBuffer-mark-set"></a><h3>The <code class="literal">"mark-set"</code> signal</h3>
3457
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
3458
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *location,
3459
+ <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark,
3460
+ <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>
3461
+ <p>
3462
+ The ::mark-set signal is emitted as notification
3463
+ after a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> is set.
3464
+ </p>
3465
+ <p>
3466
+ See also:
3467
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-create-mark" title="gtk_text_buffer_create_mark ()"><code class="function">gtk_text_buffer_create_mark()</code></a>,
3468
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-move-mark" title="gtk_text_buffer_move_mark ()"><code class="function">gtk_text_buffer_move_mark()</code></a>.
3469
+ </p>
3470
+ <div class="variablelist"><table border="0">
3471
+ <col align="left" valign="top">
3472
+ <tbody>
3473
+ <tr>
3474
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3475
+ <td>the object which received the signal</td>
3476
+ </tr>
3477
+ <tr>
3478
+ <td><p><span class="term"><em class="parameter"><code>location</code></em> :</span></p></td>
3479
+ <td>The location of <em class="parameter"><code>mark</code></em> in <em class="parameter"><code>textbuffer</code></em>
3480
+ </td>
3481
+ </tr>
3482
+ <tr>
3483
+ <td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
3484
+ <td>The mark that is set</td>
3485
+ </tr>
3486
+ <tr>
3487
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3488
+ <td>user data set when the signal handler was connected.</td>
3489
+ </tr>
3490
+ </tbody>
3491
+ </table></div>
3492
+ </div>
3493
+ <hr>
3494
+ <div class="refsect2">
3495
+ <a name="GtkTextBuffer-modified-changed"></a><h3>The <code class="literal">"modified-changed"</code> signal</h3>
3496
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
3497
+ <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>
3498
+ <p>
3499
+ The ::modified-changed signal is emitted when the modified bit of a
3500
+ <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> flips.
3501
+ </p>
3502
+ <p>
3503
+ See also:
3504
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-set-modified" title="gtk_text_buffer_set_modified ()"><code class="function">gtk_text_buffer_set_modified()</code></a>.
3505
+ </p>
3506
+ <div class="variablelist"><table border="0">
3507
+ <col align="left" valign="top">
3508
+ <tbody>
3509
+ <tr>
3510
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3511
+ <td>the object which received the signal</td>
3512
+ </tr>
3513
+ <tr>
3514
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3515
+ <td>user data set when the signal handler was connected.</td>
3516
+ </tr>
3517
+ </tbody>
3518
+ </table></div>
3519
+ </div>
3520
+ <hr>
3521
+ <div class="refsect2">
3522
+ <a name="GtkTextBuffer-paste-done"></a><h3>The <code class="literal">"paste-done"</code> signal</h3>
3523
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
3524
+ <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *arg1,
3525
+ <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>
3526
+ <p>
3527
+ The paste-done signal is emitted after paste operation has been completed.
3528
+ This is useful to properly scroll the view to the end of the pasted text.
3529
+ See <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-paste-clipboard" title="gtk_text_buffer_paste_clipboard ()"><code class="function">gtk_text_buffer_paste_clipboard()</code></a> for more details.
3530
+ </p>
3531
+ <div class="variablelist"><table border="0">
3532
+ <col align="left" valign="top">
3533
+ <tbody>
3534
+ <tr>
3535
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3536
+ <td>the object which received the signal</td>
3537
+ </tr>
3538
+ <tr>
3539
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3540
+ <td>user data set when the signal handler was connected.</td>
3541
+ </tr>
3542
+ </tbody>
3543
+ </table></div>
3544
+ <p class="since">Since 2.16</p>
3545
+ </div>
3546
+ <hr>
3547
+ <div class="refsect2">
3548
+ <a name="GtkTextBuffer-remove-tag"></a><h3>The <code class="literal">"remove-tag"</code> signal</h3>
3549
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
3550
+ <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag,
3551
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start,
3552
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end,
3553
+ <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>
3554
+ <p>
3555
+ The ::remove-tag signal is emitted to remove all occurrences of <em class="parameter"><code>tag</code></em> from
3556
+ a range of text in a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
3557
+ Removal actually occurs in the default handler.
3558
+ </p>
3559
+ <p>
3560
+ Note that if your handler runs before the default handler it must not
3561
+ invalidate the <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> iters (or has to revalidate them).
3562
+ </p>
3563
+ <p>
3564
+ See also:
3565
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-remove-tag" title="gtk_text_buffer_remove_tag ()"><code class="function">gtk_text_buffer_remove_tag()</code></a>.
3566
+ </p>
3567
+ <div class="variablelist"><table border="0">
3568
+ <col align="left" valign="top">
3569
+ <tbody>
3570
+ <tr>
3571
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3572
+ <td>the object which received the signal</td>
3573
+ </tr>
3574
+ <tr>
3575
+ <td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
3576
+ <td>the tag to be removed</td>
3577
+ </tr>
3578
+ <tr>
3579
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
3580
+ <td>the start of the range the tag is removed from</td>
3581
+ </tr>
3582
+ <tr>
3583
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
3584
+ <td>the end of the range the tag is removed from</td>
3585
+ </tr>
3586
+ <tr>
3587
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3588
+ <td>user data set when the signal handler was connected.</td>
3589
+ </tr>
3590
+ </tbody>
3591
+ </table></div>
3592
+ </div>
3593
+ </div>
3594
+ <div class="refsect1">
3595
+ <a name="GtkTextBuffer.see-also"></a><h2>See Also</h2>
3596
+ <p>
3597
+ <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>, <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>, <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>
3598
+ </p>
3599
+ </div>
3600
+ </div>
3601
+ <div class="footer">
3602
+ <hr>
3603
+ Generated by GTK-Doc V1.18</div>
3604
+ </body>
3605
+ </html>