gdk3 1.2.0-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,205 @@
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>GtkInvisible</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="WindowWidgets.html" title="Windows">
9
+ <link rel="prev" href="GtkDialog.html" title="GtkDialog">
10
+ <link rel="next" href="GtkMessageDialog.html" title="GtkMessageDialog">
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="GtkDialog.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="WindowWidgets.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="GtkMessageDialog.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="#GtkInvisible.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GtkInvisible.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GtkInvisible.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#GtkInvisible.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
31
+  | 
32
+ <a href="#GtkInvisible.properties" class="shortcut">Properties</a>
33
+ </td></tr>
34
+ </table>
35
+ <div class="refentry">
36
+ <a name="GtkInvisible"></a><div class="titlepage"></div>
37
+ <div class="refnamediv"><table width="100%"><tr>
38
+ <td valign="top">
39
+ <h2><span class="refentrytitle"><a name="GtkInvisible.top_of_page"></a>GtkInvisible</span></h2>
40
+ <p>GtkInvisible — A widget which is not displayed</p>
41
+ </td>
42
+ <td valign="top" align="right"></td>
43
+ </tr></table></div>
44
+ <div class="refsynopsisdiv">
45
+ <a name="GtkInvisible.synopsis"></a><h2>Synopsis</h2>
46
+ <pre class="synopsis">
47
+ #include &lt;gtk/gtk.h&gt;
48
+
49
+ struct <a class="link" href="GtkInvisible.html#GtkInvisible-struct" title="struct GtkInvisible">GtkInvisible</a>;
50
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkInvisible.html#gtk-invisible-new" title="gtk_invisible_new ()">gtk_invisible_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
51
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkInvisible.html#gtk-invisible-new-for-screen" title="gtk_invisible_new_for_screen ()">gtk_invisible_new_for_screen</a> (<em class="parameter"><code><a href="../gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);
52
+ <span class="returnvalue">void</span> <a class="link" href="GtkInvisible.html#gtk-invisible-set-screen" title="gtk_invisible_set_screen ()">gtk_invisible_set_screen</a> (<em class="parameter"><code><a class="link" href="GtkInvisible.html" title="GtkInvisible"><span class="type">GtkInvisible</span></a> *invisible</code></em>,
53
+ <em class="parameter"><code><a href="../gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);
54
+ <a href="../gdk3/GdkScreen.html"><span class="returnvalue">GdkScreen</span></a> * <a class="link" href="GtkInvisible.html#gtk-invisible-get-screen" title="gtk_invisible_get_screen ()">gtk_invisible_get_screen</a> (<em class="parameter"><code><a class="link" href="GtkInvisible.html" title="GtkInvisible"><span class="type">GtkInvisible</span></a> *invisible</code></em>);
55
+ </pre>
56
+ </div>
57
+ <div class="refsect1">
58
+ <a name="GtkInvisible.object-hierarchy"></a><h2>Object Hierarchy</h2>
59
+ <pre class="synopsis">
60
+ GObject
61
+ +----GInitiallyUnowned
62
+ +----<a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
63
+ +----GtkInvisible
64
+ </pre>
65
+ </div>
66
+ <div class="refsect1">
67
+ <a name="GtkInvisible.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
68
+ <p>
69
+ GtkInvisible implements
70
+ AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
71
+ </div>
72
+ <div class="refsect1">
73
+ <a name="GtkInvisible.properties"></a><h2>Properties</h2>
74
+ <pre class="synopsis">
75
+ "<a class="link" href="GtkInvisible.html#GtkInvisible--screen" title='The "screen" property'>screen</a>" <a href="../gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a>* : Read / Write
76
+ </pre>
77
+ </div>
78
+ <div class="refsect1">
79
+ <a name="GtkInvisible.description"></a><h2>Description</h2>
80
+ <p>
81
+ The <a class="link" href="GtkInvisible.html" title="GtkInvisible"><span class="type">GtkInvisible</span></a> widget is used internally in GTK+, and is probably not
82
+ very useful for application developers.
83
+ </p>
84
+ <p>
85
+ It is used for reliable pointer grabs and selection handling in the code
86
+ for drag-and-drop.
87
+ </p>
88
+ </div>
89
+ <div class="refsect1">
90
+ <a name="GtkInvisible.details"></a><h2>Details</h2>
91
+ <div class="refsect2">
92
+ <a name="GtkInvisible-struct"></a><h3>struct GtkInvisible</h3>
93
+ <pre class="programlisting">struct GtkInvisible;</pre>
94
+ </div>
95
+ <hr>
96
+ <div class="refsect2">
97
+ <a name="gtk-invisible-new"></a><h3>gtk_invisible_new ()</h3>
98
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_invisible_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
99
+ <p>
100
+ Creates a new <a class="link" href="GtkInvisible.html" title="GtkInvisible"><span class="type">GtkInvisible</span></a>.
101
+ </p>
102
+ <div class="variablelist"><table border="0" class="variablelist">
103
+ <colgroup>
104
+ <col align="left" valign="top">
105
+ <col>
106
+ </colgroup>
107
+ <tbody><tr>
108
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
109
+ <td>a new <a class="link" href="GtkInvisible.html" title="GtkInvisible"><span class="type">GtkInvisible</span></a>.</td>
110
+ </tr></tbody>
111
+ </table></div>
112
+ </div>
113
+ <hr>
114
+ <div class="refsect2">
115
+ <a name="gtk-invisible-new-for-screen"></a><h3>gtk_invisible_new_for_screen ()</h3>
116
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_invisible_new_for_screen (<em class="parameter"><code><a href="../gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
117
+ <p>
118
+ Creates a new <a class="link" href="GtkInvisible.html" title="GtkInvisible"><span class="type">GtkInvisible</span></a> object for a specified screen
119
+ </p>
120
+ <div class="variablelist"><table border="0" class="variablelist">
121
+ <colgroup>
122
+ <col align="left" valign="top">
123
+ <col>
124
+ </colgroup>
125
+ <tbody>
126
+ <tr>
127
+ <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
128
+ <td>a <a href="../gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> which identifies on which
129
+ the new <a class="link" href="GtkInvisible.html" title="GtkInvisible"><span class="type">GtkInvisible</span></a> will be created.</td>
130
+ </tr>
131
+ <tr>
132
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
133
+ <td>a newly created <a class="link" href="GtkInvisible.html" title="GtkInvisible"><span class="type">GtkInvisible</span></a> object</td>
134
+ </tr>
135
+ </tbody>
136
+ </table></div>
137
+ <p class="since">Since 2.2</p>
138
+ </div>
139
+ <hr>
140
+ <div class="refsect2">
141
+ <a name="gtk-invisible-set-screen"></a><h3>gtk_invisible_set_screen ()</h3>
142
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_invisible_set_screen (<em class="parameter"><code><a class="link" href="GtkInvisible.html" title="GtkInvisible"><span class="type">GtkInvisible</span></a> *invisible</code></em>,
143
+ <em class="parameter"><code><a href="../gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
144
+ <p>
145
+ Sets the <a href="../gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> where the <a class="link" href="GtkInvisible.html" title="GtkInvisible"><span class="type">GtkInvisible</span></a> object will be displayed.
146
+ </p>
147
+ <div class="variablelist"><table border="0" class="variablelist">
148
+ <colgroup>
149
+ <col align="left" valign="top">
150
+ <col>
151
+ </colgroup>
152
+ <tbody>
153
+ <tr>
154
+ <td><p><span class="term"><em class="parameter"><code>invisible</code></em> :</span></p></td>
155
+ <td>a <a class="link" href="GtkInvisible.html" title="GtkInvisible"><span class="type">GtkInvisible</span></a>.</td>
156
+ </tr>
157
+ <tr>
158
+ <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
159
+ <td>a <a href="../gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a>.</td>
160
+ </tr>
161
+ </tbody>
162
+ </table></div>
163
+ <p class="since">Since 2.2</p>
164
+ </div>
165
+ <hr>
166
+ <div class="refsect2">
167
+ <a name="gtk-invisible-get-screen"></a><h3>gtk_invisible_get_screen ()</h3>
168
+ <pre class="programlisting"><a href="../gdk3/GdkScreen.html"><span class="returnvalue">GdkScreen</span></a> * gtk_invisible_get_screen (<em class="parameter"><code><a class="link" href="GtkInvisible.html" title="GtkInvisible"><span class="type">GtkInvisible</span></a> *invisible</code></em>);</pre>
169
+ <p>
170
+ Returns the <a href="../gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> object associated with <em class="parameter"><code>invisible</code></em>
171
+ </p>
172
+ <div class="variablelist"><table border="0" class="variablelist">
173
+ <colgroup>
174
+ <col align="left" valign="top">
175
+ <col>
176
+ </colgroup>
177
+ <tbody>
178
+ <tr>
179
+ <td><p><span class="term"><em class="parameter"><code>invisible</code></em> :</span></p></td>
180
+ <td>a <a class="link" href="GtkInvisible.html" title="GtkInvisible"><span class="type">GtkInvisible</span></a>.</td>
181
+ </tr>
182
+ <tr>
183
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
184
+ <td>the associated <a href="../gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
185
+ </td>
186
+ </tr>
187
+ </tbody>
188
+ </table></div>
189
+ <p class="since">Since 2.2</p>
190
+ </div>
191
+ </div>
192
+ <div class="refsect1">
193
+ <a name="GtkInvisible.property-details"></a><h2>Property Details</h2>
194
+ <div class="refsect2">
195
+ <a name="GtkInvisible--screen"></a><h3>The <code class="literal">"screen"</code> property</h3>
196
+ <pre class="programlisting"> "screen" <a href="../gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a>* : Read / Write</pre>
197
+ <p>The screen where this window will be displayed.</p>
198
+ </div>
199
+ </div>
200
+ </div>
201
+ <div class="footer">
202
+ <hr>
203
+ Generated by GTK-Doc V1.18.1</div>
204
+ </body>
205
+ </html>
@@ -0,0 +1,2208 @@
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>GtkLabel</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="DisplayWidgets.html" title="Display Widgets">
9
+ <link rel="prev" href="GtkImage.html" title="GtkImage">
10
+ <link rel="next" href="GtkProgressBar.html" title="GtkProgressBar">
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="GtkImage.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="DisplayWidgets.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="GtkProgressBar.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="#GtkLabel.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GtkLabel.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GtkLabel.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#GtkLabel.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
31
+  | 
32
+ <a href="#GtkLabel.properties" class="shortcut">Properties</a>
33
+  | 
34
+ <a href="#GtkLabel.signals" class="shortcut">Signals</a>
35
+ </td></tr>
36
+ </table>
37
+ <div class="refentry">
38
+ <a name="GtkLabel"></a><div class="titlepage"></div>
39
+ <div class="refnamediv"><table width="100%"><tr>
40
+ <td valign="top">
41
+ <h2><span class="refentrytitle"><a name="GtkLabel.top_of_page"></a>GtkLabel</span></h2>
42
+ <p>GtkLabel — A widget that displays a small to medium amount of text</p>
43
+ </td>
44
+ <td valign="top" align="right"><img src="label.png"></td>
45
+ </tr></table></div>
46
+ <div class="refsynopsisdiv">
47
+ <a name="GtkLabel.synopsis"></a><h2>Synopsis</h2>
48
+ <pre class="synopsis">
49
+ #include &lt;gtk/gtk.h&gt;
50
+
51
+ struct <a class="link" href="GtkLabel.html#GtkLabel-struct" title="struct GtkLabel">GtkLabel</a>;
52
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkLabel.html#gtk-label-new" title="gtk_label_new ()">gtk_label_new</a> (<em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);
53
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-text" title="gtk_label_set_text ()">gtk_label_set_text</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
54
+ <em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);
55
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-attributes" title="gtk_label_set_attributes ()">gtk_label_set_attributes</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
56
+ <em class="parameter"><code><span class="type">PangoAttrList</span> *attrs</code></em>);
57
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-markup" title="gtk_label_set_markup ()">gtk_label_set_markup</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
58
+ <em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);
59
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-markup-with-mnemonic" title="gtk_label_set_markup_with_mnemonic ()">gtk_label_set_markup_with_mnemonic</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
60
+ <em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);
61
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-pattern" title="gtk_label_set_pattern ()">gtk_label_set_pattern</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
62
+ <em class="parameter"><code>const <span class="type">gchar</span> *pattern</code></em>);
63
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-justify" title="gtk_label_set_justify ()">gtk_label_set_justify</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
64
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> jtype</code></em>);
65
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-ellipsize" title="gtk_label_set_ellipsize ()">gtk_label_set_ellipsize</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
66
+ <em class="parameter"><code><span class="type">PangoEllipsizeMode</span> mode</code></em>);
67
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-width-chars" title="gtk_label_set_width_chars ()">gtk_label_set_width_chars</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
68
+ <em class="parameter"><code><span class="type">gint</span> n_chars</code></em>);
69
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-max-width-chars" title="gtk_label_set_max_width_chars ()">gtk_label_set_max_width_chars</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
70
+ <em class="parameter"><code><span class="type">gint</span> n_chars</code></em>);
71
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-line-wrap" title="gtk_label_set_line_wrap ()">gtk_label_set_line_wrap</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
72
+ <em class="parameter"><code><span class="type">gboolean</span> wrap</code></em>);
73
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-line-wrap-mode" title="gtk_label_set_line_wrap_mode ()">gtk_label_set_line_wrap_mode</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
74
+ <em class="parameter"><code><span class="type">PangoWrapMode</span> wrap_mode</code></em>);
75
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-get-layout-offsets" title="gtk_label_get_layout_offsets ()">gtk_label_get_layout_offsets</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
76
+ <em class="parameter"><code><span class="type">gint</span> *x</code></em>,
77
+ <em class="parameter"><code><span class="type">gint</span> *y</code></em>);
78
+ <span class="returnvalue">guint</span> <a class="link" href="GtkLabel.html#gtk-label-get-mnemonic-keyval" title="gtk_label_get_mnemonic_keyval ()">gtk_label_get_mnemonic_keyval</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
79
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkLabel.html#gtk-label-get-selectable" title="gtk_label_get_selectable ()">gtk_label_get_selectable</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
80
+ const <span class="returnvalue">gchar</span> * <a class="link" href="GtkLabel.html#gtk-label-get-text" title="gtk_label_get_text ()">gtk_label_get_text</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
81
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkLabel.html#gtk-label-new-with-mnemonic" title="gtk_label_new_with_mnemonic ()">gtk_label_new_with_mnemonic</a> (<em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);
82
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-select-region" title="gtk_label_select_region ()">gtk_label_select_region</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
83
+ <em class="parameter"><code><span class="type">gint</span> start_offset</code></em>,
84
+ <em class="parameter"><code><span class="type">gint</span> end_offset</code></em>);
85
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-mnemonic-widget" title="gtk_label_set_mnemonic_widget ()">gtk_label_set_mnemonic_widget</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
86
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
87
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-selectable" title="gtk_label_set_selectable ()">gtk_label_set_selectable</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
88
+ <em class="parameter"><code><span class="type">gboolean</span> setting</code></em>);
89
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-text-with-mnemonic" title="gtk_label_set_text_with_mnemonic ()">gtk_label_set_text_with_mnemonic</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
90
+ <em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);
91
+ <span class="returnvalue">PangoAttrList</span> * <a class="link" href="GtkLabel.html#gtk-label-get-attributes" title="gtk_label_get_attributes ()">gtk_label_get_attributes</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
92
+ <a class="link" href="gtk3-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="returnvalue">GtkJustification</span></a> <a class="link" href="GtkLabel.html#gtk-label-get-justify" title="gtk_label_get_justify ()">gtk_label_get_justify</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
93
+ <span class="returnvalue">PangoEllipsizeMode</span> <a class="link" href="GtkLabel.html#gtk-label-get-ellipsize" title="gtk_label_get_ellipsize ()">gtk_label_get_ellipsize</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
94
+ <span class="returnvalue">gint</span> <a class="link" href="GtkLabel.html#gtk-label-get-width-chars" title="gtk_label_get_width_chars ()">gtk_label_get_width_chars</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
95
+ <span class="returnvalue">gint</span> <a class="link" href="GtkLabel.html#gtk-label-get-max-width-chars" title="gtk_label_get_max_width_chars ()">gtk_label_get_max_width_chars</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
96
+ const <span class="returnvalue">gchar</span> * <a class="link" href="GtkLabel.html#gtk-label-get-label" title="gtk_label_get_label ()">gtk_label_get_label</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
97
+ <span class="returnvalue">PangoLayout</span> * <a class="link" href="GtkLabel.html#gtk-label-get-layout" title="gtk_label_get_layout ()">gtk_label_get_layout</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
98
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkLabel.html#gtk-label-get-line-wrap" title="gtk_label_get_line_wrap ()">gtk_label_get_line_wrap</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
99
+ <span class="returnvalue">PangoWrapMode</span> <a class="link" href="GtkLabel.html#gtk-label-get-line-wrap-mode" title="gtk_label_get_line_wrap_mode ()">gtk_label_get_line_wrap_mode</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
100
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkLabel.html#gtk-label-get-mnemonic-widget" title="gtk_label_get_mnemonic_widget ()">gtk_label_get_mnemonic_widget</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
101
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkLabel.html#gtk-label-get-selection-bounds" title="gtk_label_get_selection_bounds ()">gtk_label_get_selection_bounds</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
102
+ <em class="parameter"><code><span class="type">gint</span> *start</code></em>,
103
+ <em class="parameter"><code><span class="type">gint</span> *end</code></em>);
104
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkLabel.html#gtk-label-get-use-markup" title="gtk_label_get_use_markup ()">gtk_label_get_use_markup</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
105
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkLabel.html#gtk-label-get-use-underline" title="gtk_label_get_use_underline ()">gtk_label_get_use_underline</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
106
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkLabel.html#gtk-label-get-single-line-mode" title="gtk_label_get_single_line_mode ()">gtk_label_get_single_line_mode</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
107
+ <span class="returnvalue">gdouble</span> <a class="link" href="GtkLabel.html#gtk-label-get-angle" title="gtk_label_get_angle ()">gtk_label_get_angle</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
108
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-label" title="gtk_label_set_label ()">gtk_label_set_label</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
109
+ <em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);
110
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-use-markup" title="gtk_label_set_use_markup ()">gtk_label_set_use_markup</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
111
+ <em class="parameter"><code><span class="type">gboolean</span> setting</code></em>);
112
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-use-underline" title="gtk_label_set_use_underline ()">gtk_label_set_use_underline</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
113
+ <em class="parameter"><code><span class="type">gboolean</span> setting</code></em>);
114
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-single-line-mode" title="gtk_label_set_single_line_mode ()">gtk_label_set_single_line_mode</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
115
+ <em class="parameter"><code><span class="type">gboolean</span> single_line_mode</code></em>);
116
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-angle" title="gtk_label_set_angle ()">gtk_label_set_angle</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
117
+ <em class="parameter"><code><span class="type">gdouble</span> angle</code></em>);
118
+ const <span class="returnvalue">gchar</span> * <a class="link" href="GtkLabel.html#gtk-label-get-current-uri" title="gtk_label_get_current_uri ()">gtk_label_get_current_uri</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
119
+ <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-track-visited-links" title="gtk_label_set_track_visited_links ()">gtk_label_set_track_visited_links</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
120
+ <em class="parameter"><code><span class="type">gboolean</span> track_links</code></em>);
121
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkLabel.html#gtk-label-get-track-visited-links" title="gtk_label_get_track_visited_links ()">gtk_label_get_track_visited_links</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
122
+ </pre>
123
+ </div>
124
+ <div class="refsect1">
125
+ <a name="GtkLabel.object-hierarchy"></a><h2>Object Hierarchy</h2>
126
+ <pre class="synopsis">
127
+ GObject
128
+ +----GInitiallyUnowned
129
+ +----<a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
130
+ +----<a class="link" href="GtkMisc.html" title="GtkMisc">GtkMisc</a>
131
+ +----GtkLabel
132
+ +----<a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel">GtkAccelLabel</a>
133
+ </pre>
134
+ </div>
135
+ <div class="refsect1">
136
+ <a name="GtkLabel.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
137
+ <p>
138
+ GtkLabel implements
139
+ AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
140
+ </div>
141
+ <div class="refsect1">
142
+ <a name="GtkLabel.properties"></a><h2>Properties</h2>
143
+ <pre class="synopsis">
144
+ "<a class="link" href="GtkLabel.html#GtkLabel--angle" title='The "angle" property'>angle</a>" <span class="type">gdouble</span> : Read / Write
145
+ "<a class="link" href="GtkLabel.html#GtkLabel--attributes" title='The "attributes" property'>attributes</a>" <span class="type">PangoAttrList</span>* : Read / Write
146
+ "<a class="link" href="GtkLabel.html#GtkLabel--cursor-position" title='The "cursor-position" property'>cursor-position</a>" <span class="type">gint</span> : Read
147
+ "<a class="link" href="GtkLabel.html#GtkLabel--ellipsize" title='The "ellipsize" property'>ellipsize</a>" <span class="type">PangoEllipsizeMode</span> : Read / Write
148
+ "<a class="link" href="GtkLabel.html#GtkLabel--justify" title='The "justify" property'>justify</a>" <a class="link" href="gtk3-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> : Read / Write
149
+ "<a class="link" href="GtkLabel.html#GtkLabel--label" title='The "label" property'>label</a>" <span class="type">gchar</span>* : Read / Write
150
+ "<a class="link" href="GtkLabel.html#GtkLabel--max-width-chars" title='The "max-width-chars" property'>max-width-chars</a>" <span class="type">gint</span> : Read / Write
151
+ "<a class="link" href="GtkLabel.html#GtkLabel--mnemonic-keyval" title='The "mnemonic-keyval" property'>mnemonic-keyval</a>" <span class="type">guint</span> : Read
152
+ "<a class="link" href="GtkLabel.html#GtkLabel--mnemonic-widget" title='The "mnemonic-widget" property'>mnemonic-widget</a>" <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>* : Read / Write
153
+ "<a class="link" href="GtkLabel.html#GtkLabel--pattern" title='The "pattern" property'>pattern</a>" <span class="type">gchar</span>* : Write
154
+ "<a class="link" href="GtkLabel.html#GtkLabel--selectable" title='The "selectable" property'>selectable</a>" <span class="type">gboolean</span> : Read / Write
155
+ "<a class="link" href="GtkLabel.html#GtkLabel--selection-bound" title='The "selection-bound" property'>selection-bound</a>" <span class="type">gint</span> : Read
156
+ "<a class="link" href="GtkLabel.html#GtkLabel--single-line-mode" title='The "single-line-mode" property'>single-line-mode</a>" <span class="type">gboolean</span> : Read / Write
157
+ "<a class="link" href="GtkLabel.html#GtkLabel--track-visited-links" title='The "track-visited-links" property'>track-visited-links</a>" <span class="type">gboolean</span> : Read / Write
158
+ "<a class="link" href="GtkLabel.html#GtkLabel--use-markup" title='The "use-markup" property'>use-markup</a>" <span class="type">gboolean</span> : Read / Write
159
+ "<a class="link" href="GtkLabel.html#GtkLabel--use-underline" title='The "use-underline" property'>use-underline</a>" <span class="type">gboolean</span> : Read / Write
160
+ "<a class="link" href="GtkLabel.html#GtkLabel--width-chars" title='The "width-chars" property'>width-chars</a>" <span class="type">gint</span> : Read / Write
161
+ "<a class="link" href="GtkLabel.html#GtkLabel--wrap" title='The "wrap" property'>wrap</a>" <span class="type">gboolean</span> : Read / Write
162
+ "<a class="link" href="GtkLabel.html#GtkLabel--wrap-mode" title='The "wrap-mode" property'>wrap-mode</a>" <span class="type">PangoWrapMode</span> : Read / Write
163
+ </pre>
164
+ </div>
165
+ <div class="refsect1">
166
+ <a name="GtkLabel.signals"></a><h2>Signals</h2>
167
+ <pre class="synopsis">
168
+ "<a class="link" href="GtkLabel.html#GtkLabel-activate-current-link" title='The "activate-current-link" signal'>activate-current-link</a>" : <code class="literal">Action</code>
169
+ "<a class="link" href="GtkLabel.html#GtkLabel-activate-link" title='The "activate-link" signal'>activate-link</a>" : <code class="literal">Run Last</code>
170
+ "<a class="link" href="GtkLabel.html#GtkLabel-copy-clipboard" title='The "copy-clipboard" signal'>copy-clipboard</a>" : <code class="literal">Action</code>
171
+ "<a class="link" href="GtkLabel.html#GtkLabel-move-cursor" title='The "move-cursor" signal'>move-cursor</a>" : <code class="literal">Action</code>
172
+ "<a class="link" href="GtkLabel.html#GtkLabel-populate-popup" title='The "populate-popup" signal'>populate-popup</a>" : <code class="literal">Run Last</code>
173
+ </pre>
174
+ </div>
175
+ <div class="refsect1">
176
+ <a name="GtkLabel.description"></a><h2>Description</h2>
177
+ <p>
178
+ The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> widget displays a small amount of text. As the name
179
+ implies, most labels are used to label another widget such as a
180
+ <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a>, a <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span class="type">GtkMenuItem</span></a>, or a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>.
181
+ </p>
182
+ <p>
183
+ </p>
184
+ <div class="refsect2">
185
+ <a name="GtkLabel-BUILDER-UI"></a><h3>GtkLabel as GtkBuildable</h3>
186
+ <p>
187
+ The GtkLabel implementation of the GtkBuildable interface supports a
188
+ custom &lt;attributes&gt; element, which supports any number of &lt;attribute&gt;
189
+ elements. the &lt;attribute&gt; element has attributes named name, value,
190
+ start and end and allows you to specify <span class="type">PangoAttribute</span> values for this label.
191
+ </p>
192
+ <p>
193
+ </p>
194
+ <div class="example">
195
+ <a name="idm140520390379344"></a><p class="title"><b>Example 51. A UI definition fragment specifying Pango attributes</b></p>
196
+ <div class="example-contents">
197
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
198
+ <tbody>
199
+ <tr>
200
+ <td class="listing_lines" align="right"><pre>1
201
+ 2
202
+ 3
203
+ 4
204
+ 5
205
+ 6</pre></td>
206
+ <td class="listing_code"><pre class="programlisting"><span class="symbol">&lt;</span><span class="usertype">object</span><span class="normal"> class</span><span class="symbol">=</span><span class="string">"GtkLabel"</span><span class="symbol">&gt;</span>
207
+ <span class="normal"> </span><span class="symbol">&lt;</span><span class="normal">attributes</span><span class="symbol">&gt;</span>
208
+ <span class="normal"> </span><span class="symbol">&lt;</span><span class="usertype">attribute</span><span class="normal"> name</span><span class="symbol">=</span><span class="string">"weight"</span><span class="normal"> value</span><span class="symbol">=</span><span class="string">"PANGO_WEIGHT_BOLD"</span><span class="symbol">/&gt;</span>
209
+ <span class="normal"> </span><span class="symbol">&lt;</span><span class="usertype">attribute</span><span class="normal"> name</span><span class="symbol">=</span><span class="string">"background"</span><span class="normal"> value</span><span class="symbol">=</span><span class="string">"red"</span><span class="normal"> start</span><span class="symbol">=</span><span class="string">"5"</span><span class="normal"> end</span><span class="symbol">=</span><span class="string">"10"</span><span class="symbol">/&gt;</span><span class="string">"</span>
210
+ <span class="string"> &lt;/attributes&gt;</span>
211
+ <span class="string">&lt;/object&gt;</span></pre></td>
212
+ </tr>
213
+ </tbody>
214
+ </table>
215
+ </div>
216
+
217
+ </div>
218
+ <p><br class="example-break">
219
+ The start and end attributes specify the range of characters to which the
220
+ Pango attribute applies. If start and end are not specified, the attribute is
221
+ applied to the whole text. Note that specifying ranges does not make much
222
+ sense with translatable attributes. Use markup embedded in the translatable
223
+ content instead.
224
+ </p>
225
+ </div>
226
+ <p>
227
+ </p>
228
+ <hr>
229
+ <div class="refsect2">
230
+ <a name="idm140520390376880"></a><h3>Mnemonics</h3>
231
+ <p>
232
+ Labels may contain <em class="firstterm">mnemonics</em>. Mnemonics are
233
+ underlined characters in the label, used for keyboard navigation.
234
+ Mnemonics are created by providing a string with an underscore before
235
+ the mnemonic character, such as <code class="literal">"_File"</code>, to the
236
+ functions <a class="link" href="GtkLabel.html#gtk-label-new-with-mnemonic" title="gtk_label_new_with_mnemonic ()"><code class="function">gtk_label_new_with_mnemonic()</code></a> or
237
+ <a class="link" href="GtkLabel.html#gtk-label-set-text-with-mnemonic" title="gtk_label_set_text_with_mnemonic ()"><code class="function">gtk_label_set_text_with_mnemonic()</code></a>.
238
+ </p>
239
+ <p>
240
+ Mnemonics automatically activate any activatable widget the label is
241
+ inside, such as a <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a>; if the label is not inside the
242
+ mnemonic's target widget, you have to tell the label about the target
243
+ using <a class="link" href="GtkLabel.html#gtk-label-set-mnemonic-widget" title="gtk_label_set_mnemonic_widget ()"><code class="function">gtk_label_set_mnemonic_widget()</code></a>. Here's a simple example where
244
+ the label is inside a button:
245
+ </p>
246
+ <p>
247
+ </p>
248
+ <div class="informalexample">
249
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
250
+ <tbody>
251
+ <tr>
252
+ <td class="listing_lines" align="right"><pre>1
253
+ 2
254
+ 3
255
+ 4</pre></td>
256
+ <td class="listing_code"><pre class="programlisting"><span class="comment">// Pressing Alt+H will activate this button</span>
257
+ <span class="normal">button </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkButton.html#gtk-button-new">gtk_button_new</a></span><span class="normal"> </span><span class="symbol">();</span>
258
+ <span class="normal">label </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkLabel.html#gtk-label-new-with-mnemonic">gtk_label_new_with_mnemonic</a></span><span class="normal"> </span><span class="symbol">(</span><span class="string">"_Hello"</span><span class="symbol">);</span>
259
+ <span class="function"><a href="GtkContainer.html#gtk-container-add">gtk_container_add</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function">GTK_CONTAINER</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">button</span><span class="symbol">),</span><span class="normal"> label</span><span class="symbol">);</span></pre></td>
260
+ </tr>
261
+ </tbody>
262
+ </table>
263
+ </div>
264
+
265
+ <p>
266
+ </p>
267
+ <p>
268
+ There's a convenience function to create buttons with a mnemonic label
269
+ already inside:
270
+ </p>
271
+ <p>
272
+ </p>
273
+ <div class="informalexample">
274
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
275
+ <tbody>
276
+ <tr>
277
+ <td class="listing_lines" align="right"><pre>1
278
+ 2</pre></td>
279
+ <td class="listing_code"><pre class="programlisting"><span class="comment">// Pressing Alt+H will activate this button</span>
280
+ <span class="normal">button </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkButton.html#gtk-button-new-with-mnemonic">gtk_button_new_with_mnemonic</a></span><span class="normal"> </span><span class="symbol">(</span><span class="string">"_Hello"</span><span class="symbol">);</span></pre></td>
281
+ </tr>
282
+ </tbody>
283
+ </table>
284
+ </div>
285
+
286
+ <p>
287
+ </p>
288
+ <p>
289
+ To create a mnemonic for a widget alongside the label, such as a
290
+ <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>, you have to point the label at the entry with
291
+ <a class="link" href="GtkLabel.html#gtk-label-set-mnemonic-widget" title="gtk_label_set_mnemonic_widget ()"><code class="function">gtk_label_set_mnemonic_widget()</code></a>:
292
+ </p>
293
+ <p>
294
+ </p>
295
+ <div class="informalexample">
296
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
297
+ <tbody>
298
+ <tr>
299
+ <td class="listing_lines" align="right"><pre>1
300
+ 2
301
+ 3
302
+ 4</pre></td>
303
+ <td class="listing_code"><pre class="programlisting"><span class="comment">// Pressing Alt+H will focus the entry</span>
304
+ <span class="normal">entry </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkEntry.html#gtk-entry-new">gtk_entry_new</a></span><span class="normal"> </span><span class="symbol">();</span>
305
+ <span class="normal">label </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkLabel.html#gtk-label-new-with-mnemonic">gtk_label_new_with_mnemonic</a></span><span class="normal"> </span><span class="symbol">(</span><span class="string">"_Hello"</span><span class="symbol">);</span>
306
+ <span class="function"><a href="GtkLabel.html#gtk-label-set-mnemonic-widget">gtk_label_set_mnemonic_widget</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function">GTK_LABEL</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">label</span><span class="symbol">),</span><span class="normal"> entry</span><span class="symbol">);</span></pre></td>
307
+ </tr>
308
+ </tbody>
309
+ </table>
310
+ </div>
311
+
312
+ <p>
313
+ </p>
314
+ </div>
315
+ <p>
316
+ </p>
317
+ <hr>
318
+ <div class="refsect2">
319
+ <a name="idm140520390359808"></a><h3>Markup (styled text)</h3>
320
+ <p>
321
+ To make it easy to format text in a label (changing colors, fonts,
322
+ etc.), label text can be provided in a simple markup format.
323
+ Here's how to create a label with a small font:
324
+ </p>
325
+ <p>
326
+ </p>
327
+ <div class="informalexample">
328
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
329
+ <tbody>
330
+ <tr>
331
+ <td class="listing_lines" align="right"><pre>1
332
+ 2</pre></td>
333
+ <td class="listing_code"><pre class="programlisting"><span class="normal">label </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkLabel.html#gtk-label-new">gtk_label_new</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal"><a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS">NULL</a></span><span class="symbol">);</span>
334
+ <span class="function"><a href="GtkLabel.html#gtk-label-set-markup">gtk_label_set_markup</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function">GTK_LABEL</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">label</span><span class="symbol">),</span><span class="normal"> </span><span class="string">"&lt;span style="</span><span class="normal">color</span><span class="symbol">:</span><span class="normal"> red</span><span class="string">"&gt;&lt;small&gt;Small text&lt;/small&gt;&lt;/span&gt;"</span><span class="symbol">);</span></pre></td>
335
+ </tr>
336
+ </tbody>
337
+ </table>
338
+ </div>
339
+
340
+ <p>
341
+ </p>
342
+ <p>
343
+ (See complete documentation of available
344
+ tags in the Pango manual.)
345
+ </p>
346
+ <p>
347
+ The markup passed to <a class="link" href="GtkLabel.html#gtk-label-set-markup" title="gtk_label_set_markup ()"><code class="function">gtk_label_set_markup()</code></a> must be valid; for example,
348
+ literal &lt;, &gt; and &amp; characters must be escaped as \&lt;,
349
+ \gt;, and \&amp;. If you pass text obtained from the user, file,
350
+ or a network to <a class="link" href="GtkLabel.html#gtk-label-set-markup" title="gtk_label_set_markup ()"><code class="function">gtk_label_set_markup()</code></a>, you'll want to escape it with
351
+ <code class="function">g_markup_escape_text()</code> or <code class="function">g_markup_printf_escaped()</code>.
352
+ </p>
353
+ <p>
354
+ Markup strings are just a convenient way to set the <span class="type">PangoAttrList</span> on
355
+ a label; <a class="link" href="GtkLabel.html#gtk-label-set-attributes" title="gtk_label_set_attributes ()"><code class="function">gtk_label_set_attributes()</code></a> may be a simpler way to set
356
+ attributes in some cases. Be careful though; <span class="type">PangoAttrList</span> tends to
357
+ cause internationalization problems, unless you're applying attributes
358
+ to the entire string (i.e. unless you set the range of each attribute
359
+ to [0, <code class="literal">G_MAXINT</code>)). The reason is that specifying the start_index and
360
+ end_index for a <span class="type">PangoAttribute</span> requires knowledge of the exact string
361
+ being displayed, so translations will cause problems.
362
+ </p>
363
+ </div>
364
+ <p>
365
+ </p>
366
+ <hr>
367
+ <div class="refsect2">
368
+ <a name="idm140520390343376"></a><h3>Selectable labels</h3>
369
+ Labels can be made selectable with <a class="link" href="GtkLabel.html#gtk-label-set-selectable" title="gtk_label_set_selectable ()"><code class="function">gtk_label_set_selectable()</code></a>.
370
+ Selectable labels allow the user to copy the label contents to
371
+ the clipboard. Only labels that contain useful-to-copy information
372
+ — such as error messages — should be made selectable.
373
+ </div>
374
+ <p>
375
+ </p>
376
+ <hr>
377
+ <div class="refsect2">
378
+ <a name="label-text-layout"></a><h3>Text layout</h3>
379
+ <p>
380
+ A label can contain any number of paragraphs, but will have
381
+ performance problems if it contains more than a small number.
382
+ Paragraphs are separated by newlines or other paragraph separators
383
+ understood by Pango.
384
+ </p>
385
+ <p>
386
+ Labels can automatically wrap text if you call
387
+ <a class="link" href="GtkLabel.html#gtk-label-set-line-wrap" title="gtk_label_set_line_wrap ()"><code class="function">gtk_label_set_line_wrap()</code></a>.
388
+ </p>
389
+ <p>
390
+ <a class="link" href="GtkLabel.html#gtk-label-set-justify" title="gtk_label_set_justify ()"><code class="function">gtk_label_set_justify()</code></a> sets how the lines in a label align
391
+ with one another. If you want to set how the label as a whole
392
+ aligns in its available space, see <a class="link" href="GtkMisc.html#gtk-misc-set-alignment" title="gtk_misc_set_alignment ()"><code class="function">gtk_misc_set_alignment()</code></a>.
393
+ </p>
394
+ <p>
395
+ The <a class="link" href="GtkLabel.html#GtkLabel--width-chars" title='The "width-chars" property'><span class="type">"width-chars"</span></a> and <a class="link" href="GtkLabel.html#GtkLabel--max-width-chars" title='The "max-width-chars" property'><span class="type">"max-width-chars"</span></a> properties
396
+ can be used to control the size allocation of ellipsized or wrapped
397
+ labels. For ellipsizing labels, if either is specified (and less
398
+ than the actual text size), it is used as the minimum width, and the actual
399
+ text size is used as the natural width of the label. For wrapping labels,
400
+ width-chars is used as the minimum width, if specified, and max-width-chars
401
+ is used as the natural width. Even if max-width-chars specified, wrapping
402
+ labels will be rewrapped to use all of the available width.
403
+ </p>
404
+ <p>
405
+ </p>
406
+ <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
407
+ <h3 class="title">Note</h3>
408
+ <p>
409
+ Note that the interpretation of <a class="link" href="GtkLabel.html#GtkLabel--width-chars" title='The "width-chars" property'><span class="type">"width-chars"</span></a> and
410
+ <a class="link" href="GtkLabel.html#GtkLabel--max-width-chars" title='The "max-width-chars" property'><span class="type">"max-width-chars"</span></a> has changed a bit with the introduction of
411
+ <a class="link" href="GtkWidget.html#geometry-management" title="Height-for-width Geometry Management">width-for-height geometry management.</a>
412
+ </p>
413
+ </div>
414
+ <p>
415
+ </p>
416
+ </div>
417
+ <p>
418
+ </p>
419
+ <hr>
420
+ <div class="refsect2">
421
+ <a name="idm140520390328496"></a><h3>Links</h3>
422
+ <p>
423
+ Since 2.18, GTK+ supports markup for clickable hyperlinks in addition
424
+ to regular Pango markup. The markup for links is borrowed from HTML, using the
425
+ <code class="sgmltag-element">a</code> with href and title attributes. GTK+ renders links similar to the
426
+ way they appear in web browsers, with colored, underlined text. The title
427
+ attribute is displayed as a tooltip on the link. An example looks like this:
428
+ </p>
429
+ <p>
430
+ </p>
431
+ <div class="informalexample">
432
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
433
+ <tbody>
434
+ <tr>
435
+ <td class="listing_lines" align="right"><pre>1</pre></td>
436
+ <td class="listing_code"><pre class="programlisting"><span class="function"><a href="GtkLabel.html#gtk-label-set-markup">gtk_label_set_markup</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">label</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"Go to the &lt;span style="</span><span class="normal">color</span><span class="symbol">:</span><span class="normal"> red</span><span class="string">"&gt;&lt;a&gt;GTK+ website&lt;/a&gt;&lt;/span&gt; for more..."</span><span class="symbol">);</span></pre></td>
437
+ </tr>
438
+ </tbody>
439
+ </table>
440
+ </div>
441
+
442
+ <p>
443
+ </p>
444
+ <p>
445
+ It is possible to implement custom handling for links and their tooltips with
446
+ the <a class="link" href="GtkLabel.html#GtkLabel-activate-link" title='The "activate-link" signal'><span class="type">"activate-link"</span></a> signal and the <a class="link" href="GtkLabel.html#gtk-label-get-current-uri" title="gtk_label_get_current_uri ()"><code class="function">gtk_label_get_current_uri()</code></a> function.
447
+ </p>
448
+ </div>
449
+ <p>
450
+ </p>
451
+ </div>
452
+ <div class="refsect1">
453
+ <a name="GtkLabel.details"></a><h2>Details</h2>
454
+ <div class="refsect2">
455
+ <a name="GtkLabel-struct"></a><h3>struct GtkLabel</h3>
456
+ <pre class="programlisting">struct GtkLabel;</pre>
457
+ </div>
458
+ <hr>
459
+ <div class="refsect2">
460
+ <a name="gtk-label-new"></a><h3>gtk_label_new ()</h3>
461
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_label_new (<em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);</pre>
462
+ <p>
463
+ Creates a new label with the given text inside it. You can
464
+ pass <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> to get an empty label widget.
465
+ </p>
466
+ <div class="variablelist"><table border="0" class="variablelist">
467
+ <colgroup>
468
+ <col align="left" valign="top">
469
+ <col>
470
+ </colgroup>
471
+ <tbody>
472
+ <tr>
473
+ <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
474
+ <td>The text of the label</td>
475
+ </tr>
476
+ <tr>
477
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
478
+ <td>the new <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
479
+ </td>
480
+ </tr>
481
+ </tbody>
482
+ </table></div>
483
+ </div>
484
+ <hr>
485
+ <div class="refsect2">
486
+ <a name="gtk-label-set-text"></a><h3>gtk_label_set_text ()</h3>
487
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_text (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
488
+ <em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);</pre>
489
+ <p>
490
+ Sets the text within the <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> widget. It overwrites any text that
491
+ was there before.
492
+ </p>
493
+ <p>
494
+ This will also clear any previously set mnemonic accelerators.
495
+ </p>
496
+ <div class="variablelist"><table border="0" class="variablelist">
497
+ <colgroup>
498
+ <col align="left" valign="top">
499
+ <col>
500
+ </colgroup>
501
+ <tbody>
502
+ <tr>
503
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
504
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
505
+ </td>
506
+ </tr>
507
+ <tr>
508
+ <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
509
+ <td>The text you want to set</td>
510
+ </tr>
511
+ </tbody>
512
+ </table></div>
513
+ </div>
514
+ <hr>
515
+ <div class="refsect2">
516
+ <a name="gtk-label-set-attributes"></a><h3>gtk_label_set_attributes ()</h3>
517
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_attributes (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
518
+ <em class="parameter"><code><span class="type">PangoAttrList</span> *attrs</code></em>);</pre>
519
+ <p>
520
+ Sets a <span class="type">PangoAttrList</span>; the attributes in the list are applied to the
521
+ label text.
522
+ </p>
523
+ <p>
524
+ </p>
525
+ <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
526
+ <h3 class="title">Note</h3>
527
+ <p>The attributes set with this function will be applied
528
+ and merged with any other attributes previously effected by way
529
+ of the <a class="link" href="GtkLabel.html#GtkLabel--use-underline" title='The "use-underline" property'><span class="type">"use-underline"</span></a> or <a class="link" href="GtkLabel.html#GtkLabel--use-markup" title='The "use-markup" property'><span class="type">"use-markup"</span></a> properties.
530
+ While it is not recommended to mix markup strings with manually set
531
+ attributes, if you must; know that the attributes will be applied
532
+ to the label after the markup string is parsed.</p>
533
+ </div>
534
+ <p>
535
+ </p>
536
+ <div class="variablelist"><table border="0" class="variablelist">
537
+ <colgroup>
538
+ <col align="left" valign="top">
539
+ <col>
540
+ </colgroup>
541
+ <tbody>
542
+ <tr>
543
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
544
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
545
+ </td>
546
+ </tr>
547
+ <tr>
548
+ <td><p><span class="term"><em class="parameter"><code>attrs</code></em> :</span></p></td>
549
+ <td>a <span class="type">PangoAttrList</span>
550
+ </td>
551
+ </tr>
552
+ </tbody>
553
+ </table></div>
554
+ </div>
555
+ <hr>
556
+ <div class="refsect2">
557
+ <a name="gtk-label-set-markup"></a><h3>gtk_label_set_markup ()</h3>
558
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_markup (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
559
+ <em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);</pre>
560
+ <p>
561
+ Parses <em class="parameter"><code>str</code></em> which is marked up with the Pango text markup language, setting the
562
+ label's text and attribute list based on the parse results. If the <em class="parameter"><code>str</code></em> is
563
+ external data, you may need to escape it with <code class="function">g_markup_escape_text()</code> or
564
+ <code class="function">g_markup_printf_escaped()</code>:
565
+ </p>
566
+ <div class="informalexample">
567
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
568
+ <tbody>
569
+ <tr>
570
+ <td class="listing_lines" align="right"><pre>1
571
+ 2
572
+ 3
573
+ 4
574
+ 5</pre></td>
575
+ <td class="listing_code"><pre class="programlisting"><span class="type">char</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">markup</span><span class="symbol">;</span>
576
+
577
+ <span class="normal">markup </span><span class="symbol">=</span><span class="normal"> </span><span class="function">g_markup_printf_escaped</span><span class="normal"> </span><span class="symbol">(</span><span class="string">"&lt;span style=</span><span class="specialchar">\"</span><span class="string">italic</span><span class="specialchar">\"</span><span class="string">&gt;%s&lt;/span&gt;"</span><span class="symbol">,</span><span class="normal"> str</span><span class="symbol">);</span>
578
+ <span class="function"><a href="GtkLabel.html#gtk-label-set-markup">gtk_label_set_markup</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function">GTK_LABEL</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">label</span><span class="symbol">),</span><span class="normal"> markup</span><span class="symbol">);</span>
579
+ <span class="function">g_free</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">markup</span><span class="symbol">);</span></pre></td>
580
+ </tr>
581
+ </tbody>
582
+ </table>
583
+ </div>
584
+
585
+ <p>
586
+ </p>
587
+ <div class="variablelist"><table border="0" class="variablelist">
588
+ <colgroup>
589
+ <col align="left" valign="top">
590
+ <col>
591
+ </colgroup>
592
+ <tbody>
593
+ <tr>
594
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
595
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
596
+ </td>
597
+ </tr>
598
+ <tr>
599
+ <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
600
+ <td>a markup string (see Pango markup format)</td>
601
+ </tr>
602
+ </tbody>
603
+ </table></div>
604
+ </div>
605
+ <hr>
606
+ <div class="refsect2">
607
+ <a name="gtk-label-set-markup-with-mnemonic"></a><h3>gtk_label_set_markup_with_mnemonic ()</h3>
608
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_markup_with_mnemonic (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
609
+ <em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);</pre>
610
+ <p>
611
+ Parses <em class="parameter"><code>str</code></em> which is marked up with the
612
+ Pango text markup language,
613
+ setting the label's text and attribute list based on the parse results.
614
+ If characters in <em class="parameter"><code>str</code></em> are preceded by an underscore, they are underlined
615
+ indicating that they represent a keyboard accelerator called a mnemonic.
616
+ </p>
617
+ <p>
618
+ The mnemonic key can be used to activate another widget, chosen
619
+ automatically, or explicitly using <a class="link" href="GtkLabel.html#gtk-label-set-mnemonic-widget" title="gtk_label_set_mnemonic_widget ()"><code class="function">gtk_label_set_mnemonic_widget()</code></a>.
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>label</code></em> :</span></p></td>
629
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
630
+ </td>
631
+ </tr>
632
+ <tr>
633
+ <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
634
+ <td>a markup string (see
635
+ Pango markup format)</td>
636
+ </tr>
637
+ </tbody>
638
+ </table></div>
639
+ </div>
640
+ <hr>
641
+ <div class="refsect2">
642
+ <a name="gtk-label-set-pattern"></a><h3>gtk_label_set_pattern ()</h3>
643
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_pattern (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
644
+ <em class="parameter"><code>const <span class="type">gchar</span> *pattern</code></em>);</pre>
645
+ <p>
646
+ The pattern of underlines you want under the existing text within the
647
+ <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> widget. For example if the current text of the label says
648
+ "FooBarBaz" passing a pattern of "___ ___" will underline
649
+ "Foo" and "Baz" but not "Bar".
650
+ </p>
651
+ <div class="variablelist"><table border="0" class="variablelist">
652
+ <colgroup>
653
+ <col align="left" valign="top">
654
+ <col>
655
+ </colgroup>
656
+ <tbody>
657
+ <tr>
658
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
659
+ <td>The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> you want to set the pattern to.</td>
660
+ </tr>
661
+ <tr>
662
+ <td><p><span class="term"><em class="parameter"><code>pattern</code></em> :</span></p></td>
663
+ <td>The pattern as described above.</td>
664
+ </tr>
665
+ </tbody>
666
+ </table></div>
667
+ </div>
668
+ <hr>
669
+ <div class="refsect2">
670
+ <a name="gtk-label-set-justify"></a><h3>gtk_label_set_justify ()</h3>
671
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_justify (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
672
+ <em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> jtype</code></em>);</pre>
673
+ <p>
674
+ Sets the alignment of the lines in the text of the label relative to
675
+ each other. <a class="link" href="gtk3-Standard-Enumerations.html#GTK-JUSTIFY-LEFT:CAPS"><code class="literal">GTK_JUSTIFY_LEFT</code></a> is the default value when the
676
+ widget is first created with <a class="link" href="GtkLabel.html#gtk-label-new" title="gtk_label_new ()"><code class="function">gtk_label_new()</code></a>. If you instead want
677
+ to set the alignment of the label as a whole, use
678
+ <a class="link" href="GtkMisc.html#gtk-misc-set-alignment" title="gtk_misc_set_alignment ()"><code class="function">gtk_misc_set_alignment()</code></a> instead. <a class="link" href="GtkLabel.html#gtk-label-set-justify" title="gtk_label_set_justify ()"><code class="function">gtk_label_set_justify()</code></a> has no
679
+ effect on labels containing only a single line.
680
+ </p>
681
+ <div class="variablelist"><table border="0" class="variablelist">
682
+ <colgroup>
683
+ <col align="left" valign="top">
684
+ <col>
685
+ </colgroup>
686
+ <tbody>
687
+ <tr>
688
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
689
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
690
+ </td>
691
+ </tr>
692
+ <tr>
693
+ <td><p><span class="term"><em class="parameter"><code>jtype</code></em> :</span></p></td>
694
+ <td>a <a class="link" href="gtk3-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a>
695
+ </td>
696
+ </tr>
697
+ </tbody>
698
+ </table></div>
699
+ </div>
700
+ <hr>
701
+ <div class="refsect2">
702
+ <a name="gtk-label-set-ellipsize"></a><h3>gtk_label_set_ellipsize ()</h3>
703
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_ellipsize (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
704
+ <em class="parameter"><code><span class="type">PangoEllipsizeMode</span> mode</code></em>);</pre>
705
+ <p>
706
+ Sets the mode used to ellipsize (add an ellipsis: "...") to the text
707
+ if there is not enough space to render the entire string.
708
+ </p>
709
+ <div class="variablelist"><table border="0" class="variablelist">
710
+ <colgroup>
711
+ <col align="left" valign="top">
712
+ <col>
713
+ </colgroup>
714
+ <tbody>
715
+ <tr>
716
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
717
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
718
+ </td>
719
+ </tr>
720
+ <tr>
721
+ <td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
722
+ <td>a <span class="type">PangoEllipsizeMode</span>
723
+ </td>
724
+ </tr>
725
+ </tbody>
726
+ </table></div>
727
+ <p class="since">Since 2.6</p>
728
+ </div>
729
+ <hr>
730
+ <div class="refsect2">
731
+ <a name="gtk-label-set-width-chars"></a><h3>gtk_label_set_width_chars ()</h3>
732
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_width_chars (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
733
+ <em class="parameter"><code><span class="type">gint</span> n_chars</code></em>);</pre>
734
+ <p>
735
+ Sets the desired width in characters of <em class="parameter"><code>label</code></em> to <em class="parameter"><code>n_chars</code></em>.
736
+ </p>
737
+ <div class="variablelist"><table border="0" class="variablelist">
738
+ <colgroup>
739
+ <col align="left" valign="top">
740
+ <col>
741
+ </colgroup>
742
+ <tbody>
743
+ <tr>
744
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
745
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
746
+ </td>
747
+ </tr>
748
+ <tr>
749
+ <td><p><span class="term"><em class="parameter"><code>n_chars</code></em> :</span></p></td>
750
+ <td>the new desired width, in characters.</td>
751
+ </tr>
752
+ </tbody>
753
+ </table></div>
754
+ <p class="since">Since 2.6</p>
755
+ </div>
756
+ <hr>
757
+ <div class="refsect2">
758
+ <a name="gtk-label-set-max-width-chars"></a><h3>gtk_label_set_max_width_chars ()</h3>
759
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_max_width_chars (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
760
+ <em class="parameter"><code><span class="type">gint</span> n_chars</code></em>);</pre>
761
+ <p>
762
+ Sets the desired maximum width in characters of <em class="parameter"><code>label</code></em> to <em class="parameter"><code>n_chars</code></em>.
763
+ </p>
764
+ <div class="variablelist"><table border="0" class="variablelist">
765
+ <colgroup>
766
+ <col align="left" valign="top">
767
+ <col>
768
+ </colgroup>
769
+ <tbody>
770
+ <tr>
771
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
772
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
773
+ </td>
774
+ </tr>
775
+ <tr>
776
+ <td><p><span class="term"><em class="parameter"><code>n_chars</code></em> :</span></p></td>
777
+ <td>the new desired maximum width, in characters.</td>
778
+ </tr>
779
+ </tbody>
780
+ </table></div>
781
+ <p class="since">Since 2.6</p>
782
+ </div>
783
+ <hr>
784
+ <div class="refsect2">
785
+ <a name="gtk-label-set-line-wrap"></a><h3>gtk_label_set_line_wrap ()</h3>
786
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_line_wrap (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
787
+ <em class="parameter"><code><span class="type">gboolean</span> wrap</code></em>);</pre>
788
+ <p>
789
+ Toggles line wrapping within the <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> widget. <code class="literal">TRUE</code> makes it break
790
+ lines if text exceeds the widget's size. <code class="literal">FALSE</code> lets the text get cut off
791
+ by the edge of the widget if it exceeds the widget size.
792
+ </p>
793
+ <p>
794
+ Note that setting line wrapping to <code class="literal">TRUE</code> does not make the label
795
+ wrap at its parent container's width, because GTK+ widgets
796
+ conceptually can't make their requisition depend on the parent
797
+ container's size. For a label that wraps at a specific position,
798
+ set the label's width using <a class="link" href="GtkWidget.html#gtk-widget-set-size-request" title="gtk_widget_set_size_request ()"><code class="function">gtk_widget_set_size_request()</code></a>.
799
+ </p>
800
+ <div class="variablelist"><table border="0" class="variablelist">
801
+ <colgroup>
802
+ <col align="left" valign="top">
803
+ <col>
804
+ </colgroup>
805
+ <tbody>
806
+ <tr>
807
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
808
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
809
+ </td>
810
+ </tr>
811
+ <tr>
812
+ <td><p><span class="term"><em class="parameter"><code>wrap</code></em> :</span></p></td>
813
+ <td>the setting</td>
814
+ </tr>
815
+ </tbody>
816
+ </table></div>
817
+ </div>
818
+ <hr>
819
+ <div class="refsect2">
820
+ <a name="gtk-label-set-line-wrap-mode"></a><h3>gtk_label_set_line_wrap_mode ()</h3>
821
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_line_wrap_mode (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
822
+ <em class="parameter"><code><span class="type">PangoWrapMode</span> wrap_mode</code></em>);</pre>
823
+ <p>
824
+ If line wrapping is on (see <a class="link" href="GtkLabel.html#gtk-label-set-line-wrap" title="gtk_label_set_line_wrap ()"><code class="function">gtk_label_set_line_wrap()</code></a>) this controls how
825
+ the line wrapping is done. The default is <code class="literal">PANGO_WRAP_WORD</code> which means
826
+ wrap on word boundaries.
827
+ </p>
828
+ <div class="variablelist"><table border="0" class="variablelist">
829
+ <colgroup>
830
+ <col align="left" valign="top">
831
+ <col>
832
+ </colgroup>
833
+ <tbody>
834
+ <tr>
835
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
836
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
837
+ </td>
838
+ </tr>
839
+ <tr>
840
+ <td><p><span class="term"><em class="parameter"><code>wrap_mode</code></em> :</span></p></td>
841
+ <td>the line wrapping mode</td>
842
+ </tr>
843
+ </tbody>
844
+ </table></div>
845
+ <p class="since">Since 2.10</p>
846
+ </div>
847
+ <hr>
848
+ <div class="refsect2">
849
+ <a name="gtk-label-get-layout-offsets"></a><h3>gtk_label_get_layout_offsets ()</h3>
850
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_get_layout_offsets (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
851
+ <em class="parameter"><code><span class="type">gint</span> *x</code></em>,
852
+ <em class="parameter"><code><span class="type">gint</span> *y</code></em>);</pre>
853
+ <p>
854
+ Obtains the coordinates where the label will draw the <span class="type">PangoLayout</span>
855
+ representing the text in the label; useful to convert mouse events
856
+ into coordinates inside the <span class="type">PangoLayout</span>, e.g. to take some action
857
+ if some part of the label is clicked. Of course you will need to
858
+ create a <a class="link" href="GtkEventBox.html" title="GtkEventBox"><span class="type">GtkEventBox</span></a> to receive the events, and pack the label
859
+ inside it, since labels are a <a href="http://library.gnome.org/devel/gtk3/GtkWidget.html#GTK-NO-WINDOW:CAPS"><span class="type">GTK_NO_WINDOW</span></a> widget. Remember
860
+ when using the <span class="type">PangoLayout</span> functions you need to convert to
861
+ and from pixels using <code class="function">PANGO_PIXELS()</code> or <span class="type">PANGO_SCALE</span>.
862
+ </p>
863
+ <div class="variablelist"><table border="0" class="variablelist">
864
+ <colgroup>
865
+ <col align="left" valign="top">
866
+ <col>
867
+ </colgroup>
868
+ <tbody>
869
+ <tr>
870
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
871
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
872
+ </td>
873
+ </tr>
874
+ <tr>
875
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
876
+ <td>location to store X offset of layout, 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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
877
+ </td>
878
+ </tr>
879
+ <tr>
880
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
881
+ <td>location to store Y offset of layout, 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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
882
+ </td>
883
+ </tr>
884
+ </tbody>
885
+ </table></div>
886
+ </div>
887
+ <hr>
888
+ <div class="refsect2">
889
+ <a name="gtk-label-get-mnemonic-keyval"></a><h3>gtk_label_get_mnemonic_keyval ()</h3>
890
+ <pre class="programlisting"><span class="returnvalue">guint</span> gtk_label_get_mnemonic_keyval (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
891
+ <p>
892
+ If the label has been set so that it has an mnemonic key this function
893
+ returns the keyval used for the mnemonic accelerator. If there is no
894
+ mnemonic set up it returns <span class="type">GDK_KEY_VoidSymbol</span>.
895
+ </p>
896
+ <div class="variablelist"><table border="0" class="variablelist">
897
+ <colgroup>
898
+ <col align="left" valign="top">
899
+ <col>
900
+ </colgroup>
901
+ <tbody>
902
+ <tr>
903
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
904
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
905
+ </td>
906
+ </tr>
907
+ <tr>
908
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
909
+ <td>GDK keyval usable for accelerators, or <span class="type">GDK_KEY_VoidSymbol</span>
910
+ </td>
911
+ </tr>
912
+ </tbody>
913
+ </table></div>
914
+ </div>
915
+ <hr>
916
+ <div class="refsect2">
917
+ <a name="gtk-label-get-selectable"></a><h3>gtk_label_get_selectable ()</h3>
918
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_label_get_selectable (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
919
+ <p>
920
+ Gets the value set by <a class="link" href="GtkLabel.html#gtk-label-set-selectable" title="gtk_label_set_selectable ()"><code class="function">gtk_label_set_selectable()</code></a>.
921
+ </p>
922
+ <div class="variablelist"><table border="0" class="variablelist">
923
+ <colgroup>
924
+ <col align="left" valign="top">
925
+ <col>
926
+ </colgroup>
927
+ <tbody>
928
+ <tr>
929
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
930
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
931
+ </td>
932
+ </tr>
933
+ <tr>
934
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
935
+ <td>
936
+ <code class="literal">TRUE</code> if the user can copy text from the label</td>
937
+ </tr>
938
+ </tbody>
939
+ </table></div>
940
+ </div>
941
+ <hr>
942
+ <div class="refsect2">
943
+ <a name="gtk-label-get-text"></a><h3>gtk_label_get_text ()</h3>
944
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> * gtk_label_get_text (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
945
+ <p>
946
+ Fetches the text from a label widget, as displayed on the
947
+ screen. This does not include any embedded underlines
948
+ indicating mnemonics or Pango markup. (See <a class="link" href="GtkLabel.html#gtk-label-get-label" title="gtk_label_get_label ()"><code class="function">gtk_label_get_label()</code></a>)
949
+ </p>
950
+ <div class="variablelist"><table border="0" class="variablelist">
951
+ <colgroup>
952
+ <col align="left" valign="top">
953
+ <col>
954
+ </colgroup>
955
+ <tbody>
956
+ <tr>
957
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
958
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
959
+ </td>
960
+ </tr>
961
+ <tr>
962
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
963
+ <td>the text in the label widget. This is the internal
964
+ string used by the label, and must not be modified.</td>
965
+ </tr>
966
+ </tbody>
967
+ </table></div>
968
+ </div>
969
+ <hr>
970
+ <div class="refsect2">
971
+ <a name="gtk-label-new-with-mnemonic"></a><h3>gtk_label_new_with_mnemonic ()</h3>
972
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_label_new_with_mnemonic (<em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);</pre>
973
+ <p>
974
+ Creates a new <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>, containing the text in <em class="parameter"><code>str</code></em>.
975
+ </p>
976
+ <p>
977
+ If characters in <em class="parameter"><code>str</code></em> are preceded by an underscore, they are
978
+ underlined. If you need a literal underscore character in a label, use
979
+ '__' (two underscores). The first underlined character represents a
980
+ keyboard accelerator called a mnemonic. The mnemonic key can be used
981
+ to activate another widget, chosen automatically, or explicitly using
982
+ <a class="link" href="GtkLabel.html#gtk-label-set-mnemonic-widget" title="gtk_label_set_mnemonic_widget ()"><code class="function">gtk_label_set_mnemonic_widget()</code></a>.
983
+ </p>
984
+ <p>
985
+ If <a class="link" href="GtkLabel.html#gtk-label-set-mnemonic-widget" title="gtk_label_set_mnemonic_widget ()"><code class="function">gtk_label_set_mnemonic_widget()</code></a> is not called, then the first
986
+ activatable ancestor of the <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> will be chosen as the mnemonic
987
+ widget. For instance, if the label is inside a button or menu item,
988
+ the button or menu item will automatically become the mnemonic widget
989
+ and be activated by the mnemonic.
990
+ </p>
991
+ <div class="variablelist"><table border="0" class="variablelist">
992
+ <colgroup>
993
+ <col align="left" valign="top">
994
+ <col>
995
+ </colgroup>
996
+ <tbody>
997
+ <tr>
998
+ <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
999
+ <td>The text of the label, with an underscore in front of the
1000
+ mnemonic character</td>
1001
+ </tr>
1002
+ <tr>
1003
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1004
+ <td>the new <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1005
+ </td>
1006
+ </tr>
1007
+ </tbody>
1008
+ </table></div>
1009
+ </div>
1010
+ <hr>
1011
+ <div class="refsect2">
1012
+ <a name="gtk-label-select-region"></a><h3>gtk_label_select_region ()</h3>
1013
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_select_region (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1014
+ <em class="parameter"><code><span class="type">gint</span> start_offset</code></em>,
1015
+ <em class="parameter"><code><span class="type">gint</span> end_offset</code></em>);</pre>
1016
+ <p>
1017
+ Selects a range of characters in the label, if the label is selectable.
1018
+ See <a class="link" href="GtkLabel.html#gtk-label-set-selectable" title="gtk_label_set_selectable ()"><code class="function">gtk_label_set_selectable()</code></a>. If the label is not selectable,
1019
+ this function has no effect. If <em class="parameter"><code>start_offset</code></em> or
1020
+ <em class="parameter"><code>end_offset</code></em> are -1, then the end of the label will be substituted.
1021
+ </p>
1022
+ <div class="variablelist"><table border="0" class="variablelist">
1023
+ <colgroup>
1024
+ <col align="left" valign="top">
1025
+ <col>
1026
+ </colgroup>
1027
+ <tbody>
1028
+ <tr>
1029
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1030
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1031
+ </td>
1032
+ </tr>
1033
+ <tr>
1034
+ <td><p><span class="term"><em class="parameter"><code>start_offset</code></em> :</span></p></td>
1035
+ <td>start offset (in characters not bytes)</td>
1036
+ </tr>
1037
+ <tr>
1038
+ <td><p><span class="term"><em class="parameter"><code>end_offset</code></em> :</span></p></td>
1039
+ <td>end offset (in characters not bytes)</td>
1040
+ </tr>
1041
+ </tbody>
1042
+ </table></div>
1043
+ </div>
1044
+ <hr>
1045
+ <div class="refsect2">
1046
+ <a name="gtk-label-set-mnemonic-widget"></a><h3>gtk_label_set_mnemonic_widget ()</h3>
1047
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_mnemonic_widget (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1048
+ <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
1049
+ <p>
1050
+ If the label has been set so that it has an mnemonic key (using
1051
+ i.e. <a class="link" href="GtkLabel.html#gtk-label-set-markup-with-mnemonic" title="gtk_label_set_markup_with_mnemonic ()"><code class="function">gtk_label_set_markup_with_mnemonic()</code></a>,
1052
+ <a class="link" href="GtkLabel.html#gtk-label-set-text-with-mnemonic" title="gtk_label_set_text_with_mnemonic ()"><code class="function">gtk_label_set_text_with_mnemonic()</code></a>, <a class="link" href="GtkLabel.html#gtk-label-new-with-mnemonic" title="gtk_label_new_with_mnemonic ()"><code class="function">gtk_label_new_with_mnemonic()</code></a>
1053
+ or the "use_underline" property) the label can be associated with a
1054
+ widget that is the target of the mnemonic. When the label is inside
1055
+ a widget (like a <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> or a <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> tab) it is
1056
+ automatically associated with the correct widget, but sometimes
1057
+ (i.e. when the target is a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> next to the label) you need to
1058
+ set it explicitly using this function.
1059
+ </p>
1060
+ <p>
1061
+ The target widget will be accelerated by emitting the
1062
+ GtkWidget::mnemonic-activate signal on it. The default handler for
1063
+ this signal will activate the widget if there are no mnemonic collisions
1064
+ and toggle focus between the colliding widgets otherwise.
1065
+ </p>
1066
+ <div class="variablelist"><table border="0" class="variablelist">
1067
+ <colgroup>
1068
+ <col align="left" valign="top">
1069
+ <col>
1070
+ </colgroup>
1071
+ <tbody>
1072
+ <tr>
1073
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1074
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1075
+ </td>
1076
+ </tr>
1077
+ <tr>
1078
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1079
+ <td>the target <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1080
+ </td>
1081
+ </tr>
1082
+ </tbody>
1083
+ </table></div>
1084
+ </div>
1085
+ <hr>
1086
+ <div class="refsect2">
1087
+ <a name="gtk-label-set-selectable"></a><h3>gtk_label_set_selectable ()</h3>
1088
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_selectable (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1089
+ <em class="parameter"><code><span class="type">gboolean</span> setting</code></em>);</pre>
1090
+ <p>
1091
+ Selectable labels allow the user to select text from the label, for
1092
+ copy-and-paste.
1093
+ </p>
1094
+ <div class="variablelist"><table border="0" class="variablelist">
1095
+ <colgroup>
1096
+ <col align="left" valign="top">
1097
+ <col>
1098
+ </colgroup>
1099
+ <tbody>
1100
+ <tr>
1101
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1102
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1103
+ </td>
1104
+ </tr>
1105
+ <tr>
1106
+ <td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
1107
+ <td>
1108
+ <code class="literal">TRUE</code> to allow selecting text in the label</td>
1109
+ </tr>
1110
+ </tbody>
1111
+ </table></div>
1112
+ </div>
1113
+ <hr>
1114
+ <div class="refsect2">
1115
+ <a name="gtk-label-set-text-with-mnemonic"></a><h3>gtk_label_set_text_with_mnemonic ()</h3>
1116
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_text_with_mnemonic (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1117
+ <em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);</pre>
1118
+ <p>
1119
+ Sets the label's text from the string <em class="parameter"><code>str</code></em>.
1120
+ If characters in <em class="parameter"><code>str</code></em> are preceded by an underscore, they are underlined
1121
+ indicating that they represent a keyboard accelerator called a mnemonic.
1122
+ The mnemonic key can be used to activate another widget, chosen
1123
+ automatically, or explicitly using <a class="link" href="GtkLabel.html#gtk-label-set-mnemonic-widget" title="gtk_label_set_mnemonic_widget ()"><code class="function">gtk_label_set_mnemonic_widget()</code></a>.
1124
+ </p>
1125
+ <div class="variablelist"><table border="0" class="variablelist">
1126
+ <colgroup>
1127
+ <col align="left" valign="top">
1128
+ <col>
1129
+ </colgroup>
1130
+ <tbody>
1131
+ <tr>
1132
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1133
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1134
+ </td>
1135
+ </tr>
1136
+ <tr>
1137
+ <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
1138
+ <td>a string</td>
1139
+ </tr>
1140
+ </tbody>
1141
+ </table></div>
1142
+ </div>
1143
+ <hr>
1144
+ <div class="refsect2">
1145
+ <a name="gtk-label-get-attributes"></a><h3>gtk_label_get_attributes ()</h3>
1146
+ <pre class="programlisting"><span class="returnvalue">PangoAttrList</span> * gtk_label_get_attributes (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1147
+ <p>
1148
+ Gets the attribute list that was set on the label using
1149
+ <a class="link" href="GtkLabel.html#gtk-label-set-attributes" title="gtk_label_set_attributes ()"><code class="function">gtk_label_set_attributes()</code></a>, if any. This function does
1150
+ not reflect attributes that come from the labels markup
1151
+ (see <a class="link" href="GtkLabel.html#gtk-label-set-markup" title="gtk_label_set_markup ()"><code class="function">gtk_label_set_markup()</code></a>). If you want to get the
1152
+ effective attributes for the label, use
1153
+ pango_layout_get_attribute (gtk_label_get_layout (label)).
1154
+ </p>
1155
+ <div class="variablelist"><table border="0" class="variablelist">
1156
+ <colgroup>
1157
+ <col align="left" valign="top">
1158
+ <col>
1159
+ </colgroup>
1160
+ <tbody>
1161
+ <tr>
1162
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1163
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1164
+ </td>
1165
+ </tr>
1166
+ <tr>
1167
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1168
+ <td>the attribute list, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
1169
+ if none was set. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1170
+ </td>
1171
+ </tr>
1172
+ </tbody>
1173
+ </table></div>
1174
+ </div>
1175
+ <hr>
1176
+ <div class="refsect2">
1177
+ <a name="gtk-label-get-justify"></a><h3>gtk_label_get_justify ()</h3>
1178
+ <pre class="programlisting"><a class="link" href="gtk3-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="returnvalue">GtkJustification</span></a> gtk_label_get_justify (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1179
+ <p>
1180
+ Returns the justification of the label. See <a class="link" href="GtkLabel.html#gtk-label-set-justify" title="gtk_label_set_justify ()"><code class="function">gtk_label_set_justify()</code></a>.
1181
+ </p>
1182
+ <div class="variablelist"><table border="0" class="variablelist">
1183
+ <colgroup>
1184
+ <col align="left" valign="top">
1185
+ <col>
1186
+ </colgroup>
1187
+ <tbody>
1188
+ <tr>
1189
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1190
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1191
+ </td>
1192
+ </tr>
1193
+ <tr>
1194
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1195
+ <td><a class="link" href="gtk3-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a></td>
1196
+ </tr>
1197
+ </tbody>
1198
+ </table></div>
1199
+ </div>
1200
+ <hr>
1201
+ <div class="refsect2">
1202
+ <a name="gtk-label-get-ellipsize"></a><h3>gtk_label_get_ellipsize ()</h3>
1203
+ <pre class="programlisting"><span class="returnvalue">PangoEllipsizeMode</span> gtk_label_get_ellipsize (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1204
+ <p>
1205
+ Returns the ellipsizing position of the label. See <a class="link" href="GtkLabel.html#gtk-label-set-ellipsize" title="gtk_label_set_ellipsize ()"><code class="function">gtk_label_set_ellipsize()</code></a>.
1206
+ </p>
1207
+ <div class="variablelist"><table border="0" class="variablelist">
1208
+ <colgroup>
1209
+ <col align="left" valign="top">
1210
+ <col>
1211
+ </colgroup>
1212
+ <tbody>
1213
+ <tr>
1214
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1215
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1216
+ </td>
1217
+ </tr>
1218
+ <tr>
1219
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1220
+ <td><span class="type">PangoEllipsizeMode</span></td>
1221
+ </tr>
1222
+ </tbody>
1223
+ </table></div>
1224
+ <p class="since">Since 2.6</p>
1225
+ </div>
1226
+ <hr>
1227
+ <div class="refsect2">
1228
+ <a name="gtk-label-get-width-chars"></a><h3>gtk_label_get_width_chars ()</h3>
1229
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_label_get_width_chars (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1230
+ <p>
1231
+ Retrieves the desired width of <em class="parameter"><code>label</code></em>, in characters. See
1232
+ <a class="link" href="GtkLabel.html#gtk-label-set-width-chars" title="gtk_label_set_width_chars ()"><code class="function">gtk_label_set_width_chars()</code></a>.
1233
+ </p>
1234
+ <div class="variablelist"><table border="0" class="variablelist">
1235
+ <colgroup>
1236
+ <col align="left" valign="top">
1237
+ <col>
1238
+ </colgroup>
1239
+ <tbody>
1240
+ <tr>
1241
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1242
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1243
+ </td>
1244
+ </tr>
1245
+ <tr>
1246
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1247
+ <td>the width of the label in characters.</td>
1248
+ </tr>
1249
+ </tbody>
1250
+ </table></div>
1251
+ <p class="since">Since 2.6</p>
1252
+ </div>
1253
+ <hr>
1254
+ <div class="refsect2">
1255
+ <a name="gtk-label-get-max-width-chars"></a><h3>gtk_label_get_max_width_chars ()</h3>
1256
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_label_get_max_width_chars (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1257
+ <p>
1258
+ Retrieves the desired maximum width of <em class="parameter"><code>label</code></em>, in characters. See
1259
+ <a class="link" href="GtkLabel.html#gtk-label-set-width-chars" title="gtk_label_set_width_chars ()"><code class="function">gtk_label_set_width_chars()</code></a>.
1260
+ </p>
1261
+ <div class="variablelist"><table border="0" class="variablelist">
1262
+ <colgroup>
1263
+ <col align="left" valign="top">
1264
+ <col>
1265
+ </colgroup>
1266
+ <tbody>
1267
+ <tr>
1268
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1269
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1270
+ </td>
1271
+ </tr>
1272
+ <tr>
1273
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1274
+ <td>the maximum width of the label in characters.</td>
1275
+ </tr>
1276
+ </tbody>
1277
+ </table></div>
1278
+ <p class="since">Since 2.6</p>
1279
+ </div>
1280
+ <hr>
1281
+ <div class="refsect2">
1282
+ <a name="gtk-label-get-label"></a><h3>gtk_label_get_label ()</h3>
1283
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> * gtk_label_get_label (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1284
+ <p>
1285
+ Fetches the text from a label widget including any embedded
1286
+ underlines indicating mnemonics and Pango markup. (See
1287
+ <a class="link" href="GtkLabel.html#gtk-label-get-text" title="gtk_label_get_text ()"><code class="function">gtk_label_get_text()</code></a>).
1288
+ </p>
1289
+ <div class="variablelist"><table border="0" class="variablelist">
1290
+ <colgroup>
1291
+ <col align="left" valign="top">
1292
+ <col>
1293
+ </colgroup>
1294
+ <tbody>
1295
+ <tr>
1296
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1297
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1298
+ </td>
1299
+ </tr>
1300
+ <tr>
1301
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1302
+ <td>the text of the label widget. This string is
1303
+ owned by the widget and must not be modified or freed.</td>
1304
+ </tr>
1305
+ </tbody>
1306
+ </table></div>
1307
+ </div>
1308
+ <hr>
1309
+ <div class="refsect2">
1310
+ <a name="gtk-label-get-layout"></a><h3>gtk_label_get_layout ()</h3>
1311
+ <pre class="programlisting"><span class="returnvalue">PangoLayout</span> * gtk_label_get_layout (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1312
+ <p>
1313
+ Gets the <span class="type">PangoLayout</span> used to display the label.
1314
+ The layout is useful to e.g. convert text positions to
1315
+ pixel positions, in combination with <a class="link" href="GtkLabel.html#gtk-label-get-layout-offsets" title="gtk_label_get_layout_offsets ()"><code class="function">gtk_label_get_layout_offsets()</code></a>.
1316
+ The returned layout is owned by the <em class="parameter"><code>label</code></em> so need not be
1317
+ freed by the caller. The <em class="parameter"><code>label</code></em> is free to recreate its layout at
1318
+ any time, so it should be considered read-only.
1319
+ </p>
1320
+ <div class="variablelist"><table border="0" class="variablelist">
1321
+ <colgroup>
1322
+ <col align="left" valign="top">
1323
+ <col>
1324
+ </colgroup>
1325
+ <tbody>
1326
+ <tr>
1327
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1328
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1329
+ </td>
1330
+ </tr>
1331
+ <tr>
1332
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1333
+ <td>the <span class="type">PangoLayout</span> for this label. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1334
+ </td>
1335
+ </tr>
1336
+ </tbody>
1337
+ </table></div>
1338
+ </div>
1339
+ <hr>
1340
+ <div class="refsect2">
1341
+ <a name="gtk-label-get-line-wrap"></a><h3>gtk_label_get_line_wrap ()</h3>
1342
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_label_get_line_wrap (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1343
+ <p>
1344
+ Returns whether lines in the label are automatically wrapped.
1345
+ See <a class="link" href="GtkLabel.html#gtk-label-set-line-wrap" title="gtk_label_set_line_wrap ()"><code class="function">gtk_label_set_line_wrap()</code></a>.
1346
+ </p>
1347
+ <div class="variablelist"><table border="0" class="variablelist">
1348
+ <colgroup>
1349
+ <col align="left" valign="top">
1350
+ <col>
1351
+ </colgroup>
1352
+ <tbody>
1353
+ <tr>
1354
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1355
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1356
+ </td>
1357
+ </tr>
1358
+ <tr>
1359
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1360
+ <td>
1361
+ <code class="literal">TRUE</code> if the lines of the label are automatically wrapped.</td>
1362
+ </tr>
1363
+ </tbody>
1364
+ </table></div>
1365
+ </div>
1366
+ <hr>
1367
+ <div class="refsect2">
1368
+ <a name="gtk-label-get-line-wrap-mode"></a><h3>gtk_label_get_line_wrap_mode ()</h3>
1369
+ <pre class="programlisting"><span class="returnvalue">PangoWrapMode</span> gtk_label_get_line_wrap_mode (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1370
+ <p>
1371
+ Returns line wrap mode used by the label. See <a class="link" href="GtkLabel.html#gtk-label-set-line-wrap-mode" title="gtk_label_set_line_wrap_mode ()"><code class="function">gtk_label_set_line_wrap_mode()</code></a>.
1372
+ </p>
1373
+ <div class="variablelist"><table border="0" class="variablelist">
1374
+ <colgroup>
1375
+ <col align="left" valign="top">
1376
+ <col>
1377
+ </colgroup>
1378
+ <tbody>
1379
+ <tr>
1380
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1381
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1382
+ </td>
1383
+ </tr>
1384
+ <tr>
1385
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1386
+ <td>
1387
+ <code class="literal">TRUE</code> if the lines of the label are automatically wrapped.</td>
1388
+ </tr>
1389
+ </tbody>
1390
+ </table></div>
1391
+ <p class="since">Since 2.10</p>
1392
+ </div>
1393
+ <hr>
1394
+ <div class="refsect2">
1395
+ <a name="gtk-label-get-mnemonic-widget"></a><h3>gtk_label_get_mnemonic_widget ()</h3>
1396
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_label_get_mnemonic_widget (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1397
+ <p>
1398
+ Retrieves the target of the mnemonic (keyboard shortcut) of this
1399
+ label. See <a class="link" href="GtkLabel.html#gtk-label-set-mnemonic-widget" title="gtk_label_set_mnemonic_widget ()"><code class="function">gtk_label_set_mnemonic_widget()</code></a>.
1400
+ </p>
1401
+ <div class="variablelist"><table border="0" class="variablelist">
1402
+ <colgroup>
1403
+ <col align="left" valign="top">
1404
+ <col>
1405
+ </colgroup>
1406
+ <tbody>
1407
+ <tr>
1408
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1409
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1410
+ </td>
1411
+ </tr>
1412
+ <tr>
1413
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1414
+ <td>the target of the label's mnemonic,
1415
+ or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if none has been set and the default algorithm will be used. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1416
+ </td>
1417
+ </tr>
1418
+ </tbody>
1419
+ </table></div>
1420
+ </div>
1421
+ <hr>
1422
+ <div class="refsect2">
1423
+ <a name="gtk-label-get-selection-bounds"></a><h3>gtk_label_get_selection_bounds ()</h3>
1424
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_label_get_selection_bounds (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1425
+ <em class="parameter"><code><span class="type">gint</span> *start</code></em>,
1426
+ <em class="parameter"><code><span class="type">gint</span> *end</code></em>);</pre>
1427
+ <p>
1428
+ Gets the selected range of characters in the label, returning <code class="literal">TRUE</code>
1429
+ if there's a selection.
1430
+ </p>
1431
+ <div class="variablelist"><table border="0" class="variablelist">
1432
+ <colgroup>
1433
+ <col align="left" valign="top">
1434
+ <col>
1435
+ </colgroup>
1436
+ <tbody>
1437
+ <tr>
1438
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1439
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1440
+ </td>
1441
+ </tr>
1442
+ <tr>
1443
+ <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
1444
+ <td>return location for start of selection, as a character offset. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1445
+ </td>
1446
+ </tr>
1447
+ <tr>
1448
+ <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
1449
+ <td>return location for end of selection, as a character offset. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1450
+ </td>
1451
+ </tr>
1452
+ <tr>
1453
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1454
+ <td>
1455
+ <code class="literal">TRUE</code> if selection is non-empty</td>
1456
+ </tr>
1457
+ </tbody>
1458
+ </table></div>
1459
+ </div>
1460
+ <hr>
1461
+ <div class="refsect2">
1462
+ <a name="gtk-label-get-use-markup"></a><h3>gtk_label_get_use_markup ()</h3>
1463
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_label_get_use_markup (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1464
+ <p>
1465
+ Returns whether the label's text is interpreted as marked up with
1466
+ the <GTKDOCLINK HREF="PangoMarkupFormat">Pango text markup
1467
+ language</GTKDOCLINK>. See <a class="link" href="GtkLabel.html#gtk-label-set-use-markup" title="gtk_label_set_use_markup ()"><code class="function">gtk_label_set_use_markup()</code></a>.
1468
+ </p>
1469
+ <div class="variablelist"><table border="0" class="variablelist">
1470
+ <colgroup>
1471
+ <col align="left" valign="top">
1472
+ <col>
1473
+ </colgroup>
1474
+ <tbody>
1475
+ <tr>
1476
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1477
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1478
+ </td>
1479
+ </tr>
1480
+ <tr>
1481
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1482
+ <td>
1483
+ <code class="literal">TRUE</code> if the label's text will be parsed for markup.</td>
1484
+ </tr>
1485
+ </tbody>
1486
+ </table></div>
1487
+ </div>
1488
+ <hr>
1489
+ <div class="refsect2">
1490
+ <a name="gtk-label-get-use-underline"></a><h3>gtk_label_get_use_underline ()</h3>
1491
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_label_get_use_underline (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1492
+ <p>
1493
+ Returns whether an embedded underline in the label indicates a
1494
+ mnemonic. See <a class="link" href="GtkLabel.html#gtk-label-set-use-underline" title="gtk_label_set_use_underline ()"><code class="function">gtk_label_set_use_underline()</code></a>.
1495
+ </p>
1496
+ <div class="variablelist"><table border="0" class="variablelist">
1497
+ <colgroup>
1498
+ <col align="left" valign="top">
1499
+ <col>
1500
+ </colgroup>
1501
+ <tbody>
1502
+ <tr>
1503
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1504
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1505
+ </td>
1506
+ </tr>
1507
+ <tr>
1508
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1509
+ <td>
1510
+ <code class="literal">TRUE</code> whether an embedded underline in the label indicates
1511
+ the mnemonic accelerator keys.</td>
1512
+ </tr>
1513
+ </tbody>
1514
+ </table></div>
1515
+ </div>
1516
+ <hr>
1517
+ <div class="refsect2">
1518
+ <a name="gtk-label-get-single-line-mode"></a><h3>gtk_label_get_single_line_mode ()</h3>
1519
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_label_get_single_line_mode (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1520
+ <p>
1521
+ Returns whether the label is in single line mode.
1522
+ </p>
1523
+ <div class="variablelist"><table border="0" class="variablelist">
1524
+ <colgroup>
1525
+ <col align="left" valign="top">
1526
+ <col>
1527
+ </colgroup>
1528
+ <tbody>
1529
+ <tr>
1530
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1531
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1532
+ </td>
1533
+ </tr>
1534
+ <tr>
1535
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1536
+ <td>
1537
+ <code class="literal">TRUE</code> when the label is in single line mode.</td>
1538
+ </tr>
1539
+ </tbody>
1540
+ </table></div>
1541
+ <p class="since">Since 2.6</p>
1542
+ </div>
1543
+ <hr>
1544
+ <div class="refsect2">
1545
+ <a name="gtk-label-get-angle"></a><h3>gtk_label_get_angle ()</h3>
1546
+ <pre class="programlisting"><span class="returnvalue">gdouble</span> gtk_label_get_angle (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1547
+ <p>
1548
+ Gets the angle of rotation for the label. See
1549
+ <a class="link" href="GtkLabel.html#gtk-label-set-angle" title="gtk_label_set_angle ()"><code class="function">gtk_label_set_angle()</code></a>.
1550
+ </p>
1551
+ <div class="variablelist"><table border="0" class="variablelist">
1552
+ <colgroup>
1553
+ <col align="left" valign="top">
1554
+ <col>
1555
+ </colgroup>
1556
+ <tbody>
1557
+ <tr>
1558
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1559
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1560
+ </td>
1561
+ </tr>
1562
+ <tr>
1563
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1564
+ <td>the angle of rotation for the label</td>
1565
+ </tr>
1566
+ </tbody>
1567
+ </table></div>
1568
+ <p class="since">Since 2.6</p>
1569
+ </div>
1570
+ <hr>
1571
+ <div class="refsect2">
1572
+ <a name="gtk-label-set-label"></a><h3>gtk_label_set_label ()</h3>
1573
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_label (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1574
+ <em class="parameter"><code>const <span class="type">gchar</span> *str</code></em>);</pre>
1575
+ <p>
1576
+ Sets the text of the label. The label is interpreted as
1577
+ including embedded underlines and/or Pango markup depending
1578
+ on the values of the <a class="link" href="GtkLabel.html#GtkLabel--use-underline" title='The "use-underline" property'><span class="type">"use-underline"</span></a>" and
1579
+ <a class="link" href="GtkLabel.html#GtkLabel--use-markup" title='The "use-markup" property'><span class="type">"use-markup"</span></a> properties.
1580
+ </p>
1581
+ <div class="variablelist"><table border="0" class="variablelist">
1582
+ <colgroup>
1583
+ <col align="left" valign="top">
1584
+ <col>
1585
+ </colgroup>
1586
+ <tbody>
1587
+ <tr>
1588
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1589
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1590
+ </td>
1591
+ </tr>
1592
+ <tr>
1593
+ <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
1594
+ <td>the new text to set for the label</td>
1595
+ </tr>
1596
+ </tbody>
1597
+ </table></div>
1598
+ </div>
1599
+ <hr>
1600
+ <div class="refsect2">
1601
+ <a name="gtk-label-set-use-markup"></a><h3>gtk_label_set_use_markup ()</h3>
1602
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_use_markup (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1603
+ <em class="parameter"><code><span class="type">gboolean</span> setting</code></em>);</pre>
1604
+ <p>
1605
+ Sets whether the text of the label contains markup in <GTKDOCLINK HREF="PangoMarkupFormat">Pango's text markup
1606
+ language</GTKDOCLINK>. See <a class="link" href="GtkLabel.html#gtk-label-set-markup" title="gtk_label_set_markup ()"><code class="function">gtk_label_set_markup()</code></a>.
1607
+ </p>
1608
+ <div class="variablelist"><table border="0" class="variablelist">
1609
+ <colgroup>
1610
+ <col align="left" valign="top">
1611
+ <col>
1612
+ </colgroup>
1613
+ <tbody>
1614
+ <tr>
1615
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1616
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1617
+ </td>
1618
+ </tr>
1619
+ <tr>
1620
+ <td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
1621
+ <td>
1622
+ <code class="literal">TRUE</code> if the label's text should be parsed for markup.</td>
1623
+ </tr>
1624
+ </tbody>
1625
+ </table></div>
1626
+ </div>
1627
+ <hr>
1628
+ <div class="refsect2">
1629
+ <a name="gtk-label-set-use-underline"></a><h3>gtk_label_set_use_underline ()</h3>
1630
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_use_underline (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1631
+ <em class="parameter"><code><span class="type">gboolean</span> setting</code></em>);</pre>
1632
+ <p>
1633
+ If true, an underline in the text indicates the next character should be
1634
+ used for the mnemonic accelerator key.
1635
+ </p>
1636
+ <div class="variablelist"><table border="0" class="variablelist">
1637
+ <colgroup>
1638
+ <col align="left" valign="top">
1639
+ <col>
1640
+ </colgroup>
1641
+ <tbody>
1642
+ <tr>
1643
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1644
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1645
+ </td>
1646
+ </tr>
1647
+ <tr>
1648
+ <td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
1649
+ <td>
1650
+ <code class="literal">TRUE</code> if underlines in the text indicate mnemonics</td>
1651
+ </tr>
1652
+ </tbody>
1653
+ </table></div>
1654
+ </div>
1655
+ <hr>
1656
+ <div class="refsect2">
1657
+ <a name="gtk-label-set-single-line-mode"></a><h3>gtk_label_set_single_line_mode ()</h3>
1658
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_single_line_mode (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1659
+ <em class="parameter"><code><span class="type">gboolean</span> single_line_mode</code></em>);</pre>
1660
+ <p>
1661
+ Sets whether the label is in single line mode.
1662
+ </p>
1663
+ <div class="variablelist"><table border="0" class="variablelist">
1664
+ <colgroup>
1665
+ <col align="left" valign="top">
1666
+ <col>
1667
+ </colgroup>
1668
+ <tbody>
1669
+ <tr>
1670
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1671
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1672
+ </td>
1673
+ </tr>
1674
+ <tr>
1675
+ <td><p><span class="term"><em class="parameter"><code>single_line_mode</code></em> :</span></p></td>
1676
+ <td>
1677
+ <code class="literal">TRUE</code> if the label should be in single line mode</td>
1678
+ </tr>
1679
+ </tbody>
1680
+ </table></div>
1681
+ <p class="since">Since 2.6</p>
1682
+ </div>
1683
+ <hr>
1684
+ <div class="refsect2">
1685
+ <a name="gtk-label-set-angle"></a><h3>gtk_label_set_angle ()</h3>
1686
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_angle (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1687
+ <em class="parameter"><code><span class="type">gdouble</span> angle</code></em>);</pre>
1688
+ <p>
1689
+ Sets the angle of rotation for the label. An angle of 90 reads from
1690
+ from bottom to top, an angle of 270, from top to bottom. The angle
1691
+ setting for the label is ignored if the label is selectable,
1692
+ wrapped, or ellipsized.
1693
+ </p>
1694
+ <div class="variablelist"><table border="0" class="variablelist">
1695
+ <colgroup>
1696
+ <col align="left" valign="top">
1697
+ <col>
1698
+ </colgroup>
1699
+ <tbody>
1700
+ <tr>
1701
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1702
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1703
+ </td>
1704
+ </tr>
1705
+ <tr>
1706
+ <td><p><span class="term"><em class="parameter"><code>angle</code></em> :</span></p></td>
1707
+ <td>the angle that the baseline of the label makes with
1708
+ the horizontal, in degrees, measured counterclockwise</td>
1709
+ </tr>
1710
+ </tbody>
1711
+ </table></div>
1712
+ <p class="since">Since 2.6</p>
1713
+ </div>
1714
+ <hr>
1715
+ <div class="refsect2">
1716
+ <a name="gtk-label-get-current-uri"></a><h3>gtk_label_get_current_uri ()</h3>
1717
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> * gtk_label_get_current_uri (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1718
+ <p>
1719
+ Returns the URI for the currently active link in the label.
1720
+ The active link is the one under the mouse pointer or, in a
1721
+ selectable label, the link in which the text cursor is currently
1722
+ positioned.
1723
+ </p>
1724
+ <p>
1725
+ This function is intended for use in a <a class="link" href="GtkLabel.html#GtkLabel-activate-link" title='The "activate-link" signal'><span class="type">"activate-link"</span></a> handler
1726
+ or for use in a <a class="link" href="GtkWidget.html#GtkWidget-query-tooltip" title='The "query-tooltip" signal'><span class="type">"query-tooltip"</span></a> handler.
1727
+ </p>
1728
+ <div class="variablelist"><table border="0" class="variablelist">
1729
+ <colgroup>
1730
+ <col align="left" valign="top">
1731
+ <col>
1732
+ </colgroup>
1733
+ <tbody>
1734
+ <tr>
1735
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1736
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1737
+ </td>
1738
+ </tr>
1739
+ <tr>
1740
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1741
+ <td>the currently active URI. The string is owned by GTK+ and must
1742
+ not be freed or modified.</td>
1743
+ </tr>
1744
+ </tbody>
1745
+ </table></div>
1746
+ <p class="since">Since 2.18</p>
1747
+ </div>
1748
+ <hr>
1749
+ <div class="refsect2">
1750
+ <a name="gtk-label-set-track-visited-links"></a><h3>gtk_label_set_track_visited_links ()</h3>
1751
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_track_visited_links (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1752
+ <em class="parameter"><code><span class="type">gboolean</span> track_links</code></em>);</pre>
1753
+ <p>
1754
+ Sets whether the label should keep track of clicked
1755
+ links (and use a different color for them).
1756
+ </p>
1757
+ <div class="variablelist"><table border="0" class="variablelist">
1758
+ <colgroup>
1759
+ <col align="left" valign="top">
1760
+ <col>
1761
+ </colgroup>
1762
+ <tbody>
1763
+ <tr>
1764
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1765
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1766
+ </td>
1767
+ </tr>
1768
+ <tr>
1769
+ <td><p><span class="term"><em class="parameter"><code>track_links</code></em> :</span></p></td>
1770
+ <td>
1771
+ <code class="literal">TRUE</code> to track visited links</td>
1772
+ </tr>
1773
+ </tbody>
1774
+ </table></div>
1775
+ <p class="since">Since 2.18</p>
1776
+ </div>
1777
+ <hr>
1778
+ <div class="refsect2">
1779
+ <a name="gtk-label-get-track-visited-links"></a><h3>gtk_label_get_track_visited_links ()</h3>
1780
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_label_get_track_visited_links (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1781
+ <p>
1782
+ Returns whether the label is currently keeping track
1783
+ of clicked links.
1784
+ </p>
1785
+ <div class="variablelist"><table border="0" class="variablelist">
1786
+ <colgroup>
1787
+ <col align="left" valign="top">
1788
+ <col>
1789
+ </colgroup>
1790
+ <tbody>
1791
+ <tr>
1792
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1793
+ <td>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1794
+ </td>
1795
+ </tr>
1796
+ <tr>
1797
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1798
+ <td>
1799
+ <code class="literal">TRUE</code> if clicked links are remembered</td>
1800
+ </tr>
1801
+ </tbody>
1802
+ </table></div>
1803
+ <p class="since">Since 2.18</p>
1804
+ </div>
1805
+ </div>
1806
+ <div class="refsect1">
1807
+ <a name="GtkLabel.property-details"></a><h2>Property Details</h2>
1808
+ <div class="refsect2">
1809
+ <a name="GtkLabel--angle"></a><h3>The <code class="literal">"angle"</code> property</h3>
1810
+ <pre class="programlisting"> "angle" <span class="type">gdouble</span> : Read / Write</pre>
1811
+ <p>
1812
+ The angle that the baseline of the label makes with the horizontal,
1813
+ in degrees, measured counterclockwise. An angle of 90 reads from
1814
+ from bottom to top, an angle of 270, from top to bottom. Ignored
1815
+ if the label is selectable, wrapped, or ellipsized.
1816
+ </p>
1817
+ <p>Allowed values: [0,360]</p>
1818
+ <p>Default value: 0</p>
1819
+ <p class="since">Since 2.6</p>
1820
+ </div>
1821
+ <hr>
1822
+ <div class="refsect2">
1823
+ <a name="GtkLabel--attributes"></a><h3>The <code class="literal">"attributes"</code> property</h3>
1824
+ <pre class="programlisting"> "attributes" <span class="type">PangoAttrList</span>* : Read / Write</pre>
1825
+ <p>A list of style attributes to apply to the text of the label.</p>
1826
+ </div>
1827
+ <hr>
1828
+ <div class="refsect2">
1829
+ <a name="GtkLabel--cursor-position"></a><h3>The <code class="literal">"cursor-position"</code> property</h3>
1830
+ <pre class="programlisting"> "cursor-position" <span class="type">gint</span> : Read</pre>
1831
+ <p>The current position of the insertion cursor in chars.</p>
1832
+ <p>Allowed values: &gt;= 0</p>
1833
+ <p>Default value: 0</p>
1834
+ </div>
1835
+ <hr>
1836
+ <div class="refsect2">
1837
+ <a name="GtkLabel--ellipsize"></a><h3>The <code class="literal">"ellipsize"</code> property</h3>
1838
+ <pre class="programlisting"> "ellipsize" <span class="type">PangoEllipsizeMode</span> : Read / Write</pre>
1839
+ <p>
1840
+ The preferred place to ellipsize the string, if the label does
1841
+ not have enough room to display the entire string, specified as a
1842
+ <span class="type">PangoEllipsizeMode</span>.
1843
+ </p>
1844
+ <p>
1845
+ Note that setting this property to a value other than
1846
+ <code class="literal">PANGO_ELLIPSIZE_NONE</code> has the side-effect that the label requests
1847
+ only enough space to display the ellipsis "...". In particular, this
1848
+ means that ellipsizing labels do not work well in notebook tabs, unless
1849
+ the tab's <span class="type">"tab-expand"</span> property is set to <code class="literal">TRUE</code>. Other ways
1850
+ to set a label's width are <a class="link" href="GtkWidget.html#gtk-widget-set-size-request" title="gtk_widget_set_size_request ()"><code class="function">gtk_widget_set_size_request()</code></a> and
1851
+ <a class="link" href="GtkLabel.html#gtk-label-set-width-chars" title="gtk_label_set_width_chars ()"><code class="function">gtk_label_set_width_chars()</code></a>.
1852
+ </p>
1853
+ <p>Default value: PANGO_ELLIPSIZE_NONE</p>
1854
+ <p class="since">Since 2.6</p>
1855
+ </div>
1856
+ <hr>
1857
+ <div class="refsect2">
1858
+ <a name="GtkLabel--justify"></a><h3>The <code class="literal">"justify"</code> property</h3>
1859
+ <pre class="programlisting"> "justify" <a class="link" href="gtk3-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> : Read / Write</pre>
1860
+ <p>The alignment of the lines in the text of the label relative to each other. This does NOT affect the alignment of the label within its allocation. See GtkMisc::xalign for that.</p>
1861
+ <p>Default value: GTK_JUSTIFY_LEFT</p>
1862
+ </div>
1863
+ <hr>
1864
+ <div class="refsect2">
1865
+ <a name="GtkLabel--label"></a><h3>The <code class="literal">"label"</code> property</h3>
1866
+ <pre class="programlisting"> "label" <span class="type">gchar</span>* : Read / Write</pre>
1867
+ <p>The text of the label.</p>
1868
+ <p>Default value: ""</p>
1869
+ </div>
1870
+ <hr>
1871
+ <div class="refsect2">
1872
+ <a name="GtkLabel--max-width-chars"></a><h3>The <code class="literal">"max-width-chars"</code> property</h3>
1873
+ <pre class="programlisting"> "max-width-chars" <span class="type">gint</span> : Read / Write</pre>
1874
+ <p>
1875
+ The desired maximum width of the label, in characters. If this property
1876
+ is set to -1, the width will be calculated automatically.
1877
+ </p>
1878
+ <p>
1879
+ See the section on <a class="link" href="GtkLabel.html#label-text-layout" title="Text layout">text layout</a>
1880
+ for details of how <a class="link" href="GtkLabel.html#GtkLabel--width-chars" title='The "width-chars" property'><span class="type">"width-chars"</span></a> and <a class="link" href="GtkLabel.html#GtkLabel--max-width-chars" title='The "max-width-chars" property'><span class="type">"max-width-chars"</span></a>
1881
+ determine the width of ellipsized and wrapped labels.
1882
+ </p>
1883
+ <p>Allowed values: &gt;= G_MAXULONG</p>
1884
+ <p>Default value: -1</p>
1885
+ <p class="since">Since 2.6</p>
1886
+ </div>
1887
+ <hr>
1888
+ <div class="refsect2">
1889
+ <a name="GtkLabel--mnemonic-keyval"></a><h3>The <code class="literal">"mnemonic-keyval"</code> property</h3>
1890
+ <pre class="programlisting"> "mnemonic-keyval" <span class="type">guint</span> : Read</pre>
1891
+ <p>The mnemonic accelerator key for this label.</p>
1892
+ <p>Default value: 16777215</p>
1893
+ </div>
1894
+ <hr>
1895
+ <div class="refsect2">
1896
+ <a name="GtkLabel--mnemonic-widget"></a><h3>The <code class="literal">"mnemonic-widget"</code> property</h3>
1897
+ <pre class="programlisting"> "mnemonic-widget" <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>* : Read / Write</pre>
1898
+ <p>The widget to be activated when the label's mnemonic key is pressed.</p>
1899
+ </div>
1900
+ <hr>
1901
+ <div class="refsect2">
1902
+ <a name="GtkLabel--pattern"></a><h3>The <code class="literal">"pattern"</code> property</h3>
1903
+ <pre class="programlisting"> "pattern" <span class="type">gchar</span>* : Write</pre>
1904
+ <p>A string with _ characters in positions correspond to characters in the text to underline.</p>
1905
+ <p>Default value: NULL</p>
1906
+ </div>
1907
+ <hr>
1908
+ <div class="refsect2">
1909
+ <a name="GtkLabel--selectable"></a><h3>The <code class="literal">"selectable"</code> property</h3>
1910
+ <pre class="programlisting"> "selectable" <span class="type">gboolean</span> : Read / Write</pre>
1911
+ <p>Whether the label text can be selected with the mouse.</p>
1912
+ <p>Default value: FALSE</p>
1913
+ </div>
1914
+ <hr>
1915
+ <div class="refsect2">
1916
+ <a name="GtkLabel--selection-bound"></a><h3>The <code class="literal">"selection-bound"</code> property</h3>
1917
+ <pre class="programlisting"> "selection-bound" <span class="type">gint</span> : Read</pre>
1918
+ <p>The position of the opposite end of the selection from the cursor in chars.</p>
1919
+ <p>Allowed values: &gt;= 0</p>
1920
+ <p>Default value: 0</p>
1921
+ </div>
1922
+ <hr>
1923
+ <div class="refsect2">
1924
+ <a name="GtkLabel--single-line-mode"></a><h3>The <code class="literal">"single-line-mode"</code> property</h3>
1925
+ <pre class="programlisting"> "single-line-mode" <span class="type">gboolean</span> : Read / Write</pre>
1926
+ <p>
1927
+ Whether the label is in single line mode. In single line mode,
1928
+ the height of the label does not depend on the actual text, it
1929
+ is always set to ascent + descent of the font. This can be an
1930
+ advantage in situations where resizing the label because of text
1931
+ changes would be distracting, e.g. in a statusbar.
1932
+ </p>
1933
+ <p>Default value: FALSE</p>
1934
+ <p class="since">Since 2.6</p>
1935
+ </div>
1936
+ <hr>
1937
+ <div class="refsect2">
1938
+ <a name="GtkLabel--track-visited-links"></a><h3>The <code class="literal">"track-visited-links"</code> property</h3>
1939
+ <pre class="programlisting"> "track-visited-links" <span class="type">gboolean</span> : Read / Write</pre>
1940
+ <p>
1941
+ Set this property to <code class="literal">TRUE</code> to make the label track which links
1942
+ have been clicked. It will then apply the ::visited-link-color
1943
+ color, instead of ::link-color.
1944
+ </p>
1945
+ <p>Default value: TRUE</p>
1946
+ <p class="since">Since 2.18</p>
1947
+ </div>
1948
+ <hr>
1949
+ <div class="refsect2">
1950
+ <a name="GtkLabel--use-markup"></a><h3>The <code class="literal">"use-markup"</code> property</h3>
1951
+ <pre class="programlisting"> "use-markup" <span class="type">gboolean</span> : Read / Write</pre>
1952
+ <p>The text of the label includes XML markup. See pango_parse_markup().</p>
1953
+ <p>Default value: FALSE</p>
1954
+ </div>
1955
+ <hr>
1956
+ <div class="refsect2">
1957
+ <a name="GtkLabel--use-underline"></a><h3>The <code class="literal">"use-underline"</code> property</h3>
1958
+ <pre class="programlisting"> "use-underline" <span class="type">gboolean</span> : Read / Write</pre>
1959
+ <p>If set, an underline in the text indicates the next character should be used for the mnemonic accelerator key.</p>
1960
+ <p>Default value: FALSE</p>
1961
+ </div>
1962
+ <hr>
1963
+ <div class="refsect2">
1964
+ <a name="GtkLabel--width-chars"></a><h3>The <code class="literal">"width-chars"</code> property</h3>
1965
+ <pre class="programlisting"> "width-chars" <span class="type">gint</span> : Read / Write</pre>
1966
+ <p>
1967
+ The desired width of the label, in characters. If this property is set to
1968
+ -1, the width will be calculated automatically.
1969
+ </p>
1970
+ <p>
1971
+ See the section on <a class="link" href="GtkLabel.html#label-text-layout" title="Text layout">text layout</a>
1972
+ for details of how <a class="link" href="GtkLabel.html#GtkLabel--width-chars" title='The "width-chars" property'><span class="type">"width-chars"</span></a> and <a class="link" href="GtkLabel.html#GtkLabel--max-width-chars" title='The "max-width-chars" property'><span class="type">"max-width-chars"</span></a>
1973
+ determine the width of ellipsized and wrapped labels.
1974
+ </p>
1975
+ <p>Allowed values: &gt;= G_MAXULONG</p>
1976
+ <p>Default value: -1</p>
1977
+ <p class="since">Since 2.6</p>
1978
+ </div>
1979
+ <hr>
1980
+ <div class="refsect2">
1981
+ <a name="GtkLabel--wrap"></a><h3>The <code class="literal">"wrap"</code> property</h3>
1982
+ <pre class="programlisting"> "wrap" <span class="type">gboolean</span> : Read / Write</pre>
1983
+ <p>If set, wrap lines if the text becomes too wide.</p>
1984
+ <p>Default value: FALSE</p>
1985
+ </div>
1986
+ <hr>
1987
+ <div class="refsect2">
1988
+ <a name="GtkLabel--wrap-mode"></a><h3>The <code class="literal">"wrap-mode"</code> property</h3>
1989
+ <pre class="programlisting"> "wrap-mode" <span class="type">PangoWrapMode</span> : Read / Write</pre>
1990
+ <p>
1991
+ If line wrapping is on (see the <a class="link" href="GtkLabel.html#GtkLabel--wrap" title='The "wrap" property'><span class="type">"wrap"</span></a> property) this controls
1992
+ how the line wrapping is done. The default is <code class="literal">PANGO_WRAP_WORD</code>, which
1993
+ means wrap on word boundaries.
1994
+ </p>
1995
+ <p>Default value: PANGO_WRAP_WORD</p>
1996
+ <p class="since">Since 2.10</p>
1997
+ </div>
1998
+ </div>
1999
+ <div class="refsect1">
2000
+ <a name="GtkLabel.signal-details"></a><h2>Signal Details</h2>
2001
+ <div class="refsect2">
2002
+ <a name="GtkLabel-activate-current-link"></a><h3>The <code class="literal">"activate-current-link"</code> signal</h3>
2003
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label,
2004
+ <span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
2005
+ <p>
2006
+ A <a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
2007
+ which gets emitted when the user activates a link in the label.
2008
+ </p>
2009
+ <p>
2010
+ Applications may also emit the signal with <code class="function">g_signal_emit_by_name()</code>
2011
+ if they need to control activation of URIs programmatically.
2012
+ </p>
2013
+ <p>
2014
+ The default bindings for this signal are all forms of the Enter key.
2015
+ </p>
2016
+ <div class="variablelist"><table border="0" class="variablelist">
2017
+ <colgroup>
2018
+ <col align="left" valign="top">
2019
+ <col>
2020
+ </colgroup>
2021
+ <tbody>
2022
+ <tr>
2023
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
2024
+ <td>The label on which the signal was emitted</td>
2025
+ </tr>
2026
+ <tr>
2027
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2028
+ <td>user data set when the signal handler was connected.</td>
2029
+ </tr>
2030
+ </tbody>
2031
+ </table></div>
2032
+ <p class="since">Since 2.18</p>
2033
+ </div>
2034
+ <hr>
2035
+ <div class="refsect2">
2036
+ <a name="GtkLabel-activate-link"></a><h3>The <code class="literal">"activate-link"</code> signal</h3>
2037
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> user_function (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label,
2038
+ <span class="type">gchar</span> *uri,
2039
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
2040
+ <p>
2041
+ The signal which gets emitted to activate a URI.
2042
+ Applications may connect to it to override the default behaviour,
2043
+ which is to call <a class="link" href="gtk3-Filesystem-utilities.html#gtk-show-uri" title="gtk_show_uri ()"><code class="function">gtk_show_uri()</code></a>.
2044
+ </p>
2045
+ <div class="variablelist"><table border="0" class="variablelist">
2046
+ <colgroup>
2047
+ <col align="left" valign="top">
2048
+ <col>
2049
+ </colgroup>
2050
+ <tbody>
2051
+ <tr>
2052
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
2053
+ <td>The label on which the signal was emitted</td>
2054
+ </tr>
2055
+ <tr>
2056
+ <td><p><span class="term"><em class="parameter"><code>uri</code></em> :</span></p></td>
2057
+ <td>the URI that is activated</td>
2058
+ </tr>
2059
+ <tr>
2060
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2061
+ <td>user data set when the signal handler was connected.</td>
2062
+ </tr>
2063
+ <tr>
2064
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2065
+ <td>
2066
+ <code class="literal">TRUE</code> if the link has been activated</td>
2067
+ </tr>
2068
+ </tbody>
2069
+ </table></div>
2070
+ <p class="since">Since 2.18</p>
2071
+ </div>
2072
+ <hr>
2073
+ <div class="refsect2">
2074
+ <a name="GtkLabel-copy-clipboard"></a><h3>The <code class="literal">"copy-clipboard"</code> signal</h3>
2075
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label,
2076
+ <span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
2077
+ <p>
2078
+ The ::copy-clipboard signal is a
2079
+ <a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
2080
+ which gets emitted to copy the selection to the clipboard.
2081
+ </p>
2082
+ <p>
2083
+ The default binding for this signal is Ctrl-c.
2084
+ </p>
2085
+ <div class="variablelist"><table border="0" class="variablelist">
2086
+ <colgroup>
2087
+ <col align="left" valign="top">
2088
+ <col>
2089
+ </colgroup>
2090
+ <tbody>
2091
+ <tr>
2092
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
2093
+ <td>the object which received the signal</td>
2094
+ </tr>
2095
+ <tr>
2096
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2097
+ <td>user data set when the signal handler was connected.</td>
2098
+ </tr>
2099
+ </tbody>
2100
+ </table></div>
2101
+ </div>
2102
+ <hr>
2103
+ <div class="refsect2">
2104
+ <a name="GtkLabel-move-cursor"></a><h3>The <code class="literal">"move-cursor"</code> signal</h3>
2105
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *entry,
2106
+ <a class="link" href="gtk3-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a> step,
2107
+ <span class="type">gint</span> count,
2108
+ <span class="type">gboolean</span> extend_selection,
2109
+ <span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
2110
+ <p>
2111
+ The ::move-cursor signal is a
2112
+ <a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
2113
+ which gets emitted when the user initiates a cursor movement.
2114
+ If the cursor is not visible in <em class="parameter"><code>entry</code></em>, this signal causes
2115
+ the viewport to be moved instead.
2116
+ </p>
2117
+ <p>
2118
+ Applications should not connect to it, but may emit it with
2119
+ <code class="function">g_signal_emit_by_name()</code> if they need to control the cursor
2120
+ programmatically.
2121
+ </p>
2122
+ <p>
2123
+ The default bindings for this signal come in two variants,
2124
+ the variant with the Shift modifier extends the selection,
2125
+ the variant without the Shift modifer does not.
2126
+ There are too many key combinations to list them all here.
2127
+ </p>
2128
+ <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
2129
+ <li class="listitem">Arrow keys move by individual characters/lines</li>
2130
+ <li class="listitem">Ctrl-arrow key combinations move by words/paragraphs</li>
2131
+ <li class="listitem">Home/End keys move to the ends of the buffer</li>
2132
+ </ul></div>
2133
+ <p>
2134
+ </p>
2135
+ <div class="variablelist"><table border="0" class="variablelist">
2136
+ <colgroup>
2137
+ <col align="left" valign="top">
2138
+ <col>
2139
+ </colgroup>
2140
+ <tbody>
2141
+ <tr>
2142
+ <td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
2143
+ <td>the object which received the signal</td>
2144
+ </tr>
2145
+ <tr>
2146
+ <td><p><span class="term"><em class="parameter"><code>step</code></em> :</span></p></td>
2147
+ <td>the granularity of the move, as a <a class="link" href="gtk3-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a>
2148
+ </td>
2149
+ </tr>
2150
+ <tr>
2151
+ <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
2152
+ <td>the number of <em class="parameter"><code>step</code></em> units to move</td>
2153
+ </tr>
2154
+ <tr>
2155
+ <td><p><span class="term"><em class="parameter"><code>extend_selection</code></em> :</span></p></td>
2156
+ <td>
2157
+ <code class="literal">TRUE</code> if the move should extend the selection</td>
2158
+ </tr>
2159
+ <tr>
2160
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2161
+ <td>user data set when the signal handler was connected.</td>
2162
+ </tr>
2163
+ </tbody>
2164
+ </table></div>
2165
+ </div>
2166
+ <hr>
2167
+ <div class="refsect2">
2168
+ <a name="GtkLabel-populate-popup"></a><h3>The <code class="literal">"populate-popup"</code> signal</h3>
2169
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label,
2170
+ <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu,
2171
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
2172
+ <p>
2173
+ The ::populate-popup signal gets emitted before showing the
2174
+ context menu of the label. Note that only selectable labels
2175
+ have context menus.
2176
+ </p>
2177
+ <p>
2178
+ If you need to add items to the context menu, connect
2179
+ to this signal and append your menuitems to the <em class="parameter"><code>menu</code></em>.
2180
+ </p>
2181
+ <div class="variablelist"><table border="0" class="variablelist">
2182
+ <colgroup>
2183
+ <col align="left" valign="top">
2184
+ <col>
2185
+ </colgroup>
2186
+ <tbody>
2187
+ <tr>
2188
+ <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
2189
+ <td>The label on which the signal is emitted</td>
2190
+ </tr>
2191
+ <tr>
2192
+ <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
2193
+ <td>the menu that is being populated</td>
2194
+ </tr>
2195
+ <tr>
2196
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2197
+ <td>user data set when the signal handler was connected.</td>
2198
+ </tr>
2199
+ </tbody>
2200
+ </table></div>
2201
+ </div>
2202
+ </div>
2203
+ </div>
2204
+ <div class="footer">
2205
+ <hr>
2206
+ Generated by GTK-Doc V1.18.1</div>
2207
+ </body>
2208
+ </html>