gdk3 1.2.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1337) hide show
  1. data/Rakefile +53 -0
  2. data/ext/gdk3/depend +11 -0
  3. data/ext/gdk3/extconf.rb +127 -0
  4. data/ext/gdk3/gdk3.def +12 -0
  5. data/ext/gdk3/init.c +35 -0
  6. data/ext/gdk3/rbgdk.c +540 -0
  7. data/ext/gdk3/rbgdk3.h +71 -0
  8. data/ext/gdk3/rbgdk3conversions.h +118 -0
  9. data/ext/gdk3/rbgdk3private.h +93 -0
  10. data/ext/gdk3/rbgdkatom.c +122 -0
  11. data/ext/gdk3/rbgdkcairo.c +95 -0
  12. data/ext/gdk3/rbgdkcolor.c +137 -0
  13. data/ext/gdk3/rbgdkconst.c +33 -0
  14. data/ext/gdk3/rbgdkcursor.c +99 -0
  15. data/ext/gdk3/rbgdkdevice.c +197 -0
  16. data/ext/gdk3/rbgdkdisplay.c +482 -0
  17. data/ext/gdk3/rbgdkdisplaymanager.c +55 -0
  18. data/ext/gdk3/rbgdkdragcontext.c +191 -0
  19. data/ext/gdk3/rbgdkdraw.c +520 -0
  20. data/ext/gdk3/rbgdkevent.c +926 -0
  21. data/ext/gdk3/rbgdkgeometry.c +252 -0
  22. data/ext/gdk3/rbgdkkeymap.c +151 -0
  23. data/ext/gdk3/rbgdkkeyval.c +108 -0
  24. data/ext/gdk3/rbgdkpango.c +197 -0
  25. data/ext/gdk3/rbgdkpangorenderer.c +144 -0
  26. data/ext/gdk3/rbgdkpixbuf.c +176 -0
  27. data/ext/gdk3/rbgdkproperty.c +305 -0
  28. data/ext/gdk3/rbgdkrectangle.c +140 -0
  29. data/ext/gdk3/rbgdkrgb.c +199 -0
  30. data/ext/gdk3/rbgdkrgba.c +142 -0
  31. data/ext/gdk3/rbgdkscreen.c +443 -0
  32. data/ext/gdk3/rbgdkselection.c +146 -0
  33. data/ext/gdk3/rbgdkthreads.c +77 -0
  34. data/ext/gdk3/rbgdktimecoord.c +133 -0
  35. data/ext/gdk3/rbgdkvisual.c +251 -0
  36. data/ext/gdk3/rbgdkwindow.c +1044 -0
  37. data/ext/gdk3/rbgdkwindowattr.c +191 -0
  38. data/ext/gdk3/rbgdkx11.c +102 -0
  39. data/ext/gdk3/rbgdkx11x11window.c +66 -0
  40. data/extconf.rb +49 -0
  41. data/lib/1.8/gdk3.so +0 -0
  42. data/lib/1.9/gdk3.so +0 -0
  43. data/lib/gdk3.rb +3 -0
  44. data/lib/gdk3/base.rb +50 -0
  45. data/lib/gdk3/deprecated.rb +152 -0
  46. data/vendor/local/bin/gtk-launch.exe +0 -0
  47. data/vendor/local/bin/gtk-query-immodules-3.0.exe +0 -0
  48. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  49. data/vendor/local/bin/gtk-update-icon-cache.exe.manifest +17 -0
  50. data/vendor/local/bin/gtk3-demo-application.exe +0 -0
  51. data/vendor/local/bin/gtk3-demo.exe +0 -0
  52. data/vendor/local/bin/gtk3-widget-factory.exe +0 -0
  53. data/vendor/local/bin/libgailutil-3-0.dll +0 -0
  54. data/vendor/local/bin/libgdk-3-0.dll +0 -0
  55. data/vendor/local/bin/libgtk-3-0.dll +0 -0
  56. data/vendor/local/etc/gtk-3.0/im-multipress.conf +22 -0
  57. data/vendor/local/etc/gtk-3.0/settings.ini +2 -0
  58. data/vendor/local/include/gail-3.0/libgail-util/gail-util.h +2 -0
  59. data/vendor/local/include/gail-3.0/libgail-util/gailmisc.h +76 -0
  60. data/vendor/local/include/gail-3.0/libgail-util/gailtextutil.h +85 -0
  61. data/vendor/local/include/gtk-3.0/gdk/gdk.h +61 -0
  62. data/vendor/local/include/gtk-3.0/gdk/gdkapplaunchcontext.h +60 -0
  63. data/vendor/local/include/gtk-3.0/gdk/gdkcairo.h +63 -0
  64. data/vendor/local/include/gtk-3.0/gdk/gdkcolor.h +77 -0
  65. data/vendor/local/include/gtk-3.0/gdk/gdkconfig.h +22 -0
  66. data/vendor/local/include/gtk-3.0/gdk/gdkcursor.h +240 -0
  67. data/vendor/local/include/gtk-3.0/gdk/gdkdevice.h +237 -0
  68. data/vendor/local/include/gtk-3.0/gdk/gdkdevicemanager.h +44 -0
  69. data/vendor/local/include/gtk-3.0/gdk/gdkdisplay.h +141 -0
  70. data/vendor/local/include/gtk-3.0/gdk/gdkdisplaymanager.h +55 -0
  71. data/vendor/local/include/gtk-3.0/gdk/gdkdnd.h +153 -0
  72. data/vendor/local/include/gtk-3.0/gdk/gdkenumtypes.h +105 -0
  73. data/vendor/local/include/gtk-3.0/gdk/gdkevents.h +1277 -0
  74. data/vendor/local/include/gtk-3.0/gdk/gdkkeys.h +142 -0
  75. data/vendor/local/include/gtk-3.0/gdk/gdkkeysyms-compat.h +2300 -0
  76. data/vendor/local/include/gtk-3.0/gdk/gdkkeysyms.h +2309 -0
  77. data/vendor/local/include/gtk-3.0/gdk/gdkmain.h +122 -0
  78. data/vendor/local/include/gtk-3.0/gdk/gdkpango.h +56 -0
  79. data/vendor/local/include/gtk-3.0/gdk/gdkpixbuf.h +52 -0
  80. data/vendor/local/include/gtk-3.0/gdk/gdkprivate.h +40 -0
  81. data/vendor/local/include/gtk-3.0/gdk/gdkproperty.h +91 -0
  82. data/vendor/local/include/gtk-3.0/gdk/gdkrectangle.h +51 -0
  83. data/vendor/local/include/gtk-3.0/gdk/gdkrgba.h +62 -0
  84. data/vendor/local/include/gtk-3.0/gdk/gdkscreen.h +100 -0
  85. data/vendor/local/include/gtk-3.0/gdk/gdkselection.h +208 -0
  86. data/vendor/local/include/gtk-3.0/gdk/gdktestutils.h +58 -0
  87. data/vendor/local/include/gtk-3.0/gdk/gdkthreads.h +105 -0
  88. data/vendor/local/include/gtk-3.0/gdk/gdktypes.h +421 -0
  89. data/vendor/local/include/gtk-3.0/gdk/gdkversionmacros.h +220 -0
  90. data/vendor/local/include/gtk-3.0/gdk/gdkvisual.h +123 -0
  91. data/vendor/local/include/gtk-3.0/gdk/gdkwin32.h +105 -0
  92. data/vendor/local/include/gtk-3.0/gdk/gdkwindow.h +884 -0
  93. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32cursor.h +54 -0
  94. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32display.h +54 -0
  95. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32displaymanager.h +47 -0
  96. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32dnd.h +47 -0
  97. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32keys.h +47 -0
  98. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32screen.h +54 -0
  99. data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32window.h +54 -0
  100. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h +157 -0
  101. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h +80 -0
  102. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkfontsel.h +165 -0
  103. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h +100 -0
  104. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhbbox.h +65 -0
  105. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhbox.h +67 -0
  106. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhpaned.h +64 -0
  107. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhscale.h +68 -0
  108. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h +64 -0
  109. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhseparator.h +64 -0
  110. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhsv.h +106 -0
  111. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkrc.h +322 -0
  112. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkstyle.h +703 -0
  113. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtktable.h +162 -0
  114. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h +74 -0
  115. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvbbox.h +64 -0
  116. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvbox.h +65 -0
  117. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvpaned.h +64 -0
  118. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvscale.h +74 -0
  119. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h +70 -0
  120. data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvseparator.h +70 -0
  121. data/vendor/local/include/gtk-3.0/gtk/gtk.h +253 -0
  122. data/vendor/local/include/gtk-3.0/gtk/gtkaboutdialog.h +169 -0
  123. data/vendor/local/include/gtk-3.0/gtk/gtkaccelgroup.h +209 -0
  124. data/vendor/local/include/gtk-3.0/gtk/gtkaccellabel.h +105 -0
  125. data/vendor/local/include/gtk-3.0/gtk/gtkaccelmap.h +93 -0
  126. data/vendor/local/include/gtk-3.0/gtk/gtkaccessible.h +75 -0
  127. data/vendor/local/include/gtk-3.0/gtk/gtkaction.h +166 -0
  128. data/vendor/local/include/gtk-3.0/gtk/gtkactionable.h +77 -0
  129. data/vendor/local/include/gtk-3.0/gtk/gtkactiongroup.h +238 -0
  130. data/vendor/local/include/gtk-3.0/gtk/gtkactivatable.h +85 -0
  131. data/vendor/local/include/gtk-3.0/gtk/gtkadjustment.h +121 -0
  132. data/vendor/local/include/gtk-3.0/gtk/gtkalignment.h +96 -0
  133. data/vendor/local/include/gtk-3.0/gtk/gtkappchooser.h +49 -0
  134. data/vendor/local/include/gtk-3.0/gtk/gtkappchooserbutton.h +89 -0
  135. data/vendor/local/include/gtk-3.0/gtk/gtkappchooserdialog.h +78 -0
  136. data/vendor/local/include/gtk-3.0/gtk/gtkappchooserwidget.h +103 -0
  137. data/vendor/local/include/gtk-3.0/gtk/gtkapplication.h +128 -0
  138. data/vendor/local/include/gtk-3.0/gtk/gtkapplicationwindow.h +75 -0
  139. data/vendor/local/include/gtk-3.0/gtk/gtkarrow.h +81 -0
  140. data/vendor/local/include/gtk-3.0/gtk/gtkaspectframe.h +84 -0
  141. data/vendor/local/include/gtk-3.0/gtk/gtkassistant.h +188 -0
  142. data/vendor/local/include/gtk-3.0/gtk/gtkbbox.h +90 -0
  143. data/vendor/local/include/gtk-3.0/gtk/gtkbin.h +79 -0
  144. data/vendor/local/include/gtk-3.0/gtk/gtkbindings.h +189 -0
  145. data/vendor/local/include/gtk-3.0/gtk/gtkborder.h +66 -0
  146. data/vendor/local/include/gtk-3.0/gtk/gtkbox.h +112 -0
  147. data/vendor/local/include/gtk-3.0/gtk/gtkbuildable.h +173 -0
  148. data/vendor/local/include/gtk-3.0/gtk/gtkbuilder.h +179 -0
  149. data/vendor/local/include/gtk-3.0/gtk/gtkbutton.h +130 -0
  150. data/vendor/local/include/gtk-3.0/gtk/gtkcalendar.h +169 -0
  151. data/vendor/local/include/gtk-3.0/gtk/gtkcellarea.h +482 -0
  152. data/vendor/local/include/gtk-3.0/gtk/gtkcellareabox.h +87 -0
  153. data/vendor/local/include/gtk-3.0/gtk/gtkcellareacontext.h +135 -0
  154. data/vendor/local/include/gtk-3.0/gtk/gtkcelleditable.h +62 -0
  155. data/vendor/local/include/gtk-3.0/gtk/gtkcelllayout.h +135 -0
  156. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderer.h +280 -0
  157. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendereraccel.h +84 -0
  158. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderercombo.h +65 -0
  159. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h +68 -0
  160. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererprogress.h +72 -0
  161. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererspin.h +64 -0
  162. data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererspinner.h +67 -0
  163. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderertext.h +75 -0
  164. data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderertoggle.h +82 -0
  165. data/vendor/local/include/gtk-3.0/gtk/gtkcellview.h +95 -0
  166. data/vendor/local/include/gtk-3.0/gtk/gtkcheckbutton.h +80 -0
  167. data/vendor/local/include/gtk-3.0/gtk/gtkcheckmenuitem.h +98 -0
  168. data/vendor/local/include/gtk-3.0/gtk/gtkclipboard.h +237 -0
  169. data/vendor/local/include/gtk-3.0/gtk/gtkcolorbutton.h +108 -0
  170. data/vendor/local/include/gtk-3.0/gtk/gtkcolorchooser.h +87 -0
  171. data/vendor/local/include/gtk-3.0/gtk/gtkcolorchooserdialog.h +68 -0
  172. data/vendor/local/include/gtk-3.0/gtk/gtkcolorchooserwidget.h +71 -0
  173. data/vendor/local/include/gtk-3.0/gtk/gtkcolorutils.h +48 -0
  174. data/vendor/local/include/gtk-3.0/gtk/gtkcombobox.h +147 -0
  175. data/vendor/local/include/gtk-3.0/gtk/gtkcomboboxtext.h +88 -0
  176. data/vendor/local/include/gtk-3.0/gtk/gtkcontainer.h +227 -0
  177. data/vendor/local/include/gtk-3.0/gtk/gtkcssprovider.h +96 -0
  178. data/vendor/local/include/gtk-3.0/gtk/gtkcsssection.h +97 -0
  179. data/vendor/local/include/gtk-3.0/gtk/gtkdebug.h +70 -0
  180. data/vendor/local/include/gtk-3.0/gtk/gtkdialog.h +181 -0
  181. data/vendor/local/include/gtk-3.0/gtk/gtkdnd.h +212 -0
  182. data/vendor/local/include/gtk-3.0/gtk/gtkdrawingarea.h +74 -0
  183. data/vendor/local/include/gtk-3.0/gtk/gtkeditable.h +113 -0
  184. data/vendor/local/include/gtk-3.0/gtk/gtkentry.h +304 -0
  185. data/vendor/local/include/gtk-3.0/gtk/gtkentrybuffer.h +133 -0
  186. data/vendor/local/include/gtk-3.0/gtk/gtkentrycompletion.h +154 -0
  187. data/vendor/local/include/gtk-3.0/gtk/gtkenums.h +1041 -0
  188. data/vendor/local/include/gtk-3.0/gtk/gtkeventbox.h +79 -0
  189. data/vendor/local/include/gtk-3.0/gtk/gtkexpander.h +107 -0
  190. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooser.h +247 -0
  191. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserbutton.h +81 -0
  192. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserdialog.h +69 -0
  193. data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserwidget.h +65 -0
  194. data/vendor/local/include/gtk-3.0/gtk/gtkfilefilter.h +116 -0
  195. data/vendor/local/include/gtk-3.0/gtk/gtkfixed.h +91 -0
  196. data/vendor/local/include/gtk-3.0/gtk/gtkfontbutton.h +99 -0
  197. data/vendor/local/include/gtk-3.0/gtk/gtkfontchooser.h +118 -0
  198. data/vendor/local/include/gtk-3.0/gtk/gtkfontchooserdialog.h +67 -0
  199. data/vendor/local/include/gtk-3.0/gtk/gtkfontchooserwidget.h +71 -0
  200. data/vendor/local/include/gtk-3.0/gtk/gtkframe.h +96 -0
  201. data/vendor/local/include/gtk-3.0/gtk/gtkgradient.h +66 -0
  202. data/vendor/local/include/gtk-3.0/gtk/gtkgrid.h +110 -0
  203. data/vendor/local/include/gtk-3.0/gtk/gtkiconfactory.h +183 -0
  204. data/vendor/local/include/gtk-3.0/gtk/gtkicontheme.h +233 -0
  205. data/vendor/local/include/gtk-3.0/gtk/gtkiconview.h +266 -0
  206. data/vendor/local/include/gtk-3.0/gtk/gtkimage.h +168 -0
  207. data/vendor/local/include/gtk-3.0/gtk/gtkimagemenuitem.h +90 -0
  208. data/vendor/local/include/gtk-3.0/gtk/gtkimcontext.h +126 -0
  209. data/vendor/local/include/gtk-3.0/gtk/gtkimcontextinfo.h +44 -0
  210. data/vendor/local/include/gtk-3.0/gtk/gtkimcontextsimple.h +74 -0
  211. data/vendor/local/include/gtk-3.0/gtk/gtkimmodule.h +34 -0
  212. data/vendor/local/include/gtk-3.0/gtk/gtkimmulticontext.h +73 -0
  213. data/vendor/local/include/gtk-3.0/gtk/gtkinfobar.h +116 -0
  214. data/vendor/local/include/gtk-3.0/gtk/gtkinvisible.h +77 -0
  215. data/vendor/local/include/gtk-3.0/gtk/gtklabel.h +176 -0
  216. data/vendor/local/include/gtk-3.0/gtk/gtklayout.h +108 -0
  217. data/vendor/local/include/gtk-3.0/gtk/gtklevelbar.h +127 -0
  218. data/vendor/local/include/gtk-3.0/gtk/gtklinkbutton.h +100 -0
  219. data/vendor/local/include/gtk-3.0/gtk/gtkliststore.h +133 -0
  220. data/vendor/local/include/gtk-3.0/gtk/gtklockbutton.h +72 -0
  221. data/vendor/local/include/gtk-3.0/gtk/gtkmain.h +172 -0
  222. data/vendor/local/include/gtk-3.0/gtk/gtkmenu.h +215 -0
  223. data/vendor/local/include/gtk-3.0/gtk/gtkmenubar.h +90 -0
  224. data/vendor/local/include/gtk-3.0/gtk/gtkmenubutton.h +94 -0
  225. data/vendor/local/include/gtk-3.0/gtk/gtkmenuitem.h +128 -0
  226. data/vendor/local/include/gtk-3.0/gtk/gtkmenushell.h +123 -0
  227. data/vendor/local/include/gtk-3.0/gtk/gtkmenutoolbutton.h +79 -0
  228. data/vendor/local/include/gtk-3.0/gtk/gtkmessagedialog.h +132 -0
  229. data/vendor/local/include/gtk-3.0/gtk/gtkmisc.h +89 -0
  230. data/vendor/local/include/gtk-3.0/gtk/gtkmodules.h +58 -0
  231. data/vendor/local/include/gtk-3.0/gtk/gtkmountoperation.h +81 -0
  232. data/vendor/local/include/gtk-3.0/gtk/gtknotebook.h +250 -0
  233. data/vendor/local/include/gtk-3.0/gtk/gtknumerableicon.h +87 -0
  234. data/vendor/local/include/gtk-3.0/gtk/gtkoffscreenwindow.h +64 -0
  235. data/vendor/local/include/gtk-3.0/gtk/gtkorientable.h +58 -0
  236. data/vendor/local/include/gtk-3.0/gtk/gtkoverlay.h +79 -0
  237. data/vendor/local/include/gtk-3.0/gtk/gtkpagesetup.h +106 -0
  238. data/vendor/local/include/gtk-3.0/gtk/gtkpaned.h +105 -0
  239. data/vendor/local/include/gtk-3.0/gtk/gtkpapersize.h +140 -0
  240. data/vendor/local/include/gtk-3.0/gtk/gtkplug.h +97 -0
  241. data/vendor/local/include/gtk-3.0/gtk/gtkprintcontext.h +69 -0
  242. data/vendor/local/include/gtk-3.0/gtk/gtkprintoperation.h +280 -0
  243. data/vendor/local/include/gtk-3.0/gtk/gtkprintoperationpreview.h +79 -0
  244. data/vendor/local/include/gtk-3.0/gtk/gtkprintsettings.h +248 -0
  245. data/vendor/local/include/gtk-3.0/gtk/gtkprogressbar.h +97 -0
  246. data/vendor/local/include/gtk-3.0/gtk/gtkradioaction.h +89 -0
  247. data/vendor/local/include/gtk-3.0/gtk/gtkradiobutton.h +92 -0
  248. data/vendor/local/include/gtk-3.0/gtk/gtkradiomenuitem.h +91 -0
  249. data/vendor/local/include/gtk-3.0/gtk/gtkradiotoolbutton.h +72 -0
  250. data/vendor/local/include/gtk-3.0/gtk/gtkrange.h +167 -0
  251. data/vendor/local/include/gtk-3.0/gtk/gtkrecentaction.h +78 -0
  252. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooser.h +203 -0
  253. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooserdialog.h +78 -0
  254. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchoosermenu.h +72 -0
  255. data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooserwidget.h +68 -0
  256. data/vendor/local/include/gtk-3.0/gtk/gtkrecentfilter.h +125 -0
  257. data/vendor/local/include/gtk-3.0/gtk/gtkrecentmanager.h +234 -0
  258. data/vendor/local/include/gtk-3.0/gtk/gtkscale.h +114 -0
  259. data/vendor/local/include/gtk-3.0/gtk/gtkscalebutton.h +99 -0
  260. data/vendor/local/include/gtk-3.0/gtk/gtkscrollable.h +60 -0
  261. data/vendor/local/include/gtk-3.0/gtk/gtkscrollbar.h +72 -0
  262. data/vendor/local/include/gtk-3.0/gtk/gtkscrolledwindow.h +136 -0
  263. data/vendor/local/include/gtk-3.0/gtk/gtksearchentry.h +73 -0
  264. data/vendor/local/include/gtk-3.0/gtk/gtkselection.h +192 -0
  265. data/vendor/local/include/gtk-3.0/gtk/gtkseparator.h +75 -0
  266. data/vendor/local/include/gtk-3.0/gtk/gtkseparatormenuitem.h +72 -0
  267. data/vendor/local/include/gtk-3.0/gtk/gtkseparatortoolitem.h +70 -0
  268. data/vendor/local/include/gtk-3.0/gtk/gtksettings.h +127 -0
  269. data/vendor/local/include/gtk-3.0/gtk/gtkshow.h +37 -0
  270. data/vendor/local/include/gtk-3.0/gtk/gtksizegroup.h +95 -0
  271. data/vendor/local/include/gtk-3.0/gtk/gtksizerequest.h +57 -0
  272. data/vendor/local/include/gtk-3.0/gtk/gtksocket.h +84 -0
  273. data/vendor/local/include/gtk-3.0/gtk/gtkspinbutton.h +213 -0
  274. data/vendor/local/include/gtk-3.0/gtk/gtkspinner.h +71 -0
  275. data/vendor/local/include/gtk-3.0/gtk/gtkstatusbar.h +101 -0
  276. data/vendor/local/include/gtk-3.0/gtk/gtkstatusicon.h +147 -0
  277. data/vendor/local/include/gtk-3.0/gtk/gtkstock.h +1029 -0
  278. data/vendor/local/include/gtk-3.0/gtk/gtkstylecontext.h +1014 -0
  279. data/vendor/local/include/gtk-3.0/gtk/gtkstyleproperties.h +117 -0
  280. data/vendor/local/include/gtk-3.0/gtk/gtkstyleprovider.h +126 -0
  281. data/vendor/local/include/gtk-3.0/gtk/gtkswitch.h +93 -0
  282. data/vendor/local/include/gtk-3.0/gtk/gtksymboliccolor.h +57 -0
  283. data/vendor/local/include/gtk-3.0/gtk/gtktestutils.h +72 -0
  284. data/vendor/local/include/gtk-3.0/gtk/gtktextattributes.h +180 -0
  285. data/vendor/local/include/gtk-3.0/gtk/gtktextbuffer.h +408 -0
  286. data/vendor/local/include/gtk-3.0/gtk/gtktextbufferrichtext.h +126 -0
  287. data/vendor/local/include/gtk-3.0/gtk/gtktextchild.h +83 -0
  288. data/vendor/local/include/gtk-3.0/gtk/gtktextdisplay.h +101 -0
  289. data/vendor/local/include/gtk-3.0/gtk/gtktextiter.h +306 -0
  290. data/vendor/local/include/gtk-3.0/gtk/gtktextlayout.h +433 -0
  291. data/vendor/local/include/gtk-3.0/gtk/gtktextmark.h +103 -0
  292. data/vendor/local/include/gtk-3.0/gtk/gtktexttag.h +115 -0
  293. data/vendor/local/include/gtk-3.0/gtk/gtktexttagtable.h +96 -0
  294. data/vendor/local/include/gtk-3.0/gtk/gtktextview.h +298 -0
  295. data/vendor/local/include/gtk-3.0/gtk/gtkthemingengine.h +260 -0
  296. data/vendor/local/include/gtk-3.0/gtk/gtktoggleaction.h +92 -0
  297. data/vendor/local/include/gtk-3.0/gtk/gtktogglebutton.h +93 -0
  298. data/vendor/local/include/gtk-3.0/gtk/gtktoggletoolbutton.h +75 -0
  299. data/vendor/local/include/gtk-3.0/gtk/gtktoolbar.h +135 -0
  300. data/vendor/local/include/gtk-3.0/gtk/gtktoolbutton.h +97 -0
  301. data/vendor/local/include/gtk-3.0/gtk/gtktoolitem.h +124 -0
  302. data/vendor/local/include/gtk-3.0/gtk/gtktoolitemgroup.h +104 -0
  303. data/vendor/local/include/gtk-3.0/gtk/gtktoolpalette.h +140 -0
  304. data/vendor/local/include/gtk-3.0/gtk/gtktoolshell.h +89 -0
  305. data/vendor/local/include/gtk-3.0/gtk/gtktooltip.h +75 -0
  306. data/vendor/local/include/gtk-3.0/gtk/gtktreednd.h +123 -0
  307. data/vendor/local/include/gtk-3.0/gtk/gtktreemodel.h +305 -0
  308. data/vendor/local/include/gtk-3.0/gtk/gtktreemodelfilter.h +144 -0
  309. data/vendor/local/include/gtk-3.0/gtk/gtktreemodelsort.h +84 -0
  310. data/vendor/local/include/gtk-3.0/gtk/gtktreeselection.h +146 -0
  311. data/vendor/local/include/gtk-3.0/gtk/gtktreesortable.h +123 -0
  312. data/vendor/local/include/gtk-3.0/gtk/gtktreestore.h +147 -0
  313. data/vendor/local/include/gtk-3.0/gtk/gtktreeview.h +501 -0
  314. data/vendor/local/include/gtk-3.0/gtk/gtktreeviewcolumn.h +224 -0
  315. data/vendor/local/include/gtk-3.0/gtk/gtktypebuiltins.h +307 -0
  316. data/vendor/local/include/gtk-3.0/gtk/gtktypes.h +56 -0
  317. data/vendor/local/include/gtk-3.0/gtk/gtkuimanager.h +171 -0
  318. data/vendor/local/include/gtk-3.0/gtk/gtkversion.h +102 -0
  319. data/vendor/local/include/gtk-3.0/gtk/gtkviewport.h +96 -0
  320. data/vendor/local/include/gtk-3.0/gtk/gtkvolumebutton.h +70 -0
  321. data/vendor/local/include/gtk-3.0/gtk/gtkwidget.h +896 -0
  322. data/vendor/local/include/gtk-3.0/gtk/gtkwidgetpath.h +132 -0
  323. data/vendor/local/include/gtk-3.0/gtk/gtkwindow.h +351 -0
  324. data/vendor/local/include/gtk-3.0/gtk/gtkx.h +28 -0
  325. data/vendor/local/lib/gailutil.def +14 -0
  326. data/vendor/local/lib/gdk-win32-3.0.def +514 -0
  327. data/vendor/local/lib/gtk-3.0/3.0.0/immodules.cache +40 -0
  328. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.dll +0 -0
  329. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.dll.a +0 -0
  330. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.la +41 -0
  331. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.dll +0 -0
  332. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.dll.a +0 -0
  333. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.la +41 -0
  334. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.dll +0 -0
  335. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.dll.a +0 -0
  336. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.la +41 -0
  337. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.dll +0 -0
  338. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.dll.a +0 -0
  339. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.la +41 -0
  340. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.dll +0 -0
  341. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.dll.a +0 -0
  342. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.la +41 -0
  343. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.dll +0 -0
  344. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.dll.a +0 -0
  345. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.la +41 -0
  346. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.dll +0 -0
  347. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.dll.a +0 -0
  348. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.la +41 -0
  349. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.dll +0 -0
  350. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.dll.a +0 -0
  351. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.la +41 -0
  352. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.dll +0 -0
  353. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.dll.a +0 -0
  354. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.la +41 -0
  355. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.dll +0 -0
  356. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.dll.a +0 -0
  357. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.la +41 -0
  358. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.dll +0 -0
  359. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.dll.a +0 -0
  360. data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.la +41 -0
  361. data/vendor/local/lib/gtk-win32-3.0.def +3790 -0
  362. data/vendor/local/lib/libgailutil-3.dll.a +0 -0
  363. data/vendor/local/lib/libgailutil-3.la +41 -0
  364. data/vendor/local/lib/libgdk-3.dll.a +0 -0
  365. data/vendor/local/lib/libgdk-3.la +41 -0
  366. data/vendor/local/lib/libgtk-3.dll.a +0 -0
  367. data/vendor/local/lib/libgtk-3.la +41 -0
  368. data/vendor/local/lib/pkgconfig/gail-3.0.pc +11 -0
  369. data/vendor/local/lib/pkgconfig/gdk-3.0.pc +13 -0
  370. data/vendor/local/lib/pkgconfig/gdk-win32-3.0.pc +13 -0
  371. data/vendor/local/lib/pkgconfig/gtk+-3.0.pc +16 -0
  372. data/vendor/local/lib/pkgconfig/gtk+-win32-3.0.pc +16 -0
  373. data/vendor/local/share/aclocal/gtk-3.0.m4 +219 -0
  374. data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
  375. data/vendor/local/share/glib-2.0/schemas/org.gtk.Demo.gschema.xml +17 -0
  376. data/vendor/local/share/glib-2.0/schemas/org.gtk.Settings.ColorChooser.gschema.xml +13 -0
  377. data/vendor/local/share/glib-2.0/schemas/org.gtk.Settings.FileChooser.gschema.xml +66 -0
  378. data/vendor/local/share/gtk-3.0/demo/alphatest.png +0 -0
  379. data/vendor/local/share/gtk-3.0/demo/apple-red.png +0 -0
  380. data/vendor/local/share/gtk-3.0/demo/application.c +485 -0
  381. data/vendor/local/share/gtk-3.0/demo/application.ui +104 -0
  382. data/vendor/local/share/gtk-3.0/demo/appwindow.c +570 -0
  383. data/vendor/local/share/gtk-3.0/demo/assistant.c +201 -0
  384. data/vendor/local/share/gtk-3.0/demo/background.jpg +0 -0
  385. data/vendor/local/share/gtk-3.0/demo/builder.c +74 -0
  386. data/vendor/local/share/gtk-3.0/demo/button_box.c +127 -0
  387. data/vendor/local/share/gtk-3.0/demo/changedisplay.c +654 -0
  388. data/vendor/local/share/gtk-3.0/demo/clipboard.c +326 -0
  389. data/vendor/local/share/gtk-3.0/demo/colorsel.c +133 -0
  390. data/vendor/local/share/gtk-3.0/demo/combobox.c +473 -0
  391. data/vendor/local/share/gtk-3.0/demo/css_accordion.c +78 -0
  392. data/vendor/local/share/gtk-3.0/demo/css_accordion.css +52 -0
  393. data/vendor/local/share/gtk-3.0/demo/css_basics.c +122 -0
  394. data/vendor/local/share/gtk-3.0/demo/css_basics.css +22 -0
  395. data/vendor/local/share/gtk-3.0/demo/css_multiplebgs.c +171 -0
  396. data/vendor/local/share/gtk-3.0/demo/css_multiplebgs.css +136 -0
  397. data/vendor/local/share/gtk-3.0/demo/css_pixbufs.c +127 -0
  398. data/vendor/local/share/gtk-3.0/demo/css_pixbufs.css +76 -0
  399. data/vendor/local/share/gtk-3.0/demo/css_shadows.c +147 -0
  400. data/vendor/local/share/gtk-3.0/demo/css_shadows.css +44 -0
  401. data/vendor/local/share/gtk-3.0/demo/cssview.css +41 -0
  402. data/vendor/local/share/gtk-3.0/demo/demo.ui +266 -0
  403. data/vendor/local/share/gtk-3.0/demo/dialog.c +175 -0
  404. data/vendor/local/share/gtk-3.0/demo/drawingarea.c +296 -0
  405. data/vendor/local/share/gtk-3.0/demo/editable_cells.c +392 -0
  406. data/vendor/local/share/gtk-3.0/demo/entry_buffer.c +66 -0
  407. data/vendor/local/share/gtk-3.0/demo/entry_completion.c +98 -0
  408. data/vendor/local/share/gtk-3.0/demo/expander.c +59 -0
  409. data/vendor/local/share/gtk-3.0/demo/fancy.css +65 -0
  410. data/vendor/local/share/gtk-3.0/demo/floppybuddy.gif +0 -0
  411. data/vendor/local/share/gtk-3.0/demo/gnome-applets.png +0 -0
  412. data/vendor/local/share/gtk-3.0/demo/gnome-calendar.png +0 -0
  413. data/vendor/local/share/gtk-3.0/demo/gnome-foot.png +0 -0
  414. data/vendor/local/share/gtk-3.0/demo/gnome-fs-directory.png +0 -0
  415. data/vendor/local/share/gtk-3.0/demo/gnome-fs-regular.png +0 -0
  416. data/vendor/local/share/gtk-3.0/demo/gnome-gimp.png +0 -0
  417. data/vendor/local/share/gtk-3.0/demo/gnome-gmush.png +0 -0
  418. data/vendor/local/share/gtk-3.0/demo/gnome-gsame.png +0 -0
  419. data/vendor/local/share/gtk-3.0/demo/gnu-keys.png +0 -0
  420. data/vendor/local/share/gtk-3.0/demo/gtk-logo-24.png +0 -0
  421. data/vendor/local/share/gtk-3.0/demo/gtk-logo-48.png +0 -0
  422. data/vendor/local/share/gtk-3.0/demo/gtk-logo-rgb.gif +0 -0
  423. data/vendor/local/share/gtk-3.0/demo/hypertext.c +291 -0
  424. data/vendor/local/share/gtk-3.0/demo/iconview.c +371 -0
  425. data/vendor/local/share/gtk-3.0/demo/iconview_edit.c +158 -0
  426. data/vendor/local/share/gtk-3.0/demo/images.c +472 -0
  427. data/vendor/local/share/gtk-3.0/demo/infobar.c +109 -0
  428. data/vendor/local/share/gtk-3.0/demo/links.c +90 -0
  429. data/vendor/local/share/gtk-3.0/demo/list_store.c +325 -0
  430. data/vendor/local/share/gtk-3.0/demo/menus.c +171 -0
  431. data/vendor/local/share/gtk-3.0/demo/menus.ui +107 -0
  432. data/vendor/local/share/gtk-3.0/demo/offscreen_window.c +615 -0
  433. data/vendor/local/share/gtk-3.0/demo/offscreen_window2.c +526 -0
  434. data/vendor/local/share/gtk-3.0/demo/overlay.c +181 -0
  435. data/vendor/local/share/gtk-3.0/demo/panes.c +205 -0
  436. data/vendor/local/share/gtk-3.0/demo/pickers.c +89 -0
  437. data/vendor/local/share/gtk-3.0/demo/pixbufs.c +261 -0
  438. data/vendor/local/share/gtk-3.0/demo/printing.c +199 -0
  439. data/vendor/local/share/gtk-3.0/demo/reset.css +68 -0
  440. data/vendor/local/share/gtk-3.0/demo/rotated_text.c +236 -0
  441. data/vendor/local/share/gtk-3.0/demo/search_entry.c +322 -0
  442. data/vendor/local/share/gtk-3.0/demo/sizegroup.c +164 -0
  443. data/vendor/local/share/gtk-3.0/demo/spinner.c +95 -0
  444. data/vendor/local/share/gtk-3.0/demo/stock_browser.c +535 -0
  445. data/vendor/local/share/gtk-3.0/demo/textscroll.c +201 -0
  446. data/vendor/local/share/gtk-3.0/demo/textview.c +634 -0
  447. data/vendor/local/share/gtk-3.0/demo/theming.ui +319 -0
  448. data/vendor/local/share/gtk-3.0/demo/theming_custom_css.c +66 -0
  449. data/vendor/local/share/gtk-3.0/demo/theming_style_classes.c +58 -0
  450. data/vendor/local/share/gtk-3.0/demo/toolpalette.c +794 -0
  451. data/vendor/local/share/gtk-3.0/demo/transparent.c +248 -0
  452. data/vendor/local/share/gtk-3.0/demo/tree_store.c +450 -0
  453. data/vendor/local/share/gtk-3.0/demo/ui_manager.c +235 -0
  454. data/vendor/local/share/gtk-3.0/gtkbuilder.rng +305 -0
  455. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3-GailMisc.html +434 -0
  456. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3-GailTextUtil.html +291 -0
  457. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3.devhelp2 +29 -0
  458. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/home.png +0 -0
  459. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/index.html +45 -0
  460. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/index.sgml +26 -0
  461. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/left.png +0 -0
  462. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/libgail-util-main.html +41 -0
  463. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/right.png +0 -0
  464. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/style.css +266 -0
  465. data/vendor/local/share/gtk-doc/html/gail-libgail-util3/up.png +0 -0
  466. data/vendor/local/share/gtk-doc/html/gdk3/GdkDevice.html +1532 -0
  467. data/vendor/local/share/gtk-doc/html/gdk3/GdkDeviceManager.html +445 -0
  468. data/vendor/local/share/gtk-doc/html/gdk3/GdkDisplay.html +1482 -0
  469. data/vendor/local/share/gtk-doc/html/gdk3/GdkDisplayManager.html +354 -0
  470. data/vendor/local/share/gtk-doc/html/gdk3/GdkScreen.html +1213 -0
  471. data/vendor/local/share/gtk-doc/html/gdk3/X_cursor.png +0 -0
  472. data/vendor/local/share/gtk-doc/html/gdk3/annotation-glossary.html +98 -0
  473. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-0.html +298 -0
  474. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-2.html +71 -0
  475. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-4.html +130 -0
  476. data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-6.html +42 -0
  477. data/vendor/local/share/gtk-doc/html/gdk3/api-index-deprecated.html +158 -0
  478. data/vendor/local/share/gtk-doc/html/gdk3/api-index-full.html +2711 -0
  479. data/vendor/local/share/gtk-doc/html/gdk3/arrow.png +0 -0
  480. data/vendor/local/share/gtk-doc/html/gdk3/based_arrow_down.png +0 -0
  481. data/vendor/local/share/gtk-doc/html/gdk3/based_arrow_up.png +0 -0
  482. data/vendor/local/share/gtk-doc/html/gdk3/boat.png +0 -0
  483. data/vendor/local/share/gtk-doc/html/gdk3/bogosity.png +0 -0
  484. data/vendor/local/share/gtk-doc/html/gdk3/bottom_left_corner.png +0 -0
  485. data/vendor/local/share/gtk-doc/html/gdk3/bottom_right_corner.png +0 -0
  486. data/vendor/local/share/gtk-doc/html/gdk3/bottom_side.png +0 -0
  487. data/vendor/local/share/gtk-doc/html/gdk3/bottom_tee.png +0 -0
  488. data/vendor/local/share/gtk-doc/html/gdk3/box_spiral.png +0 -0
  489. data/vendor/local/share/gtk-doc/html/gdk3/center_ptr.png +0 -0
  490. data/vendor/local/share/gtk-doc/html/gdk3/circle.png +0 -0
  491. data/vendor/local/share/gtk-doc/html/gdk3/clock.png +0 -0
  492. data/vendor/local/share/gtk-doc/html/gdk3/coffee_mug.png +0 -0
  493. data/vendor/local/share/gtk-doc/html/gdk3/cross.png +0 -0
  494. data/vendor/local/share/gtk-doc/html/gdk3/cross_reverse.png +0 -0
  495. data/vendor/local/share/gtk-doc/html/gdk3/crosshair.png +0 -0
  496. data/vendor/local/share/gtk-doc/html/gdk3/diamond_cross.png +0 -0
  497. data/vendor/local/share/gtk-doc/html/gdk3/dot.png +0 -0
  498. data/vendor/local/share/gtk-doc/html/gdk3/dotbox.png +0 -0
  499. data/vendor/local/share/gtk-doc/html/gdk3/double_arrow.png +0 -0
  500. data/vendor/local/share/gtk-doc/html/gdk3/draft_large.png +0 -0
  501. data/vendor/local/share/gtk-doc/html/gdk3/draft_small.png +0 -0
  502. data/vendor/local/share/gtk-doc/html/gdk3/draped_box.png +0 -0
  503. data/vendor/local/share/gtk-doc/html/gdk3/exchange.png +0 -0
  504. data/vendor/local/share/gtk-doc/html/gdk3/fleur.png +0 -0
  505. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Application-launching.html +379 -0
  506. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Cairo-Interaction.html +453 -0
  507. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Colors.html +296 -0
  508. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Cursors.html +1055 -0
  509. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Drag-and-Drop.html +949 -0
  510. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Event-Structures.html +1873 -0
  511. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Events.html +1839 -0
  512. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-General.html +952 -0
  513. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Keyboard-Handling.html +1180 -0
  514. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Pango-Interaction.html +427 -0
  515. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Pixbufs.html +206 -0
  516. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Points-Rectangles-and-Regions.html +199 -0
  517. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Properties-and-Atoms.html +598 -0
  518. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-RGBA-Colors.html +326 -0
  519. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Selections.html +622 -0
  520. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Testing.html +230 -0
  521. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Threads.html +1050 -0
  522. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Visuals.html +777 -0
  523. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Windows.html +6690 -0
  524. data/vendor/local/share/gtk-doc/html/gdk3/gdk3-X-Window-System-Interaction.html +2083 -0
  525. data/vendor/local/share/gtk-doc/html/gdk3/gdk3.devhelp2 +1042 -0
  526. data/vendor/local/share/gtk-doc/html/gdk3/gobbler.png +0 -0
  527. data/vendor/local/share/gtk-doc/html/gdk3/gumby.png +0 -0
  528. data/vendor/local/share/gtk-doc/html/gdk3/hand1.png +0 -0
  529. data/vendor/local/share/gtk-doc/html/gdk3/hand2.png +0 -0
  530. data/vendor/local/share/gtk-doc/html/gdk3/heart.png +0 -0
  531. data/vendor/local/share/gtk-doc/html/gdk3/home.png +0 -0
  532. data/vendor/local/share/gtk-doc/html/gdk3/icon.png +0 -0
  533. data/vendor/local/share/gtk-doc/html/gdk3/index.html +120 -0
  534. data/vendor/local/share/gtk-doc/html/gdk3/index.sgml +1162 -0
  535. data/vendor/local/share/gtk-doc/html/gdk3/iron_cross.png +0 -0
  536. data/vendor/local/share/gtk-doc/html/gdk3/left.png +0 -0
  537. data/vendor/local/share/gtk-doc/html/gdk3/left_ptr.png +0 -0
  538. data/vendor/local/share/gtk-doc/html/gdk3/left_side.png +0 -0
  539. data/vendor/local/share/gtk-doc/html/gdk3/left_tee.png +0 -0
  540. data/vendor/local/share/gtk-doc/html/gdk3/leftbutton.png +0 -0
  541. data/vendor/local/share/gtk-doc/html/gdk3/ll_angle.png +0 -0
  542. data/vendor/local/share/gtk-doc/html/gdk3/lr_angle.png +0 -0
  543. data/vendor/local/share/gtk-doc/html/gdk3/man.png +0 -0
  544. data/vendor/local/share/gtk-doc/html/gdk3/middlebutton.png +0 -0
  545. data/vendor/local/share/gtk-doc/html/gdk3/mouse.png +0 -0
  546. data/vendor/local/share/gtk-doc/html/gdk3/pencil.png +0 -0
  547. data/vendor/local/share/gtk-doc/html/gdk3/pirate.png +0 -0
  548. data/vendor/local/share/gtk-doc/html/gdk3/plus.png +0 -0
  549. data/vendor/local/share/gtk-doc/html/gdk3/question_arrow.png +0 -0
  550. data/vendor/local/share/gtk-doc/html/gdk3/reference.html +113 -0
  551. data/vendor/local/share/gtk-doc/html/gdk3/right.png +0 -0
  552. data/vendor/local/share/gtk-doc/html/gdk3/right_ptr.png +0 -0
  553. data/vendor/local/share/gtk-doc/html/gdk3/right_side.png +0 -0
  554. data/vendor/local/share/gtk-doc/html/gdk3/right_tee.png +0 -0
  555. data/vendor/local/share/gtk-doc/html/gdk3/rightbutton.png +0 -0
  556. data/vendor/local/share/gtk-doc/html/gdk3/rotated-text.png +0 -0
  557. data/vendor/local/share/gtk-doc/html/gdk3/rtl_logo.png +0 -0
  558. data/vendor/local/share/gtk-doc/html/gdk3/sailboat.png +0 -0
  559. data/vendor/local/share/gtk-doc/html/gdk3/sb_down_arrow.png +0 -0
  560. data/vendor/local/share/gtk-doc/html/gdk3/sb_h_double_arrow.png +0 -0
  561. data/vendor/local/share/gtk-doc/html/gdk3/sb_left_arrow.png +0 -0
  562. data/vendor/local/share/gtk-doc/html/gdk3/sb_right_arrow.png +0 -0
  563. data/vendor/local/share/gtk-doc/html/gdk3/sb_up_arrow.png +0 -0
  564. data/vendor/local/share/gtk-doc/html/gdk3/sb_v_double_arrow.png +0 -0
  565. data/vendor/local/share/gtk-doc/html/gdk3/shuttle.png +0 -0
  566. data/vendor/local/share/gtk-doc/html/gdk3/sizing.png +0 -0
  567. data/vendor/local/share/gtk-doc/html/gdk3/spider.png +0 -0
  568. data/vendor/local/share/gtk-doc/html/gdk3/spraycan.png +0 -0
  569. data/vendor/local/share/gtk-doc/html/gdk3/star.png +0 -0
  570. data/vendor/local/share/gtk-doc/html/gdk3/style.css +266 -0
  571. data/vendor/local/share/gtk-doc/html/gdk3/target.png +0 -0
  572. data/vendor/local/share/gtk-doc/html/gdk3/tcross.png +0 -0
  573. data/vendor/local/share/gtk-doc/html/gdk3/top_left_arrow.png +0 -0
  574. data/vendor/local/share/gtk-doc/html/gdk3/top_left_corner.png +0 -0
  575. data/vendor/local/share/gtk-doc/html/gdk3/top_right_corner.png +0 -0
  576. data/vendor/local/share/gtk-doc/html/gdk3/top_side.png +0 -0
  577. data/vendor/local/share/gtk-doc/html/gdk3/top_tee.png +0 -0
  578. data/vendor/local/share/gtk-doc/html/gdk3/trek.png +0 -0
  579. data/vendor/local/share/gtk-doc/html/gdk3/ul_angle.png +0 -0
  580. data/vendor/local/share/gtk-doc/html/gdk3/umbrella.png +0 -0
  581. data/vendor/local/share/gtk-doc/html/gdk3/up.png +0 -0
  582. data/vendor/local/share/gtk-doc/html/gdk3/ur_angle.png +0 -0
  583. data/vendor/local/share/gtk-doc/html/gdk3/watch.png +0 -0
  584. data/vendor/local/share/gtk-doc/html/gdk3/xterm.png +0 -0
  585. data/vendor/local/share/gtk-doc/html/gtk3/AbstractObjects.html +53 -0
  586. data/vendor/local/share/gtk-doc/html/gtk3/Actions.html +53 -0
  587. data/vendor/local/share/gtk-doc/html/gtk3/Application.html +42 -0
  588. data/vendor/local/share/gtk-doc/html/gtk3/ApplicationChoosing.html +44 -0
  589. data/vendor/local/share/gtk-doc/html/gtk3/Builder.html +38 -0
  590. data/vendor/local/share/gtk-doc/html/gtk3/ButtonWidgets.html +62 -0
  591. data/vendor/local/share/gtk-doc/html/gtk3/DisplayWidgets.html +59 -0
  592. data/vendor/local/share/gtk-doc/html/gtk3/GtkAboutDialog.html +1501 -0
  593. data/vendor/local/share/gtk-doc/html/gtk3/GtkAccelLabel.html +400 -0
  594. data/vendor/local/share/gtk-doc/html/gtk3/GtkAccessible.html +200 -0
  595. data/vendor/local/share/gtk-doc/html/gtk3/GtkAction.html +1580 -0
  596. data/vendor/local/share/gtk-doc/html/gtk3/GtkActionGroup.html +1389 -0
  597. data/vendor/local/share/gtk-doc/html/gtk3/GtkActionable.html +425 -0
  598. data/vendor/local/share/gtk-doc/html/gtk3/GtkActivatable.html +876 -0
  599. data/vendor/local/share/gtk-doc/html/gtk3/GtkAdjustment.html +845 -0
  600. data/vendor/local/share/gtk-doc/html/gtk3/GtkAlignment.html +411 -0
  601. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooser.html +212 -0
  602. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserButton.html +518 -0
  603. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserDialog.html +297 -0
  604. data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserWidget.html +712 -0
  605. data/vendor/local/share/gtk-doc/html/gtk3/GtkApplication.html +1877 -0
  606. data/vendor/local/share/gtk-doc/html/gtk3/GtkApplicationWindow.html +788 -0
  607. data/vendor/local/share/gtk-doc/html/gtk3/GtkArrow.html +208 -0
  608. data/vendor/local/share/gtk-doc/html/gtk3/GtkAspectFrame.html +241 -0
  609. data/vendor/local/share/gtk-doc/html/gtk3/GtkAssistant.html +1389 -0
  610. data/vendor/local/share/gtk-doc/html/gtk3/GtkBin.html +132 -0
  611. data/vendor/local/share/gtk-doc/html/gtk3/GtkBox.html +683 -0
  612. data/vendor/local/share/gtk-doc/html/gtk3/GtkBuildable.html +677 -0
  613. data/vendor/local/share/gtk-doc/html/gtk3/GtkBuilder.html +1354 -0
  614. data/vendor/local/share/gtk-doc/html/gtk3/GtkButton.html +1292 -0
  615. data/vendor/local/share/gtk-doc/html/gtk3/GtkButtonBox.html +432 -0
  616. data/vendor/local/share/gtk-doc/html/gtk3/GtkCalendar.html +1031 -0
  617. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellArea.html +3227 -0
  618. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellAreaBox.html +369 -0
  619. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellAreaContext.html +675 -0
  620. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellEditable.html +286 -0
  621. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellLayout.html +750 -0
  622. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRenderer.html +1596 -0
  623. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererAccel.html +275 -0
  624. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererCombo.html +228 -0
  625. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererPixbuf.html +203 -0
  626. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererProgress.html +202 -0
  627. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererSpin.html +159 -0
  628. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererSpinner.html +155 -0
  629. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererText.html +653 -0
  630. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererToggle.html +372 -0
  631. data/vendor/local/share/gtk-doc/html/gtk3/GtkCellView.html +729 -0
  632. data/vendor/local/share/gtk-doc/html/gtk3/GtkCheckButton.html +198 -0
  633. data/vendor/local/share/gtk-doc/html/gtk3/GtkCheckMenuItem.html +462 -0
  634. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorButton.html +607 -0
  635. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooser.html +370 -0
  636. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooserDialog.html +144 -0
  637. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooserWidget.html +150 -0
  638. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorSelection.html +889 -0
  639. data/vendor/local/share/gtk-doc/html/gtk3/GtkColorSelectionDialog.html +200 -0
  640. data/vendor/local/share/gtk-doc/html/gtk3/GtkComboBox.html +1893 -0
  641. data/vendor/local/share/gtk-doc/html/gtk3/GtkComboBoxText.html +519 -0
  642. data/vendor/local/share/gtk-doc/html/gtk3/GtkContainer.html +1692 -0
  643. data/vendor/local/share/gtk-doc/html/gtk3/GtkCssProvider.html +2108 -0
  644. data/vendor/local/share/gtk-doc/html/gtk3/GtkDialog.html +1288 -0
  645. data/vendor/local/share/gtk-doc/html/gtk3/GtkDrawingArea.html +234 -0
  646. data/vendor/local/share/gtk-doc/html/gtk3/GtkEditable.html +723 -0
  647. data/vendor/local/share/gtk-doc/html/gtk3/GtkEntry.html +3957 -0
  648. data/vendor/local/share/gtk-doc/html/gtk3/GtkEntryBuffer.html +627 -0
  649. data/vendor/local/share/gtk-doc/html/gtk3/GtkEntryCompletion.html +1331 -0
  650. data/vendor/local/share/gtk-doc/html/gtk3/GtkEventBox.html +305 -0
  651. data/vendor/local/share/gtk-doc/html/gtk3/GtkExpander.html +851 -0
  652. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooser.html +3403 -0
  653. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserButton.html +486 -0
  654. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserDialog.html +396 -0
  655. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserWidget.html +127 -0
  656. data/vendor/local/share/gtk-doc/html/gtk3/GtkFileFilter.html +595 -0
  657. data/vendor/local/share/gtk-doc/html/gtk3/GtkFixed.html +253 -0
  658. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontButton.html +609 -0
  659. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooser.html +605 -0
  660. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooserDialog.html +137 -0
  661. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooserWidget.html +125 -0
  662. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontSelection.html +571 -0
  663. data/vendor/local/share/gtk-doc/html/gtk3/GtkFontSelectionDialog.html +400 -0
  664. data/vendor/local/share/gtk-doc/html/gtk3/GtkFrame.html +464 -0
  665. data/vendor/local/share/gtk-doc/html/gtk3/GtkGrid.html +701 -0
  666. data/vendor/local/share/gtk-doc/html/gtk3/GtkHBox.html +147 -0
  667. data/vendor/local/share/gtk-doc/html/gtk3/GtkHButtonBox.html +134 -0
  668. data/vendor/local/share/gtk-doc/html/gtk3/GtkHPaned.html +115 -0
  669. data/vendor/local/share/gtk-doc/html/gtk3/GtkHSV.html +445 -0
  670. data/vendor/local/share/gtk-doc/html/gtk3/GtkHScale.html +172 -0
  671. data/vendor/local/share/gtk-doc/html/gtk3/GtkHScrollbar.html +128 -0
  672. data/vendor/local/share/gtk-doc/html/gtk3/GtkHSeparator.html +127 -0
  673. data/vendor/local/share/gtk-doc/html/gtk3/GtkHandleBox.html +514 -0
  674. data/vendor/local/share/gtk-doc/html/gtk3/GtkIMContext.html +1027 -0
  675. data/vendor/local/share/gtk-doc/html/gtk3/GtkIMContextSimple.html +150 -0
  676. data/vendor/local/share/gtk-doc/html/gtk3/GtkIMMulticontext.html +183 -0
  677. data/vendor/local/share/gtk-doc/html/gtk3/GtkIconTheme.html +1755 -0
  678. data/vendor/local/share/gtk-doc/html/gtk3/GtkIconView.html +2896 -0
  679. data/vendor/local/share/gtk-doc/html/gtk3/GtkImage.html +1349 -0
  680. data/vendor/local/share/gtk-doc/html/gtk3/GtkImageMenuItem.html +486 -0
  681. data/vendor/local/share/gtk-doc/html/gtk3/GtkInfoBar.html +764 -0
  682. data/vendor/local/share/gtk-doc/html/gtk3/GtkInvisible.html +205 -0
  683. data/vendor/local/share/gtk-doc/html/gtk3/GtkLabel.html +2208 -0
  684. data/vendor/local/share/gtk-doc/html/gtk3/GtkLayout.html +518 -0
  685. data/vendor/local/share/gtk-doc/html/gtk3/GtkLevelBar.html +782 -0
  686. data/vendor/local/share/gtk-doc/html/gtk3/GtkLinkButton.html +369 -0
  687. data/vendor/local/share/gtk-doc/html/gtk3/GtkListStore.html +1159 -0
  688. data/vendor/local/share/gtk-doc/html/gtk3/GtkLockButton.html +259 -0
  689. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenu.html +1527 -0
  690. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuBar.html +369 -0
  691. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuButton.html +535 -0
  692. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuItem.html +940 -0
  693. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuShell.html +904 -0
  694. data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuToolButton.html +387 -0
  695. data/vendor/local/share/gtk-doc/html/gtk3/GtkMessageDialog.html +814 -0
  696. data/vendor/local/share/gtk-doc/html/gtk3/GtkMisc.html +296 -0
  697. data/vendor/local/share/gtk-doc/html/gtk3/GtkNotebook.html +2219 -0
  698. data/vendor/local/share/gtk-doc/html/gtk3/GtkNumerableIcon.html +557 -0
  699. data/vendor/local/share/gtk-doc/html/gtk3/GtkOffscreenWindow.html +187 -0
  700. data/vendor/local/share/gtk-doc/html/gtk3/GtkOverlay.html +229 -0
  701. data/vendor/local/share/gtk-doc/html/gtk3/GtkPageSetup.html +1031 -0
  702. data/vendor/local/share/gtk-doc/html/gtk3/GtkPageSetupUnixDialog.html +254 -0
  703. data/vendor/local/share/gtk-doc/html/gtk3/GtkPaned.html +783 -0
  704. data/vendor/local/share/gtk-doc/html/gtk3/GtkPaperSize.html +905 -0
  705. data/vendor/local/share/gtk-doc/html/gtk3/GtkPlug.html +388 -0
  706. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintContext.html +571 -0
  707. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintJob.html +1133 -0
  708. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintSettings.html +2948 -0
  709. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintUnixDialog.html +919 -0
  710. data/vendor/local/share/gtk-doc/html/gtk3/GtkPrinter.html +1003 -0
  711. data/vendor/local/share/gtk-doc/html/gtk3/GtkProgressBar.html +668 -0
  712. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioAction.html +451 -0
  713. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioButton.html +586 -0
  714. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioMenuItem.html +436 -0
  715. data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioToolButton.html +316 -0
  716. data/vendor/local/share/gtk-doc/html/gtk3/GtkRange.html +1365 -0
  717. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentAction.html +279 -0
  718. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooser.html +1415 -0
  719. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserDialog.html +247 -0
  720. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserMenu.html +266 -0
  721. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserWidget.html +155 -0
  722. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentFilter.html +685 -0
  723. data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentManager.html +1641 -0
  724. data/vendor/local/share/gtk-doc/html/gtk3/GtkScale.html +726 -0
  725. data/vendor/local/share/gtk-doc/html/gtk3/GtkScaleButton.html +546 -0
  726. data/vendor/local/share/gtk-doc/html/gtk3/GtkScrollable.html +452 -0
  727. data/vendor/local/share/gtk-doc/html/gtk3/GtkScrollbar.html +194 -0
  728. data/vendor/local/share/gtk-doc/html/gtk3/GtkScrolledWindow.html +1106 -0
  729. data/vendor/local/share/gtk-doc/html/gtk3/GtkSearchEntry.html +118 -0
  730. data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparator.html +114 -0
  731. data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparatorMenuItem.html +107 -0
  732. data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparatorToolItem.html +199 -0
  733. data/vendor/local/share/gtk-doc/html/gtk3/GtkSettings.html +1357 -0
  734. data/vendor/local/share/gtk-doc/html/gtk3/GtkSizeGroup.html +487 -0
  735. data/vendor/local/share/gtk-doc/html/gtk3/GtkSocket.html +360 -0
  736. data/vendor/local/share/gtk-doc/html/gtk3/GtkSpinButton.html +1380 -0
  737. data/vendor/local/share/gtk-doc/html/gtk3/GtkSpinner.html +173 -0
  738. data/vendor/local/share/gtk-doc/html/gtk3/GtkStatusIcon.html +1743 -0
  739. data/vendor/local/share/gtk-doc/html/gtk3/GtkStatusbar.html +441 -0
  740. data/vendor/local/share/gtk-doc/html/gtk3/GtkStyle.html +2534 -0
  741. data/vendor/local/share/gtk-doc/html/gtk3/GtkStyleContext.html +4505 -0
  742. data/vendor/local/share/gtk-doc/html/gtk3/GtkStyleProvider.html +324 -0
  743. data/vendor/local/share/gtk-doc/html/gtk3/GtkSwitch.html +248 -0
  744. data/vendor/local/share/gtk-doc/html/gtk3/GtkTable.html +897 -0
  745. data/vendor/local/share/gtk-doc/html/gtk3/GtkTearoffMenuItem.html +135 -0
  746. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextBuffer.html +3895 -0
  747. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextIter.html +3183 -0
  748. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextMark.html +342 -0
  749. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextTag.html +1124 -0
  750. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextTagTable.html +410 -0
  751. data/vendor/local/share/gtk-doc/html/gtk3/GtkTextView.html +3390 -0
  752. data/vendor/local/share/gtk-doc/html/gtk3/GtkThemingEngine.html +1197 -0
  753. data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleAction.html +335 -0
  754. data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleButton.html +518 -0
  755. data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleToolButton.html +268 -0
  756. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolButton.html +677 -0
  757. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolItem.html +1139 -0
  758. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolItemGroup.html +755 -0
  759. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolPalette.html +1037 -0
  760. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolShell.html +425 -0
  761. data/vendor/local/share/gtk-doc/html/gtk3/GtkToolbar.html +946 -0
  762. data/vendor/local/share/gtk-doc/html/gtk3/GtkTooltip.html +432 -0
  763. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModel.html +2814 -0
  764. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModelFilter.html +742 -0
  765. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModelSort.html +591 -0
  766. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeSelection.html +891 -0
  767. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeSortable.html +481 -0
  768. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeStore.html +1108 -0
  769. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeView.html +4864 -0
  770. data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeViewColumn.html +2067 -0
  771. data/vendor/local/share/gtk-doc/html/gtk3/GtkUIManager.html +1467 -0
  772. data/vendor/local/share/gtk-doc/html/gtk3/GtkVBox.html +162 -0
  773. data/vendor/local/share/gtk-doc/html/gtk3/GtkVButtonBox.html +134 -0
  774. data/vendor/local/share/gtk-doc/html/gtk3/GtkVPaned.html +115 -0
  775. data/vendor/local/share/gtk-doc/html/gtk3/GtkVScale.html +176 -0
  776. data/vendor/local/share/gtk-doc/html/gtk3/GtkVScrollbar.html +132 -0
  777. data/vendor/local/share/gtk-doc/html/gtk3/GtkVSeparator.html +120 -0
  778. data/vendor/local/share/gtk-doc/html/gtk3/GtkViewport.html +387 -0
  779. data/vendor/local/share/gtk-doc/html/gtk3/GtkVolumeButton.html +135 -0
  780. data/vendor/local/share/gtk-doc/html/gtk3/GtkWidget.html +12811 -0
  781. data/vendor/local/share/gtk-doc/html/gtk3/GtkWindow.html +4647 -0
  782. data/vendor/local/share/gtk-doc/html/gtk3/GtkWindowGroup.html +250 -0
  783. data/vendor/local/share/gtk-doc/html/gtk3/LayoutContainers.html +91 -0
  784. data/vendor/local/share/gtk-doc/html/gtk3/MenusAndCombos.html +93 -0
  785. data/vendor/local/share/gtk-doc/html/gtk3/MiscObjects.html +69 -0
  786. data/vendor/local/share/gtk-doc/html/gtk3/NumericEntry.html +60 -0
  787. data/vendor/local/share/gtk-doc/html/gtk3/Ornaments.html +44 -0
  788. data/vendor/local/share/gtk-doc/html/gtk3/PlugSocket.html +38 -0
  789. data/vendor/local/share/gtk-doc/html/gtk3/Printing.html +59 -0
  790. data/vendor/local/share/gtk-doc/html/gtk3/RecentDocuments.html +51 -0
  791. data/vendor/local/share/gtk-doc/html/gtk3/ScrollingWidgets.html +47 -0
  792. data/vendor/local/share/gtk-doc/html/gtk3/SelectorWidgets.html +86 -0
  793. data/vendor/local/share/gtk-doc/html/gtk3/TextWidget.html +266 -0
  794. data/vendor/local/share/gtk-doc/html/gtk3/TextWidgetObjects.html +53 -0
  795. data/vendor/local/share/gtk-doc/html/gtk3/TreeWidget.html +556 -0
  796. data/vendor/local/share/gtk-doc/html/gtk3/TreeWidgetObjects.html +115 -0
  797. data/vendor/local/share/gtk-doc/html/gtk3/WindowWidgets.html +56 -0
  798. data/vendor/local/share/gtk-doc/html/gtk3/aboutdialog.png +0 -0
  799. data/vendor/local/share/gtk-doc/html/gtk3/accel-label.png +0 -0
  800. data/vendor/local/share/gtk-doc/html/gtk3/annotation-glossary.html +110 -0
  801. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-0.html +1901 -0
  802. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-2.html +378 -0
  803. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-4.html +322 -0
  804. data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-6.html +332 -0
  805. data/vendor/local/share/gtk-doc/html/gtk3/api-index-deprecated.html +1006 -0
  806. data/vendor/local/share/gtk-doc/html/gtk3/api-index-full.html +22583 -0
  807. data/vendor/local/share/gtk-doc/html/gtk3/appchooserbutton.png +0 -0
  808. data/vendor/local/share/gtk-doc/html/gtk3/appchooserdialog.png +0 -0
  809. data/vendor/local/share/gtk-doc/html/gtk3/application-exit.png +0 -0
  810. data/vendor/local/share/gtk-doc/html/gtk3/arrows.png +0 -0
  811. data/vendor/local/share/gtk-doc/html/gtk3/assistant.png +0 -0
  812. data/vendor/local/share/gtk-doc/html/gtk3/background.png +0 -0
  813. data/vendor/local/share/gtk-doc/html/gtk3/bloatpad-gnome.png +0 -0
  814. data/vendor/local/share/gtk-doc/html/gtk3/bloatpad-osx.png +0 -0
  815. data/vendor/local/share/gtk-doc/html/gtk3/bloatpad-xfce.png +0 -0
  816. data/vendor/local/share/gtk-doc/html/gtk3/border1.png +0 -0
  817. data/vendor/local/share/gtk-doc/html/gtk3/border2.png +0 -0
  818. data/vendor/local/share/gtk-doc/html/gtk3/border3.png +0 -0
  819. data/vendor/local/share/gtk-doc/html/gtk3/box-expand.png +0 -0
  820. data/vendor/local/share/gtk-doc/html/gtk3/box-packing.png +0 -0
  821. data/vendor/local/share/gtk-doc/html/gtk3/button.png +0 -0
  822. data/vendor/local/share/gtk-doc/html/gtk3/ch02.html +252 -0
  823. data/vendor/local/share/gtk-doc/html/gtk3/ch03.html +178 -0
  824. data/vendor/local/share/gtk-doc/html/gtk3/ch24s02.html +1407 -0
  825. data/vendor/local/share/gtk-doc/html/gtk3/ch26s02.html +53 -0
  826. data/vendor/local/share/gtk-doc/html/gtk3/ch28s02.html +117 -0
  827. data/vendor/local/share/gtk-doc/html/gtk3/ch28s03.html +70 -0
  828. data/vendor/local/share/gtk-doc/html/gtk3/chap-drawing-model.html +461 -0
  829. data/vendor/local/share/gtk-doc/html/gtk3/check-button.png +0 -0
  830. data/vendor/local/share/gtk-doc/html/gtk3/checklist-gdkeventexpose-region.html +82 -0
  831. data/vendor/local/share/gtk-doc/html/gtk3/checklist-modifiers.html +89 -0
  832. data/vendor/local/share/gtk-doc/html/gtk3/checklist-named-icons.html +40 -0
  833. data/vendor/local/share/gtk-doc/html/gtk3/checks.png +0 -0
  834. data/vendor/local/share/gtk-doc/html/gtk3/color-button.png +0 -0
  835. data/vendor/local/share/gtk-doc/html/gtk3/colorchooser.png +0 -0
  836. data/vendor/local/share/gtk-doc/html/gtk3/colorsel.png +0 -0
  837. data/vendor/local/share/gtk-doc/html/gtk3/combo-box-entry.png +0 -0
  838. data/vendor/local/share/gtk-doc/html/gtk3/combo-box.png +0 -0
  839. data/vendor/local/share/gtk-doc/html/gtk3/dialog-error.png +0 -0
  840. data/vendor/local/share/gtk-doc/html/gtk3/dialog-information.png +0 -0
  841. data/vendor/local/share/gtk-doc/html/gtk3/dialog-password.png +0 -0
  842. data/vendor/local/share/gtk-doc/html/gtk3/dialog-question.png +0 -0
  843. data/vendor/local/share/gtk-doc/html/gtk3/dialog-warning.png +0 -0
  844. data/vendor/local/share/gtk-doc/html/gtk3/document-new.png +0 -0
  845. data/vendor/local/share/gtk-doc/html/gtk3/document-open.png +0 -0
  846. data/vendor/local/share/gtk-doc/html/gtk3/document-print-preview.png +0 -0
  847. data/vendor/local/share/gtk-doc/html/gtk3/document-print.png +0 -0
  848. data/vendor/local/share/gtk-doc/html/gtk3/document-properties.png +0 -0
  849. data/vendor/local/share/gtk-doc/html/gtk3/document-revert-ltr.png +0 -0
  850. data/vendor/local/share/gtk-doc/html/gtk3/document-revert-rtl.png +0 -0
  851. data/vendor/local/share/gtk-doc/html/gtk3/document-save-as.png +0 -0
  852. data/vendor/local/share/gtk-doc/html/gtk3/document-save.png +0 -0
  853. data/vendor/local/share/gtk-doc/html/gtk3/down-center.png +0 -0
  854. data/vendor/local/share/gtk-doc/html/gtk3/down-end.png +0 -0
  855. data/vendor/local/share/gtk-doc/html/gtk3/down-start.png +0 -0
  856. data/vendor/local/share/gtk-doc/html/gtk3/drawing.png +0 -0
  857. data/vendor/local/share/gtk-doc/html/gtk3/drive-harddisk.png +0 -0
  858. data/vendor/local/share/gtk-doc/html/gtk3/ease-in-out.png +0 -0
  859. data/vendor/local/share/gtk-doc/html/gtk3/ease-in.png +0 -0
  860. data/vendor/local/share/gtk-doc/html/gtk3/ease-out.png +0 -0
  861. data/vendor/local/share/gtk-doc/html/gtk3/ease.png +0 -0
  862. data/vendor/local/share/gtk-doc/html/gtk3/edit-clear.png +0 -0
  863. data/vendor/local/share/gtk-doc/html/gtk3/edit-copy.png +0 -0
  864. data/vendor/local/share/gtk-doc/html/gtk3/edit-cut.png +0 -0
  865. data/vendor/local/share/gtk-doc/html/gtk3/edit-delete.png +0 -0
  866. data/vendor/local/share/gtk-doc/html/gtk3/edit-find-replace.png +0 -0
  867. data/vendor/local/share/gtk-doc/html/gtk3/edit-find.png +0 -0
  868. data/vendor/local/share/gtk-doc/html/gtk3/edit-paste.png +0 -0
  869. data/vendor/local/share/gtk-doc/html/gtk3/edit-redo-ltr.png +0 -0
  870. data/vendor/local/share/gtk-doc/html/gtk3/edit-redo-rtl.png +0 -0
  871. data/vendor/local/share/gtk-doc/html/gtk3/edit-select-all.png +0 -0
  872. data/vendor/local/share/gtk-doc/html/gtk3/edit-undo-ltr.png +0 -0
  873. data/vendor/local/share/gtk-doc/html/gtk3/edit-undo-rtl.png +0 -0
  874. data/vendor/local/share/gtk-doc/html/gtk3/entry.png +0 -0
  875. data/vendor/local/share/gtk-doc/html/gtk3/expanders.png +0 -0
  876. data/vendor/local/share/gtk-doc/html/gtk3/extensions.png +0 -0
  877. data/vendor/local/share/gtk-doc/html/gtk3/figure-hierarchical-drawing.png +0 -0
  878. data/vendor/local/share/gtk-doc/html/gtk3/figure-windowed-label.png +0 -0
  879. data/vendor/local/share/gtk-doc/html/gtk3/file-button.png +0 -0
  880. data/vendor/local/share/gtk-doc/html/gtk3/filechooser.png +0 -0
  881. data/vendor/local/share/gtk-doc/html/gtk3/focus.png +0 -0
  882. data/vendor/local/share/gtk-doc/html/gtk3/folder.png +0 -0
  883. data/vendor/local/share/gtk-doc/html/gtk3/font-button.png +0 -0
  884. data/vendor/local/share/gtk-doc/html/gtk3/fontchooser.png +0 -0
  885. data/vendor/local/share/gtk-doc/html/gtk3/fontsel.png +0 -0
  886. data/vendor/local/share/gtk-doc/html/gtk3/format-indent-less-ltr.png +0 -0
  887. data/vendor/local/share/gtk-doc/html/gtk3/format-indent-less-rtl.png +0 -0
  888. data/vendor/local/share/gtk-doc/html/gtk3/format-indent-more-ltr.png +0 -0
  889. data/vendor/local/share/gtk-doc/html/gtk3/format-indent-more-rtl.png +0 -0
  890. data/vendor/local/share/gtk-doc/html/gtk3/format-justify-center.png +0 -0
  891. data/vendor/local/share/gtk-doc/html/gtk3/format-justify-fill.png +0 -0
  892. data/vendor/local/share/gtk-doc/html/gtk3/format-justify-left.png +0 -0
  893. data/vendor/local/share/gtk-doc/html/gtk3/format-justify-right.png +0 -0
  894. data/vendor/local/share/gtk-doc/html/gtk3/format-text-bold.png +0 -0
  895. data/vendor/local/share/gtk-doc/html/gtk3/format-text-italic.png +0 -0
  896. data/vendor/local/share/gtk-doc/html/gtk3/format-text-strikethrough.png +0 -0
  897. data/vendor/local/share/gtk-doc/html/gtk3/format-text-underline.png +0 -0
  898. data/vendor/local/share/gtk-doc/html/gtk3/frame-gap.png +0 -0
  899. data/vendor/local/share/gtk-doc/html/gtk3/frame.png +0 -0
  900. data/vendor/local/share/gtk-doc/html/gtk3/frames.png +0 -0
  901. data/vendor/local/share/gtk-doc/html/gtk3/glossary.html +312 -0
  902. data/vendor/local/share/gtk-doc/html/gtk3/go-bottom.png +0 -0
  903. data/vendor/local/share/gtk-doc/html/gtk3/go-down.png +0 -0
  904. data/vendor/local/share/gtk-doc/html/gtk3/go-first-ltr.png +0 -0
  905. data/vendor/local/share/gtk-doc/html/gtk3/go-first-rtl.png +0 -0
  906. data/vendor/local/share/gtk-doc/html/gtk3/go-home.png +0 -0
  907. data/vendor/local/share/gtk-doc/html/gtk3/go-jump-ltr.png +0 -0
  908. data/vendor/local/share/gtk-doc/html/gtk3/go-jump-rtl.png +0 -0
  909. data/vendor/local/share/gtk-doc/html/gtk3/go-last-ltr.png +0 -0
  910. data/vendor/local/share/gtk-doc/html/gtk3/go-last-rtl.png +0 -0
  911. data/vendor/local/share/gtk-doc/html/gtk3/go-next-ltr.png +0 -0
  912. data/vendor/local/share/gtk-doc/html/gtk3/go-next-rtl.png +0 -0
  913. data/vendor/local/share/gtk-doc/html/gtk3/go-previous-ltr.png +0 -0
  914. data/vendor/local/share/gtk-doc/html/gtk3/go-previous-rtl.png +0 -0
  915. data/vendor/local/share/gtk-doc/html/gtk3/go-top.png +0 -0
  916. data/vendor/local/share/gtk-doc/html/gtk3/go-up.png +0 -0
  917. data/vendor/local/share/gtk-doc/html/gtk3/gradient1.png +0 -0
  918. data/vendor/local/share/gtk-doc/html/gtk3/gradient2.png +0 -0
  919. data/vendor/local/share/gtk-doc/html/gtk3/gradient3.png +0 -0
  920. data/vendor/local/share/gtk-doc/html/gtk3/gradient4.png +0 -0
  921. data/vendor/local/share/gtk-doc/html/gtk3/grid-packing.png +0 -0
  922. data/vendor/local/share/gtk-doc/html/gtk3/gtk-apply.png +0 -0
  923. data/vendor/local/share/gtk-doc/html/gtk3/gtk-broadway.html +55 -0
  924. data/vendor/local/share/gtk-doc/html/gtk3/gtk-building.html +459 -0
  925. data/vendor/local/share/gtk-doc/html/gtk3/gtk-cancel.png +0 -0
  926. data/vendor/local/share/gtk-doc/html/gtk3/gtk-caps-lock-warning.png +0 -0
  927. data/vendor/local/share/gtk-doc/html/gtk3/gtk-color-picker.png +0 -0
  928. data/vendor/local/share/gtk-doc/html/gtk3/gtk-compiling.html +161 -0
  929. data/vendor/local/share/gtk-doc/html/gtk3/gtk-connect.png +0 -0
  930. data/vendor/local/share/gtk-doc/html/gtk3/gtk-convert.png +0 -0
  931. data/vendor/local/share/gtk-doc/html/gtk3/gtk-disconnect.png +0 -0
  932. data/vendor/local/share/gtk-doc/html/gtk3/gtk-dnd-multiple.png +0 -0
  933. data/vendor/local/share/gtk-doc/html/gtk3/gtk-dnd.png +0 -0
  934. data/vendor/local/share/gtk-doc/html/gtk3/gtk-edit.png +0 -0
  935. data/vendor/local/share/gtk-doc/html/gtk3/gtk-font.png +0 -0
  936. data/vendor/local/share/gtk-doc/html/gtk3/gtk-getting-started.html +1095 -0
  937. data/vendor/local/share/gtk-doc/html/gtk3/gtk-index.png +0 -0
  938. data/vendor/local/share/gtk-doc/html/gtk3/gtk-launch.html +72 -0
  939. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-2-to-3.html +688 -0
  940. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkGrid.html +102 -0
  941. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-bonus-points.html +136 -0
  942. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-checklist.html +221 -0
  943. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-css.html +437 -0
  944. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-parser-extensions.html +69 -0
  945. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-parsing.html +82 -0
  946. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext.html +74 -0
  947. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-checklist.html +164 -0
  948. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-smclient-GtkApplication.html +89 -0
  949. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-theme-GtkStyleContext-engines.html +133 -0
  950. data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-unique-GtkApplication.html +228 -0
  951. data/vendor/local/share/gtk-doc/html/gtk3/gtk-no.png +0 -0
  952. data/vendor/local/share/gtk-doc/html/gtk3/gtk-ok.png +0 -0
  953. data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-landscape.png +0 -0
  954. data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-portrait.png +0 -0
  955. data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-reverse-landscape.png +0 -0
  956. data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-reverse-portrait.png +0 -0
  957. data/vendor/local/share/gtk-doc/html/gtk3/gtk-osx.html +54 -0
  958. data/vendor/local/share/gtk-doc/html/gtk3/gtk-page-setup.png +0 -0
  959. data/vendor/local/share/gtk-doc/html/gtk3/gtk-preferences.png +0 -0
  960. data/vendor/local/share/gtk-doc/html/gtk3/gtk-query-immodules-3.0.html +110 -0
  961. data/vendor/local/share/gtk-doc/html/gtk3/gtk-question-index.html +1395 -0
  962. data/vendor/local/share/gtk-doc/html/gtk3/gtk-resources.html +146 -0
  963. data/vendor/local/share/gtk-doc/html/gtk3/gtk-running.html +427 -0
  964. data/vendor/local/share/gtk-doc/html/gtk3/gtk-select-color.png +0 -0
  965. data/vendor/local/share/gtk-doc/html/gtk3/gtk-undelete-ltr.png +0 -0
  966. data/vendor/local/share/gtk-doc/html/gtk3/gtk-undelete-rtl.png +0 -0
  967. data/vendor/local/share/gtk-doc/html/gtk3/gtk-update-icon-cache.html +106 -0
  968. data/vendor/local/share/gtk-doc/html/gtk3/gtk-windows.html +93 -0
  969. data/vendor/local/share/gtk-doc/html/gtk3/gtk-x11.html +122 -0
  970. data/vendor/local/share/gtk-doc/html/gtk3/gtk-yes.png +0 -0
  971. data/vendor/local/share/gtk-doc/html/gtk3/gtk.html +187 -0
  972. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Accelerator-Maps.html +674 -0
  973. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Bindings.html +920 -0
  974. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Clipboards.html +1622 -0
  975. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Drag-and-Drop.html +1483 -0
  976. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Feature-Test-Macros.html +346 -0
  977. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Filesystem-utilities.html +368 -0
  978. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-General.html +1325 -0
  979. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkGradient.html +346 -0
  980. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkStyleProperties.html +590 -0
  981. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkSymbolicColor.html +420 -0
  982. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkTreeView-drag-and-drop.html +452 -0
  983. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkWidgetPath.html +1361 -0
  984. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-High-level-Printing-API.html +2748 -0
  985. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Keyboard-Accelerators.html +1143 -0
  986. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Orientable.html +173 -0
  987. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Resource-Files.html +2004 -0
  988. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Selections.html +1844 -0
  989. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Standard-Enumerations.html +1753 -0
  990. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Stock-Items.html +1587 -0
  991. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Testing.html +646 -0
  992. data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Themeable-Stock-Images.html +1730 -0
  993. data/vendor/local/share/gtk-doc/html/gtk3/gtk3.devhelp2 +6619 -0
  994. data/vendor/local/share/gtk-doc/html/gtk3/gtkbase.html +76 -0
  995. data/vendor/local/share/gtk-doc/html/gtk3/gtkobjects.html +670 -0
  996. data/vendor/local/share/gtk-doc/html/gtk3/handles.png +0 -0
  997. data/vendor/local/share/gtk-doc/html/gtk3/hello-world.png +0 -0
  998. data/vendor/local/share/gtk-doc/html/gtk3/help-about.png +0 -0
  999. data/vendor/local/share/gtk-doc/html/gtk3/help-contents.png +0 -0
  1000. data/vendor/local/share/gtk-doc/html/gtk3/home.png +0 -0
  1001. data/vendor/local/share/gtk-doc/html/gtk3/icon-view.png +0 -0
  1002. data/vendor/local/share/gtk-doc/html/gtk3/image-missing.png +0 -0
  1003. data/vendor/local/share/gtk-doc/html/gtk3/image.png +0 -0
  1004. data/vendor/local/share/gtk-doc/html/gtk3/index.html +903 -0
  1005. data/vendor/local/share/gtk-doc/html/gtk3/index.sgml +8183 -0
  1006. data/vendor/local/share/gtk-doc/html/gtk3/label.png +0 -0
  1007. data/vendor/local/share/gtk-doc/html/gtk3/layout-btlr.png +0 -0
  1008. data/vendor/local/share/gtk-doc/html/gtk3/layout-btrl.png +0 -0
  1009. data/vendor/local/share/gtk-doc/html/gtk3/layout-lrbt.png +0 -0
  1010. data/vendor/local/share/gtk-doc/html/gtk3/layout-lrtb.png +0 -0
  1011. data/vendor/local/share/gtk-doc/html/gtk3/layout-rlbt.png +0 -0
  1012. data/vendor/local/share/gtk-doc/html/gtk3/layout-rltb.png +0 -0
  1013. data/vendor/local/share/gtk-doc/html/gtk3/layout-tblr.png +0 -0
  1014. data/vendor/local/share/gtk-doc/html/gtk3/layout-tbrl.png +0 -0
  1015. data/vendor/local/share/gtk-doc/html/gtk3/left-center.png +0 -0
  1016. data/vendor/local/share/gtk-doc/html/gtk3/left-end.png +0 -0
  1017. data/vendor/local/share/gtk-doc/html/gtk3/left-start.png +0 -0
  1018. data/vendor/local/share/gtk-doc/html/gtk3/left.png +0 -0
  1019. data/vendor/local/share/gtk-doc/html/gtk3/levelbar.png +0 -0
  1020. data/vendor/local/share/gtk-doc/html/gtk3/linear.png +0 -0
  1021. data/vendor/local/share/gtk-doc/html/gtk3/link-button.png +0 -0
  1022. data/vendor/local/share/gtk-doc/html/gtk3/list-add.png +0 -0
  1023. data/vendor/local/share/gtk-doc/html/gtk3/list-and-tree.png +0 -0
  1024. data/vendor/local/share/gtk-doc/html/gtk3/list-remove.png +0 -0
  1025. data/vendor/local/share/gtk-doc/html/gtk3/lock-button.png +0 -0
  1026. data/vendor/local/share/gtk-doc/html/gtk3/lockbutton-locked.png +0 -0
  1027. data/vendor/local/share/gtk-doc/html/gtk3/lockbutton-sorry.png +0 -0
  1028. data/vendor/local/share/gtk-doc/html/gtk3/lockbutton-unlocked.png +0 -0
  1029. data/vendor/local/share/gtk-doc/html/gtk3/lockbutton.png +0 -0
  1030. data/vendor/local/share/gtk-doc/html/gtk3/media-floppy.png +0 -0
  1031. data/vendor/local/share/gtk-doc/html/gtk3/media-optical.png +0 -0
  1032. data/vendor/local/share/gtk-doc/html/gtk3/media-playback-pause.png +0 -0
  1033. data/vendor/local/share/gtk-doc/html/gtk3/media-playback-start-ltr.png +0 -0
  1034. data/vendor/local/share/gtk-doc/html/gtk3/media-playback-start-rtl.png +0 -0
  1035. data/vendor/local/share/gtk-doc/html/gtk3/media-playback-stop.png +0 -0
  1036. data/vendor/local/share/gtk-doc/html/gtk3/media-record.png +0 -0
  1037. data/vendor/local/share/gtk-doc/html/gtk3/media-seek-backward-ltr.png +0 -0
  1038. data/vendor/local/share/gtk-doc/html/gtk3/media-seek-backward-rtl.png +0 -0
  1039. data/vendor/local/share/gtk-doc/html/gtk3/media-seek-forward-ltr.png +0 -0
  1040. data/vendor/local/share/gtk-doc/html/gtk3/media-seek-forward-rtl.png +0 -0
  1041. data/vendor/local/share/gtk-doc/html/gtk3/media-skip-backward-ltr.png +0 -0
  1042. data/vendor/local/share/gtk-doc/html/gtk3/media-skip-backward-rtl.png +0 -0
  1043. data/vendor/local/share/gtk-doc/html/gtk3/media-skip-forward-ltr.png +0 -0
  1044. data/vendor/local/share/gtk-doc/html/gtk3/media-skip-forward-rtl.png +0 -0
  1045. data/vendor/local/share/gtk-doc/html/gtk3/menu-button.png +0 -0
  1046. data/vendor/local/share/gtk-doc/html/gtk3/menubar.png +0 -0
  1047. data/vendor/local/share/gtk-doc/html/gtk3/messagedialog.png +0 -0
  1048. data/vendor/local/share/gtk-doc/html/gtk3/migrating.html +106 -0
  1049. data/vendor/local/share/gtk-doc/html/gtk3/multiline-text.png +0 -0
  1050. data/vendor/local/share/gtk-doc/html/gtk3/network-idle.png +0 -0
  1051. data/vendor/local/share/gtk-doc/html/gtk3/notebook.png +0 -0
  1052. data/vendor/local/share/gtk-doc/html/gtk3/numerableicon.png +0 -0
  1053. data/vendor/local/share/gtk-doc/html/gtk3/numerableicon2.png +0 -0
  1054. data/vendor/local/share/gtk-doc/html/gtk3/options.png +0 -0
  1055. data/vendor/local/share/gtk-doc/html/gtk3/pagesetupdialog.png +0 -0
  1056. data/vendor/local/share/gtk-doc/html/gtk3/panes.png +0 -0
  1057. data/vendor/local/share/gtk-doc/html/gtk3/printdialog.png +0 -0
  1058. data/vendor/local/share/gtk-doc/html/gtk3/printer-error.png +0 -0
  1059. data/vendor/local/share/gtk-doc/html/gtk3/printer-info.png +0 -0
  1060. data/vendor/local/share/gtk-doc/html/gtk3/printer-paused.png +0 -0
  1061. data/vendor/local/share/gtk-doc/html/gtk3/printer-warning.png +0 -0
  1062. data/vendor/local/share/gtk-doc/html/gtk3/process-stop.png +0 -0
  1063. data/vendor/local/share/gtk-doc/html/gtk3/progressbar.png +0 -0
  1064. data/vendor/local/share/gtk-doc/html/gtk3/pt06.html +44 -0
  1065. data/vendor/local/share/gtk-doc/html/gtk3/radio-group.png +0 -0
  1066. data/vendor/local/share/gtk-doc/html/gtk3/recentchooserdialog.png +0 -0
  1067. data/vendor/local/share/gtk-doc/html/gtk3/right-center.png +0 -0
  1068. data/vendor/local/share/gtk-doc/html/gtk3/right-end.png +0 -0
  1069. data/vendor/local/share/gtk-doc/html/gtk3/right-start.png +0 -0
  1070. data/vendor/local/share/gtk-doc/html/gtk3/right.png +0 -0
  1071. data/vendor/local/share/gtk-doc/html/gtk3/scales.png +0 -0
  1072. data/vendor/local/share/gtk-doc/html/gtk3/scrolledwindow.png +0 -0
  1073. data/vendor/local/share/gtk-doc/html/gtk3/search-entry.png +0 -0
  1074. data/vendor/local/share/gtk-doc/html/gtk3/separator.png +0 -0
  1075. data/vendor/local/share/gtk-doc/html/gtk3/slices.png +0 -0
  1076. data/vendor/local/share/gtk-doc/html/gtk3/sliders.png +0 -0
  1077. data/vendor/local/share/gtk-doc/html/gtk3/spinbutton.png +0 -0
  1078. data/vendor/local/share/gtk-doc/html/gtk3/spinner.png +0 -0
  1079. data/vendor/local/share/gtk-doc/html/gtk3/statusbar.png +0 -0
  1080. data/vendor/local/share/gtk-doc/html/gtk3/style.css +266 -0
  1081. data/vendor/local/share/gtk-doc/html/gtk3/switch.png +0 -0
  1082. data/vendor/local/share/gtk-doc/html/gtk3/system-run.png +0 -0
  1083. data/vendor/local/share/gtk-doc/html/gtk3/text-x-generic.png +0 -0
  1084. data/vendor/local/share/gtk-doc/html/gtk3/theming.html +75 -0
  1085. data/vendor/local/share/gtk-doc/html/gtk3/toggle-button.png +0 -0
  1086. data/vendor/local/share/gtk-doc/html/gtk3/toolbar.png +0 -0
  1087. data/vendor/local/share/gtk-doc/html/gtk3/toolpalette.png +0 -0
  1088. data/vendor/local/share/gtk-doc/html/gtk3/tools-check-spelling.png +0 -0
  1089. data/vendor/local/share/gtk-doc/html/gtk3/tree-view-coordinates.png +0 -0
  1090. data/vendor/local/share/gtk-doc/html/gtk3/up-center.png +0 -0
  1091. data/vendor/local/share/gtk-doc/html/gtk3/up-end.png +0 -0
  1092. data/vendor/local/share/gtk-doc/html/gtk3/up-start.png +0 -0
  1093. data/vendor/local/share/gtk-doc/html/gtk3/up.png +0 -0
  1094. data/vendor/local/share/gtk-doc/html/gtk3/view-fullscreen.png +0 -0
  1095. data/vendor/local/share/gtk-doc/html/gtk3/view-refresh.png +0 -0
  1096. data/vendor/local/share/gtk-doc/html/gtk3/view-restore.png +0 -0
  1097. data/vendor/local/share/gtk-doc/html/gtk3/view-sort-ascending.png +0 -0
  1098. data/vendor/local/share/gtk-doc/html/gtk3/view-sort-descending.png +0 -0
  1099. data/vendor/local/share/gtk-doc/html/gtk3/volumebutton.png +0 -0
  1100. data/vendor/local/share/gtk-doc/html/gtk3/widget-hvalign.png +0 -0
  1101. data/vendor/local/share/gtk-doc/html/gtk3/window-close.png +0 -0
  1102. data/vendor/local/share/gtk-doc/html/gtk3/window-default.png +0 -0
  1103. data/vendor/local/share/gtk-doc/html/gtk3/window.png +0 -0
  1104. data/vendor/local/share/gtk-doc/html/gtk3/zoom-fit-best.png +0 -0
  1105. data/vendor/local/share/gtk-doc/html/gtk3/zoom-in.png +0 -0
  1106. data/vendor/local/share/gtk-doc/html/gtk3/zoom-original.png +0 -0
  1107. data/vendor/local/share/gtk-doc/html/gtk3/zoom-out.png +0 -0
  1108. data/vendor/local/share/license/gtk+/AUTHORS +65 -0
  1109. data/vendor/local/share/license/gtk+/COPYING +481 -0
  1110. data/vendor/local/share/locale/af/LC_MESSAGES/gtk30-properties.mo +0 -0
  1111. data/vendor/local/share/locale/af/LC_MESSAGES/gtk30.mo +0 -0
  1112. data/vendor/local/share/locale/am/LC_MESSAGES/gtk30-properties.mo +0 -0
  1113. data/vendor/local/share/locale/am/LC_MESSAGES/gtk30.mo +0 -0
  1114. data/vendor/local/share/locale/ang/LC_MESSAGES/gtk30-properties.mo +0 -0
  1115. data/vendor/local/share/locale/ang/LC_MESSAGES/gtk30.mo +0 -0
  1116. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk30-properties.mo +0 -0
  1117. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk30.mo +0 -0
  1118. data/vendor/local/share/locale/as/LC_MESSAGES/gtk30-properties.mo +0 -0
  1119. data/vendor/local/share/locale/as/LC_MESSAGES/gtk30.mo +0 -0
  1120. data/vendor/local/share/locale/ast/LC_MESSAGES/gtk30-properties.mo +0 -0
  1121. data/vendor/local/share/locale/ast/LC_MESSAGES/gtk30.mo +0 -0
  1122. data/vendor/local/share/locale/az/LC_MESSAGES/gtk30-properties.mo +0 -0
  1123. data/vendor/local/share/locale/az/LC_MESSAGES/gtk30.mo +0 -0
  1124. data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk30-properties.mo +0 -0
  1125. data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk30.mo +0 -0
  1126. data/vendor/local/share/locale/be/LC_MESSAGES/gtk30-properties.mo +0 -0
  1127. data/vendor/local/share/locale/be/LC_MESSAGES/gtk30.mo +0 -0
  1128. data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk30-properties.mo +0 -0
  1129. data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk30.mo +0 -0
  1130. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk30-properties.mo +0 -0
  1131. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk30.mo +0 -0
  1132. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk30-properties.mo +0 -0
  1133. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk30.mo +0 -0
  1134. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk30-properties.mo +0 -0
  1135. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk30.mo +0 -0
  1136. data/vendor/local/share/locale/br/LC_MESSAGES/gtk30-properties.mo +0 -0
  1137. data/vendor/local/share/locale/br/LC_MESSAGES/gtk30.mo +0 -0
  1138. data/vendor/local/share/locale/bs/LC_MESSAGES/gtk30-properties.mo +0 -0
  1139. data/vendor/local/share/locale/bs/LC_MESSAGES/gtk30.mo +0 -0
  1140. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk30-properties.mo +0 -0
  1141. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk30.mo +0 -0
  1142. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk30-properties.mo +0 -0
  1143. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk30.mo +0 -0
  1144. data/vendor/local/share/locale/crh/LC_MESSAGES/gtk30-properties.mo +0 -0
  1145. data/vendor/local/share/locale/crh/LC_MESSAGES/gtk30.mo +0 -0
  1146. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk30-properties.mo +0 -0
  1147. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk30.mo +0 -0
  1148. data/vendor/local/share/locale/cy/LC_MESSAGES/gtk30-properties.mo +0 -0
  1149. data/vendor/local/share/locale/cy/LC_MESSAGES/gtk30.mo +0 -0
  1150. data/vendor/local/share/locale/da/LC_MESSAGES/gtk30-properties.mo +0 -0
  1151. data/vendor/local/share/locale/da/LC_MESSAGES/gtk30.mo +0 -0
  1152. data/vendor/local/share/locale/de/LC_MESSAGES/gtk30-properties.mo +0 -0
  1153. data/vendor/local/share/locale/de/LC_MESSAGES/gtk30.mo +0 -0
  1154. data/vendor/local/share/locale/dz/LC_MESSAGES/gtk30-properties.mo +0 -0
  1155. data/vendor/local/share/locale/dz/LC_MESSAGES/gtk30.mo +0 -0
  1156. data/vendor/local/share/locale/el/LC_MESSAGES/gtk30-properties.mo +0 -0
  1157. data/vendor/local/share/locale/el/LC_MESSAGES/gtk30.mo +0 -0
  1158. data/vendor/local/share/locale/en/LC_MESSAGES/gtk30-properties.mo +0 -0
  1159. data/vendor/local/share/locale/en/LC_MESSAGES/gtk30.mo +0 -0
  1160. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/gtk30-properties.mo +0 -0
  1161. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/gtk30.mo +0 -0
  1162. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk30-properties.mo +0 -0
  1163. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk30.mo +0 -0
  1164. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk30-properties.mo +0 -0
  1165. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk30.mo +0 -0
  1166. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk30-properties.mo +0 -0
  1167. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk30.mo +0 -0
  1168. data/vendor/local/share/locale/es/LC_MESSAGES/gtk30-properties.mo +0 -0
  1169. data/vendor/local/share/locale/es/LC_MESSAGES/gtk30.mo +0 -0
  1170. data/vendor/local/share/locale/et/LC_MESSAGES/gtk30-properties.mo +0 -0
  1171. data/vendor/local/share/locale/et/LC_MESSAGES/gtk30.mo +0 -0
  1172. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk30-properties.mo +0 -0
  1173. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk30.mo +0 -0
  1174. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk30-properties.mo +0 -0
  1175. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk30.mo +0 -0
  1176. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1177. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk30.mo +0 -0
  1178. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1179. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk30.mo +0 -0
  1180. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk30-properties.mo +0 -0
  1181. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk30.mo +0 -0
  1182. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk30-properties.mo +0 -0
  1183. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk30.mo +0 -0
  1184. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk30-properties.mo +0 -0
  1185. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk30.mo +0 -0
  1186. data/vendor/local/share/locale/he/LC_MESSAGES/gtk30-properties.mo +0 -0
  1187. data/vendor/local/share/locale/he/LC_MESSAGES/gtk30.mo +0 -0
  1188. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1189. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk30.mo +0 -0
  1190. data/vendor/local/share/locale/hr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1191. data/vendor/local/share/locale/hr/LC_MESSAGES/gtk30.mo +0 -0
  1192. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk30-properties.mo +0 -0
  1193. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk30.mo +0 -0
  1194. data/vendor/local/share/locale/hy/LC_MESSAGES/gtk30-properties.mo +0 -0
  1195. data/vendor/local/share/locale/hy/LC_MESSAGES/gtk30.mo +0 -0
  1196. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk30-properties.mo +0 -0
  1197. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk30.mo +0 -0
  1198. data/vendor/local/share/locale/id/LC_MESSAGES/gtk30-properties.mo +0 -0
  1199. data/vendor/local/share/locale/id/LC_MESSAGES/gtk30.mo +0 -0
  1200. data/vendor/local/share/locale/io/LC_MESSAGES/gtk30-properties.mo +0 -0
  1201. data/vendor/local/share/locale/io/LC_MESSAGES/gtk30.mo +0 -0
  1202. data/vendor/local/share/locale/is/LC_MESSAGES/gtk30-properties.mo +0 -0
  1203. data/vendor/local/share/locale/is/LC_MESSAGES/gtk30.mo +0 -0
  1204. data/vendor/local/share/locale/it/LC_MESSAGES/gtk30-properties.mo +0 -0
  1205. data/vendor/local/share/locale/it/LC_MESSAGES/gtk30.mo +0 -0
  1206. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk30-properties.mo +0 -0
  1207. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk30.mo +0 -0
  1208. data/vendor/local/share/locale/ka/LC_MESSAGES/gtk30-properties.mo +0 -0
  1209. data/vendor/local/share/locale/ka/LC_MESSAGES/gtk30.mo +0 -0
  1210. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk30-properties.mo +0 -0
  1211. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk30.mo +0 -0
  1212. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1213. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk30.mo +0 -0
  1214. data/vendor/local/share/locale/km/LC_MESSAGES/gtk30-properties.mo +0 -0
  1215. data/vendor/local/share/locale/km/LC_MESSAGES/gtk30.mo +0 -0
  1216. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk30-properties.mo +0 -0
  1217. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk30.mo +0 -0
  1218. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk30-properties.mo +0 -0
  1219. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk30.mo +0 -0
  1220. data/vendor/local/share/locale/ku/LC_MESSAGES/gtk30-properties.mo +0 -0
  1221. data/vendor/local/share/locale/ku/LC_MESSAGES/gtk30.mo +0 -0
  1222. data/vendor/local/share/locale/ky/LC_MESSAGES/gtk30-properties.mo +0 -0
  1223. data/vendor/local/share/locale/ky/LC_MESSAGES/gtk30.mo +0 -0
  1224. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk30-properties.mo +0 -0
  1225. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk30.mo +0 -0
  1226. data/vendor/local/share/locale/li/LC_MESSAGES/gtk30-properties.mo +0 -0
  1227. data/vendor/local/share/locale/li/LC_MESSAGES/gtk30.mo +0 -0
  1228. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk30-properties.mo +0 -0
  1229. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk30.mo +0 -0
  1230. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk30-properties.mo +0 -0
  1231. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk30.mo +0 -0
  1232. data/vendor/local/share/locale/mai/LC_MESSAGES/gtk30-properties.mo +0 -0
  1233. data/vendor/local/share/locale/mai/LC_MESSAGES/gtk30.mo +0 -0
  1234. data/vendor/local/share/locale/mi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1235. data/vendor/local/share/locale/mi/LC_MESSAGES/gtk30.mo +0 -0
  1236. data/vendor/local/share/locale/mk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1237. data/vendor/local/share/locale/mk/LC_MESSAGES/gtk30.mo +0 -0
  1238. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk30-properties.mo +0 -0
  1239. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk30.mo +0 -0
  1240. data/vendor/local/share/locale/mn/LC_MESSAGES/gtk30-properties.mo +0 -0
  1241. data/vendor/local/share/locale/mn/LC_MESSAGES/gtk30.mo +0 -0
  1242. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1243. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk30.mo +0 -0
  1244. data/vendor/local/share/locale/ms/LC_MESSAGES/gtk30-properties.mo +0 -0
  1245. data/vendor/local/share/locale/ms/LC_MESSAGES/gtk30.mo +0 -0
  1246. data/vendor/local/share/locale/my/LC_MESSAGES/gtk30-properties.mo +0 -0
  1247. data/vendor/local/share/locale/my/LC_MESSAGES/gtk30.mo +0 -0
  1248. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk30-properties.mo +0 -0
  1249. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk30.mo +0 -0
  1250. data/vendor/local/share/locale/nds/LC_MESSAGES/gtk30-properties.mo +0 -0
  1251. data/vendor/local/share/locale/nds/LC_MESSAGES/gtk30.mo +0 -0
  1252. data/vendor/local/share/locale/ne/LC_MESSAGES/gtk30-properties.mo +0 -0
  1253. data/vendor/local/share/locale/ne/LC_MESSAGES/gtk30.mo +0 -0
  1254. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk30-properties.mo +0 -0
  1255. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk30.mo +0 -0
  1256. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk30-properties.mo +0 -0
  1257. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk30.mo +0 -0
  1258. data/vendor/local/share/locale/nso/LC_MESSAGES/gtk30-properties.mo +0 -0
  1259. data/vendor/local/share/locale/nso/LC_MESSAGES/gtk30.mo +0 -0
  1260. data/vendor/local/share/locale/oc/LC_MESSAGES/gtk30-properties.mo +0 -0
  1261. data/vendor/local/share/locale/oc/LC_MESSAGES/gtk30.mo +0 -0
  1262. data/vendor/local/share/locale/or/LC_MESSAGES/gtk30-properties.mo +0 -0
  1263. data/vendor/local/share/locale/or/LC_MESSAGES/gtk30.mo +0 -0
  1264. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk30-properties.mo +0 -0
  1265. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk30.mo +0 -0
  1266. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk30-properties.mo +0 -0
  1267. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk30.mo +0 -0
  1268. data/vendor/local/share/locale/ps/LC_MESSAGES/gtk30-properties.mo +0 -0
  1269. data/vendor/local/share/locale/ps/LC_MESSAGES/gtk30.mo +0 -0
  1270. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk30-properties.mo +0 -0
  1271. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk30.mo +0 -0
  1272. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk30-properties.mo +0 -0
  1273. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk30.mo +0 -0
  1274. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk30-properties.mo +0 -0
  1275. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk30.mo +0 -0
  1276. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk30-properties.mo +0 -0
  1277. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk30.mo +0 -0
  1278. data/vendor/local/share/locale/rw/LC_MESSAGES/gtk30-properties.mo +0 -0
  1279. data/vendor/local/share/locale/rw/LC_MESSAGES/gtk30.mo +0 -0
  1280. data/vendor/local/share/locale/si/LC_MESSAGES/gtk30-properties.mo +0 -0
  1281. data/vendor/local/share/locale/si/LC_MESSAGES/gtk30.mo +0 -0
  1282. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1283. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk30.mo +0 -0
  1284. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk30-properties.mo +0 -0
  1285. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk30.mo +0 -0
  1286. data/vendor/local/share/locale/sq/LC_MESSAGES/gtk30-properties.mo +0 -0
  1287. data/vendor/local/share/locale/sq/LC_MESSAGES/gtk30.mo +0 -0
  1288. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1289. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk30.mo +0 -0
  1290. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk30-properties.mo +0 -0
  1291. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk30.mo +0 -0
  1292. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk30-properties.mo +0 -0
  1293. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk30.mo +0 -0
  1294. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk30-properties.mo +0 -0
  1295. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk30.mo +0 -0
  1296. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk30-properties.mo +0 -0
  1297. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk30.mo +0 -0
  1298. data/vendor/local/share/locale/te/LC_MESSAGES/gtk30-properties.mo +0 -0
  1299. data/vendor/local/share/locale/te/LC_MESSAGES/gtk30.mo +0 -0
  1300. data/vendor/local/share/locale/th/LC_MESSAGES/gtk30-properties.mo +0 -0
  1301. data/vendor/local/share/locale/th/LC_MESSAGES/gtk30.mo +0 -0
  1302. data/vendor/local/share/locale/tk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1303. data/vendor/local/share/locale/tk/LC_MESSAGES/gtk30.mo +0 -0
  1304. data/vendor/local/share/locale/tr/LC_MESSAGES/gtk30-properties.mo +0 -0
  1305. data/vendor/local/share/locale/tr/LC_MESSAGES/gtk30.mo +0 -0
  1306. data/vendor/local/share/locale/tt/LC_MESSAGES/gtk30-properties.mo +0 -0
  1307. data/vendor/local/share/locale/tt/LC_MESSAGES/gtk30.mo +0 -0
  1308. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk30-properties.mo +0 -0
  1309. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk30.mo +0 -0
  1310. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk30-properties.mo +0 -0
  1311. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk30.mo +0 -0
  1312. data/vendor/local/share/locale/ur/LC_MESSAGES/gtk30-properties.mo +0 -0
  1313. data/vendor/local/share/locale/ur/LC_MESSAGES/gtk30.mo +0 -0
  1314. data/vendor/local/share/locale/uz/LC_MESSAGES/gtk30-properties.mo +0 -0
  1315. data/vendor/local/share/locale/uz/LC_MESSAGES/gtk30.mo +0 -0
  1316. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk30-properties.mo +0 -0
  1317. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk30.mo +0 -0
  1318. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1319. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk30.mo +0 -0
  1320. data/vendor/local/share/locale/wa/LC_MESSAGES/gtk30-properties.mo +0 -0
  1321. data/vendor/local/share/locale/wa/LC_MESSAGES/gtk30.mo +0 -0
  1322. data/vendor/local/share/locale/xh/LC_MESSAGES/gtk30-properties.mo +0 -0
  1323. data/vendor/local/share/locale/xh/LC_MESSAGES/gtk30.mo +0 -0
  1324. data/vendor/local/share/locale/yi/LC_MESSAGES/gtk30-properties.mo +0 -0
  1325. data/vendor/local/share/locale/yi/LC_MESSAGES/gtk30.mo +0 -0
  1326. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk30-properties.mo +0 -0
  1327. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk30.mo +0 -0
  1328. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk30-properties.mo +0 -0
  1329. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk30.mo +0 -0
  1330. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk30-properties.mo +0 -0
  1331. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk30.mo +0 -0
  1332. data/vendor/local/share/man/man1/gtk-launch.1 +53 -0
  1333. data/vendor/local/share/man/man1/gtk-query-immodules-3.0.1 +75 -0
  1334. data/vendor/local/share/man/man1/gtk-update-icon-cache.1 +88 -0
  1335. data/vendor/local/share/themes/Default/gtk-3.0/gtk-keys.css +3 -0
  1336. data/vendor/local/share/themes/Emacs/gtk-3.0/gtk-keys.css +121 -0
  1337. metadata +1449 -0
@@ -0,0 +1,200 @@
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>GtkColorSelectionDialog</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="SelectorWidgets.html" title="Selectors (Color/File/Font)">
9
+ <link rel="prev" href="GtkColorSelection.html" title="GtkColorSelection">
10
+ <link rel="next" href="GtkHSV.html" title="GtkHSV">
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="GtkColorSelection.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="SelectorWidgets.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="GtkHSV.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="#GtkColorSelectionDialog.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GtkColorSelectionDialog.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GtkColorSelectionDialog.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#GtkColorSelectionDialog.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
31
+  | 
32
+ <a href="#GtkColorSelectionDialog.properties" class="shortcut">Properties</a>
33
+ </td></tr>
34
+ </table>
35
+ <div class="refentry">
36
+ <a name="GtkColorSelectionDialog"></a><div class="titlepage"></div>
37
+ <div class="refnamediv"><table width="100%"><tr>
38
+ <td valign="top">
39
+ <h2><span class="refentrytitle"><a name="GtkColorSelectionDialog.top_of_page"></a>GtkColorSelectionDialog</span></h2>
40
+ <p>GtkColorSelectionDialog — Deprecated dialog box for selecting a color</p>
41
+ </td>
42
+ <td valign="top" align="right"><img src="colorsel.png"></td>
43
+ </tr></table></div>
44
+ <div class="refsynopsisdiv">
45
+ <a name="GtkColorSelectionDialog.synopsis"></a><h2>Synopsis</h2>
46
+ <pre class="synopsis">
47
+ #include &lt;gtk/gtk.h&gt;
48
+
49
+ struct <a class="link" href="GtkColorSelectionDialog.html#GtkColorSelectionDialog-struct" title="struct GtkColorSelectionDialog">GtkColorSelectionDialog</a>;
50
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkColorSelectionDialog.html#gtk-color-selection-dialog-new" title="gtk_color_selection_dialog_new ()">gtk_color_selection_dialog_new</a> (<em class="parameter"><code>const <span class="type">gchar</span> *title</code></em>);
51
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkColorSelectionDialog.html#gtk-color-selection-dialog-get-color-selection" title="gtk_color_selection_dialog_get_color_selection ()">gtk_color_selection_dialog_get_color_selection</a>
52
+ (<em class="parameter"><code><a class="link" href="GtkColorSelectionDialog.html" title="GtkColorSelectionDialog"><span class="type">GtkColorSelectionDialog</span></a> *colorsel</code></em>);
53
+ </pre>
54
+ </div>
55
+ <div class="refsect1">
56
+ <a name="GtkColorSelectionDialog.object-hierarchy"></a><h2>Object Hierarchy</h2>
57
+ <pre class="synopsis">
58
+ GObject
59
+ +----GInitiallyUnowned
60
+ +----<a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
61
+ +----<a class="link" href="GtkContainer.html" title="GtkContainer">GtkContainer</a>
62
+ +----<a class="link" href="GtkBin.html" title="GtkBin">GtkBin</a>
63
+ +----<a class="link" href="GtkWindow.html" title="GtkWindow">GtkWindow</a>
64
+ +----<a class="link" href="GtkDialog.html" title="GtkDialog">GtkDialog</a>
65
+ +----GtkColorSelectionDialog
66
+ </pre>
67
+ </div>
68
+ <div class="refsect1">
69
+ <a name="GtkColorSelectionDialog.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
70
+ <p>
71
+ GtkColorSelectionDialog implements
72
+ AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
73
+ </div>
74
+ <div class="refsect1">
75
+ <a name="GtkColorSelectionDialog.properties"></a><h2>Properties</h2>
76
+ <pre class="synopsis">
77
+ "<a class="link" href="GtkColorSelectionDialog.html#GtkColorSelectionDialog--cancel-button" title='The "cancel-button" property'>cancel-button</a>" <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>* : Read
78
+ "<a class="link" href="GtkColorSelectionDialog.html#GtkColorSelectionDialog--color-selection" title='The "color-selection" property'>color-selection</a>" <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>* : Read
79
+ "<a class="link" href="GtkColorSelectionDialog.html#GtkColorSelectionDialog--help-button" title='The "help-button" property'>help-button</a>" <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>* : Read
80
+ "<a class="link" href="GtkColorSelectionDialog.html#GtkColorSelectionDialog--ok-button" title='The "ok-button" property'>ok-button</a>" <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>* : Read
81
+ </pre>
82
+ </div>
83
+ <div class="refsect1">
84
+ <a name="GtkColorSelectionDialog.description"></a><h2>Description</h2>
85
+ <p>
86
+ The <a class="link" href="GtkColorSelectionDialog.html" title="GtkColorSelectionDialog"><span class="type">GtkColorSelectionDialog</span></a> provides a standard dialog which
87
+ allows the user to select a color much like the <a class="link" href="GtkFileChooserDialog.html" title="GtkFileChooserDialog"><span class="type">GtkFileChooserDialog</span></a>
88
+ provides a standard dialog for file selection.
89
+ </p>
90
+ <p>
91
+ Use <a class="link" href="GtkColorSelectionDialog.html#gtk-color-selection-dialog-get-color-selection" title="gtk_color_selection_dialog_get_color_selection ()"><code class="function">gtk_color_selection_dialog_get_color_selection()</code></a> to get the
92
+ <a class="link" href="GtkColorSelection.html" title="GtkColorSelection"><span class="type">GtkColorSelection</span></a> widget contained within the dialog. Use this widget
93
+ and its <a class="link" href="GtkColorSelection.html#gtk-color-selection-get-current-color" title="gtk_color_selection_get_current_color ()"><code class="function">gtk_color_selection_get_current_color()</code></a>
94
+ function to gain access to the selected color. Connect a handler
95
+ for this widget's <a class="link" href="GtkColorSelection.html#GtkColorSelection-color-changed" title='The "color-changed" signal'><span class="type">"color-changed"</span></a> signal to be notified
96
+ when the color changes.
97
+ </p>
98
+ <p>
99
+ </p>
100
+ <div class="refsect2">
101
+ <a name="GtkColorSelectionDialog-BUILDER-UI"></a><h3>GtkColorSelectionDialog as GtkBuildable</h3>
102
+ The GtkColorSelectionDialog implementation of the GtkBuildable interface
103
+ exposes the embedded <a class="link" href="GtkColorSelection.html" title="GtkColorSelection"><span class="type">GtkColorSelection</span></a> as internal child with the
104
+ name "color_selection". It also exposes the buttons with the names
105
+ "ok_button", "cancel_button" and "help_button".
106
+ </div>
107
+ <p>
108
+ </p>
109
+ </div>
110
+ <div class="refsect1">
111
+ <a name="GtkColorSelectionDialog.details"></a><h2>Details</h2>
112
+ <div class="refsect2">
113
+ <a name="GtkColorSelectionDialog-struct"></a><h3>struct GtkColorSelectionDialog</h3>
114
+ <pre class="programlisting">struct GtkColorSelectionDialog;</pre>
115
+ </div>
116
+ <hr>
117
+ <div class="refsect2">
118
+ <a name="gtk-color-selection-dialog-new"></a><h3>gtk_color_selection_dialog_new ()</h3>
119
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_color_selection_dialog_new (<em class="parameter"><code>const <span class="type">gchar</span> *title</code></em>);</pre>
120
+ <p>
121
+ Creates a new <a class="link" href="GtkColorSelectionDialog.html" title="GtkColorSelectionDialog"><span class="type">GtkColorSelectionDialog</span></a>.
122
+ </p>
123
+ <div class="variablelist"><table border="0" class="variablelist">
124
+ <colgroup>
125
+ <col align="left" valign="top">
126
+ <col>
127
+ </colgroup>
128
+ <tbody>
129
+ <tr>
130
+ <td><p><span class="term"><em class="parameter"><code>title</code></em> :</span></p></td>
131
+ <td>a string containing the title text for the dialog.</td>
132
+ </tr>
133
+ <tr>
134
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
135
+ <td>a <a class="link" href="GtkColorSelectionDialog.html" title="GtkColorSelectionDialog"><span class="type">GtkColorSelectionDialog</span></a>.</td>
136
+ </tr>
137
+ </tbody>
138
+ </table></div>
139
+ </div>
140
+ <hr>
141
+ <div class="refsect2">
142
+ <a name="gtk-color-selection-dialog-get-color-selection"></a><h3>gtk_color_selection_dialog_get_color_selection ()</h3>
143
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_color_selection_dialog_get_color_selection
144
+ (<em class="parameter"><code><a class="link" href="GtkColorSelectionDialog.html" title="GtkColorSelectionDialog"><span class="type">GtkColorSelectionDialog</span></a> *colorsel</code></em>);</pre>
145
+ <p>
146
+ Retrieves the <a class="link" href="GtkColorSelection.html" title="GtkColorSelection"><span class="type">GtkColorSelection</span></a> widget embedded in the dialog.
147
+ </p>
148
+ <div class="variablelist"><table border="0" class="variablelist">
149
+ <colgroup>
150
+ <col align="left" valign="top">
151
+ <col>
152
+ </colgroup>
153
+ <tbody>
154
+ <tr>
155
+ <td><p><span class="term"><em class="parameter"><code>colorsel</code></em> :</span></p></td>
156
+ <td>a <a class="link" href="GtkColorSelectionDialog.html" title="GtkColorSelectionDialog"><span class="type">GtkColorSelectionDialog</span></a>
157
+ </td>
158
+ </tr>
159
+ <tr>
160
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
161
+ <td>the embedded <a class="link" href="GtkColorSelection.html" title="GtkColorSelection"><span class="type">GtkColorSelection</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
162
+ </td>
163
+ </tr>
164
+ </tbody>
165
+ </table></div>
166
+ <p class="since">Since 2.14</p>
167
+ </div>
168
+ </div>
169
+ <div class="refsect1">
170
+ <a name="GtkColorSelectionDialog.property-details"></a><h2>Property Details</h2>
171
+ <div class="refsect2">
172
+ <a name="GtkColorSelectionDialog--cancel-button"></a><h3>The <code class="literal">"cancel-button"</code> property</h3>
173
+ <pre class="programlisting"> "cancel-button" <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>* : Read</pre>
174
+ <p>The cancel button of the dialog.</p>
175
+ </div>
176
+ <hr>
177
+ <div class="refsect2">
178
+ <a name="GtkColorSelectionDialog--color-selection"></a><h3>The <code class="literal">"color-selection"</code> property</h3>
179
+ <pre class="programlisting"> "color-selection" <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>* : Read</pre>
180
+ <p>The color selection embedded in the dialog.</p>
181
+ </div>
182
+ <hr>
183
+ <div class="refsect2">
184
+ <a name="GtkColorSelectionDialog--help-button"></a><h3>The <code class="literal">"help-button"</code> property</h3>
185
+ <pre class="programlisting"> "help-button" <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>* : Read</pre>
186
+ <p>The help button of the dialog.</p>
187
+ </div>
188
+ <hr>
189
+ <div class="refsect2">
190
+ <a name="GtkColorSelectionDialog--ok-button"></a><h3>The <code class="literal">"ok-button"</code> property</h3>
191
+ <pre class="programlisting"> "ok-button" <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>* : Read</pre>
192
+ <p>The OK button of the dialog.</p>
193
+ </div>
194
+ </div>
195
+ </div>
196
+ <div class="footer">
197
+ <hr>
198
+ Generated by GTK-Doc V1.18.1</div>
199
+ </body>
200
+ </html>
@@ -0,0 +1,1893 @@
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>GtkComboBox</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.0">
7
+ <link rel="home" href="index.html" title="GTK+ 3 Reference Manual">
8
+ <link rel="up" href="MenusAndCombos.html" title="Menus, Combo Box, Toolbar">
9
+ <link rel="prev" href="MenusAndCombos.html" title="Menus, Combo Box, Toolbar">
10
+ <link rel="next" href="GtkComboBoxText.html" title="GtkComboBoxText">
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="MenusAndCombos.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="MenusAndCombos.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
+ <th width="100%" align="center">GTK+ 3 Reference Manual</th>
21
+ <td><a accesskey="n" href="GtkComboBoxText.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="#GtkComboBox.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GtkComboBox.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GtkComboBox.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#GtkComboBox.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
31
+  | 
32
+ <a href="#GtkComboBox.properties" class="shortcut">Properties</a>
33
+  | 
34
+ <a href="#GtkComboBox.style-properties" class="shortcut">Style Properties</a>
35
+  | 
36
+ <a href="#GtkComboBox.signals" class="shortcut">Signals</a>
37
+ </td></tr>
38
+ </table>
39
+ <div class="refentry">
40
+ <a name="GtkComboBox"></a><div class="titlepage"></div>
41
+ <div class="refnamediv"><table width="100%"><tr>
42
+ <td valign="top">
43
+ <h2><span class="refentrytitle"><a name="GtkComboBox.top_of_page"></a>GtkComboBox</span></h2>
44
+ <p>GtkComboBox — A widget used to choose from a list of items</p>
45
+ </td>
46
+ <td valign="top" align="right"><img src="combo-box.png"></td>
47
+ </tr></table></div>
48
+ <div class="refsynopsisdiv">
49
+ <a name="GtkComboBox.synopsis"></a><h2>Synopsis</h2>
50
+ <pre class="synopsis">
51
+ #include &lt;gtk/gtk.h&gt;
52
+
53
+ struct <a class="link" href="GtkComboBox.html#GtkComboBox-struct" title="struct GtkComboBox">GtkComboBox</a>;
54
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkComboBox.html#gtk-combo-box-new" title="gtk_combo_box_new ()">gtk_combo_box_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
55
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkComboBox.html#gtk-combo-box-new-with-entry" title="gtk_combo_box_new_with_entry ()">gtk_combo_box_new_with_entry</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
56
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkComboBox.html#gtk-combo-box-new-with-model" title="gtk_combo_box_new_with_model ()">gtk_combo_box_new_with_model</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);
57
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkComboBox.html#gtk-combo-box-new-with-model-and-entry" title="gtk_combo_box_new_with_model_and_entry ()">gtk_combo_box_new_with_model_and_entry</a>
58
+ (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);
59
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkComboBox.html#gtk-combo-box-new-with-area" title="gtk_combo_box_new_with_area ()">gtk_combo_box_new_with_area</a> (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);
60
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkComboBox.html#gtk-combo-box-new-with-area-and-entry" title="gtk_combo_box_new_with_area_and_entry ()">gtk_combo_box_new_with_area_and_entry</a>
61
+ (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);
62
+ <span class="returnvalue">gint</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-wrap-width" title="gtk_combo_box_get_wrap_width ()">gtk_combo_box_get_wrap_width</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
63
+ <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-wrap-width" title="gtk_combo_box_set_wrap_width ()">gtk_combo_box_set_wrap_width</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
64
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>);
65
+ <span class="returnvalue">gint</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-row-span-column" title="gtk_combo_box_get_row_span_column ()">gtk_combo_box_get_row_span_column</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
66
+ <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-row-span-column" title="gtk_combo_box_set_row_span_column ()">gtk_combo_box_set_row_span_column</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
67
+ <em class="parameter"><code><span class="type">gint</span> row_span</code></em>);
68
+ <span class="returnvalue">gint</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-column-span-column" title="gtk_combo_box_get_column_span_column ()">gtk_combo_box_get_column_span_column</a>
69
+ (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
70
+ <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-column-span-column" title="gtk_combo_box_set_column_span_column ()">gtk_combo_box_set_column_span_column</a>
71
+ (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
72
+ <em class="parameter"><code><span class="type">gint</span> column_span</code></em>);
73
+ <span class="returnvalue">gint</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-active" title="gtk_combo_box_get_active ()">gtk_combo_box_get_active</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
74
+ <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-active" title="gtk_combo_box_set_active ()">gtk_combo_box_set_active</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
75
+ <em class="parameter"><code><span class="type">gint</span> index_</code></em>);
76
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-active-iter" title="gtk_combo_box_get_active_iter ()">gtk_combo_box_get_active_iter</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
77
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
78
+ <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-active-iter" title="gtk_combo_box_set_active_iter ()">gtk_combo_box_set_active_iter</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
79
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
80
+ <span class="returnvalue">gint</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-id-column" title="gtk_combo_box_get_id_column ()">gtk_combo_box_get_id_column</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
81
+ <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-id-column" title="gtk_combo_box_set_id_column ()">gtk_combo_box_set_id_column</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
82
+ <em class="parameter"><code><span class="type">gint</span> id_column</code></em>);
83
+ const <span class="returnvalue">gchar</span> * <a class="link" href="GtkComboBox.html#gtk-combo-box-get-active-id" title="gtk_combo_box_get_active_id ()">gtk_combo_box_get_active_id</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
84
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-active-id" title="gtk_combo_box_set_active_id ()">gtk_combo_box_set_active_id</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
85
+ <em class="parameter"><code>const <span class="type">gchar</span> *active_id</code></em>);
86
+ <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> * <a class="link" href="GtkComboBox.html#gtk-combo-box-get-model" title="gtk_combo_box_get_model ()">gtk_combo_box_get_model</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
87
+ <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-model" title="gtk_combo_box_set_model ()">gtk_combo_box_set_model</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
88
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);
89
+ <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-popup-for-device" title="gtk_combo_box_popup_for_device ()">gtk_combo_box_popup_for_device</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
90
+ <em class="parameter"><code><a href="../gdk3/GdkDevice.html"><span class="type">GdkDevice</span></a> *device</code></em>);
91
+ <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-popup" title="gtk_combo_box_popup ()">gtk_combo_box_popup</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
92
+ <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-popdown" title="gtk_combo_box_popdown ()">gtk_combo_box_popdown</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
93
+ <span class="returnvalue">AtkObject</span> * <a class="link" href="GtkComboBox.html#gtk-combo-box-get-popup-accessible" title="gtk_combo_box_get_popup_accessible ()">gtk_combo_box_get_popup_accessible</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
94
+ <a class="link" href="GtkTreeView.html#GtkTreeViewRowSeparatorFunc" title="GtkTreeViewRowSeparatorFunc ()"><span class="returnvalue">GtkTreeViewRowSeparatorFunc</span></a> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-row-separator-func" title="gtk_combo_box_get_row_separator_func ()">gtk_combo_box_get_row_separator_func</a>
95
+ (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
96
+ <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-row-separator-func" title="gtk_combo_box_set_row_separator_func ()">gtk_combo_box_set_row_separator_func</a>
97
+ (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
98
+ <em class="parameter"><code><a class="link" href="GtkTreeView.html#GtkTreeViewRowSeparatorFunc" title="GtkTreeViewRowSeparatorFunc ()"><span class="type">GtkTreeViewRowSeparatorFunc</span></a> func</code></em>,
99
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>,
100
+ <em class="parameter"><code><span class="type">GDestroyNotify</span> destroy</code></em>);
101
+ <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-add-tearoffs" title="gtk_combo_box_set_add_tearoffs ()">gtk_combo_box_set_add_tearoffs</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
102
+ <em class="parameter"><code><span class="type">gboolean</span> add_tearoffs</code></em>);
103
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-add-tearoffs" title="gtk_combo_box_get_add_tearoffs ()">gtk_combo_box_get_add_tearoffs</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
104
+ <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-title" title="gtk_combo_box_set_title ()">gtk_combo_box_set_title</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
105
+ <em class="parameter"><code>const <span class="type">gchar</span> *title</code></em>);
106
+ const <span class="returnvalue">gchar</span> * <a class="link" href="GtkComboBox.html#gtk-combo-box-get-title" title="gtk_combo_box_get_title ()">gtk_combo_box_get_title</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
107
+ <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-focus-on-click" title="gtk_combo_box_set_focus_on_click ()">gtk_combo_box_set_focus_on_click</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo</code></em>,
108
+ <em class="parameter"><code><span class="type">gboolean</span> focus_on_click</code></em>);
109
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-focus-on-click" title="gtk_combo_box_get_focus_on_click ()">gtk_combo_box_get_focus_on_click</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo</code></em>);
110
+ <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-button-sensitivity" title="gtk_combo_box_set_button_sensitivity ()">gtk_combo_box_set_button_sensitivity</a>
111
+ (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
112
+ <em class="parameter"><code><a class="link" href="GtkRange.html#GtkSensitivityType" title="enum GtkSensitivityType"><span class="type">GtkSensitivityType</span></a> sensitivity</code></em>);
113
+ <a class="link" href="GtkRange.html#GtkSensitivityType" title="enum GtkSensitivityType"><span class="returnvalue">GtkSensitivityType</span></a> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-button-sensitivity" title="gtk_combo_box_get_button_sensitivity ()">gtk_combo_box_get_button_sensitivity</a>
114
+ (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
115
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-has-entry" title="gtk_combo_box_get_has_entry ()">gtk_combo_box_get_has_entry</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
116
+ <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-entry-text-column" title="gtk_combo_box_set_entry_text_column ()">gtk_combo_box_set_entry_text_column</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
117
+ <em class="parameter"><code><span class="type">gint</span> text_column</code></em>);
118
+ <span class="returnvalue">gint</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-entry-text-column" title="gtk_combo_box_get_entry_text_column ()">gtk_combo_box_get_entry_text_column</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
119
+ <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-popup-fixed-width" title="gtk_combo_box_set_popup_fixed_width ()">gtk_combo_box_set_popup_fixed_width</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
120
+ <em class="parameter"><code><span class="type">gboolean</span> fixed</code></em>);
121
+ <span class="returnvalue">gboolean</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-popup-fixed-width" title="gtk_combo_box_get_popup_fixed_width ()">gtk_combo_box_get_popup_fixed_width</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
122
+ </pre>
123
+ </div>
124
+ <div class="refsect1">
125
+ <a name="GtkComboBox.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="GtkContainer.html" title="GtkContainer">GtkContainer</a>
131
+ +----<a class="link" href="GtkBin.html" title="GtkBin">GtkBin</a>
132
+ +----GtkComboBox
133
+ +----<a class="link" href="GtkAppChooserButton.html" title="GtkAppChooserButton">GtkAppChooserButton</a>
134
+ +----<a class="link" href="GtkComboBoxText.html" title="GtkComboBoxText">GtkComboBoxText</a>
135
+ </pre>
136
+ </div>
137
+ <div class="refsect1">
138
+ <a name="GtkComboBox.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
139
+ <p>
140
+ GtkComboBox implements
141
+ AtkImplementorIface, <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>, <a class="link" href="GtkCellLayout.html" title="GtkCellLayout">GtkCellLayout</a> and <a class="link" href="GtkCellEditable.html" title="GtkCellEditable">GtkCellEditable</a>.</p>
142
+ </div>
143
+ <div class="refsect1">
144
+ <a name="GtkComboBox.properties"></a><h2>Properties</h2>
145
+ <pre class="synopsis">
146
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--active" title='The "active" property'>active</a>" <span class="type">gint</span> : Read / Write
147
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--active-id" title='The "active-id" property'>active-id</a>" <span class="type">gchar</span>* : Read / Write
148
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--add-tearoffs" title='The "add-tearoffs" property'>add-tearoffs</a>" <span class="type">gboolean</span> : Read / Write
149
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--button-sensitivity" title='The "button-sensitivity" property'>button-sensitivity</a>" <a class="link" href="GtkRange.html#GtkSensitivityType" title="enum GtkSensitivityType"><span class="type">GtkSensitivityType</span></a> : Read / Write
150
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--cell-area" title='The "cell-area" property'>cell-area</a>" <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>* : Read / Write / Construct Only
151
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--column-span-column" title='The "column-span-column" property'>column-span-column</a>" <span class="type">gint</span> : Read / Write
152
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--entry-text-column" title='The "entry-text-column" property'>entry-text-column</a>" <span class="type">gint</span> : Read / Write
153
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--focus-on-click" title='The "focus-on-click" property'>focus-on-click</a>" <span class="type">gboolean</span> : Read / Write
154
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--has-entry" title='The "has-entry" property'>has-entry</a>" <span class="type">gboolean</span> : Read / Write / Construct Only
155
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--has-frame" title='The "has-frame" property'>has-frame</a>" <span class="type">gboolean</span> : Read / Write
156
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--id-column" title='The "id-column" property'>id-column</a>" <span class="type">gint</span> : Read / Write
157
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--model" title='The "model" property'>model</a>" <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>* : Read / Write
158
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--popup-fixed-width" title='The "popup-fixed-width" property'>popup-fixed-width</a>" <span class="type">gboolean</span> : Read / Write
159
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--popup-shown" title='The "popup-shown" property'>popup-shown</a>" <span class="type">gboolean</span> : Read
160
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--row-span-column" title='The "row-span-column" property'>row-span-column</a>" <span class="type">gint</span> : Read / Write
161
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--tearoff-title" title='The "tearoff-title" property'>tearoff-title</a>" <span class="type">gchar</span>* : Read / Write
162
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--wrap-width" title='The "wrap-width" property'>wrap-width</a>" <span class="type">gint</span> : Read / Write
163
+ </pre>
164
+ </div>
165
+ <div class="refsect1">
166
+ <a name="GtkComboBox.style-properties"></a><h2>Style Properties</h2>
167
+ <pre class="synopsis">
168
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--s-appears-as-list" title='The "appears-as-list" style property'>appears-as-list</a>" <span class="type">gboolean</span> : Read
169
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--s-arrow-scaling" title='The "arrow-scaling" style property'>arrow-scaling</a>" <span class="type">gfloat</span> : Read
170
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--s-arrow-size" title='The "arrow-size" style property'>arrow-size</a>" <span class="type">gint</span> : Read
171
+ "<a class="link" href="GtkComboBox.html#GtkComboBox--s-shadow-type" title='The "shadow-type" style property'>shadow-type</a>" <a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> : Read
172
+ </pre>
173
+ </div>
174
+ <div class="refsect1">
175
+ <a name="GtkComboBox.signals"></a><h2>Signals</h2>
176
+ <pre class="synopsis">
177
+ "<a class="link" href="GtkComboBox.html#GtkComboBox-changed" title='The "changed" signal'>changed</a>" : <code class="literal">Run Last</code>
178
+ "<a class="link" href="GtkComboBox.html#GtkComboBox-format-entry-text" title='The "format-entry-text" signal'>format-entry-text</a>" : <code class="literal">Run Last</code>
179
+ "<a class="link" href="GtkComboBox.html#GtkComboBox-move-active" title='The "move-active" signal'>move-active</a>" : <code class="literal">Action</code>
180
+ "<a class="link" href="GtkComboBox.html#GtkComboBox-popdown" title='The "popdown" signal'>popdown</a>" : <code class="literal">Action</code>
181
+ "<a class="link" href="GtkComboBox.html#GtkComboBox-popup" title='The "popup" signal'>popup</a>" : <code class="literal">Action</code>
182
+ </pre>
183
+ </div>
184
+ <div class="refsect1">
185
+ <a name="GtkComboBox.description"></a><h2>Description</h2>
186
+ <p>
187
+ A GtkComboBox is a widget that allows the user to choose from a list of
188
+ valid choices. The GtkComboBox displays the selected choice. When
189
+ activated, the GtkComboBox displays a popup which allows the user to
190
+ make a new choice. The style in which the selected value is displayed,
191
+ and the style of the popup is determined by the current theme. It may
192
+ be similar to a Windows-style combo box.
193
+ </p>
194
+ <p>
195
+ The GtkComboBox uses the model-view pattern; the list of valid choices
196
+ is specified in the form of a tree model, and the display of the choices
197
+ can be adapted to the data in the model by using cell renderers, as you
198
+ would in a tree view. This is possible since GtkComboBox implements the
199
+ <a class="link" href="GtkCellLayout.html" title="GtkCellLayout"><span class="type">GtkCellLayout</span></a> interface. The tree model holding the valid choices is
200
+ not restricted to a flat list, it can be a real tree, and the popup will
201
+ reflect the tree structure.
202
+ </p>
203
+ <p>
204
+ To allow the user to enter values not in the model, the 'has-entry'
205
+ property allows the GtkComboBox to contain a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>. This entry
206
+ can be accessed by calling <a class="link" href="GtkBin.html#gtk-bin-get-child" title="gtk_bin_get_child ()"><code class="function">gtk_bin_get_child()</code></a> on the combo box.
207
+ </p>
208
+ <p>
209
+ For a simple list of textual choices, the model-view API of GtkComboBox
210
+ can be a bit overwhelming. In this case, <a class="link" href="GtkComboBoxText.html" title="GtkComboBoxText"><span class="type">GtkComboBoxText</span></a> offers a
211
+ simple alternative. Both GtkComboBox and <a class="link" href="GtkComboBoxText.html" title="GtkComboBoxText"><span class="type">GtkComboBoxText</span></a> can contain
212
+ an entry.
213
+ </p>
214
+ </div>
215
+ <div class="refsect1">
216
+ <a name="GtkComboBox.details"></a><h2>Details</h2>
217
+ <div class="refsect2">
218
+ <a name="GtkComboBox-struct"></a><h3>struct GtkComboBox</h3>
219
+ <pre class="programlisting">struct GtkComboBox;</pre>
220
+ </div>
221
+ <hr>
222
+ <div class="refsect2">
223
+ <a name="gtk-combo-box-new"></a><h3>gtk_combo_box_new ()</h3>
224
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_combo_box_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
225
+ <p>
226
+ Creates a new empty <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>.
227
+ </p>
228
+ <div class="variablelist"><table border="0" class="variablelist">
229
+ <colgroup>
230
+ <col align="left" valign="top">
231
+ <col>
232
+ </colgroup>
233
+ <tbody><tr>
234
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
235
+ <td>A new <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>.</td>
236
+ </tr></tbody>
237
+ </table></div>
238
+ <p class="since">Since 2.4</p>
239
+ </div>
240
+ <hr>
241
+ <div class="refsect2">
242
+ <a name="gtk-combo-box-new-with-entry"></a><h3>gtk_combo_box_new_with_entry ()</h3>
243
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_combo_box_new_with_entry (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
244
+ <p>
245
+ Creates a new empty <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> with an entry.
246
+ </p>
247
+ <div class="variablelist"><table border="0" class="variablelist">
248
+ <colgroup>
249
+ <col align="left" valign="top">
250
+ <col>
251
+ </colgroup>
252
+ <tbody><tr>
253
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
254
+ <td>A new <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>.</td>
255
+ </tr></tbody>
256
+ </table></div>
257
+ </div>
258
+ <hr>
259
+ <div class="refsect2">
260
+ <a name="gtk-combo-box-new-with-model"></a><h3>gtk_combo_box_new_with_model ()</h3>
261
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_combo_box_new_with_model (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);</pre>
262
+ <p>
263
+ Creates a new <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> with the model initialized to <em class="parameter"><code>model</code></em>.
264
+ </p>
265
+ <div class="variablelist"><table border="0" class="variablelist">
266
+ <colgroup>
267
+ <col align="left" valign="top">
268
+ <col>
269
+ </colgroup>
270
+ <tbody>
271
+ <tr>
272
+ <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
273
+ <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
274
+ </tr>
275
+ <tr>
276
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
277
+ <td>A new <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>.</td>
278
+ </tr>
279
+ </tbody>
280
+ </table></div>
281
+ <p class="since">Since 2.4</p>
282
+ </div>
283
+ <hr>
284
+ <div class="refsect2">
285
+ <a name="gtk-combo-box-new-with-model-and-entry"></a><h3>gtk_combo_box_new_with_model_and_entry ()</h3>
286
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_combo_box_new_with_model_and_entry
287
+ (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);</pre>
288
+ <p>
289
+ Creates a new empty <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> with an entry
290
+ and with the model initialized to <em class="parameter"><code>model</code></em>.
291
+ </p>
292
+ <div class="variablelist"><table border="0" class="variablelist">
293
+ <colgroup>
294
+ <col align="left" valign="top">
295
+ <col>
296
+ </colgroup>
297
+ <tbody>
298
+ <tr>
299
+ <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
300
+ <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>
301
+ </td>
302
+ </tr>
303
+ <tr>
304
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
305
+ <td>A new <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
306
+ </td>
307
+ </tr>
308
+ </tbody>
309
+ </table></div>
310
+ </div>
311
+ <hr>
312
+ <div class="refsect2">
313
+ <a name="gtk-combo-box-new-with-area"></a><h3>gtk_combo_box_new_with_area ()</h3>
314
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_combo_box_new_with_area (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);</pre>
315
+ <p>
316
+ Creates a new empty <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> using <em class="parameter"><code>area</code></em> to layout cells.
317
+ </p>
318
+ <div class="variablelist"><table border="0" class="variablelist">
319
+ <colgroup>
320
+ <col align="left" valign="top">
321
+ <col>
322
+ </colgroup>
323
+ <tbody>
324
+ <tr>
325
+ <td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
326
+ <td>the <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> to use to layout cell renderers</td>
327
+ </tr>
328
+ <tr>
329
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
330
+ <td>A new <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>.</td>
331
+ </tr>
332
+ </tbody>
333
+ </table></div>
334
+ </div>
335
+ <hr>
336
+ <div class="refsect2">
337
+ <a name="gtk-combo-box-new-with-area-and-entry"></a><h3>gtk_combo_box_new_with_area_and_entry ()</h3>
338
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_combo_box_new_with_area_and_entry
339
+ (<em class="parameter"><code><a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> *area</code></em>);</pre>
340
+ <p>
341
+ Creates a new empty <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> with an entry.
342
+ </p>
343
+ <p>
344
+ The new combo box will use <em class="parameter"><code>area</code></em> to layout cells.
345
+ </p>
346
+ <div class="variablelist"><table border="0" class="variablelist">
347
+ <colgroup>
348
+ <col align="left" valign="top">
349
+ <col>
350
+ </colgroup>
351
+ <tbody>
352
+ <tr>
353
+ <td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
354
+ <td>the <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> to use to layout cell renderers</td>
355
+ </tr>
356
+ <tr>
357
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
358
+ <td>A new <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>.</td>
359
+ </tr>
360
+ </tbody>
361
+ </table></div>
362
+ </div>
363
+ <hr>
364
+ <div class="refsect2">
365
+ <a name="gtk-combo-box-get-wrap-width"></a><h3>gtk_combo_box_get_wrap_width ()</h3>
366
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_combo_box_get_wrap_width (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
367
+ <p>
368
+ Returns the wrap width which is used to determine the number of columns
369
+ for the popup menu. If the wrap width is larger than 1, the combo box
370
+ is in table mode.
371
+ </p>
372
+ <div class="variablelist"><table border="0" class="variablelist">
373
+ <colgroup>
374
+ <col align="left" valign="top">
375
+ <col>
376
+ </colgroup>
377
+ <tbody>
378
+ <tr>
379
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
380
+ <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
381
+ </td>
382
+ </tr>
383
+ <tr>
384
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
385
+ <td>the wrap width.</td>
386
+ </tr>
387
+ </tbody>
388
+ </table></div>
389
+ <p class="since">Since 2.6</p>
390
+ </div>
391
+ <hr>
392
+ <div class="refsect2">
393
+ <a name="gtk-combo-box-set-wrap-width"></a><h3>gtk_combo_box_set_wrap_width ()</h3>
394
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_wrap_width (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
395
+ <em class="parameter"><code><span class="type">gint</span> width</code></em>);</pre>
396
+ <p>
397
+ Sets the wrap width of <em class="parameter"><code>combo_box</code></em> to be <em class="parameter"><code>width</code></em>. The wrap width is basically
398
+ the preferred number of columns when you want the popup to be layed out
399
+ in a table.
400
+ </p>
401
+ <div class="variablelist"><table border="0" class="variablelist">
402
+ <colgroup>
403
+ <col align="left" valign="top">
404
+ <col>
405
+ </colgroup>
406
+ <tbody>
407
+ <tr>
408
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
409
+ <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
410
+ </td>
411
+ </tr>
412
+ <tr>
413
+ <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
414
+ <td>Preferred number of columns</td>
415
+ </tr>
416
+ </tbody>
417
+ </table></div>
418
+ <p class="since">Since 2.4</p>
419
+ </div>
420
+ <hr>
421
+ <div class="refsect2">
422
+ <a name="gtk-combo-box-get-row-span-column"></a><h3>gtk_combo_box_get_row_span_column ()</h3>
423
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_combo_box_get_row_span_column (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
424
+ <p>
425
+ Returns the column with row span information for <em class="parameter"><code>combo_box</code></em>.
426
+ </p>
427
+ <div class="variablelist"><table border="0" class="variablelist">
428
+ <colgroup>
429
+ <col align="left" valign="top">
430
+ <col>
431
+ </colgroup>
432
+ <tbody>
433
+ <tr>
434
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
435
+ <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
436
+ </td>
437
+ </tr>
438
+ <tr>
439
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
440
+ <td>the row span column.</td>
441
+ </tr>
442
+ </tbody>
443
+ </table></div>
444
+ <p class="since">Since 2.6</p>
445
+ </div>
446
+ <hr>
447
+ <div class="refsect2">
448
+ <a name="gtk-combo-box-set-row-span-column"></a><h3>gtk_combo_box_set_row_span_column ()</h3>
449
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_row_span_column (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
450
+ <em class="parameter"><code><span class="type">gint</span> row_span</code></em>);</pre>
451
+ <p>
452
+ Sets the column with row span information for <em class="parameter"><code>combo_box</code></em> to be <em class="parameter"><code>row_span</code></em>.
453
+ The row span column contains integers which indicate how many rows
454
+ an item should span.
455
+ </p>
456
+ <div class="variablelist"><table border="0" class="variablelist">
457
+ <colgroup>
458
+ <col align="left" valign="top">
459
+ <col>
460
+ </colgroup>
461
+ <tbody>
462
+ <tr>
463
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
464
+ <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>.</td>
465
+ </tr>
466
+ <tr>
467
+ <td><p><span class="term"><em class="parameter"><code>row_span</code></em> :</span></p></td>
468
+ <td>A column in the model passed during construction.</td>
469
+ </tr>
470
+ </tbody>
471
+ </table></div>
472
+ <p class="since">Since 2.4</p>
473
+ </div>
474
+ <hr>
475
+ <div class="refsect2">
476
+ <a name="gtk-combo-box-get-column-span-column"></a><h3>gtk_combo_box_get_column_span_column ()</h3>
477
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_combo_box_get_column_span_column
478
+ (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
479
+ <p>
480
+ Returns the column with column span information for <em class="parameter"><code>combo_box</code></em>.
481
+ </p>
482
+ <div class="variablelist"><table border="0" class="variablelist">
483
+ <colgroup>
484
+ <col align="left" valign="top">
485
+ <col>
486
+ </colgroup>
487
+ <tbody>
488
+ <tr>
489
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
490
+ <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
491
+ </td>
492
+ </tr>
493
+ <tr>
494
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
495
+ <td>the column span column.</td>
496
+ </tr>
497
+ </tbody>
498
+ </table></div>
499
+ <p class="since">Since 2.6</p>
500
+ </div>
501
+ <hr>
502
+ <div class="refsect2">
503
+ <a name="gtk-combo-box-set-column-span-column"></a><h3>gtk_combo_box_set_column_span_column ()</h3>
504
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_column_span_column
505
+ (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
506
+ <em class="parameter"><code><span class="type">gint</span> column_span</code></em>);</pre>
507
+ <p>
508
+ Sets the column with column span information for <em class="parameter"><code>combo_box</code></em> to be
509
+ <em class="parameter"><code>column_span</code></em>. The column span column contains integers which indicate
510
+ how many columns an item should span.
511
+ </p>
512
+ <div class="variablelist"><table border="0" class="variablelist">
513
+ <colgroup>
514
+ <col align="left" valign="top">
515
+ <col>
516
+ </colgroup>
517
+ <tbody>
518
+ <tr>
519
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
520
+ <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
521
+ </td>
522
+ </tr>
523
+ <tr>
524
+ <td><p><span class="term"><em class="parameter"><code>column_span</code></em> :</span></p></td>
525
+ <td>A column in the model passed during construction</td>
526
+ </tr>
527
+ </tbody>
528
+ </table></div>
529
+ <p class="since">Since 2.4</p>
530
+ </div>
531
+ <hr>
532
+ <div class="refsect2">
533
+ <a name="gtk-combo-box-get-active"></a><h3>gtk_combo_box_get_active ()</h3>
534
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_combo_box_get_active (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
535
+ <p>
536
+ Returns the index of the currently active item, or -1 if there's no
537
+ active item. If the model is a non-flat treemodel, and the active item
538
+ is not an immediate child of the root of the tree, this function returns
539
+ <code class="literal">gtk_tree_path_get_indices (path)[0]</code>, where
540
+ <code class="literal">path</code> is the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of the active item.
541
+ </p>
542
+ <div class="variablelist"><table border="0" class="variablelist">
543
+ <colgroup>
544
+ <col align="left" valign="top">
545
+ <col>
546
+ </colgroup>
547
+ <tbody>
548
+ <tr>
549
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
550
+ <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
551
+ </td>
552
+ </tr>
553
+ <tr>
554
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
555
+ <td>An integer which is the index of the currently active item,
556
+ or -1 if there's no active item.</td>
557
+ </tr>
558
+ </tbody>
559
+ </table></div>
560
+ <p class="since">Since 2.4</p>
561
+ </div>
562
+ <hr>
563
+ <div class="refsect2">
564
+ <a name="gtk-combo-box-set-active"></a><h3>gtk_combo_box_set_active ()</h3>
565
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_active (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
566
+ <em class="parameter"><code><span class="type">gint</span> index_</code></em>);</pre>
567
+ <p>
568
+ Sets the active item of <em class="parameter"><code>combo_box</code></em> to be the item at <em class="parameter"><code>index</code></em>.
569
+ </p>
570
+ <div class="variablelist"><table border="0" class="variablelist">
571
+ <colgroup>
572
+ <col align="left" valign="top">
573
+ <col>
574
+ </colgroup>
575
+ <tbody>
576
+ <tr>
577
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
578
+ <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
579
+ </td>
580
+ </tr>
581
+ <tr>
582
+ <td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
583
+ <td>An index in the model passed during construction, or -1 to have
584
+ no active item</td>
585
+ </tr>
586
+ </tbody>
587
+ </table></div>
588
+ <p class="since">Since 2.4</p>
589
+ </div>
590
+ <hr>
591
+ <div class="refsect2">
592
+ <a name="gtk-combo-box-get-active-iter"></a><h3>gtk_combo_box_get_active_iter ()</h3>
593
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_combo_box_get_active_iter (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
594
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
595
+ <p>
596
+ Sets <em class="parameter"><code>iter</code></em> to point to the current active item, if it exists.
597
+ </p>
598
+ <div class="variablelist"><table border="0" class="variablelist">
599
+ <colgroup>
600
+ <col align="left" valign="top">
601
+ <col>
602
+ </colgroup>
603
+ <tbody>
604
+ <tr>
605
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
606
+ <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
607
+ </td>
608
+ </tr>
609
+ <tr>
610
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
611
+ <td>The uninitialized <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
612
+ </td>
613
+ </tr>
614
+ <tr>
615
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
616
+ <td>
617
+ <code class="literal">TRUE</code>, if <em class="parameter"><code>iter</code></em> was set</td>
618
+ </tr>
619
+ </tbody>
620
+ </table></div>
621
+ <p class="since">Since 2.4</p>
622
+ </div>
623
+ <hr>
624
+ <div class="refsect2">
625
+ <a name="gtk-combo-box-set-active-iter"></a><h3>gtk_combo_box_set_active_iter ()</h3>
626
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_active_iter (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
627
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
628
+ <p>
629
+ Sets the current active item to be the one referenced by <em class="parameter"><code>iter</code></em>, or
630
+ unsets the active item if <em class="parameter"><code>iter</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
631
+ </p>
632
+ <div class="variablelist"><table border="0" class="variablelist">
633
+ <colgroup>
634
+ <col align="left" valign="top">
635
+ <col>
636
+ </colgroup>
637
+ <tbody>
638
+ <tr>
639
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
640
+ <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
641
+ </td>
642
+ </tr>
643
+ <tr>
644
+ <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
645
+ <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
646
+ </td>
647
+ </tr>
648
+ </tbody>
649
+ </table></div>
650
+ <p class="since">Since 2.4</p>
651
+ </div>
652
+ <hr>
653
+ <div class="refsect2">
654
+ <a name="gtk-combo-box-get-id-column"></a><h3>gtk_combo_box_get_id_column ()</h3>
655
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_combo_box_get_id_column (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
656
+ <p>
657
+ Returns the column which <em class="parameter"><code>combo_box</code></em> is using to get string IDs
658
+ for values from.
659
+ </p>
660
+ <div class="variablelist"><table border="0" class="variablelist">
661
+ <colgroup>
662
+ <col align="left" valign="top">
663
+ <col>
664
+ </colgroup>
665
+ <tbody>
666
+ <tr>
667
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
668
+ <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
669
+ </td>
670
+ </tr>
671
+ <tr>
672
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
673
+ <td>A column in the data source model of <em class="parameter"><code>combo_box</code></em>.</td>
674
+ </tr>
675
+ </tbody>
676
+ </table></div>
677
+ <p class="since">Since 3.0</p>
678
+ </div>
679
+ <hr>
680
+ <div class="refsect2">
681
+ <a name="gtk-combo-box-set-id-column"></a><h3>gtk_combo_box_set_id_column ()</h3>
682
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_id_column (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
683
+ <em class="parameter"><code><span class="type">gint</span> id_column</code></em>);</pre>
684
+ <p>
685
+ Sets the model column which <em class="parameter"><code>combo_box</code></em> should use to get string IDs
686
+ for values from. The column <em class="parameter"><code>id_column</code></em> in the model of <em class="parameter"><code>combo_box</code></em>
687
+ must be of type <code class="literal">G_TYPE_STRING</code>.
688
+ </p>
689
+ <div class="variablelist"><table border="0" class="variablelist">
690
+ <colgroup>
691
+ <col align="left" valign="top">
692
+ <col>
693
+ </colgroup>
694
+ <tbody>
695
+ <tr>
696
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
697
+ <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
698
+ </td>
699
+ </tr>
700
+ <tr>
701
+ <td><p><span class="term"><em class="parameter"><code>id_column</code></em> :</span></p></td>
702
+ <td>A column in <em class="parameter"><code>model</code></em> to get string IDs for values from</td>
703
+ </tr>
704
+ </tbody>
705
+ </table></div>
706
+ <p class="since">Since 3.0</p>
707
+ </div>
708
+ <hr>
709
+ <div class="refsect2">
710
+ <a name="gtk-combo-box-get-active-id"></a><h3>gtk_combo_box_get_active_id ()</h3>
711
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> * gtk_combo_box_get_active_id (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
712
+ <p>
713
+ Returns the ID of the active row of <em class="parameter"><code>combo_box</code></em>. This value is taken
714
+ from the active row and the column specified by the <a class="link" href="GtkComboBox.html#GtkComboBox--id-column" title='The "id-column" property'><span class="type">"id-column"</span></a>
715
+ property of <em class="parameter"><code>combo_box</code></em> (see <a class="link" href="GtkComboBox.html#gtk-combo-box-set-id-column" title="gtk_combo_box_set_id_column ()"><code class="function">gtk_combo_box_set_id_column()</code></a>).
716
+ </p>
717
+ <p>
718
+ The returned value is an interned string which means that you can
719
+ compare the pointer by value to other interned strings and that you
720
+ must not free it.
721
+ </p>
722
+ <p>
723
+ If the <a class="link" href="GtkComboBox.html#GtkComboBox--id-column" title='The "id-column" property'><span class="type">"id-column"</span></a> property of <em class="parameter"><code>combo_box</code></em> is not set, or if
724
+ no row is active, or if the active row has a <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> ID value, then <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
725
+ is returned.
726
+ </p>
727
+ <div class="variablelist"><table border="0" class="variablelist">
728
+ <colgroup>
729
+ <col align="left" valign="top">
730
+ <col>
731
+ </colgroup>
732
+ <tbody>
733
+ <tr>
734
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
735
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
736
+ </td>
737
+ </tr>
738
+ <tr>
739
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
740
+ <td>the ID of the active row, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
741
+ </td>
742
+ </tr>
743
+ </tbody>
744
+ </table></div>
745
+ <p class="since">Since 3.0</p>
746
+ </div>
747
+ <hr>
748
+ <div class="refsect2">
749
+ <a name="gtk-combo-box-set-active-id"></a><h3>gtk_combo_box_set_active_id ()</h3>
750
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_combo_box_set_active_id (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
751
+ <em class="parameter"><code>const <span class="type">gchar</span> *active_id</code></em>);</pre>
752
+ <p>
753
+ Changes the active row of <em class="parameter"><code>combo_box</code></em> to the one that has an ID equal to
754
+ <em class="parameter"><code>active_id</code></em>, or unsets the active row if <em class="parameter"><code>active_id</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. Rows having
755
+ a <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> ID string cannot be made active by this function.
756
+ </p>
757
+ <p>
758
+ If the <a class="link" href="GtkComboBox.html#GtkComboBox--id-column" title='The "id-column" property'><span class="type">"id-column"</span></a> property of <em class="parameter"><code>combo_box</code></em> is unset or if no
759
+ row has the given ID then the function does nothing and returns <code class="literal">FALSE</code>.
760
+ </p>
761
+ <div class="variablelist"><table border="0" class="variablelist">
762
+ <colgroup>
763
+ <col align="left" valign="top">
764
+ <col>
765
+ </colgroup>
766
+ <tbody>
767
+ <tr>
768
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
769
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
770
+ </td>
771
+ </tr>
772
+ <tr>
773
+ <td><p><span class="term"><em class="parameter"><code>active_id</code></em> :</span></p></td>
774
+ <td>the ID of the row to select, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
775
+ </td>
776
+ </tr>
777
+ <tr>
778
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
779
+ <td>
780
+ <code class="literal">TRUE</code> if a row with a matching ID was found. If a <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
781
+ <em class="parameter"><code>active_id</code></em> was given to unset the active row, the function
782
+ always returns <code class="literal">TRUE</code>.</td>
783
+ </tr>
784
+ </tbody>
785
+ </table></div>
786
+ <p class="since">Since 3.0</p>
787
+ </div>
788
+ <hr>
789
+ <div class="refsect2">
790
+ <a name="gtk-combo-box-get-model"></a><h3>gtk_combo_box_get_model ()</h3>
791
+ <pre class="programlisting"><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> * gtk_combo_box_get_model (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
792
+ <p>
793
+ Returns the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> which is acting as data source for <em class="parameter"><code>combo_box</code></em>.
794
+ </p>
795
+ <div class="variablelist"><table border="0" class="variablelist">
796
+ <colgroup>
797
+ <col align="left" valign="top">
798
+ <col>
799
+ </colgroup>
800
+ <tbody>
801
+ <tr>
802
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
803
+ <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
804
+ </td>
805
+ </tr>
806
+ <tr>
807
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
808
+ <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> which was passed
809
+ during construction. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
810
+ </td>
811
+ </tr>
812
+ </tbody>
813
+ </table></div>
814
+ <p class="since">Since 2.4</p>
815
+ </div>
816
+ <hr>
817
+ <div class="refsect2">
818
+ <a name="gtk-combo-box-set-model"></a><h3>gtk_combo_box_set_model ()</h3>
819
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_model (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
820
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);</pre>
821
+ <p>
822
+ Sets the model used by <em class="parameter"><code>combo_box</code></em> to be <em class="parameter"><code>model</code></em>. Will unset a previously set
823
+ model (if applicable). If model is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, then it will unset the model.
824
+ </p>
825
+ <p>
826
+ Note that this function does not clear the cell renderers, you have to
827
+ call <a class="link" href="GtkCellLayout.html#gtk-cell-layout-clear" title="gtk_cell_layout_clear ()"><code class="function">gtk_cell_layout_clear()</code></a> yourself if you need to set up different
828
+ cell renderers for the new model.
829
+ </p>
830
+ <div class="variablelist"><table border="0" class="variablelist">
831
+ <colgroup>
832
+ <col align="left" valign="top">
833
+ <col>
834
+ </colgroup>
835
+ <tbody>
836
+ <tr>
837
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
838
+ <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
839
+ </td>
840
+ </tr>
841
+ <tr>
842
+ <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
843
+ <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
844
+ </td>
845
+ </tr>
846
+ </tbody>
847
+ </table></div>
848
+ <p class="since">Since 2.4</p>
849
+ </div>
850
+ <hr>
851
+ <div class="refsect2">
852
+ <a name="gtk-combo-box-popup-for-device"></a><h3>gtk_combo_box_popup_for_device ()</h3>
853
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_popup_for_device (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
854
+ <em class="parameter"><code><a href="../gdk3/GdkDevice.html"><span class="type">GdkDevice</span></a> *device</code></em>);</pre>
855
+ <p>
856
+ Pops up the menu or dropdown list of <em class="parameter"><code>combo_box</code></em>, the popup window
857
+ will be grabbed so only <em class="parameter"><code>device</code></em> and its associated pointer/keyboard
858
+ are the only <a href="../gdk3/GdkDevice.html"><span class="type">GdkDevice</span></a>s able to send events to it.
859
+ </p>
860
+ <div class="variablelist"><table border="0" class="variablelist">
861
+ <colgroup>
862
+ <col align="left" valign="top">
863
+ <col>
864
+ </colgroup>
865
+ <tbody>
866
+ <tr>
867
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
868
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
869
+ </td>
870
+ </tr>
871
+ <tr>
872
+ <td><p><span class="term"><em class="parameter"><code>device</code></em> :</span></p></td>
873
+ <td>a <a href="../gdk3/GdkDevice.html"><span class="type">GdkDevice</span></a>
874
+ </td>
875
+ </tr>
876
+ </tbody>
877
+ </table></div>
878
+ <p class="since">Since 3.0</p>
879
+ </div>
880
+ <hr>
881
+ <div class="refsect2">
882
+ <a name="gtk-combo-box-popup"></a><h3>gtk_combo_box_popup ()</h3>
883
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_popup (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
884
+ <p>
885
+ Pops up the menu or dropdown list of <em class="parameter"><code>combo_box</code></em>.
886
+ </p>
887
+ <p>
888
+ This function is mostly intended for use by accessibility technologies;
889
+ applications should have little use for it.
890
+ </p>
891
+ <div class="variablelist"><table border="0" class="variablelist">
892
+ <colgroup>
893
+ <col align="left" valign="top">
894
+ <col>
895
+ </colgroup>
896
+ <tbody><tr>
897
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
898
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
899
+ </td>
900
+ </tr></tbody>
901
+ </table></div>
902
+ <p class="since">Since 2.4</p>
903
+ </div>
904
+ <hr>
905
+ <div class="refsect2">
906
+ <a name="gtk-combo-box-popdown"></a><h3>gtk_combo_box_popdown ()</h3>
907
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_popdown (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
908
+ <p>
909
+ Hides the menu or dropdown list of <em class="parameter"><code>combo_box</code></em>.
910
+ </p>
911
+ <p>
912
+ This function is mostly intended for use by accessibility technologies;
913
+ applications should have little use for it.
914
+ </p>
915
+ <div class="variablelist"><table border="0" class="variablelist">
916
+ <colgroup>
917
+ <col align="left" valign="top">
918
+ <col>
919
+ </colgroup>
920
+ <tbody><tr>
921
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
922
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
923
+ </td>
924
+ </tr></tbody>
925
+ </table></div>
926
+ <p class="since">Since 2.4</p>
927
+ </div>
928
+ <hr>
929
+ <div class="refsect2">
930
+ <a name="gtk-combo-box-get-popup-accessible"></a><h3>gtk_combo_box_get_popup_accessible ()</h3>
931
+ <pre class="programlisting"><span class="returnvalue">AtkObject</span> * gtk_combo_box_get_popup_accessible (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
932
+ <p>
933
+ Gets the accessible object corresponding to the combo box's popup.
934
+ </p>
935
+ <p>
936
+ This function is mostly intended for use by accessibility technologies;
937
+ applications should have little use for it.
938
+ </p>
939
+ <div class="variablelist"><table border="0" class="variablelist">
940
+ <colgroup>
941
+ <col align="left" valign="top">
942
+ <col>
943
+ </colgroup>
944
+ <tbody>
945
+ <tr>
946
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
947
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
948
+ </td>
949
+ </tr>
950
+ <tr>
951
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
952
+ <td>the accessible object corresponding
953
+ to the combo box's popup. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
954
+ </td>
955
+ </tr>
956
+ </tbody>
957
+ </table></div>
958
+ <p class="since">Since 2.6</p>
959
+ </div>
960
+ <hr>
961
+ <div class="refsect2">
962
+ <a name="gtk-combo-box-get-row-separator-func"></a><h3>gtk_combo_box_get_row_separator_func ()</h3>
963
+ <pre class="programlisting"><a class="link" href="GtkTreeView.html#GtkTreeViewRowSeparatorFunc" title="GtkTreeViewRowSeparatorFunc ()"><span class="returnvalue">GtkTreeViewRowSeparatorFunc</span></a> gtk_combo_box_get_row_separator_func
964
+ (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
965
+ <p>
966
+ Returns the current row separator function.
967
+ </p>
968
+ <div class="variablelist"><table border="0" class="variablelist">
969
+ <colgroup>
970
+ <col align="left" valign="top">
971
+ <col>
972
+ </colgroup>
973
+ <tbody>
974
+ <tr>
975
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
976
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
977
+ </td>
978
+ </tr>
979
+ <tr>
980
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
981
+ <td>the current row separator function.</td>
982
+ </tr>
983
+ </tbody>
984
+ </table></div>
985
+ <p class="since">Since 2.6</p>
986
+ </div>
987
+ <hr>
988
+ <div class="refsect2">
989
+ <a name="gtk-combo-box-set-row-separator-func"></a><h3>gtk_combo_box_set_row_separator_func ()</h3>
990
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_row_separator_func
991
+ (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
992
+ <em class="parameter"><code><a class="link" href="GtkTreeView.html#GtkTreeViewRowSeparatorFunc" title="GtkTreeViewRowSeparatorFunc ()"><span class="type">GtkTreeViewRowSeparatorFunc</span></a> func</code></em>,
993
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>,
994
+ <em class="parameter"><code><span class="type">GDestroyNotify</span> destroy</code></em>);</pre>
995
+ <p>
996
+ Sets the row separator function, which is used to determine
997
+ whether a row should be drawn as a separator. If the row separator
998
+ function is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, no separators are drawn. This is the default value.
999
+ </p>
1000
+ <div class="variablelist"><table border="0" class="variablelist">
1001
+ <colgroup>
1002
+ <col align="left" valign="top">
1003
+ <col>
1004
+ </colgroup>
1005
+ <tbody>
1006
+ <tr>
1007
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
1008
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
1009
+ </td>
1010
+ </tr>
1011
+ <tr>
1012
+ <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
1013
+ <td>a <a class="link" href="GtkTreeView.html#GtkTreeViewRowSeparatorFunc" title="GtkTreeViewRowSeparatorFunc ()"><span class="type">GtkTreeViewRowSeparatorFunc</span></a>
1014
+ </td>
1015
+ </tr>
1016
+ <tr>
1017
+ <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
1018
+ <td>user data to pass to <em class="parameter"><code>func</code></em>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1019
+ </td>
1020
+ </tr>
1021
+ <tr>
1022
+ <td><p><span class="term"><em class="parameter"><code>destroy</code></em> :</span></p></td>
1023
+ <td>destroy notifier for <em class="parameter"><code>data</code></em>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1024
+ </td>
1025
+ </tr>
1026
+ </tbody>
1027
+ </table></div>
1028
+ <p class="since">Since 2.6</p>
1029
+ </div>
1030
+ <hr>
1031
+ <div class="refsect2">
1032
+ <a name="gtk-combo-box-set-add-tearoffs"></a><h3>gtk_combo_box_set_add_tearoffs ()</h3>
1033
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_add_tearoffs (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
1034
+ <em class="parameter"><code><span class="type">gboolean</span> add_tearoffs</code></em>);</pre>
1035
+ <p>
1036
+ Sets whether the popup menu should have a tearoff
1037
+ menu item.
1038
+ </p>
1039
+ <div class="variablelist"><table border="0" class="variablelist">
1040
+ <colgroup>
1041
+ <col align="left" valign="top">
1042
+ <col>
1043
+ </colgroup>
1044
+ <tbody>
1045
+ <tr>
1046
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
1047
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
1048
+ </td>
1049
+ </tr>
1050
+ <tr>
1051
+ <td><p><span class="term"><em class="parameter"><code>add_tearoffs</code></em> :</span></p></td>
1052
+ <td>
1053
+ <code class="literal">TRUE</code> to add tearoff menu items</td>
1054
+ </tr>
1055
+ </tbody>
1056
+ </table></div>
1057
+ <p class="since">Since 2.6</p>
1058
+ </div>
1059
+ <hr>
1060
+ <div class="refsect2">
1061
+ <a name="gtk-combo-box-get-add-tearoffs"></a><h3>gtk_combo_box_get_add_tearoffs ()</h3>
1062
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_combo_box_get_add_tearoffs (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
1063
+ <p>
1064
+ Gets the current value of the :add-tearoffs property.
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>combo_box</code></em> :</span></p></td>
1074
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
1075
+ </td>
1076
+ </tr>
1077
+ <tr>
1078
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1079
+ <td>the current value of the :add-tearoffs property.</td>
1080
+ </tr>
1081
+ </tbody>
1082
+ </table></div>
1083
+ </div>
1084
+ <hr>
1085
+ <div class="refsect2">
1086
+ <a name="gtk-combo-box-set-title"></a><h3>gtk_combo_box_set_title ()</h3>
1087
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_title (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
1088
+ <em class="parameter"><code>const <span class="type">gchar</span> *title</code></em>);</pre>
1089
+ <p>
1090
+ Sets the menu's title in tearoff mode.
1091
+ </p>
1092
+ <div class="variablelist"><table border="0" class="variablelist">
1093
+ <colgroup>
1094
+ <col align="left" valign="top">
1095
+ <col>
1096
+ </colgroup>
1097
+ <tbody>
1098
+ <tr>
1099
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
1100
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
1101
+ </td>
1102
+ </tr>
1103
+ <tr>
1104
+ <td><p><span class="term"><em class="parameter"><code>title</code></em> :</span></p></td>
1105
+ <td>a title for the menu in tearoff mode</td>
1106
+ </tr>
1107
+ </tbody>
1108
+ </table></div>
1109
+ <p class="since">Since 2.10</p>
1110
+ </div>
1111
+ <hr>
1112
+ <div class="refsect2">
1113
+ <a name="gtk-combo-box-get-title"></a><h3>gtk_combo_box_get_title ()</h3>
1114
+ <pre class="programlisting">const <span class="returnvalue">gchar</span> * gtk_combo_box_get_title (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
1115
+ <p>
1116
+ Gets the current title of the menu in tearoff mode. See
1117
+ <a class="link" href="GtkComboBox.html#gtk-combo-box-set-add-tearoffs" title="gtk_combo_box_set_add_tearoffs ()"><code class="function">gtk_combo_box_set_add_tearoffs()</code></a>.
1118
+ </p>
1119
+ <div class="variablelist"><table border="0" class="variablelist">
1120
+ <colgroup>
1121
+ <col align="left" valign="top">
1122
+ <col>
1123
+ </colgroup>
1124
+ <tbody>
1125
+ <tr>
1126
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
1127
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
1128
+ </td>
1129
+ </tr>
1130
+ <tr>
1131
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1132
+ <td>the menu's title in tearoff mode. This is an internal copy of the
1133
+ string which must not be freed.</td>
1134
+ </tr>
1135
+ </tbody>
1136
+ </table></div>
1137
+ <p class="since">Since 2.10</p>
1138
+ </div>
1139
+ <hr>
1140
+ <div class="refsect2">
1141
+ <a name="gtk-combo-box-set-focus-on-click"></a><h3>gtk_combo_box_set_focus_on_click ()</h3>
1142
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_focus_on_click (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo</code></em>,
1143
+ <em class="parameter"><code><span class="type">gboolean</span> focus_on_click</code></em>);</pre>
1144
+ <p>
1145
+ Sets whether the combo box will grab focus when it is clicked with
1146
+ the mouse. Making mouse clicks not grab focus is useful in places
1147
+ like toolbars where you don't want the keyboard focus removed from
1148
+ the main area of the application.
1149
+ </p>
1150
+ <div class="variablelist"><table border="0" class="variablelist">
1151
+ <colgroup>
1152
+ <col align="left" valign="top">
1153
+ <col>
1154
+ </colgroup>
1155
+ <tbody>
1156
+ <tr>
1157
+ <td><p><span class="term"><em class="parameter"><code>combo</code></em> :</span></p></td>
1158
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
1159
+ </td>
1160
+ </tr>
1161
+ <tr>
1162
+ <td><p><span class="term"><em class="parameter"><code>focus_on_click</code></em> :</span></p></td>
1163
+ <td>whether the combo box grabs focus when clicked
1164
+ with the mouse</td>
1165
+ </tr>
1166
+ </tbody>
1167
+ </table></div>
1168
+ <p class="since">Since 2.6</p>
1169
+ </div>
1170
+ <hr>
1171
+ <div class="refsect2">
1172
+ <a name="gtk-combo-box-get-focus-on-click"></a><h3>gtk_combo_box_get_focus_on_click ()</h3>
1173
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_combo_box_get_focus_on_click (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo</code></em>);</pre>
1174
+ <p>
1175
+ Returns whether the combo box grabs focus when it is clicked
1176
+ with the mouse. See <a class="link" href="GtkComboBox.html#gtk-combo-box-set-focus-on-click" title="gtk_combo_box_set_focus_on_click ()"><code class="function">gtk_combo_box_set_focus_on_click()</code></a>.
1177
+ </p>
1178
+ <div class="variablelist"><table border="0" class="variablelist">
1179
+ <colgroup>
1180
+ <col align="left" valign="top">
1181
+ <col>
1182
+ </colgroup>
1183
+ <tbody>
1184
+ <tr>
1185
+ <td><p><span class="term"><em class="parameter"><code>combo</code></em> :</span></p></td>
1186
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
1187
+ </td>
1188
+ </tr>
1189
+ <tr>
1190
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1191
+ <td>
1192
+ <code class="literal">TRUE</code> if the combo box grabs focus when it is
1193
+ clicked with the mouse.</td>
1194
+ </tr>
1195
+ </tbody>
1196
+ </table></div>
1197
+ <p class="since">Since 2.6</p>
1198
+ </div>
1199
+ <hr>
1200
+ <div class="refsect2">
1201
+ <a name="gtk-combo-box-set-button-sensitivity"></a><h3>gtk_combo_box_set_button_sensitivity ()</h3>
1202
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_button_sensitivity
1203
+ (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
1204
+ <em class="parameter"><code><a class="link" href="GtkRange.html#GtkSensitivityType" title="enum GtkSensitivityType"><span class="type">GtkSensitivityType</span></a> sensitivity</code></em>);</pre>
1205
+ <p>
1206
+ Sets whether the dropdown button of the combo box should be
1207
+ always sensitive (<a class="link" href="GtkRange.html#GTK-SENSITIVITY-ON:CAPS"><code class="literal">GTK_SENSITIVITY_ON</code></a>), never sensitive (<a class="link" href="GtkRange.html#GTK-SENSITIVITY-OFF:CAPS"><code class="literal">GTK_SENSITIVITY_OFF</code></a>)
1208
+ or only if there is at least one item to display (<a class="link" href="GtkRange.html#GTK-SENSITIVITY-AUTO:CAPS"><code class="literal">GTK_SENSITIVITY_AUTO</code></a>).
1209
+ </p>
1210
+ <div class="variablelist"><table border="0" class="variablelist">
1211
+ <colgroup>
1212
+ <col align="left" valign="top">
1213
+ <col>
1214
+ </colgroup>
1215
+ <tbody>
1216
+ <tr>
1217
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
1218
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
1219
+ </td>
1220
+ </tr>
1221
+ <tr>
1222
+ <td><p><span class="term"><em class="parameter"><code>sensitivity</code></em> :</span></p></td>
1223
+ <td>specify the sensitivity of the dropdown button</td>
1224
+ </tr>
1225
+ </tbody>
1226
+ </table></div>
1227
+ <p class="since">Since 2.14</p>
1228
+ </div>
1229
+ <hr>
1230
+ <div class="refsect2">
1231
+ <a name="gtk-combo-box-get-button-sensitivity"></a><h3>gtk_combo_box_get_button_sensitivity ()</h3>
1232
+ <pre class="programlisting"><a class="link" href="GtkRange.html#GtkSensitivityType" title="enum GtkSensitivityType"><span class="returnvalue">GtkSensitivityType</span></a> gtk_combo_box_get_button_sensitivity
1233
+ (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
1234
+ <p>
1235
+ Returns whether the combo box sets the dropdown button
1236
+ sensitive or not when there are no items in the model.
1237
+ </p>
1238
+ <div class="variablelist"><table border="0" class="variablelist">
1239
+ <colgroup>
1240
+ <col align="left" valign="top">
1241
+ <col>
1242
+ </colgroup>
1243
+ <tbody>
1244
+ <tr>
1245
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
1246
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
1247
+ </td>
1248
+ </tr>
1249
+ <tr>
1250
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1251
+ <td>
1252
+ <a class="link" href="GtkRange.html#GTK-SENSITIVITY-ON:CAPS"><code class="literal">GTK_SENSITIVITY_ON</code></a> if the dropdown button
1253
+ is sensitive when the model is empty, <a class="link" href="GtkRange.html#GTK-SENSITIVITY-OFF:CAPS"><code class="literal">GTK_SENSITIVITY_OFF</code></a>
1254
+ if the button is always insensitive or
1255
+ <a class="link" href="GtkRange.html#GTK-SENSITIVITY-AUTO:CAPS"><code class="literal">GTK_SENSITIVITY_AUTO</code></a> if it is only sensitive as long as
1256
+ the model has one item to be selected.</td>
1257
+ </tr>
1258
+ </tbody>
1259
+ </table></div>
1260
+ <p class="since">Since 2.14</p>
1261
+ </div>
1262
+ <hr>
1263
+ <div class="refsect2">
1264
+ <a name="gtk-combo-box-get-has-entry"></a><h3>gtk_combo_box_get_has_entry ()</h3>
1265
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_combo_box_get_has_entry (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
1266
+ <p>
1267
+ Returns whether the combo box has an entry.
1268
+ </p>
1269
+ <div class="variablelist"><table border="0" class="variablelist">
1270
+ <colgroup>
1271
+ <col align="left" valign="top">
1272
+ <col>
1273
+ </colgroup>
1274
+ <tbody>
1275
+ <tr>
1276
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
1277
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
1278
+ </td>
1279
+ </tr>
1280
+ <tr>
1281
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1282
+ <td>whether there is an entry in <em class="parameter"><code>combo_box</code></em>.</td>
1283
+ </tr>
1284
+ </tbody>
1285
+ </table></div>
1286
+ <p class="since">Since 2.24</p>
1287
+ </div>
1288
+ <hr>
1289
+ <div class="refsect2">
1290
+ <a name="gtk-combo-box-set-entry-text-column"></a><h3>gtk_combo_box_set_entry_text_column ()</h3>
1291
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_entry_text_column (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
1292
+ <em class="parameter"><code><span class="type">gint</span> text_column</code></em>);</pre>
1293
+ <p>
1294
+ Sets the model column which <em class="parameter"><code>combo_box</code></em> should use to get strings from
1295
+ to be <em class="parameter"><code>text_column</code></em>. The column <em class="parameter"><code>text_column</code></em> in the model of <em class="parameter"><code>combo_box</code></em>
1296
+ must be of type <code class="literal">G_TYPE_STRING</code>.
1297
+ </p>
1298
+ <p>
1299
+ This is only relevant if <em class="parameter"><code>combo_box</code></em> has been created with
1300
+ <a class="link" href="GtkComboBox.html#GtkComboBox--has-entry" title='The "has-entry" property'><span class="type">"has-entry"</span></a> as <code class="literal">TRUE</code>.
1301
+ </p>
1302
+ <div class="variablelist"><table border="0" class="variablelist">
1303
+ <colgroup>
1304
+ <col align="left" valign="top">
1305
+ <col>
1306
+ </colgroup>
1307
+ <tbody>
1308
+ <tr>
1309
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
1310
+ <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
1311
+ </td>
1312
+ </tr>
1313
+ <tr>
1314
+ <td><p><span class="term"><em class="parameter"><code>text_column</code></em> :</span></p></td>
1315
+ <td>A column in <em class="parameter"><code>model</code></em> to get the strings from for
1316
+ the internal entry</td>
1317
+ </tr>
1318
+ </tbody>
1319
+ </table></div>
1320
+ <p class="since">Since 2.24</p>
1321
+ </div>
1322
+ <hr>
1323
+ <div class="refsect2">
1324
+ <a name="gtk-combo-box-get-entry-text-column"></a><h3>gtk_combo_box_get_entry_text_column ()</h3>
1325
+ <pre class="programlisting"><span class="returnvalue">gint</span> gtk_combo_box_get_entry_text_column (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
1326
+ <p>
1327
+ Returns the column which <em class="parameter"><code>combo_box</code></em> is using to get the strings
1328
+ from to display in the internal entry.
1329
+ </p>
1330
+ <div class="variablelist"><table border="0" class="variablelist">
1331
+ <colgroup>
1332
+ <col align="left" valign="top">
1333
+ <col>
1334
+ </colgroup>
1335
+ <tbody>
1336
+ <tr>
1337
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
1338
+ <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>.</td>
1339
+ </tr>
1340
+ <tr>
1341
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1342
+ <td>A column in the data source model of <em class="parameter"><code>combo_box</code></em>.</td>
1343
+ </tr>
1344
+ </tbody>
1345
+ </table></div>
1346
+ <p class="since">Since 2.24</p>
1347
+ </div>
1348
+ <hr>
1349
+ <div class="refsect2">
1350
+ <a name="gtk-combo-box-set-popup-fixed-width"></a><h3>gtk_combo_box_set_popup_fixed_width ()</h3>
1351
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_popup_fixed_width (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
1352
+ <em class="parameter"><code><span class="type">gboolean</span> fixed</code></em>);</pre>
1353
+ <p>
1354
+ Specifies whether the popup's width should be a fixed width
1355
+ matching the allocated width of the combo box.
1356
+ </p>
1357
+ <div class="variablelist"><table border="0" class="variablelist">
1358
+ <colgroup>
1359
+ <col align="left" valign="top">
1360
+ <col>
1361
+ </colgroup>
1362
+ <tbody>
1363
+ <tr>
1364
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
1365
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
1366
+ </td>
1367
+ </tr>
1368
+ <tr>
1369
+ <td><p><span class="term"><em class="parameter"><code>fixed</code></em> :</span></p></td>
1370
+ <td>whether to use a fixed popup width</td>
1371
+ </tr>
1372
+ </tbody>
1373
+ </table></div>
1374
+ <p class="since">Since 3.0</p>
1375
+ </div>
1376
+ <hr>
1377
+ <div class="refsect2">
1378
+ <a name="gtk-combo-box-get-popup-fixed-width"></a><h3>gtk_combo_box_get_popup_fixed_width ()</h3>
1379
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_combo_box_get_popup_fixed_width (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
1380
+ <p>
1381
+ Gets whether the popup uses a fixed width matching
1382
+ the allocated width of the combo box.
1383
+ </p>
1384
+ <div class="variablelist"><table border="0" class="variablelist">
1385
+ <colgroup>
1386
+ <col align="left" valign="top">
1387
+ <col>
1388
+ </colgroup>
1389
+ <tbody>
1390
+ <tr>
1391
+ <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
1392
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
1393
+ </td>
1394
+ </tr>
1395
+ <tr>
1396
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1397
+ <td>
1398
+ <code class="literal">TRUE</code> if the popup uses a fixed width</td>
1399
+ </tr>
1400
+ </tbody>
1401
+ </table></div>
1402
+ <p class="since">Since 3.0</p>
1403
+ </div>
1404
+ </div>
1405
+ <div class="refsect1">
1406
+ <a name="GtkComboBox.property-details"></a><h2>Property Details</h2>
1407
+ <div class="refsect2">
1408
+ <a name="GtkComboBox--active"></a><h3>The <code class="literal">"active"</code> property</h3>
1409
+ <pre class="programlisting"> "active" <span class="type">gint</span> : Read / Write</pre>
1410
+ <p>
1411
+ The item which is currently active. If the model is a non-flat treemodel,
1412
+ and the active item is not an immediate child of the root of the tree,
1413
+ this property has the value
1414
+ <code class="literal">gtk_tree_path_get_indices (path)[0]</code>,
1415
+ where <code class="literal">path</code> is the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of the active item.
1416
+ </p>
1417
+ <p>Allowed values: &gt;= G_MAXULONG</p>
1418
+ <p>Default value: -1</p>
1419
+ <p class="since">Since 2.4</p>
1420
+ </div>
1421
+ <hr>
1422
+ <div class="refsect2">
1423
+ <a name="GtkComboBox--active-id"></a><h3>The <code class="literal">"active-id"</code> property</h3>
1424
+ <pre class="programlisting"> "active-id" <span class="type">gchar</span>* : Read / Write</pre>
1425
+ <p>
1426
+ The value of the ID column of the active row.
1427
+ </p>
1428
+ <p>Default value: NULL</p>
1429
+ <p class="since">Since 3.0</p>
1430
+ </div>
1431
+ <hr>
1432
+ <div class="refsect2">
1433
+ <a name="GtkComboBox--add-tearoffs"></a><h3>The <code class="literal">"add-tearoffs"</code> property</h3>
1434
+ <pre class="programlisting"> "add-tearoffs" <span class="type">gboolean</span> : Read / Write</pre>
1435
+ <p>
1436
+ The add-tearoffs property controls whether generated menus
1437
+ have tearoff menu items.
1438
+ </p>
1439
+ <p>
1440
+ Note that this only affects menu style combo boxes.
1441
+ </p>
1442
+ <p>Default value: FALSE</p>
1443
+ <p class="since">Since 2.6</p>
1444
+ </div>
1445
+ <hr>
1446
+ <div class="refsect2">
1447
+ <a name="GtkComboBox--button-sensitivity"></a><h3>The <code class="literal">"button-sensitivity"</code> property</h3>
1448
+ <pre class="programlisting"> "button-sensitivity" <a class="link" href="GtkRange.html#GtkSensitivityType" title="enum GtkSensitivityType"><span class="type">GtkSensitivityType</span></a> : Read / Write</pre>
1449
+ <p>
1450
+ Whether the dropdown button is sensitive when
1451
+ the model is empty.
1452
+ </p>
1453
+ <p>Default value: GTK_SENSITIVITY_AUTO</p>
1454
+ <p class="since">Since 2.14</p>
1455
+ </div>
1456
+ <hr>
1457
+ <div class="refsect2">
1458
+ <a name="GtkComboBox--cell-area"></a><h3>The <code class="literal">"cell-area"</code> property</h3>
1459
+ <pre class="programlisting"> "cell-area" <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a>* : Read / Write / Construct Only</pre>
1460
+ <p>
1461
+ The <a class="link" href="GtkCellArea.html" title="GtkCellArea"><span class="type">GtkCellArea</span></a> used to layout cell renderers for this combo box.
1462
+ </p>
1463
+ <p>
1464
+ If no area is specified when creating the combo box with <a class="link" href="GtkComboBox.html#gtk-combo-box-new-with-area" title="gtk_combo_box_new_with_area ()"><code class="function">gtk_combo_box_new_with_area()</code></a>
1465
+ a horizontally oriented <a class="link" href="GtkCellAreaBox.html" title="GtkCellAreaBox"><span class="type">GtkCellAreaBox</span></a> will be used.
1466
+ </p>
1467
+ <p class="since">Since 3.0</p>
1468
+ </div>
1469
+ <hr>
1470
+ <div class="refsect2">
1471
+ <a name="GtkComboBox--column-span-column"></a><h3>The <code class="literal">"column-span-column"</code> property</h3>
1472
+ <pre class="programlisting"> "column-span-column" <span class="type">gint</span> : Read / Write</pre>
1473
+ <p>
1474
+ If this is set to a non-negative value, it must be the index of a column
1475
+ of type <code class="literal">G_TYPE_INT</code> in the model.
1476
+ </p>
1477
+ <p>
1478
+ The values of that column are used to determine how many columns a value
1479
+ in the list will span.
1480
+ </p>
1481
+ <p>Allowed values: &gt;= G_MAXULONG</p>
1482
+ <p>Default value: -1</p>
1483
+ <p class="since">Since 2.4</p>
1484
+ </div>
1485
+ <hr>
1486
+ <div class="refsect2">
1487
+ <a name="GtkComboBox--entry-text-column"></a><h3>The <code class="literal">"entry-text-column"</code> property</h3>
1488
+ <pre class="programlisting"> "entry-text-column" <span class="type">gint</span> : Read / Write</pre>
1489
+ <p>
1490
+ The column in the combo box's model to associate with strings from the entry
1491
+ if the combo was created with <a class="link" href="GtkComboBox.html#GtkComboBox--has-entry" title='The "has-entry" property'><span class="type">"has-entry"</span></a> = <code class="literal">TRUE</code>.
1492
+ </p>
1493
+ <p>Allowed values: &gt;= G_MAXULONG</p>
1494
+ <p>Default value: -1</p>
1495
+ <p class="since">Since 2.24</p>
1496
+ </div>
1497
+ <hr>
1498
+ <div class="refsect2">
1499
+ <a name="GtkComboBox--focus-on-click"></a><h3>The <code class="literal">"focus-on-click"</code> property</h3>
1500
+ <pre class="programlisting"> "focus-on-click" <span class="type">gboolean</span> : Read / Write</pre>
1501
+ <p>Whether the combo box grabs focus when it is clicked with the mouse.</p>
1502
+ <p>Default value: TRUE</p>
1503
+ </div>
1504
+ <hr>
1505
+ <div class="refsect2">
1506
+ <a name="GtkComboBox--has-entry"></a><h3>The <code class="literal">"has-entry"</code> property</h3>
1507
+ <pre class="programlisting"> "has-entry" <span class="type">gboolean</span> : Read / Write / Construct Only</pre>
1508
+ <p>
1509
+ Whether the combo box has an entry.
1510
+ </p>
1511
+ <p>Default value: FALSE</p>
1512
+ <p class="since">Since 2.24</p>
1513
+ </div>
1514
+ <hr>
1515
+ <div class="refsect2">
1516
+ <a name="GtkComboBox--has-frame"></a><h3>The <code class="literal">"has-frame"</code> property</h3>
1517
+ <pre class="programlisting"> "has-frame" <span class="type">gboolean</span> : Read / Write</pre>
1518
+ <p>
1519
+ The has-frame property controls whether a frame
1520
+ is drawn around the entry.
1521
+ </p>
1522
+ <p>Default value: TRUE</p>
1523
+ <p class="since">Since 2.6</p>
1524
+ </div>
1525
+ <hr>
1526
+ <div class="refsect2">
1527
+ <a name="GtkComboBox--id-column"></a><h3>The <code class="literal">"id-column"</code> property</h3>
1528
+ <pre class="programlisting"> "id-column" <span class="type">gint</span> : Read / Write</pre>
1529
+ <p>
1530
+ The column in the combo box's model that provides string
1531
+ IDs for the values in the model, if != -1.
1532
+ </p>
1533
+ <p>Allowed values: &gt;= G_MAXULONG</p>
1534
+ <p>Default value: -1</p>
1535
+ <p class="since">Since 3.0</p>
1536
+ </div>
1537
+ <hr>
1538
+ <div class="refsect2">
1539
+ <a name="GtkComboBox--model"></a><h3>The <code class="literal">"model"</code> property</h3>
1540
+ <pre class="programlisting"> "model" <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>* : Read / Write</pre>
1541
+ <p>
1542
+ The model from which the combo box takes the values shown
1543
+ in the list.
1544
+ </p>
1545
+ <p class="since">Since 2.4</p>
1546
+ </div>
1547
+ <hr>
1548
+ <div class="refsect2">
1549
+ <a name="GtkComboBox--popup-fixed-width"></a><h3>The <code class="literal">"popup-fixed-width"</code> property</h3>
1550
+ <pre class="programlisting"> "popup-fixed-width" <span class="type">gboolean</span> : Read / Write</pre>
1551
+ <p>
1552
+ Whether the popup's width should be a fixed width matching the
1553
+ allocated width of the combo box.
1554
+ </p>
1555
+ <p>Default value: TRUE</p>
1556
+ <p class="since">Since 3.0</p>
1557
+ </div>
1558
+ <hr>
1559
+ <div class="refsect2">
1560
+ <a name="GtkComboBox--popup-shown"></a><h3>The <code class="literal">"popup-shown"</code> property</h3>
1561
+ <pre class="programlisting"> "popup-shown" <span class="type">gboolean</span> : Read</pre>
1562
+ <p>
1563
+ Whether the combo boxes dropdown is popped up.
1564
+ Note that this property is mainly useful, because
1565
+ it allows you to connect to notify::popup-shown.
1566
+ </p>
1567
+ <p>Default value: FALSE</p>
1568
+ <p class="since">Since 2.10</p>
1569
+ </div>
1570
+ <hr>
1571
+ <div class="refsect2">
1572
+ <a name="GtkComboBox--row-span-column"></a><h3>The <code class="literal">"row-span-column"</code> property</h3>
1573
+ <pre class="programlisting"> "row-span-column" <span class="type">gint</span> : Read / Write</pre>
1574
+ <p>
1575
+ If this is set to a non-negative value, it must be the index of a column
1576
+ of type <code class="literal">G_TYPE_INT</code> in the model.
1577
+ </p>
1578
+ <p>
1579
+ The values of that column are used to determine how many rows a value in
1580
+ the list will span. Therefore, the values in the model column pointed to
1581
+ by this property must be greater than zero and not larger than wrap-width.
1582
+ </p>
1583
+ <p>Allowed values: &gt;= G_MAXULONG</p>
1584
+ <p>Default value: -1</p>
1585
+ <p class="since">Since 2.4</p>
1586
+ </div>
1587
+ <hr>
1588
+ <div class="refsect2">
1589
+ <a name="GtkComboBox--tearoff-title"></a><h3>The <code class="literal">"tearoff-title"</code> property</h3>
1590
+ <pre class="programlisting"> "tearoff-title" <span class="type">gchar</span>* : Read / Write</pre>
1591
+ <p>
1592
+ A title that may be displayed by the window manager
1593
+ when the popup is torn-off.
1594
+ </p>
1595
+ <p>Default value: NULL</p>
1596
+ <p class="since">Since 2.10</p>
1597
+ </div>
1598
+ <hr>
1599
+ <div class="refsect2">
1600
+ <a name="GtkComboBox--wrap-width"></a><h3>The <code class="literal">"wrap-width"</code> property</h3>
1601
+ <pre class="programlisting"> "wrap-width" <span class="type">gint</span> : Read / Write</pre>
1602
+ <p>
1603
+ If wrap-width is set to a positive value, the list will be
1604
+ displayed in multiple columns, the number of columns is
1605
+ determined by wrap-width.
1606
+ </p>
1607
+ <p>Allowed values: &gt;= 0</p>
1608
+ <p>Default value: 0</p>
1609
+ <p class="since">Since 2.4</p>
1610
+ </div>
1611
+ </div>
1612
+ <div class="refsect1">
1613
+ <a name="GtkComboBox.style-property-details"></a><h2>Style Property Details</h2>
1614
+ <div class="refsect2">
1615
+ <a name="GtkComboBox--s-appears-as-list"></a><h3>The <code class="literal">"appears-as-list"</code> style property</h3>
1616
+ <pre class="programlisting"> "appears-as-list" <span class="type">gboolean</span> : Read</pre>
1617
+ <p>Whether dropdowns should look like lists rather than menus.</p>
1618
+ <p>Default value: FALSE</p>
1619
+ </div>
1620
+ <hr>
1621
+ <div class="refsect2">
1622
+ <a name="GtkComboBox--s-arrow-scaling"></a><h3>The <code class="literal">"arrow-scaling"</code> style property</h3>
1623
+ <pre class="programlisting"> "arrow-scaling" <span class="type">gfloat</span> : Read</pre>
1624
+ <p>
1625
+ Sets the amount of space used up by the combobox arrow,
1626
+ proportional to the font size.
1627
+ </p>
1628
+ <p>Allowed values: [0,2]</p>
1629
+ <p>Default value: 1</p>
1630
+ <p class="since">Since 3.2</p>
1631
+ </div>
1632
+ <hr>
1633
+ <div class="refsect2">
1634
+ <a name="GtkComboBox--s-arrow-size"></a><h3>The <code class="literal">"arrow-size"</code> style property</h3>
1635
+ <pre class="programlisting"> "arrow-size" <span class="type">gint</span> : Read</pre>
1636
+ <p>
1637
+ Sets the minimum size of the arrow in the combo box. Note
1638
+ that the arrow size is coupled to the font size, so in case
1639
+ a larger font is used, the arrow will be larger than set
1640
+ by arrow size.
1641
+ </p>
1642
+ <p>Allowed values: &gt;= 0</p>
1643
+ <p>Default value: 15</p>
1644
+ <p class="since">Since 2.12</p>
1645
+ </div>
1646
+ <hr>
1647
+ <div class="refsect2">
1648
+ <a name="GtkComboBox--s-shadow-type"></a><h3>The <code class="literal">"shadow-type"</code> style property</h3>
1649
+ <pre class="programlisting"> "shadow-type" <a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> : Read</pre>
1650
+ <p>
1651
+ Which kind of shadow to draw around the combo box.
1652
+ </p>
1653
+ <p>Default value: GTK_SHADOW_NONE</p>
1654
+ <p class="since">Since 2.12</p>
1655
+ </div>
1656
+ </div>
1657
+ <div class="refsect1">
1658
+ <a name="GtkComboBox.signal-details"></a><h2>Signal Details</h2>
1659
+ <div class="refsect2">
1660
+ <a name="GtkComboBox-changed"></a><h3>The <code class="literal">"changed"</code> signal</h3>
1661
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *widget,
1662
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
1663
+ <p>
1664
+ The changed signal is emitted when the active
1665
+ item is changed. The can be due to the user selecting
1666
+ a different item from the list, or due to a
1667
+ call to <a class="link" href="GtkComboBox.html#gtk-combo-box-set-active-iter" title="gtk_combo_box_set_active_iter ()"><code class="function">gtk_combo_box_set_active_iter()</code></a>.
1668
+ It will also be emitted while typing into the entry of a combo box
1669
+ with an entry.
1670
+ </p>
1671
+ <div class="variablelist"><table border="0" class="variablelist">
1672
+ <colgroup>
1673
+ <col align="left" valign="top">
1674
+ <col>
1675
+ </colgroup>
1676
+ <tbody>
1677
+ <tr>
1678
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1679
+ <td>the object which received the signal</td>
1680
+ </tr>
1681
+ <tr>
1682
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1683
+ <td>user data set when the signal handler was connected.</td>
1684
+ </tr>
1685
+ </tbody>
1686
+ </table></div>
1687
+ <p class="since">Since 2.4</p>
1688
+ </div>
1689
+ <hr>
1690
+ <div class="refsect2">
1691
+ <a name="GtkComboBox-format-entry-text"></a><h3>The <code class="literal">"format-entry-text"</code> signal</h3>
1692
+ <pre class="programlisting"><span class="returnvalue">gchar</span>* user_function (<a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo,
1693
+ <span class="type">gchar</span> *path,
1694
+ <span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
1695
+ <p>
1696
+ For combo boxes that are created with an entry (See GtkComboBox:has-entry).
1697
+ </p>
1698
+ <p>
1699
+ A signal which allows you to change how the text displayed in a combo box's
1700
+ entry is displayed.
1701
+ </p>
1702
+ <p>
1703
+ Connect a signal handler which returns an allocated string representing
1704
+ <em class="parameter"><code>path</code></em>. That string will then be used to set the text in the combo box's entry.
1705
+ The default signal handler uses the text from the GtkComboBox::entry-text-column
1706
+ model column.
1707
+ </p>
1708
+ <p>
1709
+ Here's an example signal handler which fetches data from the model and
1710
+ displays it in the entry.
1711
+ </p>
1712
+ <div class="informalexample">
1713
+ <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
1714
+ <tbody>
1715
+ <tr>
1716
+ <td class="listing_lines" align="right"><pre>1
1717
+ 2
1718
+ 3
1719
+ 4
1720
+ 5
1721
+ 6
1722
+ 7
1723
+ 8
1724
+ 9
1725
+ 10
1726
+ 11
1727
+ 12
1728
+ 13
1729
+ 14
1730
+ 15
1731
+ 16
1732
+ 17
1733
+ 18</pre></td>
1734
+ <td class="listing_code"><pre class="programlisting"><span class="keyword">static</span><span class="normal"> gchar</span><span class="symbol">*</span>
1735
+ <span class="function">format_entry_text_callback</span><span class="normal"> </span><span class="symbol">(</span><span class="usertype">GtkComboBox</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">combo</span><span class="symbol">,</span>
1736
+ <span class="normal"> </span><span class="keyword">const</span><span class="normal"> </span><span class="usertype">gchar</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">path</span><span class="symbol">,</span>
1737
+ <span class="normal"> </span><span class="usertype">gpointer</span><span class="normal"> user_data</span><span class="symbol">)</span>
1738
+ <span class="cbracket">{</span>
1739
+ <span class="normal"> </span><span class="usertype">GtkTreeIter</span><span class="normal"> iter</span><span class="symbol">;</span>
1740
+ <span class="normal"> </span><span class="usertype">GtkTreeModel</span><span class="normal"> model</span><span class="symbol">;</span>
1741
+ <span class="normal"> </span><span class="usertype">gdouble</span><span class="normal"> value</span><span class="symbol">;</span>
1742
+ <span class="normal"> </span>
1743
+ <span class="normal"> model </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkComboBox.html#gtk-combo-box-get-model">gtk_combo_box_get_model</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">combo</span><span class="symbol">);</span>
1744
+
1745
+ <span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-get-iter-from-string">gtk_tree_model_get_iter_from_string</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> path</span><span class="symbol">);</span>
1746
+ <span class="normal"> </span><span class="function"><a href="GtkTreeModel.html#gtk-tree-model-get">gtk_tree_model_get</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">model</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">iter</span><span class="symbol">,</span><span class="normal"> </span>
1747
+ <span class="normal"> THE_DOUBLE_VALUE_COLUMN</span><span class="symbol">,</span><span class="normal"> </span><span class="symbol">&amp;</span><span class="normal">value</span><span class="symbol">,</span>
1748
+ <span class="normal"> </span><span class="symbol">-</span><span class="number">1</span><span class="symbol">);</span>
1749
+
1750
+ <span class="normal"> </span><span class="keyword">return</span><span class="normal"> </span><span class="function">g_strdup_printf</span><span class="normal"> </span><span class="symbol">(</span><span class="string">"%g"</span><span class="symbol">,</span><span class="normal"> value</span><span class="symbol">);</span>
1751
+ <span class="cbracket">}</span></pre></td>
1752
+ </tr>
1753
+ </tbody>
1754
+ </table>
1755
+ </div>
1756
+
1757
+ <p>
1758
+ </p>
1759
+ <div class="variablelist"><table border="0" class="variablelist">
1760
+ <colgroup>
1761
+ <col align="left" valign="top">
1762
+ <col>
1763
+ </colgroup>
1764
+ <tbody>
1765
+ <tr>
1766
+ <td><p><span class="term"><em class="parameter"><code>combo</code></em> :</span></p></td>
1767
+ <td>the object which received the signal</td>
1768
+ </tr>
1769
+ <tr>
1770
+ <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
1771
+ <td>the GtkTreePath string from the combo box's current model to format text for</td>
1772
+ </tr>
1773
+ <tr>
1774
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1775
+ <td>user data set when the signal handler was connected.</td>
1776
+ </tr>
1777
+ <tr>
1778
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1779
+ <td>a newly allocated string representing <em class="parameter"><code>path</code></em>
1780
+ for the current GtkComboBox model. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1781
+ </td>
1782
+ </tr>
1783
+ </tbody>
1784
+ </table></div>
1785
+ <p class="since">Since 3.4</p>
1786
+ </div>
1787
+ <hr>
1788
+ <div class="refsect2">
1789
+ <a name="GtkComboBox-move-active"></a><h3>The <code class="literal">"move-active"</code> signal</h3>
1790
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *widget,
1791
+ <a class="link" href="gtk3-Standard-Enumerations.html#GtkScrollType" title="enum GtkScrollType"><span class="type">GtkScrollType</span></a> scroll_type,
1792
+ <span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
1793
+ <p>
1794
+ The ::move-active signal is a
1795
+ <a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
1796
+ which gets emitted to move the active selection.
1797
+ </p>
1798
+ <div class="variablelist"><table border="0" class="variablelist">
1799
+ <colgroup>
1800
+ <col align="left" valign="top">
1801
+ <col>
1802
+ </colgroup>
1803
+ <tbody>
1804
+ <tr>
1805
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1806
+ <td>the object that received the signal</td>
1807
+ </tr>
1808
+ <tr>
1809
+ <td><p><span class="term"><em class="parameter"><code>scroll_type</code></em> :</span></p></td>
1810
+ <td>a <a class="link" href="gtk3-Standard-Enumerations.html#GtkScrollType" title="enum GtkScrollType"><span class="type">GtkScrollType</span></a>
1811
+ </td>
1812
+ </tr>
1813
+ <tr>
1814
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1815
+ <td>user data set when the signal handler was connected.</td>
1816
+ </tr>
1817
+ </tbody>
1818
+ </table></div>
1819
+ <p class="since">Since 2.12</p>
1820
+ </div>
1821
+ <hr>
1822
+ <div class="refsect2">
1823
+ <a name="GtkComboBox-popdown"></a><h3>The <code class="literal">"popdown"</code> signal</h3>
1824
+ <pre class="programlisting"><span class="returnvalue">gboolean</span> user_function (<a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *button,
1825
+ <span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
1826
+ <p>
1827
+ The ::popdown signal is a
1828
+ <a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
1829
+ which gets emitted to popdown the combo box list.
1830
+ </p>
1831
+ <p>
1832
+ The default bindings for this signal are Alt+Up and Escape.
1833
+ </p>
1834
+ <div class="variablelist"><table border="0" class="variablelist">
1835
+ <colgroup>
1836
+ <col align="left" valign="top">
1837
+ <col>
1838
+ </colgroup>
1839
+ <tbody>
1840
+ <tr>
1841
+ <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
1842
+ <td>the object which received the signal</td>
1843
+ </tr>
1844
+ <tr>
1845
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1846
+ <td>user data set when the signal handler was connected.</td>
1847
+ </tr>
1848
+ </tbody>
1849
+ </table></div>
1850
+ <p class="since">Since 2.12</p>
1851
+ </div>
1852
+ <hr>
1853
+ <div class="refsect2">
1854
+ <a name="GtkComboBox-popup"></a><h3>The <code class="literal">"popup"</code> signal</h3>
1855
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *widget,
1856
+ <span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
1857
+ <p>
1858
+ The ::popup signal is a
1859
+ <a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
1860
+ which gets emitted to popup the combo box list.
1861
+ </p>
1862
+ <p>
1863
+ The default binding for this signal is Alt+Down.
1864
+ </p>
1865
+ <div class="variablelist"><table border="0" class="variablelist">
1866
+ <colgroup>
1867
+ <col align="left" valign="top">
1868
+ <col>
1869
+ </colgroup>
1870
+ <tbody>
1871
+ <tr>
1872
+ <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1873
+ <td>the object that received the signal</td>
1874
+ </tr>
1875
+ <tr>
1876
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1877
+ <td>user data set when the signal handler was connected.</td>
1878
+ </tr>
1879
+ </tbody>
1880
+ </table></div>
1881
+ <p class="since">Since 2.12</p>
1882
+ </div>
1883
+ </div>
1884
+ <div class="refsect1">
1885
+ <a name="GtkComboBox.see-also"></a><h2>See Also</h2>
1886
+ <a class="link" href="GtkComboBoxText.html" title="GtkComboBoxText"><span class="type">GtkComboBoxText</span></a>, <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>, <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a>
1887
+ </div>
1888
+ </div>
1889
+ <div class="footer">
1890
+ <hr>
1891
+ Generated by GTK-Doc V1.18.1</div>
1892
+ </body>
1893
+ </html>