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,3183 @@
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>GtkTextIter</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="TextWidget.html" title="Text Widget Overview">
10
+ <link rel="next" href="GtkTextMark.html" title="GtkTextMark">
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="TextWidget.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="GtkTextMark.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="#GtkTextIter.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GtkTextIter.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GtkTextIter.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+ </td></tr>
30
+ </table>
31
+ <div class="refentry">
32
+ <a name="GtkTextIter"></a><div class="titlepage"></div>
33
+ <div class="refnamediv"><table width="100%"><tr>
34
+ <td valign="top">
35
+ <h2><span class="refentrytitle"><a name="GtkTextIter.top_of_page"></a>GtkTextIter</span></h2>
36
+ <p>GtkTextIter — Text buffer iterator</p>
37
+ </td>
38
+ <td valign="top" align="right"></td>
39
+ </tr></table></div>
40
+ <div class="refsynopsisdiv">
41
+ <a name="GtkTextIter.synopsis"></a><h2>Synopsis</h2>
42
+ <pre class="synopsis">
43
+ #include &lt;gtk/gtk.h&gt;
44
+
45
+ <a class="link" href="GtkTextIter.html#GtkTextIter-struct" title="GtkTextIter">GtkTextIter</a>;
46
+ <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="returnvalue">GtkTextBuffer</span></a> * <a class="link" href="GtkTextIter.html#gtk-text-iter-get-buffer" title="gtk_text_iter_get_buffer ()">gtk_text_iter_get_buffer</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
47
+ <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="returnvalue">GtkTextIter</span></a> * <a class="link" href="GtkTextIter.html#gtk-text-iter-copy" title="gtk_text_iter_copy ()">gtk_text_iter_copy</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
48
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-assign" title="gtk_text_iter_assign ()">gtk_text_iter_assign</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
49
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *other</code></em>);
50
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-free" title="gtk_text_iter_free ()">gtk_text_iter_free</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
51
+ <span class="returnvalue">gint</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-get-offset" title="gtk_text_iter_get_offset ()">gtk_text_iter_get_offset</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
52
+ <span class="returnvalue">gint</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-get-line" title="gtk_text_iter_get_line ()">gtk_text_iter_get_line</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
53
+ <span class="returnvalue">gint</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-get-line-offset" title="gtk_text_iter_get_line_offset ()">gtk_text_iter_get_line_offset</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
54
+ <span class="returnvalue">gint</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-get-line-index" title="gtk_text_iter_get_line_index ()">gtk_text_iter_get_line_index</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
55
+ <span class="returnvalue">gint</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-get-visible-line-index" title="gtk_text_iter_get_visible_line_index ()">gtk_text_iter_get_visible_line_index</a>
56
+ (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
57
+ <span class="returnvalue">gint</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-get-visible-line-offset" title="gtk_text_iter_get_visible_line_offset ()">gtk_text_iter_get_visible_line_offset</a>
58
+ (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
59
+ <span class="returnvalue">gunichar</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-get-char" title="gtk_text_iter_get_char ()">gtk_text_iter_get_char</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
60
+ <span class="returnvalue">gchar</span> * <a class="link" href="GtkTextIter.html#gtk-text-iter-get-slice" title="gtk_text_iter_get_slice ()">gtk_text_iter_get_slice</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
61
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
62
+ <span class="returnvalue">gchar</span> * <a class="link" href="GtkTextIter.html#gtk-text-iter-get-text" title="gtk_text_iter_get_text ()">gtk_text_iter_get_text</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
63
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
64
+ <span class="returnvalue">gchar</span> * <a class="link" href="GtkTextIter.html#gtk-text-iter-get-visible-slice" title="gtk_text_iter_get_visible_slice ()">gtk_text_iter_get_visible_slice</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
65
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
66
+ <span class="returnvalue">gchar</span> * <a class="link" href="GtkTextIter.html#gtk-text-iter-get-visible-text" title="gtk_text_iter_get_visible_text ()">gtk_text_iter_get_visible_text</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
67
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
68
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * <a class="link" href="GtkTextIter.html#gtk-text-iter-get-pixbuf" title="gtk_text_iter_get_pixbuf ()">gtk_text_iter_get_pixbuf</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
69
+ <span class="returnvalue">GSList</span> * <a class="link" href="GtkTextIter.html#gtk-text-iter-get-marks" title="gtk_text_iter_get_marks ()">gtk_text_iter_get_marks</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
70
+ <span class="returnvalue">GSList</span> * <a class="link" href="GtkTextIter.html#gtk-text-iter-get-toggled-tags" title="gtk_text_iter_get_toggled_tags ()">gtk_text_iter_get_toggled_tags</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
71
+ <em class="parameter"><code><span class="type">gboolean</span> toggled_on</code></em>);
72
+ <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="returnvalue">GtkTextChildAnchor</span></a> * <a class="link" href="GtkTextIter.html#gtk-text-iter-get-child-anchor" title="gtk_text_iter_get_child_anchor ()">gtk_text_iter_get_child_anchor</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
73
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-begins-tag" title="gtk_text_iter_begins_tag ()">gtk_text_iter_begins_tag</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
74
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);
75
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-ends-tag" title="gtk_text_iter_ends_tag ()">gtk_text_iter_ends_tag</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
76
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);
77
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-toggles-tag" title="gtk_text_iter_toggles_tag ()">gtk_text_iter_toggles_tag</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
78
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);
79
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-has-tag" title="gtk_text_iter_has_tag ()">gtk_text_iter_has_tag</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
80
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);
81
+ <span class="returnvalue">GSList</span> * <a class="link" href="GtkTextIter.html#gtk-text-iter-get-tags" title="gtk_text_iter_get_tags ()">gtk_text_iter_get_tags</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
82
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-editable" title="gtk_text_iter_editable ()">gtk_text_iter_editable</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
83
+ <em class="parameter"><code><span class="type">gboolean</span> default_setting</code></em>);
84
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-can-insert" title="gtk_text_iter_can_insert ()">gtk_text_iter_can_insert</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
85
+ <em class="parameter"><code><span class="type">gboolean</span> default_editability</code></em>);
86
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-starts-word" title="gtk_text_iter_starts_word ()">gtk_text_iter_starts_word</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
87
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-ends-word" title="gtk_text_iter_ends_word ()">gtk_text_iter_ends_word</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
88
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-inside-word" title="gtk_text_iter_inside_word ()">gtk_text_iter_inside_word</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
89
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-starts-line" title="gtk_text_iter_starts_line ()">gtk_text_iter_starts_line</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
90
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-ends-line" title="gtk_text_iter_ends_line ()">gtk_text_iter_ends_line</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
91
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-starts-sentence" title="gtk_text_iter_starts_sentence ()">gtk_text_iter_starts_sentence</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
92
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-ends-sentence" title="gtk_text_iter_ends_sentence ()">gtk_text_iter_ends_sentence</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
93
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-inside-sentence" title="gtk_text_iter_inside_sentence ()">gtk_text_iter_inside_sentence</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
94
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-is-cursor-position" title="gtk_text_iter_is_cursor_position ()">gtk_text_iter_is_cursor_position</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
95
+ <span class="returnvalue">gint</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-get-chars-in-line" title="gtk_text_iter_get_chars_in_line ()">gtk_text_iter_get_chars_in_line</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
96
+ <span class="returnvalue">gint</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-get-bytes-in-line" title="gtk_text_iter_get_bytes_in_line ()">gtk_text_iter_get_bytes_in_line</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
97
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-get-attributes" title="gtk_text_iter_get_attributes ()">gtk_text_iter_get_attributes</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
98
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *values</code></em>);
99
+ <span class="returnvalue">PangoLanguage</span> * <a class="link" href="GtkTextIter.html#gtk-text-iter-get-language" title="gtk_text_iter_get_language ()">gtk_text_iter_get_language</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
100
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-is-end" title="gtk_text_iter_is_end ()">gtk_text_iter_is_end</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
101
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-is-start" title="gtk_text_iter_is_start ()">gtk_text_iter_is_start</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
102
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-char" title="gtk_text_iter_forward_char ()">gtk_text_iter_forward_char</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
103
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-char" title="gtk_text_iter_backward_char ()">gtk_text_iter_backward_char</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
104
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-chars" title="gtk_text_iter_forward_chars ()">gtk_text_iter_forward_chars</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
105
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);
106
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-chars" title="gtk_text_iter_backward_chars ()">gtk_text_iter_backward_chars</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
107
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);
108
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-line" title="gtk_text_iter_forward_line ()">gtk_text_iter_forward_line</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
109
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-line" title="gtk_text_iter_backward_line ()">gtk_text_iter_backward_line</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
110
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-lines" title="gtk_text_iter_forward_lines ()">gtk_text_iter_forward_lines</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
111
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);
112
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-lines" title="gtk_text_iter_backward_lines ()">gtk_text_iter_backward_lines</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
113
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);
114
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-word-ends" title="gtk_text_iter_forward_word_ends ()">gtk_text_iter_forward_word_ends</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
115
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);
116
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-word-starts" title="gtk_text_iter_backward_word_starts ()">gtk_text_iter_backward_word_starts</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
117
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);
118
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-word-end" title="gtk_text_iter_forward_word_end ()">gtk_text_iter_forward_word_end</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
119
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-word-start" title="gtk_text_iter_backward_word_start ()">gtk_text_iter_backward_word_start</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
120
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-cursor-position" title="gtk_text_iter_forward_cursor_position ()">gtk_text_iter_forward_cursor_position</a>
121
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
122
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-cursor-position" title="gtk_text_iter_backward_cursor_position ()">gtk_text_iter_backward_cursor_position</a>
123
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
124
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-cursor-positions" title="gtk_text_iter_forward_cursor_positions ()">gtk_text_iter_forward_cursor_positions</a>
125
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
126
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);
127
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-cursor-positions" title="gtk_text_iter_backward_cursor_positions ()">gtk_text_iter_backward_cursor_positions</a>
128
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
129
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);
130
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-sentence-start" title="gtk_text_iter_backward_sentence_start ()">gtk_text_iter_backward_sentence_start</a>
131
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
132
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-sentence-starts" title="gtk_text_iter_backward_sentence_starts ()">gtk_text_iter_backward_sentence_starts</a>
133
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
134
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);
135
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-sentence-end" title="gtk_text_iter_forward_sentence_end ()">gtk_text_iter_forward_sentence_end</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
136
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-sentence-ends" title="gtk_text_iter_forward_sentence_ends ()">gtk_text_iter_forward_sentence_ends</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
137
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);
138
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-visible-word-ends" title="gtk_text_iter_forward_visible_word_ends ()">gtk_text_iter_forward_visible_word_ends</a>
139
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
140
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);
141
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-visible-word-starts" title="gtk_text_iter_backward_visible_word_starts ()">gtk_text_iter_backward_visible_word_starts</a>
142
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
143
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);
144
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-visible-word-end" title="gtk_text_iter_forward_visible_word_end ()">gtk_text_iter_forward_visible_word_end</a>
145
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
146
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-visible-word-start" title="gtk_text_iter_backward_visible_word_start ()">gtk_text_iter_backward_visible_word_start</a>
147
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
148
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-visible-cursor-position" title="gtk_text_iter_forward_visible_cursor_position ()">gtk_text_iter_forward_visible_cursor_position</a>
149
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
150
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-visible-cursor-position" title="gtk_text_iter_backward_visible_cursor_position ()">gtk_text_iter_backward_visible_cursor_position</a>
151
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
152
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-visible-cursor-positions" title="gtk_text_iter_forward_visible_cursor_positions ()">gtk_text_iter_forward_visible_cursor_positions</a>
153
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
154
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);
155
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-visible-cursor-positions" title="gtk_text_iter_backward_visible_cursor_positions ()">gtk_text_iter_backward_visible_cursor_positions</a>
156
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
157
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);
158
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-visible-line" title="gtk_text_iter_forward_visible_line ()">gtk_text_iter_forward_visible_line</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
159
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-visible-line" title="gtk_text_iter_backward_visible_line ()">gtk_text_iter_backward_visible_line</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
160
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-visible-lines" title="gtk_text_iter_forward_visible_lines ()">gtk_text_iter_forward_visible_lines</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
161
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);
162
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-visible-lines" title="gtk_text_iter_backward_visible_lines ()">gtk_text_iter_backward_visible_lines</a>
163
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
164
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);
165
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-set-offset" title="gtk_text_iter_set_offset ()">gtk_text_iter_set_offset</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
166
+ <em class="parameter"><code><span class="type">gint</span> char_offset</code></em>);
167
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-set-line" title="gtk_text_iter_set_line ()">gtk_text_iter_set_line</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
168
+ <em class="parameter"><code><span class="type">gint</span> line_number</code></em>);
169
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-set-line-offset" title="gtk_text_iter_set_line_offset ()">gtk_text_iter_set_line_offset</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
170
+ <em class="parameter"><code><span class="type">gint</span> char_on_line</code></em>);
171
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-set-line-index" title="gtk_text_iter_set_line_index ()">gtk_text_iter_set_line_index</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
172
+ <em class="parameter"><code><span class="type">gint</span> byte_on_line</code></em>);
173
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-set-visible-line-index" title="gtk_text_iter_set_visible_line_index ()">gtk_text_iter_set_visible_line_index</a>
174
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
175
+ <em class="parameter"><code><span class="type">gint</span> byte_on_line</code></em>);
176
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-set-visible-line-offset" title="gtk_text_iter_set_visible_line_offset ()">gtk_text_iter_set_visible_line_offset</a>
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> char_on_line</code></em>);
179
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-to-end" title="gtk_text_iter_forward_to_end ()">gtk_text_iter_forward_to_end</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
180
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-to-line-end" title="gtk_text_iter_forward_to_line_end ()">gtk_text_iter_forward_to_line_end</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
181
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-to-tag-toggle" title="gtk_text_iter_forward_to_tag_toggle ()">gtk_text_iter_forward_to_tag_toggle</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
182
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);
183
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-to-tag-toggle" title="gtk_text_iter_backward_to_tag_toggle ()">gtk_text_iter_backward_to_tag_toggle</a>
184
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
185
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);
186
+ <span class="returnvalue">gboolean</span> (<a class="link" href="GtkTextIter.html#GtkTextCharPredicate" title="GtkTextCharPredicate ()">*GtkTextCharPredicate</a>) (<em class="parameter"><code><span class="type">gunichar</span> ch</code></em>,
187
+ <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
188
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-find-char" title="gtk_text_iter_forward_find_char ()">gtk_text_iter_forward_find_char</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
189
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html#GtkTextCharPredicate" title="GtkTextCharPredicate ()"><span class="type">GtkTextCharPredicate</span></a> pred</code></em>,
190
+ <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
191
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *limit</code></em>);
192
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-find-char" title="gtk_text_iter_backward_find_char ()">gtk_text_iter_backward_find_char</a> (<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="GtkTextIter.html#GtkTextCharPredicate" title="GtkTextCharPredicate ()"><span class="type">GtkTextCharPredicate</span></a> pred</code></em>,
194
+ <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
195
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *limit</code></em>);
196
+ enum <a class="link" href="GtkTextIter.html#GtkTextSearchFlags" title="enum GtkTextSearchFlags">GtkTextSearchFlags</a>;
197
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-search" title="gtk_text_iter_forward_search ()">gtk_text_iter_forward_search</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
198
+ <em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>,
199
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html#GtkTextSearchFlags" title="enum GtkTextSearchFlags"><span class="type">GtkTextSearchFlags</span></a> flags</code></em>,
200
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *match_start</code></em>,
201
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *match_end</code></em>,
202
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *limit</code></em>);
203
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-search" title="gtk_text_iter_backward_search ()">gtk_text_iter_backward_search</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
204
+ <em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>,
205
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html#GtkTextSearchFlags" title="enum GtkTextSearchFlags"><span class="type">GtkTextSearchFlags</span></a> flags</code></em>,
206
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *match_start</code></em>,
207
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *match_end</code></em>,
208
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *limit</code></em>);
209
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-equal" title="gtk_text_iter_equal ()">gtk_text_iter_equal</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *lhs</code></em>,
210
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *rhs</code></em>);
211
+ <span class="returnvalue">gint</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-compare" title="gtk_text_iter_compare ()">gtk_text_iter_compare</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *lhs</code></em>,
212
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *rhs</code></em>);
213
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-in-range" title="gtk_text_iter_in_range ()">gtk_text_iter_in_range</a> (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
214
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
215
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
216
+ <span class="returnvalue">void</span> <a class="link" href="GtkTextIter.html#gtk-text-iter-order" title="gtk_text_iter_order ()">gtk_text_iter_order</a> (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *first</code></em>,
217
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *second</code></em>);
218
+ </pre>
219
+ </div>
220
+ <div class="refsect1">
221
+ <a name="GtkTextIter.object-hierarchy"></a><h2>Object Hierarchy</h2>
222
+ <pre class="synopsis">
223
+ GBoxed
224
+ +----GtkTextIter
225
+ </pre>
226
+ </div>
227
+ <div class="refsect1">
228
+ <a name="GtkTextIter.description"></a><h2>Description</h2>
229
+ <p>
230
+ You may wish to begin by reading the <a class="link" href="TextWidget.html" title="Text Widget Overview">text widget
231
+ conceptual overview</a> which gives an overview of all the objects and data
232
+ types related to the text widget and how they work together.
233
+ </p>
234
+ </div>
235
+ <div class="refsect1">
236
+ <a name="GtkTextIter.details"></a><h2>Details</h2>
237
+ <div class="refsect2">
238
+ <a name="GtkTextIter-struct"></a><h3>GtkTextIter</h3>
239
+ <pre class="programlisting">typedef struct {
240
+ /* GtkTextIter is an opaque datatype; ignore all these fields.
241
+ * Initialize the iter with gtk_text_buffer_get_iter_*
242
+ * functions
243
+ */
244
+ } GtkTextIter;
245
+ </pre>
246
+ </div>
247
+ <hr>
248
+ <div class="refsect2">
249
+ <a name="gtk-text-iter-get-buffer"></a><h3>gtk_text_iter_get_buffer ()</h3>
250
+ <pre class="programlisting"><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="returnvalue">GtkTextBuffer</span></a> * gtk_text_iter_get_buffer (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
251
+ <p>
252
+ Returns the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> this iterator is associated with.
253
+ </p>
254
+ <div class="variablelist"><table border="0" class="variablelist">
255
+ <colgroup>
256
+ <col align="left" valign="top">
257
+ <col>
258
+ </colgroup>
259
+ <tbody>
260
+ <tr>
261
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
262
+ <td>an iterator</td>
263
+ </tr>
264
+ <tr>
265
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
266
+ <td>the buffer. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
267
+ </td>
268
+ </tr>
269
+ </tbody>
270
+ </table></div>
271
+ </div>
272
+ <hr>
273
+ <div class="refsect2">
274
+ <a name="gtk-text-iter-copy"></a><h3>gtk_text_iter_copy ()</h3>
275
+ <pre class="programlisting"><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="returnvalue">GtkTextIter</span></a> * gtk_text_iter_copy (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
276
+ <p>
277
+ Creates a dynamically-allocated copy of an iterator. This function
278
+ is not useful in applications, because iterators can be copied with a
279
+ simple assignment (<code class="literal">GtkTextIter i = j;</code>). The
280
+ function is used by language bindings.
281
+ </p>
282
+ <div class="variablelist"><table border="0" class="variablelist">
283
+ <colgroup>
284
+ <col align="left" valign="top">
285
+ <col>
286
+ </colgroup>
287
+ <tbody>
288
+ <tr>
289
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
290
+ <td>an iterator</td>
291
+ </tr>
292
+ <tr>
293
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
294
+ <td>a copy of the <em class="parameter"><code>iter</code></em>, free with <a class="link" href="GtkTextIter.html#gtk-text-iter-free" title="gtk_text_iter_free ()"><code class="function">gtk_text_iter_free()</code></a>
295
+ </td>
296
+ </tr>
297
+ </tbody>
298
+ </table></div>
299
+ </div>
300
+ <hr>
301
+ <div class="refsect2">
302
+ <a name="gtk-text-iter-assign"></a><h3>gtk_text_iter_assign ()</h3>
303
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_iter_assign (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
304
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *other</code></em>);</pre>
305
+ <p>
306
+ Assigns the value of <em class="parameter"><code>other</code></em> to <em class="parameter"><code>iter</code></em>. This function
307
+ is not useful in applications, because iterators can be assigned
308
+ with <code class="literal">GtkTextIter i = j;</code>. The
309
+ function is used by language bindings.
310
+ </p>
311
+ <div class="variablelist"><table border="0" class="variablelist">
312
+ <colgroup>
313
+ <col align="left" valign="top">
314
+ <col>
315
+ </colgroup>
316
+ <tbody>
317
+ <tr>
318
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
319
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
320
+ </td>
321
+ </tr>
322
+ <tr>
323
+ <td><p><span class="term"><em class="parameter"><code>other</code></em> :</span></p></td>
324
+ <td>another <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
325
+ </td>
326
+ </tr>
327
+ </tbody>
328
+ </table></div>
329
+ <p class="since">Since 3.2</p>
330
+ </div>
331
+ <hr>
332
+ <div class="refsect2">
333
+ <a name="gtk-text-iter-free"></a><h3>gtk_text_iter_free ()</h3>
334
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_iter_free (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
335
+ <p>
336
+ Free an iterator allocated on the heap. This function
337
+ is intended for use in language bindings, and is not
338
+ especially useful for applications, because iterators can
339
+ simply be allocated on the stack.
340
+ </p>
341
+ <div class="variablelist"><table border="0" class="variablelist">
342
+ <colgroup>
343
+ <col align="left" valign="top">
344
+ <col>
345
+ </colgroup>
346
+ <tbody><tr>
347
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
348
+ <td>a dynamically-allocated iterator</td>
349
+ </tr></tbody>
350
+ </table></div>
351
+ </div>
352
+ <hr>
353
+ <div class="refsect2">
354
+ <a name="gtk-text-iter-get-offset"></a><h3>gtk_text_iter_get_offset ()</h3>
355
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_text_iter_get_offset (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
356
+ <p>
357
+ Returns the character offset of an iterator.
358
+ Each character in a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> has an offset,
359
+ starting with 0 for the first character in the buffer.
360
+ Use <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 convert an
361
+ offset back into an iterator.
362
+ </p>
363
+ <div class="variablelist"><table border="0" class="variablelist">
364
+ <colgroup>
365
+ <col align="left" valign="top">
366
+ <col>
367
+ </colgroup>
368
+ <tbody>
369
+ <tr>
370
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
371
+ <td>an iterator</td>
372
+ </tr>
373
+ <tr>
374
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
375
+ <td>a character offset</td>
376
+ </tr>
377
+ </tbody>
378
+ </table></div>
379
+ </div>
380
+ <hr>
381
+ <div class="refsect2">
382
+ <a name="gtk-text-iter-get-line"></a><h3>gtk_text_iter_get_line ()</h3>
383
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_text_iter_get_line (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
384
+ <p>
385
+ Returns the line number containing the iterator. Lines in
386
+ a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> are numbered beginning with 0 for the first
387
+ line in the buffer.
388
+ </p>
389
+ <div class="variablelist"><table border="0" class="variablelist">
390
+ <colgroup>
391
+ <col align="left" valign="top">
392
+ <col>
393
+ </colgroup>
394
+ <tbody>
395
+ <tr>
396
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
397
+ <td>an iterator</td>
398
+ </tr>
399
+ <tr>
400
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
401
+ <td>a line number</td>
402
+ </tr>
403
+ </tbody>
404
+ </table></div>
405
+ </div>
406
+ <hr>
407
+ <div class="refsect2">
408
+ <a name="gtk-text-iter-get-line-offset"></a><h3>gtk_text_iter_get_line_offset ()</h3>
409
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_text_iter_get_line_offset (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
410
+ <p>
411
+ Returns the character offset of the iterator,
412
+ counting from the start of a newline-terminated line.
413
+ The first character on the line has offset 0.
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>iter</code></em> :</span></p></td>
423
+ <td>an iterator</td>
424
+ </tr>
425
+ <tr>
426
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
427
+ <td>offset from start of line</td>
428
+ </tr>
429
+ </tbody>
430
+ </table></div>
431
+ </div>
432
+ <hr>
433
+ <div class="refsect2">
434
+ <a name="gtk-text-iter-get-line-index"></a><h3>gtk_text_iter_get_line_index ()</h3>
435
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_text_iter_get_line_index (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
436
+ <p>
437
+ Returns the byte index of the iterator, counting
438
+ from the start of a newline-terminated line.
439
+ Remember that <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> encodes text in
440
+ UTF-8, and that characters can require a variable
441
+ number of bytes to represent.
442
+ </p>
443
+ <div class="variablelist"><table border="0" class="variablelist">
444
+ <colgroup>
445
+ <col align="left" valign="top">
446
+ <col>
447
+ </colgroup>
448
+ <tbody>
449
+ <tr>
450
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
451
+ <td>an iterator</td>
452
+ </tr>
453
+ <tr>
454
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
455
+ <td>distance from start of line, in bytes</td>
456
+ </tr>
457
+ </tbody>
458
+ </table></div>
459
+ </div>
460
+ <hr>
461
+ <div class="refsect2">
462
+ <a name="gtk-text-iter-get-visible-line-index"></a><h3>gtk_text_iter_get_visible_line_index ()</h3>
463
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_text_iter_get_visible_line_index
464
+ (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
465
+ <p>
466
+ Returns the number of bytes from the start of the
467
+ line to the given <em class="parameter"><code>iter</code></em>, not counting bytes that
468
+ are invisible due to tags with the "invisible" flag
469
+ toggled on.
470
+ </p>
471
+ <div class="variablelist"><table border="0" class="variablelist">
472
+ <colgroup>
473
+ <col align="left" valign="top">
474
+ <col>
475
+ </colgroup>
476
+ <tbody>
477
+ <tr>
478
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
479
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
480
+ </td>
481
+ </tr>
482
+ <tr>
483
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
484
+ <td>byte index of <em class="parameter"><code>iter</code></em> with respect to the start of the line</td>
485
+ </tr>
486
+ </tbody>
487
+ </table></div>
488
+ </div>
489
+ <hr>
490
+ <div class="refsect2">
491
+ <a name="gtk-text-iter-get-visible-line-offset"></a><h3>gtk_text_iter_get_visible_line_offset ()</h3>
492
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_text_iter_get_visible_line_offset
493
+ (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
494
+ <p>
495
+ Returns the offset in characters from the start of the
496
+ line to the given <em class="parameter"><code>iter</code></em>, not counting characters that
497
+ are invisible due to tags with the "invisible" flag
498
+ toggled on.
499
+ </p>
500
+ <div class="variablelist"><table border="0" class="variablelist">
501
+ <colgroup>
502
+ <col align="left" valign="top">
503
+ <col>
504
+ </colgroup>
505
+ <tbody>
506
+ <tr>
507
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
508
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
509
+ </td>
510
+ </tr>
511
+ <tr>
512
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
513
+ <td>offset in visible characters from the start of the line</td>
514
+ </tr>
515
+ </tbody>
516
+ </table></div>
517
+ </div>
518
+ <hr>
519
+ <div class="refsect2">
520
+ <a name="gtk-text-iter-get-char"></a><h3>gtk_text_iter_get_char ()</h3>
521
+ <pre class="programlisting"><span class="returnvalue">gunichar</span> gtk_text_iter_get_char (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
522
+ <p>
523
+ returns 0.
524
+ </p>
525
+ <div class="variablelist"><table border="0" class="variablelist">
526
+ <colgroup>
527
+ <col align="left" valign="top">
528
+ <col>
529
+ </colgroup>
530
+ <tbody>
531
+ <tr>
532
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
533
+ <td>an iterator</td>
534
+ </tr>
535
+ <tr>
536
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
537
+ <td>a Unicode character, or 0 if <em class="parameter"><code>iter</code></em> is not dereferenceable</td>
538
+ </tr>
539
+ </tbody>
540
+ </table></div>
541
+ </div>
542
+ <hr>
543
+ <div class="refsect2">
544
+ <a name="gtk-text-iter-get-slice"></a><h3>gtk_text_iter_get_slice ()</h3>
545
+ <pre class="programlisting"><span class="returnvalue">gchar</span> * gtk_text_iter_get_slice (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
546
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
547
+ <p>
548
+ Returns the text in the given range. A "slice" is an array of
549
+ characters encoded in UTF-8 format, including the Unicode "unknown"
550
+ character 0xFFFC for iterable non-character elements in the buffer,
551
+ such as images. Because images are encoded in the slice, byte and
552
+ character offsets in the returned array will correspond to byte
553
+ offsets in the text buffer. Note that 0xFFFC can occur in normal
554
+ text as well, so it is not a reliable indicator that a pixbuf or
555
+ widget is in the buffer.
556
+ </p>
557
+ <div class="variablelist"><table border="0" class="variablelist">
558
+ <colgroup>
559
+ <col align="left" valign="top">
560
+ <col>
561
+ </colgroup>
562
+ <tbody>
563
+ <tr>
564
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
565
+ <td>iterator at start of a range</td>
566
+ </tr>
567
+ <tr>
568
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
569
+ <td>iterator at end of a range</td>
570
+ </tr>
571
+ <tr>
572
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
573
+ <td>slice of text from the buffer</td>
574
+ </tr>
575
+ </tbody>
576
+ </table></div>
577
+ </div>
578
+ <hr>
579
+ <div class="refsect2">
580
+ <a name="gtk-text-iter-get-text"></a><h3>gtk_text_iter_get_text ()</h3>
581
+ <pre class="programlisting"><span class="returnvalue">gchar</span> * gtk_text_iter_get_text (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
582
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
583
+ <p>
584
+ Returns <span class="emphasis"><em>text</em></span> in the given range. If the range
585
+ contains non-text elements such as images, the character and byte
586
+ offsets in the returned string will not correspond to character and
587
+ byte offsets in the buffer. If you want offsets to correspond, see
588
+ <a class="link" href="GtkTextIter.html#gtk-text-iter-get-slice" title="gtk_text_iter_get_slice ()"><code class="function">gtk_text_iter_get_slice()</code></a>.
589
+ </p>
590
+ <div class="variablelist"><table border="0" class="variablelist">
591
+ <colgroup>
592
+ <col align="left" valign="top">
593
+ <col>
594
+ </colgroup>
595
+ <tbody>
596
+ <tr>
597
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
598
+ <td>iterator at start of a range</td>
599
+ </tr>
600
+ <tr>
601
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
602
+ <td>iterator at end of a range</td>
603
+ </tr>
604
+ <tr>
605
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
606
+ <td>array of characters from the buffer</td>
607
+ </tr>
608
+ </tbody>
609
+ </table></div>
610
+ </div>
611
+ <hr>
612
+ <div class="refsect2">
613
+ <a name="gtk-text-iter-get-visible-slice"></a><h3>gtk_text_iter_get_visible_slice ()</h3>
614
+ <pre class="programlisting"><span class="returnvalue">gchar</span> * gtk_text_iter_get_visible_slice (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
615
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
616
+ <p>
617
+ Like <a class="link" href="GtkTextIter.html#gtk-text-iter-get-slice" title="gtk_text_iter_get_slice ()"><code class="function">gtk_text_iter_get_slice()</code></a>, but invisible text is not included.
618
+ Invisible text is usually invisible because a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> with the
619
+ "invisible" attribute turned on has been applied to it.
620
+ </p>
621
+ <div class="variablelist"><table border="0" class="variablelist">
622
+ <colgroup>
623
+ <col align="left" valign="top">
624
+ <col>
625
+ </colgroup>
626
+ <tbody>
627
+ <tr>
628
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
629
+ <td>iterator at start of range</td>
630
+ </tr>
631
+ <tr>
632
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
633
+ <td>iterator at end of range</td>
634
+ </tr>
635
+ <tr>
636
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
637
+ <td>slice of text from the buffer</td>
638
+ </tr>
639
+ </tbody>
640
+ </table></div>
641
+ </div>
642
+ <hr>
643
+ <div class="refsect2">
644
+ <a name="gtk-text-iter-get-visible-text"></a><h3>gtk_text_iter_get_visible_text ()</h3>
645
+ <pre class="programlisting"><span class="returnvalue">gchar</span> * gtk_text_iter_get_visible_text (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
646
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
647
+ <p>
648
+ Like <a class="link" href="GtkTextIter.html#gtk-text-iter-get-text" title="gtk_text_iter_get_text ()"><code class="function">gtk_text_iter_get_text()</code></a>, but invisible text is not included.
649
+ Invisible text is usually invisible because a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> with the
650
+ "invisible" attribute turned on has been applied to it.
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>start</code></em> :</span></p></td>
660
+ <td>iterator at start of range</td>
661
+ </tr>
662
+ <tr>
663
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
664
+ <td>iterator at end of range</td>
665
+ </tr>
666
+ <tr>
667
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
668
+ <td>string containing visible text in the range</td>
669
+ </tr>
670
+ </tbody>
671
+ </table></div>
672
+ </div>
673
+ <hr>
674
+ <div class="refsect2">
675
+ <a name="gtk-text-iter-get-pixbuf"></a><h3>gtk_text_iter_get_pixbuf ()</h3>
676
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * gtk_text_iter_get_pixbuf (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
677
+ <p>
678
+ If the element at <em class="parameter"><code>iter</code></em> is a pixbuf, the pixbuf is returned
679
+ (with no new reference count added). Otherwise,
680
+ <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> is returned.
681
+ </p>
682
+ <div class="variablelist"><table border="0" class="variablelist">
683
+ <colgroup>
684
+ <col align="left" valign="top">
685
+ <col>
686
+ </colgroup>
687
+ <tbody>
688
+ <tr>
689
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
690
+ <td>an iterator</td>
691
+ </tr>
692
+ <tr>
693
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
694
+ <td>the pixbuf at <em class="parameter"><code>iter</code></em>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
695
+ </td>
696
+ </tr>
697
+ </tbody>
698
+ </table></div>
699
+ </div>
700
+ <hr>
701
+ <div class="refsect2">
702
+ <a name="gtk-text-iter-get-marks"></a><h3>gtk_text_iter_get_marks ()</h3>
703
+ <pre class="programlisting"><span class="returnvalue">GSList</span> * gtk_text_iter_get_marks (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
704
+ <p>
705
+ Returns a list of all <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> at this location. Because marks
706
+ are not iterable (they don't take up any "space" in the buffer,
707
+ they are just marks in between iterable locations), multiple marks
708
+ can exist in the same place. The returned list is not in any
709
+ meaningful order.
710
+ </p>
711
+ <div class="variablelist"><table border="0" class="variablelist">
712
+ <colgroup>
713
+ <col align="left" valign="top">
714
+ <col>
715
+ </colgroup>
716
+ <tbody>
717
+ <tr>
718
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
719
+ <td>an iterator</td>
720
+ </tr>
721
+ <tr>
722
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
723
+ <td>list of <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GtkTextMark][<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>]</span>
724
+ </td>
725
+ </tr>
726
+ </tbody>
727
+ </table></div>
728
+ </div>
729
+ <hr>
730
+ <div class="refsect2">
731
+ <a name="gtk-text-iter-get-toggled-tags"></a><h3>gtk_text_iter_get_toggled_tags ()</h3>
732
+ <pre class="programlisting"><span class="returnvalue">GSList</span> * gtk_text_iter_get_toggled_tags (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
733
+ <em class="parameter"><code><span class="type">gboolean</span> toggled_on</code></em>);</pre>
734
+ <p>
735
+ Returns a list of <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> that are toggled on or off at this
736
+ point. (If <em class="parameter"><code>toggled_on</code></em> is <code class="literal">TRUE</code>, the list contains tags that are
737
+ toggled on.) If a tag is toggled on at <em class="parameter"><code>iter</code></em>, then some non-empty
738
+ range of characters following <em class="parameter"><code>iter</code></em> has that tag applied to it. If
739
+ a tag is toggled off, then some non-empty range following <em class="parameter"><code>iter</code></em>
740
+ does <span class="emphasis"><em>not</em></span> have the tag applied to it.
741
+ </p>
742
+ <div class="variablelist"><table border="0" class="variablelist">
743
+ <colgroup>
744
+ <col align="left" valign="top">
745
+ <col>
746
+ </colgroup>
747
+ <tbody>
748
+ <tr>
749
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
750
+ <td>an iterator</td>
751
+ </tr>
752
+ <tr>
753
+ <td><p><span class="term"><em class="parameter"><code>toggled_on</code></em> :</span></p></td>
754
+ <td>
755
+ <code class="literal">TRUE</code> to get toggled-on tags</td>
756
+ </tr>
757
+ <tr>
758
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
759
+ <td>tags toggled at this point. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GtkTextTag][<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>]</span>
760
+ </td>
761
+ </tr>
762
+ </tbody>
763
+ </table></div>
764
+ </div>
765
+ <hr>
766
+ <div class="refsect2">
767
+ <a name="gtk-text-iter-get-child-anchor"></a><h3>gtk_text_iter_get_child_anchor ()</h3>
768
+ <pre class="programlisting"><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="returnvalue">GtkTextChildAnchor</span></a> * gtk_text_iter_get_child_anchor (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
769
+ <p>
770
+ If the location at <em class="parameter"><code>iter</code></em> contains a child anchor, the
771
+ anchor is returned (with no new reference count added). Otherwise,
772
+ <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> is returned.
773
+ </p>
774
+ <div class="variablelist"><table border="0" class="variablelist">
775
+ <colgroup>
776
+ <col align="left" valign="top">
777
+ <col>
778
+ </colgroup>
779
+ <tbody>
780
+ <tr>
781
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
782
+ <td>an iterator</td>
783
+ </tr>
784
+ <tr>
785
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
786
+ <td>the anchor at <em class="parameter"><code>iter</code></em>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
787
+ </td>
788
+ </tr>
789
+ </tbody>
790
+ </table></div>
791
+ </div>
792
+ <hr>
793
+ <div class="refsect2">
794
+ <a name="gtk-text-iter-begins-tag"></a><h3>gtk_text_iter_begins_tag ()</h3>
795
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_begins_tag (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
796
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);</pre>
797
+ <p>
798
+ Returns <code class="literal">TRUE</code> if <em class="parameter"><code>tag</code></em> is toggled on at exactly this point. If <em class="parameter"><code>tag</code></em>
799
+ is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, returns <code class="literal">TRUE</code> if any tag is toggled on at this point. Note
800
+ that the <a class="link" href="GtkTextIter.html#gtk-text-iter-begins-tag" title="gtk_text_iter_begins_tag ()"><code class="function">gtk_text_iter_begins_tag()</code></a> returns <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> is the
801
+ <span class="emphasis"><em>start</em></span> of the tagged range;
802
+ <a class="link" href="GtkTextIter.html#gtk-text-iter-has-tag" title="gtk_text_iter_has_tag ()"><code class="function">gtk_text_iter_has_tag()</code></a> tells you whether an iterator is
803
+ <span class="emphasis"><em>within</em></span> a tagged range.
804
+ </p>
805
+ <div class="variablelist"><table border="0" class="variablelist">
806
+ <colgroup>
807
+ <col align="left" valign="top">
808
+ <col>
809
+ </colgroup>
810
+ <tbody>
811
+ <tr>
812
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
813
+ <td>an iterator</td>
814
+ </tr>
815
+ <tr>
816
+ <td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
817
+ <td>a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</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="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
818
+ </td>
819
+ </tr>
820
+ <tr>
821
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
822
+ <td>whether <em class="parameter"><code>iter</code></em> is the start of a range tagged with <em class="parameter"><code>tag</code></em>
823
+ </td>
824
+ </tr>
825
+ </tbody>
826
+ </table></div>
827
+ </div>
828
+ <hr>
829
+ <div class="refsect2">
830
+ <a name="gtk-text-iter-ends-tag"></a><h3>gtk_text_iter_ends_tag ()</h3>
831
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_ends_tag (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
832
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);</pre>
833
+ <p>
834
+ Returns <code class="literal">TRUE</code> if <em class="parameter"><code>tag</code></em> is toggled off at exactly this point. If <em class="parameter"><code>tag</code></em>
835
+ is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, returns <code class="literal">TRUE</code> if any tag is toggled off at this point. Note
836
+ that the <a class="link" href="GtkTextIter.html#gtk-text-iter-ends-tag" title="gtk_text_iter_ends_tag ()"><code class="function">gtk_text_iter_ends_tag()</code></a> returns <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> is the
837
+ <span class="emphasis"><em>end</em></span> of the tagged range;
838
+ <a class="link" href="GtkTextIter.html#gtk-text-iter-has-tag" title="gtk_text_iter_has_tag ()"><code class="function">gtk_text_iter_has_tag()</code></a> tells you whether an iterator is
839
+ <span class="emphasis"><em>within</em></span> a tagged range.
840
+ </p>
841
+ <div class="variablelist"><table border="0" class="variablelist">
842
+ <colgroup>
843
+ <col align="left" valign="top">
844
+ <col>
845
+ </colgroup>
846
+ <tbody>
847
+ <tr>
848
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
849
+ <td>an iterator</td>
850
+ </tr>
851
+ <tr>
852
+ <td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
853
+ <td>a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</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="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
854
+ </td>
855
+ </tr>
856
+ <tr>
857
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
858
+ <td>whether <em class="parameter"><code>iter</code></em> is the end of a range tagged with <em class="parameter"><code>tag</code></em>
859
+ </td>
860
+ </tr>
861
+ </tbody>
862
+ </table></div>
863
+ </div>
864
+ <hr>
865
+ <div class="refsect2">
866
+ <a name="gtk-text-iter-toggles-tag"></a><h3>gtk_text_iter_toggles_tag ()</h3>
867
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_toggles_tag (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
868
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);</pre>
869
+ <p>
870
+ This is equivalent to (<a class="link" href="GtkTextIter.html#gtk-text-iter-begins-tag" title="gtk_text_iter_begins_tag ()"><code class="function">gtk_text_iter_begins_tag()</code></a> ||
871
+ <a class="link" href="GtkTextIter.html#gtk-text-iter-ends-tag" title="gtk_text_iter_ends_tag ()"><code class="function">gtk_text_iter_ends_tag()</code></a>), i.e. it tells you whether a range with
872
+ <em class="parameter"><code>tag</code></em> applied to it begins <span class="emphasis"><em>or</em></span> ends at <em class="parameter"><code>iter</code></em>.
873
+ </p>
874
+ <div class="variablelist"><table border="0" class="variablelist">
875
+ <colgroup>
876
+ <col align="left" valign="top">
877
+ <col>
878
+ </colgroup>
879
+ <tbody>
880
+ <tr>
881
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
882
+ <td>an iterator</td>
883
+ </tr>
884
+ <tr>
885
+ <td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
886
+ <td>a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</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="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
887
+ </td>
888
+ </tr>
889
+ <tr>
890
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
891
+ <td>whether <em class="parameter"><code>tag</code></em> is toggled on or off at <em class="parameter"><code>iter</code></em>
892
+ </td>
893
+ </tr>
894
+ </tbody>
895
+ </table></div>
896
+ </div>
897
+ <hr>
898
+ <div class="refsect2">
899
+ <a name="gtk-text-iter-has-tag"></a><h3>gtk_text_iter_has_tag ()</h3>
900
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_has_tag (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
901
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);</pre>
902
+ <p>
903
+ Returns <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> is within a range tagged with <em class="parameter"><code>tag</code></em>.
904
+ </p>
905
+ <div class="variablelist"><table border="0" class="variablelist">
906
+ <colgroup>
907
+ <col align="left" valign="top">
908
+ <col>
909
+ </colgroup>
910
+ <tbody>
911
+ <tr>
912
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
913
+ <td>an iterator</td>
914
+ </tr>
915
+ <tr>
916
+ <td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
917
+ <td>a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>
918
+ </td>
919
+ </tr>
920
+ <tr>
921
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
922
+ <td>whether <em class="parameter"><code>iter</code></em> is tagged with <em class="parameter"><code>tag</code></em>
923
+ </td>
924
+ </tr>
925
+ </tbody>
926
+ </table></div>
927
+ </div>
928
+ <hr>
929
+ <div class="refsect2">
930
+ <a name="gtk-text-iter-get-tags"></a><h3>gtk_text_iter_get_tags ()</h3>
931
+ <pre class="programlisting"><span class="returnvalue">GSList</span> * gtk_text_iter_get_tags (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
932
+ <p>
933
+ Returns a list of tags that apply to <em class="parameter"><code>iter</code></em>, in ascending order of
934
+ priority (highest-priority tags are last). The <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> in the
935
+ list don't have a reference added, but you have to free the list
936
+ itself.
937
+ </p>
938
+ <div class="variablelist"><table border="0" class="variablelist">
939
+ <colgroup>
940
+ <col align="left" valign="top">
941
+ <col>
942
+ </colgroup>
943
+ <tbody>
944
+ <tr>
945
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
946
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
947
+ </td>
948
+ </tr>
949
+ <tr>
950
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
951
+ <td>list of <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GtkTextTag][<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>]</span>
952
+ </td>
953
+ </tr>
954
+ </tbody>
955
+ </table></div>
956
+ </div>
957
+ <hr>
958
+ <div class="refsect2">
959
+ <a name="gtk-text-iter-editable"></a><h3>gtk_text_iter_editable ()</h3>
960
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_editable (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
961
+ <em class="parameter"><code><span class="type">gboolean</span> default_setting</code></em>);</pre>
962
+ <p>
963
+ Returns whether the character at <em class="parameter"><code>iter</code></em> is within an editable region
964
+ of text. Non-editable text is "locked" and can't be changed by the
965
+ user via <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>. This function is simply a convenience
966
+ wrapper around <a class="link" href="GtkTextIter.html#gtk-text-iter-get-attributes" title="gtk_text_iter_get_attributes ()"><code class="function">gtk_text_iter_get_attributes()</code></a>. If no tags applied
967
+ to this text affect editability, <em class="parameter"><code>default_setting</code></em> will be returned.
968
+ </p>
969
+ <p>
970
+ You don't want to use this function to decide whether text can be
971
+ inserted at <em class="parameter"><code>iter</code></em>, because for insertion you don't want to know
972
+ whether the char at <em class="parameter"><code>iter</code></em> is inside an editable range, you want to
973
+ know whether a new character inserted at <em class="parameter"><code>iter</code></em> would be inside an
974
+ editable range. Use <a class="link" href="GtkTextIter.html#gtk-text-iter-can-insert" title="gtk_text_iter_can_insert ()"><code class="function">gtk_text_iter_can_insert()</code></a> to handle this
975
+ case.
976
+ </p>
977
+ <div class="variablelist"><table border="0" class="variablelist">
978
+ <colgroup>
979
+ <col align="left" valign="top">
980
+ <col>
981
+ </colgroup>
982
+ <tbody>
983
+ <tr>
984
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
985
+ <td>an iterator</td>
986
+ </tr>
987
+ <tr>
988
+ <td><p><span class="term"><em class="parameter"><code>default_setting</code></em> :</span></p></td>
989
+ <td>
990
+ <code class="literal">TRUE</code> if text is editable by default</td>
991
+ </tr>
992
+ <tr>
993
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
994
+ <td>whether <em class="parameter"><code>iter</code></em> is inside an editable range</td>
995
+ </tr>
996
+ </tbody>
997
+ </table></div>
998
+ </div>
999
+ <hr>
1000
+ <div class="refsect2">
1001
+ <a name="gtk-text-iter-can-insert"></a><h3>gtk_text_iter_can_insert ()</h3>
1002
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_can_insert (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1003
+ <em class="parameter"><code><span class="type">gboolean</span> default_editability</code></em>);</pre>
1004
+ <p>
1005
+ Considering the default editability of the buffer, and tags that
1006
+ affect editability, determines whether text inserted at <em class="parameter"><code>iter</code></em> would
1007
+ be editable. If text inserted at <em class="parameter"><code>iter</code></em> would be editable then the
1008
+ user should be allowed to insert text at <em class="parameter"><code>iter</code></em>.
1009
+ <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> uses this function to decide
1010
+ whether insertions are allowed at a given position.
1011
+ </p>
1012
+ <div class="variablelist"><table border="0" class="variablelist">
1013
+ <colgroup>
1014
+ <col align="left" valign="top">
1015
+ <col>
1016
+ </colgroup>
1017
+ <tbody>
1018
+ <tr>
1019
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1020
+ <td>an iterator</td>
1021
+ </tr>
1022
+ <tr>
1023
+ <td><p><span class="term"><em class="parameter"><code>default_editability</code></em> :</span></p></td>
1024
+ <td>
1025
+ <code class="literal">TRUE</code> if text is editable by default</td>
1026
+ </tr>
1027
+ <tr>
1028
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1029
+ <td>whether text inserted at <em class="parameter"><code>iter</code></em> would be editable</td>
1030
+ </tr>
1031
+ </tbody>
1032
+ </table></div>
1033
+ </div>
1034
+ <hr>
1035
+ <div class="refsect2">
1036
+ <a name="gtk-text-iter-starts-word"></a><h3>gtk_text_iter_starts_word ()</h3>
1037
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_starts_word (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1038
+ <p>
1039
+ Determines whether <em class="parameter"><code>iter</code></em> begins a natural-language word. Word
1040
+ breaks are determined by Pango and should be correct for nearly any
1041
+ language (if not, the correct fix would be to the Pango word break
1042
+ algorithms).
1043
+ </p>
1044
+ <div class="variablelist"><table border="0" class="variablelist">
1045
+ <colgroup>
1046
+ <col align="left" valign="top">
1047
+ <col>
1048
+ </colgroup>
1049
+ <tbody>
1050
+ <tr>
1051
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1052
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1053
+ </td>
1054
+ </tr>
1055
+ <tr>
1056
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1057
+ <td>
1058
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> is at the start of a word</td>
1059
+ </tr>
1060
+ </tbody>
1061
+ </table></div>
1062
+ </div>
1063
+ <hr>
1064
+ <div class="refsect2">
1065
+ <a name="gtk-text-iter-ends-word"></a><h3>gtk_text_iter_ends_word ()</h3>
1066
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_ends_word (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1067
+ <p>
1068
+ Determines whether <em class="parameter"><code>iter</code></em> ends a natural-language word. Word breaks
1069
+ are determined by Pango and should be correct for nearly any
1070
+ language (if not, the correct fix would be to the Pango word break
1071
+ algorithms).
1072
+ </p>
1073
+ <div class="variablelist"><table border="0" class="variablelist">
1074
+ <colgroup>
1075
+ <col align="left" valign="top">
1076
+ <col>
1077
+ </colgroup>
1078
+ <tbody>
1079
+ <tr>
1080
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1081
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1082
+ </td>
1083
+ </tr>
1084
+ <tr>
1085
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1086
+ <td>
1087
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> is at the end of a word</td>
1088
+ </tr>
1089
+ </tbody>
1090
+ </table></div>
1091
+ </div>
1092
+ <hr>
1093
+ <div class="refsect2">
1094
+ <a name="gtk-text-iter-inside-word"></a><h3>gtk_text_iter_inside_word ()</h3>
1095
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_inside_word (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1096
+ <p>
1097
+ Determines whether <em class="parameter"><code>iter</code></em> is inside a natural-language word (as
1098
+ opposed to say inside some whitespace). Word breaks are determined
1099
+ by Pango and should be correct for nearly any language (if not, the
1100
+ correct fix would be to the Pango word break algorithms).
1101
+ </p>
1102
+ <div class="variablelist"><table border="0" class="variablelist">
1103
+ <colgroup>
1104
+ <col align="left" valign="top">
1105
+ <col>
1106
+ </colgroup>
1107
+ <tbody>
1108
+ <tr>
1109
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1110
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1111
+ </td>
1112
+ </tr>
1113
+ <tr>
1114
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1115
+ <td>
1116
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> is inside a word</td>
1117
+ </tr>
1118
+ </tbody>
1119
+ </table></div>
1120
+ </div>
1121
+ <hr>
1122
+ <div class="refsect2">
1123
+ <a name="gtk-text-iter-starts-line"></a><h3>gtk_text_iter_starts_line ()</h3>
1124
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_starts_line (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1125
+ <p>
1126
+ Returns <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> begins a paragraph,
1127
+ i.e. if <a class="link" href="GtkTextIter.html#gtk-text-iter-get-line-offset" title="gtk_text_iter_get_line_offset ()"><code class="function">gtk_text_iter_get_line_offset()</code></a> would return 0.
1128
+ However this function is potentially more efficient than
1129
+ <a class="link" href="GtkTextIter.html#gtk-text-iter-get-line-offset" title="gtk_text_iter_get_line_offset ()"><code class="function">gtk_text_iter_get_line_offset()</code></a> because it doesn't have to compute
1130
+ the offset, it just has to see whether it's 0.
1131
+ </p>
1132
+ <div class="variablelist"><table border="0" class="variablelist">
1133
+ <colgroup>
1134
+ <col align="left" valign="top">
1135
+ <col>
1136
+ </colgroup>
1137
+ <tbody>
1138
+ <tr>
1139
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1140
+ <td>an iterator</td>
1141
+ </tr>
1142
+ <tr>
1143
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1144
+ <td>whether <em class="parameter"><code>iter</code></em> begins a line</td>
1145
+ </tr>
1146
+ </tbody>
1147
+ </table></div>
1148
+ </div>
1149
+ <hr>
1150
+ <div class="refsect2">
1151
+ <a name="gtk-text-iter-ends-line"></a><h3>gtk_text_iter_ends_line ()</h3>
1152
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_ends_line (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1153
+ <p>
1154
+ Returns <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> points to the start of the paragraph
1155
+ delimiter characters for a line (delimiters will be either a
1156
+ newline, a carriage return, a carriage return followed by a
1157
+ newline, or a Unicode paragraph separator character). Note that an
1158
+ iterator pointing to the \n of a \r\n pair will not be counted as
1159
+ the end of a line, the line ends before the \r. The end iterator is
1160
+ considered to be at the end of a line, even though there are no
1161
+ paragraph delimiter chars there.
1162
+ </p>
1163
+ <div class="variablelist"><table border="0" class="variablelist">
1164
+ <colgroup>
1165
+ <col align="left" valign="top">
1166
+ <col>
1167
+ </colgroup>
1168
+ <tbody>
1169
+ <tr>
1170
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1171
+ <td>an iterator</td>
1172
+ </tr>
1173
+ <tr>
1174
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1175
+ <td>whether <em class="parameter"><code>iter</code></em> is at the end of a line</td>
1176
+ </tr>
1177
+ </tbody>
1178
+ </table></div>
1179
+ </div>
1180
+ <hr>
1181
+ <div class="refsect2">
1182
+ <a name="gtk-text-iter-starts-sentence"></a><h3>gtk_text_iter_starts_sentence ()</h3>
1183
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_starts_sentence (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1184
+ <p>
1185
+ Determines whether <em class="parameter"><code>iter</code></em> begins a sentence. Sentence boundaries are
1186
+ determined by Pango and should be correct for nearly any language
1187
+ (if not, the correct fix would be to the Pango text boundary
1188
+ algorithms).
1189
+ </p>
1190
+ <div class="variablelist"><table border="0" class="variablelist">
1191
+ <colgroup>
1192
+ <col align="left" valign="top">
1193
+ <col>
1194
+ </colgroup>
1195
+ <tbody>
1196
+ <tr>
1197
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1198
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1199
+ </td>
1200
+ </tr>
1201
+ <tr>
1202
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1203
+ <td>
1204
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> is at the start of a sentence.</td>
1205
+ </tr>
1206
+ </tbody>
1207
+ </table></div>
1208
+ </div>
1209
+ <hr>
1210
+ <div class="refsect2">
1211
+ <a name="gtk-text-iter-ends-sentence"></a><h3>gtk_text_iter_ends_sentence ()</h3>
1212
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_ends_sentence (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1213
+ <p>
1214
+ Determines whether <em class="parameter"><code>iter</code></em> ends a sentence. Sentence boundaries are
1215
+ determined by Pango and should be correct for nearly any language
1216
+ (if not, the correct fix would be to the Pango text boundary
1217
+ algorithms).
1218
+ </p>
1219
+ <div class="variablelist"><table border="0" class="variablelist">
1220
+ <colgroup>
1221
+ <col align="left" valign="top">
1222
+ <col>
1223
+ </colgroup>
1224
+ <tbody>
1225
+ <tr>
1226
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1227
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1228
+ </td>
1229
+ </tr>
1230
+ <tr>
1231
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1232
+ <td>
1233
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> is at the end of a sentence.</td>
1234
+ </tr>
1235
+ </tbody>
1236
+ </table></div>
1237
+ </div>
1238
+ <hr>
1239
+ <div class="refsect2">
1240
+ <a name="gtk-text-iter-inside-sentence"></a><h3>gtk_text_iter_inside_sentence ()</h3>
1241
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_inside_sentence (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1242
+ <p>
1243
+ Determines whether <em class="parameter"><code>iter</code></em> is inside a sentence (as opposed to in
1244
+ between two sentences, e.g. after a period and before the first
1245
+ letter of the next sentence). Sentence boundaries are determined
1246
+ by Pango and should be correct for nearly any language (if not, the
1247
+ correct fix would be to the Pango text boundary algorithms).
1248
+ </p>
1249
+ <div class="variablelist"><table border="0" class="variablelist">
1250
+ <colgroup>
1251
+ <col align="left" valign="top">
1252
+ <col>
1253
+ </colgroup>
1254
+ <tbody>
1255
+ <tr>
1256
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1257
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1258
+ </td>
1259
+ </tr>
1260
+ <tr>
1261
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1262
+ <td>
1263
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> is inside a sentence.</td>
1264
+ </tr>
1265
+ </tbody>
1266
+ </table></div>
1267
+ </div>
1268
+ <hr>
1269
+ <div class="refsect2">
1270
+ <a name="gtk-text-iter-is-cursor-position"></a><h3>gtk_text_iter_is_cursor_position ()</h3>
1271
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_is_cursor_position (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1272
+ <p>
1273
+ See <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-cursor-position" title="gtk_text_iter_forward_cursor_position ()"><code class="function">gtk_text_iter_forward_cursor_position()</code></a> or <span class="type">PangoLogAttr</span> or
1274
+ <code class="function">pango_break()</code> for details on what a cursor position is.
1275
+ </p>
1276
+ <div class="variablelist"><table border="0" class="variablelist">
1277
+ <colgroup>
1278
+ <col align="left" valign="top">
1279
+ <col>
1280
+ </colgroup>
1281
+ <tbody>
1282
+ <tr>
1283
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1284
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1285
+ </td>
1286
+ </tr>
1287
+ <tr>
1288
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1289
+ <td>
1290
+ <code class="literal">TRUE</code> if the cursor can be placed at <em class="parameter"><code>iter</code></em>
1291
+ </td>
1292
+ </tr>
1293
+ </tbody>
1294
+ </table></div>
1295
+ </div>
1296
+ <hr>
1297
+ <div class="refsect2">
1298
+ <a name="gtk-text-iter-get-chars-in-line"></a><h3>gtk_text_iter_get_chars_in_line ()</h3>
1299
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_text_iter_get_chars_in_line (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1300
+ <p>
1301
+ Returns the number of characters in the line containing <em class="parameter"><code>iter</code></em>,
1302
+ including the paragraph delimiters.
1303
+ </p>
1304
+ <div class="variablelist"><table border="0" class="variablelist">
1305
+ <colgroup>
1306
+ <col align="left" valign="top">
1307
+ <col>
1308
+ </colgroup>
1309
+ <tbody>
1310
+ <tr>
1311
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1312
+ <td>an iterator</td>
1313
+ </tr>
1314
+ <tr>
1315
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1316
+ <td>number of characters in the line</td>
1317
+ </tr>
1318
+ </tbody>
1319
+ </table></div>
1320
+ </div>
1321
+ <hr>
1322
+ <div class="refsect2">
1323
+ <a name="gtk-text-iter-get-bytes-in-line"></a><h3>gtk_text_iter_get_bytes_in_line ()</h3>
1324
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_text_iter_get_bytes_in_line (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1325
+ <p>
1326
+ Returns the number of bytes in the line containing <em class="parameter"><code>iter</code></em>,
1327
+ including the paragraph delimiters.
1328
+ </p>
1329
+ <div class="variablelist"><table border="0" class="variablelist">
1330
+ <colgroup>
1331
+ <col align="left" valign="top">
1332
+ <col>
1333
+ </colgroup>
1334
+ <tbody>
1335
+ <tr>
1336
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1337
+ <td>an iterator</td>
1338
+ </tr>
1339
+ <tr>
1340
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1341
+ <td>number of bytes in the line</td>
1342
+ </tr>
1343
+ </tbody>
1344
+ </table></div>
1345
+ </div>
1346
+ <hr>
1347
+ <div class="refsect2">
1348
+ <a name="gtk-text-iter-get-attributes"></a><h3>gtk_text_iter_get_attributes ()</h3>
1349
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_get_attributes (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1350
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *values</code></em>);</pre>
1351
+ <p>
1352
+ Computes the effect of any tags applied to this spot in the
1353
+ text. The <em class="parameter"><code>values</code></em> parameter should be initialized to the default
1354
+ settings you wish to use if no tags are in effect. You'd typically
1355
+ obtain the defaults from <a class="link" href="GtkTextView.html#gtk-text-view-get-default-attributes" title="gtk_text_view_get_default_attributes ()"><code class="function">gtk_text_view_get_default_attributes()</code></a>.
1356
+ </p>
1357
+ <p>
1358
+ <a class="link" href="GtkTextIter.html#gtk-text-iter-get-attributes" title="gtk_text_iter_get_attributes ()"><code class="function">gtk_text_iter_get_attributes()</code></a> will modify <em class="parameter"><code>values</code></em>, applying the
1359
+ effects of any tags present at <em class="parameter"><code>iter</code></em>. If any tags affected <em class="parameter"><code>values</code></em>,
1360
+ the function returns <code class="literal">TRUE</code>.
1361
+ </p>
1362
+ <div class="variablelist"><table border="0" class="variablelist">
1363
+ <colgroup>
1364
+ <col align="left" valign="top">
1365
+ <col>
1366
+ </colgroup>
1367
+ <tbody>
1368
+ <tr>
1369
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1370
+ <td>an iterator</td>
1371
+ </tr>
1372
+ <tr>
1373
+ <td><p><span class="term"><em class="parameter"><code>values</code></em> :</span></p></td>
1374
+ <td>a <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> to be filled in. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1375
+ </td>
1376
+ </tr>
1377
+ <tr>
1378
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1379
+ <td>
1380
+ <code class="literal">TRUE</code> if <em class="parameter"><code>values</code></em> was modified</td>
1381
+ </tr>
1382
+ </tbody>
1383
+ </table></div>
1384
+ </div>
1385
+ <hr>
1386
+ <div class="refsect2">
1387
+ <a name="gtk-text-iter-get-language"></a><h3>gtk_text_iter_get_language ()</h3>
1388
+ <pre class="programlisting"><span class="returnvalue">PangoLanguage</span> * gtk_text_iter_get_language (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1389
+ <p>
1390
+ A convenience wrapper around <a class="link" href="GtkTextIter.html#gtk-text-iter-get-attributes" title="gtk_text_iter_get_attributes ()"><code class="function">gtk_text_iter_get_attributes()</code></a>,
1391
+ which returns the language in effect at <em class="parameter"><code>iter</code></em>. If no tags affecting
1392
+ language apply to <em class="parameter"><code>iter</code></em>, the return value is identical to that of
1393
+ <a class="link" href="gtk3-General.html#gtk-get-default-language" title="gtk_get_default_language ()"><code class="function">gtk_get_default_language()</code></a>.
1394
+ </p>
1395
+ <div class="variablelist"><table border="0" class="variablelist">
1396
+ <colgroup>
1397
+ <col align="left" valign="top">
1398
+ <col>
1399
+ </colgroup>
1400
+ <tbody>
1401
+ <tr>
1402
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1403
+ <td>an iterator</td>
1404
+ </tr>
1405
+ <tr>
1406
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1407
+ <td>language in effect at <em class="parameter"><code>iter</code></em>
1408
+ </td>
1409
+ </tr>
1410
+ </tbody>
1411
+ </table></div>
1412
+ </div>
1413
+ <hr>
1414
+ <div class="refsect2">
1415
+ <a name="gtk-text-iter-is-end"></a><h3>gtk_text_iter_is_end ()</h3>
1416
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_is_end (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1417
+ <p>
1418
+ Returns <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> is the end iterator, i.e. one past the last
1419
+ dereferenceable iterator in the buffer. <a class="link" href="GtkTextIter.html#gtk-text-iter-is-end" title="gtk_text_iter_is_end ()"><code class="function">gtk_text_iter_is_end()</code></a> is
1420
+ the most efficient way to check whether an iterator is the end
1421
+ iterator.
1422
+ </p>
1423
+ <div class="variablelist"><table border="0" class="variablelist">
1424
+ <colgroup>
1425
+ <col align="left" valign="top">
1426
+ <col>
1427
+ </colgroup>
1428
+ <tbody>
1429
+ <tr>
1430
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1431
+ <td>an iterator</td>
1432
+ </tr>
1433
+ <tr>
1434
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1435
+ <td>whether <em class="parameter"><code>iter</code></em> is the end iterator</td>
1436
+ </tr>
1437
+ </tbody>
1438
+ </table></div>
1439
+ </div>
1440
+ <hr>
1441
+ <div class="refsect2">
1442
+ <a name="gtk-text-iter-is-start"></a><h3>gtk_text_iter_is_start ()</h3>
1443
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_is_start (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1444
+ <p>
1445
+ Returns <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> is the first iterator in the buffer, that is
1446
+ if <em class="parameter"><code>iter</code></em> has a character offset of 0.
1447
+ </p>
1448
+ <div class="variablelist"><table border="0" class="variablelist">
1449
+ <colgroup>
1450
+ <col align="left" valign="top">
1451
+ <col>
1452
+ </colgroup>
1453
+ <tbody>
1454
+ <tr>
1455
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1456
+ <td>an iterator</td>
1457
+ </tr>
1458
+ <tr>
1459
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1460
+ <td>whether <em class="parameter"><code>iter</code></em> is the first in the buffer</td>
1461
+ </tr>
1462
+ </tbody>
1463
+ </table></div>
1464
+ </div>
1465
+ <hr>
1466
+ <div class="refsect2">
1467
+ <a name="gtk-text-iter-forward-char"></a><h3>gtk_text_iter_forward_char ()</h3>
1468
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_char (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1469
+ <p>
1470
+ Moves <em class="parameter"><code>iter</code></em> forward by one character offset. Note that images
1471
+ embedded in the buffer occupy 1 character slot, so
1472
+ <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-char" title="gtk_text_iter_forward_char ()"><code class="function">gtk_text_iter_forward_char()</code></a> may actually move onto an image instead
1473
+ of a character, if you have images in your buffer. If <em class="parameter"><code>iter</code></em> is the
1474
+ end iterator or one character before it, <em class="parameter"><code>iter</code></em> will now point at
1475
+ the end iterator, and <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-char" title="gtk_text_iter_forward_char ()"><code class="function">gtk_text_iter_forward_char()</code></a> returns <code class="literal">FALSE</code> for
1476
+ convenience when writing loops.
1477
+ </p>
1478
+ <div class="variablelist"><table border="0" class="variablelist">
1479
+ <colgroup>
1480
+ <col align="left" valign="top">
1481
+ <col>
1482
+ </colgroup>
1483
+ <tbody>
1484
+ <tr>
1485
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1486
+ <td>an iterator</td>
1487
+ </tr>
1488
+ <tr>
1489
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1490
+ <td>whether <em class="parameter"><code>iter</code></em> moved and is dereferenceable</td>
1491
+ </tr>
1492
+ </tbody>
1493
+ </table></div>
1494
+ </div>
1495
+ <hr>
1496
+ <div class="refsect2">
1497
+ <a name="gtk-text-iter-backward-char"></a><h3>gtk_text_iter_backward_char ()</h3>
1498
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_char (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1499
+ <p>
1500
+ Moves backward by one character offset. Returns <code class="literal">TRUE</code> if movement
1501
+ was possible; if <em class="parameter"><code>iter</code></em> was the first in the buffer (character
1502
+ offset 0), <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-char" title="gtk_text_iter_backward_char ()"><code class="function">gtk_text_iter_backward_char()</code></a> returns <code class="literal">FALSE</code> for convenience when
1503
+ writing loops.
1504
+ </p>
1505
+ <div class="variablelist"><table border="0" class="variablelist">
1506
+ <colgroup>
1507
+ <col align="left" valign="top">
1508
+ <col>
1509
+ </colgroup>
1510
+ <tbody>
1511
+ <tr>
1512
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1513
+ <td>an iterator</td>
1514
+ </tr>
1515
+ <tr>
1516
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1517
+ <td>whether movement was possible</td>
1518
+ </tr>
1519
+ </tbody>
1520
+ </table></div>
1521
+ </div>
1522
+ <hr>
1523
+ <div class="refsect2">
1524
+ <a name="gtk-text-iter-forward-chars"></a><h3>gtk_text_iter_forward_chars ()</h3>
1525
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_chars (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1526
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);</pre>
1527
+ <p>
1528
+ Moves <em class="parameter"><code>count</code></em> characters if possible (if <em class="parameter"><code>count</code></em> would move past the
1529
+ start or end of the buffer, moves to the start or end of the
1530
+ buffer). The return value indicates whether the new position of
1531
+ <em class="parameter"><code>iter</code></em> is different from its original position, and dereferenceable
1532
+ (the last iterator in the buffer is not dereferenceable). If <em class="parameter"><code>count</code></em>
1533
+ is 0, the function does nothing and returns <code class="literal">FALSE</code>.
1534
+ </p>
1535
+ <div class="variablelist"><table border="0" class="variablelist">
1536
+ <colgroup>
1537
+ <col align="left" valign="top">
1538
+ <col>
1539
+ </colgroup>
1540
+ <tbody>
1541
+ <tr>
1542
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1543
+ <td>an iterator</td>
1544
+ </tr>
1545
+ <tr>
1546
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
1547
+ <td>number of characters to move, may be negative</td>
1548
+ </tr>
1549
+ <tr>
1550
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1551
+ <td>whether <em class="parameter"><code>iter</code></em> moved and is dereferenceable</td>
1552
+ </tr>
1553
+ </tbody>
1554
+ </table></div>
1555
+ </div>
1556
+ <hr>
1557
+ <div class="refsect2">
1558
+ <a name="gtk-text-iter-backward-chars"></a><h3>gtk_text_iter_backward_chars ()</h3>
1559
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_chars (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1560
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);</pre>
1561
+ <p>
1562
+ Moves <em class="parameter"><code>count</code></em> characters backward, if possible (if <em class="parameter"><code>count</code></em> would move
1563
+ past the start or end of the buffer, moves to the start or end of
1564
+ the buffer). The return value indicates whether the iterator moved
1565
+ onto a dereferenceable position; if the iterator didn't move, or
1566
+ moved onto the end iterator, then <code class="literal">FALSE</code> is returned. If <em class="parameter"><code>count</code></em> is 0,
1567
+ the function does nothing and returns <code class="literal">FALSE</code>.
1568
+ </p>
1569
+ <div class="variablelist"><table border="0" class="variablelist">
1570
+ <colgroup>
1571
+ <col align="left" valign="top">
1572
+ <col>
1573
+ </colgroup>
1574
+ <tbody>
1575
+ <tr>
1576
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1577
+ <td>an iterator</td>
1578
+ </tr>
1579
+ <tr>
1580
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
1581
+ <td>number of characters to move</td>
1582
+ </tr>
1583
+ <tr>
1584
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1585
+ <td>whether <em class="parameter"><code>iter</code></em> moved and is dereferenceable</td>
1586
+ </tr>
1587
+ </tbody>
1588
+ </table></div>
1589
+ </div>
1590
+ <hr>
1591
+ <div class="refsect2">
1592
+ <a name="gtk-text-iter-forward-line"></a><h3>gtk_text_iter_forward_line ()</h3>
1593
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_line (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1594
+ <p>
1595
+ Moves <em class="parameter"><code>iter</code></em> to the start of the next line. If the iter is already on the
1596
+ last line of the buffer, moves the iter to the end of the current line.
1597
+ If after the operation, the iter is at the end of the buffer and not
1598
+ dereferencable, returns <code class="literal">FALSE</code>. Otherwise, returns <code class="literal">TRUE</code>.
1599
+ </p>
1600
+ <div class="variablelist"><table border="0" class="variablelist">
1601
+ <colgroup>
1602
+ <col align="left" valign="top">
1603
+ <col>
1604
+ </colgroup>
1605
+ <tbody>
1606
+ <tr>
1607
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1608
+ <td>an iterator</td>
1609
+ </tr>
1610
+ <tr>
1611
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1612
+ <td>whether <em class="parameter"><code>iter</code></em> can be dereferenced</td>
1613
+ </tr>
1614
+ </tbody>
1615
+ </table></div>
1616
+ </div>
1617
+ <hr>
1618
+ <div class="refsect2">
1619
+ <a name="gtk-text-iter-backward-line"></a><h3>gtk_text_iter_backward_line ()</h3>
1620
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_line (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1621
+ <p>
1622
+ Moves <em class="parameter"><code>iter</code></em> to the start of the previous line. Returns <code class="literal">TRUE</code> if
1623
+ <em class="parameter"><code>iter</code></em> could be moved; i.e. if <em class="parameter"><code>iter</code></em> was at character offset 0, this
1624
+ function returns <code class="literal">FALSE</code>. Therefore if <em class="parameter"><code>iter</code></em> was already on line 0,
1625
+ but not at the start of the line, <em class="parameter"><code>iter</code></em> is snapped to the start of
1626
+ the line and the function returns <code class="literal">TRUE</code>. (Note that this implies that
1627
+ in a loop calling this function, the line number may not change on
1628
+ every iteration, if your first iteration is on line 0.)
1629
+ </p>
1630
+ <div class="variablelist"><table border="0" class="variablelist">
1631
+ <colgroup>
1632
+ <col align="left" valign="top">
1633
+ <col>
1634
+ </colgroup>
1635
+ <tbody>
1636
+ <tr>
1637
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1638
+ <td>an iterator</td>
1639
+ </tr>
1640
+ <tr>
1641
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1642
+ <td>whether <em class="parameter"><code>iter</code></em> moved</td>
1643
+ </tr>
1644
+ </tbody>
1645
+ </table></div>
1646
+ </div>
1647
+ <hr>
1648
+ <div class="refsect2">
1649
+ <a name="gtk-text-iter-forward-lines"></a><h3>gtk_text_iter_forward_lines ()</h3>
1650
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_lines (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1651
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);</pre>
1652
+ <p>
1653
+ Moves <em class="parameter"><code>count</code></em> lines forward, if possible (if <em class="parameter"><code>count</code></em> would move
1654
+ past the start or end of the buffer, moves to the start or end of
1655
+ the buffer). The return value indicates whether the iterator moved
1656
+ onto a dereferenceable position; if the iterator didn't move, or
1657
+ moved onto the end iterator, then <code class="literal">FALSE</code> is returned. If <em class="parameter"><code>count</code></em> is 0,
1658
+ the function does nothing and returns <code class="literal">FALSE</code>. If <em class="parameter"><code>count</code></em> is negative,
1659
+ moves backward by 0 - <em class="parameter"><code>count</code></em> lines.
1660
+ </p>
1661
+ <div class="variablelist"><table border="0" class="variablelist">
1662
+ <colgroup>
1663
+ <col align="left" valign="top">
1664
+ <col>
1665
+ </colgroup>
1666
+ <tbody>
1667
+ <tr>
1668
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1669
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1670
+ </td>
1671
+ </tr>
1672
+ <tr>
1673
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
1674
+ <td>number of lines to move forward</td>
1675
+ </tr>
1676
+ <tr>
1677
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1678
+ <td>whether <em class="parameter"><code>iter</code></em> moved and is dereferenceable</td>
1679
+ </tr>
1680
+ </tbody>
1681
+ </table></div>
1682
+ </div>
1683
+ <hr>
1684
+ <div class="refsect2">
1685
+ <a name="gtk-text-iter-backward-lines"></a><h3>gtk_text_iter_backward_lines ()</h3>
1686
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_lines (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1687
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);</pre>
1688
+ <p>
1689
+ Moves <em class="parameter"><code>count</code></em> lines backward, if possible (if <em class="parameter"><code>count</code></em> would move
1690
+ past the start or end of the buffer, moves to the start or end of
1691
+ the buffer). The return value indicates whether the iterator moved
1692
+ onto a dereferenceable position; if the iterator didn't move, or
1693
+ moved onto the end iterator, then <code class="literal">FALSE</code> is returned. If <em class="parameter"><code>count</code></em> is 0,
1694
+ the function does nothing and returns <code class="literal">FALSE</code>. If <em class="parameter"><code>count</code></em> is negative,
1695
+ moves forward by 0 - <em class="parameter"><code>count</code></em> lines.
1696
+ </p>
1697
+ <div class="variablelist"><table border="0" class="variablelist">
1698
+ <colgroup>
1699
+ <col align="left" valign="top">
1700
+ <col>
1701
+ </colgroup>
1702
+ <tbody>
1703
+ <tr>
1704
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1705
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1706
+ </td>
1707
+ </tr>
1708
+ <tr>
1709
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
1710
+ <td>number of lines to move backward</td>
1711
+ </tr>
1712
+ <tr>
1713
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1714
+ <td>whether <em class="parameter"><code>iter</code></em> moved and is dereferenceable</td>
1715
+ </tr>
1716
+ </tbody>
1717
+ </table></div>
1718
+ </div>
1719
+ <hr>
1720
+ <div class="refsect2">
1721
+ <a name="gtk-text-iter-forward-word-ends"></a><h3>gtk_text_iter_forward_word_ends ()</h3>
1722
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_word_ends (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1723
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);</pre>
1724
+ <p>
1725
+ Calls <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-word-end" title="gtk_text_iter_forward_word_end ()"><code class="function">gtk_text_iter_forward_word_end()</code></a> up to <em class="parameter"><code>count</code></em> times.
1726
+ </p>
1727
+ <div class="variablelist"><table border="0" class="variablelist">
1728
+ <colgroup>
1729
+ <col align="left" valign="top">
1730
+ <col>
1731
+ </colgroup>
1732
+ <tbody>
1733
+ <tr>
1734
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1735
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1736
+ </td>
1737
+ </tr>
1738
+ <tr>
1739
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
1740
+ <td>number of times to move</td>
1741
+ </tr>
1742
+ <tr>
1743
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1744
+ <td>
1745
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> moved and is not the end iterator</td>
1746
+ </tr>
1747
+ </tbody>
1748
+ </table></div>
1749
+ </div>
1750
+ <hr>
1751
+ <div class="refsect2">
1752
+ <a name="gtk-text-iter-backward-word-starts"></a><h3>gtk_text_iter_backward_word_starts ()</h3>
1753
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_word_starts (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1754
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);</pre>
1755
+ <p>
1756
+ Calls <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-word-start" title="gtk_text_iter_backward_word_start ()"><code class="function">gtk_text_iter_backward_word_start()</code></a> up to <em class="parameter"><code>count</code></em> times.
1757
+ </p>
1758
+ <div class="variablelist"><table border="0" class="variablelist">
1759
+ <colgroup>
1760
+ <col align="left" valign="top">
1761
+ <col>
1762
+ </colgroup>
1763
+ <tbody>
1764
+ <tr>
1765
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1766
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1767
+ </td>
1768
+ </tr>
1769
+ <tr>
1770
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
1771
+ <td>number of times to move</td>
1772
+ </tr>
1773
+ <tr>
1774
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1775
+ <td>
1776
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> moved and is not the end iterator</td>
1777
+ </tr>
1778
+ </tbody>
1779
+ </table></div>
1780
+ </div>
1781
+ <hr>
1782
+ <div class="refsect2">
1783
+ <a name="gtk-text-iter-forward-word-end"></a><h3>gtk_text_iter_forward_word_end ()</h3>
1784
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_word_end (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1785
+ <p>
1786
+ Moves forward to the next word end. (If <em class="parameter"><code>iter</code></em> is currently on a
1787
+ word end, moves forward to the next one after that.) Word breaks
1788
+ are determined by Pango and should be correct for nearly any
1789
+ language (if not, the correct fix would be to the Pango word break
1790
+ algorithms).
1791
+ </p>
1792
+ <div class="variablelist"><table border="0" class="variablelist">
1793
+ <colgroup>
1794
+ <col align="left" valign="top">
1795
+ <col>
1796
+ </colgroup>
1797
+ <tbody>
1798
+ <tr>
1799
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1800
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1801
+ </td>
1802
+ </tr>
1803
+ <tr>
1804
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1805
+ <td>
1806
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> moved and is not the end iterator</td>
1807
+ </tr>
1808
+ </tbody>
1809
+ </table></div>
1810
+ </div>
1811
+ <hr>
1812
+ <div class="refsect2">
1813
+ <a name="gtk-text-iter-backward-word-start"></a><h3>gtk_text_iter_backward_word_start ()</h3>
1814
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_word_start (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1815
+ <p>
1816
+ Moves backward to the previous word start. (If <em class="parameter"><code>iter</code></em> is currently on a
1817
+ word start, moves backward to the next one after that.) Word breaks
1818
+ are determined by Pango and should be correct for nearly any
1819
+ language (if not, the correct fix would be to the Pango word break
1820
+ algorithms).
1821
+ </p>
1822
+ <div class="variablelist"><table border="0" class="variablelist">
1823
+ <colgroup>
1824
+ <col align="left" valign="top">
1825
+ <col>
1826
+ </colgroup>
1827
+ <tbody>
1828
+ <tr>
1829
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1830
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1831
+ </td>
1832
+ </tr>
1833
+ <tr>
1834
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1835
+ <td>
1836
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> moved and is not the end iterator</td>
1837
+ </tr>
1838
+ </tbody>
1839
+ </table></div>
1840
+ </div>
1841
+ <hr>
1842
+ <div class="refsect2">
1843
+ <a name="gtk-text-iter-forward-cursor-position"></a><h3>gtk_text_iter_forward_cursor_position ()</h3>
1844
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_cursor_position
1845
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1846
+ <p>
1847
+ Moves <em class="parameter"><code>iter</code></em> forward by a single cursor position. Cursor positions
1848
+ are (unsurprisingly) positions where the cursor can appear. Perhaps
1849
+ surprisingly, there may not be a cursor position between all
1850
+ characters. The most common example for European languages would be
1851
+ a carriage return/newline sequence. For some Unicode characters,
1852
+ the equivalent of say the letter "a" with an accent mark will be
1853
+ represented as two characters, first the letter then a "combining
1854
+ mark" that causes the accent to be rendered; so the cursor can't go
1855
+ between those two characters. See also the <span class="type">PangoLogAttr</span> structure and
1856
+ <code class="function">pango_break()</code> function.
1857
+ </p>
1858
+ <div class="variablelist"><table border="0" class="variablelist">
1859
+ <colgroup>
1860
+ <col align="left" valign="top">
1861
+ <col>
1862
+ </colgroup>
1863
+ <tbody>
1864
+ <tr>
1865
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1866
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1867
+ </td>
1868
+ </tr>
1869
+ <tr>
1870
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1871
+ <td>
1872
+ <code class="literal">TRUE</code> if we moved and the new position is dereferenceable</td>
1873
+ </tr>
1874
+ </tbody>
1875
+ </table></div>
1876
+ </div>
1877
+ <hr>
1878
+ <div class="refsect2">
1879
+ <a name="gtk-text-iter-backward-cursor-position"></a><h3>gtk_text_iter_backward_cursor_position ()</h3>
1880
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_cursor_position
1881
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1882
+ <p>
1883
+ Like <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-cursor-position" title="gtk_text_iter_forward_cursor_position ()"><code class="function">gtk_text_iter_forward_cursor_position()</code></a>, but moves backward.
1884
+ </p>
1885
+ <div class="variablelist"><table border="0" class="variablelist">
1886
+ <colgroup>
1887
+ <col align="left" valign="top">
1888
+ <col>
1889
+ </colgroup>
1890
+ <tbody>
1891
+ <tr>
1892
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1893
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1894
+ </td>
1895
+ </tr>
1896
+ <tr>
1897
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1898
+ <td>
1899
+ <code class="literal">TRUE</code> if we moved</td>
1900
+ </tr>
1901
+ </tbody>
1902
+ </table></div>
1903
+ </div>
1904
+ <hr>
1905
+ <div class="refsect2">
1906
+ <a name="gtk-text-iter-forward-cursor-positions"></a><h3>gtk_text_iter_forward_cursor_positions ()</h3>
1907
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_cursor_positions
1908
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1909
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);</pre>
1910
+ <p>
1911
+ Moves up to <em class="parameter"><code>count</code></em> cursor positions. See
1912
+ <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-cursor-position" title="gtk_text_iter_forward_cursor_position ()"><code class="function">gtk_text_iter_forward_cursor_position()</code></a> for details.
1913
+ </p>
1914
+ <div class="variablelist"><table border="0" class="variablelist">
1915
+ <colgroup>
1916
+ <col align="left" valign="top">
1917
+ <col>
1918
+ </colgroup>
1919
+ <tbody>
1920
+ <tr>
1921
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1922
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1923
+ </td>
1924
+ </tr>
1925
+ <tr>
1926
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
1927
+ <td>number of positions to move</td>
1928
+ </tr>
1929
+ <tr>
1930
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1931
+ <td>
1932
+ <code class="literal">TRUE</code> if we moved and the new position is dereferenceable</td>
1933
+ </tr>
1934
+ </tbody>
1935
+ </table></div>
1936
+ </div>
1937
+ <hr>
1938
+ <div class="refsect2">
1939
+ <a name="gtk-text-iter-backward-cursor-positions"></a><h3>gtk_text_iter_backward_cursor_positions ()</h3>
1940
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_cursor_positions
1941
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
1942
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);</pre>
1943
+ <p>
1944
+ Moves up to <em class="parameter"><code>count</code></em> cursor positions. See
1945
+ <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-cursor-position" title="gtk_text_iter_forward_cursor_position ()"><code class="function">gtk_text_iter_forward_cursor_position()</code></a> for details.
1946
+ </p>
1947
+ <div class="variablelist"><table border="0" class="variablelist">
1948
+ <colgroup>
1949
+ <col align="left" valign="top">
1950
+ <col>
1951
+ </colgroup>
1952
+ <tbody>
1953
+ <tr>
1954
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1955
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1956
+ </td>
1957
+ </tr>
1958
+ <tr>
1959
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
1960
+ <td>number of positions to move</td>
1961
+ </tr>
1962
+ <tr>
1963
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1964
+ <td>
1965
+ <code class="literal">TRUE</code> if we moved and the new position is dereferenceable</td>
1966
+ </tr>
1967
+ </tbody>
1968
+ </table></div>
1969
+ </div>
1970
+ <hr>
1971
+ <div class="refsect2">
1972
+ <a name="gtk-text-iter-backward-sentence-start"></a><h3>gtk_text_iter_backward_sentence_start ()</h3>
1973
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_sentence_start
1974
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
1975
+ <p>
1976
+ Moves backward to the previous sentence start; if <em class="parameter"><code>iter</code></em> is already at
1977
+ the start of a sentence, moves backward to the next one. Sentence
1978
+ boundaries are determined by Pango and should be correct for nearly
1979
+ any language (if not, the correct fix would be to the Pango text
1980
+ boundary algorithms).
1981
+ </p>
1982
+ <div class="variablelist"><table border="0" class="variablelist">
1983
+ <colgroup>
1984
+ <col align="left" valign="top">
1985
+ <col>
1986
+ </colgroup>
1987
+ <tbody>
1988
+ <tr>
1989
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
1990
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
1991
+ </td>
1992
+ </tr>
1993
+ <tr>
1994
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1995
+ <td>
1996
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> moved and is not the end iterator</td>
1997
+ </tr>
1998
+ </tbody>
1999
+ </table></div>
2000
+ </div>
2001
+ <hr>
2002
+ <div class="refsect2">
2003
+ <a name="gtk-text-iter-backward-sentence-starts"></a><h3>gtk_text_iter_backward_sentence_starts ()</h3>
2004
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_sentence_starts
2005
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2006
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);</pre>
2007
+ <p>
2008
+ Calls <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-sentence-start" title="gtk_text_iter_backward_sentence_start ()"><code class="function">gtk_text_iter_backward_sentence_start()</code></a> up to <em class="parameter"><code>count</code></em> times,
2009
+ or until it returns <code class="literal">FALSE</code>. If <em class="parameter"><code>count</code></em> is negative, moves forward
2010
+ instead of backward.
2011
+ </p>
2012
+ <div class="variablelist"><table border="0" class="variablelist">
2013
+ <colgroup>
2014
+ <col align="left" valign="top">
2015
+ <col>
2016
+ </colgroup>
2017
+ <tbody>
2018
+ <tr>
2019
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2020
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2021
+ </td>
2022
+ </tr>
2023
+ <tr>
2024
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
2025
+ <td>number of sentences to move</td>
2026
+ </tr>
2027
+ <tr>
2028
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2029
+ <td>
2030
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> moved and is not the end iterator</td>
2031
+ </tr>
2032
+ </tbody>
2033
+ </table></div>
2034
+ </div>
2035
+ <hr>
2036
+ <div class="refsect2">
2037
+ <a name="gtk-text-iter-forward-sentence-end"></a><h3>gtk_text_iter_forward_sentence_end ()</h3>
2038
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_sentence_end (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
2039
+ <p>
2040
+ Moves forward to the next sentence end. (If <em class="parameter"><code>iter</code></em> is at the end of
2041
+ a sentence, moves to the next end of sentence.) Sentence
2042
+ boundaries are determined by Pango and should be correct for nearly
2043
+ any language (if not, the correct fix would be to the Pango text
2044
+ boundary algorithms).
2045
+ </p>
2046
+ <div class="variablelist"><table border="0" class="variablelist">
2047
+ <colgroup>
2048
+ <col align="left" valign="top">
2049
+ <col>
2050
+ </colgroup>
2051
+ <tbody>
2052
+ <tr>
2053
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2054
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2055
+ </td>
2056
+ </tr>
2057
+ <tr>
2058
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2059
+ <td>
2060
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> moved and is not the end iterator</td>
2061
+ </tr>
2062
+ </tbody>
2063
+ </table></div>
2064
+ </div>
2065
+ <hr>
2066
+ <div class="refsect2">
2067
+ <a name="gtk-text-iter-forward-sentence-ends"></a><h3>gtk_text_iter_forward_sentence_ends ()</h3>
2068
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_sentence_ends (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2069
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);</pre>
2070
+ <p>
2071
+ Calls <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-sentence-end" title="gtk_text_iter_forward_sentence_end ()"><code class="function">gtk_text_iter_forward_sentence_end()</code></a> <em class="parameter"><code>count</code></em> times (or until
2072
+ <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-sentence-end" title="gtk_text_iter_forward_sentence_end ()"><code class="function">gtk_text_iter_forward_sentence_end()</code></a> returns <code class="literal">FALSE</code>). If <em class="parameter"><code>count</code></em> is
2073
+ negative, moves backward instead of forward.
2074
+ </p>
2075
+ <div class="variablelist"><table border="0" class="variablelist">
2076
+ <colgroup>
2077
+ <col align="left" valign="top">
2078
+ <col>
2079
+ </colgroup>
2080
+ <tbody>
2081
+ <tr>
2082
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2083
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2084
+ </td>
2085
+ </tr>
2086
+ <tr>
2087
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
2088
+ <td>number of sentences to move</td>
2089
+ </tr>
2090
+ <tr>
2091
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2092
+ <td>
2093
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> moved and is not the end iterator</td>
2094
+ </tr>
2095
+ </tbody>
2096
+ </table></div>
2097
+ </div>
2098
+ <hr>
2099
+ <div class="refsect2">
2100
+ <a name="gtk-text-iter-forward-visible-word-ends"></a><h3>gtk_text_iter_forward_visible_word_ends ()</h3>
2101
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_visible_word_ends
2102
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2103
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);</pre>
2104
+ <p>
2105
+ Calls <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-visible-word-end" title="gtk_text_iter_forward_visible_word_end ()"><code class="function">gtk_text_iter_forward_visible_word_end()</code></a> up to <em class="parameter"><code>count</code></em> times.
2106
+ </p>
2107
+ <div class="variablelist"><table border="0" class="variablelist">
2108
+ <colgroup>
2109
+ <col align="left" valign="top">
2110
+ <col>
2111
+ </colgroup>
2112
+ <tbody>
2113
+ <tr>
2114
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2115
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2116
+ </td>
2117
+ </tr>
2118
+ <tr>
2119
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
2120
+ <td>number of times to move</td>
2121
+ </tr>
2122
+ <tr>
2123
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2124
+ <td>
2125
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> moved and is not the end iterator</td>
2126
+ </tr>
2127
+ </tbody>
2128
+ </table></div>
2129
+ <p class="since">Since 2.4</p>
2130
+ </div>
2131
+ <hr>
2132
+ <div class="refsect2">
2133
+ <a name="gtk-text-iter-backward-visible-word-starts"></a><h3>gtk_text_iter_backward_visible_word_starts ()</h3>
2134
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_visible_word_starts
2135
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2136
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);</pre>
2137
+ <p>
2138
+ Calls <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-visible-word-start" title="gtk_text_iter_backward_visible_word_start ()"><code class="function">gtk_text_iter_backward_visible_word_start()</code></a> up to <em class="parameter"><code>count</code></em> times.
2139
+ </p>
2140
+ <div class="variablelist"><table border="0" class="variablelist">
2141
+ <colgroup>
2142
+ <col align="left" valign="top">
2143
+ <col>
2144
+ </colgroup>
2145
+ <tbody>
2146
+ <tr>
2147
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2148
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2149
+ </td>
2150
+ </tr>
2151
+ <tr>
2152
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
2153
+ <td>number of times to move</td>
2154
+ </tr>
2155
+ <tr>
2156
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2157
+ <td>
2158
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> moved and is not the end iterator</td>
2159
+ </tr>
2160
+ </tbody>
2161
+ </table></div>
2162
+ <p class="since">Since 2.4</p>
2163
+ </div>
2164
+ <hr>
2165
+ <div class="refsect2">
2166
+ <a name="gtk-text-iter-forward-visible-word-end"></a><h3>gtk_text_iter_forward_visible_word_end ()</h3>
2167
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_visible_word_end
2168
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
2169
+ <p>
2170
+ Moves forward to the next visible word end. (If <em class="parameter"><code>iter</code></em> is currently on a
2171
+ word end, moves forward to the next one after that.) Word breaks
2172
+ are determined by Pango and should be correct for nearly any
2173
+ language (if not, the correct fix would be to the Pango word break
2174
+ algorithms).
2175
+ </p>
2176
+ <div class="variablelist"><table border="0" class="variablelist">
2177
+ <colgroup>
2178
+ <col align="left" valign="top">
2179
+ <col>
2180
+ </colgroup>
2181
+ <tbody>
2182
+ <tr>
2183
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2184
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2185
+ </td>
2186
+ </tr>
2187
+ <tr>
2188
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2189
+ <td>
2190
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> moved and is not the end iterator</td>
2191
+ </tr>
2192
+ </tbody>
2193
+ </table></div>
2194
+ <p class="since">Since 2.4</p>
2195
+ </div>
2196
+ <hr>
2197
+ <div class="refsect2">
2198
+ <a name="gtk-text-iter-backward-visible-word-start"></a><h3>gtk_text_iter_backward_visible_word_start ()</h3>
2199
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_visible_word_start
2200
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
2201
+ <p>
2202
+ Moves backward to the previous visible word start. (If <em class="parameter"><code>iter</code></em> is currently
2203
+ on a word start, moves backward to the next one after that.) Word breaks
2204
+ are determined by Pango and should be correct for nearly any
2205
+ language (if not, the correct fix would be to the Pango word break
2206
+ algorithms).
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>iter</code></em> :</span></p></td>
2216
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</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 <em class="parameter"><code>iter</code></em> moved and is not the end iterator</td>
2223
+ </tr>
2224
+ </tbody>
2225
+ </table></div>
2226
+ <p class="since">Since 2.4</p>
2227
+ </div>
2228
+ <hr>
2229
+ <div class="refsect2">
2230
+ <a name="gtk-text-iter-forward-visible-cursor-position"></a><h3>gtk_text_iter_forward_visible_cursor_position ()</h3>
2231
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_visible_cursor_position
2232
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
2233
+ <p>
2234
+ Moves <em class="parameter"><code>iter</code></em> forward to the next visible cursor position. See
2235
+ <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-cursor-position" title="gtk_text_iter_forward_cursor_position ()"><code class="function">gtk_text_iter_forward_cursor_position()</code></a> for details.
2236
+ </p>
2237
+ <div class="variablelist"><table border="0" class="variablelist">
2238
+ <colgroup>
2239
+ <col align="left" valign="top">
2240
+ <col>
2241
+ </colgroup>
2242
+ <tbody>
2243
+ <tr>
2244
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2245
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2246
+ </td>
2247
+ </tr>
2248
+ <tr>
2249
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2250
+ <td>
2251
+ <code class="literal">TRUE</code> if we moved and the new position is dereferenceable</td>
2252
+ </tr>
2253
+ </tbody>
2254
+ </table></div>
2255
+ <p class="since">Since 2.4</p>
2256
+ </div>
2257
+ <hr>
2258
+ <div class="refsect2">
2259
+ <a name="gtk-text-iter-backward-visible-cursor-position"></a><h3>gtk_text_iter_backward_visible_cursor_position ()</h3>
2260
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_visible_cursor_position
2261
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
2262
+ <p>
2263
+ Moves <em class="parameter"><code>iter</code></em> forward to the previous visible cursor position. See
2264
+ <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-cursor-position" title="gtk_text_iter_backward_cursor_position ()"><code class="function">gtk_text_iter_backward_cursor_position()</code></a> for details.
2265
+ </p>
2266
+ <div class="variablelist"><table border="0" class="variablelist">
2267
+ <colgroup>
2268
+ <col align="left" valign="top">
2269
+ <col>
2270
+ </colgroup>
2271
+ <tbody>
2272
+ <tr>
2273
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2274
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2275
+ </td>
2276
+ </tr>
2277
+ <tr>
2278
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2279
+ <td>
2280
+ <code class="literal">TRUE</code> if we moved and the new position is dereferenceable</td>
2281
+ </tr>
2282
+ </tbody>
2283
+ </table></div>
2284
+ <p class="since">Since 2.4</p>
2285
+ </div>
2286
+ <hr>
2287
+ <div class="refsect2">
2288
+ <a name="gtk-text-iter-forward-visible-cursor-positions"></a><h3>gtk_text_iter_forward_visible_cursor_positions ()</h3>
2289
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_visible_cursor_positions
2290
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2291
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);</pre>
2292
+ <p>
2293
+ Moves up to <em class="parameter"><code>count</code></em> visible cursor positions. See
2294
+ <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-cursor-position" title="gtk_text_iter_forward_cursor_position ()"><code class="function">gtk_text_iter_forward_cursor_position()</code></a> for details.
2295
+ </p>
2296
+ <div class="variablelist"><table border="0" class="variablelist">
2297
+ <colgroup>
2298
+ <col align="left" valign="top">
2299
+ <col>
2300
+ </colgroup>
2301
+ <tbody>
2302
+ <tr>
2303
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2304
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2305
+ </td>
2306
+ </tr>
2307
+ <tr>
2308
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
2309
+ <td>number of positions to move</td>
2310
+ </tr>
2311
+ <tr>
2312
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2313
+ <td>
2314
+ <code class="literal">TRUE</code> if we moved and the new position is dereferenceable</td>
2315
+ </tr>
2316
+ </tbody>
2317
+ </table></div>
2318
+ <p class="since">Since 2.4</p>
2319
+ </div>
2320
+ <hr>
2321
+ <div class="refsect2">
2322
+ <a name="gtk-text-iter-backward-visible-cursor-positions"></a><h3>gtk_text_iter_backward_visible_cursor_positions ()</h3>
2323
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_visible_cursor_positions
2324
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2325
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);</pre>
2326
+ <p>
2327
+ Moves up to <em class="parameter"><code>count</code></em> visible cursor positions. See
2328
+ <a class="link" href="GtkTextIter.html#gtk-text-iter-backward-cursor-position" title="gtk_text_iter_backward_cursor_position ()"><code class="function">gtk_text_iter_backward_cursor_position()</code></a> for details.
2329
+ </p>
2330
+ <div class="variablelist"><table border="0" class="variablelist">
2331
+ <colgroup>
2332
+ <col align="left" valign="top">
2333
+ <col>
2334
+ </colgroup>
2335
+ <tbody>
2336
+ <tr>
2337
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2338
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2339
+ </td>
2340
+ </tr>
2341
+ <tr>
2342
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
2343
+ <td>number of positions to move</td>
2344
+ </tr>
2345
+ <tr>
2346
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2347
+ <td>
2348
+ <code class="literal">TRUE</code> if we moved and the new position is dereferenceable</td>
2349
+ </tr>
2350
+ </tbody>
2351
+ </table></div>
2352
+ <p class="since">Since 2.4</p>
2353
+ </div>
2354
+ <hr>
2355
+ <div class="refsect2">
2356
+ <a name="gtk-text-iter-forward-visible-line"></a><h3>gtk_text_iter_forward_visible_line ()</h3>
2357
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_visible_line (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
2358
+ <p>
2359
+ Moves <em class="parameter"><code>iter</code></em> to the start of the next visible line. Returns <code class="literal">TRUE</code> if there
2360
+ was a next line to move to, and <code class="literal">FALSE</code> if <em class="parameter"><code>iter</code></em> was simply moved to
2361
+ the end of the buffer and is now not dereferenceable, or if <em class="parameter"><code>iter</code></em> was
2362
+ already at the end of the buffer.
2363
+ </p>
2364
+ <div class="variablelist"><table border="0" class="variablelist">
2365
+ <colgroup>
2366
+ <col align="left" valign="top">
2367
+ <col>
2368
+ </colgroup>
2369
+ <tbody>
2370
+ <tr>
2371
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2372
+ <td>an iterator</td>
2373
+ </tr>
2374
+ <tr>
2375
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2376
+ <td>whether <em class="parameter"><code>iter</code></em> can be dereferenced</td>
2377
+ </tr>
2378
+ </tbody>
2379
+ </table></div>
2380
+ <p class="since">Since 2.8</p>
2381
+ </div>
2382
+ <hr>
2383
+ <div class="refsect2">
2384
+ <a name="gtk-text-iter-backward-visible-line"></a><h3>gtk_text_iter_backward_visible_line ()</h3>
2385
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_visible_line (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
2386
+ <p>
2387
+ Moves <em class="parameter"><code>iter</code></em> to the start of the previous visible line. Returns <code class="literal">TRUE</code> if
2388
+ <em class="parameter"><code>iter</code></em> could be moved; i.e. if <em class="parameter"><code>iter</code></em> was at character offset 0, this
2389
+ function returns <code class="literal">FALSE</code>. Therefore if <em class="parameter"><code>iter</code></em> was already on line 0,
2390
+ but not at the start of the line, <em class="parameter"><code>iter</code></em> is snapped to the start of
2391
+ the line and the function returns <code class="literal">TRUE</code>. (Note that this implies that
2392
+ in a loop calling this function, the line number may not change on
2393
+ every iteration, if your first iteration is on line 0.)
2394
+ </p>
2395
+ <div class="variablelist"><table border="0" class="variablelist">
2396
+ <colgroup>
2397
+ <col align="left" valign="top">
2398
+ <col>
2399
+ </colgroup>
2400
+ <tbody>
2401
+ <tr>
2402
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2403
+ <td>an iterator</td>
2404
+ </tr>
2405
+ <tr>
2406
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2407
+ <td>whether <em class="parameter"><code>iter</code></em> moved</td>
2408
+ </tr>
2409
+ </tbody>
2410
+ </table></div>
2411
+ <p class="since">Since 2.8</p>
2412
+ </div>
2413
+ <hr>
2414
+ <div class="refsect2">
2415
+ <a name="gtk-text-iter-forward-visible-lines"></a><h3>gtk_text_iter_forward_visible_lines ()</h3>
2416
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_visible_lines (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2417
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);</pre>
2418
+ <p>
2419
+ Moves <em class="parameter"><code>count</code></em> visible lines forward, if possible (if <em class="parameter"><code>count</code></em> would move
2420
+ past the start or end of the buffer, moves to the start or end of
2421
+ the buffer). The return value indicates whether the iterator moved
2422
+ onto a dereferenceable position; if the iterator didn't move, or
2423
+ moved onto the end iterator, then <code class="literal">FALSE</code> is returned. If <em class="parameter"><code>count</code></em> is 0,
2424
+ the function does nothing and returns <code class="literal">FALSE</code>. If <em class="parameter"><code>count</code></em> is negative,
2425
+ moves backward by 0 - <em class="parameter"><code>count</code></em> lines.
2426
+ </p>
2427
+ <div class="variablelist"><table border="0" class="variablelist">
2428
+ <colgroup>
2429
+ <col align="left" valign="top">
2430
+ <col>
2431
+ </colgroup>
2432
+ <tbody>
2433
+ <tr>
2434
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2435
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2436
+ </td>
2437
+ </tr>
2438
+ <tr>
2439
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
2440
+ <td>number of lines to move forward</td>
2441
+ </tr>
2442
+ <tr>
2443
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2444
+ <td>whether <em class="parameter"><code>iter</code></em> moved and is dereferenceable</td>
2445
+ </tr>
2446
+ </tbody>
2447
+ </table></div>
2448
+ <p class="since">Since 2.8</p>
2449
+ </div>
2450
+ <hr>
2451
+ <div class="refsect2">
2452
+ <a name="gtk-text-iter-backward-visible-lines"></a><h3>gtk_text_iter_backward_visible_lines ()</h3>
2453
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_visible_lines
2454
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2455
+ <em class="parameter"><code><span class="type">gint</span> count</code></em>);</pre>
2456
+ <p>
2457
+ Moves <em class="parameter"><code>count</code></em> visible lines backward, if possible (if <em class="parameter"><code>count</code></em> would move
2458
+ past the start or end of the buffer, moves to the start or end of
2459
+ the buffer). The return value indicates whether the iterator moved
2460
+ onto a dereferenceable position; if the iterator didn't move, or
2461
+ moved onto the end iterator, then <code class="literal">FALSE</code> is returned. If <em class="parameter"><code>count</code></em> is 0,
2462
+ the function does nothing and returns <code class="literal">FALSE</code>. If <em class="parameter"><code>count</code></em> is negative,
2463
+ moves forward by 0 - <em class="parameter"><code>count</code></em> lines.
2464
+ </p>
2465
+ <div class="variablelist"><table border="0" class="variablelist">
2466
+ <colgroup>
2467
+ <col align="left" valign="top">
2468
+ <col>
2469
+ </colgroup>
2470
+ <tbody>
2471
+ <tr>
2472
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2473
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2474
+ </td>
2475
+ </tr>
2476
+ <tr>
2477
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
2478
+ <td>number of lines to move backward</td>
2479
+ </tr>
2480
+ <tr>
2481
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2482
+ <td>whether <em class="parameter"><code>iter</code></em> moved and is dereferenceable</td>
2483
+ </tr>
2484
+ </tbody>
2485
+ </table></div>
2486
+ <p class="since">Since 2.8</p>
2487
+ </div>
2488
+ <hr>
2489
+ <div class="refsect2">
2490
+ <a name="gtk-text-iter-set-offset"></a><h3>gtk_text_iter_set_offset ()</h3>
2491
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_iter_set_offset (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2492
+ <em class="parameter"><code><span class="type">gint</span> char_offset</code></em>);</pre>
2493
+ <p>
2494
+ Sets <em class="parameter"><code>iter</code></em> to point to <em class="parameter"><code>char_offset</code></em>. <em class="parameter"><code>char_offset</code></em> counts from the start
2495
+ of the entire text buffer, starting with 0.
2496
+ </p>
2497
+ <div class="variablelist"><table border="0" class="variablelist">
2498
+ <colgroup>
2499
+ <col align="left" valign="top">
2500
+ <col>
2501
+ </colgroup>
2502
+ <tbody>
2503
+ <tr>
2504
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2505
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2506
+ </td>
2507
+ </tr>
2508
+ <tr>
2509
+ <td><p><span class="term"><em class="parameter"><code>char_offset</code></em> :</span></p></td>
2510
+ <td>a character number</td>
2511
+ </tr>
2512
+ </tbody>
2513
+ </table></div>
2514
+ </div>
2515
+ <hr>
2516
+ <div class="refsect2">
2517
+ <a name="gtk-text-iter-set-line"></a><h3>gtk_text_iter_set_line ()</h3>
2518
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_iter_set_line (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2519
+ <em class="parameter"><code><span class="type">gint</span> line_number</code></em>);</pre>
2520
+ <p>
2521
+ Moves iterator <em class="parameter"><code>iter</code></em> to the start of the line <em class="parameter"><code>line_number</code></em>. If
2522
+ <em class="parameter"><code>line_number</code></em> is negative or larger than the number of lines in the
2523
+ buffer, moves <em class="parameter"><code>iter</code></em> to the start of the last line in the buffer.
2524
+ </p>
2525
+ <div class="variablelist"><table border="0" class="variablelist">
2526
+ <colgroup>
2527
+ <col align="left" valign="top">
2528
+ <col>
2529
+ </colgroup>
2530
+ <tbody>
2531
+ <tr>
2532
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2533
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2534
+ </td>
2535
+ </tr>
2536
+ <tr>
2537
+ <td><p><span class="term"><em class="parameter"><code>line_number</code></em> :</span></p></td>
2538
+ <td>line number (counted from 0)</td>
2539
+ </tr>
2540
+ </tbody>
2541
+ </table></div>
2542
+ </div>
2543
+ <hr>
2544
+ <div class="refsect2">
2545
+ <a name="gtk-text-iter-set-line-offset"></a><h3>gtk_text_iter_set_line_offset ()</h3>
2546
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_iter_set_line_offset (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2547
+ <em class="parameter"><code><span class="type">gint</span> char_on_line</code></em>);</pre>
2548
+ <p>
2549
+ Moves <em class="parameter"><code>iter</code></em> within a line, to a new <span class="emphasis"><em>character</em></span>
2550
+ (not byte) offset. The given character offset must be less than or
2551
+ equal to the number of characters in the line; if equal, <em class="parameter"><code>iter</code></em>
2552
+ moves to the start of the next line. See
2553
+ <a class="link" href="GtkTextIter.html#gtk-text-iter-set-line-index" title="gtk_text_iter_set_line_index ()"><code class="function">gtk_text_iter_set_line_index()</code></a> if you have a byte index rather than
2554
+ a character offset.
2555
+ </p>
2556
+ <div class="variablelist"><table border="0" class="variablelist">
2557
+ <colgroup>
2558
+ <col align="left" valign="top">
2559
+ <col>
2560
+ </colgroup>
2561
+ <tbody>
2562
+ <tr>
2563
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2564
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2565
+ </td>
2566
+ </tr>
2567
+ <tr>
2568
+ <td><p><span class="term"><em class="parameter"><code>char_on_line</code></em> :</span></p></td>
2569
+ <td>a character offset relative to the start of <em class="parameter"><code>iter</code></em>'s current line</td>
2570
+ </tr>
2571
+ </tbody>
2572
+ </table></div>
2573
+ </div>
2574
+ <hr>
2575
+ <div class="refsect2">
2576
+ <a name="gtk-text-iter-set-line-index"></a><h3>gtk_text_iter_set_line_index ()</h3>
2577
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_iter_set_line_index (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2578
+ <em class="parameter"><code><span class="type">gint</span> byte_on_line</code></em>);</pre>
2579
+ <p>
2580
+ Same as <a class="link" href="GtkTextIter.html#gtk-text-iter-set-line-offset" title="gtk_text_iter_set_line_offset ()"><code class="function">gtk_text_iter_set_line_offset()</code></a>, but works with a
2581
+ <span class="emphasis"><em>byte</em></span> index. The given byte index must be at
2582
+ the start of a character, it can't be in the middle of a UTF-8
2583
+ encoded character.
2584
+ </p>
2585
+ <div class="variablelist"><table border="0" class="variablelist">
2586
+ <colgroup>
2587
+ <col align="left" valign="top">
2588
+ <col>
2589
+ </colgroup>
2590
+ <tbody>
2591
+ <tr>
2592
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2593
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2594
+ </td>
2595
+ </tr>
2596
+ <tr>
2597
+ <td><p><span class="term"><em class="parameter"><code>byte_on_line</code></em> :</span></p></td>
2598
+ <td>a byte index relative to the start of <em class="parameter"><code>iter</code></em>'s current line</td>
2599
+ </tr>
2600
+ </tbody>
2601
+ </table></div>
2602
+ </div>
2603
+ <hr>
2604
+ <div class="refsect2">
2605
+ <a name="gtk-text-iter-set-visible-line-index"></a><h3>gtk_text_iter_set_visible_line_index ()</h3>
2606
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_iter_set_visible_line_index
2607
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2608
+ <em class="parameter"><code><span class="type">gint</span> byte_on_line</code></em>);</pre>
2609
+ <p>
2610
+ Like <a class="link" href="GtkTextIter.html#gtk-text-iter-set-line-index" title="gtk_text_iter_set_line_index ()"><code class="function">gtk_text_iter_set_line_index()</code></a>, but the index is in visible
2611
+ bytes, i.e. text with a tag making it invisible is not counted
2612
+ in the index.
2613
+ </p>
2614
+ <div class="variablelist"><table border="0" class="variablelist">
2615
+ <colgroup>
2616
+ <col align="left" valign="top">
2617
+ <col>
2618
+ </colgroup>
2619
+ <tbody>
2620
+ <tr>
2621
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2622
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2623
+ </td>
2624
+ </tr>
2625
+ <tr>
2626
+ <td><p><span class="term"><em class="parameter"><code>byte_on_line</code></em> :</span></p></td>
2627
+ <td>a byte index</td>
2628
+ </tr>
2629
+ </tbody>
2630
+ </table></div>
2631
+ </div>
2632
+ <hr>
2633
+ <div class="refsect2">
2634
+ <a name="gtk-text-iter-set-visible-line-offset"></a><h3>gtk_text_iter_set_visible_line_offset ()</h3>
2635
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_iter_set_visible_line_offset
2636
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2637
+ <em class="parameter"><code><span class="type">gint</span> char_on_line</code></em>);</pre>
2638
+ <p>
2639
+ Like <a class="link" href="GtkTextIter.html#gtk-text-iter-set-line-offset" title="gtk_text_iter_set_line_offset ()"><code class="function">gtk_text_iter_set_line_offset()</code></a>, but the offset is in visible
2640
+ characters, i.e. text with a tag making it invisible is not
2641
+ counted in the offset.
2642
+ </p>
2643
+ <div class="variablelist"><table border="0" class="variablelist">
2644
+ <colgroup>
2645
+ <col align="left" valign="top">
2646
+ <col>
2647
+ </colgroup>
2648
+ <tbody>
2649
+ <tr>
2650
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2651
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2652
+ </td>
2653
+ </tr>
2654
+ <tr>
2655
+ <td><p><span class="term"><em class="parameter"><code>char_on_line</code></em> :</span></p></td>
2656
+ <td>a character offset</td>
2657
+ </tr>
2658
+ </tbody>
2659
+ </table></div>
2660
+ </div>
2661
+ <hr>
2662
+ <div class="refsect2">
2663
+ <a name="gtk-text-iter-forward-to-end"></a><h3>gtk_text_iter_forward_to_end ()</h3>
2664
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_iter_forward_to_end (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
2665
+ <p>
2666
+ Moves <em class="parameter"><code>iter</code></em> forward to the "end iterator," which points one past the last
2667
+ valid character in the buffer. <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> called on the
2668
+ end iterator returns 0, which is convenient for writing loops.
2669
+ </p>
2670
+ <div class="variablelist"><table border="0" class="variablelist">
2671
+ <colgroup>
2672
+ <col align="left" valign="top">
2673
+ <col>
2674
+ </colgroup>
2675
+ <tbody><tr>
2676
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2677
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2678
+ </td>
2679
+ </tr></tbody>
2680
+ </table></div>
2681
+ </div>
2682
+ <hr>
2683
+ <div class="refsect2">
2684
+ <a name="gtk-text-iter-forward-to-line-end"></a><h3>gtk_text_iter_forward_to_line_end ()</h3>
2685
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_to_line_end (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
2686
+ <p>
2687
+ Moves the iterator to point to the paragraph delimiter characters,
2688
+ which will be either a newline, a carriage return, a carriage
2689
+ return/newline in sequence, or the Unicode paragraph separator
2690
+ character. If the iterator is already at the paragraph delimiter
2691
+ characters, moves to the paragraph delimiter characters for the
2692
+ next line. If <em class="parameter"><code>iter</code></em> is on the last line in the buffer, which does
2693
+ not end in paragraph delimiters, moves to the end iterator (end of
2694
+ the last line), and returns <code class="literal">FALSE</code>.
2695
+ </p>
2696
+ <div class="variablelist"><table border="0" class="variablelist">
2697
+ <colgroup>
2698
+ <col align="left" valign="top">
2699
+ <col>
2700
+ </colgroup>
2701
+ <tbody>
2702
+ <tr>
2703
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2704
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2705
+ </td>
2706
+ </tr>
2707
+ <tr>
2708
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2709
+ <td>
2710
+ <code class="literal">TRUE</code> if we moved and the new location is not the end iterator</td>
2711
+ </tr>
2712
+ </tbody>
2713
+ </table></div>
2714
+ </div>
2715
+ <hr>
2716
+ <div class="refsect2">
2717
+ <a name="gtk-text-iter-forward-to-tag-toggle"></a><h3>gtk_text_iter_forward_to_tag_toggle ()</h3>
2718
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_to_tag_toggle (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2719
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);</pre>
2720
+ <p>
2721
+ Moves forward to the next toggle (on or off) of the
2722
+ <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> <em class="parameter"><code>tag</code></em>, or to the next toggle of any tag if
2723
+ <em class="parameter"><code>tag</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. If no matching tag toggles are found,
2724
+ returns <code class="literal">FALSE</code>, otherwise <code class="literal">TRUE</code>. Does not return toggles
2725
+ located at <em class="parameter"><code>iter</code></em>, only toggles after <em class="parameter"><code>iter</code></em>. Sets <em class="parameter"><code>iter</code></em> to
2726
+ the location of the toggle, or to the end of the buffer
2727
+ if no toggle is found.
2728
+ </p>
2729
+ <div class="variablelist"><table border="0" class="variablelist">
2730
+ <colgroup>
2731
+ <col align="left" valign="top">
2732
+ <col>
2733
+ </colgroup>
2734
+ <tbody>
2735
+ <tr>
2736
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2737
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2738
+ </td>
2739
+ </tr>
2740
+ <tr>
2741
+ <td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
2742
+ <td>a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</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="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2743
+ </td>
2744
+ </tr>
2745
+ <tr>
2746
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2747
+ <td>whether we found a tag toggle after <em class="parameter"><code>iter</code></em>
2748
+ </td>
2749
+ </tr>
2750
+ </tbody>
2751
+ </table></div>
2752
+ </div>
2753
+ <hr>
2754
+ <div class="refsect2">
2755
+ <a name="gtk-text-iter-backward-to-tag-toggle"></a><h3>gtk_text_iter_backward_to_tag_toggle ()</h3>
2756
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_to_tag_toggle
2757
+ (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2758
+ <em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);</pre>
2759
+ <p>
2760
+ Moves backward to the next toggle (on or off) of the
2761
+ <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> <em class="parameter"><code>tag</code></em>, or to the next toggle of any tag if
2762
+ <em class="parameter"><code>tag</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. If no matching tag toggles are found,
2763
+ returns <code class="literal">FALSE</code>, otherwise <code class="literal">TRUE</code>. Does not return toggles
2764
+ located at <em class="parameter"><code>iter</code></em>, only toggles before <em class="parameter"><code>iter</code></em>. Sets <em class="parameter"><code>iter</code></em>
2765
+ to the location of the toggle, or the start of the buffer
2766
+ if no toggle is found.
2767
+ </p>
2768
+ <div class="variablelist"><table border="0" class="variablelist">
2769
+ <colgroup>
2770
+ <col align="left" valign="top">
2771
+ <col>
2772
+ </colgroup>
2773
+ <tbody>
2774
+ <tr>
2775
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2776
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2777
+ </td>
2778
+ </tr>
2779
+ <tr>
2780
+ <td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
2781
+ <td>a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</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="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2782
+ </td>
2783
+ </tr>
2784
+ <tr>
2785
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2786
+ <td>whether we found a tag toggle before <em class="parameter"><code>iter</code></em>
2787
+ </td>
2788
+ </tr>
2789
+ </tbody>
2790
+ </table></div>
2791
+ </div>
2792
+ <hr>
2793
+ <div class="refsect2">
2794
+ <a name="GtkTextCharPredicate"></a><h3>GtkTextCharPredicate ()</h3>
2795
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> (*GtkTextCharPredicate) (<em class="parameter"><code><span class="type">gunichar</span> ch</code></em>,
2796
+ <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
2797
+ </div>
2798
+ <hr>
2799
+ <div class="refsect2">
2800
+ <a name="gtk-text-iter-forward-find-char"></a><h3>gtk_text_iter_forward_find_char ()</h3>
2801
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_find_char (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2802
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html#GtkTextCharPredicate" title="GtkTextCharPredicate ()"><span class="type">GtkTextCharPredicate</span></a> pred</code></em>,
2803
+ <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
2804
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *limit</code></em>);</pre>
2805
+ <p>
2806
+ Advances <em class="parameter"><code>iter</code></em>, calling <em class="parameter"><code>pred</code></em> on each character. If
2807
+ <em class="parameter"><code>pred</code></em> returns <code class="literal">TRUE</code>, returns <code class="literal">TRUE</code> and stops scanning.
2808
+ If <em class="parameter"><code>pred</code></em> never returns <code class="literal">TRUE</code>, <em class="parameter"><code>iter</code></em> is set to <em class="parameter"><code>limit</code></em> if
2809
+ <em class="parameter"><code>limit</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>, otherwise to the end iterator.
2810
+ </p>
2811
+ <div class="variablelist"><table border="0" class="variablelist">
2812
+ <colgroup>
2813
+ <col align="left" valign="top">
2814
+ <col>
2815
+ </colgroup>
2816
+ <tbody>
2817
+ <tr>
2818
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2819
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2820
+ </td>
2821
+ </tr>
2822
+ <tr>
2823
+ <td><p><span class="term"><em class="parameter"><code>pred</code></em> :</span></p></td>
2824
+ <td>a function to be called on each character. <span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span>
2825
+ </td>
2826
+ </tr>
2827
+ <tr>
2828
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2829
+ <td>user data for <em class="parameter"><code>pred</code></em>
2830
+ </td>
2831
+ </tr>
2832
+ <tr>
2833
+ <td><p><span class="term"><em class="parameter"><code>limit</code></em> :</span></p></td>
2834
+ <td>search limit, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> for none. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2835
+ </td>
2836
+ </tr>
2837
+ <tr>
2838
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2839
+ <td>whether a match was found</td>
2840
+ </tr>
2841
+ </tbody>
2842
+ </table></div>
2843
+ </div>
2844
+ <hr>
2845
+ <div class="refsect2">
2846
+ <a name="gtk-text-iter-backward-find-char"></a><h3>gtk_text_iter_backward_find_char ()</h3>
2847
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_find_char (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2848
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html#GtkTextCharPredicate" title="GtkTextCharPredicate ()"><span class="type">GtkTextCharPredicate</span></a> pred</code></em>,
2849
+ <em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
2850
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *limit</code></em>);</pre>
2851
+ <p>
2852
+ Same as <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-find-char" title="gtk_text_iter_forward_find_char ()"><code class="function">gtk_text_iter_forward_find_char()</code></a>, but goes backward from <em class="parameter"><code>iter</code></em>.
2853
+ </p>
2854
+ <div class="variablelist"><table border="0" class="variablelist">
2855
+ <colgroup>
2856
+ <col align="left" valign="top">
2857
+ <col>
2858
+ </colgroup>
2859
+ <tbody>
2860
+ <tr>
2861
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2862
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
2863
+ </td>
2864
+ </tr>
2865
+ <tr>
2866
+ <td><p><span class="term"><em class="parameter"><code>pred</code></em> :</span></p></td>
2867
+ <td>function to be called on each character. <span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span>
2868
+ </td>
2869
+ </tr>
2870
+ <tr>
2871
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2872
+ <td>user data for <em class="parameter"><code>pred</code></em>
2873
+ </td>
2874
+ </tr>
2875
+ <tr>
2876
+ <td><p><span class="term"><em class="parameter"><code>limit</code></em> :</span></p></td>
2877
+ <td>search limit, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> for none. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2878
+ </td>
2879
+ </tr>
2880
+ <tr>
2881
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2882
+ <td>whether a match was found</td>
2883
+ </tr>
2884
+ </tbody>
2885
+ </table></div>
2886
+ </div>
2887
+ <hr>
2888
+ <div class="refsect2">
2889
+ <a name="GtkTextSearchFlags"></a><h3>enum GtkTextSearchFlags</h3>
2890
+ <pre class="programlisting">typedef enum {
2891
+ GTK_TEXT_SEARCH_VISIBLE_ONLY = 1 &lt;&lt; 0,
2892
+ GTK_TEXT_SEARCH_TEXT_ONLY = 1 &lt;&lt; 1,
2893
+ GTK_TEXT_SEARCH_CASE_INSENSITIVE = 1 &lt;&lt; 2
2894
+ /* Possible future plans: SEARCH_REGEXP */
2895
+ } GtkTextSearchFlags;
2896
+ </pre>
2897
+ <div class="variablelist"><table border="0" class="variablelist">
2898
+ <colgroup>
2899
+ <col align="left" valign="top">
2900
+ <col>
2901
+ </colgroup>
2902
+ <tbody>
2903
+ <tr>
2904
+ <td><p><a name="GTK-TEXT-SEARCH-VISIBLE-ONLY:CAPS"></a><span class="term"><code class="literal">GTK_TEXT_SEARCH_VISIBLE_ONLY</code></span></p></td>
2905
+ <td></td>
2906
+ </tr>
2907
+ <tr>
2908
+ <td><p><a name="GTK-TEXT-SEARCH-TEXT-ONLY:CAPS"></a><span class="term"><code class="literal">GTK_TEXT_SEARCH_TEXT_ONLY</code></span></p></td>
2909
+ <td></td>
2910
+ </tr>
2911
+ <tr>
2912
+ <td><p><a name="GTK-TEXT-SEARCH-CASE-INSENSITIVE:CAPS"></a><span class="term"><code class="literal">GTK_TEXT_SEARCH_CASE_INSENSITIVE</code></span></p></td>
2913
+ <td></td>
2914
+ </tr>
2915
+ </tbody>
2916
+ </table></div>
2917
+ </div>
2918
+ <hr>
2919
+ <div class="refsect2">
2920
+ <a name="gtk-text-iter-forward-search"></a><h3>gtk_text_iter_forward_search ()</h3>
2921
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_forward_search (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2922
+ <em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>,
2923
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html#GtkTextSearchFlags" title="enum GtkTextSearchFlags"><span class="type">GtkTextSearchFlags</span></a> flags</code></em>,
2924
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *match_start</code></em>,
2925
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *match_end</code></em>,
2926
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *limit</code></em>);</pre>
2927
+ <p>
2928
+ Searches forward for <em class="parameter"><code>str</code></em>. Any match is returned by setting
2929
+ <em class="parameter"><code>match_start</code></em> to the first character of the match and <em class="parameter"><code>match_end</code></em> to the
2930
+ first character after the match. The search will not continue past
2931
+ <em class="parameter"><code>limit</code></em>. Note that a search is a linear or O(n) operation, so you
2932
+ may wish to use <em class="parameter"><code>limit</code></em> to avoid locking up your UI on large
2933
+ buffers.
2934
+ </p>
2935
+ <p>
2936
+ If the <a class="link" href="GtkTextIter.html#GTK-TEXT-SEARCH-VISIBLE-ONLY:CAPS"><span class="type">GTK_TEXT_SEARCH_VISIBLE_ONLY</span></a> flag is present, the match may
2937
+ have invisible text interspersed in <em class="parameter"><code>str</code></em>. i.e. <em class="parameter"><code>str</code></em> will be a
2938
+ possibly-noncontiguous subsequence of the matched range. similarly,
2939
+ if you specify <a class="link" href="GtkTextIter.html#GTK-TEXT-SEARCH-TEXT-ONLY:CAPS"><span class="type">GTK_TEXT_SEARCH_TEXT_ONLY</span></a>, the match may have
2940
+ pixbufs or child widgets mixed inside the matched range. If these
2941
+ flags are not given, the match must be exact; the special 0xFFFC
2942
+ character in <em class="parameter"><code>str</code></em> will match embedded pixbufs or child widgets.
2943
+ If you specify the <a class="link" href="GtkTextIter.html#GTK-TEXT-SEARCH-CASE-INSENSITIVE:CAPS"><span class="type">GTK_TEXT_SEARCH_CASE_INSENSITIVE</span></a> flag, the text will
2944
+ be matched regardless of what case it is in.
2945
+ </p>
2946
+ <div class="variablelist"><table border="0" class="variablelist">
2947
+ <colgroup>
2948
+ <col align="left" valign="top">
2949
+ <col>
2950
+ </colgroup>
2951
+ <tbody>
2952
+ <tr>
2953
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
2954
+ <td>start of search</td>
2955
+ </tr>
2956
+ <tr>
2957
+ <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
2958
+ <td>a search string</td>
2959
+ </tr>
2960
+ <tr>
2961
+ <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
2962
+ <td>flags affecting how the search is done</td>
2963
+ </tr>
2964
+ <tr>
2965
+ <td><p><span class="term"><em class="parameter"><code>match_start</code></em> :</span></p></td>
2966
+ <td>return location for start of match, 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="Out parameter, where caller must allocate storage."><span class="acronym">out caller-allocates</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2967
+ </td>
2968
+ </tr>
2969
+ <tr>
2970
+ <td><p><span class="term"><em class="parameter"><code>match_end</code></em> :</span></p></td>
2971
+ <td>return location for end of match, 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="Out parameter, where caller must allocate storage."><span class="acronym">out caller-allocates</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2972
+ </td>
2973
+ </tr>
2974
+ <tr>
2975
+ <td><p><span class="term"><em class="parameter"><code>limit</code></em> :</span></p></td>
2976
+ <td>bound for the search, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> for the end of the buffer. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2977
+ </td>
2978
+ </tr>
2979
+ <tr>
2980
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2981
+ <td>whether a match was found</td>
2982
+ </tr>
2983
+ </tbody>
2984
+ </table></div>
2985
+ </div>
2986
+ <hr>
2987
+ <div class="refsect2">
2988
+ <a name="gtk-text-iter-backward-search"></a><h3>gtk_text_iter_backward_search ()</h3>
2989
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_backward_search (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
2990
+ <em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>,
2991
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html#GtkTextSearchFlags" title="enum GtkTextSearchFlags"><span class="type">GtkTextSearchFlags</span></a> flags</code></em>,
2992
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *match_start</code></em>,
2993
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *match_end</code></em>,
2994
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *limit</code></em>);</pre>
2995
+ <p>
2996
+ Same as <a class="link" href="GtkTextIter.html#gtk-text-iter-forward-search" title="gtk_text_iter_forward_search ()"><code class="function">gtk_text_iter_forward_search()</code></a>, but moves backward.
2997
+ </p>
2998
+ <div class="variablelist"><table border="0" class="variablelist">
2999
+ <colgroup>
3000
+ <col align="left" valign="top">
3001
+ <col>
3002
+ </colgroup>
3003
+ <tbody>
3004
+ <tr>
3005
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
3006
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> where the search begins</td>
3007
+ </tr>
3008
+ <tr>
3009
+ <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
3010
+ <td>search string</td>
3011
+ </tr>
3012
+ <tr>
3013
+ <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
3014
+ <td>bitmask of flags affecting the search</td>
3015
+ </tr>
3016
+ <tr>
3017
+ <td><p><span class="term"><em class="parameter"><code>match_start</code></em> :</span></p></td>
3018
+ <td>return location for start of match, 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="Out parameter, where caller must allocate storage."><span class="acronym">out caller-allocates</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
3019
+ </td>
3020
+ </tr>
3021
+ <tr>
3022
+ <td><p><span class="term"><em class="parameter"><code>match_end</code></em> :</span></p></td>
3023
+ <td>return location for end of match, 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="Out parameter, where caller must allocate storage."><span class="acronym">out caller-allocates</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
3024
+ </td>
3025
+ </tr>
3026
+ <tr>
3027
+ <td><p><span class="term"><em class="parameter"><code>limit</code></em> :</span></p></td>
3028
+ <td>location of last possible <em class="parameter"><code>match_start</code></em>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> for start of buffer. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
3029
+ </td>
3030
+ </tr>
3031
+ <tr>
3032
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3033
+ <td>whether a match was found</td>
3034
+ </tr>
3035
+ </tbody>
3036
+ </table></div>
3037
+ </div>
3038
+ <hr>
3039
+ <div class="refsect2">
3040
+ <a name="gtk-text-iter-equal"></a><h3>gtk_text_iter_equal ()</h3>
3041
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_equal (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *lhs</code></em>,
3042
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *rhs</code></em>);</pre>
3043
+ <p>
3044
+ Tests whether two iterators are equal, using the fastest possible
3045
+ mechanism. This function is very fast; you can expect it to perform
3046
+ better than e.g. getting the character offset for each iterator and
3047
+ comparing the offsets yourself. Also, it's a bit faster than
3048
+ <a class="link" href="GtkTextIter.html#gtk-text-iter-compare" title="gtk_text_iter_compare ()"><code class="function">gtk_text_iter_compare()</code></a>.
3049
+ </p>
3050
+ <div class="variablelist"><table border="0" class="variablelist">
3051
+ <colgroup>
3052
+ <col align="left" valign="top">
3053
+ <col>
3054
+ </colgroup>
3055
+ <tbody>
3056
+ <tr>
3057
+ <td><p><span class="term"><em class="parameter"><code>lhs</code></em> :</span></p></td>
3058
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
3059
+ </td>
3060
+ </tr>
3061
+ <tr>
3062
+ <td><p><span class="term"><em class="parameter"><code>rhs</code></em> :</span></p></td>
3063
+ <td>another <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
3064
+ </td>
3065
+ </tr>
3066
+ <tr>
3067
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3068
+ <td>
3069
+ <code class="literal">TRUE</code> if the iterators point to the same place in the buffer</td>
3070
+ </tr>
3071
+ </tbody>
3072
+ </table></div>
3073
+ </div>
3074
+ <hr>
3075
+ <div class="refsect2">
3076
+ <a name="gtk-text-iter-compare"></a><h3>gtk_text_iter_compare ()</h3>
3077
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_text_iter_compare (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *lhs</code></em>,
3078
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *rhs</code></em>);</pre>
3079
+ <p>
3080
+ A <code class="function">qsort()</code>-style function that returns negative if <em class="parameter"><code>lhs</code></em> is less than
3081
+ <em class="parameter"><code>rhs</code></em>, positive if <em class="parameter"><code>lhs</code></em> is greater than <em class="parameter"><code>rhs</code></em>, and 0 if they're equal.
3082
+ Ordering is in character offset order, i.e. the first character in the buffer
3083
+ is less than the second character in the buffer.
3084
+ </p>
3085
+ <div class="variablelist"><table border="0" class="variablelist">
3086
+ <colgroup>
3087
+ <col align="left" valign="top">
3088
+ <col>
3089
+ </colgroup>
3090
+ <tbody>
3091
+ <tr>
3092
+ <td><p><span class="term"><em class="parameter"><code>lhs</code></em> :</span></p></td>
3093
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
3094
+ </td>
3095
+ </tr>
3096
+ <tr>
3097
+ <td><p><span class="term"><em class="parameter"><code>rhs</code></em> :</span></p></td>
3098
+ <td>another <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
3099
+ </td>
3100
+ </tr>
3101
+ <tr>
3102
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3103
+ <td>-1 if <em class="parameter"><code>lhs</code></em> is less than <em class="parameter"><code>rhs</code></em>, 1 if <em class="parameter"><code>lhs</code></em> is greater, 0 if they are equal</td>
3104
+ </tr>
3105
+ </tbody>
3106
+ </table></div>
3107
+ </div>
3108
+ <hr>
3109
+ <div class="refsect2">
3110
+ <a name="gtk-text-iter-in-range"></a><h3>gtk_text_iter_in_range ()</h3>
3111
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_iter_in_range (<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
3112
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
3113
+ <em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
3114
+ <p>
3115
+ Checks whether <em class="parameter"><code>iter</code></em> falls in the range [<em class="parameter"><code>start</code></em>, <em class="parameter"><code>end</code></em>).
3116
+ <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> must be in ascending order.
3117
+ </p>
3118
+ <div class="variablelist"><table border="0" class="variablelist">
3119
+ <colgroup>
3120
+ <col align="left" valign="top">
3121
+ <col>
3122
+ </colgroup>
3123
+ <tbody>
3124
+ <tr>
3125
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
3126
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
3127
+ </td>
3128
+ </tr>
3129
+ <tr>
3130
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
3131
+ <td>start of range</td>
3132
+ </tr>
3133
+ <tr>
3134
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
3135
+ <td>end of range</td>
3136
+ </tr>
3137
+ <tr>
3138
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
3139
+ <td>
3140
+ <code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> is in the range</td>
3141
+ </tr>
3142
+ </tbody>
3143
+ </table></div>
3144
+ </div>
3145
+ <hr>
3146
+ <div class="refsect2">
3147
+ <a name="gtk-text-iter-order"></a><h3>gtk_text_iter_order ()</h3>
3148
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_text_iter_order (<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *first</code></em>,
3149
+ <em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *second</code></em>);</pre>
3150
+ <p>
3151
+ Swaps the value of <em class="parameter"><code>first</code></em> and <em class="parameter"><code>second</code></em> if <em class="parameter"><code>second</code></em> comes before
3152
+ <em class="parameter"><code>first</code></em> in the buffer. That is, ensures that <em class="parameter"><code>first</code></em> and <em class="parameter"><code>second</code></em> are
3153
+ in sequence. Most text buffer functions that take a range call this
3154
+ automatically on your behalf, so there's no real reason to call it yourself
3155
+ in those cases. There are some exceptions, such as <a class="link" href="GtkTextIter.html#gtk-text-iter-in-range" title="gtk_text_iter_in_range ()"><code class="function">gtk_text_iter_in_range()</code></a>,
3156
+ that expect a pre-sorted range.
3157
+ </p>
3158
+ <div class="variablelist"><table border="0" class="variablelist">
3159
+ <colgroup>
3160
+ <col align="left" valign="top">
3161
+ <col>
3162
+ </colgroup>
3163
+ <tbody>
3164
+ <tr>
3165
+ <td><p><span class="term"><em class="parameter"><code>first</code></em> :</span></p></td>
3166
+ <td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
3167
+ </td>
3168
+ </tr>
3169
+ <tr>
3170
+ <td><p><span class="term"><em class="parameter"><code>second</code></em> :</span></p></td>
3171
+ <td>another <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
3172
+ </td>
3173
+ </tr>
3174
+ </tbody>
3175
+ </table></div>
3176
+ </div>
3177
+ </div>
3178
+ </div>
3179
+ <div class="footer">
3180
+ <hr>
3181
+ Generated by GTK-Doc V1.18.1</div>
3182
+ </body>
3183
+ </html>