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="MenusAndCombos.html" title="Menus, Combo Box, Toolbar">
9
9
  <link rel="prev" href="GtkComboBoxEntry.html" title="GtkComboBoxEntry">
10
10
  <link rel="next" href="GtkMenuBar.html" title="GtkMenuBar">
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">
@@ -38,7 +38,7 @@
38
38
  <a href="#GtkMenu.signals" class="shortcut">Signals</a>
39
39
  </td></tr>
40
40
  </table>
41
- <div class="refentry">
41
+ <div class="refentry" title="GtkMenu">
42
42
  <a name="GtkMenu"></a><div class="titlepage"></div>
43
43
  <div class="refnamediv"><table width="100%"><tr>
44
44
  <td valign="top">
@@ -47,13 +47,13 @@
47
47
  </td>
48
48
  <td valign="top" align="right"></td>
49
49
  </tr></table></div>
50
- <div class="refsynopsisdiv">
50
+ <div class="refsynopsisdiv" title="Synopsis">
51
51
  <a name="GtkMenu.synopsis"></a><h2>Synopsis</h2>
52
52
  <pre class="synopsis">
53
53
  #include &lt;gtk/gtk.h&gt;
54
54
 
55
- struct <a class="link" href="GtkMenu.html#GtkMenu-struct" title="struct GtkMenu">GtkMenu</a>;
56
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkMenu.html#gtk-menu-new" title="gtk_menu_new ()">gtk_menu_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
55
+ <a class="link" href="GtkMenu.html#GtkMenu-struct" title="GtkMenu">GtkMenu</a>;
56
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkMenu.html#gtk-menu-new" title="gtk_menu_new ()">gtk_menu_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
57
57
  <span class="returnvalue">void</span> <a class="link" href="GtkMenu.html#gtk-menu-set-screen" title="gtk_menu_set_screen ()">gtk_menu_set_screen</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
58
58
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);
59
59
  #define <a class="link" href="GtkMenu.html#gtk-menu-append" title="gtk_menu_append()">gtk_menu_append</a> (menu,
@@ -81,10 +81,10 @@ struct <a class="link" href="GtkMenu.html#GtkMenu-struct" title="st
81
81
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> activate_time</code></em>);
82
82
  <span class="returnvalue">void</span> <a class="link" href="GtkMenu.html#gtk-menu-set-accel-group" title="gtk_menu_set_accel_group ()">gtk_menu_set_accel_group</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
83
83
  <em class="parameter"><code><a class="link" href="gtk-Keyboard-Accelerators.html#GtkAccelGroup"><span class="type">GtkAccelGroup</span></a> *accel_group</code></em>);
84
- <a class="link" href="gtk-Keyboard-Accelerators.html#GtkAccelGroup"><span class="returnvalue">GtkAccelGroup</span></a> * <a class="link" href="GtkMenu.html#gtk-menu-get-accel-group" title="gtk_menu_get_accel_group ()">gtk_menu_get_accel_group</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);
84
+ <a class="link" href="gtk-Keyboard-Accelerators.html#GtkAccelGroup"><span class="returnvalue">GtkAccelGroup</span></a>* <a class="link" href="GtkMenu.html#gtk-menu-get-accel-group" title="gtk_menu_get_accel_group ()">gtk_menu_get_accel_group</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);
85
85
  <span class="returnvalue">void</span> <a class="link" href="GtkMenu.html#gtk-menu-set-accel-path" title="gtk_menu_set_accel_path ()">gtk_menu_set_accel_path</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
86
86
  <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> *accel_path</code></em>);
87
- const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkMenu.html#gtk-menu-get-accel-path" title="gtk_menu_get_accel_path ()">gtk_menu_get_accel_path</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);
87
+ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>* <a class="link" href="GtkMenu.html#gtk-menu-get-accel-path" title="gtk_menu_get_accel_path ()">gtk_menu_get_accel_path</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);
88
88
  <span class="returnvalue">void</span> <a class="link" href="GtkMenu.html#gtk-menu-set-title" title="gtk_menu_set_title ()">gtk_menu_set_title</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
89
89
  <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>);
90
90
  const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkMenu.html#gtk-menu-get-title" title="gtk_menu_get_title ()">gtk_menu_get_title</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);
@@ -98,7 +98,7 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
98
98
 
99
99
  <span class="returnvalue">void</span> <a class="link" href="GtkMenu.html#gtk-menu-popdown" title="gtk_menu_popdown ()">gtk_menu_popdown</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);
100
100
  <span class="returnvalue">void</span> <a class="link" href="GtkMenu.html#gtk-menu-reposition" title="gtk_menu_reposition ()">gtk_menu_reposition</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);
101
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkMenu.html#gtk-menu-get-active" title="gtk_menu_get_active ()">gtk_menu_get_active</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);
101
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkMenu.html#gtk-menu-get-active" title="gtk_menu_get_active ()">gtk_menu_get_active</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);
102
102
  <span class="returnvalue">void</span> <a class="link" href="GtkMenu.html#gtk-menu-set-active" title="gtk_menu_set_active ()">gtk_menu_set_active</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
103
103
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> index_</code></em>);
104
104
  <span class="returnvalue">void</span> <a class="link" href="GtkMenu.html#gtk-menu-set-tearoff-state" title="gtk_menu_set_tearoff_state ()">gtk_menu_set_tearoff_state</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
@@ -107,8 +107,8 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
107
107
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *attach_widget</code></em>,
108
108
  <em class="parameter"><code><a class="link" href="GtkMenu.html#GtkMenuDetachFunc" title="GtkMenuDetachFunc ()"><span class="type">GtkMenuDetachFunc</span></a> detacher</code></em>);
109
109
  <span class="returnvalue">void</span> <a class="link" href="GtkMenu.html#gtk-menu-detach" title="gtk_menu_detach ()">gtk_menu_detach</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);
110
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkMenu.html#gtk-menu-get-attach-widget" title="gtk_menu_get_attach_widget ()">gtk_menu_get_attach_widget</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);
111
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * <a class="link" href="GtkMenu.html#gtk-menu-get-for-attach-widget" title="gtk_menu_get_for_attach_widget ()">gtk_menu_get_for_attach_widget</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
110
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkMenu.html#gtk-menu-get-attach-widget" title="gtk_menu_get_attach_widget ()">gtk_menu_get_attach_widget</a> (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);
111
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a>* <a class="link" href="GtkMenu.html#gtk-menu-get-for-attach-widget" title="gtk_menu_get_for_attach_widget ()">gtk_menu_get_for_attach_widget</a> (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
112
112
  <span class="returnvalue">void</span> (<a class="link" href="GtkMenu.html#GtkMenuPositionFunc" title="GtkMenuPositionFunc ()">*GtkMenuPositionFunc</a>) (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
113
113
  <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>,
114
114
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>,
@@ -118,7 +118,7 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
118
118
  <em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);
119
119
  </pre>
120
120
  </div>
121
- <div class="refsect1">
121
+ <div class="refsect1" title="Object Hierarchy">
122
122
  <a name="GtkMenu.object-hierarchy"></a><h2>Object Hierarchy</h2>
123
123
  <pre class="synopsis">
124
124
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -131,13 +131,13 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
131
131
  +----<a class="link" href="GtkRecentChooserMenu.html" title="GtkRecentChooserMenu">GtkRecentChooserMenu</a>
132
132
  </pre>
133
133
  </div>
134
- <div class="refsect1">
134
+ <div class="refsect1" title="Implemented Interfaces">
135
135
  <a name="GtkMenu.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
136
136
  <p>
137
137
  GtkMenu implements
138
138
  AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
139
139
  </div>
140
- <div class="refsect1">
140
+ <div class="refsect1" title="Properties">
141
141
  <a name="GtkMenu.properties"></a><h2>Properties</h2>
142
142
  <pre class="synopsis">
143
143
  "<a class="link" href="GtkMenu.html#GtkMenu--accel-group" title='The "accel-group" property'>accel-group</a>" <a class="link" href="gtk-Keyboard-Accelerators.html#GtkAccelGroup"><span class="type">GtkAccelGroup</span></a>* : Read / Write
@@ -150,7 +150,7 @@ GtkMenu implements
150
150
  "<a class="link" href="GtkMenu.html#GtkMenu--tearoff-title" title='The "tearoff-title" property'>tearoff-title</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
151
151
  </pre>
152
152
  </div>
153
- <div class="refsect1">
153
+ <div class="refsect1" title="Child Properties">
154
154
  <a name="GtkMenu.child-properties"></a><h2>Child Properties</h2>
155
155
  <pre class="synopsis">
156
156
  "<a class="link" href="GtkMenu.html#GtkMenu--c-bottom-attach" title='The "bottom-attach" child property'>bottom-attach</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
@@ -159,7 +159,7 @@ GtkMenu implements
159
159
  "<a class="link" href="GtkMenu.html#GtkMenu--c-top-attach" title='The "top-attach" child property'>top-attach</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
160
160
  </pre>
161
161
  </div>
162
- <div class="refsect1">
162
+ <div class="refsect1" title="Style Properties">
163
163
  <a name="GtkMenu.style-properties"></a><h2>Style Properties</h2>
164
164
  <pre class="synopsis">
165
165
  "<a class="link" href="GtkMenu.html#GtkMenu--s-arrow-placement" title='The "arrow-placement" style property'>arrow-placement</a>" <a class="link" href="gtk-Standard-Enumerations.html#GtkArrowPlacement" title="enum GtkArrowPlacement"><span class="type">GtkArrowPlacement</span></a> : Read
@@ -171,13 +171,13 @@ GtkMenu implements
171
171
  "<a class="link" href="GtkMenu.html#GtkMenu--s-vertical-padding" title='The "vertical-padding" style property'>vertical-padding</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read
172
172
  </pre>
173
173
  </div>
174
- <div class="refsect1">
174
+ <div class="refsect1" title="Signals">
175
175
  <a name="GtkMenu.signals"></a><h2>Signals</h2>
176
176
  <pre class="synopsis">
177
- "<a class="link" href="GtkMenu.html#GtkMenu-move-scroll" title='The "move-scroll" signal'>move-scroll</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
177
+ "<a class="link" href="GtkMenu.html#GtkMenu-move-scroll" title='The "move-scroll" signal'>move-scroll</a>" : Run Last / Action
178
178
  </pre>
179
179
  </div>
180
- <div class="refsect1">
180
+ <div class="refsect1" title="Description">
181
181
  <a name="GtkMenu.description"></a><h2>Description</h2>
182
182
  <p>
183
183
  A <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> is a <a class="link" href="GtkMenuShell.html" title="GtkMenuShell"><span class="type">GtkMenuShell</span></a> that implements a drop down menu consisting of
@@ -199,7 +199,7 @@ Applications can display a <a class="link" href="GtkMenu.html" title="GtkMenu"><
199
199
  can pop up a menu when the 3rd mouse button is pressed.
200
200
  </p>
201
201
  <div class="example">
202
- <a name="id969218"></a><p class="title"><b>Example 31. Connecting the popup signal handler.</b></p>
202
+ <a name="id965632"></a><p class="title"><b>Example 29. Connecting the popup signal handler.</b></p>
203
203
  <div class="example-contents">
204
204
  <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
205
205
  <tbody>
@@ -217,7 +217,7 @@ can pop up a menu when the 3rd mouse button is pressed.
217
217
 
218
218
  </div>
219
219
  <br class="example-break"><div class="example">
220
- <a name="id969233"></a><p class="title"><b>Example 32. Signal handler which displays a popup menu.</b></p>
220
+ <a name="id965648"></a><p class="title"><b>Example 30. Signal handler which displays a popup menu.</b></p>
221
221
  <div class="example-contents">
222
222
  <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
223
223
  <tbody>
@@ -278,20 +278,20 @@ can pop up a menu when the 3rd mouse button is pressed.
278
278
  </div>
279
279
  <br class="example-break">
280
280
  </div>
281
- <div class="refsect1">
281
+ <div class="refsect1" title="Details">
282
282
  <a name="GtkMenu.details"></a><h2>Details</h2>
283
- <div class="refsect2">
284
- <a name="GtkMenu-struct"></a><h3>struct GtkMenu</h3>
285
- <pre class="programlisting">struct GtkMenu;</pre>
283
+ <div class="refsect2" title="GtkMenu">
284
+ <a name="GtkMenu-struct"></a><h3>GtkMenu</h3>
285
+ <pre class="programlisting">typedef struct _GtkMenu GtkMenu;</pre>
286
286
  <p>
287
287
  The <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> struct contains private data only, and
288
288
  should be accessed using the functions below.
289
289
  </p>
290
290
  </div>
291
291
  <hr>
292
- <div class="refsect2">
292
+ <div class="refsect2" title="gtk_menu_new ()">
293
293
  <a name="gtk-menu-new"></a><h3>gtk_menu_new ()</h3>
294
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_menu_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
294
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_menu_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
295
295
  <p>
296
296
  Creates a new <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
297
297
  </p>
@@ -299,12 +299,13 @@ Creates a new <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="t
299
299
  <col align="left" valign="top">
300
300
  <tbody><tr>
301
301
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
302
- <td>a new <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.</td>
302
+ <td>a new <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
303
+ </td>
303
304
  </tr></tbody>
304
305
  </table></div>
305
306
  </div>
306
307
  <hr>
307
- <div class="refsect2">
308
+ <div class="refsect2" title="gtk_menu_set_screen ()">
308
309
  <a name="gtk-menu-set-screen"></a><h3>gtk_menu_set_screen ()</h3>
309
310
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_menu_set_screen (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
310
311
  <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>
@@ -316,12 +317,13 @@ Sets the <a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html"><s
316
317
  <tbody>
317
318
  <tr>
318
319
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
319
- <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.</td>
320
+ <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
321
+ </td>
320
322
  </tr>
321
323
  <tr>
322
324
  <td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
323
- <td>a <a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html"><span class="type">GdkScreen</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the screen should be
324
- determined by the widget the menu is attached to. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
325
+ <td> a <a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html"><span class="type">GdkScreen</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the screen should be
326
+ determined by the widget the menu is attached to. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
325
327
  </td>
326
328
  </tr>
327
329
  </tbody>
@@ -329,11 +331,11 @@ determined by the widget the menu is attached to. <span class="annotation">[<acr
329
331
  <p class="since">Since 2.2</p>
330
332
  </div>
331
333
  <hr>
332
- <div class="refsect2">
334
+ <div class="refsect2" title="gtk_menu_append()">
333
335
  <a name="gtk-menu-append"></a><h3>gtk_menu_append()</h3>
334
336
  <pre class="programlisting">#define gtk_menu_append(menu,child) gtk_menu_shell_append ((GtkMenuShell *)(menu),(child))
335
337
  </pre>
336
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
338
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
337
339
  <h3 class="title">Warning</h3>
338
340
  <p><code class="literal">gtk_menu_append</code> is deprecated and should not be used in newly-written code. Use <a class="link" href="GtkMenuShell.html#gtk-menu-shell-append" title="gtk_menu_shell_append ()"><code class="function">gtk_menu_shell_append()</code></a> instead.</p>
339
341
  </div>
@@ -345,21 +347,23 @@ Adds a new <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span cla
345
347
  <tbody>
346
348
  <tr>
347
349
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
348
- <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.</td>
350
+ <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
351
+ </td>
349
352
  </tr>
350
353
  <tr>
351
354
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
352
- <td>The <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span class="type">GtkMenuItem</span></a> to add.</td>
355
+ <td>The <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span class="type">GtkMenuItem</span></a> to add.
356
+ </td>
353
357
  </tr>
354
358
  </tbody>
355
359
  </table></div>
356
360
  </div>
357
361
  <hr>
358
- <div class="refsect2">
362
+ <div class="refsect2" title="gtk_menu_prepend()">
359
363
  <a name="gtk-menu-prepend"></a><h3>gtk_menu_prepend()</h3>
360
364
  <pre class="programlisting">#define gtk_menu_prepend(menu,child) gtk_menu_shell_prepend ((GtkMenuShell *)(menu),(child))
361
365
  </pre>
362
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
366
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
363
367
  <h3 class="title">Warning</h3>
364
368
  <p><code class="literal">gtk_menu_prepend</code> is deprecated and should not be used in newly-written code. Use <a class="link" href="GtkMenuShell.html#gtk-menu-shell-prepend" title="gtk_menu_shell_prepend ()"><code class="function">gtk_menu_shell_prepend()</code></a> instead.</p>
365
369
  </div>
@@ -371,21 +375,23 @@ Adds a new <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span cla
371
375
  <tbody>
372
376
  <tr>
373
377
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
374
- <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.</td>
378
+ <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
379
+ </td>
375
380
  </tr>
376
381
  <tr>
377
382
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
378
- <td>The <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span class="type">GtkMenuItem</span></a> to add.</td>
383
+ <td>The <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span class="type">GtkMenuItem</span></a> to add.
384
+ </td>
379
385
  </tr>
380
386
  </tbody>
381
387
  </table></div>
382
388
  </div>
383
389
  <hr>
384
- <div class="refsect2">
390
+ <div class="refsect2" title="gtk_menu_insert()">
385
391
  <a name="gtk-menu-insert"></a><h3>gtk_menu_insert()</h3>
386
392
  <pre class="programlisting">#define gtk_menu_insert(menu,child,pos) gtk_menu_shell_insert ((GtkMenuShell *)(menu),(child),(pos))
387
393
  </pre>
388
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
394
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
389
395
  <h3 class="title">Warning</h3>
390
396
  <p><code class="literal">gtk_menu_insert</code> is deprecated and should not be used in newly-written code. Use <a class="link" href="GtkMenuShell.html#gtk-menu-shell-insert" title="gtk_menu_shell_insert ()"><code class="function">gtk_menu_shell_insert()</code></a> instead.</p>
391
397
  </div>
@@ -398,22 +404,25 @@ indicated by <em class="parameter"><code>position</code></em>.
398
404
  <tbody>
399
405
  <tr>
400
406
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
401
- <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.</td>
407
+ <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
408
+ </td>
402
409
  </tr>
403
410
  <tr>
404
411
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
405
- <td>The <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span class="type">GtkMenuItem</span></a> to add.</td>
412
+ <td>The <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span class="type">GtkMenuItem</span></a> to add.
413
+ </td>
406
414
  </tr>
407
415
  <tr>
408
416
  <td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
409
417
  <td>The position in the item list where <em class="parameter"><code>child</code></em> is added.
410
- Positions are numbered from 0 to n-1.</td>
418
+ Positions are numbered from 0 to n-1.
419
+ </td>
411
420
  </tr>
412
421
  </tbody>
413
422
  </table></div>
414
423
  </div>
415
424
  <hr>
416
- <div class="refsect2">
425
+ <div class="refsect2" title="gtk_menu_reorder_child ()">
417
426
  <a name="gtk-menu-reorder-child"></a><h3>gtk_menu_reorder_child ()</h3>
418
427
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_menu_reorder_child (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
419
428
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
@@ -426,22 +435,25 @@ Moves a <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span class=
426
435
  <tbody>
427
436
  <tr>
428
437
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
429
- <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.</td>
438
+ <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
439
+ </td>
430
440
  </tr>
431
441
  <tr>
432
442
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
433
- <td>the <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span class="type">GtkMenuItem</span></a> to move.</td>
443
+ <td>the <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span class="type">GtkMenuItem</span></a> to move.
444
+ </td>
434
445
  </tr>
435
446
  <tr>
436
447
  <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
437
- <td>the new position to place <em class="parameter"><code>child</code></em>. Positions are numbered from
438
- 0 to n-1.</td>
448
+ <td>the new position to place <em class="parameter"><code>child</code></em>. Positions are numbered from
449
+ 0 to n-1.
450
+ </td>
439
451
  </tr>
440
452
  </tbody>
441
453
  </table></div>
442
454
  </div>
443
455
  <hr>
444
- <div class="refsect2">
456
+ <div class="refsect2" title="gtk_menu_attach ()">
445
457
  <a name="gtk-menu-attach"></a><h3>gtk_menu_attach ()</h3>
446
458
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_menu_attach (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
447
459
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
@@ -464,34 +476,40 @@ Note that this function is not related to <a class="link" href="GtkMenu.html#gtk
464
476
  <tbody>
465
477
  <tr>
466
478
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
467
- <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.</td>
479
+ <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
480
+ </td>
468
481
  </tr>
469
482
  <tr>
470
483
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
471
- <td>a <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span class="type">GtkMenuItem</span></a>.</td>
484
+ <td>a <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span class="type">GtkMenuItem</span></a>.
485
+ </td>
472
486
  </tr>
473
487
  <tr>
474
488
  <td><p><span class="term"><em class="parameter"><code>left_attach</code></em> :</span></p></td>
475
- <td>The column number to attach the left side of the item to.</td>
489
+ <td>The column number to attach the left side of the item to.
490
+ </td>
476
491
  </tr>
477
492
  <tr>
478
493
  <td><p><span class="term"><em class="parameter"><code>right_attach</code></em> :</span></p></td>
479
- <td>The column number to attach the right side of the item to.</td>
494
+ <td>The column number to attach the right side of the item to.
495
+ </td>
480
496
  </tr>
481
497
  <tr>
482
498
  <td><p><span class="term"><em class="parameter"><code>top_attach</code></em> :</span></p></td>
483
- <td>The row number to attach the top of the item to.</td>
499
+ <td>The row number to attach the top of the item to.
500
+ </td>
484
501
  </tr>
485
502
  <tr>
486
503
  <td><p><span class="term"><em class="parameter"><code>bottom_attach</code></em> :</span></p></td>
487
- <td>The row number to attach the bottom of the item to.</td>
504
+ <td>The row number to attach the bottom of the item to.
505
+ </td>
488
506
  </tr>
489
507
  </tbody>
490
508
  </table></div>
491
509
  <p class="since">Since 2.4</p>
492
510
  </div>
493
511
  <hr>
494
- <div class="refsect2">
512
+ <div class="refsect2" title="gtk_menu_popup ()">
495
513
  <a name="gtk-menu-popup"></a><h3>gtk_menu_popup ()</h3>
496
514
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_menu_popup (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
497
515
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *parent_menu_shell</code></em>,
@@ -526,41 +544,44 @@ be used instead.
526
544
  <tbody>
527
545
  <tr>
528
546
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
529
- <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.</td>
547
+ <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
548
+ </td>
530
549
  </tr>
531
550
  <tr>
532
551
  <td><p><span class="term"><em class="parameter"><code>parent_menu_shell</code></em> :</span></p></td>
533
- <td>the menu shell containing the triggering menu item, 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>
552
+ <td> the menu shell containing the triggering menu item, 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>
534
553
  </td>
535
554
  </tr>
536
555
  <tr>
537
556
  <td><p><span class="term"><em class="parameter"><code>parent_menu_item</code></em> :</span></p></td>
538
- <td>the menu item whose activation triggered the popup, 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>
557
+ <td> the menu item whose activation triggered the popup, 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>
539
558
  </td>
540
559
  </tr>
541
560
  <tr>
542
561
  <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
543
- <td>a user supplied function used to position the menu, 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>
562
+ <td> a user supplied function used to position the menu, 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>
544
563
  </td>
545
564
  </tr>
546
565
  <tr>
547
566
  <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
548
- <td>user supplied data to be passed to <em class="parameter"><code>func</code></em>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
567
+ <td> user supplied data to be passed to <em class="parameter"><code>func</code></em>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
549
568
  </td>
550
569
  </tr>
551
570
  <tr>
552
571
  <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
553
- <td>the mouse button which was pressed to initiate the event.</td>
572
+ <td>the mouse button which was pressed to initiate the event.
573
+ </td>
554
574
  </tr>
555
575
  <tr>
556
576
  <td><p><span class="term"><em class="parameter"><code>activate_time</code></em> :</span></p></td>
557
- <td>the time at which the activation event occurred.</td>
577
+ <td>the time at which the activation event occurred.
578
+ </td>
558
579
  </tr>
559
580
  </tbody>
560
581
  </table></div>
561
582
  </div>
562
583
  <hr>
563
- <div class="refsect2">
584
+ <div class="refsect2" title="gtk_menu_set_accel_group ()">
564
585
  <a name="gtk-menu-set-accel-group"></a><h3>gtk_menu_set_accel_group ()</h3>
565
586
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_menu_set_accel_group (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
566
587
  <em class="parameter"><code><a class="link" href="gtk-Keyboard-Accelerators.html#GtkAccelGroup"><span class="type">GtkAccelGroup</span></a> *accel_group</code></em>);</pre>
@@ -575,7 +596,8 @@ for those windows to support all the accelerators contained in this group.
575
596
  <tbody>
576
597
  <tr>
577
598
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
578
- <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.</td>
599
+ <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
600
+ </td>
579
601
  </tr>
580
602
  <tr>
581
603
  <td><p><span class="term"><em class="parameter"><code>accel_group</code></em> :</span></p></td>
@@ -586,13 +608,9 @@ for those windows to support all the accelerators contained in this group.
586
608
  </table></div>
587
609
  </div>
588
610
  <hr>
589
- <div class="refsect2">
611
+ <div class="refsect2" title="gtk_menu_get_accel_group ()">
590
612
  <a name="gtk-menu-get-accel-group"></a><h3>gtk_menu_get_accel_group ()</h3>
591
- <pre class="programlisting"><a class="link" href="gtk-Keyboard-Accelerators.html#GtkAccelGroup"><span class="returnvalue">GtkAccelGroup</span></a> * gtk_menu_get_accel_group (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
592
- <p>
593
- Gets the <a class="link" href="gtk-Keyboard-Accelerators.html#GtkAccelGroup"><span class="type">GtkAccelGroup</span></a> which holds global accelerators for the
594
- menu. See <a class="link" href="GtkMenu.html#gtk-menu-set-accel-group" title="gtk_menu_set_accel_group ()"><code class="function">gtk_menu_set_accel_group()</code></a>.
595
- </p>
613
+ <pre class="programlisting"><a class="link" href="gtk-Keyboard-Accelerators.html#GtkAccelGroup"><span class="returnvalue">GtkAccelGroup</span></a>* gtk_menu_get_accel_group (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
596
614
  <p>
597
615
  Gets the <a class="link" href="gtk-Keyboard-Accelerators.html#GtkAccelGroup"><span class="type">GtkAccelGroup</span></a> which holds global accelerators for the menu.
598
616
  See <a class="link" href="GtkMenu.html#gtk-menu-set-accel-group" title="gtk_menu_set_accel_group ()"><code class="function">gtk_menu_set_accel_group()</code></a>.
@@ -602,18 +620,19 @@ See <a class="link" href="GtkMenu.html#gtk-menu-set-accel-group" title="gtk_menu
602
620
  <tbody>
603
621
  <tr>
604
622
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
605
- <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.</td>
623
+ <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
624
+ </td>
606
625
  </tr>
607
626
  <tr>
608
627
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
609
- <td>the <a class="link" href="gtk-Keyboard-Accelerators.html#GtkAccelGroup"><span class="type">GtkAccelGroup</span></a> associated with the menu. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
628
+ <td>the <a class="link" href="gtk-Keyboard-Accelerators.html#GtkAccelGroup"><span class="type">GtkAccelGroup</span></a> associated with the menu.
610
629
  </td>
611
630
  </tr>
612
631
  </tbody>
613
632
  </table></div>
614
633
  </div>
615
634
  <hr>
616
- <div class="refsect2">
635
+ <div class="refsect2" title="gtk_menu_set_accel_path ()">
617
636
  <a name="gtk-menu-set-accel-path"></a><h3>gtk_menu_set_accel_path ()</h3>
618
637
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_menu_set_accel_path (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
619
638
  <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> *accel_path</code></em>);</pre>
@@ -649,16 +668,16 @@ pass a static string, you can save some memory by interning it first with
649
668
  </tr>
650
669
  <tr>
651
670
  <td><p><span class="term"><em class="parameter"><code>accel_path</code></em> :</span></p></td>
652
- <td>a valid accelerator path. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
671
+ <td> a valid accelerator path. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
653
672
  </td>
654
673
  </tr>
655
674
  </tbody>
656
675
  </table></div>
657
676
  </div>
658
677
  <hr>
659
- <div class="refsect2">
678
+ <div class="refsect2" title="gtk_menu_get_accel_path ()">
660
679
  <a name="gtk-menu-get-accel-path"></a><h3>gtk_menu_get_accel_path ()</h3>
661
- <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_menu_get_accel_path (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
680
+ <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_menu_get_accel_path (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
662
681
  <p>
663
682
  Retrieves the accelerator path set on the menu.
664
683
  </p>
@@ -672,14 +691,16 @@ Retrieves the accelerator path set on the menu.
672
691
  </tr>
673
692
  <tr>
674
693
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
675
- <td>the accelerator path set on the menu.</td>
694
+ <td> the accelerator path set on the menu.
695
+
696
+ </td>
676
697
  </tr>
677
698
  </tbody>
678
699
  </table></div>
679
700
  <p class="since">Since 2.14</p>
680
701
  </div>
681
702
  <hr>
682
- <div class="refsect2">
703
+ <div class="refsect2" title="gtk_menu_set_title ()">
683
704
  <a name="gtk-menu-set-title"></a><h3>gtk_menu_set_title ()</h3>
684
705
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_menu_set_title (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
685
706
  <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>
@@ -699,13 +720,14 @@ that menu item's label.
699
720
  </tr>
700
721
  <tr>
701
722
  <td><p><span class="term"><em class="parameter"><code>title</code></em> :</span></p></td>
702
- <td>a string containing the title for the menu.</td>
723
+ <td>a string containing the title for the menu.
724
+ </td>
703
725
  </tr>
704
726
  </tbody>
705
727
  </table></div>
706
728
  </div>
707
729
  <hr>
708
- <div class="refsect2">
730
+ <div class="refsect2" title="gtk_menu_get_title ()">
709
731
  <a name="gtk-menu-get-title"></a><h3>gtk_menu_get_title ()</h3>
710
732
  <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_menu_get_title (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
711
733
  <p>
@@ -721,15 +743,16 @@ Returns the title of the menu. See <a class="link" href="GtkMenu.html#gtk-menu-s
721
743
  </tr>
722
744
  <tr>
723
745
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
724
- <td>the title of the menu, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the menu has no
746
+ <td> the title of the menu, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the menu has no
725
747
  title set on it. This string is owned by the widget and should
726
- not be modified or freed.</td>
748
+ not be modified or freed.
749
+ </td>
727
750
  </tr>
728
751
  </tbody>
729
752
  </table></div>
730
753
  </div>
731
754
  <hr>
732
- <div class="refsect2">
755
+ <div class="refsect2" title="gtk_menu_set_monitor ()">
733
756
  <a name="gtk-menu-set-monitor"></a><h3>gtk_menu_set_monitor ()</h3>
734
757
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_menu_set_monitor (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
735
758
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> monitor_num</code></em>);</pre>
@@ -755,14 +778,15 @@ may extend beyond the monitor boundaries or even the screen boundaries.
755
778
  <tr>
756
779
  <td><p><span class="term"><em class="parameter"><code>monitor_num</code></em> :</span></p></td>
757
780
  <td>the number of the monitor on which the menu should
758
- be popped up</td>
781
+ be popped up
782
+ </td>
759
783
  </tr>
760
784
  </tbody>
761
785
  </table></div>
762
786
  <p class="since">Since 2.4</p>
763
787
  </div>
764
788
  <hr>
765
- <div class="refsect2">
789
+ <div class="refsect2" title="gtk_menu_get_monitor ()">
766
790
  <a name="gtk-menu-get-monitor"></a><h3>gtk_menu_get_monitor ()</h3>
767
791
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_menu_get_monitor (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
768
792
  <p>
@@ -778,15 +802,17 @@ Retrieves the number of the monitor on which to show the menu.
778
802
  </tr>
779
803
  <tr>
780
804
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
781
- <td>the number of the monitor on which the menu should
782
- be popped up or -1, if no monitor has been set</td>
805
+ <td> the number of the monitor on which the menu should
806
+ be popped up or -1, if no monitor has been set
807
+
808
+ </td>
783
809
  </tr>
784
810
  </tbody>
785
811
  </table></div>
786
812
  <p class="since">Since 2.14</p>
787
813
  </div>
788
814
  <hr>
789
- <div class="refsect2">
815
+ <div class="refsect2" title="gtk_menu_get_tearoff_state ()">
790
816
  <a name="gtk-menu-get-tearoff-state"></a><h3>gtk_menu_get_tearoff_state ()</h3>
791
817
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_menu_get_tearoff_state (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
792
818
  <p>
@@ -803,14 +829,14 @@ Returns whether the menu is torn off. See
803
829
  </tr>
804
830
  <tr>
805
831
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
806
- <td>
807
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the menu is currently torn off.</td>
832
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the menu is currently torn off.
833
+ </td>
808
834
  </tr>
809
835
  </tbody>
810
836
  </table></div>
811
837
  </div>
812
838
  <hr>
813
- <div class="refsect2">
839
+ <div class="refsect2" title="gtk_menu_set_reserve_toggle_size ()">
814
840
  <a name="gtk-menu-set-reserve-toggle-size"></a><h3>gtk_menu_set_reserve_toggle_size ()</h3>
815
841
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_menu_set_reserve_toggle_size (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
816
842
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> reserve_toggle_size</code></em>);</pre>
@@ -828,14 +854,15 @@ or icons, regardless of their actual presence.
828
854
  </tr>
829
855
  <tr>
830
856
  <td><p><span class="term"><em class="parameter"><code>reserve_toggle_size</code></em> :</span></p></td>
831
- <td>whether to reserve size for toggles</td>
857
+ <td>whether to reserve size for toggles
858
+ </td>
832
859
  </tr>
833
860
  </tbody>
834
861
  </table></div>
835
862
  <p class="since">Since 2.18</p>
836
863
  </div>
837
864
  <hr>
838
- <div class="refsect2">
865
+ <div class="refsect2" title="gtk_menu_get_reserve_toggle_size ()">
839
866
  <a name="gtk-menu-get-reserve-toggle-size"></a><h3>gtk_menu_get_reserve_toggle_size ()</h3>
840
867
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_menu_get_reserve_toggle_size (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
841
868
  <p>
@@ -852,14 +879,16 @@ icons, regardless of their actual presence.
852
879
  </tr>
853
880
  <tr>
854
881
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
855
- <td>Whether the menu reserves toggle space</td>
882
+ <td> Whether the menu reserves toggle space
883
+
884
+ </td>
856
885
  </tr>
857
886
  </tbody>
858
887
  </table></div>
859
888
  <p class="since">Since 2.18</p>
860
889
  </div>
861
890
  <hr>
862
- <div class="refsect2">
891
+ <div class="refsect2" title="gtk_menu_popdown ()">
863
892
  <a name="gtk-menu-popdown"></a><h3>gtk_menu_popdown ()</h3>
864
893
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_menu_popdown (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
865
894
  <p>
@@ -869,12 +898,13 @@ Removes the menu from the screen.
869
898
  <col align="left" valign="top">
870
899
  <tbody><tr>
871
900
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
872
- <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.</td>
901
+ <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
902
+ </td>
873
903
  </tr></tbody>
874
904
  </table></div>
875
905
  </div>
876
906
  <hr>
877
- <div class="refsect2">
907
+ <div class="refsect2" title="gtk_menu_reposition ()">
878
908
  <a name="gtk-menu-reposition"></a><h3>gtk_menu_reposition ()</h3>
879
909
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_menu_reposition (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
880
910
  <p>
@@ -884,18 +914,15 @@ Repositions the menu according to its position function.
884
914
  <col align="left" valign="top">
885
915
  <tbody><tr>
886
916
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
887
- <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.</td>
917
+ <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
918
+ </td>
888
919
  </tr></tbody>
889
920
  </table></div>
890
921
  </div>
891
922
  <hr>
892
- <div class="refsect2">
923
+ <div class="refsect2" title="gtk_menu_get_active ()">
893
924
  <a name="gtk-menu-get-active"></a><h3>gtk_menu_get_active ()</h3>
894
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_menu_get_active (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
895
- <p>
896
- Returns the selected menu item from the menu. This is used by the
897
- <a class="link" href="GtkOptionMenu.html" title="GtkOptionMenu"><span class="type">GtkOptionMenu</span></a>.
898
- </p>
925
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_menu_get_active (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
899
926
  <p>
900
927
  Returns the selected menu item from the menu. This is used by the
901
928
  <a class="link" href="GtkOptionMenu.html" title="GtkOptionMenu"><span class="type">GtkOptionMenu</span></a>.
@@ -905,21 +932,20 @@ Returns the selected menu item from the menu. This is used by the
905
932
  <tbody>
906
933
  <tr>
907
934
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
908
- <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>
935
+ <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
909
936
  </td>
910
937
  </tr>
911
938
  <tr>
912
939
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
913
- <td>the <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span class="type">GtkMenuItem</span></a> that was last selected
914
- in the menu. If a selection has not yet been made, the
915
- first menu item is selected. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
940
+ <td>the <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span class="type">GtkMenuItem</span></a> that was last selected in the menu. If a
941
+ selection has not yet been made, the first menu item is selected.
916
942
  </td>
917
943
  </tr>
918
944
  </tbody>
919
945
  </table></div>
920
946
  </div>
921
947
  <hr>
922
- <div class="refsect2">
948
+ <div class="refsect2" title="gtk_menu_set_active ()">
923
949
  <a name="gtk-menu-set-active"></a><h3>gtk_menu_set_active ()</h3>
924
950
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_menu_set_active (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
925
951
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> index_</code></em>);</pre>
@@ -932,18 +958,20 @@ Selects the specified menu item within the menu. This is used by the
932
958
  <tbody>
933
959
  <tr>
934
960
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
935
- <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.</td>
961
+ <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
962
+ </td>
936
963
  </tr>
937
964
  <tr>
938
965
  <td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
939
966
  <td>the index of the menu item to select. Index values are from
940
- 0 to n-1.</td>
967
+ 0 to n-1.
968
+ </td>
941
969
  </tr>
942
970
  </tbody>
943
971
  </table></div>
944
972
  </div>
945
973
  <hr>
946
- <div class="refsect2">
974
+ <div class="refsect2" title="gtk_menu_set_tearoff_state ()">
947
975
  <a name="gtk-menu-set-tearoff-state"></a><h3>gtk_menu_set_tearoff_state ()</h3>
948
976
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_menu_set_tearoff_state (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
949
977
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> torn_off</code></em>);</pre>
@@ -958,17 +986,19 @@ or reattached.
958
986
  <tbody>
959
987
  <tr>
960
988
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
961
- <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.</td>
989
+ <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
990
+ </td>
962
991
  </tr>
963
992
  <tr>
964
993
  <td><p><span class="term"><em class="parameter"><code>torn_off</code></em> :</span></p></td>
965
- <td>If <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, menu is displayed as a tearoff menu.</td>
994
+ <td>If <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, menu is displayed as a tearoff menu.
995
+ </td>
966
996
  </tr>
967
997
  </tbody>
968
998
  </table></div>
969
999
  </div>
970
1000
  <hr>
971
- <div class="refsect2">
1001
+ <div class="refsect2" title="gtk_menu_attach_to_widget ()">
972
1002
  <a name="gtk-menu-attach-to-widget"></a><h3>gtk_menu_attach_to_widget ()</h3>
973
1003
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_menu_attach_to_widget (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
974
1004
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *attach_widget</code></em>,
@@ -982,22 +1012,25 @@ be invoked when the menu calls <a class="link" href="GtkMenu.html#gtk-menu-detac
982
1012
  <tbody>
983
1013
  <tr>
984
1014
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
985
- <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.</td>
1015
+ <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
1016
+ </td>
986
1017
  </tr>
987
1018
  <tr>
988
1019
  <td><p><span class="term"><em class="parameter"><code>attach_widget</code></em> :</span></p></td>
989
- <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that the menu will be attached to.</td>
1020
+ <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that the menu will be attached to.
1021
+ </td>
990
1022
  </tr>
991
1023
  <tr>
992
1024
  <td><p><span class="term"><em class="parameter"><code>detacher</code></em> :</span></p></td>
993
- <td>the user supplied callback function that will be called when
994
- the menu calls <a class="link" href="GtkMenu.html#gtk-menu-detach" title="gtk_menu_detach ()"><code class="function">gtk_menu_detach()</code></a>.</td>
1025
+ <td>the user supplied callback function that will be called when
1026
+ the menu calls <a class="link" href="GtkMenu.html#gtk-menu-detach" title="gtk_menu_detach ()"><code class="function">gtk_menu_detach()</code></a>.
1027
+ </td>
995
1028
  </tr>
996
1029
  </tbody>
997
1030
  </table></div>
998
1031
  </div>
999
1032
  <hr>
1000
- <div class="refsect2">
1033
+ <div class="refsect2" title="gtk_menu_detach ()">
1001
1034
  <a name="gtk-menu-detach"></a><h3>gtk_menu_detach ()</h3>
1002
1035
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_menu_detach (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
1003
1036
  <p>
@@ -1009,17 +1042,15 @@ when the <a class="link" href="GtkMenu.html#gtk-menu-attach-to-widget" title="gt
1009
1042
  <col align="left" valign="top">
1010
1043
  <tbody><tr>
1011
1044
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
1012
- <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.</td>
1045
+ <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
1046
+ </td>
1013
1047
  </tr></tbody>
1014
1048
  </table></div>
1015
1049
  </div>
1016
1050
  <hr>
1017
- <div class="refsect2">
1051
+ <div class="refsect2" title="gtk_menu_get_attach_widget ()">
1018
1052
  <a name="gtk-menu-get-attach-widget"></a><h3>gtk_menu_get_attach_widget ()</h3>
1019
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_menu_get_attach_widget (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
1020
- <p>
1021
- Returns the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that the menu is attached to.
1022
- </p>
1053
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_menu_get_attach_widget (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
1023
1054
  <p>
1024
1055
  Returns the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that the menu is attached to.
1025
1056
  </p>
@@ -1028,21 +1059,21 @@ Returns the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class=
1028
1059
  <tbody>
1029
1060
  <tr>
1030
1061
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
1031
- <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>
1062
+ <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
1032
1063
  </td>
1033
1064
  </tr>
1034
1065
  <tr>
1035
1066
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1036
- <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that the menu is attached to. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1067
+ <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that the menu is attached to.
1037
1068
  </td>
1038
1069
  </tr>
1039
1070
  </tbody>
1040
1071
  </table></div>
1041
1072
  </div>
1042
1073
  <hr>
1043
- <div class="refsect2">
1074
+ <div class="refsect2" title="gtk_menu_get_for_attach_widget ()">
1044
1075
  <a name="gtk-menu-get-for-attach-widget"></a><h3>gtk_menu_get_for_attach_widget ()</h3>
1045
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * gtk_menu_get_for_attach_widget (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
1076
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a>* gtk_menu_get_for_attach_widget (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
1046
1077
  <p>
1047
1078
  Returns a list of the menus which are attached to this widget.
1048
1079
  This list is owned by GTK+ and must not be modified.
@@ -1057,7 +1088,7 @@ This list is owned by GTK+ and must not be modified.
1057
1088
  </tr>
1058
1089
  <tr>
1059
1090
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1060
- <td>the list of menus attached to his widget. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GtkWidget][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1091
+ <td> the list of menus attached to his widget. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GtkWidget][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym> GtkWidget]</span>
1061
1092
  </td>
1062
1093
  </tr>
1063
1094
  </tbody>
@@ -1065,7 +1096,7 @@ This list is owned by GTK+ and must not be modified.
1065
1096
  <p class="since">Since 2.6</p>
1066
1097
  </div>
1067
1098
  <hr>
1068
- <div class="refsect2">
1099
+ <div class="refsect2" title="GtkMenuPositionFunc ()">
1069
1100
  <a name="GtkMenuPositionFunc"></a><h3>GtkMenuPositionFunc ()</h3>
1070
1101
  <pre class="programlisting"><span class="returnvalue">void</span> (*GtkMenuPositionFunc) (<em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>,
1071
1102
  <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>,
@@ -1084,41 +1115,46 @@ To make the menu appear on a different monitor than the mouse pointer,
1084
1115
  <tbody>
1085
1116
  <tr>
1086
1117
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
1087
- <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.</td>
1118
+ <td>a <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a>.
1119
+ </td>
1088
1120
  </tr>
1089
1121
  <tr>
1090
1122
  <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
1091
1123
  <td>address of the <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> representing the horizontal position where the
1092
- menu shall be drawn. This is an output parameter.</td>
1124
+ menu shall be drawn. This is an output parameter.
1125
+ </td>
1093
1126
  </tr>
1094
1127
  <tr>
1095
1128
  <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
1096
1129
  <td>address of the <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> representing the vertical position where the
1097
- menu shall be drawn. This is an output parameter.</td>
1130
+ menu shall be drawn. This is an output parameter.
1131
+ </td>
1098
1132
  </tr>
1099
1133
  <tr>
1100
1134
  <td><p><span class="term"><em class="parameter"><code>push_in</code></em> :</span></p></td>
1101
1135
  <td>This parameter controls how menus placed outside the monitor are handled.
1102
- If this is set to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> and part of the menu is outside the monitor then
1103
- GTK+ pushes the window into the visible area, effectively modifying the
1104
- popup position.
1105
- Note that moving and possibly resizing the menu around will alter the
1106
- scroll position to keep the menu items "in place", i.e. at the same monitor
1107
- position they would have been without resizing.
1108
- In practice, this behavior is only useful for combobox popups or option
1109
- menus and cannot be used to simply confine a menu to monitor boundaries.
1110
- In that case, changing the scroll offset is not desirable.</td>
1136
+ If this is set to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> and part of the menu is outside the monitor then
1137
+ GTK+ pushes the window into the visible area, effectively modifying the
1138
+ popup position.
1139
+ Note that moving and possibly resizing the menu around will alter the
1140
+ scroll position to keep the menu items "in place", i.e. at the same monitor
1141
+ position they would have been without resizing.
1142
+ In practice, this behavior is only useful for combobox popups or option
1143
+ menus and cannot be used to simply confine a menu to monitor boundaries.
1144
+ In that case, changing the scroll offset is not desirable.
1145
+ </td>
1111
1146
  </tr>
1112
1147
  <tr>
1113
1148
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
1114
1149
  <td>the data supplied by the user in the <a class="link" href="GtkMenu.html#gtk-menu-popup" title="gtk_menu_popup ()"><code class="function">gtk_menu_popup()</code></a> <em class="parameter"><code>data</code></em>
1115
- parameter.</td>
1150
+ parameter.
1151
+ </td>
1116
1152
  </tr>
1117
1153
  </tbody>
1118
1154
  </table></div>
1119
1155
  </div>
1120
1156
  <hr>
1121
- <div class="refsect2">
1157
+ <div class="refsect2" title="GtkMenuDetachFunc ()">
1122
1158
  <a name="GtkMenuDetachFunc"></a><h3>GtkMenuDetachFunc ()</h3>
1123
1159
  <pre class="programlisting"><span class="returnvalue">void</span> (*GtkMenuDetachFunc) (<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *attach_widget</code></em>,
1124
1160
  <em class="parameter"><code><a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
@@ -1131,19 +1167,21 @@ will be called when the menu is later detached from the widget.
1131
1167
  <tbody>
1132
1168
  <tr>
1133
1169
  <td><p><span class="term"><em class="parameter"><code>attach_widget</code></em> :</span></p></td>
1134
- <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that the menu is being detached from.</td>
1170
+ <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> that the menu is being detached from.
1171
+ </td>
1135
1172
  </tr>
1136
1173
  <tr>
1137
1174
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
1138
- <td>the <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> being detached.</td>
1175
+ <td>the <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> being detached.
1176
+ </td>
1139
1177
  </tr>
1140
1178
  </tbody>
1141
1179
  </table></div>
1142
1180
  </div>
1143
1181
  </div>
1144
- <div class="refsect1">
1182
+ <div class="refsect1" title="Property Details">
1145
1183
  <a name="GtkMenu.property-details"></a><h2>Property Details</h2>
1146
- <div class="refsect2">
1184
+ <div class="refsect2" title='The "accel-group" property'>
1147
1185
  <a name="GtkMenu--accel-group"></a><h3>The <code class="literal">"accel-group"</code> property</h3>
1148
1186
  <pre class="programlisting"> "accel-group" <a class="link" href="gtk-Keyboard-Accelerators.html#GtkAccelGroup"><span class="type">GtkAccelGroup</span></a>* : Read / Write</pre>
1149
1187
  <p>
@@ -1152,7 +1190,7 @@ The accel group holding accelerators for the menu.
1152
1190
  <p class="since">Since 2.14</p>
1153
1191
  </div>
1154
1192
  <hr>
1155
- <div class="refsect2">
1193
+ <div class="refsect2" title='The "accel-path" property'>
1156
1194
  <a name="GtkMenu--accel-path"></a><h3>The <code class="literal">"accel-path"</code> property</h3>
1157
1195
  <pre class="programlisting"> "accel-path" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1158
1196
  <p>
@@ -1162,7 +1200,7 @@ An accel path used to conveniently construct accel paths of child items.
1162
1200
  <p class="since">Since 2.14</p>
1163
1201
  </div>
1164
1202
  <hr>
1165
- <div class="refsect2">
1203
+ <div class="refsect2" title='The "active" property'>
1166
1204
  <a name="GtkMenu--active"></a><h3>The <code class="literal">"active"</code> property</h3>
1167
1205
  <pre class="programlisting"> "active" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1168
1206
  <p>
@@ -1174,7 +1212,7 @@ menu item is selected.
1174
1212
  <p class="since">Since 2.14</p>
1175
1213
  </div>
1176
1214
  <hr>
1177
- <div class="refsect2">
1215
+ <div class="refsect2" title='The "attach-widget" property'>
1178
1216
  <a name="GtkMenu--attach-widget"></a><h3>The <code class="literal">"attach-widget"</code> property</h3>
1179
1217
  <pre class="programlisting"> "attach-widget" <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>* : Read / Write</pre>
1180
1218
  <p>
@@ -1185,7 +1223,7 @@ use <a class="link" href="GtkMenu.html#gtk-menu-attach-to-widget" title="gtk_men
1185
1223
  <p class="since">Since 2.14</p>
1186
1224
  </div>
1187
1225
  <hr>
1188
- <div class="refsect2">
1226
+ <div class="refsect2" title='The "monitor" property'>
1189
1227
  <a name="GtkMenu--monitor"></a><h3>The <code class="literal">"monitor"</code> property</h3>
1190
1228
  <pre class="programlisting"> "monitor" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1191
1229
  <p>
@@ -1196,7 +1234,7 @@ The monitor the menu will be popped up on.
1196
1234
  <p class="since">Since 2.14</p>
1197
1235
  </div>
1198
1236
  <hr>
1199
- <div class="refsect2">
1237
+ <div class="refsect2" title='The "reserve-toggle-size" property'>
1200
1238
  <a name="GtkMenu--reserve-toggle-size"></a><h3>The <code class="literal">"reserve-toggle-size"</code> property</h3>
1201
1239
  <pre class="programlisting"> "reserve-toggle-size" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1202
1240
  <p>
@@ -1213,7 +1251,7 @@ toggle space for consistency.
1213
1251
  <p class="since">Since 2.18</p>
1214
1252
  </div>
1215
1253
  <hr>
1216
- <div class="refsect2">
1254
+ <div class="refsect2" title='The "tearoff-state" property'>
1217
1255
  <a name="GtkMenu--tearoff-state"></a><h3>The <code class="literal">"tearoff-state"</code> property</h3>
1218
1256
  <pre class="programlisting"> "tearoff-state" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1219
1257
  <p>
@@ -1223,16 +1261,16 @@ A boolean that indicates whether the menu is torn-off.
1223
1261
  <p class="since">Since 2.6</p>
1224
1262
  </div>
1225
1263
  <hr>
1226
- <div class="refsect2">
1264
+ <div class="refsect2" title='The "tearoff-title" property'>
1227
1265
  <a name="GtkMenu--tearoff-title"></a><h3>The <code class="literal">"tearoff-title"</code> property</h3>
1228
1266
  <pre class="programlisting"> "tearoff-title" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1229
1267
  <p>A title that may be displayed by the window manager when this menu is torn-off.</p>
1230
1268
  <p>Default value: NULL</p>
1231
1269
  </div>
1232
1270
  </div>
1233
- <div class="refsect1">
1271
+ <div class="refsect1" title="Child Property Details">
1234
1272
  <a name="GtkMenu.child-property-details"></a><h2>Child Property Details</h2>
1235
- <div class="refsect2">
1273
+ <div class="refsect2" title='The "bottom-attach" child property'>
1236
1274
  <a name="GtkMenu--c-bottom-attach"></a><h3>The <code class="literal">"bottom-attach"</code> child property</h3>
1237
1275
  <pre class="programlisting"> "bottom-attach" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1238
1276
  <p>The row number to attach the bottom of the child to.</p>
@@ -1240,7 +1278,7 @@ A boolean that indicates whether the menu is torn-off.
1240
1278
  <p>Default value: -1</p>
1241
1279
  </div>
1242
1280
  <hr>
1243
- <div class="refsect2">
1281
+ <div class="refsect2" title='The "left-attach" child property'>
1244
1282
  <a name="GtkMenu--c-left-attach"></a><h3>The <code class="literal">"left-attach"</code> child property</h3>
1245
1283
  <pre class="programlisting"> "left-attach" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1246
1284
  <p>The column number to attach the left side of the child to.</p>
@@ -1248,7 +1286,7 @@ A boolean that indicates whether the menu is torn-off.
1248
1286
  <p>Default value: -1</p>
1249
1287
  </div>
1250
1288
  <hr>
1251
- <div class="refsect2">
1289
+ <div class="refsect2" title='The "right-attach" child property'>
1252
1290
  <a name="GtkMenu--c-right-attach"></a><h3>The <code class="literal">"right-attach"</code> child property</h3>
1253
1291
  <pre class="programlisting"> "right-attach" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1254
1292
  <p>The column number to attach the right side of the child to.</p>
@@ -1256,7 +1294,7 @@ A boolean that indicates whether the menu is torn-off.
1256
1294
  <p>Default value: -1</p>
1257
1295
  </div>
1258
1296
  <hr>
1259
- <div class="refsect2">
1297
+ <div class="refsect2" title='The "top-attach" child property'>
1260
1298
  <a name="GtkMenu--c-top-attach"></a><h3>The <code class="literal">"top-attach"</code> child property</h3>
1261
1299
  <pre class="programlisting"> "top-attach" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1262
1300
  <p>The row number to attach the top of the child to.</p>
@@ -1264,9 +1302,9 @@ A boolean that indicates whether the menu is torn-off.
1264
1302
  <p>Default value: -1</p>
1265
1303
  </div>
1266
1304
  </div>
1267
- <div class="refsect1">
1305
+ <div class="refsect1" title="Style Property Details">
1268
1306
  <a name="GtkMenu.style-property-details"></a><h2>Style Property Details</h2>
1269
- <div class="refsect2">
1307
+ <div class="refsect2" title='The "arrow-placement" style property'>
1270
1308
  <a name="GtkMenu--s-arrow-placement"></a><h3>The <code class="literal">"arrow-placement"</code> style property</h3>
1271
1309
  <pre class="programlisting"> "arrow-placement" <a class="link" href="gtk-Standard-Enumerations.html#GtkArrowPlacement" title="enum GtkArrowPlacement"><span class="type">GtkArrowPlacement</span></a> : Read</pre>
1272
1310
  <p>
@@ -1276,7 +1314,7 @@ Indicates where scroll arrows should be placed.
1276
1314
  <p class="since">Since 2.16</p>
1277
1315
  </div>
1278
1316
  <hr>
1279
- <div class="refsect2">
1317
+ <div class="refsect2" title='The "arrow-scaling" style property'>
1280
1318
  <a name="GtkMenu--s-arrow-scaling"></a><h3>The <code class="literal">"arrow-scaling"</code> style property</h3>
1281
1319
  <pre class="programlisting"> "arrow-scaling" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> : Read</pre>
1282
1320
  <p>Arbitrary constant to scale down the size of the scroll arrow.</p>
@@ -1284,21 +1322,21 @@ Indicates where scroll arrows should be placed.
1284
1322
  <p>Default value: 0.7</p>
1285
1323
  </div>
1286
1324
  <hr>
1287
- <div class="refsect2">
1325
+ <div class="refsect2" title='The "double-arrows" style property'>
1288
1326
  <a name="GtkMenu--s-double-arrows"></a><h3>The <code class="literal">"double-arrows"</code> style property</h3>
1289
1327
  <pre class="programlisting"> "double-arrows" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
1290
1328
  <p>When scrolling, always show both arrows.</p>
1291
1329
  <p>Default value: TRUE</p>
1292
1330
  </div>
1293
1331
  <hr>
1294
- <div class="refsect2">
1332
+ <div class="refsect2" title='The "horizontal-offset" style property'>
1295
1333
  <a name="GtkMenu--s-horizontal-offset"></a><h3>The <code class="literal">"horizontal-offset"</code> style property</h3>
1296
1334
  <pre class="programlisting"> "horizontal-offset" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
1297
1335
  <p>When the menu is a submenu, position it this number of pixels offset horizontally.</p>
1298
1336
  <p>Default value: -2</p>
1299
1337
  </div>
1300
1338
  <hr>
1301
- <div class="refsect2">
1339
+ <div class="refsect2" title='The "horizontal-padding" style property'>
1302
1340
  <a name="GtkMenu--s-horizontal-padding"></a><h3>The <code class="literal">"horizontal-padding"</code> style property</h3>
1303
1341
  <pre class="programlisting"> "horizontal-padding" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
1304
1342
  <p>Extra space at the left and right edges of the menu.</p>
@@ -1306,14 +1344,14 @@ Indicates where scroll arrows should be placed.
1306
1344
  <p>Default value: 0</p>
1307
1345
  </div>
1308
1346
  <hr>
1309
- <div class="refsect2">
1347
+ <div class="refsect2" title='The "vertical-offset" style property'>
1310
1348
  <a name="GtkMenu--s-vertical-offset"></a><h3>The <code class="literal">"vertical-offset"</code> style property</h3>
1311
1349
  <pre class="programlisting"> "vertical-offset" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
1312
1350
  <p>When the menu is a submenu, position it this number of pixels offset vertically.</p>
1313
1351
  <p>Default value: 0</p>
1314
1352
  </div>
1315
1353
  <hr>
1316
- <div class="refsect2">
1354
+ <div class="refsect2" title='The "vertical-padding" style property'>
1317
1355
  <a name="GtkMenu--s-vertical-padding"></a><h3>The <code class="literal">"vertical-padding"</code> style property</h3>
1318
1356
  <pre class="programlisting"> "vertical-padding" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
1319
1357
  <p>Extra space at the top and bottom of the menu.</p>
@@ -1321,13 +1359,13 @@ Indicates where scroll arrows should be placed.
1321
1359
  <p>Default value: 1</p>
1322
1360
  </div>
1323
1361
  </div>
1324
- <div class="refsect1">
1362
+ <div class="refsect1" title="Signal Details">
1325
1363
  <a name="GtkMenu.signal-details"></a><h2>Signal Details</h2>
1326
- <div class="refsect2">
1364
+ <div class="refsect2" title='The "move-scroll" signal'>
1327
1365
  <a name="GtkMenu-move-scroll"></a><h3>The <code class="literal">"move-scroll"</code> signal</h3>
1328
1366
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu,
1329
1367
  <a class="link" href="gtk-Standard-Enumerations.html#GtkScrollType" title="enum GtkScrollType"><span class="type">GtkScrollType</span></a> arg1,
1330
- <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>
1368
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last / Action</pre>
1331
1369
  <p>
1332
1370
  </p>
1333
1371
  <div class="variablelist"><table border="0">
@@ -1335,7 +1373,13 @@ Indicates where scroll arrows should be placed.
1335
1373
  <tbody>
1336
1374
  <tr>
1337
1375
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
1338
- <td>the object which received the signal.</td>
1376
+ <td>the object which received the signal.
1377
+ </td>
1378
+ </tr>
1379
+ <tr>
1380
+ <td><p><span class="term"><em class="parameter"><code>arg1</code></em> :</span></p></td>
1381
+ <td>
1382
+ </td>
1339
1383
  </tr>
1340
1384
  <tr>
1341
1385
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1348,6 +1392,6 @@ Indicates where scroll arrows should be placed.
1348
1392
  </div>
1349
1393
  <div class="footer">
1350
1394
  <hr>
1351
- Generated by GTK-Doc V1.16.1</div>
1395
+ Generated by GTK-Doc V1.15</div>
1352
1396
  </body>
1353
1397
  </html>