gdk3 1.2.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1337) hide show
  1. data/Rakefile +53 -0
  2. data/ext/gdk3/depend +11 -0
  3. data/ext/gdk3/extconf.rb +127 -0
  4. data/ext/gdk3/gdk3.def +12 -0
  5. data/ext/gdk3/init.c +35 -0
  6. data/ext/gdk3/rbgdk.c +540 -0
  7. data/ext/gdk3/rbgdk3.h +71 -0
  8. data/ext/gdk3/rbgdk3conversions.h +118 -0
  9. data/ext/gdk3/rbgdk3private.h +93 -0
  10. data/ext/gdk3/rbgdkatom.c +122 -0
  11. data/ext/gdk3/rbgdkcairo.c +95 -0
  12. data/ext/gdk3/rbgdkcolor.c +137 -0
  13. data/ext/gdk3/rbgdkconst.c +33 -0
  14. data/ext/gdk3/rbgdkcursor.c +99 -0
  15. data/ext/gdk3/rbgdkdevice.c +197 -0
  16. data/ext/gdk3/rbgdkdisplay.c +482 -0
  17. data/ext/gdk3/rbgdkdisplaymanager.c +55 -0
  18. data/ext/gdk3/rbgdkdragcontext.c +191 -0
  19. data/ext/gdk3/rbgdkdraw.c +520 -0
  20. data/ext/gdk3/rbgdkevent.c +926 -0
  21. data/ext/gdk3/rbgdkgeometry.c +252 -0
  22. data/ext/gdk3/rbgdkkeymap.c +151 -0
  23. data/ext/gdk3/rbgdkkeyval.c +108 -0
  24. data/ext/gdk3/rbgdkpango.c +197 -0
  25. data/ext/gdk3/rbgdkpangorenderer.c +144 -0
  26. data/ext/gdk3/rbgdkpixbuf.c +176 -0
  27. data/ext/gdk3/rbgdkproperty.c +305 -0
  28. data/ext/gdk3/rbgdkrectangle.c +140 -0
  29. data/ext/gdk3/rbgdkrgb.c +199 -0
  30. data/ext/gdk3/rbgdkrgba.c +142 -0
  31. data/ext/gdk3/rbgdkscreen.c +443 -0
  32. data/ext/gdk3/rbgdkselection.c +146 -0
  33. data/ext/gdk3/rbgdkthreads.c +77 -0
  34. data/ext/gdk3/rbgdktimecoord.c +133 -0
  35. data/ext/gdk3/rbgdkvisual.c +251 -0
  36. data/ext/gdk3/rbgdkwindow.c +1044 -0
  37. data/ext/gdk3/rbgdkwindowattr.c +191 -0
  38. data/ext/gdk3/rbgdkx11.c +102 -0
  39. data/ext/gdk3/rbgdkx11x11window.c +66 -0
  40. data/extconf.rb +49 -0
  41. data/lib/1.8/gdk3.so +0 -0
  42. data/lib/1.9/gdk3.so +0 -0
  43. data/lib/gdk3.rb +3 -0
  44. data/lib/gdk3/base.rb +50 -0
  45. data/lib/gdk3/deprecated.rb +152 -0
  46. data/vendor/local/bin/gtk-launch.exe +0 -0
  47. data/vendor/local/bin/gtk-query-immodules-3.0.exe +0 -0
  48. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  49. data/vendor/local/bin/gtk-update-icon-cache.exe.manifest +17 -0
  50. data/vendor/local/bin/gtk3-demo-application.exe +0 -0
  51. data/vendor/local/bin/gtk3-demo.exe +0 -0
  52. data/vendor/local/bin/gtk3-widget-factory.exe +0 -0
  53. data/vendor/local/bin/libgailutil-3-0.dll +0 -0
  54. data/vendor/local/bin/libgdk-3-0.dll +0 -0
  55. data/vendor/local/bin/libgtk-3-0.dll +0 -0
  56. data/vendor/local/etc/gtk-3.0/im-multipress.conf +22 -0
  57. data/vendor/local/etc/gtk-3.0/settings.ini +2 -0
  58. data/vendor/local/include/gail-3.0/libgail-util/gail-util.h +2 -0
  59. data/vendor/local/include/gail-3.0/libgail-util/gailmisc.h +76 -0
  60. data/vendor/local/include/gail-3.0/libgail-util/gailtextutil.h +85 -0
  61. data/vendor/local/include/gtk-3.0/gdk/gdk.h +61 -0
  62. data/vendor/local/include/gtk-3.0/gdk/gdkapplaunchcontext.h +60 -0
  63. data/vendor/local/include/gtk-3.0/gdk/gdkcairo.h +63 -0
  64. data/vendor/local/include/gtk-3.0/gdk/gdkcolor.h +77 -0
  65. data/vendor/local/include/gtk-3.0/gdk/gdkconfig.h +22 -0
  66. data/vendor/local/include/gtk-3.0/gdk/gdkcursor.h +240 -0
  67. data/vendor/local/include/gtk-3.0/gdk/gdkdevice.h +237 -0
  68. data/vendor/local/include/gtk-3.0/gdk/gdkdevicemanager.h +44 -0
  69. data/vendor/local/include/gtk-3.0/gdk/gdkdisplay.h +141 -0
  70. data/vendor/local/include/gtk-3.0/gdk/gdkdisplaymanager.h +55 -0
  71. data/vendor/local/include/gtk-3.0/gdk/gdkdnd.h +153 -0
  72. data/vendor/local/include/gtk-3.0/gdk/gdkenumtypes.h +105 -0
  73. data/vendor/local/include/gtk-3.0/gdk/gdkevents.h +1277 -0
  74. data/vendor/local/include/gtk-3.0/gdk/gdkkeys.h +142 -0
  75. data/vendor/local/include/gtk-3.0/gdk/gdkkeysyms-compat.h +2300 -0
  76. data/vendor/local/include/gtk-3.0/gdk/gdkkeysyms.h +2309 -0
  77. data/vendor/local/include/gtk-3.0/gdk/gdkmain.h +122 -0
  78. data/vendor/local/include/gtk-3.0/gdk/gdkpango.h +56 -0
  79. data/vendor/local/include/gtk-3.0/gdk/gdkpixbuf.h +52 -0
  80. data/vendor/local/include/gtk-3.0/gdk/gdkprivate.h +40 -0
  81. data/vendor/local/include/gtk-3.0/gdk/gdkproperty.h +91 -0
  82. data/vendor/local/include/gtk-3.0/gdk/gdkrectangle.h +51 -0
  83. data/vendor/local/include/gtk-3.0/gdk/gdkrgba.h +62 -0
  84. data/vendor/local/include/gtk-3.0/gdk/gdkscreen.h +100 -0
  85. data/vendor/local/include/gtk-3.0/gdk/gdkselection.h +208 -0
  86. data/vendor/local/include/gtk-3.0/gdk/gdktestutils.h +58 -0
  87. data/vendor/local/include/gtk-3.0/gdk/gdkthreads.h +105 -0
  88. data/vendor/local/include/gtk-3.0/gdk/gdktypes.h +421 -0
  89. data/vendor/local/include/gtk-3.0/gdk/gdkversionmacros.h +220 -0
  90. data/vendor/local/include/gtk-3.0/gdk/gdkvisual.h +123 -0
  91. data/vendor/local/include/gtk-3.0/gdk/gdkwin32.h +105 -0
  92. data/vendor/local/include/gtk-3.0/gdk/gdkwindow.h +884 -0
  93. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32cursor.h +54 -0
  94. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32display.h +54 -0
  95. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32displaymanager.h +47 -0
  96. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32dnd.h +47 -0
  97. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32keys.h +47 -0
  98. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32screen.h +54 -0
  99. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32window.h +54 -0
  100. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h +157 -0
  101. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h +80 -0
  102. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkfontsel.h +165 -0
  103. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h +100 -0
  104. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhbbox.h +65 -0
  105. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhbox.h +67 -0
  106. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhpaned.h +64 -0
  107. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhscale.h +68 -0
  108. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h +64 -0
  109. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhseparator.h +64 -0
  110. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhsv.h +106 -0
  111. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkrc.h +322 -0
  112. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkstyle.h +703 -0
  113. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtktable.h +162 -0
  114. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h +74 -0
  115. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvbbox.h +64 -0
  116. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvbox.h +65 -0
  117. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvpaned.h +64 -0
  118. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvscale.h +74 -0
  119. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h +70 -0
  120. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvseparator.h +70 -0
  121. data/vendor/local/include/gtk-3.0/gtk/gtk.h +253 -0
  122. data/vendor/local/include/gtk-3.0/gtk/gtkaboutdialog.h +169 -0
  123. data/vendor/local/include/gtk-3.0/gtk/gtkaccelgroup.h +209 -0
  124. data/vendor/local/include/gtk-3.0/gtk/gtkaccellabel.h +105 -0
  125. data/vendor/local/include/gtk-3.0/gtk/gtkaccelmap.h +93 -0
  126. data/vendor/local/include/gtk-3.0/gtk/gtkaccessible.h +75 -0
  127. data/vendor/local/include/gtk-3.0/gtk/gtkaction.h +166 -0
  128. data/vendor/local/include/gtk-3.0/gtk/gtkactionable.h +77 -0
  129. data/vendor/local/include/gtk-3.0/gtk/gtkactiongroup.h +238 -0
  130. data/vendor/local/include/gtk-3.0/gtk/gtkactivatable.h +85 -0
  131. data/vendor/local/include/gtk-3.0/gtk/gtkadjustment.h +121 -0
  132. data/vendor/local/include/gtk-3.0/gtk/gtkalignment.h +96 -0
  133. data/vendor/local/include/gtk-3.0/gtk/gtkappchooser.h +49 -0
  134. data/vendor/local/include/gtk-3.0/gtk/gtkappchooserbutton.h +89 -0
  135. data/vendor/local/include/gtk-3.0/gtk/gtkappchooserdialog.h +78 -0
  136. data/vendor/local/include/gtk-3.0/gtk/gtkappchooserwidget.h +103 -0
  137. data/vendor/local/include/gtk-3.0/gtk/gtkapplication.h +128 -0
  138. data/vendor/local/include/gtk-3.0/gtk/gtkapplicationwindow.h +75 -0
  139. data/vendor/local/include/gtk-3.0/gtk/gtkarrow.h +81 -0
  140. data/vendor/local/include/gtk-3.0/gtk/gtkaspectframe.h +84 -0
  141. data/vendor/local/include/gtk-3.0/gtk/gtkassistant.h +188 -0
  142. data/vendor/local/include/gtk-3.0/gtk/gtkbbox.h +90 -0
  143. data/vendor/local/include/gtk-3.0/gtk/gtkbin.h +79 -0
  144. data/vendor/local/include/gtk-3.0/gtk/gtkbindings.h +189 -0
  145. data/vendor/local/include/gtk-3.0/gtk/gtkborder.h +66 -0
  146. data/vendor/local/include/gtk-3.0/gtk/gtkbox.h +112 -0
  147. data/vendor/local/include/gtk-3.0/gtk/gtkbuildable.h +173 -0
  148. data/vendor/local/include/gtk-3.0/gtk/gtkbuilder.h +179 -0
  149. data/vendor/local/include/gtk-3.0/gtk/gtkbutton.h +130 -0
  150. data/vendor/local/include/gtk-3.0/gtk/gtkcalendar.h +169 -0
  151. data/vendor/local/include/gtk-3.0/gtk/gtkcellarea.h +482 -0
  152. data/vendor/local/include/gtk-3.0/gtk/gtkcellareabox.h +87 -0
  153. data/vendor/local/include/gtk-3.0/gtk/gtkcellareacontext.h +135 -0
  154. data/vendor/local/include/gtk-3.0/gtk/gtkcelleditable.h +62 -0
  155. data/vendor/local/include/gtk-3.0/gtk/gtkcelllayout.h +135 -0
  156. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderer.h +280 -0
  157. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendereraccel.h +84 -0
  158. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderercombo.h +65 -0
  159. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h +68 -0
  160. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererprogress.h +72 -0
  161. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererspin.h +64 -0
  162. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererspinner.h +67 -0
  163. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderertext.h +75 -0
  164. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderertoggle.h +82 -0
  165. data/vendor/local/include/gtk-3.0/gtk/gtkcellview.h +95 -0
  166. data/vendor/local/include/gtk-3.0/gtk/gtkcheckbutton.h +80 -0
  167. data/vendor/local/include/gtk-3.0/gtk/gtkcheckmenuitem.h +98 -0
  168. data/vendor/local/include/gtk-3.0/gtk/gtkclipboard.h +237 -0
  169. data/vendor/local/include/gtk-3.0/gtk/gtkcolorbutton.h +108 -0
  170. data/vendor/local/include/gtk-3.0/gtk/gtkcolorchooser.h +87 -0
  171. data/vendor/local/include/gtk-3.0/gtk/gtkcolorchooserdialog.h +68 -0
  172. data/vendor/local/include/gtk-3.0/gtk/gtkcolorchooserwidget.h +71 -0
  173. data/vendor/local/include/gtk-3.0/gtk/gtkcolorutils.h +48 -0
  174. data/vendor/local/include/gtk-3.0/gtk/gtkcombobox.h +147 -0
  175. data/vendor/local/include/gtk-3.0/gtk/gtkcomboboxtext.h +88 -0
  176. data/vendor/local/include/gtk-3.0/gtk/gtkcontainer.h +227 -0
  177. data/vendor/local/include/gtk-3.0/gtk/gtkcssprovider.h +96 -0
  178. data/vendor/local/include/gtk-3.0/gtk/gtkcsssection.h +97 -0
  179. data/vendor/local/include/gtk-3.0/gtk/gtkdebug.h +70 -0
  180. data/vendor/local/include/gtk-3.0/gtk/gtkdialog.h +181 -0
  181. data/vendor/local/include/gtk-3.0/gtk/gtkdnd.h +212 -0
  182. data/vendor/local/include/gtk-3.0/gtk/gtkdrawingarea.h +74 -0
  183. data/vendor/local/include/gtk-3.0/gtk/gtkeditable.h +113 -0
  184. data/vendor/local/include/gtk-3.0/gtk/gtkentry.h +304 -0
  185. data/vendor/local/include/gtk-3.0/gtk/gtkentrybuffer.h +133 -0
  186. data/vendor/local/include/gtk-3.0/gtk/gtkentrycompletion.h +154 -0
  187. data/vendor/local/include/gtk-3.0/gtk/gtkenums.h +1041 -0
  188. data/vendor/local/include/gtk-3.0/gtk/gtkeventbox.h +79 -0
  189. data/vendor/local/include/gtk-3.0/gtk/gtkexpander.h +107 -0
  190. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooser.h +247 -0
  191. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserbutton.h +81 -0
  192. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserdialog.h +69 -0
  193. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserwidget.h +65 -0
  194. data/vendor/local/include/gtk-3.0/gtk/gtkfilefilter.h +116 -0
  195. data/vendor/local/include/gtk-3.0/gtk/gtkfixed.h +91 -0
  196. data/vendor/local/include/gtk-3.0/gtk/gtkfontbutton.h +99 -0
  197. data/vendor/local/include/gtk-3.0/gtk/gtkfontchooser.h +118 -0
  198. data/vendor/local/include/gtk-3.0/gtk/gtkfontchooserdialog.h +67 -0
  199. data/vendor/local/include/gtk-3.0/gtk/gtkfontchooserwidget.h +71 -0
  200. data/vendor/local/include/gtk-3.0/gtk/gtkframe.h +96 -0
  201. data/vendor/local/include/gtk-3.0/gtk/gtkgradient.h +66 -0
  202. data/vendor/local/include/gtk-3.0/gtk/gtkgrid.h +110 -0
  203. data/vendor/local/include/gtk-3.0/gtk/gtkiconfactory.h +183 -0
  204. data/vendor/local/include/gtk-3.0/gtk/gtkicontheme.h +233 -0
  205. data/vendor/local/include/gtk-3.0/gtk/gtkiconview.h +266 -0
  206. data/vendor/local/include/gtk-3.0/gtk/gtkimage.h +168 -0
  207. data/vendor/local/include/gtk-3.0/gtk/gtkimagemenuitem.h +90 -0
  208. data/vendor/local/include/gtk-3.0/gtk/gtkimcontext.h +126 -0
  209. data/vendor/local/include/gtk-3.0/gtk/gtkimcontextinfo.h +44 -0
  210. data/vendor/local/include/gtk-3.0/gtk/gtkimcontextsimple.h +74 -0
  211. data/vendor/local/include/gtk-3.0/gtk/gtkimmodule.h +34 -0
  212. data/vendor/local/include/gtk-3.0/gtk/gtkimmulticontext.h +73 -0
  213. data/vendor/local/include/gtk-3.0/gtk/gtkinfobar.h +116 -0
  214. data/vendor/local/include/gtk-3.0/gtk/gtkinvisible.h +77 -0
  215. data/vendor/local/include/gtk-3.0/gtk/gtklabel.h +176 -0
  216. data/vendor/local/include/gtk-3.0/gtk/gtklayout.h +108 -0
  217. data/vendor/local/include/gtk-3.0/gtk/gtklevelbar.h +127 -0
  218. data/vendor/local/include/gtk-3.0/gtk/gtklinkbutton.h +100 -0
  219. data/vendor/local/include/gtk-3.0/gtk/gtkliststore.h +133 -0
  220. data/vendor/local/include/gtk-3.0/gtk/gtklockbutton.h +72 -0
  221. data/vendor/local/include/gtk-3.0/gtk/gtkmain.h +172 -0
  222. data/vendor/local/include/gtk-3.0/gtk/gtkmenu.h +215 -0
  223. data/vendor/local/include/gtk-3.0/gtk/gtkmenubar.h +90 -0
  224. data/vendor/local/include/gtk-3.0/gtk/gtkmenubutton.h +94 -0
  225. data/vendor/local/include/gtk-3.0/gtk/gtkmenuitem.h +128 -0
  226. data/vendor/local/include/gtk-3.0/gtk/gtkmenushell.h +123 -0
  227. data/vendor/local/include/gtk-3.0/gtk/gtkmenutoolbutton.h +79 -0
  228. data/vendor/local/include/gtk-3.0/gtk/gtkmessagedialog.h +132 -0
  229. data/vendor/local/include/gtk-3.0/gtk/gtkmisc.h +89 -0
  230. data/vendor/local/include/gtk-3.0/gtk/gtkmodules.h +58 -0
  231. data/vendor/local/include/gtk-3.0/gtk/gtkmountoperation.h +81 -0
  232. data/vendor/local/include/gtk-3.0/gtk/gtknotebook.h +250 -0
  233. data/vendor/local/include/gtk-3.0/gtk/gtknumerableicon.h +87 -0
  234. data/vendor/local/include/gtk-3.0/gtk/gtkoffscreenwindow.h +64 -0
  235. data/vendor/local/include/gtk-3.0/gtk/gtkorientable.h +58 -0
  236. data/vendor/local/include/gtk-3.0/gtk/gtkoverlay.h +79 -0
  237. data/vendor/local/include/gtk-3.0/gtk/gtkpagesetup.h +106 -0
  238. data/vendor/local/include/gtk-3.0/gtk/gtkpaned.h +105 -0
  239. data/vendor/local/include/gtk-3.0/gtk/gtkpapersize.h +140 -0
  240. data/vendor/local/include/gtk-3.0/gtk/gtkplug.h +97 -0
  241. data/vendor/local/include/gtk-3.0/gtk/gtkprintcontext.h +69 -0
  242. data/vendor/local/include/gtk-3.0/gtk/gtkprintoperation.h +280 -0
  243. data/vendor/local/include/gtk-3.0/gtk/gtkprintoperationpreview.h +79 -0
  244. data/vendor/local/include/gtk-3.0/gtk/gtkprintsettings.h +248 -0
  245. data/vendor/local/include/gtk-3.0/gtk/gtkprogressbar.h +97 -0
  246. data/vendor/local/include/gtk-3.0/gtk/gtkradioaction.h +89 -0
  247. data/vendor/local/include/gtk-3.0/gtk/gtkradiobutton.h +92 -0
  248. data/vendor/local/include/gtk-3.0/gtk/gtkradiomenuitem.h +91 -0
  249. data/vendor/local/include/gtk-3.0/gtk/gtkradiotoolbutton.h +72 -0
  250. data/vendor/local/include/gtk-3.0/gtk/gtkrange.h +167 -0
  251. data/vendor/local/include/gtk-3.0/gtk/gtkrecentaction.h +78 -0
  252. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooser.h +203 -0
  253. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooserdialog.h +78 -0
  254. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchoosermenu.h +72 -0
  255. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooserwidget.h +68 -0
  256. data/vendor/local/include/gtk-3.0/gtk/gtkrecentfilter.h +125 -0
  257. data/vendor/local/include/gtk-3.0/gtk/gtkrecentmanager.h +234 -0
  258. data/vendor/local/include/gtk-3.0/gtk/gtkscale.h +114 -0
  259. data/vendor/local/include/gtk-3.0/gtk/gtkscalebutton.h +99 -0
  260. data/vendor/local/include/gtk-3.0/gtk/gtkscrollable.h +60 -0
  261. data/vendor/local/include/gtk-3.0/gtk/gtkscrollbar.h +72 -0
  262. data/vendor/local/include/gtk-3.0/gtk/gtkscrolledwindow.h +136 -0
  263. data/vendor/local/include/gtk-3.0/gtk/gtksearchentry.h +73 -0
  264. data/vendor/local/include/gtk-3.0/gtk/gtkselection.h +192 -0
  265. data/vendor/local/include/gtk-3.0/gtk/gtkseparator.h +75 -0
  266. data/vendor/local/include/gtk-3.0/gtk/gtkseparatormenuitem.h +72 -0
  267. data/vendor/local/include/gtk-3.0/gtk/gtkseparatortoolitem.h +70 -0
  268. data/vendor/local/include/gtk-3.0/gtk/gtksettings.h +127 -0
  269. data/vendor/local/include/gtk-3.0/gtk/gtkshow.h +37 -0
  270. data/vendor/local/include/gtk-3.0/gtk/gtksizegroup.h +95 -0
  271. data/vendor/local/include/gtk-3.0/gtk/gtksizerequest.h +57 -0
  272. data/vendor/local/include/gtk-3.0/gtk/gtksocket.h +84 -0
  273. data/vendor/local/include/gtk-3.0/gtk/gtkspinbutton.h +213 -0
  274. data/vendor/local/include/gtk-3.0/gtk/gtkspinner.h +71 -0
  275. data/vendor/local/include/gtk-3.0/gtk/gtkstatusbar.h +101 -0
  276. data/vendor/local/include/gtk-3.0/gtk/gtkstatusicon.h +147 -0
  277. data/vendor/local/include/gtk-3.0/gtk/gtkstock.h +1029 -0
  278. data/vendor/local/include/gtk-3.0/gtk/gtkstylecontext.h +1014 -0
  279. data/vendor/local/include/gtk-3.0/gtk/gtkstyleproperties.h +117 -0
  280. data/vendor/local/include/gtk-3.0/gtk/gtkstyleprovider.h +126 -0
  281. data/vendor/local/include/gtk-3.0/gtk/gtkswitch.h +93 -0
  282. data/vendor/local/include/gtk-3.0/gtk/gtksymboliccolor.h +57 -0
  283. data/vendor/local/include/gtk-3.0/gtk/gtktestutils.h +72 -0
  284. data/vendor/local/include/gtk-3.0/gtk/gtktextattributes.h +180 -0
  285. data/vendor/local/include/gtk-3.0/gtk/gtktextbuffer.h +408 -0
  286. data/vendor/local/include/gtk-3.0/gtk/gtktextbufferrichtext.h +126 -0
  287. data/vendor/local/include/gtk-3.0/gtk/gtktextchild.h +83 -0
  288. data/vendor/local/include/gtk-3.0/gtk/gtktextdisplay.h +101 -0
  289. data/vendor/local/include/gtk-3.0/gtk/gtktextiter.h +306 -0
  290. data/vendor/local/include/gtk-3.0/gtk/gtktextlayout.h +433 -0
  291. data/vendor/local/include/gtk-3.0/gtk/gtktextmark.h +103 -0
  292. data/vendor/local/include/gtk-3.0/gtk/gtktexttag.h +115 -0
  293. data/vendor/local/include/gtk-3.0/gtk/gtktexttagtable.h +96 -0
  294. data/vendor/local/include/gtk-3.0/gtk/gtktextview.h +298 -0
  295. data/vendor/local/include/gtk-3.0/gtk/gtkthemingengine.h +260 -0
  296. data/vendor/local/include/gtk-3.0/gtk/gtktoggleaction.h +92 -0
  297. data/vendor/local/include/gtk-3.0/gtk/gtktogglebutton.h +93 -0
  298. data/vendor/local/include/gtk-3.0/gtk/gtktoggletoolbutton.h +75 -0
  299. data/vendor/local/include/gtk-3.0/gtk/gtktoolbar.h +135 -0
  300. data/vendor/local/include/gtk-3.0/gtk/gtktoolbutton.h +97 -0
  301. data/vendor/local/include/gtk-3.0/gtk/gtktoolitem.h +124 -0
  302. data/vendor/local/include/gtk-3.0/gtk/gtktoolitemgroup.h +104 -0
  303. data/vendor/local/include/gtk-3.0/gtk/gtktoolpalette.h +140 -0
  304. data/vendor/local/include/gtk-3.0/gtk/gtktoolshell.h +89 -0
  305. data/vendor/local/include/gtk-3.0/gtk/gtktooltip.h +75 -0
  306. data/vendor/local/include/gtk-3.0/gtk/gtktreednd.h +123 -0
  307. data/vendor/local/include/gtk-3.0/gtk/gtktreemodel.h +305 -0
  308. data/vendor/local/include/gtk-3.0/gtk/gtktreemodelfilter.h +144 -0
  309. data/vendor/local/include/gtk-3.0/gtk/gtktreemodelsort.h +84 -0
  310. data/vendor/local/include/gtk-3.0/gtk/gtktreeselection.h +146 -0
  311. data/vendor/local/include/gtk-3.0/gtk/gtktreesortable.h +123 -0
  312. data/vendor/local/include/gtk-3.0/gtk/gtktreestore.h +147 -0
  313. data/vendor/local/include/gtk-3.0/gtk/gtktreeview.h +501 -0
  314. data/vendor/local/include/gtk-3.0/gtk/gtktreeviewcolumn.h +224 -0
  315. data/vendor/local/include/gtk-3.0/gtk/gtktypebuiltins.h +307 -0
  316. data/vendor/local/include/gtk-3.0/gtk/gtktypes.h +56 -0
  317. data/vendor/local/include/gtk-3.0/gtk/gtkuimanager.h +171 -0
  318. data/vendor/local/include/gtk-3.0/gtk/gtkversion.h +102 -0
  319. data/vendor/local/include/gtk-3.0/gtk/gtkviewport.h +96 -0
  320. data/vendor/local/include/gtk-3.0/gtk/gtkvolumebutton.h +70 -0
  321. data/vendor/local/include/gtk-3.0/gtk/gtkwidget.h +896 -0
  322. data/vendor/local/include/gtk-3.0/gtk/gtkwidgetpath.h +132 -0
  323. data/vendor/local/include/gtk-3.0/gtk/gtkwindow.h +351 -0
  324. data/vendor/local/include/gtk-3.0/gtk/gtkx.h +28 -0
  325. data/vendor/local/lib/gailutil.def +14 -0
  326. data/vendor/local/lib/gdk-win32-3.0.def +514 -0
  327. data/vendor/local/lib/gtk-3.0/3.0.0/immodules.cache +40 -0
  328. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.dll +0 -0
  329. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.dll.a +0 -0
  330. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.la +41 -0
  331. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.dll +0 -0
  332. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.dll.a +0 -0
  333. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.la +41 -0
  334. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.dll +0 -0
  335. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.dll.a +0 -0
  336. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.la +41 -0
  337. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.dll +0 -0
  338. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.dll.a +0 -0
  339. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.la +41 -0
  340. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.dll +0 -0
  341. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.dll.a +0 -0
  342. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.la +41 -0
  343. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.dll +0 -0
  344. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.dll.a +0 -0
  345. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.la +41 -0
  346. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.dll +0 -0
  347. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.dll.a +0 -0
  348. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.la +41 -0
  349. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.dll +0 -0
  350. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.dll.a +0 -0
  351. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.la +41 -0
  352. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.dll +0 -0
  353. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.dll.a +0 -0
  354. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.la +41 -0
  355. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.dll +0 -0
  356. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.dll.a +0 -0
  357. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.la +41 -0
  358. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.dll +0 -0
  359. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.dll.a +0 -0
  360. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.la +41 -0
  361. data/vendor/local/lib/gtk-win32-3.0.def +3790 -0
  362. data/vendor/local/lib/libgailutil-3.dll.a +0 -0
  363. data/vendor/local/lib/libgailutil-3.la +41 -0
  364. data/vendor/local/lib/libgdk-3.dll.a +0 -0
  365. data/vendor/local/lib/libgdk-3.la +41 -0
  366. data/vendor/local/lib/libgtk-3.dll.a +0 -0
  367. data/vendor/local/lib/libgtk-3.la +41 -0
  368. data/vendor/local/lib/pkgconfig/gail-3.0.pc +11 -0
  369. data/vendor/local/lib/pkgconfig/gdk-3.0.pc +13 -0
  370. data/vendor/local/lib/pkgconfig/gdk-win32-3.0.pc +13 -0
  371. data/vendor/local/lib/pkgconfig/gtk+-3.0.pc +16 -0
  372. data/vendor/local/lib/pkgconfig/gtk+-win32-3.0.pc +16 -0
  373. data/vendor/local/share/aclocal/gtk-3.0.m4 +219 -0
  374. data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
  375. data/vendor/local/share/glib-2.0/schemas/org.gtk.Demo.gschema.xml +17 -0
  376. data/vendor/local/share/glib-2.0/schemas/org.gtk.Settings.ColorChooser.gschema.xml +13 -0
  377. data/vendor/local/share/glib-2.0/schemas/org.gtk.Settings.FileChooser.gschema.xml +66 -0
  378. data/vendor/local/share/gtk-3.0/demo/alphatest.png +0 -0
  379. data/vendor/local/share/gtk-3.0/demo/apple-red.png +0 -0
  380. data/vendor/local/share/gtk-3.0/demo/application.c +485 -0
  381. data/vendor/local/share/gtk-3.0/demo/application.ui +104 -0
  382. data/vendor/local/share/gtk-3.0/demo/appwindow.c +570 -0
  383. data/vendor/local/share/gtk-3.0/demo/assistant.c +201 -0
  384. data/vendor/local/share/gtk-3.0/demo/background.jpg +0 -0
  385. data/vendor/local/share/gtk-3.0/demo/builder.c +74 -0
  386. data/vendor/local/share/gtk-3.0/demo/button_box.c +127 -0
  387. data/vendor/local/share/gtk-3.0/demo/changedisplay.c +654 -0
  388. data/vendor/local/share/gtk-3.0/demo/clipboard.c +326 -0
  389. data/vendor/local/share/gtk-3.0/demo/colorsel.c +133 -0
  390. data/vendor/local/share/gtk-3.0/demo/combobox.c +473 -0
  391. data/vendor/local/share/gtk-3.0/demo/css_accordion.c +78 -0
  392. data/vendor/local/share/gtk-3.0/demo/css_accordion.css +52 -0
  393. data/vendor/local/share/gtk-3.0/demo/css_basics.c +122 -0
  394. data/vendor/local/share/gtk-3.0/demo/css_basics.css +22 -0
  395. data/vendor/local/share/gtk-3.0/demo/css_multiplebgs.c +171 -0
  396. data/vendor/local/share/gtk-3.0/demo/css_multiplebgs.css +136 -0
  397. data/vendor/local/share/gtk-3.0/demo/css_pixbufs.c +127 -0
  398. data/vendor/local/share/gtk-3.0/demo/css_pixbufs.css +76 -0
  399. data/vendor/local/share/gtk-3.0/demo/css_shadows.c +147 -0
  400. data/vendor/local/share/gtk-3.0/demo/css_shadows.css +44 -0
  401. data/vendor/local/share/gtk-3.0/demo/cssview.css +41 -0
  402. data/vendor/local/share/gtk-3.0/demo/demo.ui +266 -0
  403. data/vendor/local/share/gtk-3.0/demo/dialog.c +175 -0
  404. data/vendor/local/share/gtk-3.0/demo/drawingarea.c +296 -0
  405. data/vendor/local/share/gtk-3.0/demo/editable_cells.c +392 -0
  406. data/vendor/local/share/gtk-3.0/demo/entry_buffer.c +66 -0
  407. data/vendor/local/share/gtk-3.0/demo/entry_completion.c +98 -0
  408. data/vendor/local/share/gtk-3.0/demo/expander.c +59 -0
  409. data/vendor/local/share/gtk-3.0/demo/fancy.css +65 -0
  410. data/vendor/local/share/gtk-3.0/demo/floppybuddy.gif +0 -0
  411. data/vendor/local/share/gtk-3.0/demo/gnome-applets.png +0 -0
  412. data/vendor/local/share/gtk-3.0/demo/gnome-calendar.png +0 -0
  413. data/vendor/local/share/gtk-3.0/demo/gnome-foot.png +0 -0
  414. data/vendor/local/share/gtk-3.0/demo/gnome-fs-directory.png +0 -0
  415. data/vendor/local/share/gtk-3.0/demo/gnome-fs-regular.png +0 -0
  416. data/vendor/local/share/gtk-3.0/demo/gnome-gimp.png +0 -0
  417. data/vendor/local/share/gtk-3.0/demo/gnome-gmush.png +0 -0
  418. data/vendor/local/share/gtk-3.0/demo/gnome-gsame.png +0 -0
  419. data/vendor/local/share/gtk-3.0/demo/gnu-keys.png +0 -0
  420. data/vendor/local/share/gtk-3.0/demo/gtk-logo-24.png +0 -0
  421. data/vendor/local/share/gtk-3.0/demo/gtk-logo-48.png +0 -0
  422. data/vendor/local/share/gtk-3.0/demo/gtk-logo-rgb.gif +0 -0
  423. data/vendor/local/share/gtk-3.0/demo/hypertext.c +291 -0
  424. data/vendor/local/share/gtk-3.0/demo/iconview.c +371 -0
  425. data/vendor/local/share/gtk-3.0/demo/iconview_edit.c +158 -0
  426. data/vendor/local/share/gtk-3.0/demo/images.c +472 -0
  427. data/vendor/local/share/gtk-3.0/demo/infobar.c +109 -0
  428. data/vendor/local/share/gtk-3.0/demo/links.c +90 -0
  429. data/vendor/local/share/gtk-3.0/demo/list_store.c +325 -0
  430. data/vendor/local/share/gtk-3.0/demo/menus.c +171 -0
  431. data/vendor/local/share/gtk-3.0/demo/menus.ui +107 -0
  432. data/vendor/local/share/gtk-3.0/demo/offscreen_window.c +615 -0
  433. data/vendor/local/share/gtk-3.0/demo/offscreen_window2.c +526 -0
  434. data/vendor/local/share/gtk-3.0/demo/overlay.c +181 -0
  435. data/vendor/local/share/gtk-3.0/demo/panes.c +205 -0
  436. data/vendor/local/share/gtk-3.0/demo/pickers.c +89 -0
  437. data/vendor/local/share/gtk-3.0/demo/pixbufs.c +261 -0
  438. data/vendor/local/share/gtk-3.0/demo/printing.c +199 -0
  439. data/vendor/local/share/gtk-3.0/demo/reset.css +68 -0
  440. data/vendor/local/share/gtk-3.0/demo/rotated_text.c +236 -0
  441. data/vendor/local/share/gtk-3.0/demo/search_entry.c +322 -0
  442. data/vendor/local/share/gtk-3.0/demo/sizegroup.c +164 -0
  443. data/vendor/local/share/gtk-3.0/demo/spinner.c +95 -0
  444. data/vendor/local/share/gtk-3.0/demo/stock_browser.c +535 -0
  445. data/vendor/local/share/gtk-3.0/demo/textscroll.c +201 -0
  446. data/vendor/local/share/gtk-3.0/demo/textview.c +634 -0
  447. data/vendor/local/share/gtk-3.0/demo/theming.ui +319 -0
  448. data/vendor/local/share/gtk-3.0/demo/theming_custom_css.c +66 -0
  449. data/vendor/local/share/gtk-3.0/demo/theming_style_classes.c +58 -0
  450. data/vendor/local/share/gtk-3.0/demo/toolpalette.c +794 -0
  451. data/vendor/local/share/gtk-3.0/demo/transparent.c +248 -0
  452. data/vendor/local/share/gtk-3.0/demo/tree_store.c +450 -0
  453. data/vendor/local/share/gtk-3.0/demo/ui_manager.c +235 -0
  454. data/vendor/local/share/gtk-3.0/gtkbuilder.rng +305 -0
  455. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3-GailMisc.html +434 -0
  456. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3-GailTextUtil.html +291 -0
  457. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3.devhelp2 +29 -0
  458. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/home.png +0 -0
  459. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/index.html +45 -0
  460. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/index.sgml +26 -0
  461. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/left.png +0 -0
  462. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/libgail-util-main.html +41 -0
  463. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/right.png +0 -0
  464. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/style.css +266 -0
  465. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/up.png +0 -0
  466. data/vendor/local/share/gtk-doc/html/gdk3/GdkDevice.html +1532 -0
  467. data/vendor/local/share/gtk-doc/html/gdk3/GdkDeviceManager.html +445 -0
  468. data/vendor/local/share/gtk-doc/html/gdk3/GdkDisplay.html +1482 -0
  469. data/vendor/local/share/gtk-doc/html/gdk3/GdkDisplayManager.html +354 -0
  470. data/vendor/local/share/gtk-doc/html/gdk3/GdkScreen.html +1213 -0
  471. data/vendor/local/share/gtk-doc/html/gdk3/X_cursor.png +0 -0
  472. data/vendor/local/share/gtk-doc/html/gdk3/annotation-glossary.html +98 -0
  473. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-0.html +298 -0
  474. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-2.html +71 -0
  475. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-4.html +130 -0
  476. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-6.html +42 -0
  477. data/vendor/local/share/gtk-doc/html/gdk3/api-index-deprecated.html +158 -0
  478. data/vendor/local/share/gtk-doc/html/gdk3/api-index-full.html +2711 -0
  479. data/vendor/local/share/gtk-doc/html/gdk3/arrow.png +0 -0
  480. data/vendor/local/share/gtk-doc/html/gdk3/based_arrow_down.png +0 -0
  481. data/vendor/local/share/gtk-doc/html/gdk3/based_arrow_up.png +0 -0
  482. data/vendor/local/share/gtk-doc/html/gdk3/boat.png +0 -0
  483. data/vendor/local/share/gtk-doc/html/gdk3/bogosity.png +0 -0
  484. data/vendor/local/share/gtk-doc/html/gdk3/bottom_left_corner.png +0 -0
  485. data/vendor/local/share/gtk-doc/html/gdk3/bottom_right_corner.png +0 -0
  486. data/vendor/local/share/gtk-doc/html/gdk3/bottom_side.png +0 -0
  487. data/vendor/local/share/gtk-doc/html/gdk3/bottom_tee.png +0 -0
  488. data/vendor/local/share/gtk-doc/html/gdk3/box_spiral.png +0 -0
  489. data/vendor/local/share/gtk-doc/html/gdk3/center_ptr.png +0 -0
  490. data/vendor/local/share/gtk-doc/html/gdk3/circle.png +0 -0
  491. data/vendor/local/share/gtk-doc/html/gdk3/clock.png +0 -0
  492. data/vendor/local/share/gtk-doc/html/gdk3/coffee_mug.png +0 -0
  493. data/vendor/local/share/gtk-doc/html/gdk3/cross.png +0 -0
  494. data/vendor/local/share/gtk-doc/html/gdk3/cross_reverse.png +0 -0
  495. data/vendor/local/share/gtk-doc/html/gdk3/crosshair.png +0 -0
  496. data/vendor/local/share/gtk-doc/html/gdk3/diamond_cross.png +0 -0
  497. data/vendor/local/share/gtk-doc/html/gdk3/dot.png +0 -0
  498. data/vendor/local/share/gtk-doc/html/gdk3/dotbox.png +0 -0
  499. data/vendor/local/share/gtk-doc/html/gdk3/double_arrow.png +0 -0
  500. data/vendor/local/share/gtk-doc/html/gdk3/draft_large.png +0 -0
  501. data/vendor/local/share/gtk-doc/html/gdk3/draft_small.png +0 -0
  502. data/vendor/local/share/gtk-doc/html/gdk3/draped_box.png +0 -0
  503. data/vendor/local/share/gtk-doc/html/gdk3/exchange.png +0 -0
  504. data/vendor/local/share/gtk-doc/html/gdk3/fleur.png +0 -0
  505. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Application-launching.html +379 -0
  506. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Cairo-Interaction.html +453 -0
  507. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Colors.html +296 -0
  508. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Cursors.html +1055 -0
  509. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Drag-and-Drop.html +949 -0
  510. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Event-Structures.html +1873 -0
  511. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Events.html +1839 -0
  512. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-General.html +952 -0
  513. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Keyboard-Handling.html +1180 -0
  514. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Pango-Interaction.html +427 -0
  515. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Pixbufs.html +206 -0
  516. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Points-Rectangles-and-Regions.html +199 -0
  517. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Properties-and-Atoms.html +598 -0
  518. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-RGBA-Colors.html +326 -0
  519. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Selections.html +622 -0
  520. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Testing.html +230 -0
  521. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Threads.html +1050 -0
  522. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Visuals.html +777 -0
  523. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Windows.html +6690 -0
  524. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-X-Window-System-Interaction.html +2083 -0
  525. data/vendor/local/share/gtk-doc/html/gdk3/gdk3.devhelp2 +1042 -0
  526. data/vendor/local/share/gtk-doc/html/gdk3/gobbler.png +0 -0
  527. data/vendor/local/share/gtk-doc/html/gdk3/gumby.png +0 -0
  528. data/vendor/local/share/gtk-doc/html/gdk3/hand1.png +0 -0
  529. data/vendor/local/share/gtk-doc/html/gdk3/hand2.png +0 -0
  530. data/vendor/local/share/gtk-doc/html/gdk3/heart.png +0 -0
  531. data/vendor/local/share/gtk-doc/html/gdk3/home.png +0 -0
  532. data/vendor/local/share/gtk-doc/html/gdk3/icon.png +0 -0
  533. data/vendor/local/share/gtk-doc/html/gdk3/index.html +120 -0
  534. data/vendor/local/share/gtk-doc/html/gdk3/index.sgml +1162 -0
  535. data/vendor/local/share/gtk-doc/html/gdk3/iron_cross.png +0 -0
  536. data/vendor/local/share/gtk-doc/html/gdk3/left.png +0 -0
  537. data/vendor/local/share/gtk-doc/html/gdk3/left_ptr.png +0 -0
  538. data/vendor/local/share/gtk-doc/html/gdk3/left_side.png +0 -0
  539. data/vendor/local/share/gtk-doc/html/gdk3/left_tee.png +0 -0
  540. data/vendor/local/share/gtk-doc/html/gdk3/leftbutton.png +0 -0
  541. data/vendor/local/share/gtk-doc/html/gdk3/ll_angle.png +0 -0
  542. data/vendor/local/share/gtk-doc/html/gdk3/lr_angle.png +0 -0
  543. data/vendor/local/share/gtk-doc/html/gdk3/man.png +0 -0
  544. data/vendor/local/share/gtk-doc/html/gdk3/middlebutton.png +0 -0
  545. data/vendor/local/share/gtk-doc/html/gdk3/mouse.png +0 -0
  546. data/vendor/local/share/gtk-doc/html/gdk3/pencil.png +0 -0
  547. data/vendor/local/share/gtk-doc/html/gdk3/pirate.png +0 -0
  548. data/vendor/local/share/gtk-doc/html/gdk3/plus.png +0 -0
  549. data/vendor/local/share/gtk-doc/html/gdk3/question_arrow.png +0 -0
  550. data/vendor/local/share/gtk-doc/html/gdk3/reference.html +113 -0
  551. data/vendor/local/share/gtk-doc/html/gdk3/right.png +0 -0
  552. data/vendor/local/share/gtk-doc/html/gdk3/right_ptr.png +0 -0
  553. data/vendor/local/share/gtk-doc/html/gdk3/right_side.png +0 -0
  554. data/vendor/local/share/gtk-doc/html/gdk3/right_tee.png +0 -0
  555. data/vendor/local/share/gtk-doc/html/gdk3/rightbutton.png +0 -0
  556. data/vendor/local/share/gtk-doc/html/gdk3/rotated-text.png +0 -0
  557. data/vendor/local/share/gtk-doc/html/gdk3/rtl_logo.png +0 -0
  558. data/vendor/local/share/gtk-doc/html/gdk3/sailboat.png +0 -0
  559. data/vendor/local/share/gtk-doc/html/gdk3/sb_down_arrow.png +0 -0
  560. data/vendor/local/share/gtk-doc/html/gdk3/sb_h_double_arrow.png +0 -0
  561. data/vendor/local/share/gtk-doc/html/gdk3/sb_left_arrow.png +0 -0
  562. data/vendor/local/share/gtk-doc/html/gdk3/sb_right_arrow.png +0 -0
  563. data/vendor/local/share/gtk-doc/html/gdk3/sb_up_arrow.png +0 -0
  564. data/vendor/local/share/gtk-doc/html/gdk3/sb_v_double_arrow.png +0 -0
  565. data/vendor/local/share/gtk-doc/html/gdk3/shuttle.png +0 -0
  566. data/vendor/local/share/gtk-doc/html/gdk3/sizing.png +0 -0
  567. data/vendor/local/share/gtk-doc/html/gdk3/spider.png +0 -0
  568. data/vendor/local/share/gtk-doc/html/gdk3/spraycan.png +0 -0
  569. data/vendor/local/share/gtk-doc/html/gdk3/star.png +0 -0
  570. data/vendor/local/share/gtk-doc/html/gdk3/style.css +266 -0
  571. data/vendor/local/share/gtk-doc/html/gdk3/target.png +0 -0
  572. data/vendor/local/share/gtk-doc/html/gdk3/tcross.png +0 -0
  573. data/vendor/local/share/gtk-doc/html/gdk3/top_left_arrow.png +0 -0
  574. data/vendor/local/share/gtk-doc/html/gdk3/top_left_corner.png +0 -0
  575. data/vendor/local/share/gtk-doc/html/gdk3/top_right_corner.png +0 -0
  576. data/vendor/local/share/gtk-doc/html/gdk3/top_side.png +0 -0
  577. data/vendor/local/share/gtk-doc/html/gdk3/top_tee.png +0 -0
  578. data/vendor/local/share/gtk-doc/html/gdk3/trek.png +0 -0
  579. data/vendor/local/share/gtk-doc/html/gdk3/ul_angle.png +0 -0
  580. data/vendor/local/share/gtk-doc/html/gdk3/umbrella.png +0 -0
  581. data/vendor/local/share/gtk-doc/html/gdk3/up.png +0 -0
  582. data/vendor/local/share/gtk-doc/html/gdk3/ur_angle.png +0 -0
  583. data/vendor/local/share/gtk-doc/html/gdk3/watch.png +0 -0
  584. data/vendor/local/share/gtk-doc/html/gdk3/xterm.png +0 -0
  585. data/vendor/local/share/gtk-doc/html/gtk3/AbstractObjects.html +53 -0
  586. data/vendor/local/share/gtk-doc/html/gtk3/Actions.html +53 -0
  587. data/vendor/local/share/gtk-doc/html/gtk3/Application.html +42 -0
  588. data/vendor/local/share/gtk-doc/html/gtk3/ApplicationChoosing.html +44 -0
  589. data/vendor/local/share/gtk-doc/html/gtk3/Builder.html +38 -0
  590. data/vendor/local/share/gtk-doc/html/gtk3/ButtonWidgets.html +62 -0
  591. data/vendor/local/share/gtk-doc/html/gtk3/DisplayWidgets.html +59 -0
  592. data/vendor/local/share/gtk-doc/html/gtk3/GtkAboutDialog.html +1501 -0
  593. data/vendor/local/share/gtk-doc/html/gtk3/GtkAccelLabel.html +400 -0
  594. data/vendor/local/share/gtk-doc/html/gtk3/GtkAccessible.html +200 -0
  595. data/vendor/local/share/gtk-doc/html/gtk3/GtkAction.html +1580 -0
  596. data/vendor/local/share/gtk-doc/html/gtk3/GtkActionGroup.html +1389 -0
  597. data/vendor/local/share/gtk-doc/html/gtk3/GtkActionable.html +425 -0
  598. data/vendor/local/share/gtk-doc/html/gtk3/GtkActivatable.html +876 -0
  599. data/vendor/local/share/gtk-doc/html/gtk3/GtkAdjustment.html +845 -0
  600. data/vendor/local/share/gtk-doc/html/gtk3/GtkAlignment.html +411 -0
  601. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooser.html +212 -0
  602. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserButton.html +518 -0
  603. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserDialog.html +297 -0
  604. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserWidget.html +712 -0
  605. data/vendor/local/share/gtk-doc/html/gtk3/GtkApplication.html +1877 -0
  606. data/vendor/local/share/gtk-doc/html/gtk3/GtkApplicationWindow.html +788 -0
  607. data/vendor/local/share/gtk-doc/html/gtk3/GtkArrow.html +208 -0
  608. data/vendor/local/share/gtk-doc/html/gtk3/GtkAspectFrame.html +241 -0
  609. data/vendor/local/share/gtk-doc/html/gtk3/GtkAssistant.html +1389 -0
  610. data/vendor/local/share/gtk-doc/html/gtk3/GtkBin.html +132 -0
  611. data/vendor/local/share/gtk-doc/html/gtk3/GtkBox.html +683 -0
  612. data/vendor/local/share/gtk-doc/html/gtk3/GtkBuildable.html +677 -0
  613. data/vendor/local/share/gtk-doc/html/gtk3/GtkBuilder.html +1354 -0
  614. data/vendor/local/share/gtk-doc/html/gtk3/GtkButton.html +1292 -0
  615. data/vendor/local/share/gtk-doc/html/gtk3/GtkButtonBox.html +432 -0
  616. data/vendor/local/share/gtk-doc/html/gtk3/GtkCalendar.html +1031 -0
  617. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellArea.html +3227 -0
  618. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellAreaBox.html +369 -0
  619. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellAreaContext.html +675 -0
  620. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellEditable.html +286 -0
  621. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellLayout.html +750 -0
  622. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRenderer.html +1596 -0
  623. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererAccel.html +275 -0
  624. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererCombo.html +228 -0
  625. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererPixbuf.html +203 -0
  626. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererProgress.html +202 -0
  627. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererSpin.html +159 -0
  628. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererSpinner.html +155 -0
  629. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererText.html +653 -0
  630. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererToggle.html +372 -0
  631. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellView.html +729 -0
  632. data/vendor/local/share/gtk-doc/html/gtk3/GtkCheckButton.html +198 -0
  633. data/vendor/local/share/gtk-doc/html/gtk3/GtkCheckMenuItem.html +462 -0
  634. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorButton.html +607 -0
  635. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooser.html +370 -0
  636. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooserDialog.html +144 -0
  637. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooserWidget.html +150 -0
  638. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorSelection.html +889 -0
  639. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorSelectionDialog.html +200 -0
  640. data/vendor/local/share/gtk-doc/html/gtk3/GtkComboBox.html +1893 -0
  641. data/vendor/local/share/gtk-doc/html/gtk3/GtkComboBoxText.html +519 -0
  642. data/vendor/local/share/gtk-doc/html/gtk3/GtkContainer.html +1692 -0
  643. data/vendor/local/share/gtk-doc/html/gtk3/GtkCssProvider.html +2108 -0
  644. data/vendor/local/share/gtk-doc/html/gtk3/GtkDialog.html +1288 -0
  645. data/vendor/local/share/gtk-doc/html/gtk3/GtkDrawingArea.html +234 -0
  646. data/vendor/local/share/gtk-doc/html/gtk3/GtkEditable.html +723 -0
  647. data/vendor/local/share/gtk-doc/html/gtk3/GtkEntry.html +3957 -0
  648. data/vendor/local/share/gtk-doc/html/gtk3/GtkEntryBuffer.html +627 -0
  649. data/vendor/local/share/gtk-doc/html/gtk3/GtkEntryCompletion.html +1331 -0
  650. data/vendor/local/share/gtk-doc/html/gtk3/GtkEventBox.html +305 -0
  651. data/vendor/local/share/gtk-doc/html/gtk3/GtkExpander.html +851 -0
  652. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooser.html +3403 -0
  653. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserButton.html +486 -0
  654. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserDialog.html +396 -0
  655. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserWidget.html +127 -0
  656. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileFilter.html +595 -0
  657. data/vendor/local/share/gtk-doc/html/gtk3/GtkFixed.html +253 -0
  658. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontButton.html +609 -0
  659. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooser.html +605 -0
  660. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooserDialog.html +137 -0
  661. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooserWidget.html +125 -0
  662. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontSelection.html +571 -0
  663. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontSelectionDialog.html +400 -0
  664. data/vendor/local/share/gtk-doc/html/gtk3/GtkFrame.html +464 -0
  665. data/vendor/local/share/gtk-doc/html/gtk3/GtkGrid.html +701 -0
  666. data/vendor/local/share/gtk-doc/html/gtk3/GtkHBox.html +147 -0
  667. data/vendor/local/share/gtk-doc/html/gtk3/GtkHButtonBox.html +134 -0
  668. data/vendor/local/share/gtk-doc/html/gtk3/GtkHPaned.html +115 -0
  669. data/vendor/local/share/gtk-doc/html/gtk3/GtkHSV.html +445 -0
  670. data/vendor/local/share/gtk-doc/html/gtk3/GtkHScale.html +172 -0
  671. data/vendor/local/share/gtk-doc/html/gtk3/GtkHScrollbar.html +128 -0
  672. data/vendor/local/share/gtk-doc/html/gtk3/GtkHSeparator.html +127 -0
  673. data/vendor/local/share/gtk-doc/html/gtk3/GtkHandleBox.html +514 -0
  674. data/vendor/local/share/gtk-doc/html/gtk3/GtkIMContext.html +1027 -0
  675. data/vendor/local/share/gtk-doc/html/gtk3/GtkIMContextSimple.html +150 -0
  676. data/vendor/local/share/gtk-doc/html/gtk3/GtkIMMulticontext.html +183 -0
  677. data/vendor/local/share/gtk-doc/html/gtk3/GtkIconTheme.html +1755 -0
  678. data/vendor/local/share/gtk-doc/html/gtk3/GtkIconView.html +2896 -0
  679. data/vendor/local/share/gtk-doc/html/gtk3/GtkImage.html +1349 -0
  680. data/vendor/local/share/gtk-doc/html/gtk3/GtkImageMenuItem.html +486 -0
  681. data/vendor/local/share/gtk-doc/html/gtk3/GtkInfoBar.html +764 -0
  682. data/vendor/local/share/gtk-doc/html/gtk3/GtkInvisible.html +205 -0
  683. data/vendor/local/share/gtk-doc/html/gtk3/GtkLabel.html +2208 -0
  684. data/vendor/local/share/gtk-doc/html/gtk3/GtkLayout.html +518 -0
  685. data/vendor/local/share/gtk-doc/html/gtk3/GtkLevelBar.html +782 -0
  686. data/vendor/local/share/gtk-doc/html/gtk3/GtkLinkButton.html +369 -0
  687. data/vendor/local/share/gtk-doc/html/gtk3/GtkListStore.html +1159 -0
  688. data/vendor/local/share/gtk-doc/html/gtk3/GtkLockButton.html +259 -0
  689. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenu.html +1527 -0
  690. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuBar.html +369 -0
  691. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuButton.html +535 -0
  692. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuItem.html +940 -0
  693. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuShell.html +904 -0
  694. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuToolButton.html +387 -0
  695. data/vendor/local/share/gtk-doc/html/gtk3/GtkMessageDialog.html +814 -0
  696. data/vendor/local/share/gtk-doc/html/gtk3/GtkMisc.html +296 -0
  697. data/vendor/local/share/gtk-doc/html/gtk3/GtkNotebook.html +2219 -0
  698. data/vendor/local/share/gtk-doc/html/gtk3/GtkNumerableIcon.html +557 -0
  699. data/vendor/local/share/gtk-doc/html/gtk3/GtkOffscreenWindow.html +187 -0
  700. data/vendor/local/share/gtk-doc/html/gtk3/GtkOverlay.html +229 -0
  701. data/vendor/local/share/gtk-doc/html/gtk3/GtkPageSetup.html +1031 -0
  702. data/vendor/local/share/gtk-doc/html/gtk3/GtkPageSetupUnixDialog.html +254 -0
  703. data/vendor/local/share/gtk-doc/html/gtk3/GtkPaned.html +783 -0
  704. data/vendor/local/share/gtk-doc/html/gtk3/GtkPaperSize.html +905 -0
  705. data/vendor/local/share/gtk-doc/html/gtk3/GtkPlug.html +388 -0
  706. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintContext.html +571 -0
  707. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintJob.html +1133 -0
  708. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintSettings.html +2948 -0
  709. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintUnixDialog.html +919 -0
  710. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrinter.html +1003 -0
  711. data/vendor/local/share/gtk-doc/html/gtk3/GtkProgressBar.html +668 -0
  712. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioAction.html +451 -0
  713. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioButton.html +586 -0
  714. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioMenuItem.html +436 -0
  715. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioToolButton.html +316 -0
  716. data/vendor/local/share/gtk-doc/html/gtk3/GtkRange.html +1365 -0
  717. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentAction.html +279 -0
  718. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooser.html +1415 -0
  719. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserDialog.html +247 -0
  720. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserMenu.html +266 -0
  721. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserWidget.html +155 -0
  722. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentFilter.html +685 -0
  723. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentManager.html +1641 -0
  724. data/vendor/local/share/gtk-doc/html/gtk3/GtkScale.html +726 -0
  725. data/vendor/local/share/gtk-doc/html/gtk3/GtkScaleButton.html +546 -0
  726. data/vendor/local/share/gtk-doc/html/gtk3/GtkScrollable.html +452 -0
  727. data/vendor/local/share/gtk-doc/html/gtk3/GtkScrollbar.html +194 -0
  728. data/vendor/local/share/gtk-doc/html/gtk3/GtkScrolledWindow.html +1106 -0
  729. data/vendor/local/share/gtk-doc/html/gtk3/GtkSearchEntry.html +118 -0
  730. data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparator.html +114 -0
  731. data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparatorMenuItem.html +107 -0
  732. data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparatorToolItem.html +199 -0
  733. data/vendor/local/share/gtk-doc/html/gtk3/GtkSettings.html +1357 -0
  734. data/vendor/local/share/gtk-doc/html/gtk3/GtkSizeGroup.html +487 -0
  735. data/vendor/local/share/gtk-doc/html/gtk3/GtkSocket.html +360 -0
  736. data/vendor/local/share/gtk-doc/html/gtk3/GtkSpinButton.html +1380 -0
  737. data/vendor/local/share/gtk-doc/html/gtk3/GtkSpinner.html +173 -0
  738. data/vendor/local/share/gtk-doc/html/gtk3/GtkStatusIcon.html +1743 -0
  739. data/vendor/local/share/gtk-doc/html/gtk3/GtkStatusbar.html +441 -0
  740. data/vendor/local/share/gtk-doc/html/gtk3/GtkStyle.html +2534 -0
  741. data/vendor/local/share/gtk-doc/html/gtk3/GtkStyleContext.html +4505 -0
  742. data/vendor/local/share/gtk-doc/html/gtk3/GtkStyleProvider.html +324 -0
  743. data/vendor/local/share/gtk-doc/html/gtk3/GtkSwitch.html +248 -0
  744. data/vendor/local/share/gtk-doc/html/gtk3/GtkTable.html +897 -0
  745. data/vendor/local/share/gtk-doc/html/gtk3/GtkTearoffMenuItem.html +135 -0
  746. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextBuffer.html +3895 -0
  747. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextIter.html +3183 -0
  748. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextMark.html +342 -0
  749. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextTag.html +1124 -0
  750. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextTagTable.html +410 -0
  751. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextView.html +3390 -0
  752. data/vendor/local/share/gtk-doc/html/gtk3/GtkThemingEngine.html +1197 -0
  753. data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleAction.html +335 -0
  754. data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleButton.html +518 -0
  755. data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleToolButton.html +268 -0
  756. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolButton.html +677 -0
  757. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolItem.html +1139 -0
  758. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolItemGroup.html +755 -0
  759. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolPalette.html +1037 -0
  760. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolShell.html +425 -0
  761. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolbar.html +946 -0
  762. data/vendor/local/share/gtk-doc/html/gtk3/GtkTooltip.html +432 -0
  763. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModel.html +2814 -0
  764. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModelFilter.html +742 -0
  765. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModelSort.html +591 -0
  766. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeSelection.html +891 -0
  767. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeSortable.html +481 -0
  768. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeStore.html +1108 -0
  769. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeView.html +4864 -0
  770. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeViewColumn.html +2067 -0
  771. data/vendor/local/share/gtk-doc/html/gtk3/GtkUIManager.html +1467 -0
  772. data/vendor/local/share/gtk-doc/html/gtk3/GtkVBox.html +162 -0
  773. data/vendor/local/share/gtk-doc/html/gtk3/GtkVButtonBox.html +134 -0
  774. data/vendor/local/share/gtk-doc/html/gtk3/GtkVPaned.html +115 -0
  775. data/vendor/local/share/gtk-doc/html/gtk3/GtkVScale.html +176 -0
  776. data/vendor/local/share/gtk-doc/html/gtk3/GtkVScrollbar.html +132 -0
  777. data/vendor/local/share/gtk-doc/html/gtk3/GtkVSeparator.html +120 -0
  778. data/vendor/local/share/gtk-doc/html/gtk3/GtkViewport.html +387 -0
  779. data/vendor/local/share/gtk-doc/html/gtk3/GtkVolumeButton.html +135 -0
  780. data/vendor/local/share/gtk-doc/html/gtk3/GtkWidget.html +12811 -0
  781. data/vendor/local/share/gtk-doc/html/gtk3/GtkWindow.html +4647 -0
  782. data/vendor/local/share/gtk-doc/html/gtk3/GtkWindowGroup.html +250 -0
  783. data/vendor/local/share/gtk-doc/html/gtk3/LayoutContainers.html +91 -0
  784. data/vendor/local/share/gtk-doc/html/gtk3/MenusAndCombos.html +93 -0
  785. data/vendor/local/share/gtk-doc/html/gtk3/MiscObjects.html +69 -0
  786. data/vendor/local/share/gtk-doc/html/gtk3/NumericEntry.html +60 -0
  787. data/vendor/local/share/gtk-doc/html/gtk3/Ornaments.html +44 -0
  788. data/vendor/local/share/gtk-doc/html/gtk3/PlugSocket.html +38 -0
  789. data/vendor/local/share/gtk-doc/html/gtk3/Printing.html +59 -0
  790. data/vendor/local/share/gtk-doc/html/gtk3/RecentDocuments.html +51 -0
  791. data/vendor/local/share/gtk-doc/html/gtk3/ScrollingWidgets.html +47 -0
  792. data/vendor/local/share/gtk-doc/html/gtk3/SelectorWidgets.html +86 -0
  793. data/vendor/local/share/gtk-doc/html/gtk3/TextWidget.html +266 -0
  794. data/vendor/local/share/gtk-doc/html/gtk3/TextWidgetObjects.html +53 -0
  795. data/vendor/local/share/gtk-doc/html/gtk3/TreeWidget.html +556 -0
  796. data/vendor/local/share/gtk-doc/html/gtk3/TreeWidgetObjects.html +115 -0
  797. data/vendor/local/share/gtk-doc/html/gtk3/WindowWidgets.html +56 -0
  798. data/vendor/local/share/gtk-doc/html/gtk3/aboutdialog.png +0 -0
  799. data/vendor/local/share/gtk-doc/html/gtk3/accel-label.png +0 -0
  800. data/vendor/local/share/gtk-doc/html/gtk3/annotation-glossary.html +110 -0
  801. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-0.html +1901 -0
  802. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-2.html +378 -0
  803. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-4.html +322 -0
  804. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-6.html +332 -0
  805. data/vendor/local/share/gtk-doc/html/gtk3/api-index-deprecated.html +1006 -0
  806. data/vendor/local/share/gtk-doc/html/gtk3/api-index-full.html +22583 -0
  807. data/vendor/local/share/gtk-doc/html/gtk3/appchooserbutton.png +0 -0
  808. data/vendor/local/share/gtk-doc/html/gtk3/appchooserdialog.png +0 -0
  809. data/vendor/local/share/gtk-doc/html/gtk3/application-exit.png +0 -0
  810. data/vendor/local/share/gtk-doc/html/gtk3/arrows.png +0 -0
  811. data/vendor/local/share/gtk-doc/html/gtk3/assistant.png +0 -0
  812. data/vendor/local/share/gtk-doc/html/gtk3/background.png +0 -0
  813. data/vendor/local/share/gtk-doc/html/gtk3/bloatpad-gnome.png +0 -0
  814. data/vendor/local/share/gtk-doc/html/gtk3/bloatpad-osx.png +0 -0
  815. data/vendor/local/share/gtk-doc/html/gtk3/bloatpad-xfce.png +0 -0
  816. data/vendor/local/share/gtk-doc/html/gtk3/border1.png +0 -0
  817. data/vendor/local/share/gtk-doc/html/gtk3/border2.png +0 -0
  818. data/vendor/local/share/gtk-doc/html/gtk3/border3.png +0 -0
  819. data/vendor/local/share/gtk-doc/html/gtk3/box-expand.png +0 -0
  820. data/vendor/local/share/gtk-doc/html/gtk3/box-packing.png +0 -0
  821. data/vendor/local/share/gtk-doc/html/gtk3/button.png +0 -0
  822. data/vendor/local/share/gtk-doc/html/gtk3/ch02.html +252 -0
  823. data/vendor/local/share/gtk-doc/html/gtk3/ch03.html +178 -0
  824. data/vendor/local/share/gtk-doc/html/gtk3/ch24s02.html +1407 -0
  825. data/vendor/local/share/gtk-doc/html/gtk3/ch26s02.html +53 -0
  826. data/vendor/local/share/gtk-doc/html/gtk3/ch28s02.html +117 -0
  827. data/vendor/local/share/gtk-doc/html/gtk3/ch28s03.html +70 -0
  828. data/vendor/local/share/gtk-doc/html/gtk3/chap-drawing-model.html +461 -0
  829. data/vendor/local/share/gtk-doc/html/gtk3/check-button.png +0 -0
  830. data/vendor/local/share/gtk-doc/html/gtk3/checklist-gdkeventexpose-region.html +82 -0
  831. data/vendor/local/share/gtk-doc/html/gtk3/checklist-modifiers.html +89 -0
  832. data/vendor/local/share/gtk-doc/html/gtk3/checklist-named-icons.html +40 -0
  833. data/vendor/local/share/gtk-doc/html/gtk3/checks.png +0 -0
  834. data/vendor/local/share/gtk-doc/html/gtk3/color-button.png +0 -0
  835. data/vendor/local/share/gtk-doc/html/gtk3/colorchooser.png +0 -0
  836. data/vendor/local/share/gtk-doc/html/gtk3/colorsel.png +0 -0
  837. data/vendor/local/share/gtk-doc/html/gtk3/combo-box-entry.png +0 -0
  838. data/vendor/local/share/gtk-doc/html/gtk3/combo-box.png +0 -0
  839. data/vendor/local/share/gtk-doc/html/gtk3/dialog-error.png +0 -0
  840. data/vendor/local/share/gtk-doc/html/gtk3/dialog-information.png +0 -0
  841. data/vendor/local/share/gtk-doc/html/gtk3/dialog-password.png +0 -0
  842. data/vendor/local/share/gtk-doc/html/gtk3/dialog-question.png +0 -0
  843. data/vendor/local/share/gtk-doc/html/gtk3/dialog-warning.png +0 -0
  844. data/vendor/local/share/gtk-doc/html/gtk3/document-new.png +0 -0
  845. data/vendor/local/share/gtk-doc/html/gtk3/document-open.png +0 -0
  846. data/vendor/local/share/gtk-doc/html/gtk3/document-print-preview.png +0 -0
  847. data/vendor/local/share/gtk-doc/html/gtk3/document-print.png +0 -0
  848. data/vendor/local/share/gtk-doc/html/gtk3/document-properties.png +0 -0
  849. data/vendor/local/share/gtk-doc/html/gtk3/document-revert-ltr.png +0 -0
  850. data/vendor/local/share/gtk-doc/html/gtk3/document-revert-rtl.png +0 -0
  851. data/vendor/local/share/gtk-doc/html/gtk3/document-save-as.png +0 -0
  852. data/vendor/local/share/gtk-doc/html/gtk3/document-save.png +0 -0
  853. data/vendor/local/share/gtk-doc/html/gtk3/down-center.png +0 -0
  854. data/vendor/local/share/gtk-doc/html/gtk3/down-end.png +0 -0
  855. data/vendor/local/share/gtk-doc/html/gtk3/down-start.png +0 -0
  856. data/vendor/local/share/gtk-doc/html/gtk3/drawing.png +0 -0
  857. data/vendor/local/share/gtk-doc/html/gtk3/drive-harddisk.png +0 -0
  858. data/vendor/local/share/gtk-doc/html/gtk3/ease-in-out.png +0 -0
  859. data/vendor/local/share/gtk-doc/html/gtk3/ease-in.png +0 -0
  860. data/vendor/local/share/gtk-doc/html/gtk3/ease-out.png +0 -0
  861. data/vendor/local/share/gtk-doc/html/gtk3/ease.png +0 -0
  862. data/vendor/local/share/gtk-doc/html/gtk3/edit-clear.png +0 -0
  863. data/vendor/local/share/gtk-doc/html/gtk3/edit-copy.png +0 -0
  864. data/vendor/local/share/gtk-doc/html/gtk3/edit-cut.png +0 -0
  865. data/vendor/local/share/gtk-doc/html/gtk3/edit-delete.png +0 -0
  866. data/vendor/local/share/gtk-doc/html/gtk3/edit-find-replace.png +0 -0
  867. data/vendor/local/share/gtk-doc/html/gtk3/edit-find.png +0 -0
  868. data/vendor/local/share/gtk-doc/html/gtk3/edit-paste.png +0 -0
  869. data/vendor/local/share/gtk-doc/html/gtk3/edit-redo-ltr.png +0 -0
  870. data/vendor/local/share/gtk-doc/html/gtk3/edit-redo-rtl.png +0 -0
  871. data/vendor/local/share/gtk-doc/html/gtk3/edit-select-all.png +0 -0
  872. data/vendor/local/share/gtk-doc/html/gtk3/edit-undo-ltr.png +0 -0
  873. data/vendor/local/share/gtk-doc/html/gtk3/edit-undo-rtl.png +0 -0
  874. data/vendor/local/share/gtk-doc/html/gtk3/entry.png +0 -0
  875. data/vendor/local/share/gtk-doc/html/gtk3/expanders.png +0 -0
  876. data/vendor/local/share/gtk-doc/html/gtk3/extensions.png +0 -0
  877. data/vendor/local/share/gtk-doc/html/gtk3/figure-hierarchical-drawing.png +0 -0
  878. data/vendor/local/share/gtk-doc/html/gtk3/figure-windowed-label.png +0 -0
  879. data/vendor/local/share/gtk-doc/html/gtk3/file-button.png +0 -0
  880. data/vendor/local/share/gtk-doc/html/gtk3/filechooser.png +0 -0
  881. data/vendor/local/share/gtk-doc/html/gtk3/focus.png +0 -0
  882. data/vendor/local/share/gtk-doc/html/gtk3/folder.png +0 -0
  883. data/vendor/local/share/gtk-doc/html/gtk3/font-button.png +0 -0
  884. data/vendor/local/share/gtk-doc/html/gtk3/fontchooser.png +0 -0
  885. data/vendor/local/share/gtk-doc/html/gtk3/fontsel.png +0 -0
  886. data/vendor/local/share/gtk-doc/html/gtk3/format-indent-less-ltr.png +0 -0
  887. data/vendor/local/share/gtk-doc/html/gtk3/format-indent-less-rtl.png +0 -0
  888. data/vendor/local/share/gtk-doc/html/gtk3/format-indent-more-ltr.png +0 -0
  889. data/vendor/local/share/gtk-doc/html/gtk3/format-indent-more-rtl.png +0 -0
  890. data/vendor/local/share/gtk-doc/html/gtk3/format-justify-center.png +0 -0
  891. data/vendor/local/share/gtk-doc/html/gtk3/format-justify-fill.png +0 -0
  892. data/vendor/local/share/gtk-doc/html/gtk3/format-justify-left.png +0 -0
  893. data/vendor/local/share/gtk-doc/html/gtk3/format-justify-right.png +0 -0
  894. data/vendor/local/share/gtk-doc/html/gtk3/format-text-bold.png +0 -0
  895. data/vendor/local/share/gtk-doc/html/gtk3/format-text-italic.png +0 -0
  896. data/vendor/local/share/gtk-doc/html/gtk3/format-text-strikethrough.png +0 -0
  897. data/vendor/local/share/gtk-doc/html/gtk3/format-text-underline.png +0 -0
  898. data/vendor/local/share/gtk-doc/html/gtk3/frame-gap.png +0 -0
  899. data/vendor/local/share/gtk-doc/html/gtk3/frame.png +0 -0
  900. data/vendor/local/share/gtk-doc/html/gtk3/frames.png +0 -0
  901. data/vendor/local/share/gtk-doc/html/gtk3/glossary.html +312 -0
  902. data/vendor/local/share/gtk-doc/html/gtk3/go-bottom.png +0 -0
  903. data/vendor/local/share/gtk-doc/html/gtk3/go-down.png +0 -0
  904. data/vendor/local/share/gtk-doc/html/gtk3/go-first-ltr.png +0 -0
  905. data/vendor/local/share/gtk-doc/html/gtk3/go-first-rtl.png +0 -0
  906. data/vendor/local/share/gtk-doc/html/gtk3/go-home.png +0 -0
  907. data/vendor/local/share/gtk-doc/html/gtk3/go-jump-ltr.png +0 -0
  908. data/vendor/local/share/gtk-doc/html/gtk3/go-jump-rtl.png +0 -0
  909. data/vendor/local/share/gtk-doc/html/gtk3/go-last-ltr.png +0 -0
  910. data/vendor/local/share/gtk-doc/html/gtk3/go-last-rtl.png +0 -0
  911. data/vendor/local/share/gtk-doc/html/gtk3/go-next-ltr.png +0 -0
  912. data/vendor/local/share/gtk-doc/html/gtk3/go-next-rtl.png +0 -0
  913. data/vendor/local/share/gtk-doc/html/gtk3/go-previous-ltr.png +0 -0
  914. data/vendor/local/share/gtk-doc/html/gtk3/go-previous-rtl.png +0 -0
  915. data/vendor/local/share/gtk-doc/html/gtk3/go-top.png +0 -0
  916. data/vendor/local/share/gtk-doc/html/gtk3/go-up.png +0 -0
  917. data/vendor/local/share/gtk-doc/html/gtk3/gradient1.png +0 -0
  918. data/vendor/local/share/gtk-doc/html/gtk3/gradient2.png +0 -0
  919. data/vendor/local/share/gtk-doc/html/gtk3/gradient3.png +0 -0
  920. data/vendor/local/share/gtk-doc/html/gtk3/gradient4.png +0 -0
  921. data/vendor/local/share/gtk-doc/html/gtk3/grid-packing.png +0 -0
  922. data/vendor/local/share/gtk-doc/html/gtk3/gtk-apply.png +0 -0
  923. data/vendor/local/share/gtk-doc/html/gtk3/gtk-broadway.html +55 -0
  924. data/vendor/local/share/gtk-doc/html/gtk3/gtk-building.html +459 -0
  925. data/vendor/local/share/gtk-doc/html/gtk3/gtk-cancel.png +0 -0
  926. data/vendor/local/share/gtk-doc/html/gtk3/gtk-caps-lock-warning.png +0 -0
  927. data/vendor/local/share/gtk-doc/html/gtk3/gtk-color-picker.png +0 -0
  928. data/vendor/local/share/gtk-doc/html/gtk3/gtk-compiling.html +161 -0
  929. data/vendor/local/share/gtk-doc/html/gtk3/gtk-connect.png +0 -0
  930. data/vendor/local/share/gtk-doc/html/gtk3/gtk-convert.png +0 -0
  931. data/vendor/local/share/gtk-doc/html/gtk3/gtk-disconnect.png +0 -0
  932. data/vendor/local/share/gtk-doc/html/gtk3/gtk-dnd-multiple.png +0 -0
  933. data/vendor/local/share/gtk-doc/html/gtk3/gtk-dnd.png +0 -0
  934. data/vendor/local/share/gtk-doc/html/gtk3/gtk-edit.png +0 -0
  935. data/vendor/local/share/gtk-doc/html/gtk3/gtk-font.png +0 -0
  936. data/vendor/local/share/gtk-doc/html/gtk3/gtk-getting-started.html +1095 -0
  937. data/vendor/local/share/gtk-doc/html/gtk3/gtk-index.png +0 -0
  938. data/vendor/local/share/gtk-doc/html/gtk3/gtk-launch.html +72 -0
  939. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-2-to-3.html +688 -0
  940. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkGrid.html +102 -0
  941. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-bonus-points.html +136 -0
  942. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-checklist.html +221 -0
  943. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-css.html +437 -0
  944. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-parser-extensions.html +69 -0
  945. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-parsing.html +82 -0
  946. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext.html +74 -0
  947. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-checklist.html +164 -0
  948. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-smclient-GtkApplication.html +89 -0
  949. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-theme-GtkStyleContext-engines.html +133 -0
  950. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-unique-GtkApplication.html +228 -0
  951. data/vendor/local/share/gtk-doc/html/gtk3/gtk-no.png +0 -0
  952. data/vendor/local/share/gtk-doc/html/gtk3/gtk-ok.png +0 -0
  953. data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-landscape.png +0 -0
  954. data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-portrait.png +0 -0
  955. data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-reverse-landscape.png +0 -0
  956. data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-reverse-portrait.png +0 -0
  957. data/vendor/local/share/gtk-doc/html/gtk3/gtk-osx.html +54 -0
  958. data/vendor/local/share/gtk-doc/html/gtk3/gtk-page-setup.png +0 -0
  959. data/vendor/local/share/gtk-doc/html/gtk3/gtk-preferences.png +0 -0
  960. data/vendor/local/share/gtk-doc/html/gtk3/gtk-query-immodules-3.0.html +110 -0
  961. data/vendor/local/share/gtk-doc/html/gtk3/gtk-question-index.html +1395 -0
  962. data/vendor/local/share/gtk-doc/html/gtk3/gtk-resources.html +146 -0
  963. data/vendor/local/share/gtk-doc/html/gtk3/gtk-running.html +427 -0
  964. data/vendor/local/share/gtk-doc/html/gtk3/gtk-select-color.png +0 -0
  965. data/vendor/local/share/gtk-doc/html/gtk3/gtk-undelete-ltr.png +0 -0
  966. data/vendor/local/share/gtk-doc/html/gtk3/gtk-undelete-rtl.png +0 -0
  967. data/vendor/local/share/gtk-doc/html/gtk3/gtk-update-icon-cache.html +106 -0
  968. data/vendor/local/share/gtk-doc/html/gtk3/gtk-windows.html +93 -0
  969. data/vendor/local/share/gtk-doc/html/gtk3/gtk-x11.html +122 -0
  970. data/vendor/local/share/gtk-doc/html/gtk3/gtk-yes.png +0 -0
  971. data/vendor/local/share/gtk-doc/html/gtk3/gtk.html +187 -0
  972. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Accelerator-Maps.html +674 -0
  973. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Bindings.html +920 -0
  974. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Clipboards.html +1622 -0
  975. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Drag-and-Drop.html +1483 -0
  976. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Feature-Test-Macros.html +346 -0
  977. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Filesystem-utilities.html +368 -0
  978. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-General.html +1325 -0
  979. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkGradient.html +346 -0
  980. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkStyleProperties.html +590 -0
  981. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkSymbolicColor.html +420 -0
  982. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkTreeView-drag-and-drop.html +452 -0
  983. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkWidgetPath.html +1361 -0
  984. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-High-level-Printing-API.html +2748 -0
  985. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Keyboard-Accelerators.html +1143 -0
  986. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Orientable.html +173 -0
  987. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Resource-Files.html +2004 -0
  988. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Selections.html +1844 -0
  989. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Standard-Enumerations.html +1753 -0
  990. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Stock-Items.html +1587 -0
  991. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Testing.html +646 -0
  992. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Themeable-Stock-Images.html +1730 -0
  993. data/vendor/local/share/gtk-doc/html/gtk3/gtk3.devhelp2 +6619 -0
  994. data/vendor/local/share/gtk-doc/html/gtk3/gtkbase.html +76 -0
  995. data/vendor/local/share/gtk-doc/html/gtk3/gtkobjects.html +670 -0
  996. data/vendor/local/share/gtk-doc/html/gtk3/handles.png +0 -0
  997. data/vendor/local/share/gtk-doc/html/gtk3/hello-world.png +0 -0
  998. data/vendor/local/share/gtk-doc/html/gtk3/help-about.png +0 -0
  999. data/vendor/local/share/gtk-doc/html/gtk3/help-contents.png +0 -0
  1000. data/vendor/local/share/gtk-doc/html/gtk3/home.png +0 -0
  1001. data/vendor/local/share/gtk-doc/html/gtk3/icon-view.png +0 -0
  1002. data/vendor/local/share/gtk-doc/html/gtk3/image-missing.png +0 -0
  1003. data/vendor/local/share/gtk-doc/html/gtk3/image.png +0 -0
  1004. data/vendor/local/share/gtk-doc/html/gtk3/index.html +903 -0
  1005. data/vendor/local/share/gtk-doc/html/gtk3/index.sgml +8183 -0
  1006. data/vendor/local/share/gtk-doc/html/gtk3/label.png +0 -0
  1007. data/vendor/local/share/gtk-doc/html/gtk3/layout-btlr.png +0 -0
  1008. data/vendor/local/share/gtk-doc/html/gtk3/layout-btrl.png +0 -0
  1009. data/vendor/local/share/gtk-doc/html/gtk3/layout-lrbt.png +0 -0
  1010. data/vendor/local/share/gtk-doc/html/gtk3/layout-lrtb.png +0 -0
  1011. data/vendor/local/share/gtk-doc/html/gtk3/layout-rlbt.png +0 -0
  1012. data/vendor/local/share/gtk-doc/html/gtk3/layout-rltb.png +0 -0
  1013. data/vendor/local/share/gtk-doc/html/gtk3/layout-tblr.png +0 -0
  1014. data/vendor/local/share/gtk-doc/html/gtk3/layout-tbrl.png +0 -0
  1015. data/vendor/local/share/gtk-doc/html/gtk3/left-center.png +0 -0
  1016. data/vendor/local/share/gtk-doc/html/gtk3/left-end.png +0 -0
  1017. data/vendor/local/share/gtk-doc/html/gtk3/left-start.png +0 -0
  1018. data/vendor/local/share/gtk-doc/html/gtk3/left.png +0 -0
  1019. data/vendor/local/share/gtk-doc/html/gtk3/levelbar.png +0 -0
  1020. data/vendor/local/share/gtk-doc/html/gtk3/linear.png +0 -0
  1021. data/vendor/local/share/gtk-doc/html/gtk3/link-button.png +0 -0
  1022. data/vendor/local/share/gtk-doc/html/gtk3/list-add.png +0 -0
  1023. data/vendor/local/share/gtk-doc/html/gtk3/list-and-tree.png +0 -0
  1024. data/vendor/local/share/gtk-doc/html/gtk3/list-remove.png +0 -0
  1025. data/vendor/local/share/gtk-doc/html/gtk3/lock-button.png +0 -0
  1026. data/vendor/local/share/gtk-doc/html/gtk3/lockbutton-locked.png +0 -0
  1027. data/vendor/local/share/gtk-doc/html/gtk3/lockbutton-sorry.png +0 -0
  1028. data/vendor/local/share/gtk-doc/html/gtk3/lockbutton-unlocked.png +0 -0
  1029. data/vendor/local/share/gtk-doc/html/gtk3/lockbutton.png +0 -0
  1030. data/vendor/local/share/gtk-doc/html/gtk3/media-floppy.png +0 -0
  1031. data/vendor/local/share/gtk-doc/html/gtk3/media-optical.png +0 -0
  1032. data/vendor/local/share/gtk-doc/html/gtk3/media-playback-pause.png +0 -0
  1033. data/vendor/local/share/gtk-doc/html/gtk3/media-playback-start-ltr.png +0 -0
  1034. data/vendor/local/share/gtk-doc/html/gtk3/media-playback-start-rtl.png +0 -0
  1035. data/vendor/local/share/gtk-doc/html/gtk3/media-playback-stop.png +0 -0
  1036. data/vendor/local/share/gtk-doc/html/gtk3/media-record.png +0 -0
  1037. data/vendor/local/share/gtk-doc/html/gtk3/media-seek-backward-ltr.png +0 -0
  1038. data/vendor/local/share/gtk-doc/html/gtk3/media-seek-backward-rtl.png +0 -0
  1039. data/vendor/local/share/gtk-doc/html/gtk3/media-seek-forward-ltr.png +0 -0
  1040. data/vendor/local/share/gtk-doc/html/gtk3/media-seek-forward-rtl.png +0 -0
  1041. data/vendor/local/share/gtk-doc/html/gtk3/media-skip-backward-ltr.png +0 -0
  1042. data/vendor/local/share/gtk-doc/html/gtk3/media-skip-backward-rtl.png +0 -0
  1043. data/vendor/local/share/gtk-doc/html/gtk3/media-skip-forward-ltr.png +0 -0
  1044. data/vendor/local/share/gtk-doc/html/gtk3/media-skip-forward-rtl.png +0 -0
  1045. data/vendor/local/share/gtk-doc/html/gtk3/menu-button.png +0 -0
  1046. data/vendor/local/share/gtk-doc/html/gtk3/menubar.png +0 -0
  1047. data/vendor/local/share/gtk-doc/html/gtk3/messagedialog.png +0 -0
  1048. data/vendor/local/share/gtk-doc/html/gtk3/migrating.html +106 -0
  1049. data/vendor/local/share/gtk-doc/html/gtk3/multiline-text.png +0 -0
  1050. data/vendor/local/share/gtk-doc/html/gtk3/network-idle.png +0 -0
  1051. data/vendor/local/share/gtk-doc/html/gtk3/notebook.png +0 -0
  1052. data/vendor/local/share/gtk-doc/html/gtk3/numerableicon.png +0 -0
  1053. data/vendor/local/share/gtk-doc/html/gtk3/numerableicon2.png +0 -0
  1054. data/vendor/local/share/gtk-doc/html/gtk3/options.png +0 -0
  1055. data/vendor/local/share/gtk-doc/html/gtk3/pagesetupdialog.png +0 -0
  1056. data/vendor/local/share/gtk-doc/html/gtk3/panes.png +0 -0
  1057. data/vendor/local/share/gtk-doc/html/gtk3/printdialog.png +0 -0
  1058. data/vendor/local/share/gtk-doc/html/gtk3/printer-error.png +0 -0
  1059. data/vendor/local/share/gtk-doc/html/gtk3/printer-info.png +0 -0
  1060. data/vendor/local/share/gtk-doc/html/gtk3/printer-paused.png +0 -0
  1061. data/vendor/local/share/gtk-doc/html/gtk3/printer-warning.png +0 -0
  1062. data/vendor/local/share/gtk-doc/html/gtk3/process-stop.png +0 -0
  1063. data/vendor/local/share/gtk-doc/html/gtk3/progressbar.png +0 -0
  1064. data/vendor/local/share/gtk-doc/html/gtk3/pt06.html +44 -0
  1065. data/vendor/local/share/gtk-doc/html/gtk3/radio-group.png +0 -0
  1066. data/vendor/local/share/gtk-doc/html/gtk3/recentchooserdialog.png +0 -0
  1067. data/vendor/local/share/gtk-doc/html/gtk3/right-center.png +0 -0
  1068. data/vendor/local/share/gtk-doc/html/gtk3/right-end.png +0 -0
  1069. data/vendor/local/share/gtk-doc/html/gtk3/right-start.png +0 -0
  1070. data/vendor/local/share/gtk-doc/html/gtk3/right.png +0 -0
  1071. data/vendor/local/share/gtk-doc/html/gtk3/scales.png +0 -0
  1072. data/vendor/local/share/gtk-doc/html/gtk3/scrolledwindow.png +0 -0
  1073. data/vendor/local/share/gtk-doc/html/gtk3/search-entry.png +0 -0
  1074. data/vendor/local/share/gtk-doc/html/gtk3/separator.png +0 -0
  1075. data/vendor/local/share/gtk-doc/html/gtk3/slices.png +0 -0
  1076. data/vendor/local/share/gtk-doc/html/gtk3/sliders.png +0 -0
  1077. data/vendor/local/share/gtk-doc/html/gtk3/spinbutton.png +0 -0
  1078. data/vendor/local/share/gtk-doc/html/gtk3/spinner.png +0 -0
  1079. data/vendor/local/share/gtk-doc/html/gtk3/statusbar.png +0 -0
  1080. data/vendor/local/share/gtk-doc/html/gtk3/style.css +266 -0
  1081. data/vendor/local/share/gtk-doc/html/gtk3/switch.png +0 -0
  1082. data/vendor/local/share/gtk-doc/html/gtk3/system-run.png +0 -0
  1083. data/vendor/local/share/gtk-doc/html/gtk3/text-x-generic.png +0 -0
  1084. data/vendor/local/share/gtk-doc/html/gtk3/theming.html +75 -0
  1085. data/vendor/local/share/gtk-doc/html/gtk3/toggle-button.png +0 -0
  1086. data/vendor/local/share/gtk-doc/html/gtk3/toolbar.png +0 -0
  1087. data/vendor/local/share/gtk-doc/html/gtk3/toolpalette.png +0 -0
  1088. data/vendor/local/share/gtk-doc/html/gtk3/tools-check-spelling.png +0 -0
  1089. data/vendor/local/share/gtk-doc/html/gtk3/tree-view-coordinates.png +0 -0
  1090. data/vendor/local/share/gtk-doc/html/gtk3/up-center.png +0 -0
  1091. data/vendor/local/share/gtk-doc/html/gtk3/up-end.png +0 -0
  1092. data/vendor/local/share/gtk-doc/html/gtk3/up-start.png +0 -0
  1093. data/vendor/local/share/gtk-doc/html/gtk3/up.png +0 -0
  1094. data/vendor/local/share/gtk-doc/html/gtk3/view-fullscreen.png +0 -0
  1095. data/vendor/local/share/gtk-doc/html/gtk3/view-refresh.png +0 -0
  1096. data/vendor/local/share/gtk-doc/html/gtk3/view-restore.png +0 -0
  1097. data/vendor/local/share/gtk-doc/html/gtk3/view-sort-ascending.png +0 -0
  1098. data/vendor/local/share/gtk-doc/html/gtk3/view-sort-descending.png +0 -0
  1099. data/vendor/local/share/gtk-doc/html/gtk3/volumebutton.png +0 -0
  1100. data/vendor/local/share/gtk-doc/html/gtk3/widget-hvalign.png +0 -0
  1101. data/vendor/local/share/gtk-doc/html/gtk3/window-close.png +0 -0
  1102. data/vendor/local/share/gtk-doc/html/gtk3/window-default.png +0 -0
  1103. data/vendor/local/share/gtk-doc/html/gtk3/window.png +0 -0
  1104. data/vendor/local/share/gtk-doc/html/gtk3/zoom-fit-best.png +0 -0
  1105. data/vendor/local/share/gtk-doc/html/gtk3/zoom-in.png +0 -0
  1106. data/vendor/local/share/gtk-doc/html/gtk3/zoom-original.png +0 -0
  1107. data/vendor/local/share/gtk-doc/html/gtk3/zoom-out.png +0 -0
  1108. data/vendor/local/share/license/gtk+/AUTHORS +65 -0
  1109. data/vendor/local/share/license/gtk+/COPYING +481 -0
  1110. data/vendor/local/share/locale/af/LC_MESSAGES/gtk30-properties.mo +0 -0
  1111. data/vendor/local/share/locale/af/LC_MESSAGES/gtk30.mo +0 -0
  1112. data/vendor/local/share/locale/am/LC_MESSAGES/gtk30-properties.mo +0 -0
  1113. data/vendor/local/share/locale/am/LC_MESSAGES/gtk30.mo +0 -0
  1114. data/vendor/local/share/locale/ang/LC_MESSAGES/gtk30-properties.mo +0 -0
  1115. data/vendor/local/share/locale/ang/LC_MESSAGES/gtk30.mo +0 -0
  1116. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk30-properties.mo +0 -0
  1117. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk30.mo +0 -0
  1118. data/vendor/local/share/locale/as/LC_MESSAGES/gtk30-properties.mo +0 -0
  1119. data/vendor/local/share/locale/as/LC_MESSAGES/gtk30.mo +0 -0
  1120. data/vendor/local/share/locale/ast/LC_MESSAGES/gtk30-properties.mo +0 -0
  1121. data/vendor/local/share/locale/ast/LC_MESSAGES/gtk30.mo +0 -0
  1122. data/vendor/local/share/locale/az/LC_MESSAGES/gtk30-properties.mo +0 -0
  1123. data/vendor/local/share/locale/az/LC_MESSAGES/gtk30.mo +0 -0
  1124. data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk30-properties.mo +0 -0
  1125. data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk30.mo +0 -0
  1126. data/vendor/local/share/locale/be/LC_MESSAGES/gtk30-properties.mo +0 -0
  1127. data/vendor/local/share/locale/be/LC_MESSAGES/gtk30.mo +0 -0
  1128. data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk30-properties.mo +0 -0
  1129. data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk30.mo +0 -0
  1130. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk30-properties.mo +0 -0
  1131. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk30.mo +0 -0
  1132. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk30-properties.mo +0 -0
  1133. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk30.mo +0 -0
  1134. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk30-properties.mo +0 -0
  1135. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk30.mo +0 -0
  1136. data/vendor/local/share/locale/br/LC_MESSAGES/gtk30-properties.mo +0 -0
  1137. data/vendor/local/share/locale/br/LC_MESSAGES/gtk30.mo +0 -0
  1138. data/vendor/local/share/locale/bs/LC_MESSAGES/gtk30-properties.mo +0 -0
  1139. data/vendor/local/share/locale/bs/LC_MESSAGES/gtk30.mo +0 -0
  1140. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk30-properties.mo +0 -0
  1141. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk30.mo +0 -0
  1142. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk30-properties.mo +0 -0
  1143. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk30.mo +0 -0
  1144. data/vendor/local/share/locale/crh/LC_MESSAGES/gtk30-properties.mo +0 -0
  1145. data/vendor/local/share/locale/crh/LC_MESSAGES/gtk30.mo +0 -0
  1146. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk30-properties.mo +0 -0
  1147. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk30.mo +0 -0
  1148. data/vendor/local/share/locale/cy/LC_MESSAGES/gtk30-properties.mo +0 -0
  1149. data/vendor/local/share/locale/cy/LC_MESSAGES/gtk30.mo +0 -0
  1150. data/vendor/local/share/locale/da/LC_MESSAGES/gtk30-properties.mo +0 -0
  1151. data/vendor/local/share/locale/da/LC_MESSAGES/gtk30.mo +0 -0
  1152. data/vendor/local/share/locale/de/LC_MESSAGES/gtk30-properties.mo +0 -0
  1153. data/vendor/local/share/locale/de/LC_MESSAGES/gtk30.mo +0 -0
  1154. data/vendor/local/share/locale/dz/LC_MESSAGES/gtk30-properties.mo +0 -0
  1155. data/vendor/local/share/locale/dz/LC_MESSAGES/gtk30.mo +0 -0
  1156. data/vendor/local/share/locale/el/LC_MESSAGES/gtk30-properties.mo +0 -0
  1157. data/vendor/local/share/locale/el/LC_MESSAGES/gtk30.mo +0 -0
  1158. data/vendor/local/share/locale/en/LC_MESSAGES/gtk30-properties.mo +0 -0
  1159. data/vendor/local/share/locale/en/LC_MESSAGES/gtk30.mo +0 -0
  1160. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/gtk30-properties.mo +0 -0
  1161. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/gtk30.mo +0 -0
  1162. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk30-properties.mo +0 -0
  1163. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk30.mo +0 -0
  1164. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk30-properties.mo +0 -0
  1165. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk30.mo +0 -0
  1166. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk30-properties.mo +0 -0
  1167. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk30.mo +0 -0
  1168. data/vendor/local/share/locale/es/LC_MESSAGES/gtk30-properties.mo +0 -0
  1169. data/vendor/local/share/locale/es/LC_MESSAGES/gtk30.mo +0 -0
  1170. data/vendor/local/share/locale/et/LC_MESSAGES/gtk30-properties.mo +0 -0
  1171. data/vendor/local/share/locale/et/LC_MESSAGES/gtk30.mo +0 -0
  1172. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk30-properties.mo +0 -0
  1173. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk30.mo +0 -0
  1174. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk30-properties.mo +0 -0
  1175. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk30.mo +0 -0
  1176. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1177. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk30.mo +0 -0
  1178. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1179. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk30.mo +0 -0
  1180. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk30-properties.mo +0 -0
  1181. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk30.mo +0 -0
  1182. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk30-properties.mo +0 -0
  1183. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk30.mo +0 -0
  1184. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk30-properties.mo +0 -0
  1185. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk30.mo +0 -0
  1186. data/vendor/local/share/locale/he/LC_MESSAGES/gtk30-properties.mo +0 -0
  1187. data/vendor/local/share/locale/he/LC_MESSAGES/gtk30.mo +0 -0
  1188. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1189. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk30.mo +0 -0
  1190. data/vendor/local/share/locale/hr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1191. data/vendor/local/share/locale/hr/LC_MESSAGES/gtk30.mo +0 -0
  1192. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk30-properties.mo +0 -0
  1193. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk30.mo +0 -0
  1194. data/vendor/local/share/locale/hy/LC_MESSAGES/gtk30-properties.mo +0 -0
  1195. data/vendor/local/share/locale/hy/LC_MESSAGES/gtk30.mo +0 -0
  1196. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk30-properties.mo +0 -0
  1197. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk30.mo +0 -0
  1198. data/vendor/local/share/locale/id/LC_MESSAGES/gtk30-properties.mo +0 -0
  1199. data/vendor/local/share/locale/id/LC_MESSAGES/gtk30.mo +0 -0
  1200. data/vendor/local/share/locale/io/LC_MESSAGES/gtk30-properties.mo +0 -0
  1201. data/vendor/local/share/locale/io/LC_MESSAGES/gtk30.mo +0 -0
  1202. data/vendor/local/share/locale/is/LC_MESSAGES/gtk30-properties.mo +0 -0
  1203. data/vendor/local/share/locale/is/LC_MESSAGES/gtk30.mo +0 -0
  1204. data/vendor/local/share/locale/it/LC_MESSAGES/gtk30-properties.mo +0 -0
  1205. data/vendor/local/share/locale/it/LC_MESSAGES/gtk30.mo +0 -0
  1206. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk30-properties.mo +0 -0
  1207. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk30.mo +0 -0
  1208. data/vendor/local/share/locale/ka/LC_MESSAGES/gtk30-properties.mo +0 -0
  1209. data/vendor/local/share/locale/ka/LC_MESSAGES/gtk30.mo +0 -0
  1210. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk30-properties.mo +0 -0
  1211. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk30.mo +0 -0
  1212. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1213. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk30.mo +0 -0
  1214. data/vendor/local/share/locale/km/LC_MESSAGES/gtk30-properties.mo +0 -0
  1215. data/vendor/local/share/locale/km/LC_MESSAGES/gtk30.mo +0 -0
  1216. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk30-properties.mo +0 -0
  1217. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk30.mo +0 -0
  1218. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk30-properties.mo +0 -0
  1219. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk30.mo +0 -0
  1220. data/vendor/local/share/locale/ku/LC_MESSAGES/gtk30-properties.mo +0 -0
  1221. data/vendor/local/share/locale/ku/LC_MESSAGES/gtk30.mo +0 -0
  1222. data/vendor/local/share/locale/ky/LC_MESSAGES/gtk30-properties.mo +0 -0
  1223. data/vendor/local/share/locale/ky/LC_MESSAGES/gtk30.mo +0 -0
  1224. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk30-properties.mo +0 -0
  1225. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk30.mo +0 -0
  1226. data/vendor/local/share/locale/li/LC_MESSAGES/gtk30-properties.mo +0 -0
  1227. data/vendor/local/share/locale/li/LC_MESSAGES/gtk30.mo +0 -0
  1228. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk30-properties.mo +0 -0
  1229. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk30.mo +0 -0
  1230. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk30-properties.mo +0 -0
  1231. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk30.mo +0 -0
  1232. data/vendor/local/share/locale/mai/LC_MESSAGES/gtk30-properties.mo +0 -0
  1233. data/vendor/local/share/locale/mai/LC_MESSAGES/gtk30.mo +0 -0
  1234. data/vendor/local/share/locale/mi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1235. data/vendor/local/share/locale/mi/LC_MESSAGES/gtk30.mo +0 -0
  1236. data/vendor/local/share/locale/mk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1237. data/vendor/local/share/locale/mk/LC_MESSAGES/gtk30.mo +0 -0
  1238. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk30-properties.mo +0 -0
  1239. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk30.mo +0 -0
  1240. data/vendor/local/share/locale/mn/LC_MESSAGES/gtk30-properties.mo +0 -0
  1241. data/vendor/local/share/locale/mn/LC_MESSAGES/gtk30.mo +0 -0
  1242. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1243. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk30.mo +0 -0
  1244. data/vendor/local/share/locale/ms/LC_MESSAGES/gtk30-properties.mo +0 -0
  1245. data/vendor/local/share/locale/ms/LC_MESSAGES/gtk30.mo +0 -0
  1246. data/vendor/local/share/locale/my/LC_MESSAGES/gtk30-properties.mo +0 -0
  1247. data/vendor/local/share/locale/my/LC_MESSAGES/gtk30.mo +0 -0
  1248. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk30-properties.mo +0 -0
  1249. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk30.mo +0 -0
  1250. data/vendor/local/share/locale/nds/LC_MESSAGES/gtk30-properties.mo +0 -0
  1251. data/vendor/local/share/locale/nds/LC_MESSAGES/gtk30.mo +0 -0
  1252. data/vendor/local/share/locale/ne/LC_MESSAGES/gtk30-properties.mo +0 -0
  1253. data/vendor/local/share/locale/ne/LC_MESSAGES/gtk30.mo +0 -0
  1254. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk30-properties.mo +0 -0
  1255. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk30.mo +0 -0
  1256. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk30-properties.mo +0 -0
  1257. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk30.mo +0 -0
  1258. data/vendor/local/share/locale/nso/LC_MESSAGES/gtk30-properties.mo +0 -0
  1259. data/vendor/local/share/locale/nso/LC_MESSAGES/gtk30.mo +0 -0
  1260. data/vendor/local/share/locale/oc/LC_MESSAGES/gtk30-properties.mo +0 -0
  1261. data/vendor/local/share/locale/oc/LC_MESSAGES/gtk30.mo +0 -0
  1262. data/vendor/local/share/locale/or/LC_MESSAGES/gtk30-properties.mo +0 -0
  1263. data/vendor/local/share/locale/or/LC_MESSAGES/gtk30.mo +0 -0
  1264. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk30-properties.mo +0 -0
  1265. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk30.mo +0 -0
  1266. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk30-properties.mo +0 -0
  1267. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk30.mo +0 -0
  1268. data/vendor/local/share/locale/ps/LC_MESSAGES/gtk30-properties.mo +0 -0
  1269. data/vendor/local/share/locale/ps/LC_MESSAGES/gtk30.mo +0 -0
  1270. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk30-properties.mo +0 -0
  1271. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk30.mo +0 -0
  1272. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk30-properties.mo +0 -0
  1273. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk30.mo +0 -0
  1274. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk30-properties.mo +0 -0
  1275. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk30.mo +0 -0
  1276. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk30-properties.mo +0 -0
  1277. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk30.mo +0 -0
  1278. data/vendor/local/share/locale/rw/LC_MESSAGES/gtk30-properties.mo +0 -0
  1279. data/vendor/local/share/locale/rw/LC_MESSAGES/gtk30.mo +0 -0
  1280. data/vendor/local/share/locale/si/LC_MESSAGES/gtk30-properties.mo +0 -0
  1281. data/vendor/local/share/locale/si/LC_MESSAGES/gtk30.mo +0 -0
  1282. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1283. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk30.mo +0 -0
  1284. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk30-properties.mo +0 -0
  1285. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk30.mo +0 -0
  1286. data/vendor/local/share/locale/sq/LC_MESSAGES/gtk30-properties.mo +0 -0
  1287. data/vendor/local/share/locale/sq/LC_MESSAGES/gtk30.mo +0 -0
  1288. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1289. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk30.mo +0 -0
  1290. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk30-properties.mo +0 -0
  1291. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk30.mo +0 -0
  1292. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk30-properties.mo +0 -0
  1293. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk30.mo +0 -0
  1294. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk30-properties.mo +0 -0
  1295. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk30.mo +0 -0
  1296. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk30-properties.mo +0 -0
  1297. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk30.mo +0 -0
  1298. data/vendor/local/share/locale/te/LC_MESSAGES/gtk30-properties.mo +0 -0
  1299. data/vendor/local/share/locale/te/LC_MESSAGES/gtk30.mo +0 -0
  1300. data/vendor/local/share/locale/th/LC_MESSAGES/gtk30-properties.mo +0 -0
  1301. data/vendor/local/share/locale/th/LC_MESSAGES/gtk30.mo +0 -0
  1302. data/vendor/local/share/locale/tk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1303. data/vendor/local/share/locale/tk/LC_MESSAGES/gtk30.mo +0 -0
  1304. data/vendor/local/share/locale/tr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1305. data/vendor/local/share/locale/tr/LC_MESSAGES/gtk30.mo +0 -0
  1306. data/vendor/local/share/locale/tt/LC_MESSAGES/gtk30-properties.mo +0 -0
  1307. data/vendor/local/share/locale/tt/LC_MESSAGES/gtk30.mo +0 -0
  1308. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk30-properties.mo +0 -0
  1309. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk30.mo +0 -0
  1310. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1311. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk30.mo +0 -0
  1312. data/vendor/local/share/locale/ur/LC_MESSAGES/gtk30-properties.mo +0 -0
  1313. data/vendor/local/share/locale/ur/LC_MESSAGES/gtk30.mo +0 -0
  1314. data/vendor/local/share/locale/uz/LC_MESSAGES/gtk30-properties.mo +0 -0
  1315. data/vendor/local/share/locale/uz/LC_MESSAGES/gtk30.mo +0 -0
  1316. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk30-properties.mo +0 -0
  1317. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk30.mo +0 -0
  1318. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1319. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk30.mo +0 -0
  1320. data/vendor/local/share/locale/wa/LC_MESSAGES/gtk30-properties.mo +0 -0
  1321. data/vendor/local/share/locale/wa/LC_MESSAGES/gtk30.mo +0 -0
  1322. data/vendor/local/share/locale/xh/LC_MESSAGES/gtk30-properties.mo +0 -0
  1323. data/vendor/local/share/locale/xh/LC_MESSAGES/gtk30.mo +0 -0
  1324. data/vendor/local/share/locale/yi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1325. data/vendor/local/share/locale/yi/LC_MESSAGES/gtk30.mo +0 -0
  1326. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk30-properties.mo +0 -0
  1327. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk30.mo +0 -0
  1328. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk30-properties.mo +0 -0
  1329. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk30.mo +0 -0
  1330. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk30-properties.mo +0 -0
  1331. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk30.mo +0 -0
  1332. data/vendor/local/share/man/man1/gtk-launch.1 +53 -0
  1333. data/vendor/local/share/man/man1/gtk-query-immodules-3.0.1 +75 -0
  1334. data/vendor/local/share/man/man1/gtk-update-icon-cache.1 +88 -0
  1335. data/vendor/local/share/themes/Default/gtk-3.0/gtk-keys.css +3 -0
  1336. data/vendor/local/share/themes/Emacs/gtk-3.0/gtk-keys.css +121 -0
  1337. metadata +1449 -0
@@ -0,0 +1,135 @@
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>GtkTearoffMenuItem</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.0">
7
+ <link rel="home" href="index.html" title="GTK+ 3 Reference Manual">
8
+ <link rel="up" href="MenusAndCombos.html" title="Menus, Combo Box, Toolbar">
9
+ <link rel="prev" href="GtkSeparatorMenuItem.html" title="GtkSeparatorMenuItem">
10
+ <link rel="next" href="GtkToolShell.html" title="GtkToolShell">
11
+ <meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
16
+ <tr valign="middle">
17
+ <td><a accesskey="p" href="GtkSeparatorMenuItem.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="MenusAndCombos.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+ 3 Reference Manual</th>
21
+ <td><a accesskey="n" href="GtkToolShell.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="#GtkTearoffMenuItem.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GtkTearoffMenuItem.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GtkTearoffMenuItem.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#GtkTearoffMenuItem.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
31
+ </td></tr>
32
+ </table>
33
+ <div class="refentry">
34
+ <a name="GtkTearoffMenuItem"></a><div class="titlepage"></div>
35
+ <div class="refnamediv"><table width="100%"><tr>
36
+ <td valign="top">
37
+ <h2><span class="refentrytitle"><a name="GtkTearoffMenuItem.top_of_page"></a>GtkTearoffMenuItem</span></h2>
38
+ <p>GtkTearoffMenuItem — A menu item used to tear off and reattach its menu</p>
39
+ </td>
40
+ <td valign="top" align="right"></td>
41
+ </tr></table></div>
42
+ <div class="refsynopsisdiv">
43
+ <a name="GtkTearoffMenuItem.synopsis"></a><h2>Synopsis</h2>
44
+ <pre class="synopsis">
45
+ #include &lt;gtk/gtk.h&gt;
46
+
47
+ struct <a class="link" href="GtkTearoffMenuItem.html#GtkTearoffMenuItem-struct" title="struct GtkTearoffMenuItem">GtkTearoffMenuItem</a>;
48
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkTearoffMenuItem.html#gtk-tearoff-menu-item-new" title="gtk_tearoff_menu_item_new ()">gtk_tearoff_menu_item_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
49
+ </pre>
50
+ </div>
51
+ <div class="refsect1">
52
+ <a name="GtkTearoffMenuItem.object-hierarchy"></a><h2>Object Hierarchy</h2>
53
+ <pre class="synopsis">
54
+ GObject
55
+ +----GInitiallyUnowned
56
+ +----<a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
57
+ +----<a class="link" href="GtkContainer.html" title="GtkContainer">GtkContainer</a>
58
+ +----<a class="link" href="GtkBin.html" title="GtkBin">GtkBin</a>
59
+ +----<a class="link" href="GtkMenuItem.html" title="GtkMenuItem">GtkMenuItem</a>
60
+ +----GtkTearoffMenuItem
61
+ </pre>
62
+ </div>
63
+ <div class="refsect1">
64
+ <a name="GtkTearoffMenuItem.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
65
+ <p>
66
+ GtkTearoffMenuItem implements
67
+ AtkImplementorIface, <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>, <a class="link" href="GtkActivatable.html" title="GtkActivatable">GtkActivatable</a> and <a class="link" href="GtkActionable.html" title="GtkActionable">GtkActionable</a>.</p>
68
+ </div>
69
+ <div class="refsect1">
70
+ <a name="GtkTearoffMenuItem.description"></a><h2>Description</h2>
71
+ <p>
72
+ A <a class="link" href="GtkTearoffMenuItem.html" title="GtkTearoffMenuItem"><span class="type">GtkTearoffMenuItem</span></a> is a special <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span class="type">GtkMenuItem</span></a> which is used to
73
+ tear off and reattach its menu.
74
+ </p>
75
+ <p>
76
+ When its menu is shown normally, the <a class="link" href="GtkTearoffMenuItem.html" title="GtkTearoffMenuItem"><span class="type">GtkTearoffMenuItem</span></a> is drawn as a
77
+ dotted line indicating that the menu can be torn off. Activating it
78
+ causes its menu to be torn off and displayed in its own window
79
+ as a tearoff menu.
80
+ </p>
81
+ <p>
82
+ When its menu is shown as a tearoff menu, the <a class="link" href="GtkTearoffMenuItem.html" title="GtkTearoffMenuItem"><span class="type">GtkTearoffMenuItem</span></a> is drawn
83
+ as a dotted line which has a left pointing arrow graphic indicating that
84
+ the tearoff menu can be reattached. Activating it will erase the tearoff
85
+ menu window.
86
+ </p>
87
+ <p>
88
+ </p>
89
+ <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
90
+ <h3 class="title">Note</h3>
91
+ <a class="link" href="GtkTearoffMenuItem.html" title="GtkTearoffMenuItem"><span class="type">GtkTearoffMenuItem</span></a> is deprecated and should not be used in newly
92
+ written code. Menus are not meant to be torn around.</div>
93
+ <p>
94
+ </p>
95
+ </div>
96
+ <div class="refsect1">
97
+ <a name="GtkTearoffMenuItem.details"></a><h2>Details</h2>
98
+ <div class="refsect2">
99
+ <a name="GtkTearoffMenuItem-struct"></a><h3>struct GtkTearoffMenuItem</h3>
100
+ <pre class="programlisting">struct GtkTearoffMenuItem;</pre>
101
+ </div>
102
+ <hr>
103
+ <div class="refsect2">
104
+ <a name="gtk-tearoff-menu-item-new"></a><h3>gtk_tearoff_menu_item_new ()</h3>
105
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_tearoff_menu_item_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
106
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
107
+ <h3 class="title">Warning</h3>
108
+ <p><code class="literal">gtk_tearoff_menu_item_new</code> has been deprecated since version 3.4 and should not be used in newly-written code. <a class="link" href="GtkTearoffMenuItem.html" title="GtkTearoffMenuItem"><span class="type">GtkTearoffMenuItem</span></a> is deprecated and should not be
109
+ used in newly written code.</p>
110
+ </div>
111
+ <p>
112
+ Creates a new <a class="link" href="GtkTearoffMenuItem.html" title="GtkTearoffMenuItem"><span class="type">GtkTearoffMenuItem</span></a>.
113
+ </p>
114
+ <div class="variablelist"><table border="0" class="variablelist">
115
+ <colgroup>
116
+ <col align="left" valign="top">
117
+ <col>
118
+ </colgroup>
119
+ <tbody><tr>
120
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
121
+ <td>a new <a class="link" href="GtkTearoffMenuItem.html" title="GtkTearoffMenuItem"><span class="type">GtkTearoffMenuItem</span></a>.</td>
122
+ </tr></tbody>
123
+ </table></div>
124
+ </div>
125
+ </div>
126
+ <div class="refsect1">
127
+ <a name="GtkTearoffMenuItem.see-also"></a><h2>See Also</h2>
128
+ <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>
129
+ </div>
130
+ </div>
131
+ <div class="footer">
132
+ <hr>
133
+ Generated by GTK-Doc V1.18.1</div>
134
+ </body>
135
+ </html>
@@ -0,0 +1,3895 @@
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.78.0">
7
+ <link rel="home" href="index.html" title="GTK+ 3 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.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="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+ 3 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
+ <span class="returnvalue">gint</span> <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
+ <span class="returnvalue">gint</span> <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 <span class="type">gchar</span> *text</code></em>,
57
+ <em class="parameter"><code><span class="type">gint</span> 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 <span class="type">gchar</span> *text</code></em>,
60
+ <em class="parameter"><code><span class="type">gint</span> len</code></em>);
61
+ <span class="returnvalue">gboolean</span> <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 <span class="type">gchar</span> *text</code></em>,
64
+ <em class="parameter"><code><span class="type">gint</span> len</code></em>,
65
+ <em class="parameter"><code><span class="type">gboolean</span> default_editable</code></em>);
66
+ <span class="returnvalue">gboolean</span> <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 <span class="type">gchar</span> *text</code></em>,
69
+ <em class="parameter"><code><span class="type">gint</span> len</code></em>,
70
+ <em class="parameter"><code><span class="type">gboolean</span> 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
+ <span class="returnvalue">gboolean</span> <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><span class="type">gboolean</span> 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 <span class="type">gchar</span> *text</code></em>,
84
+ <em class="parameter"><code><span class="type">gint</span> 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 <span class="type">gchar</span> *text</code></em>,
91
+ <em class="parameter"><code><span class="type">gint</span> len</code></em>,
92
+ <em class="parameter"><code>const <span class="type">gchar</span> *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
+ <span class="returnvalue">gboolean</span> <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><span class="type">gboolean</span> default_editable</code></em>);
101
+ <span class="returnvalue">gboolean</span> <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><span class="type">gboolean</span> interactive</code></em>,
104
+ <em class="parameter"><code><span class="type">gboolean</span> 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 <span class="type">gchar</span> *text</code></em>,
107
+ <em class="parameter"><code><span class="type">gint</span> len</code></em>);
108
+ <span class="returnvalue">gchar</span> * <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><span class="type">gboolean</span> include_hidden_chars</code></em>);
112
+ <span class="returnvalue">gchar</span> * <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><span class="type">gboolean</span> 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 <span class="type">gchar</span> *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><span class="type">gboolean</span> 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 <span class="type">gchar</span> *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 <span class="type">gchar</span> *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 <span class="type">gchar</span> *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
+ <span class="returnvalue">gboolean</span> <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 <span class="type">gchar</span> *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 <span class="type">gchar</span> *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 <span class="type">gchar</span> *tag_name</code></em>,
173
+ <em class="parameter"><code>const <span class="type">gchar</span> *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><span class="type">gint</span> line_number</code></em>,
179
+ <em class="parameter"><code><span class="type">gint</span> 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><span class="type">gint</span> 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><span class="type">gint</span> 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><span class="type">gint</span> line_number</code></em>,
190
+ <em class="parameter"><code><span class="type">gint</span> 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
+ <span class="returnvalue">gboolean</span> <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><span class="type">gboolean</span> setting</code></em>);
208
+ <span class="returnvalue">gboolean</span> <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><span class="type">gboolean</span> interactive</code></em>,
210
+ <em class="parameter"><code><span class="type">gboolean</span> 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="gtk3-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><span class="type">gboolean</span> 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="gtk3-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="gtk3-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
219
+ <em class="parameter"><code><span class="type">gboolean</span> default_editable</code></em>);
220
+ <span class="returnvalue">gboolean</span> <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="gtk3-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="gtk3-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
+ <span class="returnvalue">gboolean</span> (<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 <span class="type">guint8</span> *data</code></em>,
238
+ <em class="parameter"><code><span class="type">gsize</span> length</code></em>,
239
+ <em class="parameter"><code><span class="type">gboolean</span> create_tags</code></em>,
240
+ <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
241
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
242
+ <span class="returnvalue">gboolean</span> <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="../gdk3/gdk3-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 <span class="type">guint8</span> *data</code></em>,
247
+ <em class="parameter"><code><span class="type">gsize</span> length</code></em>,
248
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);
249
+ <span class="returnvalue">gboolean</span> <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="../gdk3/gdk3-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="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
255
+ <em class="parameter"><code><span class="type">gboolean</span> can_create_tags</code></em>);
256
+ <a class="link" href="gtk3-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="../gdk3/gdk3-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><span class="type">gint</span> *n_formats</code></em>);
261
+ <a class="link" href="gtk3-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="../gdk3/gdk3-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><span class="type">gint</span> *n_formats</code></em>);
266
+ <a href="../gdk3/gdk3-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 <span class="type">gchar</span> *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><span class="type">gpointer</span> user_data</code></em>,
271
+ <em class="parameter"><code><span class="type">GDestroyNotify</span> user_data_destroy</code></em>);
272
+ <a href="../gdk3/gdk3-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 <span class="type">gchar</span> *tagset_name</code></em>);
275
+ <a href="../gdk3/gdk3-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 <span class="type">gchar</span> *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><span class="type">gpointer</span> user_data</code></em>,
280
+ <em class="parameter"><code><span class="type">GDestroyNotify</span> user_data_destroy</code></em>);
281
+ <a href="../gdk3/gdk3-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 <span class="type">gchar</span> *tagset_name</code></em>);
284
+ <span class="returnvalue">guint8</span> * (<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><span class="type">gsize</span> *length</code></em>,
289
+ <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
290
+ <span class="returnvalue">guint8</span> * <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="../gdk3/gdk3-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><span class="type">gsize</span> *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="../gdk3/gdk3-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="../gdk3/gdk3-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
+ GObject
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="gtk3-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>" <span class="type">gint</span> : Read
316
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer--has-selection" title='The "has-selection" property'>has-selection</a>" <span class="type">gboolean</span> : 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="gtk3-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>" <span class="type">gchar</span>* : 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>" : <code class="literal">Run Last</code>
326
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-begin-user-action" title='The "begin-user-action" signal'>begin-user-action</a>" : <code class="literal">Run Last</code>
327
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-changed" title='The "changed" signal'>changed</a>" : <code class="literal">Run Last</code>
328
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-delete-range" title='The "delete-range" signal'>delete-range</a>" : <code class="literal">Run Last</code>
329
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-end-user-action" title='The "end-user-action" signal'>end-user-action</a>" : <code class="literal">Run Last</code>
330
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-insert-child-anchor" title='The "insert-child-anchor" signal'>insert-child-anchor</a>" : <code class="literal">Run Last</code>
331
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-insert-pixbuf" title='The "insert-pixbuf" signal'>insert-pixbuf</a>" : <code class="literal">Run Last</code>
332
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-insert-text" title='The "insert-text" signal'>insert-text</a>" : <code class="literal">Run Last</code>
333
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-mark-deleted" title='The "mark-deleted" signal'>mark-deleted</a>" : <code class="literal">Run Last</code>
334
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-mark-set" title='The "mark-set" signal'>mark-set</a>" : <code class="literal">Run Last</code>
335
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-modified-changed" title='The "modified-changed" signal'>modified-changed</a>" : <code class="literal">Run Last</code>
336
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-paste-done" title='The "paste-done" signal'>paste-done</a>" : <code class="literal">Run Last</code>
337
+ "<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-remove-tag" title='The "remove-tag" signal'>remove-tag</a>" : <code class="literal">Run Last</code>
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
+ </div>
348
+ <div class="refsect1">
349
+ <a name="GtkTextBuffer.details"></a><h2>Details</h2>
350
+ <div class="refsect2">
351
+ <a name="GtkTextBuffer-struct"></a><h3>GtkTextBuffer</h3>
352
+ <pre class="programlisting">typedef struct _GtkTextBuffer GtkTextBuffer;</pre>
353
+ </div>
354
+ <hr>
355
+ <div class="refsect2">
356
+ <a name="gtk-text-buffer-new"></a><h3>gtk_text_buffer_new ()</h3>
357
+ <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>
358
+ <p>
359
+ Creates a new text buffer.
360
+ </p>
361
+ <div class="variablelist"><table border="0" class="variablelist">
362
+ <colgroup>
363
+ <col align="left" valign="top">
364
+ <col>
365
+ </colgroup>
366
+ <tbody>
367
+ <tr>
368
+ <td><p><span class="term"><em class="parameter"><code>table</code></em> :</span></p></td>
369
+ <td>a tag table, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.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>
370
+ </td>
371
+ </tr>
372
+ <tr>
373
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
374
+ <td>a new text buffer</td>
375
+ </tr>
376
+ </tbody>
377
+ </table></div>
378
+ </div>
379
+ <hr>
380
+ <div class="refsect2">
381
+ <a name="gtk-text-buffer-get-line-count"></a><h3>gtk_text_buffer_get_line_count ()</h3>
382
+ <pre class="programlisting"><span class="returnvalue">gint</span> 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>
383
+ <p>
384
+ Obtains the number of lines in the buffer. This value is cached, so
385
+ the function is very fast.
386
+ </p>
387
+ <div class="variablelist"><table border="0" class="variablelist">
388
+ <colgroup>
389
+ <col align="left" valign="top">
390
+ <col>
391
+ </colgroup>
392
+ <tbody>
393
+ <tr>
394
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
395
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
396
+ </td>
397
+ </tr>
398
+ <tr>
399
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
400
+ <td>number of lines in the buffer</td>
401
+ </tr>
402
+ </tbody>
403
+ </table></div>
404
+ </div>
405
+ <hr>
406
+ <div class="refsect2">
407
+ <a name="gtk-text-buffer-get-char-count"></a><h3>gtk_text_buffer_get_char_count ()</h3>
408
+ <pre class="programlisting"><span class="returnvalue">gint</span> 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>
409
+ <p>
410
+ Gets the number of characters in the buffer; note that characters
411
+ and bytes are not the same, you can't e.g. expect the contents of
412
+ the buffer in string form to be this many bytes long. The character
413
+ count is cached, so this function is very fast.
414
+ </p>
415
+ <div class="variablelist"><table border="0" class="variablelist">
416
+ <colgroup>
417
+ <col align="left" valign="top">
418
+ <col>
419
+ </colgroup>
420
+ <tbody>
421
+ <tr>
422
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
423
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
424
+ </td>
425
+ </tr>
426
+ <tr>
427
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
428
+ <td>number of characters in the buffer</td>
429
+ </tr>
430
+ </tbody>
431
+ </table></div>
432
+ </div>
433
+ <hr>
434
+ <div class="refsect2">
435
+ <a name="gtk-text-buffer-get-tag-table"></a><h3>gtk_text_buffer_get_tag_table ()</h3>
436
+ <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>
437
+ <p>
438
+ Get the <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> associated with this buffer.
439
+ </p>
440
+ <div class="variablelist"><table border="0" class="variablelist">
441
+ <colgroup>
442
+ <col align="left" valign="top">
443
+ <col>
444
+ </colgroup>
445
+ <tbody>
446
+ <tr>
447
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
448
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
449
+ </td>
450
+ </tr>
451
+ <tr>
452
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
453
+ <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>
454
+ </td>
455
+ </tr>
456
+ </tbody>
457
+ </table></div>
458
+ </div>
459
+ <hr>
460
+ <div class="refsect2">
461
+ <a name="gtk-text-buffer-insert"></a><h3>gtk_text_buffer_insert ()</h3>
462
+ <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>,
463
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
464
+ <em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>,
465
+ <em class="parameter"><code><span class="type">gint</span> len</code></em>);</pre>
466
+ <p>
467
+ 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,
468
+ <em class="parameter"><code>text</code></em> must be nul-terminated and will be inserted in its
469
+ entirety. Emits the "insert-text" signal; insertion actually occurs
470
+ in the default handler for the signal. <em class="parameter"><code>iter</code></em> is invalidated when
471
+ insertion occurs (because the buffer contents change), but the
472
+ default signal handler revalidates it to point to the end of the
473
+ inserted text.
474
+ </p>
475
+ <div class="variablelist"><table border="0" class="variablelist">
476
+ <colgroup>
477
+ <col align="left" valign="top">
478
+ <col>
479
+ </colgroup>
480
+ <tbody>
481
+ <tr>
482
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
483
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
484
+ </td>
485
+ </tr>
486
+ <tr>
487
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
488
+ <td>a position in the buffer</td>
489
+ </tr>
490
+ <tr>
491
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
492
+ <td>text in UTF-8 format</td>
493
+ </tr>
494
+ <tr>
495
+ <td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
496
+ <td>length of text in bytes, or -1</td>
497
+ </tr>
498
+ </tbody>
499
+ </table></div>
500
+ </div>
501
+ <hr>
502
+ <div class="refsect2">
503
+ <a name="gtk-text-buffer-insert-at-cursor"></a><h3>gtk_text_buffer_insert_at_cursor ()</h3>
504
+ <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>,
505
+ <em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>,
506
+ <em class="parameter"><code><span class="type">gint</span> len</code></em>);</pre>
507
+ <p>
508
+ 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
509
+ cursor position as the insertion point.
510
+ </p>
511
+ <div class="variablelist"><table border="0" class="variablelist">
512
+ <colgroup>
513
+ <col align="left" valign="top">
514
+ <col>
515
+ </colgroup>
516
+ <tbody>
517
+ <tr>
518
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
519
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
520
+ </td>
521
+ </tr>
522
+ <tr>
523
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
524
+ <td>text in UTF-8 format</td>
525
+ </tr>
526
+ <tr>
527
+ <td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
528
+ <td>length of text, in bytes</td>
529
+ </tr>
530
+ </tbody>
531
+ </table></div>
532
+ </div>
533
+ <hr>
534
+ <div class="refsect2">
535
+ <a name="gtk-text-buffer-insert-interactive"></a><h3>gtk_text_buffer_insert_interactive ()</h3>
536
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> 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>,
537
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
538
+ <em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>,
539
+ <em class="parameter"><code><span class="type">gint</span> len</code></em>,
540
+ <em class="parameter"><code><span class="type">gboolean</span> default_editable</code></em>);</pre>
541
+ <p>
542
+ 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
543
+ <em class="parameter"><code>iter</code></em> is at a non-editable location in the buffer. Usually you
544
+ want to prevent insertions at ineditable locations if the insertion
545
+ results from a user action (is interactive).
546
+ </p>
547
+ <p>
548
+ <em class="parameter"><code>default_editable</code></em> indicates the editability of text that doesn't
549
+ have a tag affecting editability applied to it. Typically the
550
+ 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.
551
+ </p>
552
+ <div class="variablelist"><table border="0" class="variablelist">
553
+ <colgroup>
554
+ <col align="left" valign="top">
555
+ <col>
556
+ </colgroup>
557
+ <tbody>
558
+ <tr>
559
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
560
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
561
+ </td>
562
+ </tr>
563
+ <tr>
564
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
565
+ <td>a position in <em class="parameter"><code>buffer</code></em>
566
+ </td>
567
+ </tr>
568
+ <tr>
569
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
570
+ <td>some UTF-8 text</td>
571
+ </tr>
572
+ <tr>
573
+ <td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
574
+ <td>length of text in bytes, or -1</td>
575
+ </tr>
576
+ <tr>
577
+ <td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
578
+ <td>default editability of buffer</td>
579
+ </tr>
580
+ <tr>
581
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
582
+ <td>whether text was actually inserted</td>
583
+ </tr>
584
+ </tbody>
585
+ </table></div>
586
+ </div>
587
+ <hr>
588
+ <div class="refsect2">
589
+ <a name="gtk-text-buffer-insert-interactive-at-cursor"></a><h3>gtk_text_buffer_insert_interactive_at_cursor ()</h3>
590
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_buffer_insert_interactive_at_cursor
591
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
592
+ <em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>,
593
+ <em class="parameter"><code><span class="type">gint</span> len</code></em>,
594
+ <em class="parameter"><code><span class="type">gboolean</span> default_editable</code></em>);</pre>
595
+ <p>
596
+ 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
597
+ position.
598
+ </p>
599
+ <p>
600
+ <em class="parameter"><code>default_editable</code></em> indicates the editability of text that doesn't
601
+ have a tag affecting editability applied to it. Typically the
602
+ 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.
603
+ </p>
604
+ <div class="variablelist"><table border="0" class="variablelist">
605
+ <colgroup>
606
+ <col align="left" valign="top">
607
+ <col>
608
+ </colgroup>
609
+ <tbody>
610
+ <tr>
611
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
612
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
613
+ </td>
614
+ </tr>
615
+ <tr>
616
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
617
+ <td>text in UTF-8 format</td>
618
+ </tr>
619
+ <tr>
620
+ <td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
621
+ <td>length of text in bytes, or -1</td>
622
+ </tr>
623
+ <tr>
624
+ <td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
625
+ <td>default editability of buffer</td>
626
+ </tr>
627
+ <tr>
628
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
629
+ <td>whether text was actually inserted</td>
630
+ </tr>
631
+ </tbody>
632
+ </table></div>
633
+ </div>
634
+ <hr>
635
+ <div class="refsect2">
636
+ <a name="gtk-text-buffer-insert-range"></a><h3>gtk_text_buffer_insert_range ()</h3>
637
+ <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>,
638
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
639
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
640
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
641
+ <p>
642
+ Copies text, tags, and pixbufs between <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> (the order
643
+ 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>.
644
+ Used instead of simply getting/inserting text because it preserves
645
+ 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
646
+ <em class="parameter"><code>buffer</code></em>, the two buffers must share the same tag table.
647
+ </p>
648
+ <p>
649
+ Implemented via emissions of the insert_text and apply_tag signals,
650
+ so expect those.
651
+ </p>
652
+ <div class="variablelist"><table border="0" class="variablelist">
653
+ <colgroup>
654
+ <col align="left" valign="top">
655
+ <col>
656
+ </colgroup>
657
+ <tbody>
658
+ <tr>
659
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
660
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
661
+ </td>
662
+ </tr>
663
+ <tr>
664
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
665
+ <td>a position in <em class="parameter"><code>buffer</code></em>
666
+ </td>
667
+ </tr>
668
+ <tr>
669
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
670
+ <td>a position in a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
671
+ </td>
672
+ </tr>
673
+ <tr>
674
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
675
+ <td>another position in the same buffer as <em class="parameter"><code>start</code></em>
676
+ </td>
677
+ </tr>
678
+ </tbody>
679
+ </table></div>
680
+ </div>
681
+ <hr>
682
+ <div class="refsect2">
683
+ <a name="gtk-text-buffer-insert-range-interactive"></a><h3>gtk_text_buffer_insert_range_interactive ()</h3>
684
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_buffer_insert_range_interactive
685
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
686
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
687
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
688
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
689
+ <em class="parameter"><code><span class="type">gboolean</span> default_editable</code></em>);</pre>
690
+ <p>
691
+ 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
692
+ insertion point isn't editable. The <em class="parameter"><code>default_editable</code></em> parameter
693
+ indicates whether the text is editable at <em class="parameter"><code>iter</code></em> if no tags
694
+ enclosing <em class="parameter"><code>iter</code></em> affect editability. Typically the result of
695
+ <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.
696
+ </p>
697
+ <div class="variablelist"><table border="0" class="variablelist">
698
+ <colgroup>
699
+ <col align="left" valign="top">
700
+ <col>
701
+ </colgroup>
702
+ <tbody>
703
+ <tr>
704
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
705
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
706
+ </td>
707
+ </tr>
708
+ <tr>
709
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
710
+ <td>a position in <em class="parameter"><code>buffer</code></em>
711
+ </td>
712
+ </tr>
713
+ <tr>
714
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
715
+ <td>a position in a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
716
+ </td>
717
+ </tr>
718
+ <tr>
719
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
720
+ <td>another position in the same buffer as <em class="parameter"><code>start</code></em>
721
+ </td>
722
+ </tr>
723
+ <tr>
724
+ <td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
725
+ <td>default editability of the buffer</td>
726
+ </tr>
727
+ <tr>
728
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
729
+ <td>whether an insertion was possible at <em class="parameter"><code>iter</code></em>
730
+ </td>
731
+ </tr>
732
+ </tbody>
733
+ </table></div>
734
+ </div>
735
+ <hr>
736
+ <div class="refsect2">
737
+ <a name="gtk-text-buffer-insert-with-tags"></a><h3>gtk_text_buffer_insert_with_tags ()</h3>
738
+ <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>,
739
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
740
+ <em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>,
741
+ <em class="parameter"><code><span class="type">gint</span> len</code></em>,
742
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *first_tag</code></em>,
743
+ <em class="parameter"><code>...</code></em>);</pre>
744
+ <p>
745
+ 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
746
+ the newly-inserted text. The last tag specified must be <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> to
747
+ 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>,
748
+ 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;
749
+ <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.
750
+ </p>
751
+ <div class="variablelist"><table border="0" class="variablelist">
752
+ <colgroup>
753
+ <col align="left" valign="top">
754
+ <col>
755
+ </colgroup>
756
+ <tbody>
757
+ <tr>
758
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
759
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
760
+ </td>
761
+ </tr>
762
+ <tr>
763
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
764
+ <td>an iterator in <em class="parameter"><code>buffer</code></em>
765
+ </td>
766
+ </tr>
767
+ <tr>
768
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
769
+ <td>UTF-8 text</td>
770
+ </tr>
771
+ <tr>
772
+ <td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
773
+ <td>length of <em class="parameter"><code>text</code></em>, or -1</td>
774
+ </tr>
775
+ <tr>
776
+ <td><p><span class="term"><em class="parameter"><code>first_tag</code></em> :</span></p></td>
777
+ <td>first tag to apply to <em class="parameter"><code>text</code></em>
778
+ </td>
779
+ </tr>
780
+ <tr>
781
+ <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
782
+ <td>
783
+ <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>-terminated list of tags to apply</td>
784
+ </tr>
785
+ </tbody>
786
+ </table></div>
787
+ </div>
788
+ <hr>
789
+ <div class="refsect2">
790
+ <a name="gtk-text-buffer-insert-with-tags-by-name"></a><h3>gtk_text_buffer_insert_with_tags_by_name ()</h3>
791
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_insert_with_tags_by_name
792
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
793
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
794
+ <em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>,
795
+ <em class="parameter"><code><span class="type">gint</span> len</code></em>,
796
+ <em class="parameter"><code>const <span class="type">gchar</span> *first_tag_name</code></em>,
797
+ <em class="parameter"><code>...</code></em>);</pre>
798
+ <p>
799
+ 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
800
+ to pass in tag names instead of tag objects.
801
+ </p>
802
+ <div class="variablelist"><table border="0" class="variablelist">
803
+ <colgroup>
804
+ <col align="left" valign="top">
805
+ <col>
806
+ </colgroup>
807
+ <tbody>
808
+ <tr>
809
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
810
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
811
+ </td>
812
+ </tr>
813
+ <tr>
814
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
815
+ <td>position in <em class="parameter"><code>buffer</code></em>
816
+ </td>
817
+ </tr>
818
+ <tr>
819
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
820
+ <td>UTF-8 text</td>
821
+ </tr>
822
+ <tr>
823
+ <td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
824
+ <td>length of <em class="parameter"><code>text</code></em>, or -1</td>
825
+ </tr>
826
+ <tr>
827
+ <td><p><span class="term"><em class="parameter"><code>first_tag_name</code></em> :</span></p></td>
828
+ <td>name of a tag to apply to <em class="parameter"><code>text</code></em>
829
+ </td>
830
+ </tr>
831
+ <tr>
832
+ <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
833
+ <td>more tag names</td>
834
+ </tr>
835
+ </tbody>
836
+ </table></div>
837
+ </div>
838
+ <hr>
839
+ <div class="refsect2">
840
+ <a name="gtk-text-buffer-delete"></a><h3>gtk_text_buffer_delete ()</h3>
841
+ <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>,
842
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
843
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
844
+ <p>
845
+ 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>
846
+ 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
847
+ them. This function actually emits the "delete-range" signal, and
848
+ the default handler of that signal deletes the text. Because the
849
+ buffer is modified, all outstanding iterators become invalid after
850
+ calling this function; however, the <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> will be
851
+ re-initialized to point to the location where text was deleted.
852
+ </p>
853
+ <div class="variablelist"><table border="0" class="variablelist">
854
+ <colgroup>
855
+ <col align="left" valign="top">
856
+ <col>
857
+ </colgroup>
858
+ <tbody>
859
+ <tr>
860
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
861
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
862
+ </td>
863
+ </tr>
864
+ <tr>
865
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
866
+ <td>a position in <em class="parameter"><code>buffer</code></em>
867
+ </td>
868
+ </tr>
869
+ <tr>
870
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
871
+ <td>another position in <em class="parameter"><code>buffer</code></em>
872
+ </td>
873
+ </tr>
874
+ </tbody>
875
+ </table></div>
876
+ </div>
877
+ <hr>
878
+ <div class="refsect2">
879
+ <a name="gtk-text-buffer-delete-interactive"></a><h3>gtk_text_buffer_delete_interactive ()</h3>
880
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> 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>,
881
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start_iter</code></em>,
882
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end_iter</code></em>,
883
+ <em class="parameter"><code><span class="type">gboolean</span> default_editable</code></em>);</pre>
884
+ <p>
885
+ Deletes all <span class="emphasis"><em>editable</em></span> text in the given range.
886
+ 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
887
+ [<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
888
+ the location of the last deleted range, or left untouched if
889
+ no text was deleted.
890
+ </p>
891
+ <div class="variablelist"><table border="0" class="variablelist">
892
+ <colgroup>
893
+ <col align="left" valign="top">
894
+ <col>
895
+ </colgroup>
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>start_iter</code></em> :</span></p></td>
904
+ <td>start of range to delete</td>
905
+ </tr>
906
+ <tr>
907
+ <td><p><span class="term"><em class="parameter"><code>end_iter</code></em> :</span></p></td>
908
+ <td>end of range</td>
909
+ </tr>
910
+ <tr>
911
+ <td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
912
+ <td>whether the buffer is editable by default</td>
913
+ </tr>
914
+ <tr>
915
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
916
+ <td>whether some text was actually deleted</td>
917
+ </tr>
918
+ </tbody>
919
+ </table></div>
920
+ </div>
921
+ <hr>
922
+ <div class="refsect2">
923
+ <a name="gtk-text-buffer-backspace"></a><h3>gtk_text_buffer_backspace ()</h3>
924
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> 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>,
925
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
926
+ <em class="parameter"><code><span class="type">gboolean</span> interactive</code></em>,
927
+ <em class="parameter"><code><span class="type">gboolean</span> default_editable</code></em>);</pre>
928
+ <p>
929
+ Performs the appropriate action as if the user hit the delete
930
+ key with the cursor at the position specified by <em class="parameter"><code>iter</code></em>. In the
931
+ normal case a single character will be deleted, but when
932
+ combining accents are involved, more than one character can
933
+ be deleted, and when precomposed character and accent combinations
934
+ are involved, less than one character will be deleted.
935
+ </p>
936
+ <p>
937
+ Because the buffer is modified, all outstanding iterators become
938
+ invalid after calling this function; however, the <em class="parameter"><code>iter</code></em> will be
939
+ re-initialized to point to the location where text was deleted.
940
+ </p>
941
+ <div class="variablelist"><table border="0" class="variablelist">
942
+ <colgroup>
943
+ <col align="left" valign="top">
944
+ <col>
945
+ </colgroup>
946
+ <tbody>
947
+ <tr>
948
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
949
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
950
+ </td>
951
+ </tr>
952
+ <tr>
953
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
954
+ <td>a position in <em class="parameter"><code>buffer</code></em>
955
+ </td>
956
+ </tr>
957
+ <tr>
958
+ <td><p><span class="term"><em class="parameter"><code>interactive</code></em> :</span></p></td>
959
+ <td>whether the deletion is caused by user interaction</td>
960
+ </tr>
961
+ <tr>
962
+ <td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
963
+ <td>whether the buffer is editable by default</td>
964
+ </tr>
965
+ <tr>
966
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
967
+ <td>
968
+ <code class="literal">TRUE</code> if the buffer was modified</td>
969
+ </tr>
970
+ </tbody>
971
+ </table></div>
972
+ <p class="since">Since 2.6</p>
973
+ </div>
974
+ <hr>
975
+ <div class="refsect2">
976
+ <a name="gtk-text-buffer-set-text"></a><h3>gtk_text_buffer_set_text ()</h3>
977
+ <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>,
978
+ <em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>,
979
+ <em class="parameter"><code><span class="type">gint</span> len</code></em>);</pre>
980
+ <p>
981
+ Deletes current contents of <em class="parameter"><code>buffer</code></em>, and inserts <em class="parameter"><code>text</code></em> instead. If
982
+ <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.
983
+ </p>
984
+ <div class="variablelist"><table border="0" class="variablelist">
985
+ <colgroup>
986
+ <col align="left" valign="top">
987
+ <col>
988
+ </colgroup>
989
+ <tbody>
990
+ <tr>
991
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
992
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
993
+ </td>
994
+ </tr>
995
+ <tr>
996
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
997
+ <td>UTF-8 text to insert</td>
998
+ </tr>
999
+ <tr>
1000
+ <td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
1001
+ <td>length of <em class="parameter"><code>text</code></em> in bytes</td>
1002
+ </tr>
1003
+ </tbody>
1004
+ </table></div>
1005
+ </div>
1006
+ <hr>
1007
+ <div class="refsect2">
1008
+ <a name="gtk-text-buffer-get-text"></a><h3>gtk_text_buffer_get_text ()</h3>
1009
+ <pre class="programlisting"><span class="returnvalue">gchar</span> * 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>,
1010
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
1011
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
1012
+ <em class="parameter"><code><span class="type">gboolean</span> include_hidden_chars</code></em>);</pre>
1013
+ <p>
1014
+ Returns the text in the range [<em class="parameter"><code>start</code></em>,<em class="parameter"><code>end</code></em>). Excludes undisplayed
1015
+ text (text marked with tags that set the invisibility attribute) if
1016
+ <em class="parameter"><code>include_hidden_chars</code></em> is <code class="literal">FALSE</code>. Does not include characters
1017
+ representing embedded images, so byte and character indexes into
1018
+ the returned string do <span class="emphasis"><em>not</em></span> correspond to byte
1019
+ and character indexes into the buffer. Contrast with
1020
+ <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>.
1021
+ </p>
1022
+ <div class="variablelist"><table border="0" class="variablelist">
1023
+ <colgroup>
1024
+ <col align="left" valign="top">
1025
+ <col>
1026
+ </colgroup>
1027
+ <tbody>
1028
+ <tr>
1029
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1030
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1031
+ </td>
1032
+ </tr>
1033
+ <tr>
1034
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
1035
+ <td>start of a range</td>
1036
+ </tr>
1037
+ <tr>
1038
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
1039
+ <td>end of a range</td>
1040
+ </tr>
1041
+ <tr>
1042
+ <td><p><span class="term"><em class="parameter"><code>include_hidden_chars</code></em> :</span></p></td>
1043
+ <td>whether to include invisible text</td>
1044
+ </tr>
1045
+ <tr>
1046
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1047
+ <td>an allocated UTF-8 string</td>
1048
+ </tr>
1049
+ </tbody>
1050
+ </table></div>
1051
+ </div>
1052
+ <hr>
1053
+ <div class="refsect2">
1054
+ <a name="gtk-text-buffer-get-slice"></a><h3>gtk_text_buffer_get_slice ()</h3>
1055
+ <pre class="programlisting"><span class="returnvalue">gchar</span> * 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>,
1056
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
1057
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
1058
+ <em class="parameter"><code><span class="type">gboolean</span> include_hidden_chars</code></em>);</pre>
1059
+ <p>
1060
+ Returns the text in the range [<em class="parameter"><code>start</code></em>,<em class="parameter"><code>end</code></em>). Excludes undisplayed
1061
+ text (text marked with tags that set the invisibility attribute) if
1062
+ <em class="parameter"><code>include_hidden_chars</code></em> is <code class="literal">FALSE</code>. The returned string includes a
1063
+ 0xFFFC character whenever the buffer contains
1064
+ embedded images, so byte and character indexes into
1065
+ the returned string <span class="emphasis"><em>do</em></span> correspond to byte
1066
+ and character indexes into the buffer. Contrast with
1067
+ <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
1068
+ text as well, so it is not a reliable indicator that a pixbuf or
1069
+ widget is in the buffer.
1070
+ </p>
1071
+ <div class="variablelist"><table border="0" class="variablelist">
1072
+ <colgroup>
1073
+ <col align="left" valign="top">
1074
+ <col>
1075
+ </colgroup>
1076
+ <tbody>
1077
+ <tr>
1078
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1079
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1080
+ </td>
1081
+ </tr>
1082
+ <tr>
1083
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
1084
+ <td>start of a range</td>
1085
+ </tr>
1086
+ <tr>
1087
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
1088
+ <td>end of a range</td>
1089
+ </tr>
1090
+ <tr>
1091
+ <td><p><span class="term"><em class="parameter"><code>include_hidden_chars</code></em> :</span></p></td>
1092
+ <td>whether to include invisible text</td>
1093
+ </tr>
1094
+ <tr>
1095
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1096
+ <td>an allocated UTF-8 string</td>
1097
+ </tr>
1098
+ </tbody>
1099
+ </table></div>
1100
+ </div>
1101
+ <hr>
1102
+ <div class="refsect2">
1103
+ <a name="gtk-text-buffer-insert-pixbuf"></a><h3>gtk_text_buffer_insert_pixbuf ()</h3>
1104
+ <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>,
1105
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1106
+ <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>
1107
+ <p>
1108
+ Inserts an image into the text buffer at <em class="parameter"><code>iter</code></em>. The image will be
1109
+ counted as one character in character counts, and when obtaining
1110
+ the buffer contents as a string, will be represented by the Unicode
1111
+ "object replacement character" 0xFFFC. Note that the "slice"
1112
+ variants for obtaining portions of the buffer as a string include
1113
+ this character for pixbufs, but the "text" variants do
1114
+ 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
1115
+ <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>.
1116
+ </p>
1117
+ <div class="variablelist"><table border="0" class="variablelist">
1118
+ <colgroup>
1119
+ <col align="left" valign="top">
1120
+ <col>
1121
+ </colgroup>
1122
+ <tbody>
1123
+ <tr>
1124
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1125
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1126
+ </td>
1127
+ </tr>
1128
+ <tr>
1129
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1130
+ <td>location to insert the pixbuf</td>
1131
+ </tr>
1132
+ <tr>
1133
+ <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
1134
+ <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>
1135
+ </td>
1136
+ </tr>
1137
+ </tbody>
1138
+ </table></div>
1139
+ </div>
1140
+ <hr>
1141
+ <div class="refsect2">
1142
+ <a name="gtk-text-buffer-insert-child-anchor"></a><h3>gtk_text_buffer_insert_child_anchor ()</h3>
1143
+ <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>,
1144
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1145
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);</pre>
1146
+ <p>
1147
+ Inserts a child widget anchor into the text buffer at <em class="parameter"><code>iter</code></em>. The
1148
+ anchor will be counted as one character in character counts, and
1149
+ when obtaining the buffer contents as a string, will be represented
1150
+ by the Unicode "object replacement character" 0xFFFC. Note that the
1151
+ "slice" variants for obtaining portions of the buffer as a string
1152
+ include this character for child anchors, but the "text" variants do
1153
+ 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
1154
+ <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
1155
+ <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
1156
+ alternative to this function. The buffer will add a reference to
1157
+ the anchor, so you can unref it after insertion.
1158
+ </p>
1159
+ <div class="variablelist"><table border="0" class="variablelist">
1160
+ <colgroup>
1161
+ <col align="left" valign="top">
1162
+ <col>
1163
+ </colgroup>
1164
+ <tbody>
1165
+ <tr>
1166
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1167
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1168
+ </td>
1169
+ </tr>
1170
+ <tr>
1171
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1172
+ <td>location to insert the anchor</td>
1173
+ </tr>
1174
+ <tr>
1175
+ <td><p><span class="term"><em class="parameter"><code>anchor</code></em> :</span></p></td>
1176
+ <td>a <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a>
1177
+ </td>
1178
+ </tr>
1179
+ </tbody>
1180
+ </table></div>
1181
+ </div>
1182
+ <hr>
1183
+ <div class="refsect2">
1184
+ <a name="gtk-text-buffer-create-child-anchor"></a><h3>gtk_text_buffer_create_child_anchor ()</h3>
1185
+ <pre class="programlisting"><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="returnvalue">GtkTextChildAnchor</span></a> * gtk_text_buffer_create_child_anchor
1186
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1187
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1188
+ <p>
1189
+ This is a convenience function which simply creates a child anchor
1190
+ 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
1191
+ 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
1192
+ owned by the buffer; no reference count is returned to
1193
+ 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>.
1194
+ </p>
1195
+ <div class="variablelist"><table border="0" class="variablelist">
1196
+ <colgroup>
1197
+ <col align="left" valign="top">
1198
+ <col>
1199
+ </colgroup>
1200
+ <tbody>
1201
+ <tr>
1202
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1203
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1204
+ </td>
1205
+ </tr>
1206
+ <tr>
1207
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1208
+ <td>location in the buffer</td>
1209
+ </tr>
1210
+ <tr>
1211
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1212
+ <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>
1213
+ </td>
1214
+ </tr>
1215
+ </tbody>
1216
+ </table></div>
1217
+ </div>
1218
+ <hr>
1219
+ <div class="refsect2">
1220
+ <a name="gtk-text-buffer-create-mark"></a><h3>gtk_text_buffer_create_mark ()</h3>
1221
+ <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>,
1222
+ <em class="parameter"><code>const <span class="type">gchar</span> *mark_name</code></em>,
1223
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>,
1224
+ <em class="parameter"><code><span class="type">gboolean</span> left_gravity</code></em>);</pre>
1225
+ <p>
1226
+ Creates a mark at position <em class="parameter"><code>where</code></em>. If <em class="parameter"><code>mark_name</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, the mark
1227
+ is anonymous; otherwise, the mark can be retrieved by name using
1228
+ <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
1229
+ inserted at the mark's current location, the mark will be moved to
1230
+ the left of the newly-inserted text. If the mark has right gravity
1231
+ (<em class="parameter"><code>left_gravity</code></em> = <code class="literal">FALSE</code>), the mark will end up on the right of
1232
+ newly-inserted text. The standard left-to-right cursor is a mark
1233
+ with right gravity (when you type, the cursor stays on the right
1234
+ side of the text you're typing).
1235
+ </p>
1236
+ <p>
1237
+ The caller of this function does <span class="emphasis"><em>not</em></span> own a
1238
+ reference to the returned <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>, so you can ignore the
1239
+ return value if you like. Marks are owned by the buffer and go
1240
+ away when the buffer does.
1241
+ </p>
1242
+ <p>
1243
+ Emits the "mark-set" signal as notification of the mark's initial
1244
+ placement.
1245
+ </p>
1246
+ <div class="variablelist"><table border="0" class="variablelist">
1247
+ <colgroup>
1248
+ <col align="left" valign="top">
1249
+ <col>
1250
+ </colgroup>
1251
+ <tbody>
1252
+ <tr>
1253
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1254
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1255
+ </td>
1256
+ </tr>
1257
+ <tr>
1258
+ <td><p><span class="term"><em class="parameter"><code>mark_name</code></em> :</span></p></td>
1259
+ <td>name for mark, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.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>
1260
+ </td>
1261
+ </tr>
1262
+ <tr>
1263
+ <td><p><span class="term"><em class="parameter"><code>where</code></em> :</span></p></td>
1264
+ <td>location to place mark</td>
1265
+ </tr>
1266
+ <tr>
1267
+ <td><p><span class="term"><em class="parameter"><code>left_gravity</code></em> :</span></p></td>
1268
+ <td>whether the mark has left gravity</td>
1269
+ </tr>
1270
+ <tr>
1271
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1272
+ <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>
1273
+ </td>
1274
+ </tr>
1275
+ </tbody>
1276
+ </table></div>
1277
+ </div>
1278
+ <hr>
1279
+ <div class="refsect2">
1280
+ <a name="gtk-text-buffer-move-mark"></a><h3>gtk_text_buffer_move_mark ()</h3>
1281
+ <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>,
1282
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
1283
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);</pre>
1284
+ <p>
1285
+ Moves <em class="parameter"><code>mark</code></em> to the new location <em class="parameter"><code>where</code></em>. Emits the "mark-set" signal
1286
+ as notification of the move.
1287
+ </p>
1288
+ <div class="variablelist"><table border="0" class="variablelist">
1289
+ <colgroup>
1290
+ <col align="left" valign="top">
1291
+ <col>
1292
+ </colgroup>
1293
+ <tbody>
1294
+ <tr>
1295
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1296
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1297
+ </td>
1298
+ </tr>
1299
+ <tr>
1300
+ <td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
1301
+ <td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>
1302
+ </td>
1303
+ </tr>
1304
+ <tr>
1305
+ <td><p><span class="term"><em class="parameter"><code>where</code></em> :</span></p></td>
1306
+ <td>new location for <em class="parameter"><code>mark</code></em> in <em class="parameter"><code>buffer</code></em>
1307
+ </td>
1308
+ </tr>
1309
+ </tbody>
1310
+ </table></div>
1311
+ </div>
1312
+ <hr>
1313
+ <div class="refsect2">
1314
+ <a name="gtk-text-buffer-move-mark-by-name"></a><h3>gtk_text_buffer_move_mark_by_name ()</h3>
1315
+ <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>,
1316
+ <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>,
1317
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);</pre>
1318
+ <p>
1319
+ Moves the mark named <em class="parameter"><code>name</code></em> (which must exist) to location <em class="parameter"><code>where</code></em>.
1320
+ 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.
1321
+ </p>
1322
+ <div class="variablelist"><table border="0" class="variablelist">
1323
+ <colgroup>
1324
+ <col align="left" valign="top">
1325
+ <col>
1326
+ </colgroup>
1327
+ <tbody>
1328
+ <tr>
1329
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1330
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1331
+ </td>
1332
+ </tr>
1333
+ <tr>
1334
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
1335
+ <td>name of a mark</td>
1336
+ </tr>
1337
+ <tr>
1338
+ <td><p><span class="term"><em class="parameter"><code>where</code></em> :</span></p></td>
1339
+ <td>new location for mark</td>
1340
+ </tr>
1341
+ </tbody>
1342
+ </table></div>
1343
+ </div>
1344
+ <hr>
1345
+ <div class="refsect2">
1346
+ <a name="gtk-text-buffer-add-mark"></a><h3>gtk_text_buffer_add_mark ()</h3>
1347
+ <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>,
1348
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
1349
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);</pre>
1350
+ <p>
1351
+ Adds the mark at position <em class="parameter"><code>where</code></em>. The mark must not be added to
1352
+ another buffer, and if its name is not <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> then there must not
1353
+ be another mark in the buffer with the same name.
1354
+ </p>
1355
+ <p>
1356
+ Emits the "mark-set" signal as notification of the mark's initial
1357
+ placement.
1358
+ </p>
1359
+ <div class="variablelist"><table border="0" class="variablelist">
1360
+ <colgroup>
1361
+ <col align="left" valign="top">
1362
+ <col>
1363
+ </colgroup>
1364
+ <tbody>
1365
+ <tr>
1366
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1367
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1368
+ </td>
1369
+ </tr>
1370
+ <tr>
1371
+ <td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
1372
+ <td>the mark to add</td>
1373
+ </tr>
1374
+ <tr>
1375
+ <td><p><span class="term"><em class="parameter"><code>where</code></em> :</span></p></td>
1376
+ <td>location to place mark</td>
1377
+ </tr>
1378
+ </tbody>
1379
+ </table></div>
1380
+ <p class="since">Since 2.12</p>
1381
+ </div>
1382
+ <hr>
1383
+ <div class="refsect2">
1384
+ <a name="gtk-text-buffer-delete-mark"></a><h3>gtk_text_buffer_delete_mark ()</h3>
1385
+ <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>,
1386
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
1387
+ <p>
1388
+ Deletes <em class="parameter"><code>mark</code></em>, so that it's no longer located anywhere in the
1389
+ buffer. Removes the reference the buffer holds to the mark, so if
1390
+ you haven't called <code class="function">g_object_ref()</code> on the mark, it will be freed. Even
1391
+ if the mark isn't freed, most operations on <em class="parameter"><code>mark</code></em> become
1392
+ invalid, until it gets added to a buffer again with
1393
+ <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
1394
+ find out if a mark has been removed from its buffer.
1395
+ The "mark-deleted" signal will be emitted as notification after
1396
+ the mark is deleted.
1397
+ </p>
1398
+ <div class="variablelist"><table border="0" class="variablelist">
1399
+ <colgroup>
1400
+ <col align="left" valign="top">
1401
+ <col>
1402
+ </colgroup>
1403
+ <tbody>
1404
+ <tr>
1405
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1406
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1407
+ </td>
1408
+ </tr>
1409
+ <tr>
1410
+ <td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
1411
+ <td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> in <em class="parameter"><code>buffer</code></em>
1412
+ </td>
1413
+ </tr>
1414
+ </tbody>
1415
+ </table></div>
1416
+ </div>
1417
+ <hr>
1418
+ <div class="refsect2">
1419
+ <a name="gtk-text-buffer-delete-mark-by-name"></a><h3>gtk_text_buffer_delete_mark_by_name ()</h3>
1420
+ <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>,
1421
+ <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
1422
+ <p>
1423
+ Deletes the mark named <em class="parameter"><code>name</code></em>; the mark must exist. See
1424
+ <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.
1425
+ </p>
1426
+ <div class="variablelist"><table border="0" class="variablelist">
1427
+ <colgroup>
1428
+ <col align="left" valign="top">
1429
+ <col>
1430
+ </colgroup>
1431
+ <tbody>
1432
+ <tr>
1433
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1434
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1435
+ </td>
1436
+ </tr>
1437
+ <tr>
1438
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
1439
+ <td>name of a mark in <em class="parameter"><code>buffer</code></em>
1440
+ </td>
1441
+ </tr>
1442
+ </tbody>
1443
+ </table></div>
1444
+ </div>
1445
+ <hr>
1446
+ <div class="refsect2">
1447
+ <a name="gtk-text-buffer-get-mark"></a><h3>gtk_text_buffer_get_mark ()</h3>
1448
+ <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>,
1449
+ <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
1450
+ <p>
1451
+ Returns the mark named <em class="parameter"><code>name</code></em> in buffer <em class="parameter"><code>buffer</code></em>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if no such
1452
+ mark exists in the buffer.
1453
+ </p>
1454
+ <div class="variablelist"><table border="0" class="variablelist">
1455
+ <colgroup>
1456
+ <col align="left" valign="top">
1457
+ <col>
1458
+ </colgroup>
1459
+ <tbody>
1460
+ <tr>
1461
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1462
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1463
+ </td>
1464
+ </tr>
1465
+ <tr>
1466
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
1467
+ <td>a mark name</td>
1468
+ </tr>
1469
+ <tr>
1470
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1471
+ <td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.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>
1472
+ </td>
1473
+ </tr>
1474
+ </tbody>
1475
+ </table></div>
1476
+ </div>
1477
+ <hr>
1478
+ <div class="refsect2">
1479
+ <a name="gtk-text-buffer-get-insert"></a><h3>gtk_text_buffer_get_insert ()</h3>
1480
+ <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>
1481
+ <p>
1482
+ Returns the mark that represents the cursor (insertion point).
1483
+ 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
1484
+ named "insert", but very slightly more efficient, and involves less
1485
+ typing.
1486
+ </p>
1487
+ <div class="variablelist"><table border="0" class="variablelist">
1488
+ <colgroup>
1489
+ <col align="left" valign="top">
1490
+ <col>
1491
+ </colgroup>
1492
+ <tbody>
1493
+ <tr>
1494
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1495
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1496
+ </td>
1497
+ </tr>
1498
+ <tr>
1499
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1500
+ <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>
1501
+ </td>
1502
+ </tr>
1503
+ </tbody>
1504
+ </table></div>
1505
+ </div>
1506
+ <hr>
1507
+ <div class="refsect2">
1508
+ <a name="gtk-text-buffer-get-selection-bound"></a><h3>gtk_text_buffer_get_selection_bound ()</h3>
1509
+ <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>
1510
+ <p>
1511
+ Returns the mark that represents the selection bound. Equivalent
1512
+ 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
1513
+ "selection_bound", but very slightly more efficient, and involves
1514
+ less typing.
1515
+ </p>
1516
+ <p>
1517
+ The currently-selected text in <em class="parameter"><code>buffer</code></em> is the region between the
1518
+ "selection_bound" and "insert" marks. If "selection_bound" and
1519
+ "insert" are in the same place, then there is no current selection.
1520
+ <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
1521
+ for handling the selection, if you just want to know whether there's a
1522
+ selection and what its bounds are.
1523
+ </p>
1524
+ <div class="variablelist"><table border="0" class="variablelist">
1525
+ <colgroup>
1526
+ <col align="left" valign="top">
1527
+ <col>
1528
+ </colgroup>
1529
+ <tbody>
1530
+ <tr>
1531
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1532
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1533
+ </td>
1534
+ </tr>
1535
+ <tr>
1536
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1537
+ <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>
1538
+ </td>
1539
+ </tr>
1540
+ </tbody>
1541
+ </table></div>
1542
+ </div>
1543
+ <hr>
1544
+ <div class="refsect2">
1545
+ <a name="gtk-text-buffer-get-has-selection"></a><h3>gtk_text_buffer_get_has_selection ()</h3>
1546
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> 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>
1547
+ <p>
1548
+ Indicates whether the buffer has some text currently selected.
1549
+ </p>
1550
+ <div class="variablelist"><table border="0" class="variablelist">
1551
+ <colgroup>
1552
+ <col align="left" valign="top">
1553
+ <col>
1554
+ </colgroup>
1555
+ <tbody>
1556
+ <tr>
1557
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1558
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1559
+ </td>
1560
+ </tr>
1561
+ <tr>
1562
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1563
+ <td>
1564
+ <code class="literal">TRUE</code> if the there is text selected</td>
1565
+ </tr>
1566
+ </tbody>
1567
+ </table></div>
1568
+ <p class="since">Since 2.10</p>
1569
+ </div>
1570
+ <hr>
1571
+ <div class="refsect2">
1572
+ <a name="gtk-text-buffer-place-cursor"></a><h3>gtk_text_buffer_place_cursor ()</h3>
1573
+ <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>,
1574
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);</pre>
1575
+ <p>
1576
+ This function moves the "insert" and "selection_bound" marks
1577
+ simultaneously. If you move them to the same place in two steps
1578
+ 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
1579
+ region in between their old and new locations, which can be pretty
1580
+ inefficient since the temporarily-selected region will force stuff
1581
+ to be recalculated. This function moves them as a unit, which can
1582
+ be optimized.
1583
+ </p>
1584
+ <div class="variablelist"><table border="0" class="variablelist">
1585
+ <colgroup>
1586
+ <col align="left" valign="top">
1587
+ <col>
1588
+ </colgroup>
1589
+ <tbody>
1590
+ <tr>
1591
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1592
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1593
+ </td>
1594
+ </tr>
1595
+ <tr>
1596
+ <td><p><span class="term"><em class="parameter"><code>where</code></em> :</span></p></td>
1597
+ <td>where to put the cursor</td>
1598
+ </tr>
1599
+ </tbody>
1600
+ </table></div>
1601
+ </div>
1602
+ <hr>
1603
+ <div class="refsect2">
1604
+ <a name="gtk-text-buffer-select-range"></a><h3>gtk_text_buffer_select_range ()</h3>
1605
+ <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>,
1606
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *ins</code></em>,
1607
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *bound</code></em>);</pre>
1608
+ <p>
1609
+ This function moves the "insert" and "selection_bound" marks
1610
+ simultaneously. If you move them in two steps
1611
+ 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
1612
+ region in between their old and new locations, which can be pretty
1613
+ inefficient since the temporarily-selected region will force stuff
1614
+ to be recalculated. This function moves them as a unit, which can
1615
+ be optimized.
1616
+ </p>
1617
+ <div class="variablelist"><table border="0" class="variablelist">
1618
+ <colgroup>
1619
+ <col align="left" valign="top">
1620
+ <col>
1621
+ </colgroup>
1622
+ <tbody>
1623
+ <tr>
1624
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1625
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1626
+ </td>
1627
+ </tr>
1628
+ <tr>
1629
+ <td><p><span class="term"><em class="parameter"><code>ins</code></em> :</span></p></td>
1630
+ <td>where to put the "insert" mark</td>
1631
+ </tr>
1632
+ <tr>
1633
+ <td><p><span class="term"><em class="parameter"><code>bound</code></em> :</span></p></td>
1634
+ <td>where to put the "selection_bound" mark</td>
1635
+ </tr>
1636
+ </tbody>
1637
+ </table></div>
1638
+ <p class="since">Since 2.4</p>
1639
+ </div>
1640
+ <hr>
1641
+ <div class="refsect2">
1642
+ <a name="gtk-text-buffer-apply-tag"></a><h3>gtk_text_buffer_apply_tag ()</h3>
1643
+ <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>,
1644
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
1645
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
1646
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
1647
+ <p>
1648
+ Emits the "apply-tag" signal on <em class="parameter"><code>buffer</code></em>. The default
1649
+ handler for the signal applies <em class="parameter"><code>tag</code></em> to the given range.
1650
+ <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> do not have to be in order.
1651
+ </p>
1652
+ <div class="variablelist"><table border="0" class="variablelist">
1653
+ <colgroup>
1654
+ <col align="left" valign="top">
1655
+ <col>
1656
+ </colgroup>
1657
+ <tbody>
1658
+ <tr>
1659
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1660
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1661
+ </td>
1662
+ </tr>
1663
+ <tr>
1664
+ <td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
1665
+ <td>a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>
1666
+ </td>
1667
+ </tr>
1668
+ <tr>
1669
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
1670
+ <td>one bound of range to be tagged</td>
1671
+ </tr>
1672
+ <tr>
1673
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
1674
+ <td>other bound of range to be tagged</td>
1675
+ </tr>
1676
+ </tbody>
1677
+ </table></div>
1678
+ </div>
1679
+ <hr>
1680
+ <div class="refsect2">
1681
+ <a name="gtk-text-buffer-remove-tag"></a><h3>gtk_text_buffer_remove_tag ()</h3>
1682
+ <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>,
1683
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
1684
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
1685
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
1686
+ <p>
1687
+ Emits the "remove-tag" signal. The default handler for the signal
1688
+ removes all occurrences of <em class="parameter"><code>tag</code></em> from the given range. <em class="parameter"><code>start</code></em> and
1689
+ <em class="parameter"><code>end</code></em> don't have to be in order.
1690
+ </p>
1691
+ <div class="variablelist"><table border="0" class="variablelist">
1692
+ <colgroup>
1693
+ <col align="left" valign="top">
1694
+ <col>
1695
+ </colgroup>
1696
+ <tbody>
1697
+ <tr>
1698
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1699
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1700
+ </td>
1701
+ </tr>
1702
+ <tr>
1703
+ <td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
1704
+ <td>a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>
1705
+ </td>
1706
+ </tr>
1707
+ <tr>
1708
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
1709
+ <td>one bound of range to be untagged</td>
1710
+ </tr>
1711
+ <tr>
1712
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
1713
+ <td>other bound of range to be untagged</td>
1714
+ </tr>
1715
+ </tbody>
1716
+ </table></div>
1717
+ </div>
1718
+ <hr>
1719
+ <div class="refsect2">
1720
+ <a name="gtk-text-buffer-apply-tag-by-name"></a><h3>gtk_text_buffer_apply_tag_by_name ()</h3>
1721
+ <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>,
1722
+ <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>,
1723
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
1724
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
1725
+ <p>
1726
+ 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
1727
+ 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>.
1728
+ </p>
1729
+ <div class="variablelist"><table border="0" class="variablelist">
1730
+ <colgroup>
1731
+ <col align="left" valign="top">
1732
+ <col>
1733
+ </colgroup>
1734
+ <tbody>
1735
+ <tr>
1736
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1737
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1738
+ </td>
1739
+ </tr>
1740
+ <tr>
1741
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
1742
+ <td>name of a named <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>
1743
+ </td>
1744
+ </tr>
1745
+ <tr>
1746
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
1747
+ <td>one bound of range to be tagged</td>
1748
+ </tr>
1749
+ <tr>
1750
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
1751
+ <td>other bound of range to be tagged</td>
1752
+ </tr>
1753
+ </tbody>
1754
+ </table></div>
1755
+ </div>
1756
+ <hr>
1757
+ <div class="refsect2">
1758
+ <a name="gtk-text-buffer-remove-tag-by-name"></a><h3>gtk_text_buffer_remove_tag_by_name ()</h3>
1759
+ <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>,
1760
+ <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>,
1761
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
1762
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
1763
+ <p>
1764
+ 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
1765
+ 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>.
1766
+ </p>
1767
+ <div class="variablelist"><table border="0" class="variablelist">
1768
+ <colgroup>
1769
+ <col align="left" valign="top">
1770
+ <col>
1771
+ </colgroup>
1772
+ <tbody>
1773
+ <tr>
1774
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1775
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1776
+ </td>
1777
+ </tr>
1778
+ <tr>
1779
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
1780
+ <td>name of a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>
1781
+ </td>
1782
+ </tr>
1783
+ <tr>
1784
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
1785
+ <td>one bound of range to be untagged</td>
1786
+ </tr>
1787
+ <tr>
1788
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
1789
+ <td>other bound of range to be untagged</td>
1790
+ </tr>
1791
+ </tbody>
1792
+ </table></div>
1793
+ </div>
1794
+ <hr>
1795
+ <div class="refsect2">
1796
+ <a name="gtk-text-buffer-remove-all-tags"></a><h3>gtk_text_buffer_remove_all_tags ()</h3>
1797
+ <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>,
1798
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
1799
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
1800
+ <p>
1801
+ Removes all tags in the range between <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em>. Be careful
1802
+ with this function; it could remove tags added in code unrelated to
1803
+ the code you're currently writing. That is, using this function is
1804
+ probably a bad idea if you have two or more unrelated code sections
1805
+ that add tags.
1806
+ </p>
1807
+ <div class="variablelist"><table border="0" class="variablelist">
1808
+ <colgroup>
1809
+ <col align="left" valign="top">
1810
+ <col>
1811
+ </colgroup>
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>start</code></em> :</span></p></td>
1820
+ <td>one bound of range to be untagged</td>
1821
+ </tr>
1822
+ <tr>
1823
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
1824
+ <td>other bound of range to be untagged</td>
1825
+ </tr>
1826
+ </tbody>
1827
+ </table></div>
1828
+ </div>
1829
+ <hr>
1830
+ <div class="refsect2">
1831
+ <a name="gtk-text-buffer-create-tag"></a><h3>gtk_text_buffer_create_tag ()</h3>
1832
+ <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>,
1833
+ <em class="parameter"><code>const <span class="type">gchar</span> *tag_name</code></em>,
1834
+ <em class="parameter"><code>const <span class="type">gchar</span> *first_property_name</code></em>,
1835
+ <em class="parameter"><code>...</code></em>);</pre>
1836
+ <p>
1837
+ Creates a tag and adds it to the tag table for <em class="parameter"><code>buffer</code></em>.
1838
+ 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
1839
+ tag to the buffer's tag table. The returned tag is owned by
1840
+ the buffer's tag table, so the ref count will be equal to one.
1841
+ </p>
1842
+ <p>
1843
+ If <em class="parameter"><code>tag_name</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, the tag is anonymous.
1844
+ </p>
1845
+ <p>
1846
+ If <em class="parameter"><code>tag_name</code></em> is non-<a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, a tag called <em class="parameter"><code>tag_name</code></em> must not already
1847
+ exist in the tag table for this buffer.
1848
+ </p>
1849
+ <p>
1850
+ The <em class="parameter"><code>first_property_name</code></em> argument and subsequent arguments are a list
1851
+ of properties to set on the tag, as with <code class="function">g_object_set()</code>.
1852
+ </p>
1853
+ <div class="variablelist"><table border="0" class="variablelist">
1854
+ <colgroup>
1855
+ <col align="left" valign="top">
1856
+ <col>
1857
+ </colgroup>
1858
+ <tbody>
1859
+ <tr>
1860
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1861
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1862
+ </td>
1863
+ </tr>
1864
+ <tr>
1865
+ <td><p><span class="term"><em class="parameter"><code>tag_name</code></em> :</span></p></td>
1866
+ <td>name of the new tag, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.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>
1867
+ </td>
1868
+ </tr>
1869
+ <tr>
1870
+ <td><p><span class="term"><em class="parameter"><code>first_property_name</code></em> :</span></p></td>
1871
+ <td>name of first property to set, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.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>
1872
+ </td>
1873
+ </tr>
1874
+ <tr>
1875
+ <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
1876
+ <td>
1877
+ <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>-terminated list of property names and values</td>
1878
+ </tr>
1879
+ <tr>
1880
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1881
+ <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>
1882
+ </td>
1883
+ </tr>
1884
+ </tbody>
1885
+ </table></div>
1886
+ </div>
1887
+ <hr>
1888
+ <div class="refsect2">
1889
+ <a name="gtk-text-buffer-get-iter-at-line-offset"></a><h3>gtk_text_buffer_get_iter_at_line_offset ()</h3>
1890
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_iter_at_line_offset
1891
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
1892
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1893
+ <em class="parameter"><code><span class="type">gint</span> line_number</code></em>,
1894
+ <em class="parameter"><code><span class="type">gint</span> char_offset</code></em>);</pre>
1895
+ <p>
1896
+ Obtains an iterator pointing to <em class="parameter"><code>char_offset</code></em> within the given
1897
+ line. The <em class="parameter"><code>char_offset</code></em> must exist, offsets off the end of the line
1898
+ are not allowed. Note <span class="emphasis"><em>characters</em></span>, not bytes;
1899
+ UTF-8 may encode one character as multiple bytes.
1900
+ </p>
1901
+ <div class="variablelist"><table border="0" class="variablelist">
1902
+ <colgroup>
1903
+ <col align="left" valign="top">
1904
+ <col>
1905
+ </colgroup>
1906
+ <tbody>
1907
+ <tr>
1908
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1909
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1910
+ </td>
1911
+ </tr>
1912
+ <tr>
1913
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1914
+ <td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1915
+ </td>
1916
+ </tr>
1917
+ <tr>
1918
+ <td><p><span class="term"><em class="parameter"><code>line_number</code></em> :</span></p></td>
1919
+ <td>line number counting from 0</td>
1920
+ </tr>
1921
+ <tr>
1922
+ <td><p><span class="term"><em class="parameter"><code>char_offset</code></em> :</span></p></td>
1923
+ <td>char offset from start of line</td>
1924
+ </tr>
1925
+ </tbody>
1926
+ </table></div>
1927
+ </div>
1928
+ <hr>
1929
+ <div class="refsect2">
1930
+ <a name="gtk-text-buffer-get-iter-at-offset"></a><h3>gtk_text_buffer_get_iter_at_offset ()</h3>
1931
+ <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>,
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><span class="type">gint</span> char_offset</code></em>);</pre>
1934
+ <p>
1935
+ Initializes <em class="parameter"><code>iter</code></em> to a position <em class="parameter"><code>char_offset</code></em> chars from the start
1936
+ of the entire buffer. If <em class="parameter"><code>char_offset</code></em> is -1 or greater than the number
1937
+ of characters in the buffer, <em class="parameter"><code>iter</code></em> is initialized to the end iterator,
1938
+ the iterator one past the last valid character in the buffer.
1939
+ </p>
1940
+ <div class="variablelist"><table border="0" class="variablelist">
1941
+ <colgroup>
1942
+ <col align="left" valign="top">
1943
+ <col>
1944
+ </colgroup>
1945
+ <tbody>
1946
+ <tr>
1947
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1948
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1949
+ </td>
1950
+ </tr>
1951
+ <tr>
1952
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1953
+ <td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1954
+ </td>
1955
+ </tr>
1956
+ <tr>
1957
+ <td><p><span class="term"><em class="parameter"><code>char_offset</code></em> :</span></p></td>
1958
+ <td>char offset from start of buffer, counting from 0, or -1</td>
1959
+ </tr>
1960
+ </tbody>
1961
+ </table></div>
1962
+ </div>
1963
+ <hr>
1964
+ <div class="refsect2">
1965
+ <a name="gtk-text-buffer-get-iter-at-line"></a><h3>gtk_text_buffer_get_iter_at_line ()</h3>
1966
+ <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>,
1967
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1968
+ <em class="parameter"><code><span class="type">gint</span> line_number</code></em>);</pre>
1969
+ <p>
1970
+ Initializes <em class="parameter"><code>iter</code></em> to the start of the given line.
1971
+ </p>
1972
+ <div class="variablelist"><table border="0" class="variablelist">
1973
+ <colgroup>
1974
+ <col align="left" valign="top">
1975
+ <col>
1976
+ </colgroup>
1977
+ <tbody>
1978
+ <tr>
1979
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
1980
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
1981
+ </td>
1982
+ </tr>
1983
+ <tr>
1984
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1985
+ <td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1986
+ </td>
1987
+ </tr>
1988
+ <tr>
1989
+ <td><p><span class="term"><em class="parameter"><code>line_number</code></em> :</span></p></td>
1990
+ <td>line number counting from 0</td>
1991
+ </tr>
1992
+ </tbody>
1993
+ </table></div>
1994
+ </div>
1995
+ <hr>
1996
+ <div class="refsect2">
1997
+ <a name="gtk-text-buffer-get-iter-at-line-index"></a><h3>gtk_text_buffer_get_iter_at_line_index ()</h3>
1998
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_iter_at_line_index
1999
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2000
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2001
+ <em class="parameter"><code><span class="type">gint</span> line_number</code></em>,
2002
+ <em class="parameter"><code><span class="type">gint</span> byte_index</code></em>);</pre>
2003
+ <p>
2004
+ Obtains an iterator pointing to <em class="parameter"><code>byte_index</code></em> within the given line.
2005
+ <em class="parameter"><code>byte_index</code></em> must be the start of a UTF-8 character, and must not be
2006
+ beyond the end of the line. Note <span class="emphasis"><em>bytes</em></span>, not
2007
+ characters; UTF-8 may encode one character as multiple bytes.
2008
+ </p>
2009
+ <div class="variablelist"><table border="0" class="variablelist">
2010
+ <colgroup>
2011
+ <col align="left" valign="top">
2012
+ <col>
2013
+ </colgroup>
2014
+ <tbody>
2015
+ <tr>
2016
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2017
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2018
+ </td>
2019
+ </tr>
2020
+ <tr>
2021
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2022
+ <td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
2023
+ </td>
2024
+ </tr>
2025
+ <tr>
2026
+ <td><p><span class="term"><em class="parameter"><code>line_number</code></em> :</span></p></td>
2027
+ <td>line number counting from 0</td>
2028
+ </tr>
2029
+ <tr>
2030
+ <td><p><span class="term"><em class="parameter"><code>byte_index</code></em> :</span></p></td>
2031
+ <td>byte index from start of line</td>
2032
+ </tr>
2033
+ </tbody>
2034
+ </table></div>
2035
+ </div>
2036
+ <hr>
2037
+ <div class="refsect2">
2038
+ <a name="gtk-text-buffer-get-iter-at-mark"></a><h3>gtk_text_buffer_get_iter_at_mark ()</h3>
2039
+ <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>,
2040
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2041
+ <em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
2042
+ <p>
2043
+ Initializes <em class="parameter"><code>iter</code></em> with the current position of <em class="parameter"><code>mark</code></em>.
2044
+ </p>
2045
+ <div class="variablelist"><table border="0" class="variablelist">
2046
+ <colgroup>
2047
+ <col align="left" valign="top">
2048
+ <col>
2049
+ </colgroup>
2050
+ <tbody>
2051
+ <tr>
2052
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2053
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2054
+ </td>
2055
+ </tr>
2056
+ <tr>
2057
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2058
+ <td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
2059
+ </td>
2060
+ </tr>
2061
+ <tr>
2062
+ <td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
2063
+ <td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> in <em class="parameter"><code>buffer</code></em>
2064
+ </td>
2065
+ </tr>
2066
+ </tbody>
2067
+ </table></div>
2068
+ </div>
2069
+ <hr>
2070
+ <div class="refsect2">
2071
+ <a name="gtk-text-buffer-get-iter-at-child-anchor"></a><h3>gtk_text_buffer_get_iter_at_child_anchor ()</h3>
2072
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_iter_at_child_anchor
2073
+ (<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 class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2075
+ <em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);</pre>
2076
+ <p>
2077
+ Obtains the location of <em class="parameter"><code>anchor</code></em> within <em class="parameter"><code>buffer</code></em>.
2078
+ </p>
2079
+ <div class="variablelist"><table border="0" class="variablelist">
2080
+ <colgroup>
2081
+ <col align="left" valign="top">
2082
+ <col>
2083
+ </colgroup>
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>iter</code></em> :</span></p></td>
2092
+ <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>
2093
+ </td>
2094
+ </tr>
2095
+ <tr>
2096
+ <td><p><span class="term"><em class="parameter"><code>anchor</code></em> :</span></p></td>
2097
+ <td>a child anchor that appears in <em class="parameter"><code>buffer</code></em>
2098
+ </td>
2099
+ </tr>
2100
+ </tbody>
2101
+ </table></div>
2102
+ </div>
2103
+ <hr>
2104
+ <div class="refsect2">
2105
+ <a name="gtk-text-buffer-get-start-iter"></a><h3>gtk_text_buffer_get_start_iter ()</h3>
2106
+ <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>,
2107
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
2108
+ <p>
2109
+ Initialized <em class="parameter"><code>iter</code></em> with the first position in the text buffer. This
2110
+ 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
2111
+ the iter at character offset 0.
2112
+ </p>
2113
+ <div class="variablelist"><table border="0" class="variablelist">
2114
+ <colgroup>
2115
+ <col align="left" valign="top">
2116
+ <col>
2117
+ </colgroup>
2118
+ <tbody>
2119
+ <tr>
2120
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2121
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2122
+ </td>
2123
+ </tr>
2124
+ <tr>
2125
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2126
+ <td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
2127
+ </td>
2128
+ </tr>
2129
+ </tbody>
2130
+ </table></div>
2131
+ </div>
2132
+ <hr>
2133
+ <div class="refsect2">
2134
+ <a name="gtk-text-buffer-get-end-iter"></a><h3>gtk_text_buffer_get_end_iter ()</h3>
2135
+ <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>,
2136
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
2137
+ <p>
2138
+ Initializes <em class="parameter"><code>iter</code></em> with the "end iterator," one past the last valid
2139
+ character in the text buffer. If dereferenced with
2140
+ <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
2141
+ 0. The entire buffer lies in the range from the first position in
2142
+ 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
2143
+ character position 0) to the end iterator.
2144
+ </p>
2145
+ <div class="variablelist"><table border="0" class="variablelist">
2146
+ <colgroup>
2147
+ <col align="left" valign="top">
2148
+ <col>
2149
+ </colgroup>
2150
+ <tbody>
2151
+ <tr>
2152
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2153
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2154
+ </td>
2155
+ </tr>
2156
+ <tr>
2157
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2158
+ <td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
2159
+ </td>
2160
+ </tr>
2161
+ </tbody>
2162
+ </table></div>
2163
+ </div>
2164
+ <hr>
2165
+ <div class="refsect2">
2166
+ <a name="gtk-text-buffer-get-bounds"></a><h3>gtk_text_buffer_get_bounds ()</h3>
2167
+ <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>,
2168
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
2169
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
2170
+ <p>
2171
+ Retrieves the first and last iterators in the buffer, i.e. the
2172
+ entire buffer lies within the range [<em class="parameter"><code>start</code></em>,<em class="parameter"><code>end</code></em>).
2173
+ </p>
2174
+ <div class="variablelist"><table border="0" class="variablelist">
2175
+ <colgroup>
2176
+ <col align="left" valign="top">
2177
+ <col>
2178
+ </colgroup>
2179
+ <tbody>
2180
+ <tr>
2181
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2182
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2183
+ </td>
2184
+ </tr>
2185
+ <tr>
2186
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
2187
+ <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>
2188
+ </td>
2189
+ </tr>
2190
+ <tr>
2191
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
2192
+ <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>
2193
+ </td>
2194
+ </tr>
2195
+ </tbody>
2196
+ </table></div>
2197
+ </div>
2198
+ <hr>
2199
+ <div class="refsect2">
2200
+ <a name="gtk-text-buffer-get-modified"></a><h3>gtk_text_buffer_get_modified ()</h3>
2201
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> 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>
2202
+ <p>
2203
+ Indicates whether the buffer has been modified since the last call
2204
+ 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
2205
+ <code class="literal">FALSE</code>. Used for example to enable a "save" function in a text
2206
+ editor.
2207
+ </p>
2208
+ <div class="variablelist"><table border="0" class="variablelist">
2209
+ <colgroup>
2210
+ <col align="left" valign="top">
2211
+ <col>
2212
+ </colgroup>
2213
+ <tbody>
2214
+ <tr>
2215
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2216
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2217
+ </td>
2218
+ </tr>
2219
+ <tr>
2220
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2221
+ <td>
2222
+ <code class="literal">TRUE</code> if the buffer has been modified</td>
2223
+ </tr>
2224
+ </tbody>
2225
+ </table></div>
2226
+ </div>
2227
+ <hr>
2228
+ <div class="refsect2">
2229
+ <a name="gtk-text-buffer-set-modified"></a><h3>gtk_text_buffer_set_modified ()</h3>
2230
+ <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>,
2231
+ <em class="parameter"><code><span class="type">gboolean</span> setting</code></em>);</pre>
2232
+ <p>
2233
+ Used to keep track of whether the buffer has been modified since the
2234
+ last time it was saved. Whenever the buffer is saved to disk, call
2235
+ gtk_text_buffer_set_modified (<em class="parameter"><code>buffer</code></em>, FALSE). When the buffer is modified,
2236
+ it will automatically toggled on the modified bit again. When the modified
2237
+ bit flips, the buffer emits a "modified-changed" signal.
2238
+ </p>
2239
+ <div class="variablelist"><table border="0" class="variablelist">
2240
+ <colgroup>
2241
+ <col align="left" valign="top">
2242
+ <col>
2243
+ </colgroup>
2244
+ <tbody>
2245
+ <tr>
2246
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2247
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2248
+ </td>
2249
+ </tr>
2250
+ <tr>
2251
+ <td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
2252
+ <td>modification flag setting</td>
2253
+ </tr>
2254
+ </tbody>
2255
+ </table></div>
2256
+ </div>
2257
+ <hr>
2258
+ <div class="refsect2">
2259
+ <a name="gtk-text-buffer-delete-selection"></a><h3>gtk_text_buffer_delete_selection ()</h3>
2260
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> 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>,
2261
+ <em class="parameter"><code><span class="type">gboolean</span> interactive</code></em>,
2262
+ <em class="parameter"><code><span class="type">gboolean</span> default_editable</code></em>);</pre>
2263
+ <p>
2264
+ Deletes the range between the "insert" and "selection_bound" marks,
2265
+ that is, the currently-selected text. If <em class="parameter"><code>interactive</code></em> is <code class="literal">TRUE</code>,
2266
+ the editability of the selection will be considered (users can't delete
2267
+ uneditable text).
2268
+ </p>
2269
+ <div class="variablelist"><table border="0" class="variablelist">
2270
+ <colgroup>
2271
+ <col align="left" valign="top">
2272
+ <col>
2273
+ </colgroup>
2274
+ <tbody>
2275
+ <tr>
2276
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2277
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2278
+ </td>
2279
+ </tr>
2280
+ <tr>
2281
+ <td><p><span class="term"><em class="parameter"><code>interactive</code></em> :</span></p></td>
2282
+ <td>whether the deletion is caused by user interaction</td>
2283
+ </tr>
2284
+ <tr>
2285
+ <td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
2286
+ <td>whether the buffer is editable by default</td>
2287
+ </tr>
2288
+ <tr>
2289
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2290
+ <td>whether there was a non-empty selection to delete</td>
2291
+ </tr>
2292
+ </tbody>
2293
+ </table></div>
2294
+ </div>
2295
+ <hr>
2296
+ <div class="refsect2">
2297
+ <a name="gtk-text-buffer-paste-clipboard"></a><h3>gtk_text_buffer_paste_clipboard ()</h3>
2298
+ <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>,
2299
+ <em class="parameter"><code><a class="link" href="gtk3-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
2300
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *override_location</code></em>,
2301
+ <em class="parameter"><code><span class="type">gboolean</span> default_editable</code></em>);</pre>
2302
+ <p>
2303
+ Pastes the contents of a clipboard at the insertion point, or
2304
+ at <em class="parameter"><code>override_location</code></em>. (Note: pasting is asynchronous, that is,
2305
+ we'll ask for the paste data and return, and at some point later
2306
+ after the main loop runs, the paste data will be inserted.)
2307
+ </p>
2308
+ <div class="variablelist"><table border="0" class="variablelist">
2309
+ <colgroup>
2310
+ <col align="left" valign="top">
2311
+ <col>
2312
+ </colgroup>
2313
+ <tbody>
2314
+ <tr>
2315
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2316
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2317
+ </td>
2318
+ </tr>
2319
+ <tr>
2320
+ <td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
2321
+ <td>the <a class="link" href="gtk3-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> to paste from</td>
2322
+ </tr>
2323
+ <tr>
2324
+ <td><p><span class="term"><em class="parameter"><code>override_location</code></em> :</span></p></td>
2325
+ <td>location to insert pasted text, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> for
2326
+ 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>
2327
+ </td>
2328
+ </tr>
2329
+ <tr>
2330
+ <td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
2331
+ <td>whether the buffer is editable by default</td>
2332
+ </tr>
2333
+ </tbody>
2334
+ </table></div>
2335
+ </div>
2336
+ <hr>
2337
+ <div class="refsect2">
2338
+ <a name="gtk-text-buffer-copy-clipboard"></a><h3>gtk_text_buffer_copy_clipboard ()</h3>
2339
+ <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>,
2340
+ <em class="parameter"><code><a class="link" href="gtk3-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
2341
+ <p>
2342
+ Copies the currently-selected text to a clipboard.
2343
+ </p>
2344
+ <div class="variablelist"><table border="0" class="variablelist">
2345
+ <colgroup>
2346
+ <col align="left" valign="top">
2347
+ <col>
2348
+ </colgroup>
2349
+ <tbody>
2350
+ <tr>
2351
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2352
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2353
+ </td>
2354
+ </tr>
2355
+ <tr>
2356
+ <td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
2357
+ <td>the <a class="link" href="gtk3-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> object to copy to</td>
2358
+ </tr>
2359
+ </tbody>
2360
+ </table></div>
2361
+ </div>
2362
+ <hr>
2363
+ <div class="refsect2">
2364
+ <a name="gtk-text-buffer-cut-clipboard"></a><h3>gtk_text_buffer_cut_clipboard ()</h3>
2365
+ <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>,
2366
+ <em class="parameter"><code><a class="link" href="gtk3-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
2367
+ <em class="parameter"><code><span class="type">gboolean</span> default_editable</code></em>);</pre>
2368
+ <p>
2369
+ Copies the currently-selected text to a clipboard, then deletes
2370
+ said text if it's editable.
2371
+ </p>
2372
+ <div class="variablelist"><table border="0" class="variablelist">
2373
+ <colgroup>
2374
+ <col align="left" valign="top">
2375
+ <col>
2376
+ </colgroup>
2377
+ <tbody>
2378
+ <tr>
2379
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2380
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2381
+ </td>
2382
+ </tr>
2383
+ <tr>
2384
+ <td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
2385
+ <td>the <a class="link" href="gtk3-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> object to cut to</td>
2386
+ </tr>
2387
+ <tr>
2388
+ <td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
2389
+ <td>default editability of the buffer</td>
2390
+ </tr>
2391
+ </tbody>
2392
+ </table></div>
2393
+ </div>
2394
+ <hr>
2395
+ <div class="refsect2">
2396
+ <a name="gtk-text-buffer-get-selection-bounds"></a><h3>gtk_text_buffer_get_selection_bounds ()</h3>
2397
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_buffer_get_selection_bounds
2398
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2399
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
2400
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
2401
+ <p>
2402
+ Returns <code class="literal">TRUE</code> if some text is selected; places the bounds
2403
+ 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,
2404
+ then <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> are filled in with the same value).
2405
+ <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
2406
+ NULL, then they are not filled in, but the return value still indicates
2407
+ whether text is selected.
2408
+ </p>
2409
+ <div class="variablelist"><table border="0" class="variablelist">
2410
+ <colgroup>
2411
+ <col align="left" valign="top">
2412
+ <col>
2413
+ </colgroup>
2414
+ <tbody>
2415
+ <tr>
2416
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2417
+ <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>
2418
+ </td>
2419
+ </tr>
2420
+ <tr>
2421
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
2422
+ <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>
2423
+ </td>
2424
+ </tr>
2425
+ <tr>
2426
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
2427
+ <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>
2428
+ </td>
2429
+ </tr>
2430
+ <tr>
2431
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2432
+ <td>whether the selection has nonzero length</td>
2433
+ </tr>
2434
+ </tbody>
2435
+ </table></div>
2436
+ </div>
2437
+ <hr>
2438
+ <div class="refsect2">
2439
+ <a name="gtk-text-buffer-begin-user-action"></a><h3>gtk_text_buffer_begin_user_action ()</h3>
2440
+ <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>
2441
+ <p>
2442
+ Called to indicate that the buffer operations between here and a
2443
+ 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
2444
+ user-visible operation. The operations between
2445
+ <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
2446
+ <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
2447
+ an undo stack. <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> maintains a count of calls to
2448
+ <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
2449
+ 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
2450
+ "begin-user-action" and "end-user-action" signals only for the
2451
+ outermost pair of calls. This allows you to build user actions
2452
+ from other user actions.
2453
+ </p>
2454
+ <p>
2455
+ The "interactive" buffer mutation functions, such as
2456
+ <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
2457
+ user action around the buffer operations they perform, so there's
2458
+ no need to add extra calls if you user action consists solely of a
2459
+ single call to one of those functions.
2460
+ </p>
2461
+ <div class="variablelist"><table border="0" class="variablelist">
2462
+ <colgroup>
2463
+ <col align="left" valign="top">
2464
+ <col>
2465
+ </colgroup>
2466
+ <tbody><tr>
2467
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2468
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2469
+ </td>
2470
+ </tr></tbody>
2471
+ </table></div>
2472
+ </div>
2473
+ <hr>
2474
+ <div class="refsect2">
2475
+ <a name="gtk-text-buffer-end-user-action"></a><h3>gtk_text_buffer_end_user_action ()</h3>
2476
+ <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>
2477
+ <p>
2478
+ 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>.
2479
+ See that function for a full explanation.
2480
+ </p>
2481
+ <div class="variablelist"><table border="0" class="variablelist">
2482
+ <colgroup>
2483
+ <col align="left" valign="top">
2484
+ <col>
2485
+ </colgroup>
2486
+ <tbody><tr>
2487
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2488
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2489
+ </td>
2490
+ </tr></tbody>
2491
+ </table></div>
2492
+ </div>
2493
+ <hr>
2494
+ <div class="refsect2">
2495
+ <a name="gtk-text-buffer-add-selection-clipboard"></a><h3>gtk_text_buffer_add_selection_clipboard ()</h3>
2496
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_add_selection_clipboard
2497
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2498
+ <em class="parameter"><code><a class="link" href="gtk3-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
2499
+ <p>
2500
+ Adds <em class="parameter"><code>clipboard</code></em> to the list of clipboards in which the selection
2501
+ contents of <em class="parameter"><code>buffer</code></em> are available. In most cases, <em class="parameter"><code>clipboard</code></em> will be
2502
+ the <a class="link" href="gtk3-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> of type <a href="../gdk3/gdk3-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>.
2503
+ </p>
2504
+ <div class="variablelist"><table border="0" class="variablelist">
2505
+ <colgroup>
2506
+ <col align="left" valign="top">
2507
+ <col>
2508
+ </colgroup>
2509
+ <tbody>
2510
+ <tr>
2511
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2512
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2513
+ </td>
2514
+ </tr>
2515
+ <tr>
2516
+ <td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
2517
+ <td>a <a class="link" href="gtk3-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a>
2518
+ </td>
2519
+ </tr>
2520
+ </tbody>
2521
+ </table></div>
2522
+ </div>
2523
+ <hr>
2524
+ <div class="refsect2">
2525
+ <a name="gtk-text-buffer-remove-selection-clipboard"></a><h3>gtk_text_buffer_remove_selection_clipboard ()</h3>
2526
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_remove_selection_clipboard
2527
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2528
+ <em class="parameter"><code><a class="link" href="gtk3-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
2529
+ <p>
2530
+ Removes a <a class="link" href="gtk3-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> added with
2531
+ <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>.
2532
+ </p>
2533
+ <div class="variablelist"><table border="0" class="variablelist">
2534
+ <colgroup>
2535
+ <col align="left" valign="top">
2536
+ <col>
2537
+ </colgroup>
2538
+ <tbody>
2539
+ <tr>
2540
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2541
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2542
+ </td>
2543
+ </tr>
2544
+ <tr>
2545
+ <td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
2546
+ <td>a <a class="link" href="gtk3-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> added to <em class="parameter"><code>buffer</code></em> by
2547
+ <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>
2548
+ </td>
2549
+ </tr>
2550
+ </tbody>
2551
+ </table></div>
2552
+ </div>
2553
+ <hr>
2554
+ <div class="refsect2">
2555
+ <a name="GtkTextBufferTargetInfo"></a><h3>enum GtkTextBufferTargetInfo</h3>
2556
+ <pre class="programlisting">typedef enum {
2557
+ GTK_TEXT_BUFFER_TARGET_INFO_BUFFER_CONTENTS = - 1,
2558
+ GTK_TEXT_BUFFER_TARGET_INFO_RICH_TEXT = - 2,
2559
+ GTK_TEXT_BUFFER_TARGET_INFO_TEXT = - 3
2560
+ } GtkTextBufferTargetInfo;
2561
+ </pre>
2562
+ <div class="variablelist"><table border="0" class="variablelist">
2563
+ <colgroup>
2564
+ <col align="left" valign="top">
2565
+ <col>
2566
+ </colgroup>
2567
+ <tbody>
2568
+ <tr>
2569
+ <td><p><a name="GTK-TEXT-BUFFER-TARGET-INFO-BUFFER-CONTENTS:CAPS"></a><span class="term"><code class="literal">GTK_TEXT_BUFFER_TARGET_INFO_BUFFER_CONTENTS</code></span></p></td>
2570
+ <td></td>
2571
+ </tr>
2572
+ <tr>
2573
+ <td><p><a name="GTK-TEXT-BUFFER-TARGET-INFO-RICH-TEXT:CAPS"></a><span class="term"><code class="literal">GTK_TEXT_BUFFER_TARGET_INFO_RICH_TEXT</code></span></p></td>
2574
+ <td></td>
2575
+ </tr>
2576
+ <tr>
2577
+ <td><p><a name="GTK-TEXT-BUFFER-TARGET-INFO-TEXT:CAPS"></a><span class="term"><code class="literal">GTK_TEXT_BUFFER_TARGET_INFO_TEXT</code></span></p></td>
2578
+ <td></td>
2579
+ </tr>
2580
+ </tbody>
2581
+ </table></div>
2582
+ </div>
2583
+ <hr>
2584
+ <div class="refsect2">
2585
+ <a name="GtkTextBufferDeserializeFunc"></a><h3>GtkTextBufferDeserializeFunc ()</h3>
2586
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> (*GtkTextBufferDeserializeFunc) (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *register_buffer</code></em>,
2587
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
2588
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2589
+ <em class="parameter"><code>const <span class="type">guint8</span> *data</code></em>,
2590
+ <em class="parameter"><code><span class="type">gsize</span> length</code></em>,
2591
+ <em class="parameter"><code><span class="type">gboolean</span> create_tags</code></em>,
2592
+ <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
2593
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
2594
+ <p>
2595
+ A function that is called to deserialize rich text that has been
2596
+ 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>.
2597
+ </p>
2598
+ <div class="variablelist"><table border="0" class="variablelist">
2599
+ <colgroup>
2600
+ <col align="left" valign="top">
2601
+ <col>
2602
+ </colgroup>
2603
+ <tbody>
2604
+ <tr>
2605
+ <td><p><span class="term"><em class="parameter"><code>register_buffer</code></em> :</span></p></td>
2606
+ <td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> the format is registered with</td>
2607
+ </tr>
2608
+ <tr>
2609
+ <td><p><span class="term"><em class="parameter"><code>content_buffer</code></em> :</span></p></td>
2610
+ <td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> to deserialize into</td>
2611
+ </tr>
2612
+ <tr>
2613
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2614
+ <td>insertion point for the deserialized text</td>
2615
+ </tr>
2616
+ <tr>
2617
+ <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
2618
+ <td>data to deserialize</td>
2619
+ </tr>
2620
+ <tr>
2621
+ <td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
2622
+ <td>length of <code class="literal">data</code>
2623
+ </td>
2624
+ </tr>
2625
+ <tr>
2626
+ <td><p><span class="term"><em class="parameter"><code>create_tags</code></em> :</span></p></td>
2627
+ <td>
2628
+ <code class="literal">TRUE</code> if deserializing may create tags</td>
2629
+ </tr>
2630
+ <tr>
2631
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2632
+ <td>user data that was specified when registering the format</td>
2633
+ </tr>
2634
+ <tr>
2635
+ <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
2636
+ <td>return location for a <span class="type">GError</span>
2637
+ </td>
2638
+ </tr>
2639
+ <tr>
2640
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2641
+ <td>
2642
+ <code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> otherwise</td>
2643
+ </tr>
2644
+ </tbody>
2645
+ </table></div>
2646
+ </div>
2647
+ <hr>
2648
+ <div class="refsect2">
2649
+ <a name="gtk-text-buffer-deserialize"></a><h3>gtk_text_buffer_deserialize ()</h3>
2650
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> 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>,
2651
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
2652
+ <em class="parameter"><code><a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
2653
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2654
+ <em class="parameter"><code>const <span class="type">guint8</span> *data</code></em>,
2655
+ <em class="parameter"><code><span class="type">gsize</span> length</code></em>,
2656
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
2657
+ <p>
2658
+ This function deserializes rich text in format <em class="parameter"><code>format</code></em> and inserts
2659
+ it at <em class="parameter"><code>iter</code></em>.
2660
+ </p>
2661
+ <p>
2662
+ <em class="parameter"><code>format</code></em>s to be used must be registered using
2663
+ <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
2664
+ <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.
2665
+ </p>
2666
+ <div class="variablelist"><table border="0" class="variablelist">
2667
+ <colgroup>
2668
+ <col align="left" valign="top">
2669
+ <col>
2670
+ </colgroup>
2671
+ <tbody>
2672
+ <tr>
2673
+ <td><p><span class="term"><em class="parameter"><code>register_buffer</code></em> :</span></p></td>
2674
+ <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>
2675
+ </tr>
2676
+ <tr>
2677
+ <td><p><span class="term"><em class="parameter"><code>content_buffer</code></em> :</span></p></td>
2678
+ <td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> to deserialize into</td>
2679
+ </tr>
2680
+ <tr>
2681
+ <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
2682
+ <td>the rich text format to use for deserializing</td>
2683
+ </tr>
2684
+ <tr>
2685
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2686
+ <td>insertion point for the deserialized text</td>
2687
+ </tr>
2688
+ <tr>
2689
+ <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
2690
+ <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>
2691
+ </td>
2692
+ </tr>
2693
+ <tr>
2694
+ <td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
2695
+ <td>length of <em class="parameter"><code>data</code></em>
2696
+ </td>
2697
+ </tr>
2698
+ <tr>
2699
+ <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
2700
+ <td>return location for a <span class="type">GError</span>
2701
+ </td>
2702
+ </tr>
2703
+ <tr>
2704
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2705
+ <td>
2706
+ <code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> otherwise.</td>
2707
+ </tr>
2708
+ </tbody>
2709
+ </table></div>
2710
+ <p class="since">Since 2.10</p>
2711
+ </div>
2712
+ <hr>
2713
+ <div class="refsect2">
2714
+ <a name="gtk-text-buffer-deserialize-get-can-create-tags"></a><h3>gtk_text_buffer_deserialize_get_can_create_tags ()</h3>
2715
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_buffer_deserialize_get_can_create_tags
2716
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2717
+ <em class="parameter"><code><a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>);</pre>
2718
+ <p>
2719
+ This functions returns the value set with
2720
+ <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>
2721
+ </p>
2722
+ <div class="variablelist"><table border="0" class="variablelist">
2723
+ <colgroup>
2724
+ <col align="left" valign="top">
2725
+ <col>
2726
+ </colgroup>
2727
+ <tbody>
2728
+ <tr>
2729
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2730
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2731
+ </td>
2732
+ </tr>
2733
+ <tr>
2734
+ <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
2735
+ <td>a <a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> representing a registered rich text format</td>
2736
+ </tr>
2737
+ <tr>
2738
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2739
+ <td>whether deserializing this format may create tags</td>
2740
+ </tr>
2741
+ </tbody>
2742
+ </table></div>
2743
+ <p class="since">Since 2.10</p>
2744
+ </div>
2745
+ <hr>
2746
+ <div class="refsect2">
2747
+ <a name="gtk-text-buffer-deserialize-set-can-create-tags"></a><h3>gtk_text_buffer_deserialize_set_can_create_tags ()</h3>
2748
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_deserialize_set_can_create_tags
2749
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2750
+ <em class="parameter"><code><a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
2751
+ <em class="parameter"><code><span class="type">gboolean</span> can_create_tags</code></em>);</pre>
2752
+ <p>
2753
+ Use this function to allow a rich text deserialization function to
2754
+ create new tags in the receiving buffer. Note that using this
2755
+ function is almost always a bad idea, because the rich text
2756
+ functions you register should know how to map the rich text format
2757
+ they handler to your text buffers set of tags.
2758
+ </p>
2759
+ <p>
2760
+ The ability of creating new (arbitrary!) tags in the receiving buffer
2761
+ is meant for special rich text formats like the internal one that
2762
+ 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>,
2763
+ because that format is essentially a dump of the internal structure
2764
+ of the source buffer, including its tag names.
2765
+ </p>
2766
+ <p>
2767
+ You should allow creation of tags only if you know what you are
2768
+ doing, e.g. if you defined a tagset name for your application
2769
+ suite's text buffers and you know that it's fine to receive new
2770
+ tags from these buffers, because you know that your application can
2771
+ handle the newly created tags.
2772
+ </p>
2773
+ <div class="variablelist"><table border="0" class="variablelist">
2774
+ <colgroup>
2775
+ <col align="left" valign="top">
2776
+ <col>
2777
+ </colgroup>
2778
+ <tbody>
2779
+ <tr>
2780
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2781
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2782
+ </td>
2783
+ </tr>
2784
+ <tr>
2785
+ <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
2786
+ <td>a <a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> representing a registered rich text format</td>
2787
+ </tr>
2788
+ <tr>
2789
+ <td><p><span class="term"><em class="parameter"><code>can_create_tags</code></em> :</span></p></td>
2790
+ <td>whether deserializing this format may create tags</td>
2791
+ </tr>
2792
+ </tbody>
2793
+ </table></div>
2794
+ <p class="since">Since 2.10</p>
2795
+ </div>
2796
+ <hr>
2797
+ <div class="refsect2">
2798
+ <a name="gtk-text-buffer-get-copy-target-list"></a><h3>gtk_text_buffer_get_copy_target_list ()</h3>
2799
+ <pre class="programlisting"><a class="link" href="gtk3-Selections.html#GtkTargetList"><span class="returnvalue">GtkTargetList</span></a> * gtk_text_buffer_get_copy_target_list
2800
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
2801
+ <p>
2802
+ This function returns the list of targets this text buffer can
2803
+ provide for copying and as DND source. The targets in the list are
2804
+ 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,
2805
+ using <a class="link" href="gtk3-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
2806
+ <a class="link" href="gtk3-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>.
2807
+ </p>
2808
+ <div class="variablelist"><table border="0" class="variablelist">
2809
+ <colgroup>
2810
+ <col align="left" valign="top">
2811
+ <col>
2812
+ </colgroup>
2813
+ <tbody>
2814
+ <tr>
2815
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2816
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2817
+ </td>
2818
+ </tr>
2819
+ <tr>
2820
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2821
+ <td>the <a class="link" href="gtk3-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>
2822
+ </td>
2823
+ </tr>
2824
+ </tbody>
2825
+ </table></div>
2826
+ <p class="since">Since 2.10</p>
2827
+ </div>
2828
+ <hr>
2829
+ <div class="refsect2">
2830
+ <a name="gtk-text-buffer-get-deserialize-formats"></a><h3>gtk_text_buffer_get_deserialize_formats ()</h3>
2831
+ <pre class="programlisting"><a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> * gtk_text_buffer_get_deserialize_formats
2832
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2833
+ <em class="parameter"><code><span class="type">gint</span> *n_formats</code></em>);</pre>
2834
+ <p>
2835
+ This function returns the rich text deserialize formats registered
2836
+ 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
2837
+ <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>
2838
+ </p>
2839
+ <div class="variablelist"><table border="0" class="variablelist">
2840
+ <colgroup>
2841
+ <col align="left" valign="top">
2842
+ <col>
2843
+ </colgroup>
2844
+ <tbody>
2845
+ <tr>
2846
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2847
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2848
+ </td>
2849
+ </tr>
2850
+ <tr>
2851
+ <td><p><span class="term"><em class="parameter"><code>n_formats</code></em> :</span></p></td>
2852
+ <td>return location for the number of formats</td>
2853
+ </tr>
2854
+ <tr>
2855
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2856
+ <td>an array of
2857
+ <a href="../gdk3/gdk3-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>
2858
+ </td>
2859
+ </tr>
2860
+ </tbody>
2861
+ </table></div>
2862
+ <p class="since">Since 2.10</p>
2863
+ </div>
2864
+ <hr>
2865
+ <div class="refsect2">
2866
+ <a name="gtk-text-buffer-get-paste-target-list"></a><h3>gtk_text_buffer_get_paste_target_list ()</h3>
2867
+ <pre class="programlisting"><a class="link" href="gtk3-Selections.html#GtkTargetList"><span class="returnvalue">GtkTargetList</span></a> * gtk_text_buffer_get_paste_target_list
2868
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
2869
+ <p>
2870
+ This function returns the list of targets this text buffer supports
2871
+ for pasting and as DND destination. The targets in the list are
2872
+ 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,
2873
+ using <a class="link" href="gtk3-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
2874
+ <a class="link" href="gtk3-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>.
2875
+ </p>
2876
+ <div class="variablelist"><table border="0" class="variablelist">
2877
+ <colgroup>
2878
+ <col align="left" valign="top">
2879
+ <col>
2880
+ </colgroup>
2881
+ <tbody>
2882
+ <tr>
2883
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2884
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2885
+ </td>
2886
+ </tr>
2887
+ <tr>
2888
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2889
+ <td>the <a class="link" href="gtk3-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>
2890
+ </td>
2891
+ </tr>
2892
+ </tbody>
2893
+ </table></div>
2894
+ <p class="since">Since 2.10</p>
2895
+ </div>
2896
+ <hr>
2897
+ <div class="refsect2">
2898
+ <a name="gtk-text-buffer-get-serialize-formats"></a><h3>gtk_text_buffer_get_serialize_formats ()</h3>
2899
+ <pre class="programlisting"><a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> * gtk_text_buffer_get_serialize_formats
2900
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2901
+ <em class="parameter"><code><span class="type">gint</span> *n_formats</code></em>);</pre>
2902
+ <p>
2903
+ This function returns the rich text serialize formats registered
2904
+ 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
2905
+ <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>
2906
+ </p>
2907
+ <div class="variablelist"><table border="0" class="variablelist">
2908
+ <colgroup>
2909
+ <col align="left" valign="top">
2910
+ <col>
2911
+ </colgroup>
2912
+ <tbody>
2913
+ <tr>
2914
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2915
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2916
+ </td>
2917
+ </tr>
2918
+ <tr>
2919
+ <td><p><span class="term"><em class="parameter"><code>n_formats</code></em> :</span></p></td>
2920
+ <td>return location for the number of formats</td>
2921
+ </tr>
2922
+ <tr>
2923
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2924
+ <td>an array of
2925
+ <a href="../gdk3/gdk3-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>
2926
+ </td>
2927
+ </tr>
2928
+ </tbody>
2929
+ </table></div>
2930
+ <p class="since">Since 2.10</p>
2931
+ </div>
2932
+ <hr>
2933
+ <div class="refsect2">
2934
+ <a name="gtk-text-buffer-register-deserialize-format"></a><h3>gtk_text_buffer_register_deserialize_format ()</h3>
2935
+ <pre class="programlisting"><a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> gtk_text_buffer_register_deserialize_format
2936
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2937
+ <em class="parameter"><code>const <span class="type">gchar</span> *mime_type</code></em>,
2938
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html#GtkTextBufferDeserializeFunc" title="GtkTextBufferDeserializeFunc ()"><span class="type">GtkTextBufferDeserializeFunc</span></a> function</code></em>,
2939
+ <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
2940
+ <em class="parameter"><code><span class="type">GDestroyNotify</span> user_data_destroy</code></em>);</pre>
2941
+ <p>
2942
+ This function registers a rich text deserialization <em class="parameter"><code>function</code></em> along with
2943
+ its <em class="parameter"><code>mime_type</code></em> with the passed <em class="parameter"><code>buffer</code></em>.
2944
+ </p>
2945
+ <div class="variablelist"><table border="0" class="variablelist">
2946
+ <colgroup>
2947
+ <col align="left" valign="top">
2948
+ <col>
2949
+ </colgroup>
2950
+ <tbody>
2951
+ <tr>
2952
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
2953
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
2954
+ </td>
2955
+ </tr>
2956
+ <tr>
2957
+ <td><p><span class="term"><em class="parameter"><code>mime_type</code></em> :</span></p></td>
2958
+ <td>the format's mime-type</td>
2959
+ </tr>
2960
+ <tr>
2961
+ <td><p><span class="term"><em class="parameter"><code>function</code></em> :</span></p></td>
2962
+ <td>the deserialize function to register</td>
2963
+ </tr>
2964
+ <tr>
2965
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2966
+ <td>
2967
+ <em class="parameter"><code>function</code></em>'s user_data</td>
2968
+ </tr>
2969
+ <tr>
2970
+ <td><p><span class="term"><em class="parameter"><code>user_data_destroy</code></em> :</span></p></td>
2971
+ <td>a function to call when <em class="parameter"><code>user_data</code></em> is no longer needed</td>
2972
+ </tr>
2973
+ <tr>
2974
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2975
+ <td>the <a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> that corresponds to the
2976
+ 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>
2977
+ </td>
2978
+ </tr>
2979
+ </tbody>
2980
+ </table></div>
2981
+ <p class="since">Since 2.10</p>
2982
+ </div>
2983
+ <hr>
2984
+ <div class="refsect2">
2985
+ <a name="gtk-text-buffer-register-deserialize-tagset"></a><h3>gtk_text_buffer_register_deserialize_tagset ()</h3>
2986
+ <pre class="programlisting"><a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> gtk_text_buffer_register_deserialize_tagset
2987
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
2988
+ <em class="parameter"><code>const <span class="type">gchar</span> *tagset_name</code></em>);</pre>
2989
+ <p>
2990
+ This function registers GTK+'s internal rich text serialization
2991
+ format with the passed <em class="parameter"><code>buffer</code></em>. See
2992
+ <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.
2993
+ </p>
2994
+ <div class="variablelist"><table border="0" class="variablelist">
2995
+ <colgroup>
2996
+ <col align="left" valign="top">
2997
+ <col>
2998
+ </colgroup>
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>tagset_name</code></em> :</span></p></td>
3007
+ <td>an optional tagset name, on <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.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>
3008
+ </td>
3009
+ </tr>
3010
+ <tr>
3011
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3012
+ <td>the <a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> that corresponds to the
3013
+ 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>
3014
+ </td>
3015
+ </tr>
3016
+ </tbody>
3017
+ </table></div>
3018
+ <p class="since">Since 2.10</p>
3019
+ </div>
3020
+ <hr>
3021
+ <div class="refsect2">
3022
+ <a name="gtk-text-buffer-register-serialize-format"></a><h3>gtk_text_buffer_register_serialize_format ()</h3>
3023
+ <pre class="programlisting"><a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> gtk_text_buffer_register_serialize_format
3024
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
3025
+ <em class="parameter"><code>const <span class="type">gchar</span> *mime_type</code></em>,
3026
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html#GtkTextBufferSerializeFunc" title="GtkTextBufferSerializeFunc ()"><span class="type">GtkTextBufferSerializeFunc</span></a> function</code></em>,
3027
+ <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
3028
+ <em class="parameter"><code><span class="type">GDestroyNotify</span> user_data_destroy</code></em>);</pre>
3029
+ <p>
3030
+ This function registers a rich text serialization <em class="parameter"><code>function</code></em> along with
3031
+ its <em class="parameter"><code>mime_type</code></em> with the passed <em class="parameter"><code>buffer</code></em>.
3032
+ </p>
3033
+ <div class="variablelist"><table border="0" class="variablelist">
3034
+ <colgroup>
3035
+ <col align="left" valign="top">
3036
+ <col>
3037
+ </colgroup>
3038
+ <tbody>
3039
+ <tr>
3040
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
3041
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
3042
+ </td>
3043
+ </tr>
3044
+ <tr>
3045
+ <td><p><span class="term"><em class="parameter"><code>mime_type</code></em> :</span></p></td>
3046
+ <td>the format's mime-type</td>
3047
+ </tr>
3048
+ <tr>
3049
+ <td><p><span class="term"><em class="parameter"><code>function</code></em> :</span></p></td>
3050
+ <td>the serialize function to register</td>
3051
+ </tr>
3052
+ <tr>
3053
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3054
+ <td>
3055
+ <code class="literal">function</code>'s user_data</td>
3056
+ </tr>
3057
+ <tr>
3058
+ <td><p><span class="term"><em class="parameter"><code>user_data_destroy</code></em> :</span></p></td>
3059
+ <td>a function to call when <em class="parameter"><code>user_data</code></em> is no longer needed</td>
3060
+ </tr>
3061
+ <tr>
3062
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3063
+ <td>the <a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> that corresponds to the
3064
+ 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>
3065
+ </td>
3066
+ </tr>
3067
+ </tbody>
3068
+ </table></div>
3069
+ <p class="since">Since 2.10</p>
3070
+ </div>
3071
+ <hr>
3072
+ <div class="refsect2">
3073
+ <a name="gtk-text-buffer-register-serialize-tagset"></a><h3>gtk_text_buffer_register_serialize_tagset ()</h3>
3074
+ <pre class="programlisting"><a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> gtk_text_buffer_register_serialize_tagset
3075
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
3076
+ <em class="parameter"><code>const <span class="type">gchar</span> *tagset_name</code></em>);</pre>
3077
+ <p>
3078
+ This function registers GTK+'s internal rich text serialization
3079
+ format with the passed <em class="parameter"><code>buffer</code></em>. The internal format does not comply
3080
+ to any standard rich text format and only works between <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
3081
+ instances. It is capable of serializing all of a text buffer's tags
3082
+ and embedded pixbufs.
3083
+ </p>
3084
+ <p>
3085
+ This function is just a wrapper around
3086
+ <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
3087
+ for registering is "application/x-gtk-text-buffer-rich-text", or
3088
+ "application/x-gtk-text-buffer-rich-text;format=<em class="parameter"><code>tagset_name</code></em>" if a
3089
+ <em class="parameter"><code>tagset_name</code></em> was passed.
3090
+ </p>
3091
+ <p>
3092
+ The <em class="parameter"><code>tagset_name</code></em> can be used to restrict the transfer of rich text
3093
+ to buffers with compatible sets of tags, in order to avoid unknown
3094
+ tags from being pasted. It is probably the common case to pass an
3095
+ identifier != <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> here, since the <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> tagset requires the
3096
+ receiving buffer to deal with with pasting of arbitrary tags.
3097
+ </p>
3098
+ <div class="variablelist"><table border="0" class="variablelist">
3099
+ <colgroup>
3100
+ <col align="left" valign="top">
3101
+ <col>
3102
+ </colgroup>
3103
+ <tbody>
3104
+ <tr>
3105
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
3106
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
3107
+ </td>
3108
+ </tr>
3109
+ <tr>
3110
+ <td><p><span class="term"><em class="parameter"><code>tagset_name</code></em> :</span></p></td>
3111
+ <td>an optional tagset name, on <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.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>
3112
+ </td>
3113
+ </tr>
3114
+ <tr>
3115
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3116
+ <td>the <a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> that corresponds to the
3117
+ 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>
3118
+ </td>
3119
+ </tr>
3120
+ </tbody>
3121
+ </table></div>
3122
+ <p class="since">Since 2.10</p>
3123
+ </div>
3124
+ <hr>
3125
+ <div class="refsect2">
3126
+ <a name="GtkTextBufferSerializeFunc"></a><h3>GtkTextBufferSerializeFunc ()</h3>
3127
+ <pre class="programlisting"><span class="returnvalue">guint8</span> * (*GtkTextBufferSerializeFunc) (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *register_buffer</code></em>,
3128
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
3129
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
3130
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
3131
+ <em class="parameter"><code><span class="type">gsize</span> *length</code></em>,
3132
+ <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
3133
+ <p>
3134
+ A function that is called to serialize the content of a text buffer.
3135
+ It must return the serialized form of the content.
3136
+ </p>
3137
+ <div class="variablelist"><table border="0" class="variablelist">
3138
+ <colgroup>
3139
+ <col align="left" valign="top">
3140
+ <col>
3141
+ </colgroup>
3142
+ <tbody>
3143
+ <tr>
3144
+ <td><p><span class="term"><em class="parameter"><code>register_buffer</code></em> :</span></p></td>
3145
+ <td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> for which the format is registered</td>
3146
+ </tr>
3147
+ <tr>
3148
+ <td><p><span class="term"><em class="parameter"><code>content_buffer</code></em> :</span></p></td>
3149
+ <td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> to serialize</td>
3150
+ </tr>
3151
+ <tr>
3152
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
3153
+ <td>start of the block of text to serialize</td>
3154
+ </tr>
3155
+ <tr>
3156
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
3157
+ <td>end of the block of text to serialize</td>
3158
+ </tr>
3159
+ <tr>
3160
+ <td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
3161
+ <td>Return location for the length of the serialized data</td>
3162
+ </tr>
3163
+ <tr>
3164
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3165
+ <td>user data that was specified when registering the format</td>
3166
+ </tr>
3167
+ <tr>
3168
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3169
+ <td>a newly-allocated array of guint8 which contains the serialized
3170
+ data, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if an error occurred</td>
3171
+ </tr>
3172
+ </tbody>
3173
+ </table></div>
3174
+ </div>
3175
+ <hr>
3176
+ <div class="refsect2">
3177
+ <a name="gtk-text-buffer-serialize"></a><h3>gtk_text_buffer_serialize ()</h3>
3178
+ <pre class="programlisting"><span class="returnvalue">guint8</span> * 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>,
3179
+ <em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
3180
+ <em class="parameter"><code><a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
3181
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
3182
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
3183
+ <em class="parameter"><code><span class="type">gsize</span> *length</code></em>);</pre>
3184
+ <p>
3185
+ This function serializes the portion of text between <em class="parameter"><code>start</code></em>
3186
+ and <em class="parameter"><code>end</code></em> in the rich text format represented by <em class="parameter"><code>format</code></em>.
3187
+ </p>
3188
+ <p>
3189
+ <em class="parameter"><code>format</code></em>s to be used must be registered using
3190
+ <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
3191
+ <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.
3192
+ </p>
3193
+ <div class="variablelist"><table border="0" class="variablelist">
3194
+ <colgroup>
3195
+ <col align="left" valign="top">
3196
+ <col>
3197
+ </colgroup>
3198
+ <tbody>
3199
+ <tr>
3200
+ <td><p><span class="term"><em class="parameter"><code>register_buffer</code></em> :</span></p></td>
3201
+ <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>
3202
+ </tr>
3203
+ <tr>
3204
+ <td><p><span class="term"><em class="parameter"><code>content_buffer</code></em> :</span></p></td>
3205
+ <td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> to serialize</td>
3206
+ </tr>
3207
+ <tr>
3208
+ <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
3209
+ <td>the rich text format to use for serializing</td>
3210
+ </tr>
3211
+ <tr>
3212
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
3213
+ <td>start of block of text to serialize</td>
3214
+ </tr>
3215
+ <tr>
3216
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
3217
+ <td>end of block of test to serialize</td>
3218
+ </tr>
3219
+ <tr>
3220
+ <td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
3221
+ <td>return location for the length of the serialized data</td>
3222
+ </tr>
3223
+ <tr>
3224
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3225
+ <td>the serialized
3226
+ 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>
3227
+ </td>
3228
+ </tr>
3229
+ </tbody>
3230
+ </table></div>
3231
+ <p class="since">Since 2.10</p>
3232
+ </div>
3233
+ <hr>
3234
+ <div class="refsect2">
3235
+ <a name="gtk-text-buffer-unregister-deserialize-format"></a><h3>gtk_text_buffer_unregister_deserialize_format ()</h3>
3236
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_unregister_deserialize_format
3237
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
3238
+ <em class="parameter"><code><a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>);</pre>
3239
+ <p>
3240
+ This function unregisters a rich text format that was previously
3241
+ 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
3242
+ <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>.
3243
+ </p>
3244
+ <div class="variablelist"><table border="0" class="variablelist">
3245
+ <colgroup>
3246
+ <col align="left" valign="top">
3247
+ <col>
3248
+ </colgroup>
3249
+ <tbody>
3250
+ <tr>
3251
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
3252
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
3253
+ </td>
3254
+ </tr>
3255
+ <tr>
3256
+ <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
3257
+ <td>a <a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> representing a registered rich text format.</td>
3258
+ </tr>
3259
+ </tbody>
3260
+ </table></div>
3261
+ <p class="since">Since 2.10</p>
3262
+ </div>
3263
+ <hr>
3264
+ <div class="refsect2">
3265
+ <a name="gtk-text-buffer-unregister-serialize-format"></a><h3>gtk_text_buffer_unregister_serialize_format ()</h3>
3266
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_unregister_serialize_format
3267
+ (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
3268
+ <em class="parameter"><code><a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>);</pre>
3269
+ <p>
3270
+ This function unregisters a rich text format that was previously
3271
+ 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
3272
+ <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>
3273
+ </p>
3274
+ <div class="variablelist"><table border="0" class="variablelist">
3275
+ <colgroup>
3276
+ <col align="left" valign="top">
3277
+ <col>
3278
+ </colgroup>
3279
+ <tbody>
3280
+ <tr>
3281
+ <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
3282
+ <td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
3283
+ </td>
3284
+ </tr>
3285
+ <tr>
3286
+ <td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
3287
+ <td>a <a href="../gdk3/gdk3-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> representing a registered rich text format.</td>
3288
+ </tr>
3289
+ </tbody>
3290
+ </table></div>
3291
+ <p class="since">Since 2.10</p>
3292
+ </div>
3293
+ </div>
3294
+ <div class="refsect1">
3295
+ <a name="GtkTextBuffer.property-details"></a><h2>Property Details</h2>
3296
+ <div class="refsect2">
3297
+ <a name="GtkTextBuffer--copy-target-list"></a><h3>The <code class="literal">"copy-target-list"</code> property</h3>
3298
+ <pre class="programlisting"> "copy-target-list" <a class="link" href="gtk3-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a>* : Read</pre>
3299
+ <p>
3300
+ The list of targets this buffer supports for clipboard copying
3301
+ and as DND source.
3302
+ </p>
3303
+ <p class="since">Since 2.10</p>
3304
+ </div>
3305
+ <hr>
3306
+ <div class="refsect2">
3307
+ <a name="GtkTextBuffer--cursor-position"></a><h3>The <code class="literal">"cursor-position"</code> property</h3>
3308
+ <pre class="programlisting"> "cursor-position" <span class="type">gint</span> : Read</pre>
3309
+ <p>
3310
+ The position of the insert mark (as offset from the beginning
3311
+ of the buffer). It is useful for getting notified when the
3312
+ cursor moves.
3313
+ </p>
3314
+ <p>Allowed values: &gt;= 0</p>
3315
+ <p>Default value: 0</p>
3316
+ <p class="since">Since 2.10</p>
3317
+ </div>
3318
+ <hr>
3319
+ <div class="refsect2">
3320
+ <a name="GtkTextBuffer--has-selection"></a><h3>The <code class="literal">"has-selection"</code> property</h3>
3321
+ <pre class="programlisting"> "has-selection" <span class="type">gboolean</span> : Read</pre>
3322
+ <p>
3323
+ Whether the buffer has some text currently selected.
3324
+ </p>
3325
+ <p>Default value: FALSE</p>
3326
+ <p class="since">Since 2.10</p>
3327
+ </div>
3328
+ <hr>
3329
+ <div class="refsect2">
3330
+ <a name="GtkTextBuffer--paste-target-list"></a><h3>The <code class="literal">"paste-target-list"</code> property</h3>
3331
+ <pre class="programlisting"> "paste-target-list" <a class="link" href="gtk3-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a>* : Read</pre>
3332
+ <p>
3333
+ The list of targets this buffer supports for clipboard pasting
3334
+ and as DND destination.
3335
+ </p>
3336
+ <p class="since">Since 2.10</p>
3337
+ </div>
3338
+ <hr>
3339
+ <div class="refsect2">
3340
+ <a name="GtkTextBuffer--tag-table"></a><h3>The <code class="literal">"tag-table"</code> property</h3>
3341
+ <pre class="programlisting"> "tag-table" <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>* : Read / Write / Construct Only</pre>
3342
+ <p>Text Tag Table.</p>
3343
+ </div>
3344
+ <hr>
3345
+ <div class="refsect2">
3346
+ <a name="GtkTextBuffer--text"></a><h3>The <code class="literal">"text"</code> property</h3>
3347
+ <pre class="programlisting"> "text" <span class="type">gchar</span>* : Read / Write</pre>
3348
+ <p>
3349
+ The text content of the buffer. Without child widgets and images,
3350
+ 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.
3351
+ </p>
3352
+ <p>Default value: ""</p>
3353
+ <p class="since">Since 2.8</p>
3354
+ </div>
3355
+ </div>
3356
+ <div class="refsect1">
3357
+ <a name="GtkTextBuffer.signal-details"></a><h2>Signal Details</h2>
3358
+ <div class="refsect2">
3359
+ <a name="GtkTextBuffer-apply-tag"></a><h3>The <code class="literal">"apply-tag"</code> signal</h3>
3360
+ <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,
3361
+ <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag,
3362
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start,
3363
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end,
3364
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
3365
+ <p>
3366
+ The ::apply-tag signal is emitted to apply a tag to a
3367
+ range of text in a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
3368
+ Applying actually occurs in the default handler.
3369
+ </p>
3370
+ <p>
3371
+ Note that if your handler runs before the default handler it must not
3372
+ invalidate the <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> iters (or has to revalidate them).
3373
+ </p>
3374
+ <p>
3375
+ See also:
3376
+ <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>,
3377
+ <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>,
3378
+ <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>.
3379
+ </p>
3380
+ <div class="variablelist"><table border="0" class="variablelist">
3381
+ <colgroup>
3382
+ <col align="left" valign="top">
3383
+ <col>
3384
+ </colgroup>
3385
+ <tbody>
3386
+ <tr>
3387
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3388
+ <td>the object which received the signal</td>
3389
+ </tr>
3390
+ <tr>
3391
+ <td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
3392
+ <td>the applied tag</td>
3393
+ </tr>
3394
+ <tr>
3395
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
3396
+ <td>the start of the range the tag is applied to</td>
3397
+ </tr>
3398
+ <tr>
3399
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
3400
+ <td>the end of the range the tag is applied to</td>
3401
+ </tr>
3402
+ <tr>
3403
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3404
+ <td>user data set when the signal handler was connected.</td>
3405
+ </tr>
3406
+ </tbody>
3407
+ </table></div>
3408
+ </div>
3409
+ <hr>
3410
+ <div class="refsect2">
3411
+ <a name="GtkTextBuffer-begin-user-action"></a><h3>The <code class="literal">"begin-user-action"</code> signal</h3>
3412
+ <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,
3413
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
3414
+ <p>
3415
+ The ::begin-user-action signal is emitted at the beginning of a single
3416
+ user-visible operation on a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
3417
+ </p>
3418
+ <p>
3419
+ See also:
3420
+ <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>,
3421
+ <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>,
3422
+ <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>,
3423
+ <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>,
3424
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-backspace" title="gtk_text_buffer_backspace ()"><code class="function">gtk_text_buffer_backspace()</code></a>,
3425
+ <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>.
3426
+ </p>
3427
+ <div class="variablelist"><table border="0" class="variablelist">
3428
+ <colgroup>
3429
+ <col align="left" valign="top">
3430
+ <col>
3431
+ </colgroup>
3432
+ <tbody>
3433
+ <tr>
3434
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3435
+ <td>the object which received the signal</td>
3436
+ </tr>
3437
+ <tr>
3438
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3439
+ <td>user data set when the signal handler was connected.</td>
3440
+ </tr>
3441
+ </tbody>
3442
+ </table></div>
3443
+ </div>
3444
+ <hr>
3445
+ <div class="refsect2">
3446
+ <a name="GtkTextBuffer-changed"></a><h3>The <code class="literal">"changed"</code> signal</h3>
3447
+ <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,
3448
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
3449
+ <p>
3450
+ The ::changed signal is emitted when the content of a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
3451
+ has changed.
3452
+ </p>
3453
+ <div class="variablelist"><table border="0" class="variablelist">
3454
+ <colgroup>
3455
+ <col align="left" valign="top">
3456
+ <col>
3457
+ </colgroup>
3458
+ <tbody>
3459
+ <tr>
3460
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3461
+ <td>the object which received the signal</td>
3462
+ </tr>
3463
+ <tr>
3464
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3465
+ <td>user data set when the signal handler was connected.</td>
3466
+ </tr>
3467
+ </tbody>
3468
+ </table></div>
3469
+ </div>
3470
+ <hr>
3471
+ <div class="refsect2">
3472
+ <a name="GtkTextBuffer-delete-range"></a><h3>The <code class="literal">"delete-range"</code> signal</h3>
3473
+ <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,
3474
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start,
3475
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end,
3476
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
3477
+ <p>
3478
+ The ::delete-range signal is emitted to delete a range
3479
+ from a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
3480
+ </p>
3481
+ <p>
3482
+ Note that if your handler runs before the default handler it must not
3483
+ invalidate the <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> iters (or has to revalidate them).
3484
+ The default signal handler revalidates the <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> iters to
3485
+ both point point to the location where text was deleted. Handlers
3486
+ which run after the default handler (see <code class="function">g_signal_connect_after()</code>)
3487
+ do not have access to the deleted text.
3488
+ </p>
3489
+ <p>
3490
+ 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>.
3491
+ </p>
3492
+ <div class="variablelist"><table border="0" class="variablelist">
3493
+ <colgroup>
3494
+ <col align="left" valign="top">
3495
+ <col>
3496
+ </colgroup>
3497
+ <tbody>
3498
+ <tr>
3499
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3500
+ <td>the object which received the signal</td>
3501
+ </tr>
3502
+ <tr>
3503
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
3504
+ <td>the start of the range to be deleted</td>
3505
+ </tr>
3506
+ <tr>
3507
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
3508
+ <td>the end of the range to be deleted</td>
3509
+ </tr>
3510
+ <tr>
3511
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3512
+ <td>user data set when the signal handler was connected.</td>
3513
+ </tr>
3514
+ </tbody>
3515
+ </table></div>
3516
+ </div>
3517
+ <hr>
3518
+ <div class="refsect2">
3519
+ <a name="GtkTextBuffer-end-user-action"></a><h3>The <code class="literal">"end-user-action"</code> signal</h3>
3520
+ <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,
3521
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
3522
+ <p>
3523
+ The ::end-user-action signal is emitted at the end of a single
3524
+ user-visible operation on the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
3525
+ </p>
3526
+ <p>
3527
+ See also:
3528
+ <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>,
3529
+ <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>,
3530
+ <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>,
3531
+ <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>,
3532
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-backspace" title="gtk_text_buffer_backspace ()"><code class="function">gtk_text_buffer_backspace()</code></a>,
3533
+ <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>,
3534
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-backspace" title="gtk_text_buffer_backspace ()"><code class="function">gtk_text_buffer_backspace()</code></a>.
3535
+ </p>
3536
+ <div class="variablelist"><table border="0" class="variablelist">
3537
+ <colgroup>
3538
+ <col align="left" valign="top">
3539
+ <col>
3540
+ </colgroup>
3541
+ <tbody>
3542
+ <tr>
3543
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3544
+ <td>the object which received the signal</td>
3545
+ </tr>
3546
+ <tr>
3547
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3548
+ <td>user data set when the signal handler was connected.</td>
3549
+ </tr>
3550
+ </tbody>
3551
+ </table></div>
3552
+ </div>
3553
+ <hr>
3554
+ <div class="refsect2">
3555
+ <a name="GtkTextBuffer-insert-child-anchor"></a><h3>The <code class="literal">"insert-child-anchor"</code> signal</h3>
3556
+ <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,
3557
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *location,
3558
+ <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor,
3559
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
3560
+ <p>
3561
+ The ::insert-child-anchor signal is emitted to insert a
3562
+ <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>.
3563
+ Insertion actually occurs in the default handler.
3564
+ </p>
3565
+ <p>
3566
+ Note that if your handler runs before the default handler it must
3567
+ not invalidate the <em class="parameter"><code>location</code></em> iter (or has to revalidate it).
3568
+ The default signal handler revalidates it to be placed after the
3569
+ inserted <em class="parameter"><code>anchor</code></em>.
3570
+ </p>
3571
+ <p>
3572
+ 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>.
3573
+ </p>
3574
+ <div class="variablelist"><table border="0" class="variablelist">
3575
+ <colgroup>
3576
+ <col align="left" valign="top">
3577
+ <col>
3578
+ </colgroup>
3579
+ <tbody>
3580
+ <tr>
3581
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3582
+ <td>the object which received the signal</td>
3583
+ </tr>
3584
+ <tr>
3585
+ <td><p><span class="term"><em class="parameter"><code>location</code></em> :</span></p></td>
3586
+ <td>position to insert <em class="parameter"><code>anchor</code></em> in <em class="parameter"><code>textbuffer</code></em>
3587
+ </td>
3588
+ </tr>
3589
+ <tr>
3590
+ <td><p><span class="term"><em class="parameter"><code>anchor</code></em> :</span></p></td>
3591
+ <td>the <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> to be inserted</td>
3592
+ </tr>
3593
+ <tr>
3594
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3595
+ <td>user data set when the signal handler was connected.</td>
3596
+ </tr>
3597
+ </tbody>
3598
+ </table></div>
3599
+ </div>
3600
+ <hr>
3601
+ <div class="refsect2">
3602
+ <a name="GtkTextBuffer-insert-pixbuf"></a><h3>The <code class="literal">"insert-pixbuf"</code> signal</h3>
3603
+ <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,
3604
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *location,
3605
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf,
3606
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
3607
+ <p>
3608
+ 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>
3609
+ in a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>. Insertion actually occurs in the default handler.
3610
+ </p>
3611
+ <p>
3612
+ Note that if your handler runs before the default handler it must not
3613
+ invalidate the <em class="parameter"><code>location</code></em> iter (or has to revalidate it).
3614
+ The default signal handler revalidates it to be placed after the
3615
+ inserted <em class="parameter"><code>pixbuf</code></em>.
3616
+ </p>
3617
+ <p>
3618
+ 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>.
3619
+ </p>
3620
+ <div class="variablelist"><table border="0" class="variablelist">
3621
+ <colgroup>
3622
+ <col align="left" valign="top">
3623
+ <col>
3624
+ </colgroup>
3625
+ <tbody>
3626
+ <tr>
3627
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3628
+ <td>the object which received the signal</td>
3629
+ </tr>
3630
+ <tr>
3631
+ <td><p><span class="term"><em class="parameter"><code>location</code></em> :</span></p></td>
3632
+ <td>position to insert <em class="parameter"><code>pixbuf</code></em> in <em class="parameter"><code>textbuffer</code></em>
3633
+ </td>
3634
+ </tr>
3635
+ <tr>
3636
+ <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
3637
+ <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>
3638
+ </tr>
3639
+ <tr>
3640
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3641
+ <td>user data set when the signal handler was connected.</td>
3642
+ </tr>
3643
+ </tbody>
3644
+ </table></div>
3645
+ </div>
3646
+ <hr>
3647
+ <div class="refsect2">
3648
+ <a name="GtkTextBuffer-insert-text"></a><h3>The <code class="literal">"insert-text"</code> signal</h3>
3649
+ <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,
3650
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *location,
3651
+ <span class="type">gchar</span> *text,
3652
+ <span class="type">gint</span> len,
3653
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
3654
+ <p>
3655
+ 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>.
3656
+ Insertion actually occurs in the default handler.
3657
+ </p>
3658
+ <p>
3659
+ Note that if your handler runs before the default handler it must not
3660
+ invalidate the <em class="parameter"><code>location</code></em> iter (or has to revalidate it).
3661
+ The default signal handler revalidates it to point to the end of the
3662
+ inserted text.
3663
+ </p>
3664
+ <p>
3665
+ See also:
3666
+ <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert" title="gtk_text_buffer_insert ()"><code class="function">gtk_text_buffer_insert()</code></a>,
3667
+ <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>.
3668
+ </p>
3669
+ <div class="variablelist"><table border="0" class="variablelist">
3670
+ <colgroup>
3671
+ <col align="left" valign="top">
3672
+ <col>
3673
+ </colgroup>
3674
+ <tbody>
3675
+ <tr>
3676
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3677
+ <td>the object which received the signal</td>
3678
+ </tr>
3679
+ <tr>
3680
+ <td><p><span class="term"><em class="parameter"><code>location</code></em> :</span></p></td>
3681
+ <td>position to insert <em class="parameter"><code>text</code></em> in <em class="parameter"><code>textbuffer</code></em>
3682
+ </td>
3683
+ </tr>
3684
+ <tr>
3685
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
3686
+ <td>the UTF-8 text to be inserted</td>
3687
+ </tr>
3688
+ <tr>
3689
+ <td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
3690
+ <td>length of the inserted text in bytes</td>
3691
+ </tr>
3692
+ <tr>
3693
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3694
+ <td>user data set when the signal handler was connected.</td>
3695
+ </tr>
3696
+ </tbody>
3697
+ </table></div>
3698
+ </div>
3699
+ <hr>
3700
+ <div class="refsect2">
3701
+ <a name="GtkTextBuffer-mark-deleted"></a><h3>The <code class="literal">"mark-deleted"</code> signal</h3>
3702
+ <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,
3703
+ <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark,
3704
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
3705
+ <p>
3706
+ The ::mark-deleted signal is emitted as notification
3707
+ after a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> is deleted.
3708
+ </p>
3709
+ <p>
3710
+ See also:
3711
+ <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>.
3712
+ </p>
3713
+ <div class="variablelist"><table border="0" class="variablelist">
3714
+ <colgroup>
3715
+ <col align="left" valign="top">
3716
+ <col>
3717
+ </colgroup>
3718
+ <tbody>
3719
+ <tr>
3720
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3721
+ <td>the object which received the signal</td>
3722
+ </tr>
3723
+ <tr>
3724
+ <td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
3725
+ <td>The mark that was deleted</td>
3726
+ </tr>
3727
+ <tr>
3728
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3729
+ <td>user data set when the signal handler was connected.</td>
3730
+ </tr>
3731
+ </tbody>
3732
+ </table></div>
3733
+ </div>
3734
+ <hr>
3735
+ <div class="refsect2">
3736
+ <a name="GtkTextBuffer-mark-set"></a><h3>The <code class="literal">"mark-set"</code> signal</h3>
3737
+ <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,
3738
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *location,
3739
+ <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark,
3740
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
3741
+ <p>
3742
+ The ::mark-set signal is emitted as notification
3743
+ after a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> is set.
3744
+ </p>
3745
+ <p>
3746
+ See also:
3747
+ <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>,
3748
+ <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>.
3749
+ </p>
3750
+ <div class="variablelist"><table border="0" class="variablelist">
3751
+ <colgroup>
3752
+ <col align="left" valign="top">
3753
+ <col>
3754
+ </colgroup>
3755
+ <tbody>
3756
+ <tr>
3757
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3758
+ <td>the object which received the signal</td>
3759
+ </tr>
3760
+ <tr>
3761
+ <td><p><span class="term"><em class="parameter"><code>location</code></em> :</span></p></td>
3762
+ <td>The location of <em class="parameter"><code>mark</code></em> in <em class="parameter"><code>textbuffer</code></em>
3763
+ </td>
3764
+ </tr>
3765
+ <tr>
3766
+ <td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
3767
+ <td>The mark that is set</td>
3768
+ </tr>
3769
+ <tr>
3770
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3771
+ <td>user data set when the signal handler was connected.</td>
3772
+ </tr>
3773
+ </tbody>
3774
+ </table></div>
3775
+ </div>
3776
+ <hr>
3777
+ <div class="refsect2">
3778
+ <a name="GtkTextBuffer-modified-changed"></a><h3>The <code class="literal">"modified-changed"</code> signal</h3>
3779
+ <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,
3780
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
3781
+ <p>
3782
+ The ::modified-changed signal is emitted when the modified bit of a
3783
+ <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> flips.
3784
+ </p>
3785
+ <p>
3786
+ See also:
3787
+ <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>.
3788
+ </p>
3789
+ <div class="variablelist"><table border="0" class="variablelist">
3790
+ <colgroup>
3791
+ <col align="left" valign="top">
3792
+ <col>
3793
+ </colgroup>
3794
+ <tbody>
3795
+ <tr>
3796
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3797
+ <td>the object which received the signal</td>
3798
+ </tr>
3799
+ <tr>
3800
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3801
+ <td>user data set when the signal handler was connected.</td>
3802
+ </tr>
3803
+ </tbody>
3804
+ </table></div>
3805
+ </div>
3806
+ <hr>
3807
+ <div class="refsect2">
3808
+ <a name="GtkTextBuffer-paste-done"></a><h3>The <code class="literal">"paste-done"</code> signal</h3>
3809
+ <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,
3810
+ <a class="link" href="gtk3-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *arg1,
3811
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
3812
+ <p>
3813
+ The paste-done signal is emitted after paste operation has been completed.
3814
+ This is useful to properly scroll the view to the end of the pasted text.
3815
+ 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.
3816
+ </p>
3817
+ <div class="variablelist"><table border="0" class="variablelist">
3818
+ <colgroup>
3819
+ <col align="left" valign="top">
3820
+ <col>
3821
+ </colgroup>
3822
+ <tbody>
3823
+ <tr>
3824
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3825
+ <td>the object which received the signal</td>
3826
+ </tr>
3827
+ <tr>
3828
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3829
+ <td>user data set when the signal handler was connected.</td>
3830
+ </tr>
3831
+ </tbody>
3832
+ </table></div>
3833
+ <p class="since">Since 2.16</p>
3834
+ </div>
3835
+ <hr>
3836
+ <div class="refsect2">
3837
+ <a name="GtkTextBuffer-remove-tag"></a><h3>The <code class="literal">"remove-tag"</code> signal</h3>
3838
+ <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,
3839
+ <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag,
3840
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start,
3841
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end,
3842
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
3843
+ <p>
3844
+ The ::remove-tag signal is emitted to remove all occurrences of <em class="parameter"><code>tag</code></em> from
3845
+ a range of text in a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
3846
+ Removal actually occurs in the default handler.
3847
+ </p>
3848
+ <p>
3849
+ Note that if your handler runs before the default handler it must not
3850
+ invalidate the <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> iters (or has to revalidate them).
3851
+ </p>
3852
+ <p>
3853
+ See also:
3854
+ <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>.
3855
+ </p>
3856
+ <div class="variablelist"><table border="0" class="variablelist">
3857
+ <colgroup>
3858
+ <col align="left" valign="top">
3859
+ <col>
3860
+ </colgroup>
3861
+ <tbody>
3862
+ <tr>
3863
+ <td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
3864
+ <td>the object which received the signal</td>
3865
+ </tr>
3866
+ <tr>
3867
+ <td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
3868
+ <td>the tag to be removed</td>
3869
+ </tr>
3870
+ <tr>
3871
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
3872
+ <td>the start of the range the tag is removed from</td>
3873
+ </tr>
3874
+ <tr>
3875
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
3876
+ <td>the end of the range the tag is removed from</td>
3877
+ </tr>
3878
+ <tr>
3879
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
3880
+ <td>user data set when the signal handler was connected.</td>
3881
+ </tr>
3882
+ </tbody>
3883
+ </table></div>
3884
+ </div>
3885
+ </div>
3886
+ <div class="refsect1">
3887
+ <a name="GtkTextBuffer.see-also"></a><h2>See Also</h2>
3888
+ <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>
3889
+ </div>
3890
+ </div>
3891
+ <div class="footer">
3892
+ <hr>
3893
+ Generated by GTK-Doc V1.18.1</div>
3894
+ </body>
3895
+ </html>