gtk2 1.0.0-x86-mingw32 → 1.0.1-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (553) hide show
  1. data/ChangeLog +52 -0
  2. data/ext/gtk2/extconf.rb +18 -9
  3. data/ext/gtk2/rbgdk.h +3 -0
  4. data/ext/gtk2/rbgdkdragcontext.c +4 -4
  5. data/ext/gtk2/rbgdkevent.c +18 -5
  6. data/ext/gtk2/rbgdkpixmap.c +43 -48
  7. data/ext/gtk2/rbgdkproperty.c +6 -5
  8. data/ext/gtk2/rbgdkscreen.c +18 -74
  9. data/ext/gtk2/rbgdkselection.c +2 -2
  10. data/ext/gtk2/rbgdkwindow.c +11 -18
  11. data/ext/gtk2/rbgdkwindowattr.c +1 -1
  12. data/ext/gtk2/rbgtkaccelgroup.c +1 -1
  13. data/ext/gtk2/rbgtkaction.c +8 -26
  14. data/ext/gtk2/rbgtkactiongroup.c +6 -6
  15. data/ext/gtk2/rbgtkadjustment.c +20 -74
  16. data/ext/gtk2/rbgtkbindingset.c +1 -1
  17. data/ext/gtk2/rbgtkbuilder.c +2 -1
  18. data/ext/gtk2/rbgtkbutton.c +1 -9
  19. data/ext/gtk2/rbgtkcalendar.c +1 -1
  20. data/ext/gtk2/rbgtkcellrendererspinner.c +0 -3
  21. data/ext/gtk2/rbgtkcellrenderertext.c +1 -2
  22. data/ext/gtk2/rbgtkcellview.c +6 -11
  23. data/ext/gtk2/rbgtkcolorselectiondialog.c +2 -28
  24. data/ext/gtk2/rbgtkcombo.c +2 -2
  25. data/ext/gtk2/rbgtkcombobox.c +9 -29
  26. data/ext/gtk2/rbgtkcontainer.c +1 -1
  27. data/ext/gtk2/rbgtkcurve.c +4 -2
  28. data/ext/gtk2/rbgtkdialog.c +2 -3
  29. data/ext/gtk2/rbgtkdrag.c +3 -3
  30. data/ext/gtk2/rbgtkentry.c +2 -2
  31. data/ext/gtk2/rbgtkentrycompletion.c +1 -4
  32. data/ext/gtk2/rbgtkfilechooser.c +32 -29
  33. data/ext/gtk2/rbgtkfilechooserdialog.c +8 -6
  34. data/ext/gtk2/rbgtkfilefilter.c +8 -4
  35. data/ext/gtk2/rbgtkframe.c +3 -4
  36. data/ext/gtk2/rbgtkhandlebox.c +0 -7
  37. data/ext/gtk2/rbgtkicontheme.c +4 -13
  38. data/ext/gtk2/rbgtkiconview.c +4 -15
  39. data/ext/gtk2/rbgtkimcontext.c +1 -1
  40. data/ext/gtk2/rbgtkinvisible.c +5 -21
  41. data/ext/gtk2/rbgtkitemfactory.c +3 -3
  42. data/ext/gtk2/rbgtklabel.c +0 -2
  43. data/ext/gtk2/rbgtklinkbutton.c +0 -2
  44. data/ext/gtk2/rbgtkmain.c +7 -10
  45. data/ext/gtk2/rbgtkmenu.c +22 -74
  46. data/ext/gtk2/rbgtkmenuitem.c +16 -55
  47. data/ext/gtk2/rbgtkmenushell.c +3 -11
  48. data/ext/gtk2/rbgtkmessagedialog.c +11 -20
  49. data/ext/gtk2/rbgtknotebook.c +0 -1
  50. data/ext/gtk2/rbgtkoptionmenu.c +1 -2
  51. data/ext/gtk2/rbgtkprintjob.c +1 -2
  52. data/ext/gtk2/rbgtkprintoperation.c +0 -2
  53. data/ext/gtk2/rbgtkradioaction.c +2 -7
  54. data/ext/gtk2/rbgtkradiobutton.c +1 -1
  55. data/ext/gtk2/rbgtkradiomenuitem.c +4 -6
  56. data/ext/gtk2/rbgtkradiotoolbutton.c +2 -4
  57. data/ext/gtk2/rbgtkrange.c +1 -2
  58. data/ext/gtk2/rbgtkrc.c +8 -9
  59. data/ext/gtk2/rbgtkrcstyle.c +2 -2
  60. data/ext/gtk2/rbgtkrecentaction.c +0 -1
  61. data/ext/gtk2/rbgtkrecentchooser.c +3 -3
  62. data/ext/gtk2/rbgtkrecentdata.c +2 -9
  63. data/ext/gtk2/rbgtkrecentfilter.c +2 -1
  64. data/ext/gtk2/rbgtkrecentfilterinfo.c +5 -16
  65. data/ext/gtk2/rbgtkrecentinfo.c +2 -2
  66. data/ext/gtk2/rbgtkrecentmanager.c +1 -2
  67. data/ext/gtk2/rbgtkruler.c +6 -16
  68. data/ext/gtk2/rbgtkscalebutton.c +16 -48
  69. data/ext/gtk2/rbgtkscrolledwindow.c +1 -1
  70. data/ext/gtk2/rbgtkselectiondata.c +10 -34
  71. data/ext/gtk2/rbgtksettings.c +1 -1
  72. data/ext/gtk2/rbgtkspinner.c +0 -3
  73. data/ext/gtk2/rbgtkstatusbar.c +5 -16
  74. data/ext/gtk2/rbgtkstatusicon.c +2 -9
  75. data/ext/gtk2/rbgtkstock.c +4 -4
  76. data/ext/gtk2/rbgtktable.c +8 -13
  77. data/ext/gtk2/rbgtktextattributes.c +0 -2
  78. data/ext/gtk2/rbgtktextbuffer.c +17 -16
  79. data/ext/gtk2/rbgtktextmark.c +7 -14
  80. data/ext/gtk2/rbgtktexttag.c +1 -2
  81. data/ext/gtk2/rbgtktextview.c +3 -4
  82. data/ext/gtk2/rbgtktoggleaction.c +5 -16
  83. data/ext/gtk2/rbgtktogglebutton.c +1 -2
  84. data/ext/gtk2/rbgtktoggletoolbutton.c +5 -16
  85. data/ext/gtk2/rbgtktoolbar.c +8 -31
  86. data/ext/gtk2/rbgtktoolitem.c +3 -1
  87. data/ext/gtk2/rbgtktreerowreference.c +4 -4
  88. data/ext/gtk2/rbgtktreesortable.c +0 -3
  89. data/ext/gtk2/rbgtktreestore.c +10 -7
  90. data/ext/gtk2/rbgtktreeview.c +5 -8
  91. data/ext/gtk2/rbgtktreeviewcolumn.c +13 -34
  92. data/ext/gtk2/rbgtkuimanager.c +2 -3
  93. data/ext/gtk2/rbgtkwidget.c +24 -44
  94. data/ext/gtk2/rbgtkwindow.c +32 -92
  95. data/lib/1.8/gtk2.so +0 -0
  96. data/lib/1.9/gtk2.so +0 -0
  97. data/lib/gtk2/base.rb +1 -1
  98. data/vendor/local/bin/gtk-builder-convert +2 -29
  99. data/vendor/local/bin/gtk-demo.exe +0 -0
  100. data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
  101. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  102. data/vendor/local/bin/libgailutil-18.dll +0 -0
  103. data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
  104. data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
  105. data/vendor/local/etc/gtk-2.0/gtk.immodules +1 -1
  106. data/vendor/local/include/gtk-2.0/gdk/gdk.h +5 -2
  107. data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +0 -4
  108. data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +0 -2
  109. data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +0 -7
  110. data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +4 -7
  111. data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +1 -1
  112. data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +0 -1
  113. data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +0 -4
  114. data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +9 -13
  115. data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +0 -2
  116. data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +0 -5
  117. data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +6 -16
  118. data/vendor/local/include/gtk-2.0/gtk/gtk.h +0 -1
  119. data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +1 -5
  120. data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +3 -14
  121. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +0 -3
  122. data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +0 -4
  123. data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +0 -2
  124. data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +2 -2
  125. data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +3 -5
  126. data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +0 -6
  127. data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +0 -4
  128. data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +0 -2
  129. data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +4 -4
  130. data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +0 -4
  131. data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +1 -5
  132. data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +1 -2
  133. data/vendor/local/lib/gailutil.lib +0 -0
  134. data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
  135. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
  136. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
  137. data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
  138. data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
  139. data/vendor/local/lib/libgailutil.dll.a +0 -0
  140. data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
  141. data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
  142. data/vendor/local/lib/pkgconfig/gail.pc +1 -1
  143. data/vendor/local/lib/pkgconfig/gdk-2.0.pc +1 -1
  144. data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +1 -1
  145. data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +1 -1
  146. data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +1 -1
  147. data/vendor/local/manifest/{gtk+-dev_2.24.0-1_win32.mft → gtk+-dev_2.22.1-1_win32.mft} +6 -9
  148. data/vendor/local/manifest/{gtk+_2.24.0-1_win32.mft → gtk+_2.22.1-1_win32.mft} +6 -2
  149. data/vendor/local/share/doc/{gtk+-2.24.0 → gtk+-2.22.1}/COPYING +0 -0
  150. data/vendor/local/share/doc/{gtk+-dev-2.24.0 → gtk+-dev-2.22.1}/COPYING +0 -0
  151. data/vendor/local/share/gtk-2.0/demo/appwindow.c +21 -0
  152. data/vendor/local/share/gtk-2.0/demo/combobox.c +6 -6
  153. data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +1 -1
  154. data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +1 -1
  155. data/vendor/local/share/gtk-2.0/demo/sizegroup.c +2 -2
  156. data/vendor/local/share/gtk-2.0/demo/textview.c +4 -4
  157. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +94 -60
  158. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +58 -44
  159. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp +1 -1
  160. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +1 -1
  161. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +3 -3
  162. data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +3 -3
  163. data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +1 -2
  164. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +208 -151
  165. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +37 -33
  166. data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +239 -180
  167. data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +3 -3
  168. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +3 -3
  169. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +3 -3
  170. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +3 -3
  171. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +3 -3
  172. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +3 -3
  173. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +4 -4
  174. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +3 -3
  175. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +3 -3
  176. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +3 -3
  177. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +6 -6
  178. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +4 -4
  179. data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +5 -135
  180. data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +47 -83
  181. data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +23 -20
  182. data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +126 -126
  183. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +39 -81
  184. data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +199 -135
  185. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +90 -71
  186. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +200 -161
  187. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +409 -293
  188. data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +435 -320
  189. data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +141 -109
  190. data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +234 -155
  191. data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +217 -143
  192. data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +124 -103
  193. data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +250 -168
  194. data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +131 -90
  195. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +191 -143
  196. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +53 -35
  197. data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +195 -162
  198. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +112 -85
  199. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +137 -79
  200. data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +176 -144
  201. data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +235 -188
  202. data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +134 -97
  203. data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +35 -22
  204. data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +70 -44
  205. data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +108 -83
  206. data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +744 -653
  207. data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +490 -476
  208. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp +44 -53
  209. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +76 -85
  210. data/vendor/local/share/gtk-doc/html/gdk/index.html +4 -4
  211. data/vendor/local/share/gtk-doc/html/gdk/index.sgml +1 -10
  212. data/vendor/local/share/gtk-doc/html/gdk/multihead.html +9 -9
  213. data/vendor/local/share/gtk-doc/html/gdk/reference.html +3 -3
  214. data/vendor/local/share/gtk-doc/html/gdk/style.css +1 -2
  215. data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +3 -3
  216. data/vendor/local/share/gtk-doc/html/gtk/Actions.html +3 -3
  217. data/vendor/local/share/gtk-doc/html/gtk/Builder.html +3 -3
  218. data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +3 -3
  219. data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +3 -3
  220. data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +3 -3
  221. data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +186 -193
  222. data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +46 -38
  223. data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +18 -18
  224. data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +236 -169
  225. data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +258 -175
  226. data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +50 -46
  227. data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +114 -78
  228. data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +66 -52
  229. data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +36 -30
  230. data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +46 -36
  231. data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +118 -97
  232. data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +14 -14
  233. data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +120 -95
  234. data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +117 -86
  235. data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +137 -96
  236. data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +185 -152
  237. data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +76 -59
  238. data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +895 -615
  239. data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +1780 -509
  240. data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +163 -125
  241. data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +35 -33
  242. data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +87 -60
  243. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +130 -106
  244. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +44 -35
  245. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +32 -27
  246. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +25 -24
  247. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +25 -23
  248. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +20 -19
  249. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +20 -19
  250. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +74 -69
  251. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +54 -45
  252. data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +76 -57
  253. data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +34 -30
  254. data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +75 -53
  255. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +180 -104
  256. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +32 -29
  257. data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +81 -63
  258. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +186 -344
  259. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +46 -57
  260. data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +260 -311
  261. data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +79 -61
  262. data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +121 -97
  263. data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +23 -21
  264. data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +88 -68
  265. data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +470 -360
  266. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +104 -71
  267. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +185 -130
  268. data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +38 -33
  269. data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +96 -76
  270. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +403 -331
  271. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +89 -64
  272. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +35 -30
  273. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +26 -21
  274. data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +146 -102
  275. data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +49 -38
  276. data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +86 -60
  277. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +81 -66
  278. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +61 -52
  279. data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +58 -51
  280. data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +19 -18
  281. data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +20 -17
  282. data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +34 -29
  283. data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +13 -13
  284. data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +24 -30
  285. data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +101 -65
  286. data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +30 -25
  287. data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +18 -18
  288. data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +20 -19
  289. data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +66 -55
  290. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +182 -140
  291. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +22 -18
  292. data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +22 -18
  293. data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +248 -184
  294. data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +447 -321
  295. data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +195 -174
  296. data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +69 -58
  297. data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +80 -67
  298. data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +37 -32
  299. data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +41 -33
  300. data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +42 -36
  301. data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +272 -179
  302. data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +249 -197
  303. data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +76 -68
  304. data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +60 -51
  305. data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +180 -130
  306. data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +130 -80
  307. data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +168 -138
  308. data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +221 -177
  309. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +49 -41
  310. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +145 -112
  311. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +118 -86
  312. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +49 -73
  313. data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +81 -81
  314. data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +39 -33
  315. data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +452 -396
  316. data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +206 -148
  317. data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +25 -21
  318. data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +165 -80
  319. data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +66 -56
  320. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +160 -115
  321. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +25 -22
  322. data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +134 -94
  323. data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +44 -34
  324. data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +67 -51
  325. data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +136 -109
  326. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +53 -38
  327. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +68 -53
  328. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +403 -265
  329. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +94 -74
  330. data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +134 -100
  331. data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +111 -80
  332. data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +108 -91
  333. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +53 -42
  334. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +79 -86
  335. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +71 -63
  336. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +42 -33
  337. data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +185 -218
  338. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +41 -34
  339. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +194 -135
  340. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +29 -27
  341. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +30 -25
  342. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +19 -17
  343. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +85 -63
  344. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +269 -202
  345. data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +58 -83
  346. data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +72 -61
  347. data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +83 -64
  348. data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +21 -21
  349. data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +143 -93
  350. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +13 -13
  351. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +18 -17
  352. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +27 -24
  353. data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +259 -129
  354. data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +45 -38
  355. data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +53 -44
  356. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +177 -132
  357. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +25 -24
  358. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +254 -190
  359. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +75 -60
  360. data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +928 -546
  361. data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +135 -94
  362. data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +19 -18
  363. data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +140 -97
  364. data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +656 -494
  365. data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +46 -41
  366. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +194 -164
  367. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +76 -84
  368. data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +425 -340
  369. data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +94 -74
  370. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +57 -43
  371. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +71 -59
  372. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +38 -32
  373. data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +85 -74
  374. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +166 -133
  375. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +103 -84
  376. data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +139 -116
  377. data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +59 -42
  378. data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +360 -249
  379. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +27 -27
  380. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +70 -60
  381. data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +152 -105
  382. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +134 -46
  383. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +557 -428
  384. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +126 -95
  385. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +70 -63
  386. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +171 -123
  387. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +62 -53
  388. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +199 -170
  389. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +863 -565
  390. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +282 -203
  391. data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +189 -125
  392. data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +20 -17
  393. data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +34 -27
  394. data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +14 -14
  395. data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +24 -31
  396. data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +29 -24
  397. data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +18 -18
  398. data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +18 -17
  399. data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +69 -58
  400. data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +17 -16
  401. data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +1579 -1278
  402. data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +532 -380
  403. data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +39 -21
  404. data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +3 -3
  405. data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +3 -6
  406. data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +3 -3
  407. data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +3 -3
  408. data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +3 -3
  409. data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +3 -3
  410. data/vendor/local/share/gtk-doc/html/gtk/Printing.html +4 -4
  411. data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +3 -3
  412. data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +3 -3
  413. data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +3 -3
  414. data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +3 -3
  415. data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +15 -15
  416. data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +4 -4
  417. data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +16 -16
  418. data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +3 -3
  419. data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +3 -3
  420. data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +11 -17
  421. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +20 -20
  422. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +6 -6
  423. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +3 -3
  424. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +4 -4
  425. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +3 -3
  426. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +5 -5
  427. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +3 -3
  428. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +5 -5
  429. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +28 -28
  430. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +3 -3
  431. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +7 -7
  432. data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +45 -236
  433. data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +385 -469
  434. data/vendor/local/share/gtk-doc/html/gtk/ch01.html +4 -15
  435. data/vendor/local/share/gtk-doc/html/gtk/ch02.html +4 -4
  436. data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +12 -12
  437. data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +4 -4
  438. data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +4 -4
  439. data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +4 -4
  440. data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +3 -3
  441. data/vendor/local/share/gtk-doc/html/gtk/glossary.html +3 -3
  442. data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +124 -69
  443. data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +211 -149
  444. data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +293 -189
  445. data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +246 -175
  446. data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +41 -35
  447. data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +47 -41
  448. data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +318 -270
  449. data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +22 -16
  450. data/vendor/local/share/gtk-doc/html/gtk/{GtkPaperSize.html → gtk-GtkPaperSize.html} +252 -204
  451. data/vendor/local/share/gtk-doc/html/gtk/{GtkTextIter.html → gtk-GtkTextIter.html} +806 -664
  452. data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +82 -75
  453. data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +289 -221
  454. data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +232 -142
  455. data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +20 -17
  456. data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +190 -150
  457. data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +408 -328
  458. data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +306 -190
  459. data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +53 -53
  460. data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +158 -152
  461. data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +136 -85
  462. data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +239 -204
  463. data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +343 -271
  464. data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +11 -18
  465. data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +20 -20
  466. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +5 -5
  467. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +5 -5
  468. data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +5 -5
  469. data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +7 -7
  470. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +75 -63
  471. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +75 -58
  472. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +3 -3
  473. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +3 -3
  474. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +4 -4
  475. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +4 -4
  476. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +10 -5
  477. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +3 -3
  478. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +4 -4
  479. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +5 -5
  480. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +3 -3
  481. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +3 -3
  482. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +5 -5
  483. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +7 -7
  484. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +3 -3
  485. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +3 -3
  486. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +3 -3
  487. data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +6 -6
  488. data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +10 -10
  489. data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +90 -90
  490. data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +9 -9
  491. data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +31 -39
  492. data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +10 -10
  493. data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +14 -14
  494. data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +12 -12
  495. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp +412 -445
  496. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +455 -488
  497. data/vendor/local/share/gtk-doc/html/gtk/gtk.html +4 -4
  498. data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +3 -3
  499. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +3 -3
  500. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +3 -3
  501. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +3 -3
  502. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +5 -5
  503. data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +5 -8
  504. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +3 -3
  505. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +3 -3
  506. data/vendor/local/share/gtk-doc/html/gtk/index.html +6 -10
  507. data/vendor/local/share/gtk-doc/html/gtk/index.sgml +142 -194
  508. data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +3 -3
  509. data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +17 -17
  510. data/vendor/local/share/gtk-doc/html/gtk/migrating.html +4 -4
  511. data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +3 -3
  512. data/vendor/local/share/gtk-doc/html/gtk/pt05.html +4 -4
  513. data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +3 -3
  514. data/vendor/local/share/gtk-doc/html/gtk/style.css +1 -2
  515. data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +3 -3
  516. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
  517. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
  518. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
  519. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
  520. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
  521. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
  522. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
  523. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
  524. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
  525. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
  526. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
  527. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
  528. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
  529. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
  530. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
  531. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
  532. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20-properties.mo +0 -0
  533. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20.mo +0 -0
  534. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20-properties.mo +0 -0
  535. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20.mo +0 -0
  536. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
  537. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
  538. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
  539. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
  540. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
  541. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
  542. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
  543. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
  544. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
  545. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
  546. data/vendor/local/src/tml/packaging/gtk+_2.22.1-1_win32.log +5048 -0
  547. data/vendor/local/src/tml/packaging/{gtk+_2.24.0-1_win32.sh → gtk+_2.22.1-1_win32.sh} +2 -2
  548. metadata +25 -25
  549. data/vendor/local/etc/gtk-2.0/gtkrc +0 -1
  550. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +0 -77
  551. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +0 -301
  552. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +0 -117
  553. data/vendor/local/src/tml/packaging/gtk+_2.24.0-1_win32.log +0 -4934
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="DisplayWidgets.html" title="Display Widgets">
9
9
  <link rel="prev" href="GtkStatusIcon.html" title="GtkStatusIcon">
10
10
  <link rel="next" href="ButtonWidgets.html" title="Buttons and Toggles">
11
- <meta name="generator" content="GTK-Doc V1.16.1 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.15 (XML mode)">
12
12
  <link rel="stylesheet" href="style.css" type="text/css">
13
13
  </head>
14
14
  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -34,7 +34,7 @@
34
34
  <a href="#GtkSpinner.style-properties" class="shortcut">Style Properties</a>
35
35
  </td></tr>
36
36
  </table>
37
- <div class="refentry">
37
+ <div class="refentry" title="GtkSpinner">
38
38
  <a name="GtkSpinner"></a><div class="titlepage"></div>
39
39
  <div class="refnamediv"><table width="100%"><tr>
40
40
  <td valign="top">
@@ -43,18 +43,18 @@
43
43
  </td>
44
44
  <td valign="top" align="right"><img src="spinner.png"></td>
45
45
  </tr></table></div>
46
- <div class="refsynopsisdiv">
46
+ <div class="refsynopsisdiv" title="Synopsis">
47
47
  <a name="GtkSpinner.synopsis"></a><h2>Synopsis</h2>
48
48
  <pre class="synopsis">
49
49
  #include &lt;gtk/gtk.h&gt;
50
50
 
51
- struct <a class="link" href="GtkSpinner.html#GtkSpinner-struct" title="struct GtkSpinner">GtkSpinner</a>;
51
+ <a class="link" href="GtkSpinner.html#GtkSpinner-struct" title="GtkSpinner">GtkSpinner</a>;
52
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
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
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
55
  </pre>
56
56
  </div>
57
- <div class="refsect1">
57
+ <div class="refsect1" title="Object Hierarchy">
58
58
  <a name="GtkSpinner.object-hierarchy"></a><h2>Object Hierarchy</h2>
59
59
  <pre class="synopsis">
60
60
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -65,26 +65,26 @@ struct <a class="link" href="GtkSpinner.html#GtkSpinner-struct" tit
65
65
  +----GtkSpinner
66
66
  </pre>
67
67
  </div>
68
- <div class="refsect1">
68
+ <div class="refsect1" title="Implemented Interfaces">
69
69
  <a name="GtkSpinner.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
70
70
  <p>
71
71
  GtkSpinner implements
72
72
  AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
73
73
  </div>
74
- <div class="refsect1">
74
+ <div class="refsect1" title="Properties">
75
75
  <a name="GtkSpinner.properties"></a><h2>Properties</h2>
76
76
  <pre class="synopsis">
77
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
78
  </pre>
79
79
  </div>
80
- <div class="refsect1">
80
+ <div class="refsect1" title="Style Properties">
81
81
  <a name="GtkSpinner.style-properties"></a><h2>Style Properties</h2>
82
82
  <pre class="synopsis">
83
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
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
85
  </pre>
86
86
  </div>
87
- <div class="refsect1">
87
+ <div class="refsect1" title="Description">
88
88
  <a name="GtkSpinner.description"></a><h2>Description</h2>
89
89
  <p>
90
90
  A GtkSpinner widget displays an icon-size spinning animation.
@@ -96,16 +96,16 @@ To start the animation, use <a class="link" href="GtkSpinner.html#gtk-spinner-st
96
96
  use <a class="link" href="GtkSpinner.html#gtk-spinner-stop" title="gtk_spinner_stop ()"><code class="function">gtk_spinner_stop()</code></a>.
97
97
  </p>
98
98
  </div>
99
- <div class="refsect1">
99
+ <div class="refsect1" title="Details">
100
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>
101
+ <div class="refsect2" title="GtkSpinner">
102
+ <a name="GtkSpinner-struct"></a><h3>GtkSpinner</h3>
103
+ <pre class="programlisting">typedef struct _GtkSpinner GtkSpinner;</pre>
104
104
  <p>
105
105
  </p>
106
106
  </div>
107
107
  <hr>
108
- <div class="refsect2">
108
+ <div class="refsect2" title="gtk_spinner_new ()">
109
109
  <a name="gtk-spinner-new"></a><h3>gtk_spinner_new ()</h3>
110
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
111
  <p>
@@ -115,14 +115,15 @@ Returns a new spinner widget. Not yet started.
115
115
  <col align="left" valign="top">
116
116
  <tbody><tr>
117
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>
118
+ <td> a new <a class="link" href="GtkSpinner.html" title="GtkSpinner"><span class="type">GtkSpinner</span></a>
119
+
119
120
  </td>
120
121
  </tr></tbody>
121
122
  </table></div>
122
123
  <p class="since">Since 2.20</p>
123
124
  </div>
124
125
  <hr>
125
- <div class="refsect2">
126
+ <div class="refsect2" title="gtk_spinner_start ()">
126
127
  <a name="gtk-spinner-start"></a><h3>gtk_spinner_start ()</h3>
127
128
  <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
129
  <p>
@@ -139,7 +140,7 @@ Starts the animation of the spinner.
139
140
  <p class="since">Since 2.20</p>
140
141
  </div>
141
142
  <hr>
142
- <div class="refsect2">
143
+ <div class="refsect2" title="gtk_spinner_stop ()">
143
144
  <a name="gtk-spinner-stop"></a><h3>gtk_spinner_stop ()</h3>
144
145
  <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
146
  <p>
@@ -156,18 +157,18 @@ Stops the animation of the spinner.
156
157
  <p class="since">Since 2.20</p>
157
158
  </div>
158
159
  </div>
159
- <div class="refsect1">
160
+ <div class="refsect1" title="Property Details">
160
161
  <a name="GtkSpinner.property-details"></a><h2>Property Details</h2>
161
- <div class="refsect2">
162
+ <div class="refsect2" title='The "active" property'>
162
163
  <a name="GtkSpinner--active"></a><h3>The <code class="literal">"active"</code> property</h3>
163
164
  <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
165
  <p>Whether the spinner is active.</p>
165
166
  <p>Default value: FALSE</p>
166
167
  </div>
167
168
  </div>
168
- <div class="refsect1">
169
+ <div class="refsect1" title="Style Property Details">
169
170
  <a name="GtkSpinner.style-property-details"></a><h2>Style Property Details</h2>
170
- <div class="refsect2">
171
+ <div class="refsect2" title='The "cycle-duration" style property'>
171
172
  <a name="GtkSpinner--s-cycle-duration"></a><h3>The <code class="literal">"cycle-duration"</code> style property</h3>
172
173
  <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
174
  <p>
@@ -178,7 +179,7 @@ The duration in milliseconds for the spinner to complete a full cycle.
178
179
  <p class="since">Since 2.20</p>
179
180
  </div>
180
181
  <hr>
181
- <div class="refsect2">
182
+ <div class="refsect2" title='The "num-steps" style property'>
182
183
  <a name="GtkSpinner--s-num-steps"></a><h3>The <code class="literal">"num-steps"</code> style property</h3>
183
184
  <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
185
  <p>
@@ -191,13 +192,13 @@ The animation will complete a full cycle in one second by default
191
192
  <p class="since">Since 2.20</p>
192
193
  </div>
193
194
  </div>
194
- <div class="refsect1">
195
+ <div class="refsect1" title="See Also">
195
196
  <a name="GtkSpinner.see-also"></a><h2>See Also</h2>
196
197
  <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
198
  </div>
198
199
  </div>
199
200
  <div class="footer">
200
201
  <hr>
201
- Generated by GTK-Doc V1.16.1</div>
202
+ Generated by GTK-Doc V1.15</div>
202
203
  </body>
203
204
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="DisplayWidgets.html" title="Display Widgets">
9
9
  <link rel="prev" href="GtkInfoBar.html" title="GtkInfoBar">
10
10
  <link rel="next" href="GtkSpinner.html" title="GtkSpinner">
11
- <meta name="generator" content="GTK-Doc V1.16.1 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.15 (XML mode)">
12
12
  <link rel="stylesheet" href="style.css" type="text/css">
13
13
  </head>
14
14
  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -32,7 +32,7 @@
32
32
  <a href="#GtkStatusIcon.signals" class="shortcut">Signals</a>
33
33
  </td></tr>
34
34
  </table>
35
- <div class="refentry">
35
+ <div class="refentry" title="GtkStatusIcon">
36
36
  <a name="GtkStatusIcon"></a><div class="titlepage"></div>
37
37
  <div class="refnamediv"><table width="100%"><tr>
38
38
  <td valign="top">
@@ -41,12 +41,12 @@
41
41
  </td>
42
42
  <td valign="top" align="right"></td>
43
43
  </tr></table></div>
44
- <div class="refsynopsisdiv">
44
+ <div class="refsynopsisdiv" title="Synopsis">
45
45
  <a name="GtkStatusIcon.synopsis"></a><h2>Synopsis</h2>
46
46
  <pre class="synopsis">
47
47
  #include &lt;gtk/gtk.h&gt;
48
48
 
49
- struct <a class="link" href="GtkStatusIcon.html#GtkStatusIcon-struct" title="struct GtkStatusIcon">GtkStatusIcon</a>;
49
+ <a class="link" href="GtkStatusIcon.html#GtkStatusIcon-struct" title="GtkStatusIcon">GtkStatusIcon</a>;
50
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
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-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);
52
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>);
@@ -107,14 +107,14 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
107
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
108
  </pre>
109
109
  </div>
110
- <div class="refsect1">
110
+ <div class="refsect1" title="Object Hierarchy">
111
111
  <a name="GtkStatusIcon.object-hierarchy"></a><h2>Object Hierarchy</h2>
112
112
  <pre class="synopsis">
113
113
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
114
114
  +----GtkStatusIcon
115
115
  </pre>
116
116
  </div>
117
- <div class="refsect1">
117
+ <div class="refsect1" title="Properties">
118
118
  <a name="GtkStatusIcon.properties"></a><h2>Properties</h2>
119
119
  <pre class="synopsis">
120
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
@@ -135,19 +135,19 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
135
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
136
  </pre>
137
137
  </div>
138
- <div class="refsect1">
138
+ <div class="refsect1" title="Signals">
139
139
  <a name="GtkStatusIcon.signals"></a><h2>Signals</h2>
140
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>
141
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-activate" title='The "activate" signal'>activate</a>" : Run First / Action
142
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-button-press-event" title='The "button-press-event" signal'>button-press-event</a>" : Run Last
143
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-button-release-event" title='The "button-release-event" signal'>button-release-event</a>" : Run Last
144
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-popup-menu" title='The "popup-menu" signal'>popup-menu</a>" : Run First / Action
145
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-query-tooltip" title='The "query-tooltip" signal'>query-tooltip</a>" : Run Last
146
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-scroll-event" title='The "scroll-event" signal'>scroll-event</a>" : Run Last
147
+ "<a class="link" href="GtkStatusIcon.html#GtkStatusIcon-size-changed" title='The "size-changed" signal'>size-changed</a>" : Run Last
148
148
  </pre>
149
149
  </div>
150
- <div class="refsect1">
150
+ <div class="refsect1" title="Description">
151
151
  <a name="GtkStatusIcon.description"></a><h2>Description</h2>
152
152
  <p>
153
153
  The "system tray" or notification area is normally used for transient icons
@@ -175,16 +175,16 @@ a <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Obje
175
175
  on Win32 doesn't allow to embed arbitrary widgets.
176
176
  </p>
177
177
  </div>
178
- <div class="refsect1">
178
+ <div class="refsect1" title="Details">
179
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>
180
+ <div class="refsect2" title="GtkStatusIcon">
181
+ <a name="GtkStatusIcon-struct"></a><h3>GtkStatusIcon</h3>
182
+ <pre class="programlisting">typedef struct _GtkStatusIcon GtkStatusIcon;</pre>
183
183
  <p>
184
184
  </p>
185
185
  </div>
186
186
  <hr>
187
- <div class="refsect2">
187
+ <div class="refsect2" title="gtk_status_icon_new ()">
188
188
  <a name="gtk-status-icon-new"></a><h3>gtk_status_icon_new ()</h3>
189
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
190
  <p>
@@ -194,14 +194,15 @@ Creates an empty status icon object.
194
194
  <col align="left" valign="top">
195
195
  <tbody><tr>
196
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>
197
+ <td> a new <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
198
+
198
199
  </td>
199
200
  </tr></tbody>
200
201
  </table></div>
201
202
  <p class="since">Since 2.10</p>
202
203
  </div>
203
204
  <hr>
204
- <div class="refsect2">
205
+ <div class="refsect2" title="gtk_status_icon_new_from_pixbuf ()">
205
206
  <a name="gtk-status-icon-new-from-pixbuf"></a><h3>gtk_status_icon_new_from_pixbuf ()</h3>
206
207
  <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-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
207
208
  <p>
@@ -221,7 +222,8 @@ space in the notification area, if necessary.
221
222
  </tr>
222
223
  <tr>
223
224
  <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> a new <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
226
+
225
227
  </td>
226
228
  </tr>
227
229
  </tbody>
@@ -229,7 +231,7 @@ space in the notification area, if necessary.
229
231
  <p class="since">Since 2.10</p>
230
232
  </div>
231
233
  <hr>
232
- <div class="refsect2">
234
+ <div class="refsect2" title="gtk_status_icon_new_from_file ()">
233
235
  <a name="gtk-status-icon-new-from-file"></a><h3>gtk_status_icon_new_from_file ()</h3>
234
236
  <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
237
  <p>
@@ -244,11 +246,13 @@ space in the notification area, if necessary.
244
246
  <tbody>
245
247
  <tr>
246
248
  <td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
247
- <td>a filename</td>
249
+ <td>a filename
250
+ </td>
248
251
  </tr>
249
252
  <tr>
250
253
  <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>
254
+ <td> a new <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
255
+
252
256
  </td>
253
257
  </tr>
254
258
  </tbody>
@@ -256,7 +260,7 @@ space in the notification area, if necessary.
256
260
  <p class="since">Since 2.10</p>
257
261
  </div>
258
262
  <hr>
259
- <div class="refsect2">
263
+ <div class="refsect2" title="gtk_status_icon_new_from_stock ()">
260
264
  <a name="gtk-status-icon-new-from-stock"></a><h3>gtk_status_icon_new_from_stock ()</h3>
261
265
  <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
266
  <p>
@@ -270,11 +274,13 @@ own stock icon names, see <a class="link" href="gtk-Themeable-Stock-Images.html#
270
274
  <tbody>
271
275
  <tr>
272
276
  <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
273
- <td>a stock icon id</td>
277
+ <td>a stock icon id
278
+ </td>
274
279
  </tr>
275
280
  <tr>
276
281
  <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>
282
+ <td> a new <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
283
+
278
284
  </td>
279
285
  </tr>
280
286
  </tbody>
@@ -282,7 +288,7 @@ own stock icon names, see <a class="link" href="gtk-Themeable-Stock-Images.html#
282
288
  <p class="since">Since 2.10</p>
283
289
  </div>
284
290
  <hr>
285
- <div class="refsect2">
291
+ <div class="refsect2" title="gtk_status_icon_new_from_icon_name ()">
286
292
  <a name="gtk-status-icon-new-from-icon-name"></a><h3>gtk_status_icon_new_from_icon_name ()</h3>
287
293
  <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
294
  <p>
@@ -295,11 +301,13 @@ appropriately.
295
301
  <tbody>
296
302
  <tr>
297
303
  <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
298
- <td>an icon name</td>
304
+ <td>an icon name
305
+ </td>
299
306
  </tr>
300
307
  <tr>
301
308
  <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>
309
+ <td> a new <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
310
+
303
311
  </td>
304
312
  </tr>
305
313
  </tbody>
@@ -307,7 +315,7 @@ appropriately.
307
315
  <p class="since">Since 2.10</p>
308
316
  </div>
309
317
  <hr>
310
- <div class="refsect2">
318
+ <div class="refsect2" title="gtk_status_icon_new_from_gicon ()">
311
319
  <a name="gtk-status-icon-new-from-gicon"></a><h3>gtk_status_icon_new_from_gicon ()</h3>
312
320
  <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
321
  <p>
@@ -324,7 +332,8 @@ themed icon, it will be updated when the theme changes.
324
332
  </tr>
325
333
  <tr>
326
334
  <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>
335
+ <td> a new <a class="link" href="GtkStatusIcon.html" title="GtkStatusIcon"><span class="type">GtkStatusIcon</span></a>
336
+
328
337
  </td>
329
338
  </tr>
330
339
  </tbody>
@@ -332,7 +341,7 @@ themed icon, it will be updated when the theme changes.
332
341
  <p class="since">Since 2.14</p>
333
342
  </div>
334
343
  <hr>
335
- <div class="refsect2">
344
+ <div class="refsect2" title="gtk_status_icon_set_from_pixbuf ()">
336
345
  <a name="gtk-status-icon-set-from-pixbuf"></a><h3>gtk_status_icon_set_from_pixbuf ()</h3>
337
346
  <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
347
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
@@ -350,7 +359,7 @@ See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-pixbuf" ti
350
359
  </tr>
351
360
  <tr>
352
361
  <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-gdk-pixbuf.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>
362
+ <td> a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.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
363
  </td>
355
364
  </tr>
356
365
  </tbody>
@@ -358,7 +367,7 @@ See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-pixbuf" ti
358
367
  <p class="since">Since 2.10</p>
359
368
  </div>
360
369
  <hr>
361
- <div class="refsect2">
370
+ <div class="refsect2" title="gtk_status_icon_set_from_file ()">
362
371
  <a name="gtk-status-icon-set-from-file"></a><h3>gtk_status_icon_set_from_file ()</h3>
363
372
  <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
373
  <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>
@@ -376,14 +385,15 @@ See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-file" titl
376
385
  </tr>
377
386
  <tr>
378
387
  <td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
379
- <td>a filename</td>
388
+ <td>a filename
389
+ </td>
380
390
  </tr>
381
391
  </tbody>
382
392
  </table></div>
383
393
  <p class="since">Since 2.10</p>
384
394
  </div>
385
395
  <hr>
386
- <div class="refsect2">
396
+ <div class="refsect2" title="gtk_status_icon_set_from_stock ()">
387
397
  <a name="gtk-status-icon-set-from-stock"></a><h3>gtk_status_icon_set_from_stock ()</h3>
388
398
  <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
399
  <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>
@@ -401,14 +411,15 @@ See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-stock" tit
401
411
  </tr>
402
412
  <tr>
403
413
  <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
404
- <td>a stock icon id</td>
414
+ <td>a stock icon id
415
+ </td>
405
416
  </tr>
406
417
  </tbody>
407
418
  </table></div>
408
419
  <p class="since">Since 2.10</p>
409
420
  </div>
410
421
  <hr>
411
- <div class="refsect2">
422
+ <div class="refsect2" title="gtk_status_icon_set_from_icon_name ()">
412
423
  <a name="gtk-status-icon-set-from-icon-name"></a><h3>gtk_status_icon_set_from_icon_name ()</h3>
413
424
  <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
425
  <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>
@@ -427,14 +438,15 @@ See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-icon-name"
427
438
  </tr>
428
439
  <tr>
429
440
  <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
430
- <td>an icon name</td>
441
+ <td>an icon name
442
+ </td>
431
443
  </tr>
432
444
  </tbody>
433
445
  </table></div>
434
446
  <p class="since">Since 2.10</p>
435
447
  </div>
436
448
  <hr>
437
- <div class="refsect2">
449
+ <div class="refsect2" title="gtk_status_icon_set_from_gicon ()">
438
450
  <a name="gtk-status-icon-set-from-gicon"></a><h3>gtk_status_icon_set_from_gicon ()</h3>
439
451
  <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
452
  <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>
@@ -452,14 +464,15 @@ See <a class="link" href="GtkStatusIcon.html#gtk-status-icon-new-from-gicon" tit
452
464
  </tr>
453
465
  <tr>
454
466
  <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
455
- <td>a GIcon</td>
467
+ <td>a GIcon
468
+ </td>
456
469
  </tr>
457
470
  </tbody>
458
471
  </table></div>
459
472
  <p class="since">Since 2.14</p>
460
473
  </div>
461
474
  <hr>
462
- <div class="refsect2">
475
+ <div class="refsect2" title="gtk_status_icon_get_storage_type ()">
463
476
  <a name="gtk-status-icon-get-storage-type"></a><h3>gtk_status_icon_get_storage_type ()</h3>
464
477
  <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
478
  <p>
@@ -477,14 +490,16 @@ the return value will be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAP
477
490
  </tr>
478
491
  <tr>
479
492
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
480
- <td>the image representation being used</td>
493
+ <td> the image representation being used
494
+
495
+ </td>
481
496
  </tr>
482
497
  </tbody>
483
498
  </table></div>
484
499
  <p class="since">Since 2.10</p>
485
500
  </div>
486
501
  <hr>
487
- <div class="refsect2">
502
+ <div class="refsect2" title="gtk_status_icon_get_pixbuf ()">
488
503
  <a name="gtk-status-icon-get-pixbuf"></a><h3>gtk_status_icon_get_pixbuf ()</h3>
489
504
  <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.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
505
  <p>
@@ -504,8 +519,8 @@ returned pixbuf.
504
519
  </tr>
505
520
  <tr>
506
521
  <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>
522
+ <td> the displayed pixbuf, 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.
523
+
509
524
  </td>
510
525
  </tr>
511
526
  </tbody>
@@ -513,7 +528,7 @@ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.ht
513
528
  <p class="since">Since 2.10</p>
514
529
  </div>
515
530
  <hr>
516
- <div class="refsect2">
531
+ <div class="refsect2" title="gtk_status_icon_get_stock ()">
517
532
  <a name="gtk-status-icon-get-stock"></a><h3>gtk_status_icon_get_stock ()</h3>
518
533
  <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
534
  <p>
@@ -533,15 +548,17 @@ be freed or modified.
533
548
  </tr>
534
549
  <tr>
535
550
  <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>
551
+ <td> stock id of the displayed stock icon,
552
+ 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.
553
+
554
+ </td>
538
555
  </tr>
539
556
  </tbody>
540
557
  </table></div>
541
558
  <p class="since">Since 2.10</p>
542
559
  </div>
543
560
  <hr>
544
- <div class="refsect2">
561
+ <div class="refsect2" title="gtk_status_icon_get_icon_name ()">
545
562
  <a name="gtk-status-icon-get-icon-name"></a><h3>gtk_status_icon_get_icon_name ()</h3>
546
563
  <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
564
  <p>
@@ -561,14 +578,16 @@ be freed or modified.
561
578
  </tr>
562
579
  <tr>
563
580
  <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>
581
+ <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.
582
+
583
+ </td>
565
584
  </tr>
566
585
  </tbody>
567
586
  </table></div>
568
587
  <p class="since">Since 2.10</p>
569
588
  </div>
570
589
  <hr>
571
- <div class="refsect2">
590
+ <div class="refsect2" title="gtk_status_icon_get_gicon ()">
572
591
  <a name="gtk-status-icon-get-gicon"></a><h3>gtk_status_icon_get_gicon ()</h3>
573
592
  <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
593
  <p>
@@ -591,7 +610,8 @@ If this function fails, <em class="parameter"><code>icon</code></em> is left unc
591
610
  </tr>
592
611
  <tr>
593
612
  <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>
613
+ <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
614
+
595
615
  </td>
596
616
  </tr>
597
617
  </tbody>
@@ -599,7 +619,7 @@ If this function fails, <em class="parameter"><code>icon</code></em> is left unc
599
619
  <p class="since">Since 2.14</p>
600
620
  </div>
601
621
  <hr>
602
- <div class="refsect2">
622
+ <div class="refsect2" title="gtk_status_icon_get_size ()">
603
623
  <a name="gtk-status-icon-get-size"></a><h3>gtk_status_icon_get_size ()</h3>
604
624
  <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
625
  <p>
@@ -623,14 +643,16 @@ status icon is embedded (see <a class="link" href="GtkStatusIcon.html#gtk-status
623
643
  </tr>
624
644
  <tr>
625
645
  <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>
646
+ <td> the size that is available for the image
647
+
648
+ </td>
627
649
  </tr>
628
650
  </tbody>
629
651
  </table></div>
630
652
  <p class="since">Since 2.10</p>
631
653
  </div>
632
654
  <hr>
633
- <div class="refsect2">
655
+ <div class="refsect2" title="gtk_status_icon_set_screen ()">
634
656
  <a name="gtk-status-icon-set-screen"></a><h3>gtk_status_icon_set_screen ()</h3>
635
657
  <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
658
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
@@ -657,7 +679,7 @@ then remapped on the new screen.
657
679
  <p class="since">Since 2.12</p>
658
680
  </div>
659
681
  <hr>
660
- <div class="refsect2">
682
+ <div class="refsect2" title="gtk_status_icon_get_screen ()">
661
683
  <a name="gtk-status-icon-get-screen"></a><h3>gtk_status_icon_get_screen ()</h3>
662
684
  <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk/unstable/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
685
  <p>
@@ -673,7 +695,8 @@ Returns the <a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html"
673
695
  </tr>
674
696
  <tr>
675
697
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
676
- <td>a <a href="http://library.gnome.org/devel/gdk/unstable/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>
698
+ <td> a <a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html"><span class="type">GdkScreen</span></a>.
699
+
677
700
  </td>
678
701
  </tr>
679
702
  </tbody>
@@ -681,11 +704,11 @@ Returns the <a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html"
681
704
  <p class="since">Since 2.12</p>
682
705
  </div>
683
706
  <hr>
684
- <div class="refsect2">
707
+ <div class="refsect2" title="gtk_status_icon_set_tooltip ()">
685
708
  <a name="gtk-status-icon-set-tooltip"></a><h3>gtk_status_icon_set_tooltip ()</h3>
686
709
  <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
710
  <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;">
711
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
689
712
  <h3 class="title">Warning</h3>
690
713
  <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
714
  </div>
@@ -702,7 +725,7 @@ Sets the tooltip of the status icon.
702
725
  </tr>
703
726
  <tr>
704
727
  <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>
728
+ <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
729
  </td>
707
730
  </tr>
708
731
  </tbody>
@@ -710,7 +733,7 @@ Sets the tooltip of the status icon.
710
733
  <p class="since">Since 2.10</p>
711
734
  </div>
712
735
  <hr>
713
- <div class="refsect2">
736
+ <div class="refsect2" title="gtk_status_icon_set_tooltip_text ()">
714
737
  <a name="gtk-status-icon-set-tooltip-text"></a><h3>gtk_status_icon_set_tooltip_text ()</h3>
715
738
  <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
739
  <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>
@@ -744,7 +767,7 @@ See also the <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--tooltip-tex
744
767
  <p class="since">Since 2.16</p>
745
768
  </div>
746
769
  <hr>
747
- <div class="refsect2">
770
+ <div class="refsect2" title="gtk_status_icon_get_tooltip_text ()">
748
771
  <a name="gtk-status-icon-get-tooltip-text"></a><h3>gtk_status_icon_get_tooltip_text ()</h3>
749
772
  <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
773
  <p>
@@ -760,15 +783,17 @@ Gets the contents of the tooltip for <em class="parameter"><code>status_icon</co
760
783
  </tr>
761
784
  <tr>
762
785
  <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>
786
+ <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
787
+ 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.
788
+
789
+ </td>
765
790
  </tr>
766
791
  </tbody>
767
792
  </table></div>
768
793
  <p class="since">Since 2.16</p>
769
794
  </div>
770
795
  <hr>
771
- <div class="refsect2">
796
+ <div class="refsect2" title="gtk_status_icon_set_tooltip_markup ()">
772
797
  <a name="gtk-status-icon-set-tooltip-markup"></a><h3>gtk_status_icon_set_tooltip_markup ()</h3>
773
798
  <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
799
  <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>
@@ -794,7 +819,7 @@ See also the <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--tooltip-mar
794
819
  </tr>
795
820
  <tr>
796
821
  <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>
822
+ <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
823
  </td>
799
824
  </tr>
800
825
  </tbody>
@@ -802,7 +827,7 @@ See also the <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--tooltip-mar
802
827
  <p class="since">Since 2.16</p>
803
828
  </div>
804
829
  <hr>
805
- <div class="refsect2">
830
+ <div class="refsect2" title="gtk_status_icon_get_tooltip_markup ()">
806
831
  <a name="gtk-status-icon-get-tooltip-markup"></a><h3>gtk_status_icon_get_tooltip_markup ()</h3>
807
832
  <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
833
  <p>
@@ -818,15 +843,17 @@ Gets the contents of the tooltip for <em class="parameter"><code>status_icon</co
818
843
  </tr>
819
844
  <tr>
820
845
  <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>
846
+ <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
847
+ 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.
848
+
849
+ </td>
823
850
  </tr>
824
851
  </tbody>
825
852
  </table></div>
826
853
  <p class="since">Since 2.16</p>
827
854
  </div>
828
855
  <hr>
829
- <div class="refsect2">
856
+ <div class="refsect2" title="gtk_status_icon_set_has_tooltip ()">
830
857
  <a name="gtk-status-icon-set-has-tooltip"></a><h3>gtk_status_icon_set_has_tooltip ()</h3>
831
858
  <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
859
  <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>
@@ -844,14 +871,15 @@ See <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--has-tooltip" title='
844
871
  </tr>
845
872
  <tr>
846
873
  <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>
874
+ <td>whether or not <em class="parameter"><code>status_icon</code></em> has a tooltip
875
+ </td>
848
876
  </tr>
849
877
  </tbody>
850
878
  </table></div>
851
879
  <p class="since">Since 2.16</p>
852
880
  </div>
853
881
  <hr>
854
- <div class="refsect2">
882
+ <div class="refsect2" title="gtk_status_icon_get_has_tooltip ()">
855
883
  <a name="gtk-status-icon-get-has-tooltip"></a><h3>gtk_status_icon_get_has_tooltip ()</h3>
856
884
  <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
885
  <p>
@@ -868,14 +896,16 @@ See <a class="link" href="GtkStatusIcon.html#GtkStatusIcon--has-tooltip" title='
868
896
  </tr>
869
897
  <tr>
870
898
  <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>
899
+ <td> current value of has-tooltip on <em class="parameter"><code>status_icon</code></em>.
900
+
901
+ </td>
872
902
  </tr>
873
903
  </tbody>
874
904
  </table></div>
875
905
  <p class="since">Since 2.16</p>
876
906
  </div>
877
907
  <hr>
878
- <div class="refsect2">
908
+ <div class="refsect2" title="gtk_status_icon_set_title ()">
879
909
  <a name="gtk-status-icon-set-title"></a><h3>gtk_status_icon_set_title ()</h3>
880
910
  <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
911
  <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>
@@ -895,14 +925,15 @@ readers to render the tray icon.
895
925
  </tr>
896
926
  <tr>
897
927
  <td><p><span class="term"><em class="parameter"><code>title</code></em> :</span></p></td>
898
- <td>the title</td>
928
+ <td>the title
929
+ </td>
899
930
  </tr>
900
931
  </tbody>
901
932
  </table></div>
902
933
  <p class="since">Since 2.18</p>
903
934
  </div>
904
935
  <hr>
905
- <div class="refsect2">
936
+ <div class="refsect2" title="gtk_status_icon_get_title ()">
906
937
  <a name="gtk-status-icon-get-title"></a><h3>gtk_status_icon_get_title ()</h3>
907
938
  <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
939
  <p>
@@ -918,14 +949,16 @@ Gets the title of this tray icon. See <a class="link" href="GtkStatusIcon.html#g
918
949
  </tr>
919
950
  <tr>
920
951
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
921
- <td>the title of the status icon</td>
952
+ <td> the title of the status icon
953
+
954
+ </td>
922
955
  </tr>
923
956
  </tbody>
924
957
  </table></div>
925
958
  <p class="since">Since 2.18</p>
926
959
  </div>
927
960
  <hr>
928
- <div class="refsect2">
961
+ <div class="refsect2" title="gtk_status_icon_set_name ()">
929
962
  <a name="gtk-status-icon-set-name"></a><h3>gtk_status_icon_set_name ()</h3>
930
963
  <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
964
  <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>
@@ -945,14 +978,15 @@ the user.
945
978
  </tr>
946
979
  <tr>
947
980
  <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
948
- <td>the name</td>
981
+ <td>the name
982
+ </td>
949
983
  </tr>
950
984
  </tbody>
951
985
  </table></div>
952
986
  <p class="since">Since 2.20</p>
953
987
  </div>
954
988
  <hr>
955
- <div class="refsect2">
989
+ <div class="refsect2" title="gtk_status_icon_set_visible ()">
956
990
  <a name="gtk-status-icon-set-visible"></a><h3>gtk_status_icon_set_visible ()</h3>
957
991
  <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
992
  <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>
@@ -970,14 +1004,15 @@ Shows or hides a status icon.
970
1004
  <tr>
971
1005
  <td><p><span class="term"><em class="parameter"><code>visible</code></em> :</span></p></td>
972
1006
  <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>
1007
+ <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
1008
+ </td>
974
1009
  </tr>
975
1010
  </tbody>
976
1011
  </table></div>
977
1012
  <p class="since">Since 2.10</p>
978
1013
  </div>
979
1014
  <hr>
980
- <div class="refsect2">
1015
+ <div class="refsect2" title="gtk_status_icon_get_visible ()">
981
1016
  <a name="gtk-status-icon-get-visible"></a><h3>gtk_status_icon_get_visible ()</h3>
982
1017
  <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
1018
  <p>
@@ -996,19 +1031,20 @@ the user can actually see the icon, see also
996
1031
  </tr>
997
1032
  <tr>
998
1033
  <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>
1034
+ <td> <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
1035
+
1036
+ </td>
1001
1037
  </tr>
1002
1038
  </tbody>
1003
1039
  </table></div>
1004
1040
  <p class="since">Since 2.10</p>
1005
1041
  </div>
1006
1042
  <hr>
1007
- <div class="refsect2">
1043
+ <div class="refsect2" title="gtk_status_icon_set_blinking ()">
1008
1044
  <a name="gtk-status-icon-set-blinking"></a><h3>gtk_status_icon_set_blinking ()</h3>
1009
1045
  <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
1046
  <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;">
1047
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1012
1048
  <h3 class="title">Warning</h3>
1013
1049
  <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
1050
  </div>
@@ -1029,17 +1065,18 @@ this setting has no effect.
1029
1065
  <tr>
1030
1066
  <td><p><span class="term"><em class="parameter"><code>blinking</code></em> :</span></p></td>
1031
1067
  <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>
1068
+ <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
1069
+ </td>
1033
1070
  </tr>
1034
1071
  </tbody>
1035
1072
  </table></div>
1036
1073
  <p class="since">Since 2.10</p>
1037
1074
  </div>
1038
1075
  <hr>
1039
- <div class="refsect2">
1076
+ <div class="refsect2" title="gtk_status_icon_get_blinking ()">
1040
1077
  <a name="gtk-status-icon-get-blinking"></a><h3>gtk_status_icon_get_blinking ()</h3>
1041
1078
  <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;">
1079
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1043
1080
  <h3 class="title">Warning</h3>
1044
1081
  <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
1082
  </div>
@@ -1057,15 +1094,16 @@ Returns whether the icon is blinking, see
1057
1094
  </tr>
1058
1095
  <tr>
1059
1096
  <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>
1097
+ <td> <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
1098
+
1099
+ </td>
1062
1100
  </tr>
1063
1101
  </tbody>
1064
1102
  </table></div>
1065
1103
  <p class="since">Since 2.10</p>
1066
1104
  </div>
1067
1105
  <hr>
1068
- <div class="refsect2">
1106
+ <div class="refsect2" title="gtk_status_icon_is_embedded ()">
1069
1107
  <a name="gtk-status-icon-is-embedded"></a><h3>gtk_status_icon_is_embedded ()</h3>
1070
1108
  <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
1109
  <p>
@@ -1082,16 +1120,17 @@ area.
1082
1120
  </tr>
1083
1121
  <tr>
1084
1122
  <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>
1123
+ <td> <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
1124
+ a notification area.
1125
+
1126
+ </td>
1088
1127
  </tr>
1089
1128
  </tbody>
1090
1129
  </table></div>
1091
1130
  <p class="since">Since 2.10</p>
1092
1131
  </div>
1093
1132
  <hr>
1094
- <div class="refsect2">
1133
+ <div class="refsect2" title="gtk_status_icon_position_menu ()">
1095
1134
  <a name="gtk-status-icon-position-menu"></a><h3>gtk_status_icon_position_menu ()</h3>
1096
1135
  <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
1136
  <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>,
@@ -1112,27 +1151,31 @@ to position <em class="parameter"><code>menu</code></em> aligned to the status i
1112
1151
  </tr>
1113
1152
  <tr>
1114
1153
  <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1115
- <td>return location for the x position</td>
1154
+ <td>return location for the x position
1155
+ </td>
1116
1156
  </tr>
1117
1157
  <tr>
1118
1158
  <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1119
- <td>return location for the y position</td>
1159
+ <td>return location for the y position
1160
+ </td>
1120
1161
  </tr>
1121
1162
  <tr>
1122
1163
  <td><p><span class="term"><em class="parameter"><code>push_in</code></em> :</span></p></td>
1123
1164
  <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>
1165
+ aligned with the menu popup position (only useful for GtkOptionMenu).
1166
+ </td>
1125
1167
  </tr>
1126
1168
  <tr>
1127
1169
  <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>
1170
+ <td>the status icon to position the menu on
1171
+ </td>
1129
1172
  </tr>
1130
1173
  </tbody>
1131
1174
  </table></div>
1132
1175
  <p class="since">Since 2.10</p>
1133
1176
  </div>
1134
1177
  <hr>
1135
- <div class="refsect2">
1178
+ <div class="refsect2" title="gtk_status_icon_get_geometry ()">
1136
1179
  <a name="gtk-status-icon-get-geometry"></a><h3>gtk_status_icon_get_geometry ()</h3>
1137
1180
  <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
1181
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html"><span class="type">GdkScreen</span></a> **screen</code></em>,
@@ -1164,36 +1207,37 @@ is embedded in a notification area, see
1164
1207
  </tr>
1165
1208
  <tr>
1166
1209
  <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>
1210
+ <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
1211
+ 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
1212
  </td>
1170
1213
  </tr>
1171
1214
  <tr>
1172
1215
  <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>
1216
+ <td> return location for the area occupied by the status
1217
+ 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
1218
  </td>
1176
1219
  </tr>
1177
1220
  <tr>
1178
1221
  <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>
1222
+ <td> return location for the orientation of the panel
1223
+ 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
1224
+ at the top or bottom of the screen is horizontal, a panel
1225
+ 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
1226
  </td>
1184
1227
  </tr>
1185
1228
  <tr>
1186
1229
  <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>
1230
+ <td> <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
1231
+ been filled in
1232
+
1233
+ </td>
1190
1234
  </tr>
1191
1235
  </tbody>
1192
1236
  </table></div>
1193
1237
  <p class="since">Since 2.10</p>
1194
1238
  </div>
1195
1239
  <hr>
1196
- <div class="refsect2">
1240
+ <div class="refsect2" title="gtk_status_icon_get_x11_window_id ()">
1197
1241
  <a name="gtk-status-icon-get-x11-window-id"></a><h3>gtk_status_icon_get_x11_window_id ()</h3>
1198
1242
  <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
1243
  <p>
@@ -1219,20 +1263,22 @@ as <a class="link" href="GtkStatusIcon.html#gtk-status-icon-position-menu" title
1219
1263
  </tr>
1220
1264
  <tr>
1221
1265
  <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>
1266
+ <td> An 32 bit unsigned integer identifier for the
1267
+ underlying X11 Window
1268
+
1269
+ </td>
1224
1270
  </tr>
1225
1271
  </tbody>
1226
1272
  </table></div>
1227
1273
  <p class="since">Since 2.14</p>
1228
1274
  </div>
1229
1275
  </div>
1230
- <div class="refsect1">
1276
+ <div class="refsect1" title="Property Details">
1231
1277
  <a name="GtkStatusIcon.property-details"></a><h2>Property Details</h2>
1232
- <div class="refsect2">
1278
+ <div class="refsect2" title='The "blinking" property'>
1233
1279
  <a name="GtkStatusIcon--blinking"></a><h3>The <code class="literal">"blinking"</code> property</h3>
1234
1280
  <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;">
1281
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1236
1282
  <h3 class="title">Warning</h3>
1237
1283
  <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
1284
  </div>
@@ -1242,7 +1288,7 @@ Whether or not the status icon is blinking.
1242
1288
  <p>Default value: FALSE</p>
1243
1289
  </div>
1244
1290
  <hr>
1245
- <div class="refsect2">
1291
+ <div class="refsect2" title='The "embedded" property'>
1246
1292
  <a name="GtkStatusIcon--embedded"></a><h3>The <code class="literal">"embedded"</code> property</h3>
1247
1293
  <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
1294
  <p>
@@ -1252,14 +1298,14 @@ Whether or not the status icon is blinking.
1252
1298
  <p class="since">Since 2.12</p>
1253
1299
  </div>
1254
1300
  <hr>
1255
- <div class="refsect2">
1301
+ <div class="refsect2" title='The "file" property'>
1256
1302
  <a name="GtkStatusIcon--file"></a><h3>The <code class="literal">"file"</code> property</h3>
1257
1303
  <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
1304
  <p>Filename to load and display.</p>
1259
1305
  <p>Default value: NULL</p>
1260
1306
  </div>
1261
1307
  <hr>
1262
- <div class="refsect2">
1308
+ <div class="refsect2" title='The "gicon" property'>
1263
1309
  <a name="GtkStatusIcon--gicon"></a><h3>The <code class="literal">"gicon"</code> property</h3>
1264
1310
  <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
1311
  <p>
@@ -1269,7 +1315,7 @@ the image will be updated automatically if the theme changes.
1269
1315
  <p class="since">Since 2.14</p>
1270
1316
  </div>
1271
1317
  <hr>
1272
- <div class="refsect2">
1318
+ <div class="refsect2" title='The "has-tooltip" property'>
1273
1319
  <a name="GtkStatusIcon--has-tooltip"></a><h3>The <code class="literal">"has-tooltip"</code> property</h3>
1274
1320
  <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
1321
  <p>
@@ -1293,14 +1339,14 @@ For plain text tooltips, use <a class="link" href="GtkStatusIcon.html#GtkStatusI
1293
1339
  <p class="since">Since 2.16</p>
1294
1340
  </div>
1295
1341
  <hr>
1296
- <div class="refsect2">
1342
+ <div class="refsect2" title='The "icon-name" property'>
1297
1343
  <a name="GtkStatusIcon--icon-name"></a><h3>The <code class="literal">"icon-name"</code> property</h3>
1298
1344
  <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
1345
  <p>The name of the icon from the icon theme.</p>
1300
1346
  <p>Default value: NULL</p>
1301
1347
  </div>
1302
1348
  <hr>
1303
- <div class="refsect2">
1349
+ <div class="refsect2" title='The "orientation" property'>
1304
1350
  <a name="GtkStatusIcon--orientation"></a><h3>The <code class="literal">"orientation"</code> property</h3>
1305
1351
  <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
1352
  <p>
@@ -1311,19 +1357,19 @@ is embedded.
1311
1357
  <p class="since">Since 2.12</p>
1312
1358
  </div>
1313
1359
  <hr>
1314
- <div class="refsect2">
1360
+ <div class="refsect2" title='The "pixbuf" property'>
1315
1361
  <a name="GtkStatusIcon--pixbuf"></a><h3>The <code class="literal">"pixbuf"</code> property</h3>
1316
1362
  <pre class="programlisting"> "pixbuf" <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>* : Read / Write</pre>
1317
1363
  <p>A GdkPixbuf to display.</p>
1318
1364
  </div>
1319
1365
  <hr>
1320
- <div class="refsect2">
1366
+ <div class="refsect2" title='The "screen" property'>
1321
1367
  <a name="GtkStatusIcon--screen"></a><h3>The <code class="literal">"screen"</code> property</h3>
1322
1368
  <pre class="programlisting"> "screen" <a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html"><span class="type">GdkScreen</span></a>* : Read / Write</pre>
1323
1369
  <p>The screen where this status icon will be displayed.</p>
1324
1370
  </div>
1325
1371
  <hr>
1326
- <div class="refsect2">
1372
+ <div class="refsect2" title='The "size" property'>
1327
1373
  <a name="GtkStatusIcon--size"></a><h3>The <code class="literal">"size"</code> property</h3>
1328
1374
  <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
1375
  <p>The size of the icon.</p>
@@ -1331,21 +1377,21 @@ is embedded.
1331
1377
  <p>Default value: 0</p>
1332
1378
  </div>
1333
1379
  <hr>
1334
- <div class="refsect2">
1380
+ <div class="refsect2" title='The "stock" property'>
1335
1381
  <a name="GtkStatusIcon--stock"></a><h3>The <code class="literal">"stock"</code> property</h3>
1336
1382
  <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
1383
  <p>Stock ID for a stock image to display.</p>
1338
1384
  <p>Default value: NULL</p>
1339
1385
  </div>
1340
1386
  <hr>
1341
- <div class="refsect2">
1387
+ <div class="refsect2" title='The "storage-type" property'>
1342
1388
  <a name="GtkStatusIcon--storage-type"></a><h3>The <code class="literal">"storage-type"</code> property</h3>
1343
1389
  <pre class="programlisting"> "storage-type" <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="type">GtkImageType</span></a> : Read</pre>
1344
1390
  <p>The representation being used for image data.</p>
1345
1391
  <p>Default value: GTK_IMAGE_EMPTY</p>
1346
1392
  </div>
1347
1393
  <hr>
1348
- <div class="refsect2">
1394
+ <div class="refsect2" title='The "title" property'>
1349
1395
  <a name="GtkStatusIcon--title"></a><h3>The <code class="literal">"title"</code> property</h3>
1350
1396
  <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
1397
  <p>
@@ -1357,7 +1403,7 @@ like screen readers to render the tray icon.
1357
1403
  <p class="since">Since 2.18</p>
1358
1404
  </div>
1359
1405
  <hr>
1360
- <div class="refsect2">
1406
+ <div class="refsect2" title='The "tooltip-markup" property'>
1361
1407
  <a name="GtkStatusIcon--tooltip-markup"></a><h3>The <code class="literal">"tooltip-markup"</code> property</h3>
1362
1408
  <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
1409
  <p>
@@ -1379,7 +1425,7 @@ On some platforms, embedded markup will be ignored.
1379
1425
  <p class="since">Since 2.16</p>
1380
1426
  </div>
1381
1427
  <hr>
1382
- <div class="refsect2">
1428
+ <div class="refsect2" title='The "tooltip-text" property'>
1383
1429
  <a name="GtkStatusIcon--tooltip-text"></a><h3>The <code class="literal">"tooltip-text"</code> property</h3>
1384
1430
  <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
1431
  <p>
@@ -1404,19 +1450,19 @@ that they allow on status icons, e.g. Windows only shows the first
1404
1450
  <p class="since">Since 2.16</p>
1405
1451
  </div>
1406
1452
  <hr>
1407
- <div class="refsect2">
1453
+ <div class="refsect2" title='The "visible" property'>
1408
1454
  <a name="GtkStatusIcon--visible"></a><h3>The <code class="literal">"visible"</code> property</h3>
1409
1455
  <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
1456
  <p>Whether or not the status icon is visible.</p>
1411
1457
  <p>Default value: TRUE</p>
1412
1458
  </div>
1413
1459
  </div>
1414
- <div class="refsect1">
1460
+ <div class="refsect1" title="Signal Details">
1415
1461
  <a name="GtkStatusIcon.signal-details"></a><h2>Signal Details</h2>
1416
- <div class="refsect2">
1462
+ <div class="refsect2" title='The "activate" signal'>
1417
1463
  <a name="GtkStatusIcon-activate"></a><h3>The <code class="literal">"activate"</code> signal</h3>
1418
1464
  <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>
1465
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First / Action</pre>
1420
1466
  <p>
1421
1467
  Gets emitted when the user activates the status icon.
1422
1468
  If and how status icons can activated is platform-dependent.
@@ -1430,7 +1476,8 @@ be used by applications and should be wrapped by language bindings.
1430
1476
  <tbody>
1431
1477
  <tr>
1432
1478
  <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>
1479
+ <td>the object which received the signal
1480
+ </td>
1434
1481
  </tr>
1435
1482
  <tr>
1436
1483
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1441,11 +1488,11 @@ be used by applications and should be wrapped by language bindings.
1441
1488
  <p class="since">Since 2.10</p>
1442
1489
  </div>
1443
1490
  <hr>
1444
- <div class="refsect2">
1491
+ <div class="refsect2" title='The "button-press-event" signal'>
1445
1492
  <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="http://library.gnome.org/devel/gdk/unstable/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>
1493
+ <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,
1494
+ <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Event-Structures.html#GdkEventButton"><span class="type">GdkEventButton</span></a> *event,
1495
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
1449
1496
  <p>
1450
1497
  The ::button-press-event signal will be emitted when a button
1451
1498
  (typically from a mouse) is pressed.
@@ -1459,11 +1506,13 @@ and ::popup-menu signals in preference.
1459
1506
  <tbody>
1460
1507
  <tr>
1461
1508
  <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>
1509
+ <td>the object which received the signal
1510
+ </td>
1463
1511
  </tr>
1464
1512
  <tr>
1465
1513
  <td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
1466
- <td>the <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Event-Structures.html#GdkEventButton"><span class="type">GdkEventButton</span></a> which triggered this signal</td>
1514
+ <td>the <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Event-Structures.html#GdkEventButton"><span class="type">GdkEventButton</span></a> which triggered this signal
1515
+ </td>
1467
1516
  </tr>
1468
1517
  <tr>
1469
1518
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1471,20 +1520,21 @@ and ::popup-menu signals in preference.
1471
1520
  </tr>
1472
1521
  <tr>
1473
1522
  <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>
1523
+ <td> <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
1524
+ 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.
1525
+
1526
+ </td>
1477
1527
  </tr>
1478
1528
  </tbody>
1479
1529
  </table></div>
1480
1530
  <p class="since">Since 2.14</p>
1481
1531
  </div>
1482
1532
  <hr>
1483
- <div class="refsect2">
1533
+ <div class="refsect2" title='The "button-release-event" signal'>
1484
1534
  <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="http://library.gnome.org/devel/gdk/unstable/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>
1535
+ <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,
1536
+ <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Event-Structures.html#GdkEventButton"><span class="type">GdkEventButton</span></a> *event,
1537
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
1488
1538
  <p>
1489
1539
  The ::button-release-event signal will be emitted when a button
1490
1540
  (typically from a mouse) is released.
@@ -1498,11 +1548,13 @@ and ::popup-menu signals in preference.
1498
1548
  <tbody>
1499
1549
  <tr>
1500
1550
  <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>
1551
+ <td>the object which received the signal
1552
+ </td>
1502
1553
  </tr>
1503
1554
  <tr>
1504
1555
  <td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
1505
- <td>the <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Event-Structures.html#GdkEventButton"><span class="type">GdkEventButton</span></a> which triggered this signal</td>
1556
+ <td>the <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Event-Structures.html#GdkEventButton"><span class="type">GdkEventButton</span></a> which triggered this signal
1557
+ </td>
1506
1558
  </tr>
1507
1559
  <tr>
1508
1560
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1510,21 +1562,22 @@ and ::popup-menu signals in preference.
1510
1562
  </tr>
1511
1563
  <tr>
1512
1564
  <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>
1565
+ <td> <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
1566
+ 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.
1567
+
1568
+ </td>
1516
1569
  </tr>
1517
1570
  </tbody>
1518
1571
  </table></div>
1519
1572
  <p class="since">Since 2.14</p>
1520
1573
  </div>
1521
1574
  <hr>
1522
- <div class="refsect2">
1575
+ <div class="refsect2" title='The "popup-menu" signal'>
1523
1576
  <a name="GtkStatusIcon-popup-menu"></a><h3>The <code class="literal">"popup-menu"</code> signal</h3>
1524
1577
  <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
1578
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> button,
1526
1579
  <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>
1580
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First / Action</pre>
1528
1581
  <p>
1529
1582
  Gets emitted when the user brings up the context menu
1530
1583
  of the status icon. Whether status icons can have context
@@ -1543,17 +1596,20 @@ be used by applications and should be wrapped by language bindings.
1543
1596
  <tbody>
1544
1597
  <tr>
1545
1598
  <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>
1599
+ <td>the object which received the signal
1600
+ </td>
1547
1601
  </tr>
1548
1602
  <tr>
1549
1603
  <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>
1604
+ <td>the button that was pressed, or 0 if the
1605
+ signal is not emitted in response to a button press event
1606
+ </td>
1552
1607
  </tr>
1553
1608
  <tr>
1554
1609
  <td><p><span class="term"><em class="parameter"><code>activate_time</code></em> :</span></p></td>
1555
1610
  <td>the timestamp of the event that
1556
- triggered the signal emission</td>
1611
+ triggered the signal emission
1612
+ </td>
1557
1613
  </tr>
1558
1614
  <tr>
1559
1615
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1564,14 +1620,14 @@ triggered the signal emission</td>
1564
1620
  <p class="since">Since 2.10</p>
1565
1621
  </div>
1566
1622
  <hr>
1567
- <div class="refsect2">
1623
+ <div class="refsect2" title='The "query-tooltip" signal'>
1568
1624
  <a name="GtkStatusIcon-query-tooltip"></a><h3>The <code class="literal">"query-tooltip"</code> signal</h3>
1569
1625
  <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
1626
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x,
1571
1627
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y,
1572
1628
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> keyboard_mode,
1573
1629
  <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>
1630
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
1575
1631
  <p>
1576
1632
  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
1633
  cursor hovering above <em class="parameter"><code>status_icon</code></em>; or emitted when <em class="parameter"><code>status_icon</code></em> got
@@ -1597,24 +1653,26 @@ For plain text tooltips, use <a class="link" href="GtkStatusIcon.html#GtkStatusI
1597
1653
  <tbody>
1598
1654
  <tr>
1599
1655
  <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>
1656
+ <td>the object which received the signal
1657
+ </td>
1601
1658
  </tr>
1602
1659
  <tr>
1603
1660
  <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1604
1661
  <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>
1662
+ emitted, relative to <em class="parameter"><code>status_icon</code></em>
1606
1663
  </td>
1607
1664
  </tr>
1608
1665
  <tr>
1609
1666
  <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1610
1667
  <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>
1668
+ emitted, relative to <em class="parameter"><code>status_icon</code></em>
1612
1669
  </td>
1613
1670
  </tr>
1614
1671
  <tr>
1615
1672
  <td><p><span class="term"><em class="parameter"><code>keyboard_mode</code></em> :</span></p></td>
1616
1673
  <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>
1674
+ <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
1675
+ </td>
1618
1676
  </tr>
1619
1677
  <tr>
1620
1678
  <td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
@@ -1627,19 +1685,20 @@ emitted, relative to <em class="parameter"><code>status_icon</code></em>
1627
1685
  </tr>
1628
1686
  <tr>
1629
1687
  <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>
1688
+ <td> <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.
1689
+
1690
+ </td>
1632
1691
  </tr>
1633
1692
  </tbody>
1634
1693
  </table></div>
1635
1694
  <p class="since">Since 2.16</p>
1636
1695
  </div>
1637
1696
  <hr>
1638
- <div class="refsect2">
1697
+ <div class="refsect2" title='The "scroll-event" signal'>
1639
1698
  <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="http://library.gnome.org/devel/gdk/unstable/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>
1699
+ <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,
1700
+ <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Event-Structures.html#GdkEventScroll"><span class="type">GdkEventScroll</span></a> *event,
1701
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
1643
1702
  <p>
1644
1703
  The ::scroll-event signal is emitted when a button in the 4 to 7
1645
1704
  range is pressed. Wheel mice are usually configured to generate
@@ -1653,11 +1712,13 @@ Whether this event is emitted is platform-dependent.
1653
1712
  <tbody>
1654
1713
  <tr>
1655
1714
  <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>
1715
+ <td>the object which received the signal.
1716
+ </td>
1657
1717
  </tr>
1658
1718
  <tr>
1659
1719
  <td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
1660
- <td>the <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Event-Structures.html#GdkEventScroll"><span class="type">GdkEventScroll</span></a> which triggered this signal</td>
1720
+ <td>the <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Event-Structures.html#GdkEventScroll"><span class="type">GdkEventScroll</span></a> which triggered this signal
1721
+ </td>
1661
1722
  </tr>
1662
1723
  <tr>
1663
1724
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1665,19 +1726,19 @@ Whether this event is emitted is platform-dependent.
1665
1726
  </tr>
1666
1727
  <tr>
1667
1728
  <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>
1729
+ <td> <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.
1730
+ <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.
1731
+ </td>
1671
1732
  </tr>
1672
1733
  </tbody>
1673
1734
  </table></div>
1674
1735
  </div>
1675
1736
  <hr>
1676
- <div class="refsect2">
1737
+ <div class="refsect2" title='The "size-changed" signal'>
1677
1738
  <a name="GtkStatusIcon-size-changed"></a><h3>The <code class="literal">"size-changed"</code> signal</h3>
1678
1739
  <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
1740
  <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>
1741
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
1681
1742
  <p>
1682
1743
  Gets emitted when the size available for the image
1683
1744
  changes, e.g. because the notification area got resized.
@@ -1687,11 +1748,13 @@ changes, e.g. because the notification area got resized.
1687
1748
  <tbody>
1688
1749
  <tr>
1689
1750
  <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>
1751
+ <td>the object which received the signal
1752
+ </td>
1691
1753
  </tr>
1692
1754
  <tr>
1693
1755
  <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
1694
- <td>the new size</td>
1756
+ <td>the new size
1757
+ </td>
1695
1758
  </tr>
1696
1759
  <tr>
1697
1760
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1699,9 +1762,10 @@ changes, e.g. because the notification area got resized.
1699
1762
  </tr>
1700
1763
  <tr>
1701
1764
  <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>
1765
+ <td> <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
1766
+ size. Otherwise, GTK+ will scale the icon as necessary.
1767
+
1768
+ </td>
1705
1769
  </tr>
1706
1770
  </tbody>
1707
1771
  </table></div>
@@ -1711,6 +1775,6 @@ size. Otherwise, GTK+ will scale the icon as necessary.</td>
1711
1775
  </div>
1712
1776
  <div class="footer">
1713
1777
  <hr>
1714
- Generated by GTK-Doc V1.16.1</div>
1778
+ Generated by GTK-Doc V1.15</div>
1715
1779
  </body>
1716
1780
  </html>