gtk3 1.2.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1599) hide show
  1. data/Rakefile +32 -0
  2. data/ext/gtk3/conversions.c +34 -0
  3. data/ext/gtk3/depend +11 -0
  4. data/ext/gtk3/extconf.rb +108 -0
  5. data/ext/gtk3/gtk3.def +10 -0
  6. data/ext/gtk3/init.c +38 -0
  7. data/ext/gtk3/rbgdkdisplay.c +39 -0
  8. data/ext/gtk3/rbgdkdragcontext.c +108 -0
  9. data/ext/gtk3/rbgdkevent.c +38 -0
  10. data/ext/gtk3/rbgdkscreen.c +61 -0
  11. data/ext/gtk3/rbgtk.c +625 -0
  12. data/ext/gtk3/rbgtk3.h +57 -0
  13. data/ext/gtk3/rbgtk3conversions.h +347 -0
  14. data/ext/gtk3/rbgtk3private.h +282 -0
  15. data/ext/gtk3/rbgtk3util.c +67 -0
  16. data/ext/gtk3/rbgtk3util.h +32 -0
  17. data/ext/gtk3/rbgtkaboutdialog.c +117 -0
  18. data/ext/gtk3/rbgtkaccelerator.c +78 -0
  19. data/ext/gtk3/rbgtkaccelgroup.c +199 -0
  20. data/ext/gtk3/rbgtkaccelgroupentry.c +93 -0
  21. data/ext/gtk3/rbgtkaccelkey.c +119 -0
  22. data/ext/gtk3/rbgtkaccellabel.c +55 -0
  23. data/ext/gtk3/rbgtkaccelmap.c +135 -0
  24. data/ext/gtk3/rbgtkaccessible.c +56 -0
  25. data/ext/gtk3/rbgtkaction.c +205 -0
  26. data/ext/gtk3/rbgtkactiongroup.c +466 -0
  27. data/ext/gtk3/rbgtkactivatable.c +30 -0
  28. data/ext/gtk3/rbgtkadjustment.c +98 -0
  29. data/ext/gtk3/rbgtkalignment.c +75 -0
  30. data/ext/gtk3/rbgtkallocation.c +166 -0
  31. data/ext/gtk3/rbgtkappchooser.c +47 -0
  32. data/ext/gtk3/rbgtkappchooserbutton.c +70 -0
  33. data/ext/gtk3/rbgtkappchooserdialog.c +68 -0
  34. data/ext/gtk3/rbgtkappchooserwidget.c +40 -0
  35. data/ext/gtk3/rbgtkapplication.c +69 -0
  36. data/ext/gtk3/rbgtkarrow.c +56 -0
  37. data/ext/gtk3/rbgtkaspectframe.c +56 -0
  38. data/ext/gtk3/rbgtkassistant.c +218 -0
  39. data/ext/gtk3/rbgtkbin.c +42 -0
  40. data/ext/gtk3/rbgtkbindingset.c +164 -0
  41. data/ext/gtk3/rbgtkborder.c +119 -0
  42. data/ext/gtk3/rbgtkbox.c +146 -0
  43. data/ext/gtk3/rbgtkbuildable.c +96 -0
  44. data/ext/gtk3/rbgtkbuilder.c +166 -0
  45. data/ext/gtk3/rbgtkbutton.c +93 -0
  46. data/ext/gtk3/rbgtkbuttonbox.c +87 -0
  47. data/ext/gtk3/rbgtkcalendar.c +118 -0
  48. data/ext/gtk3/rbgtkcelleditable.c +57 -0
  49. data/ext/gtk3/rbgtkcelllayout.c +144 -0
  50. data/ext/gtk3/rbgtkcellrenderer.c +116 -0
  51. data/ext/gtk3/rbgtkcellrendereraccel.c +41 -0
  52. data/ext/gtk3/rbgtkcellrenderercombo.c +38 -0
  53. data/ext/gtk3/rbgtkcellrendererpixbuf.c +41 -0
  54. data/ext/gtk3/rbgtkcellrendererprogress.c +38 -0
  55. data/ext/gtk3/rbgtkcellrendererspin.c +39 -0
  56. data/ext/gtk3/rbgtkcellrendererspinner.c +38 -0
  57. data/ext/gtk3/rbgtkcellrenderertext.c +48 -0
  58. data/ext/gtk3/rbgtkcellrenderertoggle.c +39 -0
  59. data/ext/gtk3/rbgtkcellview.c +109 -0
  60. data/ext/gtk3/rbgtkcheckbutton.c +64 -0
  61. data/ext/gtk3/rbgtkcheckmenuitem.c +64 -0
  62. data/ext/gtk3/rbgtkclipboard.c +389 -0
  63. data/ext/gtk3/rbgtkcolorbutton.c +49 -0
  64. data/ext/gtk3/rbgtkcolorselection.c +219 -0
  65. data/ext/gtk3/rbgtkcolorselectiondialog.c +56 -0
  66. data/ext/gtk3/rbgtkcombobox.c +147 -0
  67. data/ext/gtk3/rbgtkcomboboxtext.c +138 -0
  68. data/ext/gtk3/rbgtkconst.c +79 -0
  69. data/ext/gtk3/rbgtkcontainer.c +784 -0
  70. data/ext/gtk3/rbgtkcssprovider.c +110 -0
  71. data/ext/gtk3/rbgtkdialog.c +186 -0
  72. data/ext/gtk3/rbgtkdrag.c +93 -0
  73. data/ext/gtk3/rbgtkdrawingarea.c +42 -0
  74. data/ext/gtk3/rbgtkeditable.c +149 -0
  75. data/ext/gtk3/rbgtkentry.c +198 -0
  76. data/ext/gtk3/rbgtkentrybuffer.c +87 -0
  77. data/ext/gtk3/rbgtkentrycompletion.c +122 -0
  78. data/ext/gtk3/rbgtkeventbox.c +42 -0
  79. data/ext/gtk3/rbgtkexpander.c +49 -0
  80. data/ext/gtk3/rbgtkfilechooser.c +384 -0
  81. data/ext/gtk3/rbgtkfilechooserbutton.c +50 -0
  82. data/ext/gtk3/rbgtkfilechooserdialog.c +62 -0
  83. data/ext/gtk3/rbgtkfilechooserwidget.c +40 -0
  84. data/ext/gtk3/rbgtkfilefilter.c +128 -0
  85. data/ext/gtk3/rbgtkfilesystemerror.c +48 -0
  86. data/ext/gtk3/rbgtkfixed.c +61 -0
  87. data/ext/gtk3/rbgtkfontbutton.c +49 -0
  88. data/ext/gtk3/rbgtkfontchooser.c +78 -0
  89. data/ext/gtk3/rbgtkfontchooserdialog.c +56 -0
  90. data/ext/gtk3/rbgtkfontchooserwidget.c +45 -0
  91. data/ext/gtk3/rbgtkframe.c +69 -0
  92. data/ext/gtk3/rbgtkgrid.c +105 -0
  93. data/ext/gtk3/rbgtkhandlebox.c +45 -0
  94. data/ext/gtk3/rbgtkhsv.c +102 -0
  95. data/ext/gtk3/rbgtkiconfactory.c +85 -0
  96. data/ext/gtk3/rbgtkiconinfo.c +115 -0
  97. data/ext/gtk3/rbgtkiconset.c +84 -0
  98. data/ext/gtk3/rbgtkiconsize.c +91 -0
  99. data/ext/gtk3/rbgtkiconsource.c +184 -0
  100. data/ext/gtk3/rbgtkicontheme.c +268 -0
  101. data/ext/gtk3/rbgtkiconview.c +270 -0
  102. data/ext/gtk3/rbgtkimage.c +96 -0
  103. data/ext/gtk3/rbgtkimagemenuitem.c +67 -0
  104. data/ext/gtk3/rbgtkimcontext.c +133 -0
  105. data/ext/gtk3/rbgtkimcontextsimple.c +69 -0
  106. data/ext/gtk3/rbgtkimmulticontext.c +48 -0
  107. data/ext/gtk3/rbgtkinfobar.c +121 -0
  108. data/ext/gtk3/rbgtkinvisible.c +49 -0
  109. data/ext/gtk3/rbgtklabel.c +139 -0
  110. data/ext/gtk3/rbgtklayout.c +93 -0
  111. data/ext/gtk3/rbgtklinkbutton.c +55 -0
  112. data/ext/gtk3/rbgtkliststore.c +408 -0
  113. data/ext/gtk3/rbgtklockbutton.c +50 -0
  114. data/ext/gtk3/rbgtkmenu.c +168 -0
  115. data/ext/gtk3/rbgtkmenubar.c +43 -0
  116. data/ext/gtk3/rbgtkmenuitem.c +95 -0
  117. data/ext/gtk3/rbgtkmenushell.c +106 -0
  118. data/ext/gtk3/rbgtkmenutoolbutton.c +81 -0
  119. data/ext/gtk3/rbgtkmessagedialog.c +74 -0
  120. data/ext/gtk3/rbgtkmisc.c +70 -0
  121. data/ext/gtk3/rbgtknotebook.c +383 -0
  122. data/ext/gtk3/rbgtknumerableicon.c +50 -0
  123. data/ext/gtk3/rbgtkorientable.c +27 -0
  124. data/ext/gtk3/rbgtkoverlay.c +53 -0
  125. data/ext/gtk3/rbgtkpagesetup.c +195 -0
  126. data/ext/gtk3/rbgtkpagesetupunixdialog.c +94 -0
  127. data/ext/gtk3/rbgtkpaned.c +114 -0
  128. data/ext/gtk3/rbgtkpapersize.c +179 -0
  129. data/ext/gtk3/rbgtkplug.c +85 -0
  130. data/ext/gtk3/rbgtkprintcontext.c +125 -0
  131. data/ext/gtk3/rbgtkprinter.c +155 -0
  132. data/ext/gtk3/rbgtkprintjob.c +148 -0
  133. data/ext/gtk3/rbgtkprintoperation.c +149 -0
  134. data/ext/gtk3/rbgtkprintoperationpreview.c +59 -0
  135. data/ext/gtk3/rbgtkprintsettings.c +807 -0
  136. data/ext/gtk3/rbgtkprintunixdialog.c +90 -0
  137. data/ext/gtk3/rbgtkprogressbar.c +72 -0
  138. data/ext/gtk3/rbgtkradioaction.c +122 -0
  139. data/ext/gtk3/rbgtkradiobutton.c +89 -0
  140. data/ext/gtk3/rbgtkradiomenuitem.c +147 -0
  141. data/ext/gtk3/rbgtkradiotoolbutton.c +131 -0
  142. data/ext/gtk3/rbgtkrange.c +68 -0
  143. data/ext/gtk3/rbgtkrecentaction.c +64 -0
  144. data/ext/gtk3/rbgtkrecentchooser.c +198 -0
  145. data/ext/gtk3/rbgtkrecentchooserdialog.c +66 -0
  146. data/ext/gtk3/rbgtkrecentchoosermenu.c +50 -0
  147. data/ext/gtk3/rbgtkrecentchooserwidget.c +48 -0
  148. data/ext/gtk3/rbgtkrecentdata.c +187 -0
  149. data/ext/gtk3/rbgtkrecentfilter.c +169 -0
  150. data/ext/gtk3/rbgtkrecentfilterinfo.c +200 -0
  151. data/ext/gtk3/rbgtkrecentinfo.c +213 -0
  152. data/ext/gtk3/rbgtkrecentmanager.c +134 -0
  153. data/ext/gtk3/rbgtkscale.c +97 -0
  154. data/ext/gtk3/rbgtkscalebutton.c +84 -0
  155. data/ext/gtk3/rbgtkscrollable.c +31 -0
  156. data/ext/gtk3/rbgtkscrollbar.c +52 -0
  157. data/ext/gtk3/rbgtkscrolledwindow.c +122 -0
  158. data/ext/gtk3/rbgtkselection.c +168 -0
  159. data/ext/gtk3/rbgtkselectiondata.c +282 -0
  160. data/ext/gtk3/rbgtkseparator.c +44 -0
  161. data/ext/gtk3/rbgtkseparatormenuitem.c +39 -0
  162. data/ext/gtk3/rbgtkseparatortoolitem.c +38 -0
  163. data/ext/gtk3/rbgtksettings.c +229 -0
  164. data/ext/gtk3/rbgtksizegroup.c +66 -0
  165. data/ext/gtk3/rbgtksocket.c +82 -0
  166. data/ext/gtk3/rbgtkspinbutton.c +132 -0
  167. data/ext/gtk3/rbgtkspinner.c +55 -0
  168. data/ext/gtk3/rbgtkstatusbar.c +77 -0
  169. data/ext/gtk3/rbgtkstatusicon.c +122 -0
  170. data/ext/gtk3/rbgtkstock.c +213 -0
  171. data/ext/gtk3/rbgtkstylecontext.c +411 -0
  172. data/ext/gtk3/rbgtkstyleproperties.c +119 -0
  173. data/ext/gtk3/rbgtkstyleprovider.c +68 -0
  174. data/ext/gtk3/rbgtkswitch.c +40 -0
  175. data/ext/gtk3/rbgtktable.c +190 -0
  176. data/ext/gtk3/rbgtktargetlist.c +125 -0
  177. data/ext/gtk3/rbgtktearoffmenuitem.c +41 -0
  178. data/ext/gtk3/rbgtktextappearance.c +236 -0
  179. data/ext/gtk3/rbgtktextattributes.c +326 -0
  180. data/ext/gtk3/rbgtktextbuffer.c +899 -0
  181. data/ext/gtk3/rbgtktextchildanchor.c +56 -0
  182. data/ext/gtk3/rbgtktextiter.c +732 -0
  183. data/ext/gtk3/rbgtktextmark.c +71 -0
  184. data/ext/gtk3/rbgtktexttag.c +68 -0
  185. data/ext/gtk3/rbgtktexttagtable.c +96 -0
  186. data/ext/gtk3/rbgtktextview.c +336 -0
  187. data/ext/gtk3/rbgtkthemingengine.c +257 -0
  188. data/ext/gtk3/rbgtktoggleaction.c +61 -0
  189. data/ext/gtk3/rbgtktogglebutton.c +87 -0
  190. data/ext/gtk3/rbgtktoggletoolbutton.c +61 -0
  191. data/ext/gtk3/rbgtktoolbar.c +118 -0
  192. data/ext/gtk3/rbgtktoolbutton.c +66 -0
  193. data/ext/gtk3/rbgtktoolitem.c +200 -0
  194. data/ext/gtk3/rbgtktoolitemgroup.c +70 -0
  195. data/ext/gtk3/rbgtktoolshell.c +96 -0
  196. data/ext/gtk3/rbgtktooltip.c +100 -0
  197. data/ext/gtk3/rbgtktreedragdest.c +28 -0
  198. data/ext/gtk3/rbgtktreedragsource.c +28 -0
  199. data/ext/gtk3/rbgtktreeiter.c +258 -0
  200. data/ext/gtk3/rbgtktreemodel.c +236 -0
  201. data/ext/gtk3/rbgtktreemodelfilter.c +197 -0
  202. data/ext/gtk3/rbgtktreemodelsort.c +111 -0
  203. data/ext/gtk3/rbgtktreepath.c +191 -0
  204. data/ext/gtk3/rbgtktreerowreference.c +140 -0
  205. data/ext/gtk3/rbgtktreeselection.c +205 -0
  206. data/ext/gtk3/rbgtktreesortable.c +122 -0
  207. data/ext/gtk3/rbgtktreestore.c +330 -0
  208. data/ext/gtk3/rbgtktreeview.c +715 -0
  209. data/ext/gtk3/rbgtktreeviewcolumn.c +256 -0
  210. data/ext/gtk3/rbgtkuimanager.c +189 -0
  211. data/ext/gtk3/rbgtkviewport.c +44 -0
  212. data/ext/gtk3/rbgtkvolumebutton.c +41 -0
  213. data/ext/gtk3/rbgtkwidget.c +1564 -0
  214. data/ext/gtk3/rbgtkwidgetpath.c +229 -0
  215. data/ext/gtk3/rbgtkwindow.c +557 -0
  216. data/ext/gtk3/rbgtkwindowgroup.c +80 -0
  217. data/extconf.rb +49 -0
  218. data/lib/1.8/gtk3.so +0 -0
  219. data/lib/1.9/gtk3.so +0 -0
  220. data/lib/gtk3.rb +10 -0
  221. data/lib/gtk3/base.rb +67 -0
  222. data/lib/gtk3/deprecated.rb +1001 -0
  223. data/sample/gtk-demo/README +7 -0
  224. data/sample/gtk-demo/alphatest.png +0 -0
  225. data/sample/gtk-demo/apple-red.png +0 -0
  226. data/sample/gtk-demo/appwindow.rb +233 -0
  227. data/sample/gtk-demo/background.jpg +0 -0
  228. data/sample/gtk-demo/builder.rb +51 -0
  229. data/sample/gtk-demo/button_box.rb +84 -0
  230. data/sample/gtk-demo/cairo-arc-negative.rb +41 -0
  231. data/sample/gtk-demo/cairo-arc.rb +41 -0
  232. data/sample/gtk-demo/cairo-clip-image.rb +51 -0
  233. data/sample/gtk-demo/cairo-clip-rectangle.rb +35 -0
  234. data/sample/gtk-demo/cairo-clip.rb +35 -0
  235. data/sample/gtk-demo/cairo-curve-rectangle.rb +76 -0
  236. data/sample/gtk-demo/cairo-curve-to.rb +43 -0
  237. data/sample/gtk-demo/cairo-dash.rb +39 -0
  238. data/sample/gtk-demo/cairo-fill-and-stroke.rb +32 -0
  239. data/sample/gtk-demo/cairo-fill-and-stroke2.rb +38 -0
  240. data/sample/gtk-demo/cairo-gradient.rb +35 -0
  241. data/sample/gtk-demo/cairo-image-pattern.rb +39 -0
  242. data/sample/gtk-demo/cairo-image.rb +49 -0
  243. data/sample/gtk-demo/cairo-line-cap.rb +53 -0
  244. data/sample/gtk-demo/cairo-line-join.rb +41 -0
  245. data/sample/gtk-demo/cairo-long-lines.rb +41 -0
  246. data/sample/gtk-demo/cairo-operator.rb +83 -0
  247. data/sample/gtk-demo/cairo-path.rb +28 -0
  248. data/sample/gtk-demo/cairo-pattern-fill.rb +88 -0
  249. data/sample/gtk-demo/cairo-self-intersect.rb +32 -0
  250. data/sample/gtk-demo/cairo-text-align-center.rb +45 -0
  251. data/sample/gtk-demo/cairo-text-extents.rb +46 -0
  252. data/sample/gtk-demo/cairo-text.rb +43 -0
  253. data/sample/gtk-demo/changedisplay.rb +408 -0
  254. data/sample/gtk-demo/clipboard.rb +72 -0
  255. data/sample/gtk-demo/colorsel.rb +84 -0
  256. data/sample/gtk-demo/common.rb +88 -0
  257. data/sample/gtk-demo/demo.ui +258 -0
  258. data/sample/gtk-demo/dialog.rb +137 -0
  259. data/sample/gtk-demo/drawingarea.rb +226 -0
  260. data/sample/gtk-demo/editable_cells.rb +172 -0
  261. data/sample/gtk-demo/entry_completion.rb +63 -0
  262. data/sample/gtk-demo/expander.rb +40 -0
  263. data/sample/gtk-demo/floppybuddy.gif +0 -0
  264. data/sample/gtk-demo/gnome-applets.png +0 -0
  265. data/sample/gtk-demo/gnome-calendar.png +0 -0
  266. data/sample/gtk-demo/gnome-foot.png +0 -0
  267. data/sample/gtk-demo/gnome-fs-directory.png +0 -0
  268. data/sample/gtk-demo/gnome-fs-regular.png +0 -0
  269. data/sample/gtk-demo/gnome-gimp.png +0 -0
  270. data/sample/gtk-demo/gnome-gmush.png +0 -0
  271. data/sample/gtk-demo/gnome-gsame.png +0 -0
  272. data/sample/gtk-demo/gnu-keys.png +0 -0
  273. data/sample/gtk-demo/gtk-logo-rgb.gif +0 -0
  274. data/sample/gtk-demo/hypertext.rb +211 -0
  275. data/sample/gtk-demo/iconview.rb +109 -0
  276. data/sample/gtk-demo/images.rb +197 -0
  277. data/sample/gtk-demo/item_factory.rb +94 -0
  278. data/sample/gtk-demo/list_store.rb +138 -0
  279. data/sample/gtk-demo/main.rb +382 -0
  280. data/sample/gtk-demo/menus.rb +172 -0
  281. data/sample/gtk-demo/panes.rb +156 -0
  282. data/sample/gtk-demo/pixbufs.rb +176 -0
  283. data/sample/gtk-demo/printing.rb +128 -0
  284. data/sample/gtk-demo/rotated_text.rb +84 -0
  285. data/sample/gtk-demo/ruby-gnome2-logo.png +0 -0
  286. data/sample/gtk-demo/sizegroup.rb +118 -0
  287. data/sample/gtk-demo/stock_browser.rb +235 -0
  288. data/sample/gtk-demo/textview.rb +436 -0
  289. data/sample/gtk-demo/tree_store.rb +270 -0
  290. data/sample/misc/aboutdialog.rb +42 -0
  291. data/sample/misc/aboutdialog2.rb +42 -0
  292. data/sample/misc/alpha-demo.rb +70 -0
  293. data/sample/misc/assistant.rb +347 -0
  294. data/sample/misc/bindings.rb +107 -0
  295. data/sample/misc/button.rb +69 -0
  296. data/sample/misc/button2.rb +28 -0
  297. data/sample/misc/buttonbox.rb +93 -0
  298. data/sample/misc/cairo-pong.rb +215 -0
  299. data/sample/misc/calendar.rb +66 -0
  300. data/sample/misc/checkbutton.rb +46 -0
  301. data/sample/misc/colorselection.rb +25 -0
  302. data/sample/misc/combo_check.rb +71 -0
  303. data/sample/misc/combobox.rb +86 -0
  304. data/sample/misc/composited-windows.rb +113 -0
  305. data/sample/misc/cursor.rb +32 -0
  306. data/sample/misc/dialog.rb +44 -0
  307. data/sample/misc/dialog2.rb +39 -0
  308. data/sample/misc/dnd.rb +64 -0
  309. data/sample/misc/dndtreeview.rb +56 -0
  310. data/sample/misc/drag-move.rb +131 -0
  311. data/sample/misc/drawing.rb +90 -0
  312. data/sample/misc/entry.rb +34 -0
  313. data/sample/misc/entrycompletion.rb +33 -0
  314. data/sample/misc/expander.rb +27 -0
  315. data/sample/misc/filechooser.rb +41 -0
  316. data/sample/misc/frame.rb +69 -0
  317. data/sample/misc/gdkscreen.rb +32 -0
  318. data/sample/misc/gnome-logo-icon.png +0 -0
  319. data/sample/misc/helloworld.rb +35 -0
  320. data/sample/misc/iconview.rb +38 -0
  321. data/sample/misc/image.rb +42 -0
  322. data/sample/misc/itemfactory.rb +73 -0
  323. data/sample/misc/itemfactory2.rb +74 -0
  324. data/sample/misc/keyboard_grab.rb +29 -0
  325. data/sample/misc/label.rb +33 -0
  326. data/sample/misc/linkbutton.rb +42 -0
  327. data/sample/misc/listview.rb +92 -0
  328. data/sample/misc/menu.rb +81 -0
  329. data/sample/misc/misc_button.rb +49 -0
  330. data/sample/misc/mouse-gesture.rb +465 -0
  331. data/sample/misc/pangorenderer.rb +66 -0
  332. data/sample/misc/pointer_grab.rb +34 -0
  333. data/sample/misc/print.rb +247 -0
  334. data/sample/misc/properties.rb +85 -0
  335. data/sample/misc/radiobutton.rb +47 -0
  336. data/sample/misc/recentchooserdialog.rb +52 -0
  337. data/sample/misc/rgtk+cairo.rb +42 -0
  338. data/sample/misc/scalebutton.rb +19 -0
  339. data/sample/misc/settings.rb +41 -0
  340. data/sample/misc/statusicon.rb +123 -0
  341. data/sample/misc/stock.rb +36 -0
  342. data/sample/misc/style_property.rb +67 -0
  343. data/sample/misc/style_property.rc +19 -0
  344. data/sample/misc/t-gtkplug.rb +58 -0
  345. data/sample/misc/t-gtksocket.rb +65 -0
  346. data/sample/misc/test.xpm +92 -0
  347. data/sample/misc/textbuffer_serialize.rb +130 -0
  348. data/sample/misc/threads.rb +72 -0
  349. data/sample/misc/to_drawable.rb +42 -0
  350. data/sample/misc/togglebutton.rb +34 -0
  351. data/sample/misc/toolbar.rb +55 -0
  352. data/sample/misc/tooltips.rb +204 -0
  353. data/sample/misc/tree_combo.rb +79 -0
  354. data/sample/misc/tree_progress.rb +63 -0
  355. data/sample/misc/treemodelfilter.rb +49 -0
  356. data/sample/misc/treeview.rb +71 -0
  357. data/sample/misc/uimanager.rb +148 -0
  358. data/sample/misc/uimanager2.rb +91 -0
  359. data/sample/misc/uimanager2.xml +36 -0
  360. data/sample/misc/window.rb +24 -0
  361. data/sample/misc/xbm_cursor.rb +43 -0
  362. data/sample/testgtk/3DRings.xpm +116 -0
  363. data/sample/testgtk/FilesQueue.xpm +98 -0
  364. data/sample/testgtk/Modeller.xpm +117 -0
  365. data/sample/testgtk/README +14 -0
  366. data/sample/testgtk/button.rb +124 -0
  367. data/sample/testgtk/buttonbox.rb +100 -0
  368. data/sample/testgtk/check-n.xpm +21 -0
  369. data/sample/testgtk/check-y.xpm +21 -0
  370. data/sample/testgtk/checkbutton.rb +67 -0
  371. data/sample/testgtk/circles.xbm +46 -0
  372. data/sample/testgtk/colorselect.rb +33 -0
  373. data/sample/testgtk/dialog.rb +48 -0
  374. data/sample/testgtk/entry.rb +73 -0
  375. data/sample/testgtk/filesel.rb +65 -0
  376. data/sample/testgtk/fontselection.rb +56 -0
  377. data/sample/testgtk/labels.rb +74 -0
  378. data/sample/testgtk/layout.rb +108 -0
  379. data/sample/testgtk/marble.xpm +408 -0
  380. data/sample/testgtk/menu.rb +79 -0
  381. data/sample/testgtk/notebook.rb +280 -0
  382. data/sample/testgtk/pixmap.rb +58 -0
  383. data/sample/testgtk/progressbar.rb +173 -0
  384. data/sample/testgtk/radiobutton.rb +61 -0
  385. data/sample/testgtk/range.rb +65 -0
  386. data/sample/testgtk/reparent.rb +91 -0
  387. data/sample/testgtk/sample.rb +80 -0
  388. data/sample/testgtk/savedposition.rb +87 -0
  389. data/sample/testgtk/scrolledwindow.rb +67 -0
  390. data/sample/testgtk/shapedwindow.rb +99 -0
  391. data/sample/testgtk/spinbutton.rb +181 -0
  392. data/sample/testgtk/statusbar.rb +89 -0
  393. data/sample/testgtk/test.xpm +92 -0
  394. data/sample/testgtk/testgtk.rb +176 -0
  395. data/sample/testgtk/testgtkrc +146 -0
  396. data/sample/testgtk/testgtkrc2 +21 -0
  397. data/sample/testgtk/togglebutton.rb +53 -0
  398. data/sample/testgtk/toolbar.rb +82 -0
  399. data/sample/testgtk/tooltips.rb +41 -0
  400. data/sample/testgtk/wmhints.rb +40 -0
  401. data/test/gtk-test-utils.rb +15 -0
  402. data/test/run-test.rb +32 -0
  403. data/test/test_gc.rb +25 -0
  404. data/test/test_gdk.rb +18 -0
  405. data/test/test_gdk_color.rb +10 -0
  406. data/test/test_gdk_display.rb +37 -0
  407. data/test/test_gdk_event.rb +11 -0
  408. data/test/test_gdk_gc.rb +7 -0
  409. data/test/test_gdk_keymap.rb +8 -0
  410. data/test/test_gdk_pango.rb +9 -0
  411. data/test/test_gdk_selection_data.rb +17 -0
  412. data/test/test_gdk_window.rb +29 -0
  413. data/test/test_gdk_window_attribute.rb +9 -0
  414. data/test/test_gtk_about_dialog.rb +14 -0
  415. data/test/test_gtk_buildable.rb +66 -0
  416. data/test/test_gtk_builder.rb +188 -0
  417. data/test/test_gtk_entry.rb +18 -0
  418. data/test/test_gtk_icon_theme.rb +30 -0
  419. data/test/test_gtk_image.rb +8 -0
  420. data/test/test_gtk_list_store.rb +65 -0
  421. data/test/test_gtk_menu_item.rb +13 -0
  422. data/test/test_gtk_rc_style.rb +14 -0
  423. data/test/test_gtk_tree_path.rb +20 -0
  424. data/test/test_gtk_unix_print.rb +14 -0
  425. data/test/test_gtk_widget.rb +32 -0
  426. data/vendor/local/bin/gtk-builder-convert +799 -0
  427. data/vendor/local/bin/gtk-demo.exe +0 -0
  428. data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
  429. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  430. data/vendor/local/bin/gtk-update-icon-cache.exe.manifest +17 -0
  431. data/vendor/local/bin/libgailutil-18.dll +0 -0
  432. data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
  433. data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
  434. data/vendor/local/etc/gtk-2.0/gtk.immodules +4 -0
  435. data/vendor/local/etc/gtk-2.0/gtkrc +1 -0
  436. data/vendor/local/etc/gtk-2.0/im-multipress.conf +22 -0
  437. data/vendor/local/include/gail-1.0/gail/gailwidget.h +65 -0
  438. data/vendor/local/include/gail-1.0/libgail-util/gail-util.h +2 -0
  439. data/vendor/local/include/gail-1.0/libgail-util/gailmisc.h +82 -0
  440. data/vendor/local/include/gail-1.0/libgail-util/gailtextutil.h +87 -0
  441. data/vendor/local/include/gtk-2.0/gdk/gdk.h +241 -0
  442. data/vendor/local/include/gtk-2.0/gdk/gdkapplaunchcontext.h +76 -0
  443. data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +59 -0
  444. data/vendor/local/include/gtk-2.0/gdk/gdkcolor.h +176 -0
  445. data/vendor/local/include/gtk-2.0/gdk/gdkcursor.h +168 -0
  446. data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +229 -0
  447. data/vendor/local/include/gtk-2.0/gdk/gdkdisplaymanager.h +67 -0
  448. data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +186 -0
  449. data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +436 -0
  450. data/vendor/local/include/gtk-2.0/gdk/gdkenumtypes.h +137 -0
  451. data/vendor/local/include/gtk-2.0/gdk/gdkevents.h +566 -0
  452. data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +138 -0
  453. data/vendor/local/include/gtk-2.0/gdk/gdkgc.h +298 -0
  454. data/vendor/local/include/gtk-2.0/gdk/gdki18n.h +59 -0
  455. data/vendor/local/include/gtk-2.0/gdk/gdkimage.h +145 -0
  456. data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +192 -0
  457. data/vendor/local/include/gtk-2.0/gdk/gdkkeys.h +134 -0
  458. data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms-compat.h +2208 -0
  459. data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms.h +2221 -0
  460. data/vendor/local/include/gtk-2.0/gdk/gdkpango.h +166 -0
  461. data/vendor/local/include/gtk-2.0/gdk/gdkpixbuf.h +115 -0
  462. data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +136 -0
  463. data/vendor/local/include/gtk-2.0/gdk/gdkprivate.h +60 -0
  464. data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +128 -0
  465. data/vendor/local/include/gtk-2.0/gdk/gdkregion.h +127 -0
  466. data/vendor/local/include/gtk-2.0/gdk/gdkrgb.h +149 -0
  467. data/vendor/local/include/gtk-2.0/gdk/gdkscreen.h +132 -0
  468. data/vendor/local/include/gtk-2.0/gdk/gdkselection.h +111 -0
  469. data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +64 -0
  470. data/vendor/local/include/gtk-2.0/gdk/gdktestutils.h +49 -0
  471. data/vendor/local/include/gtk-2.0/gdk/gdktypes.h +226 -0
  472. data/vendor/local/include/gtk-2.0/gdk/gdkvisual.h +147 -0
  473. data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +129 -0
  474. data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +743 -0
  475. data/vendor/local/include/gtk-2.0/gtk/gtk.h +248 -0
  476. data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +157 -0
  477. data/vendor/local/include/gtk-2.0/gtk/gtkaccelgroup.h +216 -0
  478. data/vendor/local/include/gtk-2.0/gtk/gtkaccellabel.h +114 -0
  479. data/vendor/local/include/gtk-2.0/gtk/gtkaccelmap.h +101 -0
  480. data/vendor/local/include/gtk-2.0/gtk/gtkaccessible.h +80 -0
  481. data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +180 -0
  482. data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +184 -0
  483. data/vendor/local/include/gtk-2.0/gtk/gtkactivatable.h +88 -0
  484. data/vendor/local/include/gtk-2.0/gtk/gtkadjustment.h +121 -0
  485. data/vendor/local/include/gtk-2.0/gtk/gtkalignment.h +94 -0
  486. data/vendor/local/include/gtk-2.0/gtk/gtkarrow.h +77 -0
  487. data/vendor/local/include/gtk-2.0/gtk/gtkaspectframe.h +84 -0
  488. data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +176 -0
  489. data/vendor/local/include/gtk-2.0/gtk/gtkbbox.h +105 -0
  490. data/vendor/local/include/gtk-2.0/gtk/gtkbin.h +70 -0
  491. data/vendor/local/include/gtk-2.0/gtk/gtkbindings.h +158 -0
  492. data/vendor/local/include/gtk-2.0/gtk/gtkbox.h +159 -0
  493. data/vendor/local/include/gtk-2.0/gtk/gtkbuildable.h +176 -0
  494. data/vendor/local/include/gtk-2.0/gtk/gtkbuilder.h +143 -0
  495. data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +147 -0
  496. data/vendor/local/include/gtk-2.0/gtk/gtkcalendar.h +209 -0
  497. data/vendor/local/include/gtk-2.0/gtk/gtkcelleditable.h +64 -0
  498. data/vendor/local/include/gtk-2.0/gtk/gtkcelllayout.h +122 -0
  499. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderer.h +195 -0
  500. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendereraccel.h +92 -0
  501. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderercombo.h +64 -0
  502. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h +71 -0
  503. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererprogress.h +74 -0
  504. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspin.h +57 -0
  505. data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspinner.h +67 -0
  506. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertext.h +105 -0
  507. data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertoggle.h +85 -0
  508. data/vendor/local/include/gtk-2.0/gtk/gtkcellview.h +81 -0
  509. data/vendor/local/include/gtk-2.0/gtk/gtkcheckbutton.h +82 -0
  510. data/vendor/local/include/gtk-2.0/gtk/gtkcheckmenuitem.h +102 -0
  511. data/vendor/local/include/gtk-2.0/gtk/gtkclipboard.h +157 -0
  512. data/vendor/local/include/gtk-2.0/gtk/gtkclist.h +792 -0
  513. data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +103 -0
  514. data/vendor/local/include/gtk-2.0/gtk/gtkcolorsel.h +135 -0
  515. data/vendor/local/include/gtk-2.0/gtk/gtkcolorseldialog.h +82 -0
  516. data/vendor/local/include/gtk-2.0/gtk/gtkcombo.h +118 -0
  517. data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +153 -0
  518. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +81 -0
  519. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
  520. data/vendor/local/include/gtk-2.0/gtk/gtkcontainer.h +229 -0
  521. data/vendor/local/include/gtk-2.0/gtk/gtkctree.h +445 -0
  522. data/vendor/local/include/gtk-2.0/gtk/gtkcurve.h +106 -0
  523. data/vendor/local/include/gtk-2.0/gtk/gtkdebug.h +79 -0
  524. data/vendor/local/include/gtk-2.0/gtk/gtkdialog.h +186 -0
  525. data/vendor/local/include/gtk-2.0/gtk/gtkdnd.h +188 -0
  526. data/vendor/local/include/gtk-2.0/gtk/gtkdrawingarea.h +82 -0
  527. data/vendor/local/include/gtk-2.0/gtk/gtkeditable.h +117 -0
  528. data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +334 -0
  529. data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +133 -0
  530. data/vendor/local/include/gtk-2.0/gtk/gtkentrycompletion.h +132 -0
  531. data/vendor/local/include/gtk-2.0/gtk/gtkenums.h +584 -0
  532. data/vendor/local/include/gtk-2.0/gtk/gtkeventbox.h +71 -0
  533. data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +98 -0
  534. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +264 -0
  535. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +92 -0
  536. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserdialog.h +74 -0
  537. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserwidget.h +67 -0
  538. data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +83 -0
  539. data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +125 -0
  540. data/vendor/local/include/gtk-2.0/gtk/gtkfixed.h +90 -0
  541. data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +100 -0
  542. data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +220 -0
  543. data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +96 -0
  544. data/vendor/local/include/gtk-2.0/gtk/gtkgamma.h +82 -0
  545. data/vendor/local/include/gtk-2.0/gtk/gtkgc.h +49 -0
  546. data/vendor/local/include/gtk-2.0/gtk/gtkhandlebox.h +112 -0
  547. data/vendor/local/include/gtk-2.0/gtk/gtkhbbox.h +80 -0
  548. data/vendor/local/include/gtk-2.0/gtk/gtkhbox.h +68 -0
  549. data/vendor/local/include/gtk-2.0/gtk/gtkhpaned.h +65 -0
  550. data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +84 -0
  551. data/vendor/local/include/gtk-2.0/gtk/gtkhscale.h +71 -0
  552. data/vendor/local/include/gtk-2.0/gtk/gtkhscrollbar.h +70 -0
  553. data/vendor/local/include/gtk-2.0/gtk/gtkhseparator.h +68 -0
  554. data/vendor/local/include/gtk-2.0/gtk/gtkhsv.h +115 -0
  555. data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +189 -0
  556. data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +198 -0
  557. data/vendor/local/include/gtk-2.0/gtk/gtkiconview.h +242 -0
  558. data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +274 -0
  559. data/vendor/local/include/gtk-2.0/gtk/gtkimagemenuitem.h +86 -0
  560. data/vendor/local/include/gtk-2.0/gtk/gtkimcontext.h +132 -0
  561. data/vendor/local/include/gtk-2.0/gtk/gtkimcontextsimple.h +77 -0
  562. data/vendor/local/include/gtk-2.0/gtk/gtkimmodule.h +58 -0
  563. data/vendor/local/include/gtk-2.0/gtk/gtkimmulticontext.h +78 -0
  564. data/vendor/local/include/gtk-2.0/gtk/gtkinfobar.h +120 -0
  565. data/vendor/local/include/gtk-2.0/gtk/gtkinputdialog.h +100 -0
  566. data/vendor/local/include/gtk-2.0/gtk/gtkinvisible.h +78 -0
  567. data/vendor/local/include/gtk-2.0/gtk/gtkitem.h +81 -0
  568. data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +236 -0
  569. data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +207 -0
  570. data/vendor/local/include/gtk-2.0/gtk/gtklayout.h +138 -0
  571. data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +91 -0
  572. data/vendor/local/include/gtk-2.0/gtk/gtklist.h +138 -0
  573. data/vendor/local/include/gtk-2.0/gtk/gtklistitem.h +91 -0
  574. data/vendor/local/include/gtk-2.0/gtk/gtkliststore.h +147 -0
  575. data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +233 -0
  576. data/vendor/local/include/gtk-2.0/gtk/gtkmarshal.h +283 -0
  577. data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +219 -0
  578. data/vendor/local/include/gtk-2.0/gtk/gtkmenubar.h +92 -0
  579. data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +145 -0
  580. data/vendor/local/include/gtk-2.0/gtk/gtkmenushell.h +141 -0
  581. data/vendor/local/include/gtk-2.0/gtk/gtkmenutoolbutton.h +89 -0
  582. data/vendor/local/include/gtk-2.0/gtk/gtkmessagedialog.h +135 -0
  583. data/vendor/local/include/gtk-2.0/gtk/gtkmisc.h +85 -0
  584. data/vendor/local/include/gtk-2.0/gtk/gtkmodules.h +54 -0
  585. data/vendor/local/include/gtk-2.0/gtk/gtkmountoperation.h +83 -0
  586. data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +317 -0
  587. data/vendor/local/include/gtk-2.0/gtk/gtkobject.h +250 -0
  588. data/vendor/local/include/gtk-2.0/gtk/gtkoffscreenwindow.h +60 -0
  589. data/vendor/local/include/gtk-2.0/gtk/gtkoldeditable.h +126 -0
  590. data/vendor/local/include/gtk-2.0/gtk/gtkoptionmenu.h +88 -0
  591. data/vendor/local/include/gtk-2.0/gtk/gtkorientable.h +60 -0
  592. data/vendor/local/include/gtk-2.0/gtk/gtkpagesetup.h +108 -0
  593. data/vendor/local/include/gtk-2.0/gtk/gtkpaned.h +144 -0
  594. data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +101 -0
  595. data/vendor/local/include/gtk-2.0/gtk/gtkpixmap.h +83 -0
  596. data/vendor/local/include/gtk-2.0/gtk/gtkplug.h +105 -0
  597. data/vendor/local/include/gtk-2.0/gtk/gtkpreview.h +137 -0
  598. data/vendor/local/include/gtk-2.0/gtk/gtkprintcontext.h +71 -0
  599. data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +207 -0
  600. data/vendor/local/include/gtk-2.0/gtk/gtkprintoperationpreview.h +80 -0
  601. data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +234 -0
  602. data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +157 -0
  603. data/vendor/local/include/gtk-2.0/gtk/gtkprogress.h +120 -0
  604. data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +172 -0
  605. data/vendor/local/include/gtk-2.0/gtk/gtkradioaction.h +90 -0
  606. data/vendor/local/include/gtk-2.0/gtk/gtkradiobutton.h +94 -0
  607. data/vendor/local/include/gtk-2.0/gtk/gtkradiomenuitem.h +94 -0
  608. data/vendor/local/include/gtk-2.0/gtk/gtkradiotoolbutton.h +74 -0
  609. data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +215 -0
  610. data/vendor/local/include/gtk-2.0/gtk/gtkrc.h +271 -0
  611. data/vendor/local/include/gtk-2.0/gtk/gtkrecentaction.h +74 -0
  612. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooser.h +191 -0
  613. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserdialog.h +74 -0
  614. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchoosermenu.h +74 -0
  615. data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserwidget.h +64 -0
  616. data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +94 -0
  617. data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +216 -0
  618. data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +136 -0
  619. data/vendor/local/include/gtk-2.0/gtk/gtkscale.h +111 -0
  620. data/vendor/local/include/gtk-2.0/gtk/gtkscalebutton.h +112 -0
  621. data/vendor/local/include/gtk-2.0/gtk/gtkscrollbar.h +72 -0
  622. data/vendor/local/include/gtk-2.0/gtk/gtkscrolledwindow.h +136 -0
  623. data/vendor/local/include/gtk-2.0/gtk/gtkselection.h +221 -0
  624. data/vendor/local/include/gtk-2.0/gtk/gtkseparator.h +66 -0
  625. data/vendor/local/include/gtk-2.0/gtk/gtkseparatormenuitem.h +68 -0
  626. data/vendor/local/include/gtk-2.0/gtk/gtkseparatortoolitem.h +72 -0
  627. data/vendor/local/include/gtk-2.0/gtk/gtksettings.h +139 -0
  628. data/vendor/local/include/gtk-2.0/gtk/gtkshow.h +39 -0
  629. data/vendor/local/include/gtk-2.0/gtk/gtksignal.h +149 -0
  630. data/vendor/local/include/gtk-2.0/gtk/gtksizegroup.h +111 -0
  631. data/vendor/local/include/gtk-2.0/gtk/gtksocket.h +102 -0
  632. data/vendor/local/include/gtk-2.0/gtk/gtkspinbutton.h +196 -0
  633. data/vendor/local/include/gtk-2.0/gtk/gtkspinner.h +65 -0
  634. data/vendor/local/include/gtk-2.0/gtk/gtkstatusbar.h +117 -0
  635. data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +157 -0
  636. data/vendor/local/include/gtk-2.0/gtk/gtkstock.h +1016 -0
  637. data/vendor/local/include/gtk-2.0/gtk/gtkstyle.h +945 -0
  638. data/vendor/local/include/gtk-2.0/gtk/gtktable.h +151 -0
  639. data/vendor/local/include/gtk-2.0/gtk/gtktearoffmenuitem.h +75 -0
  640. data/vendor/local/include/gtk-2.0/gtk/gtktestutils.h +71 -0
  641. data/vendor/local/include/gtk-2.0/gtk/gtktext.h +217 -0
  642. data/vendor/local/include/gtk-2.0/gtk/gtktextbuffer.h +409 -0
  643. data/vendor/local/include/gtk-2.0/gtk/gtktextbufferrichtext.h +96 -0
  644. data/vendor/local/include/gtk-2.0/gtk/gtktextchild.h +82 -0
  645. data/vendor/local/include/gtk-2.0/gtk/gtktextdisplay.h +112 -0
  646. data/vendor/local/include/gtk-2.0/gtk/gtktextiter.h +307 -0
  647. data/vendor/local/include/gtk-2.0/gtk/gtktextlayout.h +439 -0
  648. data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +106 -0
  649. data/vendor/local/include/gtk-2.0/gtk/gtktexttag.h +289 -0
  650. data/vendor/local/include/gtk-2.0/gtk/gtktexttagtable.h +101 -0
  651. data/vendor/local/include/gtk-2.0/gtk/gtktextview.h +376 -0
  652. data/vendor/local/include/gtk-2.0/gtk/gtktipsquery.h +110 -0
  653. data/vendor/local/include/gtk-2.0/gtk/gtktoggleaction.h +91 -0
  654. data/vendor/local/include/gtk-2.0/gtk/gtktogglebutton.h +97 -0
  655. data/vendor/local/include/gtk-2.0/gtk/gtktoggletoolbutton.h +77 -0
  656. data/vendor/local/include/gtk-2.0/gtk/gtktoolbar.h +288 -0
  657. data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +99 -0
  658. data/vendor/local/include/gtk-2.0/gtk/gtktoolitem.h +142 -0
  659. data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +99 -0
  660. data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +144 -0
  661. data/vendor/local/include/gtk-2.0/gtk/gtktoolshell.h +91 -0
  662. data/vendor/local/include/gtk-2.0/gtk/gtktooltip.h +77 -0
  663. data/vendor/local/include/gtk-2.0/gtk/gtktooltips.h +109 -0
  664. data/vendor/local/include/gtk-2.0/gtk/gtktree.h +132 -0
  665. data/vendor/local/include/gtk-2.0/gtk/gtktreednd.h +125 -0
  666. data/vendor/local/include/gtk-2.0/gtk/gtktreeitem.h +90 -0
  667. data/vendor/local/include/gtk-2.0/gtk/gtktreemodel.h +270 -0
  668. data/vendor/local/include/gtk-2.0/gtk/gtktreemodelfilter.h +109 -0
  669. data/vendor/local/include/gtk-2.0/gtk/gtktreemodelsort.h +106 -0
  670. data/vendor/local/include/gtk-2.0/gtk/gtktreeselection.h +125 -0
  671. data/vendor/local/include/gtk-2.0/gtk/gtktreesortable.h +103 -0
  672. data/vendor/local/include/gtk-2.0/gtk/gtktreestore.h +159 -0
  673. data/vendor/local/include/gtk-2.0/gtk/gtktreeview.h +431 -0
  674. data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +245 -0
  675. data/vendor/local/include/gtk-2.0/gtk/gtktypebuiltins.h +335 -0
  676. data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +264 -0
  677. data/vendor/local/include/gtk-2.0/gtk/gtkuimanager.h +153 -0
  678. data/vendor/local/include/gtk-2.0/gtk/gtkvbbox.h +82 -0
  679. data/vendor/local/include/gtk-2.0/gtk/gtkvbox.h +68 -0
  680. data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +51 -0
  681. data/vendor/local/include/gtk-2.0/gtk/gtkviewport.h +93 -0
  682. data/vendor/local/include/gtk-2.0/gtk/gtkvolumebutton.h +72 -0
  683. data/vendor/local/include/gtk-2.0/gtk/gtkvpaned.h +65 -0
  684. data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +84 -0
  685. data/vendor/local/include/gtk-2.0/gtk/gtkvscale.h +79 -0
  686. data/vendor/local/include/gtk-2.0/gtk/gtkvscrollbar.h +76 -0
  687. data/vendor/local/include/gtk-2.0/gtk/gtkvseparator.h +76 -0
  688. data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +1351 -0
  689. data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +452 -0
  690. data/vendor/local/lib/gailutil.lib +0 -0
  691. data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
  692. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
  693. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
  694. data/vendor/local/lib/gtk-2.0/include/gdkconfig.h +35 -0
  695. data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
  696. data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
  697. data/vendor/local/lib/libgailutil.dll.a +0 -0
  698. data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
  699. data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
  700. data/vendor/local/lib/pkgconfig/gail.pc +11 -0
  701. data/vendor/local/lib/pkgconfig/gdk-2.0.pc +12 -0
  702. data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +12 -0
  703. data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +15 -0
  704. data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +15 -0
  705. data/vendor/local/manifest/gtk+-dev_2.24.10-1_win32.mft +947 -0
  706. data/vendor/local/manifest/gtk+_2.24.10-1_win32.mft +225 -0
  707. data/vendor/local/share/aclocal/gtk-2.0.m4 +196 -0
  708. data/vendor/local/share/doc/gtk+-2.24.10/COPYING +482 -0
  709. data/vendor/local/share/doc/gtk+-dev-2.24.10/COPYING +482 -0
  710. data/vendor/local/share/gtk-2.0/demo/alphatest.png +0 -0
  711. data/vendor/local/share/gtk-2.0/demo/apple-red.png +0 -0
  712. data/vendor/local/share/gtk-2.0/demo/appwindow.c +591 -0
  713. data/vendor/local/share/gtk-2.0/demo/assistant.c +216 -0
  714. data/vendor/local/share/gtk-2.0/demo/background.jpg +0 -0
  715. data/vendor/local/share/gtk-2.0/demo/builder.c +68 -0
  716. data/vendor/local/share/gtk-2.0/demo/button_box.c +127 -0
  717. data/vendor/local/share/gtk-2.0/demo/changedisplay.c +643 -0
  718. data/vendor/local/share/gtk-2.0/demo/clipboard.c +326 -0
  719. data/vendor/local/share/gtk-2.0/demo/colorsel.c +142 -0
  720. data/vendor/local/share/gtk-2.0/demo/combobox.c +454 -0
  721. data/vendor/local/share/gtk-2.0/demo/demo.ui +258 -0
  722. data/vendor/local/share/gtk-2.0/demo/dialog.c +181 -0
  723. data/vendor/local/share/gtk-2.0/demo/drawingarea.c +308 -0
  724. data/vendor/local/share/gtk-2.0/demo/editable_cells.c +393 -0
  725. data/vendor/local/share/gtk-2.0/demo/entry_buffer.c +65 -0
  726. data/vendor/local/share/gtk-2.0/demo/entry_completion.c +97 -0
  727. data/vendor/local/share/gtk-2.0/demo/expander.c +58 -0
  728. data/vendor/local/share/gtk-2.0/demo/floppybuddy.gif +0 -0
  729. data/vendor/local/share/gtk-2.0/demo/gnome-applets.png +0 -0
  730. data/vendor/local/share/gtk-2.0/demo/gnome-calendar.png +0 -0
  731. data/vendor/local/share/gtk-2.0/demo/gnome-foot.png +0 -0
  732. data/vendor/local/share/gtk-2.0/demo/gnome-fs-directory.png +0 -0
  733. data/vendor/local/share/gtk-2.0/demo/gnome-fs-regular.png +0 -0
  734. data/vendor/local/share/gtk-2.0/demo/gnome-gimp.png +0 -0
  735. data/vendor/local/share/gtk-2.0/demo/gnome-gmush.png +0 -0
  736. data/vendor/local/share/gtk-2.0/demo/gnome-gsame.png +0 -0
  737. data/vendor/local/share/gtk-2.0/demo/gnu-keys.png +0 -0
  738. data/vendor/local/share/gtk-2.0/demo/gtk-logo-rgb.gif +0 -0
  739. data/vendor/local/share/gtk-2.0/demo/hypertext.c +315 -0
  740. data/vendor/local/share/gtk-2.0/demo/iconview.c +372 -0
  741. data/vendor/local/share/gtk-2.0/demo/iconview_edit.c +159 -0
  742. data/vendor/local/share/gtk-2.0/demo/images.c +464 -0
  743. data/vendor/local/share/gtk-2.0/demo/infobar.c +104 -0
  744. data/vendor/local/share/gtk-2.0/demo/links.c +84 -0
  745. data/vendor/local/share/gtk-2.0/demo/list_store.c +295 -0
  746. data/vendor/local/share/gtk-2.0/demo/menus.c +210 -0
  747. data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +579 -0
  748. data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +500 -0
  749. data/vendor/local/share/gtk-2.0/demo/panes.c +194 -0
  750. data/vendor/local/share/gtk-2.0/demo/pickers.c +73 -0
  751. data/vendor/local/share/gtk-2.0/demo/pixbufs.c +270 -0
  752. data/vendor/local/share/gtk-2.0/demo/printing.c +212 -0
  753. data/vendor/local/share/gtk-2.0/demo/rotated_text.c +237 -0
  754. data/vendor/local/share/gtk-2.0/demo/search_entry.c +335 -0
  755. data/vendor/local/share/gtk-2.0/demo/sizegroup.c +167 -0
  756. data/vendor/local/share/gtk-2.0/demo/spinner.c +94 -0
  757. data/vendor/local/share/gtk-2.0/demo/stock_browser.c +546 -0
  758. data/vendor/local/share/gtk-2.0/demo/textscroll.c +200 -0
  759. data/vendor/local/share/gtk-2.0/demo/textview.c +569 -0
  760. data/vendor/local/share/gtk-2.0/demo/toolpalette.c +795 -0
  761. data/vendor/local/share/gtk-2.0/demo/tree_store.c +450 -0
  762. data/vendor/local/share/gtk-2.0/demo/ui_manager.c +237 -0
  763. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +449 -0
  764. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +275 -0
  765. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +30 -0
  766. data/vendor/local/share/gtk-doc/html/gail-libgail-util/home.png +0 -0
  767. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +44 -0
  768. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.sgml +27 -0
  769. data/vendor/local/share/gtk-doc/html/gail-libgail-util/left.png +0 -0
  770. data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +41 -0
  771. data/vendor/local/share/gtk-doc/html/gail-libgail-util/right.png +0 -0
  772. data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +266 -0
  773. data/vendor/local/share/gtk-doc/html/gail-libgail-util/up.png +0 -0
  774. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +1283 -0
  775. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +262 -0
  776. data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +1526 -0
  777. data/vendor/local/share/gtk-doc/html/gdk/X_cursor.png +0 -0
  778. data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +74 -0
  779. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +123 -0
  780. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +124 -0
  781. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +124 -0
  782. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +42 -0
  783. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +109 -0
  784. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +515 -0
  785. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +51 -0
  786. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +224 -0
  787. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +123 -0
  788. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +128 -0
  789. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +115 -0
  790. data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +1012 -0
  791. data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +3674 -0
  792. data/vendor/local/share/gtk-doc/html/gdk/arrow.png +0 -0
  793. data/vendor/local/share/gtk-doc/html/gdk/based_arrow_down.png +0 -0
  794. data/vendor/local/share/gtk-doc/html/gdk/based_arrow_up.png +0 -0
  795. data/vendor/local/share/gtk-doc/html/gdk/boat.png +0 -0
  796. data/vendor/local/share/gtk-doc/html/gdk/bogosity.png +0 -0
  797. data/vendor/local/share/gtk-doc/html/gdk/bottom_left_corner.png +0 -0
  798. data/vendor/local/share/gtk-doc/html/gdk/bottom_right_corner.png +0 -0
  799. data/vendor/local/share/gtk-doc/html/gdk/bottom_side.png +0 -0
  800. data/vendor/local/share/gtk-doc/html/gdk/bottom_tee.png +0 -0
  801. data/vendor/local/share/gtk-doc/html/gdk/box_spiral.png +0 -0
  802. data/vendor/local/share/gtk-doc/html/gdk/center_ptr.png +0 -0
  803. data/vendor/local/share/gtk-doc/html/gdk/circle.png +0 -0
  804. data/vendor/local/share/gtk-doc/html/gdk/clock.png +0 -0
  805. data/vendor/local/share/gtk-doc/html/gdk/coffee_mug.png +0 -0
  806. data/vendor/local/share/gtk-doc/html/gdk/cross.png +0 -0
  807. data/vendor/local/share/gtk-doc/html/gdk/cross_reverse.png +0 -0
  808. data/vendor/local/share/gtk-doc/html/gdk/crosshair.png +0 -0
  809. data/vendor/local/share/gtk-doc/html/gdk/diamond_cross.png +0 -0
  810. data/vendor/local/share/gtk-doc/html/gdk/dot.png +0 -0
  811. data/vendor/local/share/gtk-doc/html/gdk/dotbox.png +0 -0
  812. data/vendor/local/share/gtk-doc/html/gdk/double_arrow.png +0 -0
  813. data/vendor/local/share/gtk-doc/html/gdk/draft_large.png +0 -0
  814. data/vendor/local/share/gtk-doc/html/gdk/draft_small.png +0 -0
  815. data/vendor/local/share/gtk-doc/html/gdk/draped_box.png +0 -0
  816. data/vendor/local/share/gtk-doc/html/gdk/exchange.png +0 -0
  817. data/vendor/local/share/gtk-doc/html/gdk/fleur.png +0 -0
  818. data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +319 -0
  819. data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +611 -0
  820. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +415 -0
  821. data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +950 -0
  822. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +1137 -0
  823. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +911 -0
  824. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +2088 -0
  825. data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +1690 -0
  826. data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +1264 -0
  827. data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +1449 -0
  828. data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +1182 -0
  829. data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +902 -0
  830. data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +1653 -0
  831. data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +824 -0
  832. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +960 -0
  833. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +297 -0
  834. data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +1016 -0
  835. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +861 -0
  836. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +648 -0
  837. data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +968 -0
  838. data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +1005 -0
  839. data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +657 -0
  840. data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +210 -0
  841. data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +933 -0
  842. data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +827 -0
  843. data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +6581 -0
  844. data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +2486 -0
  845. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +1331 -0
  846. data/vendor/local/share/gtk-doc/html/gdk/gobbler.png +0 -0
  847. data/vendor/local/share/gtk-doc/html/gdk/gumby.png +0 -0
  848. data/vendor/local/share/gtk-doc/html/gdk/hand1.png +0 -0
  849. data/vendor/local/share/gtk-doc/html/gdk/hand2.png +0 -0
  850. data/vendor/local/share/gtk-doc/html/gdk/heart.png +0 -0
  851. data/vendor/local/share/gtk-doc/html/gdk/home.png +0 -0
  852. data/vendor/local/share/gtk-doc/html/gdk/icon.png +0 -0
  853. data/vendor/local/share/gtk-doc/html/gdk/index.html +143 -0
  854. data/vendor/local/share/gtk-doc/html/gdk/index.sgml +1446 -0
  855. data/vendor/local/share/gtk-doc/html/gdk/iron_cross.png +0 -0
  856. data/vendor/local/share/gtk-doc/html/gdk/left.png +0 -0
  857. data/vendor/local/share/gtk-doc/html/gdk/left_ptr.png +0 -0
  858. data/vendor/local/share/gtk-doc/html/gdk/left_side.png +0 -0
  859. data/vendor/local/share/gtk-doc/html/gdk/left_tee.png +0 -0
  860. data/vendor/local/share/gtk-doc/html/gdk/leftbutton.png +0 -0
  861. data/vendor/local/share/gtk-doc/html/gdk/ll_angle.png +0 -0
  862. data/vendor/local/share/gtk-doc/html/gdk/lr_angle.png +0 -0
  863. data/vendor/local/share/gtk-doc/html/gdk/man.png +0 -0
  864. data/vendor/local/share/gtk-doc/html/gdk/middlebutton.png +0 -0
  865. data/vendor/local/share/gtk-doc/html/gdk/mouse.png +0 -0
  866. data/vendor/local/share/gtk-doc/html/gdk/multihead.html +201 -0
  867. data/vendor/local/share/gtk-doc/html/gdk/pencil.png +0 -0
  868. data/vendor/local/share/gtk-doc/html/gdk/pirate.png +0 -0
  869. data/vendor/local/share/gtk-doc/html/gdk/plus.png +0 -0
  870. data/vendor/local/share/gtk-doc/html/gdk/question_arrow.png +0 -0
  871. data/vendor/local/share/gtk-doc/html/gdk/reference.html +131 -0
  872. data/vendor/local/share/gtk-doc/html/gdk/right.png +0 -0
  873. data/vendor/local/share/gtk-doc/html/gdk/right_ptr.png +0 -0
  874. data/vendor/local/share/gtk-doc/html/gdk/right_side.png +0 -0
  875. data/vendor/local/share/gtk-doc/html/gdk/right_tee.png +0 -0
  876. data/vendor/local/share/gtk-doc/html/gdk/rightbutton.png +0 -0
  877. data/vendor/local/share/gtk-doc/html/gdk/rotated-text.png +0 -0
  878. data/vendor/local/share/gtk-doc/html/gdk/rtl_logo.png +0 -0
  879. data/vendor/local/share/gtk-doc/html/gdk/sailboat.png +0 -0
  880. data/vendor/local/share/gtk-doc/html/gdk/sb_down_arrow.png +0 -0
  881. data/vendor/local/share/gtk-doc/html/gdk/sb_h_double_arrow.png +0 -0
  882. data/vendor/local/share/gtk-doc/html/gdk/sb_left_arrow.png +0 -0
  883. data/vendor/local/share/gtk-doc/html/gdk/sb_right_arrow.png +0 -0
  884. data/vendor/local/share/gtk-doc/html/gdk/sb_up_arrow.png +0 -0
  885. data/vendor/local/share/gtk-doc/html/gdk/sb_v_double_arrow.png +0 -0
  886. data/vendor/local/share/gtk-doc/html/gdk/shuttle.png +0 -0
  887. data/vendor/local/share/gtk-doc/html/gdk/sizing.png +0 -0
  888. data/vendor/local/share/gtk-doc/html/gdk/spider.png +0 -0
  889. data/vendor/local/share/gtk-doc/html/gdk/spraycan.png +0 -0
  890. data/vendor/local/share/gtk-doc/html/gdk/star.png +0 -0
  891. data/vendor/local/share/gtk-doc/html/gdk/style.css +266 -0
  892. data/vendor/local/share/gtk-doc/html/gdk/target.png +0 -0
  893. data/vendor/local/share/gtk-doc/html/gdk/tcross.png +0 -0
  894. data/vendor/local/share/gtk-doc/html/gdk/top_left_arrow.png +0 -0
  895. data/vendor/local/share/gtk-doc/html/gdk/top_left_corner.png +0 -0
  896. data/vendor/local/share/gtk-doc/html/gdk/top_right_corner.png +0 -0
  897. data/vendor/local/share/gtk-doc/html/gdk/top_side.png +0 -0
  898. data/vendor/local/share/gtk-doc/html/gdk/top_tee.png +0 -0
  899. data/vendor/local/share/gtk-doc/html/gdk/trek.png +0 -0
  900. data/vendor/local/share/gtk-doc/html/gdk/ul_angle.png +0 -0
  901. data/vendor/local/share/gtk-doc/html/gdk/umbrella.png +0 -0
  902. data/vendor/local/share/gtk-doc/html/gdk/up.png +0 -0
  903. data/vendor/local/share/gtk-doc/html/gdk/ur_angle.png +0 -0
  904. data/vendor/local/share/gtk-doc/html/gdk/watch.png +0 -0
  905. data/vendor/local/share/gtk-doc/html/gdk/xterm.png +0 -0
  906. data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +77 -0
  907. data/vendor/local/share/gtk-doc/html/gtk/Actions.html +53 -0
  908. data/vendor/local/share/gtk-doc/html/gtk/Builder.html +38 -0
  909. data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +53 -0
  910. data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +83 -0
  911. data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +56 -0
  912. data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +1423 -0
  913. data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +340 -0
  914. data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +147 -0
  915. data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +1582 -0
  916. data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +1222 -0
  917. data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +856 -0
  918. data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +807 -0
  919. data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +390 -0
  920. data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +205 -0
  921. data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +238 -0
  922. data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +1134 -0
  923. data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +131 -0
  924. data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +773 -0
  925. data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +638 -0
  926. data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +1121 -0
  927. data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +1110 -0
  928. data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +555 -0
  929. data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +3832 -0
  930. data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +2563 -0
  931. data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +1059 -0
  932. data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +270 -0
  933. data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +520 -0
  934. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +1132 -0
  935. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +254 -0
  936. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +227 -0
  937. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +206 -0
  938. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +199 -0
  939. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +161 -0
  940. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +157 -0
  941. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +582 -0
  942. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +351 -0
  943. data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +433 -0
  944. data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +214 -0
  945. data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +436 -0
  946. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +786 -0
  947. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +231 -0
  948. data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +507 -0
  949. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +1555 -0
  950. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +298 -0
  951. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +328 -0
  952. data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +1510 -0
  953. data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +423 -0
  954. data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +1323 -0
  955. data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +251 -0
  956. data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +662 -0
  957. data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +3428 -0
  958. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +590 -0
  959. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +1128 -0
  960. data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +292 -0
  961. data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +739 -0
  962. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +3186 -0
  963. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +498 -0
  964. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +321 -0
  965. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +170 -0
  966. data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +611 -0
  967. data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +326 -0
  968. data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +571 -0
  969. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +526 -0
  970. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +417 -0
  971. data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +444 -0
  972. data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +127 -0
  973. data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +132 -0
  974. data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +230 -0
  975. data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +108 -0
  976. data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +129 -0
  977. data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +462 -0
  978. data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +160 -0
  979. data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +125 -0
  980. data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +130 -0
  981. data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +478 -0
  982. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +947 -0
  983. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +148 -0
  984. data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +175 -0
  985. data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +1410 -0
  986. data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +2689 -0
  987. data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +1501 -0
  988. data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +456 -0
  989. data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +714 -0
  990. data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +200 -0
  991. data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +197 -0
  992. data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +235 -0
  993. data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +1172 -0
  994. data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +2086 -0
  995. data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +577 -0
  996. data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +390 -0
  997. data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +972 -0
  998. data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +438 -0
  999. data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +1056 -0
  1000. data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +1353 -0
  1001. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +412 -0
  1002. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +882 -0
  1003. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +671 -0
  1004. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +431 -0
  1005. data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +786 -0
  1006. data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +313 -0
  1007. data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +2682 -0
  1008. data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +1217 -0
  1009. data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +186 -0
  1010. data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +501 -0
  1011. data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +333 -0
  1012. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +937 -0
  1013. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +242 -0
  1014. data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +760 -0
  1015. data/vendor/local/share/gtk-doc/html/gtk/GtkPaperSize.html +820 -0
  1016. data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +239 -0
  1017. data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +357 -0
  1018. data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +652 -0
  1019. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +513 -0
  1020. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +527 -0
  1021. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +2677 -0
  1022. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +853 -0
  1023. data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +931 -0
  1024. data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +555 -0
  1025. data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +852 -0
  1026. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +367 -0
  1027. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +525 -0
  1028. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +457 -0
  1029. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +327 -0
  1030. data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +1389 -0
  1031. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +267 -0
  1032. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +1376 -0
  1033. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +228 -0
  1034. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +259 -0
  1035. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +155 -0
  1036. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +620 -0
  1037. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +1564 -0
  1038. data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +357 -0
  1039. data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +537 -0
  1040. data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +571 -0
  1041. data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +187 -0
  1042. data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +738 -0
  1043. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +90 -0
  1044. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +110 -0
  1045. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +211 -0
  1046. data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +1215 -0
  1047. data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +440 -0
  1048. data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +388 -0
  1049. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +1260 -0
  1050. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +203 -0
  1051. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +1716 -0
  1052. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +491 -0
  1053. data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +4192 -0
  1054. data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +759 -0
  1055. data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +135 -0
  1056. data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +668 -0
  1057. data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +3605 -0
  1058. data/vendor/local/share/gtk-doc/html/gtk/GtkTextIter.html +2871 -0
  1059. data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +325 -0
  1060. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +1157 -0
  1061. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +381 -0
  1062. data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +3002 -0
  1063. data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +452 -0
  1064. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +315 -0
  1065. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +508 -0
  1066. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +279 -0
  1067. data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +667 -0
  1068. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +1147 -0
  1069. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +705 -0
  1070. data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +1007 -0
  1071. data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +394 -0
  1072. data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +1851 -0
  1073. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +414 -0
  1074. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +450 -0
  1075. data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +767 -0
  1076. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +266 -0
  1077. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +2402 -0
  1078. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +654 -0
  1079. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +551 -0
  1080. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +796 -0
  1081. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +458 -0
  1082. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +1028 -0
  1083. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +4656 -0
  1084. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +1845 -0
  1085. data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +1290 -0
  1086. data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +133 -0
  1087. data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +209 -0
  1088. data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +108 -0
  1089. data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +129 -0
  1090. data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +160 -0
  1091. data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +123 -0
  1092. data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +111 -0
  1093. data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +398 -0
  1094. data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +112 -0
  1095. data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +10064 -0
  1096. data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +4007 -0
  1097. data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +175 -0
  1098. data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +74 -0
  1099. data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +95 -0
  1100. data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +68 -0
  1101. data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +53 -0
  1102. data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +41 -0
  1103. data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +38 -0
  1104. data/vendor/local/share/gtk-doc/html/gtk/Printing.html +59 -0
  1105. data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +50 -0
  1106. data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +41 -0
  1107. data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +71 -0
  1108. data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +47 -0
  1109. data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +266 -0
  1110. data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +53 -0
  1111. data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +556 -0
  1112. data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +104 -0
  1113. data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +57 -0
  1114. data/vendor/local/share/gtk-doc/html/gtk/aboutdialog.png +0 -0
  1115. data/vendor/local/share/gtk-doc/html/gtk/accel-label.png +0 -0
  1116. data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +95 -0
  1117. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +2095 -0
  1118. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +790 -0
  1119. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +786 -0
  1120. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +602 -0
  1121. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +518 -0
  1122. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +291 -0
  1123. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +465 -0
  1124. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +181 -0
  1125. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +121 -0
  1126. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +1858 -0
  1127. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +1090 -0
  1128. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +386 -0
  1129. data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +3401 -0
  1130. data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +22926 -0
  1131. data/vendor/local/share/gtk-doc/html/gtk/application-exit.png +0 -0
  1132. data/vendor/local/share/gtk-doc/html/gtk/assistant.png +0 -0
  1133. data/vendor/local/share/gtk-doc/html/gtk/button.png +0 -0
  1134. data/vendor/local/share/gtk-doc/html/gtk/ch01.html +246 -0
  1135. data/vendor/local/share/gtk-doc/html/gtk/ch02.html +154 -0
  1136. data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +496 -0
  1137. data/vendor/local/share/gtk-doc/html/gtk/check-button.png +0 -0
  1138. data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +84 -0
  1139. data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +89 -0
  1140. data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +41 -0
  1141. data/vendor/local/share/gtk-doc/html/gtk/color-button.png +0 -0
  1142. data/vendor/local/share/gtk-doc/html/gtk/colorsel.png +0 -0
  1143. data/vendor/local/share/gtk-doc/html/gtk/combo-box-entry.png +0 -0
  1144. data/vendor/local/share/gtk-doc/html/gtk/combo-box.png +0 -0
  1145. data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +50 -0
  1146. data/vendor/local/share/gtk-doc/html/gtk/dialog-error.png +0 -0
  1147. data/vendor/local/share/gtk-doc/html/gtk/dialog-information.png +0 -0
  1148. data/vendor/local/share/gtk-doc/html/gtk/dialog-password.png +0 -0
  1149. data/vendor/local/share/gtk-doc/html/gtk/dialog-question.png +0 -0
  1150. data/vendor/local/share/gtk-doc/html/gtk/dialog-warning.png +0 -0
  1151. data/vendor/local/share/gtk-doc/html/gtk/document-new.png +0 -0
  1152. data/vendor/local/share/gtk-doc/html/gtk/document-open.png +0 -0
  1153. data/vendor/local/share/gtk-doc/html/gtk/document-print-preview.png +0 -0
  1154. data/vendor/local/share/gtk-doc/html/gtk/document-print.png +0 -0
  1155. data/vendor/local/share/gtk-doc/html/gtk/document-properties.png +0 -0
  1156. data/vendor/local/share/gtk-doc/html/gtk/document-revert-ltr.png +0 -0
  1157. data/vendor/local/share/gtk-doc/html/gtk/document-revert-rtl.png +0 -0
  1158. data/vendor/local/share/gtk-doc/html/gtk/document-save-as.png +0 -0
  1159. data/vendor/local/share/gtk-doc/html/gtk/document-save.png +0 -0
  1160. data/vendor/local/share/gtk-doc/html/gtk/drive-harddisk.png +0 -0
  1161. data/vendor/local/share/gtk-doc/html/gtk/edit-clear.png +0 -0
  1162. data/vendor/local/share/gtk-doc/html/gtk/edit-copy.png +0 -0
  1163. data/vendor/local/share/gtk-doc/html/gtk/edit-cut.png +0 -0
  1164. data/vendor/local/share/gtk-doc/html/gtk/edit-delete.png +0 -0
  1165. data/vendor/local/share/gtk-doc/html/gtk/edit-find-replace.png +0 -0
  1166. data/vendor/local/share/gtk-doc/html/gtk/edit-find.png +0 -0
  1167. data/vendor/local/share/gtk-doc/html/gtk/edit-paste.png +0 -0
  1168. data/vendor/local/share/gtk-doc/html/gtk/edit-redo-ltr.png +0 -0
  1169. data/vendor/local/share/gtk-doc/html/gtk/edit-redo-rtl.png +0 -0
  1170. data/vendor/local/share/gtk-doc/html/gtk/edit-select-all.png +0 -0
  1171. data/vendor/local/share/gtk-doc/html/gtk/edit-undo-ltr.png +0 -0
  1172. data/vendor/local/share/gtk-doc/html/gtk/edit-undo-rtl.png +0 -0
  1173. data/vendor/local/share/gtk-doc/html/gtk/entry.png +0 -0
  1174. data/vendor/local/share/gtk-doc/html/gtk/figure-hierarchical-drawing.png +0 -0
  1175. data/vendor/local/share/gtk-doc/html/gtk/figure-windowed-label.png +0 -0
  1176. data/vendor/local/share/gtk-doc/html/gtk/file-button.png +0 -0
  1177. data/vendor/local/share/gtk-doc/html/gtk/filechooser.png +0 -0
  1178. data/vendor/local/share/gtk-doc/html/gtk/folder.png +0 -0
  1179. data/vendor/local/share/gtk-doc/html/gtk/font-button.png +0 -0
  1180. data/vendor/local/share/gtk-doc/html/gtk/fontsel.png +0 -0
  1181. data/vendor/local/share/gtk-doc/html/gtk/format-indent-less-ltr.png +0 -0
  1182. data/vendor/local/share/gtk-doc/html/gtk/format-indent-less-rtl.png +0 -0
  1183. data/vendor/local/share/gtk-doc/html/gtk/format-indent-more-ltr.png +0 -0
  1184. data/vendor/local/share/gtk-doc/html/gtk/format-indent-more-rtl.png +0 -0
  1185. data/vendor/local/share/gtk-doc/html/gtk/format-justify-center.png +0 -0
  1186. data/vendor/local/share/gtk-doc/html/gtk/format-justify-fill.png +0 -0
  1187. data/vendor/local/share/gtk-doc/html/gtk/format-justify-left.png +0 -0
  1188. data/vendor/local/share/gtk-doc/html/gtk/format-justify-right.png +0 -0
  1189. data/vendor/local/share/gtk-doc/html/gtk/format-text-bold.png +0 -0
  1190. data/vendor/local/share/gtk-doc/html/gtk/format-text-italic.png +0 -0
  1191. data/vendor/local/share/gtk-doc/html/gtk/format-text-strikethrough.png +0 -0
  1192. data/vendor/local/share/gtk-doc/html/gtk/format-text-underline.png +0 -0
  1193. data/vendor/local/share/gtk-doc/html/gtk/frame.png +0 -0
  1194. data/vendor/local/share/gtk-doc/html/gtk/glossary.html +312 -0
  1195. data/vendor/local/share/gtk-doc/html/gtk/go-bottom.png +0 -0
  1196. data/vendor/local/share/gtk-doc/html/gtk/go-down.png +0 -0
  1197. data/vendor/local/share/gtk-doc/html/gtk/go-first-ltr.png +0 -0
  1198. data/vendor/local/share/gtk-doc/html/gtk/go-first-rtl.png +0 -0
  1199. data/vendor/local/share/gtk-doc/html/gtk/go-home.png +0 -0
  1200. data/vendor/local/share/gtk-doc/html/gtk/go-jump-ltr.png +0 -0
  1201. data/vendor/local/share/gtk-doc/html/gtk/go-jump-rtl.png +0 -0
  1202. data/vendor/local/share/gtk-doc/html/gtk/go-last-ltr.png +0 -0
  1203. data/vendor/local/share/gtk-doc/html/gtk/go-last-rtl.png +0 -0
  1204. data/vendor/local/share/gtk-doc/html/gtk/go-next-ltr.png +0 -0
  1205. data/vendor/local/share/gtk-doc/html/gtk/go-next-rtl.png +0 -0
  1206. data/vendor/local/share/gtk-doc/html/gtk/go-previous-ltr.png +0 -0
  1207. data/vendor/local/share/gtk-doc/html/gtk/go-previous-rtl.png +0 -0
  1208. data/vendor/local/share/gtk-doc/html/gtk/go-top.png +0 -0
  1209. data/vendor/local/share/gtk-doc/html/gtk/go-up.png +0 -0
  1210. data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +522 -0
  1211. data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +857 -0
  1212. data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +1525 -0
  1213. data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +1419 -0
  1214. data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +285 -0
  1215. data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +346 -0
  1216. data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +1760 -0
  1217. data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +123 -0
  1218. data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +439 -0
  1219. data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +2571 -0
  1220. data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +979 -0
  1221. data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +169 -0
  1222. data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +1726 -0
  1223. data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +1601 -0
  1224. data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +1536 -0
  1225. data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +1357 -0
  1226. data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +1565 -0
  1227. data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +589 -0
  1228. data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +1497 -0
  1229. data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +1574 -0
  1230. data/vendor/local/share/gtk-doc/html/gtk/gtk-apply.png +0 -0
  1231. data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +86 -0
  1232. data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +441 -0
  1233. data/vendor/local/share/gtk-doc/html/gtk/gtk-cancel.png +0 -0
  1234. data/vendor/local/share/gtk-doc/html/gtk/gtk-caps-lock-warning.png +0 -0
  1235. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +568 -0
  1236. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +1175 -0
  1237. data/vendor/local/share/gtk-doc/html/gtk/gtk-color-picker.png +0 -0
  1238. data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +111 -0
  1239. data/vendor/local/share/gtk-doc/html/gtk/gtk-connect.png +0 -0
  1240. data/vendor/local/share/gtk-doc/html/gtk/gtk-convert.png +0 -0
  1241. data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +60 -0
  1242. data/vendor/local/share/gtk-doc/html/gtk/gtk-disconnect.png +0 -0
  1243. data/vendor/local/share/gtk-doc/html/gtk/gtk-dnd-multiple.png +0 -0
  1244. data/vendor/local/share/gtk-doc/html/gtk/gtk-dnd.png +0 -0
  1245. data/vendor/local/share/gtk-doc/html/gtk/gtk-edit.png +0 -0
  1246. data/vendor/local/share/gtk-doc/html/gtk/gtk-font.png +0 -0
  1247. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +493 -0
  1248. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +509 -0
  1249. data/vendor/local/share/gtk-doc/html/gtk/gtk-index.png +0 -0
  1250. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +85 -0
  1251. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +160 -0
  1252. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +91 -0
  1253. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +102 -0
  1254. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +118 -0
  1255. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +107 -0
  1256. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +256 -0
  1257. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +80 -0
  1258. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +264 -0
  1259. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +155 -0
  1260. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +310 -0
  1261. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +163 -0
  1262. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +293 -0
  1263. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +45 -0
  1264. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +124 -0
  1265. data/vendor/local/share/gtk-doc/html/gtk/gtk-no.png +0 -0
  1266. data/vendor/local/share/gtk-doc/html/gtk/gtk-ok.png +0 -0
  1267. data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-landscape.png +0 -0
  1268. data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-portrait.png +0 -0
  1269. data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-reverse-landscape.png +0 -0
  1270. data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-reverse-portrait.png +0 -0
  1271. data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +53 -0
  1272. data/vendor/local/share/gtk-doc/html/gtk/gtk-page-setup.png +0 -0
  1273. data/vendor/local/share/gtk-doc/html/gtk/gtk-preferences.png +0 -0
  1274. data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +68 -0
  1275. data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +1422 -0
  1276. data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +143 -0
  1277. data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +344 -0
  1278. data/vendor/local/share/gtk-doc/html/gtk/gtk-select-color.png +0 -0
  1279. data/vendor/local/share/gtk-doc/html/gtk/gtk-undelete-ltr.png +0 -0
  1280. data/vendor/local/share/gtk-doc/html/gtk/gtk-undelete-rtl.png +0 -0
  1281. data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +106 -0
  1282. data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +87 -0
  1283. data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +134 -0
  1284. data/vendor/local/share/gtk-doc/html/gtk/gtk-yes.png +0 -0
  1285. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +6465 -0
  1286. data/vendor/local/share/gtk-doc/html/gtk/gtk.html +159 -0
  1287. data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +95 -0
  1288. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +40 -0
  1289. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +41 -0
  1290. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +55 -0
  1291. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +51 -0
  1292. data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +668 -0
  1293. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +206 -0
  1294. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +97 -0
  1295. data/vendor/local/share/gtk-doc/html/gtk/help-about.png +0 -0
  1296. data/vendor/local/share/gtk-doc/html/gtk/help-contents.png +0 -0
  1297. data/vendor/local/share/gtk-doc/html/gtk/home.png +0 -0
  1298. data/vendor/local/share/gtk-doc/html/gtk/icon-view.png +0 -0
  1299. data/vendor/local/share/gtk-doc/html/gtk/image-missing.png +0 -0
  1300. data/vendor/local/share/gtk-doc/html/gtk/image.png +0 -0
  1301. data/vendor/local/share/gtk-doc/html/gtk/index.html +875 -0
  1302. data/vendor/local/share/gtk-doc/html/gtk/index.sgml +7988 -0
  1303. data/vendor/local/share/gtk-doc/html/gtk/label.png +0 -0
  1304. data/vendor/local/share/gtk-doc/html/gtk/layout-btlr.png +0 -0
  1305. data/vendor/local/share/gtk-doc/html/gtk/layout-btrl.png +0 -0
  1306. data/vendor/local/share/gtk-doc/html/gtk/layout-lrbt.png +0 -0
  1307. data/vendor/local/share/gtk-doc/html/gtk/layout-lrtb.png +0 -0
  1308. data/vendor/local/share/gtk-doc/html/gtk/layout-rlbt.png +0 -0
  1309. data/vendor/local/share/gtk-doc/html/gtk/layout-rltb.png +0 -0
  1310. data/vendor/local/share/gtk-doc/html/gtk/layout-tblr.png +0 -0
  1311. data/vendor/local/share/gtk-doc/html/gtk/layout-tbrl.png +0 -0
  1312. data/vendor/local/share/gtk-doc/html/gtk/left.png +0 -0
  1313. data/vendor/local/share/gtk-doc/html/gtk/link-button.png +0 -0
  1314. data/vendor/local/share/gtk-doc/html/gtk/list-add.png +0 -0
  1315. data/vendor/local/share/gtk-doc/html/gtk/list-and-tree.png +0 -0
  1316. data/vendor/local/share/gtk-doc/html/gtk/list-remove.png +0 -0
  1317. data/vendor/local/share/gtk-doc/html/gtk/media-floppy.png +0 -0
  1318. data/vendor/local/share/gtk-doc/html/gtk/media-optical.png +0 -0
  1319. data/vendor/local/share/gtk-doc/html/gtk/media-playback-pause.png +0 -0
  1320. data/vendor/local/share/gtk-doc/html/gtk/media-playback-start-ltr.png +0 -0
  1321. data/vendor/local/share/gtk-doc/html/gtk/media-playback-start-rtl.png +0 -0
  1322. data/vendor/local/share/gtk-doc/html/gtk/media-playback-stop.png +0 -0
  1323. data/vendor/local/share/gtk-doc/html/gtk/media-record.png +0 -0
  1324. data/vendor/local/share/gtk-doc/html/gtk/media-seek-backward-ltr.png +0 -0
  1325. data/vendor/local/share/gtk-doc/html/gtk/media-seek-backward-rtl.png +0 -0
  1326. data/vendor/local/share/gtk-doc/html/gtk/media-seek-forward-ltr.png +0 -0
  1327. data/vendor/local/share/gtk-doc/html/gtk/media-seek-forward-rtl.png +0 -0
  1328. data/vendor/local/share/gtk-doc/html/gtk/media-skip-backward-ltr.png +0 -0
  1329. data/vendor/local/share/gtk-doc/html/gtk/media-skip-backward-rtl.png +0 -0
  1330. data/vendor/local/share/gtk-doc/html/gtk/media-skip-forward-ltr.png +0 -0
  1331. data/vendor/local/share/gtk-doc/html/gtk/media-skip-forward-rtl.png +0 -0
  1332. data/vendor/local/share/gtk-doc/html/gtk/menubar.png +0 -0
  1333. data/vendor/local/share/gtk-doc/html/gtk/messagedialog.png +0 -0
  1334. data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +94 -0
  1335. data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +351 -0
  1336. data/vendor/local/share/gtk-doc/html/gtk/migrating.html +104 -0
  1337. data/vendor/local/share/gtk-doc/html/gtk/multiline-text.png +0 -0
  1338. data/vendor/local/share/gtk-doc/html/gtk/network-idle.png +0 -0
  1339. data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +71 -0
  1340. data/vendor/local/share/gtk-doc/html/gtk/notebook.png +0 -0
  1341. data/vendor/local/share/gtk-doc/html/gtk/pagesetupdialog.png +0 -0
  1342. data/vendor/local/share/gtk-doc/html/gtk/panes.png +0 -0
  1343. data/vendor/local/share/gtk-doc/html/gtk/printdialog.png +0 -0
  1344. data/vendor/local/share/gtk-doc/html/gtk/printer-error.png +0 -0
  1345. data/vendor/local/share/gtk-doc/html/gtk/printer-info.png +0 -0
  1346. data/vendor/local/share/gtk-doc/html/gtk/printer-paused.png +0 -0
  1347. data/vendor/local/share/gtk-doc/html/gtk/printer-warning.png +0 -0
  1348. data/vendor/local/share/gtk-doc/html/gtk/process-stop.png +0 -0
  1349. data/vendor/local/share/gtk-doc/html/gtk/progressbar.png +0 -0
  1350. data/vendor/local/share/gtk-doc/html/gtk/pt05.html +44 -0
  1351. data/vendor/local/share/gtk-doc/html/gtk/radio-group.png +0 -0
  1352. data/vendor/local/share/gtk-doc/html/gtk/recentchooserdialog.png +0 -0
  1353. data/vendor/local/share/gtk-doc/html/gtk/right.png +0 -0
  1354. data/vendor/local/share/gtk-doc/html/gtk/scales.png +0 -0
  1355. data/vendor/local/share/gtk-doc/html/gtk/scrolledwindow.png +0 -0
  1356. data/vendor/local/share/gtk-doc/html/gtk/separator.png +0 -0
  1357. data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +77 -0
  1358. data/vendor/local/share/gtk-doc/html/gtk/spinbutton.png +0 -0
  1359. data/vendor/local/share/gtk-doc/html/gtk/spinner.png +0 -0
  1360. data/vendor/local/share/gtk-doc/html/gtk/statusbar.png +0 -0
  1361. data/vendor/local/share/gtk-doc/html/gtk/style.css +266 -0
  1362. data/vendor/local/share/gtk-doc/html/gtk/system-run.png +0 -0
  1363. data/vendor/local/share/gtk-doc/html/gtk/text-x-generic.png +0 -0
  1364. data/vendor/local/share/gtk-doc/html/gtk/toggle-button.png +0 -0
  1365. data/vendor/local/share/gtk-doc/html/gtk/toolbar.png +0 -0
  1366. data/vendor/local/share/gtk-doc/html/gtk/toolpalette.png +0 -0
  1367. data/vendor/local/share/gtk-doc/html/gtk/tools-check-spelling.png +0 -0
  1368. data/vendor/local/share/gtk-doc/html/gtk/tree-view-coordinates.png +0 -0
  1369. data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +45 -0
  1370. data/vendor/local/share/gtk-doc/html/gtk/up.png +0 -0
  1371. data/vendor/local/share/gtk-doc/html/gtk/view-fullscreen.png +0 -0
  1372. data/vendor/local/share/gtk-doc/html/gtk/view-refresh.png +0 -0
  1373. data/vendor/local/share/gtk-doc/html/gtk/view-restore.png +0 -0
  1374. data/vendor/local/share/gtk-doc/html/gtk/view-sort-ascending.png +0 -0
  1375. data/vendor/local/share/gtk-doc/html/gtk/view-sort-descending.png +0 -0
  1376. data/vendor/local/share/gtk-doc/html/gtk/volumebutton.png +0 -0
  1377. data/vendor/local/share/gtk-doc/html/gtk/window-close.png +0 -0
  1378. data/vendor/local/share/gtk-doc/html/gtk/window.png +0 -0
  1379. data/vendor/local/share/gtk-doc/html/gtk/zoom-fit-best.png +0 -0
  1380. data/vendor/local/share/gtk-doc/html/gtk/zoom-in.png +0 -0
  1381. data/vendor/local/share/gtk-doc/html/gtk/zoom-original.png +0 -0
  1382. data/vendor/local/share/gtk-doc/html/gtk/zoom-out.png +0 -0
  1383. data/vendor/local/share/locale/af/LC_MESSAGES/gtk20-properties.mo +0 -0
  1384. data/vendor/local/share/locale/af/LC_MESSAGES/gtk20.mo +0 -0
  1385. data/vendor/local/share/locale/am/LC_MESSAGES/gtk20-properties.mo +0 -0
  1386. data/vendor/local/share/locale/am/LC_MESSAGES/gtk20.mo +0 -0
  1387. data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20-properties.mo +0 -0
  1388. data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20.mo +0 -0
  1389. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20-properties.mo +0 -0
  1390. data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20.mo +0 -0
  1391. data/vendor/local/share/locale/as/LC_MESSAGES/gtk20-properties.mo +0 -0
  1392. data/vendor/local/share/locale/as/LC_MESSAGES/gtk20.mo +0 -0
  1393. data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20-properties.mo +0 -0
  1394. data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20.mo +0 -0
  1395. data/vendor/local/share/locale/az/LC_MESSAGES/gtk20-properties.mo +0 -0
  1396. data/vendor/local/share/locale/az/LC_MESSAGES/gtk20.mo +0 -0
  1397. data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo +0 -0
  1398. data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20.mo +0 -0
  1399. data/vendor/local/share/locale/be/LC_MESSAGES/gtk20-properties.mo +0 -0
  1400. data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
  1401. data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
  1402. data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20.mo +0 -0
  1403. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
  1404. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
  1405. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1406. data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20.mo +0 -0
  1407. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20-properties.mo +0 -0
  1408. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20.mo +0 -0
  1409. data/vendor/local/share/locale/br/LC_MESSAGES/gtk20-properties.mo +0 -0
  1410. data/vendor/local/share/locale/br/LC_MESSAGES/gtk20.mo +0 -0
  1411. data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20-properties.mo +0 -0
  1412. data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20.mo +0 -0
  1413. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
  1414. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
  1415. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
  1416. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
  1417. data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20-properties.mo +0 -0
  1418. data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20.mo +0 -0
  1419. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20-properties.mo +0 -0
  1420. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
  1421. data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20-properties.mo +0 -0
  1422. data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20.mo +0 -0
  1423. data/vendor/local/share/locale/da/LC_MESSAGES/gtk20-properties.mo +0 -0
  1424. data/vendor/local/share/locale/da/LC_MESSAGES/gtk20.mo +0 -0
  1425. data/vendor/local/share/locale/de/LC_MESSAGES/gtk20-properties.mo +0 -0
  1426. data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
  1427. data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20-properties.mo +0 -0
  1428. data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20.mo +0 -0
  1429. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
  1430. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20.mo +0 -0
  1431. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo +0 -0
  1432. data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20.mo +0 -0
  1433. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
  1434. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
  1435. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20-properties.mo +0 -0
  1436. data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20.mo +0 -0
  1437. data/vendor/local/share/locale/es/LC_MESSAGES/gtk20-properties.mo +0 -0
  1438. data/vendor/local/share/locale/es/LC_MESSAGES/gtk20.mo +0 -0
  1439. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
  1440. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20.mo +0 -0
  1441. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20-properties.mo +0 -0
  1442. data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20.mo +0 -0
  1443. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20-properties.mo +0 -0
  1444. data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20.mo +0 -0
  1445. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1446. data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20.mo +0 -0
  1447. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1448. data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20.mo +0 -0
  1449. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20-properties.mo +0 -0
  1450. data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20.mo +0 -0
  1451. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1452. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
  1453. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20-properties.mo +0 -0
  1454. data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20.mo +0 -0
  1455. data/vendor/local/share/locale/he/LC_MESSAGES/gtk20-properties.mo +0 -0
  1456. data/vendor/local/share/locale/he/LC_MESSAGES/gtk20.mo +0 -0
  1457. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1458. data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20.mo +0 -0
  1459. data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1460. data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20.mo +0 -0
  1461. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20-properties.mo +0 -0
  1462. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
  1463. data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20-properties.mo +0 -0
  1464. data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20.mo +0 -0
  1465. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20-properties.mo +0 -0
  1466. data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20.mo +0 -0
  1467. data/vendor/local/share/locale/id/LC_MESSAGES/gtk20-properties.mo +0 -0
  1468. data/vendor/local/share/locale/id/LC_MESSAGES/gtk20.mo +0 -0
  1469. data/vendor/local/share/locale/io/LC_MESSAGES/gtk20-properties.mo +0 -0
  1470. data/vendor/local/share/locale/io/LC_MESSAGES/gtk20.mo +0 -0
  1471. data/vendor/local/share/locale/is/LC_MESSAGES/gtk20-properties.mo +0 -0
  1472. data/vendor/local/share/locale/is/LC_MESSAGES/gtk20.mo +0 -0
  1473. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
  1474. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
  1475. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
  1476. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20.mo +0 -0
  1477. data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20-properties.mo +0 -0
  1478. data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20.mo +0 -0
  1479. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1480. data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20.mo +0 -0
  1481. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1482. data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20.mo +0 -0
  1483. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20-properties.mo +0 -0
  1484. data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20.mo +0 -0
  1485. data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20-properties.mo +0 -0
  1486. data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20.mo +0 -0
  1487. data/vendor/local/share/locale/li/LC_MESSAGES/gtk20-properties.mo +0 -0
  1488. data/vendor/local/share/locale/li/LC_MESSAGES/gtk20.mo +0 -0
  1489. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
  1490. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
  1491. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20-properties.mo +0 -0
  1492. data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20.mo +0 -0
  1493. data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20-properties.mo +0 -0
  1494. data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20.mo +0 -0
  1495. data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1496. data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20.mo +0 -0
  1497. data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1498. data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20.mo +0 -0
  1499. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20-properties.mo +0 -0
  1500. data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20.mo +0 -0
  1501. data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1502. data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20.mo +0 -0
  1503. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1504. data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20.mo +0 -0
  1505. data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20-properties.mo +0 -0
  1506. data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20.mo +0 -0
  1507. data/vendor/local/share/locale/my/LC_MESSAGES/gtk20-properties.mo +0 -0
  1508. data/vendor/local/share/locale/my/LC_MESSAGES/gtk20.mo +0 -0
  1509. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20-properties.mo +0 -0
  1510. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
  1511. data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20-properties.mo +0 -0
  1512. data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20.mo +0 -0
  1513. data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20-properties.mo +0 -0
  1514. data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20.mo +0 -0
  1515. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1516. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
  1517. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20-properties.mo +0 -0
  1518. data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20.mo +0 -0
  1519. data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20-properties.mo +0 -0
  1520. data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20.mo +0 -0
  1521. data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20-properties.mo +0 -0
  1522. data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20.mo +0 -0
  1523. data/vendor/local/share/locale/or/LC_MESSAGES/gtk20-properties.mo +0 -0
  1524. data/vendor/local/share/locale/or/LC_MESSAGES/gtk20.mo +0 -0
  1525. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20-properties.mo +0 -0
  1526. data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20.mo +0 -0
  1527. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1528. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
  1529. data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20-properties.mo +0 -0
  1530. data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20.mo +0 -0
  1531. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20-properties.mo +0 -0
  1532. data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20.mo +0 -0
  1533. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo +0 -0
  1534. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20.mo +0 -0
  1535. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20-properties.mo +0 -0
  1536. data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20.mo +0 -0
  1537. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
  1538. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
  1539. data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20-properties.mo +0 -0
  1540. data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20.mo +0 -0
  1541. data/vendor/local/share/locale/si/LC_MESSAGES/gtk20-properties.mo +0 -0
  1542. data/vendor/local/share/locale/si/LC_MESSAGES/gtk20.mo +0 -0
  1543. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1544. data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20.mo +0 -0
  1545. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20-properties.mo +0 -0
  1546. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
  1547. data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20-properties.mo +0 -0
  1548. data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20.mo +0 -0
  1549. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1550. data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20.mo +0 -0
  1551. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo +0 -0
  1552. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20.mo +0 -0
  1553. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
  1554. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20.mo +0 -0
  1555. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20-properties.mo +0 -0
  1556. data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20.mo +0 -0
  1557. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20-properties.mo +0 -0
  1558. data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20.mo +0 -0
  1559. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20-properties.mo +0 -0
  1560. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
  1561. data/vendor/local/share/locale/th/LC_MESSAGES/gtk20-properties.mo +0 -0
  1562. data/vendor/local/share/locale/th/LC_MESSAGES/gtk20.mo +0 -0
  1563. data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1564. data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20.mo +0 -0
  1565. data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20-properties.mo +0 -0
  1566. data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20.mo +0 -0
  1567. data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20-properties.mo +0 -0
  1568. data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20.mo +0 -0
  1569. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20-properties.mo +0 -0
  1570. data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20.mo +0 -0
  1571. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20-properties.mo +0 -0
  1572. data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20.mo +0 -0
  1573. data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20-properties.mo +0 -0
  1574. data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20.mo +0 -0
  1575. data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20-properties.mo +0 -0
  1576. data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20.mo +0 -0
  1577. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20-properties.mo +0 -0
  1578. data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo +0 -0
  1579. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1580. data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20.mo +0 -0
  1581. data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20-properties.mo +0 -0
  1582. data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20.mo +0 -0
  1583. data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20-properties.mo +0 -0
  1584. data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20.mo +0 -0
  1585. data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20-properties.mo +0 -0
  1586. data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20.mo +0 -0
  1587. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo +0 -0
  1588. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20.mo +0 -0
  1589. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20-properties.mo +0 -0
  1590. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
  1591. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo +0 -0
  1592. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
  1593. data/vendor/local/share/themes/Default/gtk-2.0-key/gtkrc +3 -0
  1594. data/vendor/local/share/themes/Emacs/gtk-2.0-key/gtkrc +113 -0
  1595. data/vendor/local/share/themes/MS-Windows/gtk-2.0/gtkrc +66 -0
  1596. data/vendor/local/share/themes/Raleigh/gtk-2.0/gtkrc +3 -0
  1597. data/vendor/local/src/dieterv/packaging/gtk+_2.24.10-1_win32.log +4954 -0
  1598. data/vendor/local/src/dieterv/packaging/gtk+_2.24.10-1_win32.sh +99 -0
  1599. metadata +1759 -0
@@ -0,0 +1,203 @@
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>GtkSpinner</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
7
+ <link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
8
+ <link rel="up" href="DisplayWidgets.html" title="Display Widgets">
9
+ <link rel="prev" href="GtkStatusIcon.html" title="GtkStatusIcon">
10
+ <link rel="next" href="ButtonWidgets.html" title="Buttons and Toggles">
11
+ <meta name="generator" content="GTK-Doc V1.18 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
16
+ <tr valign="middle">
17
+ <td><a accesskey="p" href="GtkStatusIcon.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="DisplayWidgets.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
+ <th width="100%" align="center">GTK+ 2 Reference Manual</th>
21
+ <td><a accesskey="n" href="ButtonWidgets.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="#GtkSpinner.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GtkSpinner.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GtkSpinner.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#GtkSpinner.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
31
+  | 
32
+ <a href="#GtkSpinner.properties" class="shortcut">Properties</a>
33
+  | 
34
+ <a href="#GtkSpinner.style-properties" class="shortcut">Style Properties</a>
35
+ </td></tr>
36
+ </table>
37
+ <div class="refentry">
38
+ <a name="GtkSpinner"></a><div class="titlepage"></div>
39
+ <div class="refnamediv"><table width="100%"><tr>
40
+ <td valign="top">
41
+ <h2><span class="refentrytitle"><a name="GtkSpinner.top_of_page"></a>GtkSpinner</span></h2>
42
+ <p>GtkSpinner — Show a spinner animation</p>
43
+ </td>
44
+ <td valign="top" align="right"><img src="spinner.png"></td>
45
+ </tr></table></div>
46
+ <div class="refsynopsisdiv">
47
+ <a name="GtkSpinner.synopsis"></a><h2>Synopsis</h2>
48
+ <pre class="synopsis">
49
+ #include &lt;gtk/gtk.h&gt;
50
+
51
+ struct <a class="link" href="GtkSpinner.html#GtkSpinner-struct" title="struct GtkSpinner">GtkSpinner</a>;
52
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkSpinner.html#gtk-spinner-new" title="gtk_spinner_new ()">gtk_spinner_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
53
+ <span class="returnvalue">void</span> <a class="link" href="GtkSpinner.html#gtk-spinner-start" title="gtk_spinner_start ()">gtk_spinner_start</a> (<em class="parameter"><code><a class="link" href="GtkSpinner.html" title="GtkSpinner"><span class="type">GtkSpinner</span></a> *spinner</code></em>);
54
+ <span class="returnvalue">void</span> <a class="link" href="GtkSpinner.html#gtk-spinner-stop" title="gtk_spinner_stop ()">gtk_spinner_stop</a> (<em class="parameter"><code><a class="link" href="GtkSpinner.html" title="GtkSpinner"><span class="type">GtkSpinner</span></a> *spinner</code></em>);
55
+ </pre>
56
+ </div>
57
+ <div class="refsect1">
58
+ <a name="GtkSpinner.object-hierarchy"></a><h2>Object Hierarchy</h2>
59
+ <pre class="synopsis">
60
+ <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
61
+ +----<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
62
+ +----<a class="link" href="GtkObject.html" title="GtkObject">GtkObject</a>
63
+ +----<a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
64
+ +----<a class="link" href="GtkDrawingArea.html" title="GtkDrawingArea">GtkDrawingArea</a>
65
+ +----GtkSpinner
66
+ </pre>
67
+ </div>
68
+ <div class="refsect1">
69
+ <a name="GtkSpinner.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
70
+ <p>
71
+ GtkSpinner implements
72
+ AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
73
+ </div>
74
+ <div class="refsect1">
75
+ <a name="GtkSpinner.properties"></a><h2>Properties</h2>
76
+ <pre class="synopsis">
77
+ "<a class="link" href="GtkSpinner.html#GtkSpinner--active" title='The "active" property'>active</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
78
+ </pre>
79
+ </div>
80
+ <div class="refsect1">
81
+ <a name="GtkSpinner.style-properties"></a><h2>Style Properties</h2>
82
+ <pre class="synopsis">
83
+ "<a class="link" href="GtkSpinner.html#GtkSpinner--s-cycle-duration" title='The "cycle-duration" style property'>cycle-duration</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read
84
+ "<a class="link" href="GtkSpinner.html#GtkSpinner--s-num-steps" title='The "num-steps" style property'>num-steps</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read
85
+ </pre>
86
+ </div>
87
+ <div class="refsect1">
88
+ <a name="GtkSpinner.description"></a><h2>Description</h2>
89
+ <p>
90
+ A GtkSpinner widget displays an icon-size spinning animation.
91
+ It is often used as an alternative to a <a class="link" href="GtkProgressBar.html" title="GtkProgressBar"><span class="type">GtkProgressBar</span></a> for
92
+ displaying indefinite activity, instead of actual progress.
93
+ </p>
94
+ <p>
95
+ To start the animation, use <a class="link" href="GtkSpinner.html#gtk-spinner-start" title="gtk_spinner_start ()"><code class="function">gtk_spinner_start()</code></a>, to stop it
96
+ use <a class="link" href="GtkSpinner.html#gtk-spinner-stop" title="gtk_spinner_stop ()"><code class="function">gtk_spinner_stop()</code></a>.
97
+ </p>
98
+ </div>
99
+ <div class="refsect1">
100
+ <a name="GtkSpinner.details"></a><h2>Details</h2>
101
+ <div class="refsect2">
102
+ <a name="GtkSpinner-struct"></a><h3>struct GtkSpinner</h3>
103
+ <pre class="programlisting">struct GtkSpinner;</pre>
104
+ <p>
105
+ </p>
106
+ </div>
107
+ <hr>
108
+ <div class="refsect2">
109
+ <a name="gtk-spinner-new"></a><h3>gtk_spinner_new ()</h3>
110
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_spinner_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
111
+ <p>
112
+ Returns a new spinner widget. Not yet started.
113
+ </p>
114
+ <div class="variablelist"><table border="0">
115
+ <col align="left" valign="top">
116
+ <tbody><tr>
117
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
118
+ <td>a new <a class="link" href="GtkSpinner.html" title="GtkSpinner"><span class="type">GtkSpinner</span></a>
119
+ </td>
120
+ </tr></tbody>
121
+ </table></div>
122
+ <p class="since">Since 2.20</p>
123
+ </div>
124
+ <hr>
125
+ <div class="refsect2">
126
+ <a name="gtk-spinner-start"></a><h3>gtk_spinner_start ()</h3>
127
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_spinner_start (<em class="parameter"><code><a class="link" href="GtkSpinner.html" title="GtkSpinner"><span class="type">GtkSpinner</span></a> *spinner</code></em>);</pre>
128
+ <p>
129
+ Starts the animation of the spinner.
130
+ </p>
131
+ <div class="variablelist"><table border="0">
132
+ <col align="left" valign="top">
133
+ <tbody><tr>
134
+ <td><p><span class="term"><em class="parameter"><code>spinner</code></em> :</span></p></td>
135
+ <td>a <a class="link" href="GtkSpinner.html" title="GtkSpinner"><span class="type">GtkSpinner</span></a>
136
+ </td>
137
+ </tr></tbody>
138
+ </table></div>
139
+ <p class="since">Since 2.20</p>
140
+ </div>
141
+ <hr>
142
+ <div class="refsect2">
143
+ <a name="gtk-spinner-stop"></a><h3>gtk_spinner_stop ()</h3>
144
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_spinner_stop (<em class="parameter"><code><a class="link" href="GtkSpinner.html" title="GtkSpinner"><span class="type">GtkSpinner</span></a> *spinner</code></em>);</pre>
145
+ <p>
146
+ Stops the animation of the spinner.
147
+ </p>
148
+ <div class="variablelist"><table border="0">
149
+ <col align="left" valign="top">
150
+ <tbody><tr>
151
+ <td><p><span class="term"><em class="parameter"><code>spinner</code></em> :</span></p></td>
152
+ <td>a <a class="link" href="GtkSpinner.html" title="GtkSpinner"><span class="type">GtkSpinner</span></a>
153
+ </td>
154
+ </tr></tbody>
155
+ </table></div>
156
+ <p class="since">Since 2.20</p>
157
+ </div>
158
+ </div>
159
+ <div class="refsect1">
160
+ <a name="GtkSpinner.property-details"></a><h2>Property Details</h2>
161
+ <div class="refsect2">
162
+ <a name="GtkSpinner--active"></a><h3>The <code class="literal">"active"</code> property</h3>
163
+ <pre class="programlisting"> "active" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
164
+ <p>Whether the spinner is active.</p>
165
+ <p>Default value: FALSE</p>
166
+ </div>
167
+ </div>
168
+ <div class="refsect1">
169
+ <a name="GtkSpinner.style-property-details"></a><h2>Style Property Details</h2>
170
+ <div class="refsect2">
171
+ <a name="GtkSpinner--s-cycle-duration"></a><h3>The <code class="literal">"cycle-duration"</code> style property</h3>
172
+ <pre class="programlisting"> "cycle-duration" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read</pre>
173
+ <p>
174
+ The duration in milliseconds for the spinner to complete a full cycle.
175
+ </p>
176
+ <p>Allowed values: &gt;= 500</p>
177
+ <p>Default value: 1000</p>
178
+ <p class="since">Since 2.20</p>
179
+ </div>
180
+ <hr>
181
+ <div class="refsect2">
182
+ <a name="GtkSpinner--s-num-steps"></a><h3>The <code class="literal">"num-steps"</code> style property</h3>
183
+ <pre class="programlisting"> "num-steps" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read</pre>
184
+ <p>
185
+ The number of steps for the spinner to complete a full loop.
186
+ The animation will complete a full cycle in one second by default
187
+ (see the <span class="type">"cycle-duration"</span> style property).
188
+ </p>
189
+ <p>Allowed values: &gt;= 1</p>
190
+ <p>Default value: 12</p>
191
+ <p class="since">Since 2.20</p>
192
+ </div>
193
+ </div>
194
+ <div class="refsect1">
195
+ <a name="GtkSpinner.see-also"></a><h2>See Also</h2>
196
+ <a class="link" href="GtkCellRendererSpinner.html" title="GtkCellRendererSpinner"><span class="type">GtkCellRendererSpinner</span></a>, <a class="link" href="GtkProgressBar.html" title="GtkProgressBar"><span class="type">GtkProgressBar</span></a>
197
+ </div>
198
+ </div>
199
+ <div class="footer">
200
+ <hr>
201
+ Generated by GTK-Doc V1.18</div>
202
+ </body>
203
+ </html>
@@ -0,0 +1,1716 @@
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>GtkStatusIcon</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
7
+ <link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
8
+ <link rel="up" href="DisplayWidgets.html" title="Display Widgets">
9
+ <link rel="prev" href="GtkInfoBar.html" title="GtkInfoBar">
10
+ <link rel="next" href="GtkSpinner.html" title="GtkSpinner">
11
+ <meta name="generator" content="GTK-Doc V1.18 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
16
+ <tr valign="middle">
17
+ <td><a accesskey="p" href="GtkInfoBar.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
+ <td><a accesskey="u" href="DisplayWidgets.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
+ <th width="100%" align="center">GTK+ 2 Reference Manual</th>
21
+ <td><a accesskey="n" href="GtkSpinner.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="#GtkStatusIcon.synopsis" class="shortcut">Top</a>
25
+  | 
26
+ <a href="#GtkStatusIcon.description" class="shortcut">Description</a>
27
+  | 
28
+ <a href="#GtkStatusIcon.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
+  | 
30
+ <a href="#GtkStatusIcon.properties" class="shortcut">Properties</a>
31
+  | 
32
+ <a href="#GtkStatusIcon.signals" class="shortcut">Signals</a>
33
+ </td></tr>
34
+ </table>
35
+ <div class="refentry">
36
+ <a name="GtkStatusIcon"></a><div class="titlepage"></div>
37
+ <div class="refnamediv"><table width="100%"><tr>
38
+ <td valign="top">
39
+ <h2><span class="refentrytitle"><a name="GtkStatusIcon.top_of_page"></a>GtkStatusIcon</span></h2>
40
+ <p>GtkStatusIcon — Display an icon in the system tray</p>
41
+ </td>
42
+ <td valign="top" align="right"></td>
43
+ </tr></table></div>
44
+ <div class="refsynopsisdiv">
45
+ <a name="GtkStatusIcon.synopsis"></a><h2>Synopsis</h2>
46
+ <pre class="synopsis">
47
+ #include &lt;gtk/gtk.h&gt;
48
+
49
+ struct <a class="link" href="GtkStatusIcon.html#GtkStatusIcon-struct" title="struct GtkStatusIcon">GtkStatusIcon</a>;
50
+ <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> * <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new" title="gtk_status_icon_new ()">gtk_status_icon_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
51
+ <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> * <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-pixbuf" title="gtk_status_icon_new_from_pixbuf ()">gtk_status_icon_new_from_pixbuf</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);
52
+ <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> * <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-file" title="gtk_status_icon_new_from_file ()">gtk_status_icon_new_from_file</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *filename</code></em>);
53
+ <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> * <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-stock" title="gtk_status_icon_new_from_stock ()">gtk_status_icon_new_from_stock</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *stock_id</code></em>);
54
+ <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> * <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-icon-name" title="gtk_status_icon_new_from_icon_name ()">gtk_status_icon_new_from_icon_name</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon_name</code></em>);
55
+ <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> * <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-gicon" title="gtk_status_icon_new_from_gicon ()">gtk_status_icon_new_from_gicon</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>);
56
+ <span class="returnvalue">void</span> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-from-pixbuf" title="gtk_status_icon_set_from_pixbuf ()">gtk_status_icon_set_from_pixbuf</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
57
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);
58
+ <span class="returnvalue">void</span> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-from-file" title="gtk_status_icon_set_from_file ()">gtk_status_icon_set_from_file</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
59
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *filename</code></em>);
60
+ <span class="returnvalue">void</span> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-from-stock" title="gtk_status_icon_set_from_stock ()">gtk_status_icon_set_from_stock</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
61
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *stock_id</code></em>);
62
+ <span class="returnvalue">void</span> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-from-icon-name" title="gtk_status_icon_set_from_icon_name ()">gtk_status_icon_set_from_icon_name</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
63
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon_name</code></em>);
64
+ <span class="returnvalue">void</span> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-from-gicon" title="gtk_status_icon_set_from_gicon ()">gtk_status_icon_set_from_gicon</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
65
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>);
66
+ <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="returnvalue">GtkImageType</span></a> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-storage-type" title="gtk_status_icon_get_storage_type ()">gtk_status_icon_get_storage_type</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
67
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-pixbuf" title="gtk_status_icon_get_pixbuf ()">gtk_status_icon_get_pixbuf</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
68
+ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-stock" title="gtk_status_icon_get_stock ()">gtk_status_icon_get_stock</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
69
+ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-icon-name" title="gtk_status_icon_get_icon_name ()">gtk_status_icon_get_icon_name</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
70
+ <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="returnvalue">GIcon</span></a> * <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-gicon" title="gtk_status_icon_get_gicon ()">gtk_status_icon_get_gicon</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
71
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-size" title="gtk_status_icon_get_size ()">gtk_status_icon_get_size</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
72
+ <span class="returnvalue">void</span> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-screen" title="gtk_status_icon_set_screen ()">gtk_status_icon_set_screen</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
73
+ <em class="parameter"><code><a href="../gdk/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);
74
+ <a href="../gdk/GdkScreen.html"><span class="returnvalue">GdkScreen</span></a> * <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-screen" title="gtk_status_icon_get_screen ()">gtk_status_icon_get_screen</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
75
+ <span class="returnvalue">void</span> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-tooltip" title="gtk_status_icon_set_tooltip ()">gtk_status_icon_set_tooltip</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
76
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *tooltip_text</code></em>);
77
+ <span class="returnvalue">void</span> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-tooltip-text" title="gtk_status_icon_set_tooltip_text ()">gtk_status_icon_set_tooltip_text</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
78
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);
79
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-tooltip-text" title="gtk_status_icon_get_tooltip_text ()">gtk_status_icon_get_tooltip_text</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
80
+ <span class="returnvalue">void</span> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-tooltip-markup" title="gtk_status_icon_set_tooltip_markup ()">gtk_status_icon_set_tooltip_markup</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
81
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *markup</code></em>);
82
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-tooltip-markup" title="gtk_status_icon_get_tooltip_markup ()">gtk_status_icon_get_tooltip_markup</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
83
+ <span class="returnvalue">void</span> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-has-tooltip" title="gtk_status_icon_set_has_tooltip ()">gtk_status_icon_set_has_tooltip</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
84
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> has_tooltip</code></em>);
85
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-has-tooltip" title="gtk_status_icon_get_has_tooltip ()">gtk_status_icon_get_has_tooltip</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
86
+ <span class="returnvalue">void</span> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-title" title="gtk_status_icon_set_title ()">gtk_status_icon_set_title</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
87
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *title</code></em>);
88
+ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-title" title="gtk_status_icon_get_title ()">gtk_status_icon_get_title</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
89
+ <span class="returnvalue">void</span> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-name" title="gtk_status_icon_set_name ()">gtk_status_icon_set_name</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
90
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);
91
+ <span class="returnvalue">void</span> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-visible" title="gtk_status_icon_set_visible ()">gtk_status_icon_set_visible</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
92
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> visible</code></em>);
93
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-visible" title="gtk_status_icon_get_visible ()">gtk_status_icon_get_visible</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
94
+ <span class="returnvalue">void</span> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-blinking" title="gtk_status_icon_set_blinking ()">gtk_status_icon_set_blinking</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
95
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> blinking</code></em>);
96
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-blinking" title="gtk_status_icon_get_blinking ()">gtk_status_icon_get_blinking</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
97
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-is-embedded" title="gtk_status_icon_is_embedded ()">gtk_status_icon_is_embedded</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
98
+ <span class="returnvalue">void</span> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-position-menu" title="gtk_status_icon_position_menu ()">gtk_status_icon_position_menu</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
99
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
100
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>,
101
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *push_in</code></em>,
102
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);
103
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-geometry" title="gtk_status_icon_get_geometry ()">gtk_status_icon_get_geometry</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
104
+ <em class="parameter"><code><a href="../gdk/GdkScreen.html"><span class="type">GdkScreen</span></a> **screen</code></em>,
105
+ <em class="parameter"><code><a href="../gdk/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *area</code></em>,
106
+ <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> *orientation</code></em>);
107
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="returnvalue">guint32</span></a> <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-x11-window-id" title="gtk_status_icon_get_x11_window_id ()">gtk_status_icon_get_x11_window_id</a> (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);
108
+ </pre>
109
+ </div>
110
+ <div class="refsect1">
111
+ <a name="GtkStatusIcon.object-hierarchy"></a><h2>Object Hierarchy</h2>
112
+ <pre class="synopsis">
113
+ <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
114
+ +----GtkStatusIcon
115
+ </pre>
116
+ </div>
117
+ <div class="refsect1">
118
+ <a name="GtkStatusIcon.properties"></a><h2>Properties</h2>
119
+ <pre class="synopsis">
120
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--blinking" title='The "blinking" property'>blinking</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
121
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--embedded" title='The "embedded" property'>embedded</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read
122
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--file" title='The "file" property'>file</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Write
123
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--gicon" title='The "gicon" property'>gicon</a>" <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a>* : Read / Write
124
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--has-tooltip" title='The "has-tooltip" property'>has-tooltip</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
125
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--icon-name" title='The "icon-name" property'>icon-name</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
126
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--orientation" title='The "orientation" property'>orientation</a>" <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> : Read
127
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--pixbuf" title='The "pixbuf" property'>pixbuf</a>" <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>* : Read / Write
128
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--screen" title='The "screen" property'>screen</a>" <a href="../gdk/GdkScreen.html"><span class="type">GdkScreen</span></a>* : Read / Write
129
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--size" title='The "size" property'>size</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read
130
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--stock" title='The "stock" property'>stock</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
131
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--storage-type" title='The "storage-type" property'>storage-type</a>" <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="type">GtkImageType</span></a> : Read
132
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--title" title='The "title" property'>title</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
133
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--tooltip-markup" title='The "tooltip-markup" property'>tooltip-markup</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
134
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--tooltip-text" title='The "tooltip-text" property'>tooltip-text</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
135
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon--visible" title='The "visible" property'>visible</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
136
+ </pre>
137
+ </div>
138
+ <div class="refsect1">
139
+ <a name="GtkStatusIcon.signals"></a><h2>Signals</h2>
140
+ <pre class="synopsis">
141
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-activate" title='The "activate" signal'>activate</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
142
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-button-press-event" title='The "button-press-event" signal'>button-press-event</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
143
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-button-release-event" title='The "button-release-event" signal'>button-release-event</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
144
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-popup-menu" title='The "popup-menu" signal'>popup-menu</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
145
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-query-tooltip" title='The "query-tooltip" signal'>query-tooltip</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
146
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-scroll-event" title='The "scroll-event" signal'>scroll-event</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
147
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-size-changed" title='The "size-changed" signal'>size-changed</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
148
+ </pre>
149
+ </div>
150
+ <div class="refsect1">
151
+ <a name="GtkStatusIcon.description"></a><h2>Description</h2>
152
+ <p>
153
+ The "system tray" or notification area is normally used for transient icons
154
+ that indicate some special state. For example, a system tray icon might
155
+ appear to tell the user that they have new mail, or have an incoming instant
156
+ message, or something along those lines. The basic idea is that creating an
157
+ icon in the notification area is less annoying than popping up a dialog.
158
+ </p>
159
+ <p>
160
+ A <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> object can be used to display an icon in a "system tray".
161
+ The icon can have a tooltip, and the user can interact with it by
162
+ activating it or popping up a context menu. Critical information should
163
+ not solely be displayed in a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>, since it may not be
164
+ visible (e.g. when the user doesn't have a notification area on his panel).
165
+ This can be checked with <a class="link" href="GtkStatusIcon.html#gtk-status-icon-is-embedded" title="gtk_status_icon_is_embedded ()"><code class="function">gtk_status_icon_is_embedded()</code></a>.
166
+ </p>
167
+ <p>
168
+ On X11, the implementation follows the freedesktop.org "System Tray"
169
+ <a class="ulink" href="http://www.freedesktop.org/wiki/Standards/systemtray-spec" target="_top">specification</a>. Implementations of the "tray" side of this specification can
170
+ be found e.g. in the GNOME and KDE panel applications.
171
+ </p>
172
+ <p>
173
+ Note that a GtkStatusIcon is <span class="emphasis"><em>not</em></span> a widget, but just
174
+ a <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>. Making it a widget would be impractical, since the system tray
175
+ on Win32 doesn't allow to embed arbitrary widgets.
176
+ </p>
177
+ </div>
178
+ <div class="refsect1">
179
+ <a name="GtkStatusIcon.details"></a><h2>Details</h2>
180
+ <div class="refsect2">
181
+ <a name="GtkStatusIcon-struct"></a><h3>struct GtkStatusIcon</h3>
182
+ <pre class="programlisting">struct GtkStatusIcon;</pre>
183
+ <p>
184
+ </p>
185
+ </div>
186
+ <hr>
187
+ <div class="refsect2">
188
+ <a name="gtk-status-icon-new"></a><h3>gtk_status_icon_new ()</h3>
189
+ <pre class="programlisting"><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> * gtk_status_icon_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
190
+ <p>
191
+ Creates an empty status icon object.
192
+ </p>
193
+ <div class="variablelist"><table border="0">
194
+ <col align="left" valign="top">
195
+ <tbody><tr>
196
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
197
+ <td>a new <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
198
+ </td>
199
+ </tr></tbody>
200
+ </table></div>
201
+ <p class="since">Since 2.10</p>
202
+ </div>
203
+ <hr>
204
+ <div class="refsect2">
205
+ <a name="gtk-status-icon-new-from-pixbuf"></a><h3>gtk_status_icon_new_from_pixbuf ()</h3>
206
+ <pre class="programlisting"><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> * gtk_status_icon_new_from_pixbuf (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
207
+ <p>
208
+ Creates a status icon displaying <em class="parameter"><code>pixbuf</code></em>.
209
+ </p>
210
+ <p>
211
+ The image will be scaled down to fit in the available
212
+ space in the notification area, if necessary.
213
+ </p>
214
+ <div class="variablelist"><table border="0">
215
+ <col align="left" valign="top">
216
+ <tbody>
217
+ <tr>
218
+ <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
219
+ <td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>
220
+ </td>
221
+ </tr>
222
+ <tr>
223
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
224
+ <td>a new <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
225
+ </td>
226
+ </tr>
227
+ </tbody>
228
+ </table></div>
229
+ <p class="since">Since 2.10</p>
230
+ </div>
231
+ <hr>
232
+ <div class="refsect2">
233
+ <a name="gtk-status-icon-new-from-file"></a><h3>gtk_status_icon_new_from_file ()</h3>
234
+ <pre class="programlisting"><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> * gtk_status_icon_new_from_file (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *filename</code></em>);</pre>
235
+ <p>
236
+ Creates a status icon displaying the file <em class="parameter"><code>filename</code></em>.
237
+ </p>
238
+ <p>
239
+ The image will be scaled down to fit in the available
240
+ space in the notification area, if necessary.
241
+ </p>
242
+ <div class="variablelist"><table border="0">
243
+ <col align="left" valign="top">
244
+ <tbody>
245
+ <tr>
246
+ <td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
247
+ <td>a filename</td>
248
+ </tr>
249
+ <tr>
250
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
251
+ <td>a new <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
252
+ </td>
253
+ </tr>
254
+ </tbody>
255
+ </table></div>
256
+ <p class="since">Since 2.10</p>
257
+ </div>
258
+ <hr>
259
+ <div class="refsect2">
260
+ <a name="gtk-status-icon-new-from-stock"></a><h3>gtk_status_icon_new_from_stock ()</h3>
261
+ <pre class="programlisting"><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> * gtk_status_icon_new_from_stock (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *stock_id</code></em>);</pre>
262
+ <p>
263
+ Creates a status icon displaying a stock icon. Sample stock icon
264
+ names are <a class="link" href="gtk-Stock-Items.html#GTK-STOCK-OPEN:CAPS" title="GTK_STOCK_OPEN"><span class="type">GTK_STOCK_OPEN</span></a>, <a class="link" href="gtk-Stock-Items.html#GTK-STOCK-QUIT:CAPS" title="GTK_STOCK_QUIT"><span class="type">GTK_STOCK_QUIT</span></a>. You can register your
265
+ own stock icon names, see <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-factory-add-default" title="gtk_icon_factory_add_default ()"><code class="function">gtk_icon_factory_add_default()</code></a> and
266
+ <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-factory-add" title="gtk_icon_factory_add ()"><code class="function">gtk_icon_factory_add()</code></a>.
267
+ </p>
268
+ <div class="variablelist"><table border="0">
269
+ <col align="left" valign="top">
270
+ <tbody>
271
+ <tr>
272
+ <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
273
+ <td>a stock icon id</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="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
278
+ </td>
279
+ </tr>
280
+ </tbody>
281
+ </table></div>
282
+ <p class="since">Since 2.10</p>
283
+ </div>
284
+ <hr>
285
+ <div class="refsect2">
286
+ <a name="gtk-status-icon-new-from-icon-name"></a><h3>gtk_status_icon_new_from_icon_name ()</h3>
287
+ <pre class="programlisting"><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> * gtk_status_icon_new_from_icon_name (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon_name</code></em>);</pre>
288
+ <p>
289
+ Creates a status icon displaying an icon from the current icon theme.
290
+ If the current icon theme is changed, the icon will be updated
291
+ appropriately.
292
+ </p>
293
+ <div class="variablelist"><table border="0">
294
+ <col align="left" valign="top">
295
+ <tbody>
296
+ <tr>
297
+ <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
298
+ <td>an icon name</td>
299
+ </tr>
300
+ <tr>
301
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
302
+ <td>a new <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
303
+ </td>
304
+ </tr>
305
+ </tbody>
306
+ </table></div>
307
+ <p class="since">Since 2.10</p>
308
+ </div>
309
+ <hr>
310
+ <div class="refsect2">
311
+ <a name="gtk-status-icon-new-from-gicon"></a><h3>gtk_status_icon_new_from_gicon ()</h3>
312
+ <pre class="programlisting"><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="returnvalue">GtkStatusIcon</span></a> * gtk_status_icon_new_from_gicon (<em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>);</pre>
313
+ <p>
314
+ Creates a status icon displaying a <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a>. If the icon is a
315
+ themed icon, it will be updated when the theme changes.
316
+ </p>
317
+ <div class="variablelist"><table border="0">
318
+ <col align="left" valign="top">
319
+ <tbody>
320
+ <tr>
321
+ <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
322
+ <td>a <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a>
323
+ </td>
324
+ </tr>
325
+ <tr>
326
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
327
+ <td>a new <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
328
+ </td>
329
+ </tr>
330
+ </tbody>
331
+ </table></div>
332
+ <p class="since">Since 2.14</p>
333
+ </div>
334
+ <hr>
335
+ <div class="refsect2">
336
+ <a name="gtk-status-icon-set-from-pixbuf"></a><h3>gtk_status_icon_set_from_pixbuf ()</h3>
337
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_status_icon_set_from_pixbuf (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
338
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
339
+ <p>
340
+ Makes <em class="parameter"><code>status_icon</code></em> display <em class="parameter"><code>pixbuf</code></em>.
341
+ See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-pixbuf" title="gtk_status_icon_new_from_pixbuf ()"><code class="function">gtk_status_icon_new_from_pixbuf()</code></a> for details.
342
+ </p>
343
+ <div class="variablelist"><table border="0">
344
+ <col align="left" valign="top">
345
+ <tbody>
346
+ <tr>
347
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
348
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
349
+ </td>
350
+ </tr>
351
+ <tr>
352
+ <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
353
+ <td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
354
+ </td>
355
+ </tr>
356
+ </tbody>
357
+ </table></div>
358
+ <p class="since">Since 2.10</p>
359
+ </div>
360
+ <hr>
361
+ <div class="refsect2">
362
+ <a name="gtk-status-icon-set-from-file"></a><h3>gtk_status_icon_set_from_file ()</h3>
363
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_status_icon_set_from_file (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
364
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *filename</code></em>);</pre>
365
+ <p>
366
+ Makes <em class="parameter"><code>status_icon</code></em> display the file <em class="parameter"><code>filename</code></em>.
367
+ See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-file" title="gtk_status_icon_new_from_file ()"><code class="function">gtk_status_icon_new_from_file()</code></a> for details.
368
+ </p>
369
+ <div class="variablelist"><table border="0">
370
+ <col align="left" valign="top">
371
+ <tbody>
372
+ <tr>
373
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
374
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
375
+ </td>
376
+ </tr>
377
+ <tr>
378
+ <td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
379
+ <td>a filename</td>
380
+ </tr>
381
+ </tbody>
382
+ </table></div>
383
+ <p class="since">Since 2.10</p>
384
+ </div>
385
+ <hr>
386
+ <div class="refsect2">
387
+ <a name="gtk-status-icon-set-from-stock"></a><h3>gtk_status_icon_set_from_stock ()</h3>
388
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_status_icon_set_from_stock (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
389
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *stock_id</code></em>);</pre>
390
+ <p>
391
+ Makes <em class="parameter"><code>status_icon</code></em> display the stock icon with the id <em class="parameter"><code>stock_id</code></em>.
392
+ See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-stock" title="gtk_status_icon_new_from_stock ()"><code class="function">gtk_status_icon_new_from_stock()</code></a> for details.
393
+ </p>
394
+ <div class="variablelist"><table border="0">
395
+ <col align="left" valign="top">
396
+ <tbody>
397
+ <tr>
398
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
399
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
400
+ </td>
401
+ </tr>
402
+ <tr>
403
+ <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
404
+ <td>a stock icon id</td>
405
+ </tr>
406
+ </tbody>
407
+ </table></div>
408
+ <p class="since">Since 2.10</p>
409
+ </div>
410
+ <hr>
411
+ <div class="refsect2">
412
+ <a name="gtk-status-icon-set-from-icon-name"></a><h3>gtk_status_icon_set_from_icon_name ()</h3>
413
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_status_icon_set_from_icon_name (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
414
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon_name</code></em>);</pre>
415
+ <p>
416
+ Makes <em class="parameter"><code>status_icon</code></em> display the icon named <em class="parameter"><code>icon_name</code></em> from the
417
+ current icon theme.
418
+ See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-icon-name" title="gtk_status_icon_new_from_icon_name ()"><code class="function">gtk_status_icon_new_from_icon_name()</code></a> for details.
419
+ </p>
420
+ <div class="variablelist"><table border="0">
421
+ <col align="left" valign="top">
422
+ <tbody>
423
+ <tr>
424
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
425
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
426
+ </td>
427
+ </tr>
428
+ <tr>
429
+ <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
430
+ <td>an icon name</td>
431
+ </tr>
432
+ </tbody>
433
+ </table></div>
434
+ <p class="since">Since 2.10</p>
435
+ </div>
436
+ <hr>
437
+ <div class="refsect2">
438
+ <a name="gtk-status-icon-set-from-gicon"></a><h3>gtk_status_icon_set_from_gicon ()</h3>
439
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_status_icon_set_from_gicon (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
440
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>);</pre>
441
+ <p>
442
+ Makes <em class="parameter"><code>status_icon</code></em> display the <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a>.
443
+ See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-gicon" title="gtk_status_icon_new_from_gicon ()"><code class="function">gtk_status_icon_new_from_gicon()</code></a> for details.
444
+ </p>
445
+ <div class="variablelist"><table border="0">
446
+ <col align="left" valign="top">
447
+ <tbody>
448
+ <tr>
449
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
450
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
451
+ </td>
452
+ </tr>
453
+ <tr>
454
+ <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
455
+ <td>a GIcon</td>
456
+ </tr>
457
+ </tbody>
458
+ </table></div>
459
+ <p class="since">Since 2.14</p>
460
+ </div>
461
+ <hr>
462
+ <div class="refsect2">
463
+ <a name="gtk-status-icon-get-storage-type"></a><h3>gtk_status_icon_get_storage_type ()</h3>
464
+ <pre class="programlisting"><a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="returnvalue">GtkImageType</span></a> gtk_status_icon_get_storage_type (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
465
+ <p>
466
+ Gets the type of representation being used by the <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
467
+ to store image data. If the <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> has no image data,
468
+ the return value will be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a>.
469
+ </p>
470
+ <div class="variablelist"><table border="0">
471
+ <col align="left" valign="top">
472
+ <tbody>
473
+ <tr>
474
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
475
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
476
+ </td>
477
+ </tr>
478
+ <tr>
479
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
480
+ <td>the image representation being used</td>
481
+ </tr>
482
+ </tbody>
483
+ </table></div>
484
+ <p class="since">Since 2.10</p>
485
+ </div>
486
+ <hr>
487
+ <div class="refsect2">
488
+ <a name="gtk-status-icon-get-pixbuf"></a><h3>gtk_status_icon_get_pixbuf ()</h3>
489
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * gtk_status_icon_get_pixbuf (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
490
+ <p>
491
+ Gets the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> being displayed by the <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>.
492
+ The storage type of the status icon must be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a> or
493
+ <a class="link" href="GtkImage.html#GTK-IMAGE-PIXBUF:CAPS"><code class="literal">GTK_IMAGE_PIXBUF</code></a> (see <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-storage-type" title="gtk_status_icon_get_storage_type ()"><code class="function">gtk_status_icon_get_storage_type()</code></a>).
494
+ The caller of this function does not own a reference to the
495
+ returned pixbuf.
496
+ </p>
497
+ <div class="variablelist"><table border="0">
498
+ <col align="left" valign="top">
499
+ <tbody>
500
+ <tr>
501
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
502
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
503
+ </td>
504
+ </tr>
505
+ <tr>
506
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
507
+ <td>the displayed pixbuf,
508
+ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the image is empty. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
509
+ </td>
510
+ </tr>
511
+ </tbody>
512
+ </table></div>
513
+ <p class="since">Since 2.10</p>
514
+ </div>
515
+ <hr>
516
+ <div class="refsect2">
517
+ <a name="gtk-status-icon-get-stock"></a><h3>gtk_status_icon_get_stock ()</h3>
518
+ <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_status_icon_get_stock (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
519
+ <p>
520
+ Gets the id of the stock icon being displayed by the <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>.
521
+ The storage type of the status icon must be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a> or
522
+ <a class="link" href="GtkImage.html#GTK-IMAGE-STOCK:CAPS"><code class="literal">GTK_IMAGE_STOCK</code></a> (see <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-storage-type" title="gtk_status_icon_get_storage_type ()"><code class="function">gtk_status_icon_get_storage_type()</code></a>).
523
+ The returned string is owned by the <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> and should not
524
+ be freed or modified.
525
+ </p>
526
+ <div class="variablelist"><table border="0">
527
+ <col align="left" valign="top">
528
+ <tbody>
529
+ <tr>
530
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
531
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
532
+ </td>
533
+ </tr>
534
+ <tr>
535
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
536
+ <td>stock id of the displayed stock icon,
537
+ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the image is empty.</td>
538
+ </tr>
539
+ </tbody>
540
+ </table></div>
541
+ <p class="since">Since 2.10</p>
542
+ </div>
543
+ <hr>
544
+ <div class="refsect2">
545
+ <a name="gtk-status-icon-get-icon-name"></a><h3>gtk_status_icon_get_icon_name ()</h3>
546
+ <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_status_icon_get_icon_name (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
547
+ <p>
548
+ Gets the name of the icon being displayed by the <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>.
549
+ The storage type of the status icon must be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a> or
550
+ <a class="link" href="GtkImage.html#GTK-IMAGE-ICON-NAME:CAPS"><code class="literal">GTK_IMAGE_ICON_NAME</code></a> (see <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-storage-type" title="gtk_status_icon_get_storage_type ()"><code class="function">gtk_status_icon_get_storage_type()</code></a>).
551
+ The returned string is owned by the <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> and should not
552
+ be freed or modified.
553
+ </p>
554
+ <div class="variablelist"><table border="0">
555
+ <col align="left" valign="top">
556
+ <tbody>
557
+ <tr>
558
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
559
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
560
+ </td>
561
+ </tr>
562
+ <tr>
563
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
564
+ <td>name of the displayed icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the image is empty.</td>
565
+ </tr>
566
+ </tbody>
567
+ </table></div>
568
+ <p class="since">Since 2.10</p>
569
+ </div>
570
+ <hr>
571
+ <div class="refsect2">
572
+ <a name="gtk-status-icon-get-gicon"></a><h3>gtk_status_icon_get_gicon ()</h3>
573
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="returnvalue">GIcon</span></a> * gtk_status_icon_get_gicon (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
574
+ <p>
575
+ Retrieves the <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> being displayed by the <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>.
576
+ The storage type of the status icon must be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a> or
577
+ <a class="link" href="GtkImage.html#GTK-IMAGE-GICON:CAPS"><code class="literal">GTK_IMAGE_GICON</code></a> (see <a class="link" href="GtkStatusIcon.html#gtk-status-icon-get-storage-type" title="gtk_status_icon_get_storage_type ()"><code class="function">gtk_status_icon_get_storage_type()</code></a>).
578
+ The caller of this function does not own a reference to the
579
+ returned <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a>.
580
+ </p>
581
+ <p>
582
+ If this function fails, <em class="parameter"><code>icon</code></em> is left unchanged;
583
+ </p>
584
+ <div class="variablelist"><table border="0">
585
+ <col align="left" valign="top">
586
+ <tbody>
587
+ <tr>
588
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
589
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
590
+ </td>
591
+ </tr>
592
+ <tr>
593
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
594
+ <td>the displayed icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the image is empty. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
595
+ </td>
596
+ </tr>
597
+ </tbody>
598
+ </table></div>
599
+ <p class="since">Since 2.14</p>
600
+ </div>
601
+ <hr>
602
+ <div class="refsect2">
603
+ <a name="gtk-status-icon-get-size"></a><h3>gtk_status_icon_get_size ()</h3>
604
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_status_icon_get_size (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
605
+ <p>
606
+ Gets the size in pixels that is available for the image.
607
+ Stock icons and named icons adapt their size automatically
608
+ if the size of the notification area changes. For other
609
+ storage types, the size-changed signal can be used to
610
+ react to size changes.
611
+ </p>
612
+ <p>
613
+ Note that the returned size is only meaningful while the
614
+ status icon is embedded (see <a class="link" href="GtkStatusIcon.html#gtk-status-icon-is-embedded" title="gtk_status_icon_is_embedded ()"><code class="function">gtk_status_icon_is_embedded()</code></a>).
615
+ </p>
616
+ <div class="variablelist"><table border="0">
617
+ <col align="left" valign="top">
618
+ <tbody>
619
+ <tr>
620
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
621
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
622
+ </td>
623
+ </tr>
624
+ <tr>
625
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
626
+ <td>the size that is available for the image</td>
627
+ </tr>
628
+ </tbody>
629
+ </table></div>
630
+ <p class="since">Since 2.10</p>
631
+ </div>
632
+ <hr>
633
+ <div class="refsect2">
634
+ <a name="gtk-status-icon-set-screen"></a><h3>gtk_status_icon_set_screen ()</h3>
635
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_status_icon_set_screen (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
636
+ <em class="parameter"><code><a href="../gdk/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
637
+ <p>
638
+ Sets the <a href="../gdk/GdkScreen.html"><span class="type">GdkScreen</span></a> where <em class="parameter"><code>status_icon</code></em> is displayed; if
639
+ the icon is already mapped, it will be unmapped, and
640
+ then remapped on the new screen.
641
+ </p>
642
+ <div class="variablelist"><table border="0">
643
+ <col align="left" valign="top">
644
+ <tbody>
645
+ <tr>
646
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
647
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
648
+ </td>
649
+ </tr>
650
+ <tr>
651
+ <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
652
+ <td>a <a href="../gdk/GdkScreen.html"><span class="type">GdkScreen</span></a>
653
+ </td>
654
+ </tr>
655
+ </tbody>
656
+ </table></div>
657
+ <p class="since">Since 2.12</p>
658
+ </div>
659
+ <hr>
660
+ <div class="refsect2">
661
+ <a name="gtk-status-icon-get-screen"></a><h3>gtk_status_icon_get_screen ()</h3>
662
+ <pre class="programlisting"><a href="../gdk/GdkScreen.html"><span class="returnvalue">GdkScreen</span></a> * gtk_status_icon_get_screen (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
663
+ <p>
664
+ Returns the <a href="../gdk/GdkScreen.html"><span class="type">GdkScreen</span></a> associated with <em class="parameter"><code>status_icon</code></em>.
665
+ </p>
666
+ <div class="variablelist"><table border="0">
667
+ <col align="left" valign="top">
668
+ <tbody>
669
+ <tr>
670
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
671
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
672
+ </td>
673
+ </tr>
674
+ <tr>
675
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
676
+ <td>a <a href="../gdk/GdkScreen.html"><span class="type">GdkScreen</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
677
+ </td>
678
+ </tr>
679
+ </tbody>
680
+ </table></div>
681
+ <p class="since">Since 2.12</p>
682
+ </div>
683
+ <hr>
684
+ <div class="refsect2">
685
+ <a name="gtk-status-icon-set-tooltip"></a><h3>gtk_status_icon_set_tooltip ()</h3>
686
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_status_icon_set_tooltip (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
687
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *tooltip_text</code></em>);</pre>
688
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
689
+ <h3 class="title">Warning</h3>
690
+ <p><code class="literal">gtk_status_icon_set_tooltip</code> has been deprecated since version 2.16 and should not be used in newly-written code. Use <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-tooltip-text" title="gtk_status_icon_set_tooltip_text ()"><code class="function">gtk_status_icon_set_tooltip_text()</code></a> instead.</p>
691
+ </div>
692
+ <p>
693
+ Sets the tooltip of the status icon.
694
+ </p>
695
+ <div class="variablelist"><table border="0">
696
+ <col align="left" valign="top">
697
+ <tbody>
698
+ <tr>
699
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
700
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
701
+ </td>
702
+ </tr>
703
+ <tr>
704
+ <td><p><span class="term"><em class="parameter"><code>tooltip_text</code></em> :</span></p></td>
705
+ <td>the tooltip text, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
706
+ </td>
707
+ </tr>
708
+ </tbody>
709
+ </table></div>
710
+ <p class="since">Since 2.10</p>
711
+ </div>
712
+ <hr>
713
+ <div class="refsect2">
714
+ <a name="gtk-status-icon-set-tooltip-text"></a><h3>gtk_status_icon_set_tooltip_text ()</h3>
715
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_status_icon_set_tooltip_text (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
716
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);</pre>
717
+ <p>
718
+ Sets <em class="parameter"><code>text</code></em> as the contents of the tooltip.
719
+ </p>
720
+ <p>
721
+ This function will take care of setting <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--has-tooltip" title='The "has-tooltip" property'><span class="type">"has-tooltip"</span></a> to
722
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> and of the default handler for the <a class="link" href="GtkStatusIcon.html#GtkStatusIcon-query-tooltip" title='The "query-tooltip" signal'><span class="type">"query-tooltip"</span></a>
723
+ signal.
724
+ </p>
725
+ <p>
726
+ See also the <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--tooltip-text" title='The "tooltip-text" property'><span class="type">"tooltip-text"</span></a> property and
727
+ <a class="link" href="GtkTooltip.html#gtk-tooltip-set-text" title="gtk_tooltip_set_text ()"><code class="function">gtk_tooltip_set_text()</code></a>.
728
+ </p>
729
+ <div class="variablelist"><table border="0">
730
+ <col align="left" valign="top">
731
+ <tbody>
732
+ <tr>
733
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
734
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
735
+ </td>
736
+ </tr>
737
+ <tr>
738
+ <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
739
+ <td>the contents of the tooltip for <em class="parameter"><code>status_icon</code></em>
740
+ </td>
741
+ </tr>
742
+ </tbody>
743
+ </table></div>
744
+ <p class="since">Since 2.16</p>
745
+ </div>
746
+ <hr>
747
+ <div class="refsect2">
748
+ <a name="gtk-status-icon-get-tooltip-text"></a><h3>gtk_status_icon_get_tooltip_text ()</h3>
749
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_status_icon_get_tooltip_text (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
750
+ <p>
751
+ Gets the contents of the tooltip for <em class="parameter"><code>status_icon</code></em>.
752
+ </p>
753
+ <div class="variablelist"><table border="0">
754
+ <col align="left" valign="top">
755
+ <tbody>
756
+ <tr>
757
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
758
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
759
+ </td>
760
+ </tr>
761
+ <tr>
762
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
763
+ <td>the tooltip text, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. You should free the
764
+ returned string with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done.</td>
765
+ </tr>
766
+ </tbody>
767
+ </table></div>
768
+ <p class="since">Since 2.16</p>
769
+ </div>
770
+ <hr>
771
+ <div class="refsect2">
772
+ <a name="gtk-status-icon-set-tooltip-markup"></a><h3>gtk_status_icon_set_tooltip_markup ()</h3>
773
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_status_icon_set_tooltip_markup (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
774
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *markup</code></em>);</pre>
775
+ <p>
776
+ Sets <em class="parameter"><code>markup</code></em> as the contents of the tooltip, which is marked up with
777
+ the <a href="/usr/share/gtk-doc/html/pango/PangoMarkupFormat.html">Pango text markup language</a>.
778
+ </p>
779
+ <p>
780
+ This function will take care of setting <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--has-tooltip" title='The "has-tooltip" property'><span class="type">"has-tooltip"</span></a> to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>
781
+ and of the default handler for the <a class="link" href="GtkStatusIcon.html#GtkStatusIcon-query-tooltip" title='The "query-tooltip" signal'><span class="type">"query-tooltip"</span></a> signal.
782
+ </p>
783
+ <p>
784
+ See also the <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--tooltip-markup" title='The "tooltip-markup" property'><span class="type">"tooltip-markup"</span></a> property and
785
+ <a class="link" href="GtkTooltip.html#gtk-tooltip-set-markup" title="gtk_tooltip_set_markup ()"><code class="function">gtk_tooltip_set_markup()</code></a>.
786
+ </p>
787
+ <div class="variablelist"><table border="0">
788
+ <col align="left" valign="top">
789
+ <tbody>
790
+ <tr>
791
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
792
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
793
+ </td>
794
+ </tr>
795
+ <tr>
796
+ <td><p><span class="term"><em class="parameter"><code>markup</code></em> :</span></p></td>
797
+ <td>the contents of the tooltip for <em class="parameter"><code>status_icon</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
798
+ </td>
799
+ </tr>
800
+ </tbody>
801
+ </table></div>
802
+ <p class="since">Since 2.16</p>
803
+ </div>
804
+ <hr>
805
+ <div class="refsect2">
806
+ <a name="gtk-status-icon-get-tooltip-markup"></a><h3>gtk_status_icon_get_tooltip_markup ()</h3>
807
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_status_icon_get_tooltip_markup (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
808
+ <p>
809
+ Gets the contents of the tooltip for <em class="parameter"><code>status_icon</code></em>.
810
+ </p>
811
+ <div class="variablelist"><table border="0">
812
+ <col align="left" valign="top">
813
+ <tbody>
814
+ <tr>
815
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
816
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
817
+ </td>
818
+ </tr>
819
+ <tr>
820
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
821
+ <td>the tooltip text, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. You should free the
822
+ returned string with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done.</td>
823
+ </tr>
824
+ </tbody>
825
+ </table></div>
826
+ <p class="since">Since 2.16</p>
827
+ </div>
828
+ <hr>
829
+ <div class="refsect2">
830
+ <a name="gtk-status-icon-set-has-tooltip"></a><h3>gtk_status_icon_set_has_tooltip ()</h3>
831
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_status_icon_set_has_tooltip (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
832
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> has_tooltip</code></em>);</pre>
833
+ <p>
834
+ Sets the has-tooltip property on <em class="parameter"><code>status_icon</code></em> to <em class="parameter"><code>has_tooltip</code></em>.
835
+ See <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--has-tooltip" title='The "has-tooltip" property'><span class="type">"has-tooltip"</span></a> for more information.
836
+ </p>
837
+ <div class="variablelist"><table border="0">
838
+ <col align="left" valign="top">
839
+ <tbody>
840
+ <tr>
841
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
842
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
843
+ </td>
844
+ </tr>
845
+ <tr>
846
+ <td><p><span class="term"><em class="parameter"><code>has_tooltip</code></em> :</span></p></td>
847
+ <td>whether or not <em class="parameter"><code>status_icon</code></em> has a tooltip</td>
848
+ </tr>
849
+ </tbody>
850
+ </table></div>
851
+ <p class="since">Since 2.16</p>
852
+ </div>
853
+ <hr>
854
+ <div class="refsect2">
855
+ <a name="gtk-status-icon-get-has-tooltip"></a><h3>gtk_status_icon_get_has_tooltip ()</h3>
856
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_status_icon_get_has_tooltip (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
857
+ <p>
858
+ Returns the current value of the has-tooltip property.
859
+ See <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--has-tooltip" title='The "has-tooltip" property'><span class="type">"has-tooltip"</span></a> for more information.
860
+ </p>
861
+ <div class="variablelist"><table border="0">
862
+ <col align="left" valign="top">
863
+ <tbody>
864
+ <tr>
865
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
866
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
867
+ </td>
868
+ </tr>
869
+ <tr>
870
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
871
+ <td>current value of has-tooltip on <em class="parameter"><code>status_icon</code></em>.</td>
872
+ </tr>
873
+ </tbody>
874
+ </table></div>
875
+ <p class="since">Since 2.16</p>
876
+ </div>
877
+ <hr>
878
+ <div class="refsect2">
879
+ <a name="gtk-status-icon-set-title"></a><h3>gtk_status_icon_set_title ()</h3>
880
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_status_icon_set_title (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
881
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *title</code></em>);</pre>
882
+ <p>
883
+ Sets the title of this tray icon.
884
+ This should be a short, human-readable, localized string
885
+ describing the tray icon. It may be used by tools like screen
886
+ readers to render the tray icon.
887
+ </p>
888
+ <div class="variablelist"><table border="0">
889
+ <col align="left" valign="top">
890
+ <tbody>
891
+ <tr>
892
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
893
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
894
+ </td>
895
+ </tr>
896
+ <tr>
897
+ <td><p><span class="term"><em class="parameter"><code>title</code></em> :</span></p></td>
898
+ <td>the title</td>
899
+ </tr>
900
+ </tbody>
901
+ </table></div>
902
+ <p class="since">Since 2.18</p>
903
+ </div>
904
+ <hr>
905
+ <div class="refsect2">
906
+ <a name="gtk-status-icon-get-title"></a><h3>gtk_status_icon_get_title ()</h3>
907
+ <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_status_icon_get_title (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
908
+ <p>
909
+ Gets the title of this tray icon. See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-title" title="gtk_status_icon_set_title ()"><code class="function">gtk_status_icon_set_title()</code></a>.
910
+ </p>
911
+ <div class="variablelist"><table border="0">
912
+ <col align="left" valign="top">
913
+ <tbody>
914
+ <tr>
915
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
916
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
917
+ </td>
918
+ </tr>
919
+ <tr>
920
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
921
+ <td>the title of the status icon</td>
922
+ </tr>
923
+ </tbody>
924
+ </table></div>
925
+ <p class="since">Since 2.18</p>
926
+ </div>
927
+ <hr>
928
+ <div class="refsect2">
929
+ <a name="gtk-status-icon-set-name"></a><h3>gtk_status_icon_set_name ()</h3>
930
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_status_icon_set_name (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
931
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
932
+ <p>
933
+ Sets the name of this tray icon.
934
+ This should be a string identifying this icon. It is may be
935
+ used for sorting the icons in the tray and will not be shown to
936
+ the user.
937
+ </p>
938
+ <div class="variablelist"><table border="0">
939
+ <col align="left" valign="top">
940
+ <tbody>
941
+ <tr>
942
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
943
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
944
+ </td>
945
+ </tr>
946
+ <tr>
947
+ <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
948
+ <td>the name</td>
949
+ </tr>
950
+ </tbody>
951
+ </table></div>
952
+ <p class="since">Since 2.20</p>
953
+ </div>
954
+ <hr>
955
+ <div class="refsect2">
956
+ <a name="gtk-status-icon-set-visible"></a><h3>gtk_status_icon_set_visible ()</h3>
957
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_status_icon_set_visible (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
958
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> visible</code></em>);</pre>
959
+ <p>
960
+ Shows or hides a status icon.
961
+ </p>
962
+ <div class="variablelist"><table border="0">
963
+ <col align="left" valign="top">
964
+ <tbody>
965
+ <tr>
966
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
967
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
968
+ </td>
969
+ </tr>
970
+ <tr>
971
+ <td><p><span class="term"><em class="parameter"><code>visible</code></em> :</span></p></td>
972
+ <td>
973
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to show the status icon, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to hide it</td>
974
+ </tr>
975
+ </tbody>
976
+ </table></div>
977
+ <p class="since">Since 2.10</p>
978
+ </div>
979
+ <hr>
980
+ <div class="refsect2">
981
+ <a name="gtk-status-icon-get-visible"></a><h3>gtk_status_icon_get_visible ()</h3>
982
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_status_icon_get_visible (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
983
+ <p>
984
+ Returns whether the status icon is visible or not.
985
+ Note that being visible does not guarantee that
986
+ the user can actually see the icon, see also
987
+ <a class="link" href="GtkStatusIcon.html#gtk-status-icon-is-embedded" title="gtk_status_icon_is_embedded ()"><code class="function">gtk_status_icon_is_embedded()</code></a>.
988
+ </p>
989
+ <div class="variablelist"><table border="0">
990
+ <col align="left" valign="top">
991
+ <tbody>
992
+ <tr>
993
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
994
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
995
+ </td>
996
+ </tr>
997
+ <tr>
998
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
999
+ <td>
1000
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the status icon is visible</td>
1001
+ </tr>
1002
+ </tbody>
1003
+ </table></div>
1004
+ <p class="since">Since 2.10</p>
1005
+ </div>
1006
+ <hr>
1007
+ <div class="refsect2">
1008
+ <a name="gtk-status-icon-set-blinking"></a><h3>gtk_status_icon_set_blinking ()</h3>
1009
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_status_icon_set_blinking (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
1010
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> blinking</code></em>);</pre>
1011
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1012
+ <h3 class="title">Warning</h3>
1013
+ <p><code class="literal">gtk_status_icon_set_blinking</code> has been deprecated since version 2.22 and should not be used in newly-written code. This function will be removed in GTK+ 3</p>
1014
+ </div>
1015
+ <p>
1016
+ Makes the status icon start or stop blinking.
1017
+ Note that blinking user interface elements may be problematic
1018
+ for some users, and thus may be turned off, in which case
1019
+ this setting has no effect.
1020
+ </p>
1021
+ <div class="variablelist"><table border="0">
1022
+ <col align="left" valign="top">
1023
+ <tbody>
1024
+ <tr>
1025
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
1026
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
1027
+ </td>
1028
+ </tr>
1029
+ <tr>
1030
+ <td><p><span class="term"><em class="parameter"><code>blinking</code></em> :</span></p></td>
1031
+ <td>
1032
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to turn blinking on, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to turn it off</td>
1033
+ </tr>
1034
+ </tbody>
1035
+ </table></div>
1036
+ <p class="since">Since 2.10</p>
1037
+ </div>
1038
+ <hr>
1039
+ <div class="refsect2">
1040
+ <a name="gtk-status-icon-get-blinking"></a><h3>gtk_status_icon_get_blinking ()</h3>
1041
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_status_icon_get_blinking (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
1042
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1043
+ <h3 class="title">Warning</h3>
1044
+ <p><code class="literal">gtk_status_icon_get_blinking</code> has been deprecated since version 2.22 and should not be used in newly-written code. This function will be removed in GTK+ 3</p>
1045
+ </div>
1046
+ <p>
1047
+ Returns whether the icon is blinking, see
1048
+ <a class="link" href="GtkStatusIcon.html#gtk-status-icon-set-blinking" title="gtk_status_icon_set_blinking ()"><code class="function">gtk_status_icon_set_blinking()</code></a>.
1049
+ </p>
1050
+ <div class="variablelist"><table border="0">
1051
+ <col align="left" valign="top">
1052
+ <tbody>
1053
+ <tr>
1054
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
1055
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
1056
+ </td>
1057
+ </tr>
1058
+ <tr>
1059
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1060
+ <td>
1061
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the icon is blinking</td>
1062
+ </tr>
1063
+ </tbody>
1064
+ </table></div>
1065
+ <p class="since">Since 2.10</p>
1066
+ </div>
1067
+ <hr>
1068
+ <div class="refsect2">
1069
+ <a name="gtk-status-icon-is-embedded"></a><h3>gtk_status_icon_is_embedded ()</h3>
1070
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_status_icon_is_embedded (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
1071
+ <p>
1072
+ Returns whether the status icon is embedded in a notification
1073
+ area.
1074
+ </p>
1075
+ <div class="variablelist"><table border="0">
1076
+ <col align="left" valign="top">
1077
+ <tbody>
1078
+ <tr>
1079
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
1080
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
1081
+ </td>
1082
+ </tr>
1083
+ <tr>
1084
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1085
+ <td>
1086
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the status icon is embedded in
1087
+ a notification area.</td>
1088
+ </tr>
1089
+ </tbody>
1090
+ </table></div>
1091
+ <p class="since">Since 2.10</p>
1092
+ </div>
1093
+ <hr>
1094
+ <div class="refsect2">
1095
+ <a name="gtk-status-icon-position-menu"></a><h3>gtk_status_icon_position_menu ()</h3>
1096
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_status_icon_position_menu (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
1097
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
1098
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>,
1099
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *push_in</code></em>,
1100
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
1101
+ <p>
1102
+ Menu positioning function to use with <a class="link" href="GtkMenu.html#gtk-menu-popup" title="gtk_menu_popup ()"><code class="function">gtk_menu_popup()</code></a>
1103
+ to position <em class="parameter"><code>menu</code></em> aligned to the status icon <em class="parameter"><code>user_data</code></em>.
1104
+ </p>
1105
+ <div class="variablelist"><table border="0">
1106
+ <col align="left" valign="top">
1107
+ <tbody>
1108
+ <tr>
1109
+ <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
1110
+ <td>the <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>
1111
+ </td>
1112
+ </tr>
1113
+ <tr>
1114
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1115
+ <td>return location for the x position</td>
1116
+ </tr>
1117
+ <tr>
1118
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1119
+ <td>return location for the y position</td>
1120
+ </tr>
1121
+ <tr>
1122
+ <td><p><span class="term"><em class="parameter"><code>push_in</code></em> :</span></p></td>
1123
+ <td>whether the first menu item should be offset (pushed in) to be
1124
+ aligned with the menu popup position (only useful for GtkOptionMenu).</td>
1125
+ </tr>
1126
+ <tr>
1127
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1128
+ <td>the status icon to position the menu on</td>
1129
+ </tr>
1130
+ </tbody>
1131
+ </table></div>
1132
+ <p class="since">Since 2.10</p>
1133
+ </div>
1134
+ <hr>
1135
+ <div class="refsect2">
1136
+ <a name="gtk-status-icon-get-geometry"></a><h3>gtk_status_icon_get_geometry ()</h3>
1137
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_status_icon_get_geometry (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>,
1138
+ <em class="parameter"><code><a href="../gdk/GdkScreen.html"><span class="type">GdkScreen</span></a> **screen</code></em>,
1139
+ <em class="parameter"><code><a href="../gdk/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *area</code></em>,
1140
+ <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> *orientation</code></em>);</pre>
1141
+ <p>
1142
+ Obtains information about the location of the status icon
1143
+ on screen. This information can be used to e.g. position
1144
+ popups like notification bubbles.
1145
+ </p>
1146
+ <p>
1147
+ See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-position-menu" title="gtk_status_icon_position_menu ()"><code class="function">gtk_status_icon_position_menu()</code></a> for a more convenient
1148
+ alternative for positioning menus.
1149
+ </p>
1150
+ <p>
1151
+ Note that some platforms do not allow GTK+ to provide
1152
+ this information, and even on platforms that do allow it,
1153
+ the information is not reliable unless the status icon
1154
+ is embedded in a notification area, see
1155
+ <a class="link" href="GtkStatusIcon.html#gtk-status-icon-is-embedded" title="gtk_status_icon_is_embedded ()"><code class="function">gtk_status_icon_is_embedded()</code></a>.
1156
+ </p>
1157
+ <div class="variablelist"><table border="0">
1158
+ <col align="left" valign="top">
1159
+ <tbody>
1160
+ <tr>
1161
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
1162
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
1163
+ </td>
1164
+ </tr>
1165
+ <tr>
1166
+ <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
1167
+ <td>return location for the screen, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the
1168
+ information is not needed. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1169
+ </td>
1170
+ </tr>
1171
+ <tr>
1172
+ <td><p><span class="term"><em class="parameter"><code>area</code></em> :</span></p></td>
1173
+ <td>return location for the area occupied by the status
1174
+ icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1175
+ </td>
1176
+ </tr>
1177
+ <tr>
1178
+ <td><p><span class="term"><em class="parameter"><code>orientation</code></em> :</span></p></td>
1179
+ <td>return location for the orientation of the panel
1180
+ in which the status icon is embedded, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. A panel
1181
+ at the top or bottom of the screen is horizontal, a panel
1182
+ at the left or right is vertical. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1183
+ </td>
1184
+ </tr>
1185
+ <tr>
1186
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1187
+ <td>
1188
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the location information has
1189
+ been filled in</td>
1190
+ </tr>
1191
+ </tbody>
1192
+ </table></div>
1193
+ <p class="since">Since 2.10</p>
1194
+ </div>
1195
+ <hr>
1196
+ <div class="refsect2">
1197
+ <a name="gtk-status-icon-get-x11-window-id"></a><h3>gtk_status_icon_get_x11_window_id ()</h3>
1198
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="returnvalue">guint32</span></a> gtk_status_icon_get_x11_window_id (<em class="parameter"><code><a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon</code></em>);</pre>
1199
+ <p>
1200
+ This function is only useful on the X11/freedesktop.org platform.
1201
+ It returns a window ID for the widget in the underlying
1202
+ status icon implementation. This is useful for the Galago
1203
+ notification service, which can send a window ID in the protocol
1204
+ in order for the server to position notification windows
1205
+ pointing to a status icon reliably.
1206
+ </p>
1207
+ <p>
1208
+ This function is not intended for other use cases which are
1209
+ more likely to be met by one of the non-X11 specific methods, such
1210
+ as <a class="link" href="GtkStatusIcon.html#gtk-status-icon-position-menu" title="gtk_status_icon_position_menu ()"><code class="function">gtk_status_icon_position_menu()</code></a>.
1211
+ </p>
1212
+ <div class="variablelist"><table border="0">
1213
+ <col align="left" valign="top">
1214
+ <tbody>
1215
+ <tr>
1216
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
1217
+ <td>a <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
1218
+ </td>
1219
+ </tr>
1220
+ <tr>
1221
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1222
+ <td>An 32 bit unsigned integer identifier for the
1223
+ underlying X11 Window</td>
1224
+ </tr>
1225
+ </tbody>
1226
+ </table></div>
1227
+ <p class="since">Since 2.14</p>
1228
+ </div>
1229
+ </div>
1230
+ <div class="refsect1">
1231
+ <a name="GtkStatusIcon.property-details"></a><h2>Property Details</h2>
1232
+ <div class="refsect2">
1233
+ <a name="GtkStatusIcon--blinking"></a><h3>The <code class="literal">"blinking"</code> property</h3>
1234
+ <pre class="programlisting"> "blinking" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1235
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1236
+ <h3 class="title">Warning</h3>
1237
+ <p><code class="literal">GtkStatusIcon:blinking</code> has been deprecated since version 2.22 and should not be used in newly-written code. This property will be removed in GTK+ 3</p>
1238
+ </div>
1239
+ <p>
1240
+ Whether or not the status icon is blinking.
1241
+ </p>
1242
+ <p>Default value: FALSE</p>
1243
+ </div>
1244
+ <hr>
1245
+ <div class="refsect2">
1246
+ <a name="GtkStatusIcon--embedded"></a><h3>The <code class="literal">"embedded"</code> property</h3>
1247
+ <pre class="programlisting"> "embedded" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
1248
+ <p>
1249
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the statusicon is embedded in a notification area.
1250
+ </p>
1251
+ <p>Default value: FALSE</p>
1252
+ <p class="since">Since 2.12</p>
1253
+ </div>
1254
+ <hr>
1255
+ <div class="refsect2">
1256
+ <a name="GtkStatusIcon--file"></a><h3>The <code class="literal">"file"</code> property</h3>
1257
+ <pre class="programlisting"> "file" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Write</pre>
1258
+ <p>Filename to load and display.</p>
1259
+ <p>Default value: NULL</p>
1260
+ </div>
1261
+ <hr>
1262
+ <div class="refsect2">
1263
+ <a name="GtkStatusIcon--gicon"></a><h3>The <code class="literal">"gicon"</code> property</h3>
1264
+ <pre class="programlisting"> "gicon" <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a>* : Read / Write</pre>
1265
+ <p>
1266
+ The <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> displayed in the <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>. For themed icons,
1267
+ the image will be updated automatically if the theme changes.
1268
+ </p>
1269
+ <p class="since">Since 2.14</p>
1270
+ </div>
1271
+ <hr>
1272
+ <div class="refsect2">
1273
+ <a name="GtkStatusIcon--has-tooltip"></a><h3>The <code class="literal">"has-tooltip"</code> property</h3>
1274
+ <pre class="programlisting"> "has-tooltip" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1275
+ <p>
1276
+ Enables or disables the emission of <a class="link" href="GtkStatusIcon.html#GtkStatusIcon-query-tooltip" title='The "query-tooltip" signal'><span class="type">"query-tooltip"</span></a> on
1277
+ <em class="parameter"><code>status_icon</code></em>. A value of <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> indicates that <em class="parameter"><code>status_icon</code></em> can have a
1278
+ tooltip, in this case the status icon will be queried using
1279
+ <a class="link" href="GtkStatusIcon.html#GtkStatusIcon-query-tooltip" title='The "query-tooltip" signal'><span class="type">"query-tooltip"</span></a> to determine whether it will provide a
1280
+ tooltip or not.
1281
+ </p>
1282
+ <p>
1283
+ Note that setting this property to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> for the first time will change
1284
+ the event masks of the windows of this status icon to include leave-notify
1285
+ and motion-notify events. This will not be undone when the property is set
1286
+ to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> again.
1287
+ </p>
1288
+ <p>
1289
+ Whether this property is respected is platform dependent.
1290
+ For plain text tooltips, use <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--tooltip-text" title='The "tooltip-text" property'><span class="type">"tooltip-text"</span></a> in preference.
1291
+ </p>
1292
+ <p>Default value: FALSE</p>
1293
+ <p class="since">Since 2.16</p>
1294
+ </div>
1295
+ <hr>
1296
+ <div class="refsect2">
1297
+ <a name="GtkStatusIcon--icon-name"></a><h3>The <code class="literal">"icon-name"</code> property</h3>
1298
+ <pre class="programlisting"> "icon-name" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1299
+ <p>The name of the icon from the icon theme.</p>
1300
+ <p>Default value: NULL</p>
1301
+ </div>
1302
+ <hr>
1303
+ <div class="refsect2">
1304
+ <a name="GtkStatusIcon--orientation"></a><h3>The <code class="literal">"orientation"</code> property</h3>
1305
+ <pre class="programlisting"> "orientation" <a class="link" href="gtk-Standard-Enumerations.html#GtkOrientation" title="enum GtkOrientation"><span class="type">GtkOrientation</span></a> : Read</pre>
1306
+ <p>
1307
+ The orientation of the tray in which the statusicon
1308
+ is embedded.
1309
+ </p>
1310
+ <p>Default value: GTK_ORIENTATION_HORIZONTAL</p>
1311
+ <p class="since">Since 2.12</p>
1312
+ </div>
1313
+ <hr>
1314
+ <div class="refsect2">
1315
+ <a name="GtkStatusIcon--pixbuf"></a><h3>The <code class="literal">"pixbuf"</code> property</h3>
1316
+ <pre class="programlisting"> "pixbuf" <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>* : Read / Write</pre>
1317
+ <p>A GdkPixbuf to display.</p>
1318
+ </div>
1319
+ <hr>
1320
+ <div class="refsect2">
1321
+ <a name="GtkStatusIcon--screen"></a><h3>The <code class="literal">"screen"</code> property</h3>
1322
+ <pre class="programlisting"> "screen" <a href="../gdk/GdkScreen.html"><span class="type">GdkScreen</span></a>* : Read / Write</pre>
1323
+ <p>The screen where this status icon will be displayed.</p>
1324
+ </div>
1325
+ <hr>
1326
+ <div class="refsect2">
1327
+ <a name="GtkStatusIcon--size"></a><h3>The <code class="literal">"size"</code> property</h3>
1328
+ <pre class="programlisting"> "size" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
1329
+ <p>The size of the icon.</p>
1330
+ <p>Allowed values: &gt;= 0</p>
1331
+ <p>Default value: 0</p>
1332
+ </div>
1333
+ <hr>
1334
+ <div class="refsect2">
1335
+ <a name="GtkStatusIcon--stock"></a><h3>The <code class="literal">"stock"</code> property</h3>
1336
+ <pre class="programlisting"> "stock" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1337
+ <p>Stock ID for a stock image to display.</p>
1338
+ <p>Default value: NULL</p>
1339
+ </div>
1340
+ <hr>
1341
+ <div class="refsect2">
1342
+ <a name="GtkStatusIcon--storage-type"></a><h3>The <code class="literal">"storage-type"</code> property</h3>
1343
+ <pre class="programlisting"> "storage-type" <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="type">GtkImageType</span></a> : Read</pre>
1344
+ <p>The representation being used for image data.</p>
1345
+ <p>Default value: GTK_IMAGE_EMPTY</p>
1346
+ </div>
1347
+ <hr>
1348
+ <div class="refsect2">
1349
+ <a name="GtkStatusIcon--title"></a><h3>The <code class="literal">"title"</code> property</h3>
1350
+ <pre class="programlisting"> "title" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1351
+ <p>
1352
+ The title of this tray icon. This should be a short, human-readable,
1353
+ localized string describing the tray icon. It may be used by tools
1354
+ like screen readers to render the tray icon.
1355
+ </p>
1356
+ <p>Default value: NULL</p>
1357
+ <p class="since">Since 2.18</p>
1358
+ </div>
1359
+ <hr>
1360
+ <div class="refsect2">
1361
+ <a name="GtkStatusIcon--tooltip-markup"></a><h3>The <code class="literal">"tooltip-markup"</code> property</h3>
1362
+ <pre class="programlisting"> "tooltip-markup" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1363
+ <p>
1364
+ Sets the text of tooltip to be the given string, which is marked up
1365
+ with the <GTKDOCLINK HREF="PangoMarkupFormat">Pango text markup
1366
+ language</GTKDOCLINK>. Also see <a class="link" href="GtkTooltip.html#gtk-tooltip-set-markup" title="gtk_tooltip_set_markup ()"><code class="function">gtk_tooltip_set_markup()</code></a>.
1367
+ </p>
1368
+ <p>
1369
+ This is a convenience property which will take care of getting the
1370
+ tooltip shown if the given string is not <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
1371
+ <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--has-tooltip" title='The "has-tooltip" property'><span class="type">"has-tooltip"</span></a> will automatically be set to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> and
1372
+ the default handler for the <a class="link" href="GtkStatusIcon.html#GtkStatusIcon-query-tooltip" title='The "query-tooltip" signal'><span class="type">"query-tooltip"</span></a> signal
1373
+ will take care of displaying the tooltip.
1374
+ </p>
1375
+ <p>
1376
+ On some platforms, embedded markup will be ignored.
1377
+ </p>
1378
+ <p>Default value: NULL</p>
1379
+ <p class="since">Since 2.16</p>
1380
+ </div>
1381
+ <hr>
1382
+ <div class="refsect2">
1383
+ <a name="GtkStatusIcon--tooltip-text"></a><h3>The <code class="literal">"tooltip-text"</code> property</h3>
1384
+ <pre class="programlisting"> "tooltip-text" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1385
+ <p>
1386
+ Sets the text of tooltip to be the given string.
1387
+ </p>
1388
+ <p>
1389
+ Also see <a class="link" href="GtkTooltip.html#gtk-tooltip-set-text" title="gtk_tooltip_set_text ()"><code class="function">gtk_tooltip_set_text()</code></a>.
1390
+ </p>
1391
+ <p>
1392
+ This is a convenience property which will take care of getting the
1393
+ tooltip shown if the given string is not <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
1394
+ <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--has-tooltip" title='The "has-tooltip" property'><span class="type">"has-tooltip"</span></a> will automatically be set to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> and
1395
+ the default handler for the <a class="link" href="GtkStatusIcon.html#GtkStatusIcon-query-tooltip" title='The "query-tooltip" signal'><span class="type">"query-tooltip"</span></a> signal
1396
+ will take care of displaying the tooltip.
1397
+ </p>
1398
+ <p>
1399
+ Note that some platforms have limitations on the length of tooltips
1400
+ that they allow on status icons, e.g. Windows only shows the first
1401
+ 64 characters.
1402
+ </p>
1403
+ <p>Default value: NULL</p>
1404
+ <p class="since">Since 2.16</p>
1405
+ </div>
1406
+ <hr>
1407
+ <div class="refsect2">
1408
+ <a name="GtkStatusIcon--visible"></a><h3>The <code class="literal">"visible"</code> property</h3>
1409
+ <pre class="programlisting"> "visible" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1410
+ <p>Whether or not the status icon is visible.</p>
1411
+ <p>Default value: TRUE</p>
1412
+ </div>
1413
+ </div>
1414
+ <div class="refsect1">
1415
+ <a name="GtkStatusIcon.signal-details"></a><h2>Signal Details</h2>
1416
+ <div class="refsect2">
1417
+ <a name="GtkStatusIcon-activate"></a><h3>The <code class="literal">"activate"</code> signal</h3>
1418
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon,
1419
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
1420
+ <p>
1421
+ Gets emitted when the user activates the status icon.
1422
+ If and how status icons can activated is platform-dependent.
1423
+ </p>
1424
+ <p>
1425
+ Unlike most G_SIGNAL_ACTION signals, this signal is meant to
1426
+ be used by applications and should be wrapped by language bindings.
1427
+ </p>
1428
+ <div class="variablelist"><table border="0">
1429
+ <col align="left" valign="top">
1430
+ <tbody>
1431
+ <tr>
1432
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
1433
+ <td>the object which received the signal</td>
1434
+ </tr>
1435
+ <tr>
1436
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1437
+ <td>user data set when the signal handler was connected.</td>
1438
+ </tr>
1439
+ </tbody>
1440
+ </table></div>
1441
+ <p class="since">Since 2.10</p>
1442
+ </div>
1443
+ <hr>
1444
+ <div class="refsect2">
1445
+ <a name="GtkStatusIcon-button-press-event"></a><h3>The <code class="literal">"button-press-event"</code> signal</h3>
1446
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> user_function (<a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon,
1447
+ <a href="../gdk/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event,
1448
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
1449
+ <p>
1450
+ The ::button-press-event signal will be emitted when a button
1451
+ (typically from a mouse) is pressed.
1452
+ </p>
1453
+ <p>
1454
+ Whether this event is emitted is platform-dependent. Use the ::activate
1455
+ and ::popup-menu signals in preference.
1456
+ </p>
1457
+ <div class="variablelist"><table border="0">
1458
+ <col align="left" valign="top">
1459
+ <tbody>
1460
+ <tr>
1461
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
1462
+ <td>the object which received the signal</td>
1463
+ </tr>
1464
+ <tr>
1465
+ <td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
1466
+ <td>the <a href="../gdk/gdk-Event-Structures.html#GdkEventButton"><span class="type">GdkEventButton</span></a> which triggered this signal</td>
1467
+ </tr>
1468
+ <tr>
1469
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1470
+ <td>user data set when the signal handler was connected.</td>
1471
+ </tr>
1472
+ <tr>
1473
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1474
+ <td>
1475
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to stop other handlers from being invoked
1476
+ for the event. <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to propagate the event further.</td>
1477
+ </tr>
1478
+ </tbody>
1479
+ </table></div>
1480
+ <p class="since">Since 2.14</p>
1481
+ </div>
1482
+ <hr>
1483
+ <div class="refsect2">
1484
+ <a name="GtkStatusIcon-button-release-event"></a><h3>The <code class="literal">"button-release-event"</code> signal</h3>
1485
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> user_function (<a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon,
1486
+ <a href="../gdk/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event,
1487
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
1488
+ <p>
1489
+ The ::button-release-event signal will be emitted when a button
1490
+ (typically from a mouse) is released.
1491
+ </p>
1492
+ <p>
1493
+ Whether this event is emitted is platform-dependent. Use the ::activate
1494
+ and ::popup-menu signals in preference.
1495
+ </p>
1496
+ <div class="variablelist"><table border="0">
1497
+ <col align="left" valign="top">
1498
+ <tbody>
1499
+ <tr>
1500
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
1501
+ <td>the object which received the signal</td>
1502
+ </tr>
1503
+ <tr>
1504
+ <td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
1505
+ <td>the <a href="../gdk/gdk-Event-Structures.html#GdkEventButton"><span class="type">GdkEventButton</span></a> which triggered this signal</td>
1506
+ </tr>
1507
+ <tr>
1508
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1509
+ <td>user data set when the signal handler was connected.</td>
1510
+ </tr>
1511
+ <tr>
1512
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1513
+ <td>
1514
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to stop other handlers from being invoked
1515
+ for the event. <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to propagate the event further.</td>
1516
+ </tr>
1517
+ </tbody>
1518
+ </table></div>
1519
+ <p class="since">Since 2.14</p>
1520
+ </div>
1521
+ <hr>
1522
+ <div class="refsect2">
1523
+ <a name="GtkStatusIcon-popup-menu"></a><h3>The <code class="literal">"popup-menu"</code> signal</h3>
1524
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon,
1525
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> button,
1526
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> activate_time,
1527
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
1528
+ <p>
1529
+ Gets emitted when the user brings up the context menu
1530
+ of the status icon. Whether status icons can have context
1531
+ menus and how these are activated is platform-dependent.
1532
+ </p>
1533
+ <p>
1534
+ The <em class="parameter"><code>button</code></em> and <em class="parameter"><code>activate_time</code></em> parameters should be
1535
+ passed as the last to arguments to <a class="link" href="GtkMenu.html#gtk-menu-popup" title="gtk_menu_popup ()"><code class="function">gtk_menu_popup()</code></a>.
1536
+ </p>
1537
+ <p>
1538
+ Unlike most G_SIGNAL_ACTION signals, this signal is meant to
1539
+ be used by applications and should be wrapped by language bindings.
1540
+ </p>
1541
+ <div class="variablelist"><table border="0">
1542
+ <col align="left" valign="top">
1543
+ <tbody>
1544
+ <tr>
1545
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
1546
+ <td>the object which received the signal</td>
1547
+ </tr>
1548
+ <tr>
1549
+ <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
1550
+ <td>the button that was pressed, or 0 if the
1551
+ signal is not emitted in response to a button press event</td>
1552
+ </tr>
1553
+ <tr>
1554
+ <td><p><span class="term"><em class="parameter"><code>activate_time</code></em> :</span></p></td>
1555
+ <td>the timestamp of the event that
1556
+ triggered the signal emission</td>
1557
+ </tr>
1558
+ <tr>
1559
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1560
+ <td>user data set when the signal handler was connected.</td>
1561
+ </tr>
1562
+ </tbody>
1563
+ </table></div>
1564
+ <p class="since">Since 2.10</p>
1565
+ </div>
1566
+ <hr>
1567
+ <div class="refsect2">
1568
+ <a name="GtkStatusIcon-query-tooltip"></a><h3>The <code class="literal">"query-tooltip"</code> signal</h3>
1569
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> user_function (<a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon,
1570
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x,
1571
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y,
1572
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> keyboard_mode,
1573
+ <a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a> *tooltip,
1574
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
1575
+ <p>
1576
+ Emitted when the <a class="link" href="GtkSettings.html#GtkSettings--gtk-tooltip-timeout" title='The "gtk-tooltip-timeout" property'><span class="type">"gtk-tooltip-timeout"</span></a> has expired with the
1577
+ cursor hovering above <em class="parameter"><code>status_icon</code></em>; or emitted when <em class="parameter"><code>status_icon</code></em> got
1578
+ focus in keyboard mode.
1579
+ </p>
1580
+ <p>
1581
+ Using the given coordinates, the signal handler should determine
1582
+ whether a tooltip should be shown for <em class="parameter"><code>status_icon</code></em>. If this is
1583
+ the case <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> should be returned, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise. Note that if
1584
+ <em class="parameter"><code>keyboard_mode</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, the values of <em class="parameter"><code>x</code></em> and <em class="parameter"><code>y</code></em> are undefined and
1585
+ should not be used.
1586
+ </p>
1587
+ <p>
1588
+ The signal handler is free to manipulate <em class="parameter"><code>tooltip</code></em> with the therefore
1589
+ destined function calls.
1590
+ </p>
1591
+ <p>
1592
+ Whether this signal is emitted is platform-dependent.
1593
+ For plain text tooltips, use <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--tooltip-text" title='The "tooltip-text" property'><span class="type">"tooltip-text"</span></a> in preference.
1594
+ </p>
1595
+ <div class="variablelist"><table border="0">
1596
+ <col align="left" valign="top">
1597
+ <tbody>
1598
+ <tr>
1599
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
1600
+ <td>the object which received the signal</td>
1601
+ </tr>
1602
+ <tr>
1603
+ <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1604
+ <td>the x coordinate of the cursor position where the request has been
1605
+ emitted, relative to <em class="parameter"><code>status_icon</code></em>
1606
+ </td>
1607
+ </tr>
1608
+ <tr>
1609
+ <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1610
+ <td>the y coordinate of the cursor position where the request has been
1611
+ emitted, relative to <em class="parameter"><code>status_icon</code></em>
1612
+ </td>
1613
+ </tr>
1614
+ <tr>
1615
+ <td><p><span class="term"><em class="parameter"><code>keyboard_mode</code></em> :</span></p></td>
1616
+ <td>
1617
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the tooltip was trigged using the keyboard</td>
1618
+ </tr>
1619
+ <tr>
1620
+ <td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
1621
+ <td>a <a class="link" href="GtkTooltip.html" title="GtkTooltip"><span class="type">GtkTooltip</span></a>
1622
+ </td>
1623
+ </tr>
1624
+ <tr>
1625
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1626
+ <td>user data set when the signal handler was connected.</td>
1627
+ </tr>
1628
+ <tr>
1629
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1630
+ <td>
1631
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>tooltip</code></em> should be shown right now, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
1632
+ </tr>
1633
+ </tbody>
1634
+ </table></div>
1635
+ <p class="since">Since 2.16</p>
1636
+ </div>
1637
+ <hr>
1638
+ <div class="refsect2">
1639
+ <a name="GtkStatusIcon-scroll-event"></a><h3>The <code class="literal">"scroll-event"</code> signal</h3>
1640
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> user_function (<a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon,
1641
+ <a href="../gdk/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event,
1642
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
1643
+ <p>
1644
+ The ::scroll-event signal is emitted when a button in the 4 to 7
1645
+ range is pressed. Wheel mice are usually configured to generate
1646
+ button press events for buttons 4 and 5 when the wheel is turned.
1647
+ </p>
1648
+ <p>
1649
+ Whether this event is emitted is platform-dependent.
1650
+ </p>
1651
+ <div class="variablelist"><table border="0">
1652
+ <col align="left" valign="top">
1653
+ <tbody>
1654
+ <tr>
1655
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
1656
+ <td>the object which received the signal.</td>
1657
+ </tr>
1658
+ <tr>
1659
+ <td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
1660
+ <td>the <a href="../gdk/gdk-Event-Structures.html#GdkEventScroll"><span class="type">GdkEventScroll</span></a> which triggered this signal</td>
1661
+ </tr>
1662
+ <tr>
1663
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1664
+ <td>user data set when the signal handler was connected.</td>
1665
+ </tr>
1666
+ <tr>
1667
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1668
+ <td>
1669
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to stop other handlers from being invoked for the event.
1670
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to propagate the event further.</td>
1671
+ </tr>
1672
+ </tbody>
1673
+ </table></div>
1674
+ </div>
1675
+ <hr>
1676
+ <div class="refsect2">
1677
+ <a name="GtkStatusIcon-size-changed"></a><h3>The <code class="literal">"size-changed"</code> signal</h3>
1678
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> user_function (<a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a> *status_icon,
1679
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size,
1680
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
1681
+ <p>
1682
+ Gets emitted when the size available for the image
1683
+ changes, e.g. because the notification area got resized.
1684
+ </p>
1685
+ <div class="variablelist"><table border="0">
1686
+ <col align="left" valign="top">
1687
+ <tbody>
1688
+ <tr>
1689
+ <td><p><span class="term"><em class="parameter"><code>status_icon</code></em> :</span></p></td>
1690
+ <td>the object which received the signal</td>
1691
+ </tr>
1692
+ <tr>
1693
+ <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
1694
+ <td>the new size</td>
1695
+ </tr>
1696
+ <tr>
1697
+ <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1698
+ <td>user data set when the signal handler was connected.</td>
1699
+ </tr>
1700
+ <tr>
1701
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1702
+ <td>
1703
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the icon was updated for the new
1704
+ size. Otherwise, GTK+ will scale the icon as necessary.</td>
1705
+ </tr>
1706
+ </tbody>
1707
+ </table></div>
1708
+ <p class="since">Since 2.10</p>
1709
+ </div>
1710
+ </div>
1711
+ </div>
1712
+ <div class="footer">
1713
+ <hr>
1714
+ Generated by GTK-Doc V1.18</div>
1715
+ </body>
1716
+ </html>