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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (553) hide show
  1. data/ChangeLog +52 -0
  2. data/ext/gtk2/extconf.rb +18 -9
  3. data/ext/gtk2/rbgdk.h +3 -0
  4. data/ext/gtk2/rbgdkdragcontext.c +4 -4
  5. data/ext/gtk2/rbgdkevent.c +18 -5
  6. data/ext/gtk2/rbgdkpixmap.c +43 -48
  7. data/ext/gtk2/rbgdkproperty.c +6 -5
  8. data/ext/gtk2/rbgdkscreen.c +18 -74
  9. data/ext/gtk2/rbgdkselection.c +2 -2
  10. data/ext/gtk2/rbgdkwindow.c +11 -18
  11. data/ext/gtk2/rbgdkwindowattr.c +1 -1
  12. data/ext/gtk2/rbgtkaccelgroup.c +1 -1
  13. data/ext/gtk2/rbgtkaction.c +8 -26
  14. data/ext/gtk2/rbgtkactiongroup.c +6 -6
  15. data/ext/gtk2/rbgtkadjustment.c +20 -74
  16. data/ext/gtk2/rbgtkbindingset.c +1 -1
  17. data/ext/gtk2/rbgtkbuilder.c +2 -1
  18. data/ext/gtk2/rbgtkbutton.c +1 -9
  19. data/ext/gtk2/rbgtkcalendar.c +1 -1
  20. data/ext/gtk2/rbgtkcellrendererspinner.c +0 -3
  21. data/ext/gtk2/rbgtkcellrenderertext.c +1 -2
  22. data/ext/gtk2/rbgtkcellview.c +6 -11
  23. data/ext/gtk2/rbgtkcolorselectiondialog.c +2 -28
  24. data/ext/gtk2/rbgtkcombo.c +2 -2
  25. data/ext/gtk2/rbgtkcombobox.c +9 -29
  26. data/ext/gtk2/rbgtkcontainer.c +1 -1
  27. data/ext/gtk2/rbgtkcurve.c +4 -2
  28. data/ext/gtk2/rbgtkdialog.c +2 -3
  29. data/ext/gtk2/rbgtkdrag.c +3 -3
  30. data/ext/gtk2/rbgtkentry.c +2 -2
  31. data/ext/gtk2/rbgtkentrycompletion.c +1 -4
  32. data/ext/gtk2/rbgtkfilechooser.c +32 -29
  33. data/ext/gtk2/rbgtkfilechooserdialog.c +8 -6
  34. data/ext/gtk2/rbgtkfilefilter.c +8 -4
  35. data/ext/gtk2/rbgtkframe.c +3 -4
  36. data/ext/gtk2/rbgtkhandlebox.c +0 -7
  37. data/ext/gtk2/rbgtkicontheme.c +4 -13
  38. data/ext/gtk2/rbgtkiconview.c +4 -15
  39. data/ext/gtk2/rbgtkimcontext.c +1 -1
  40. data/ext/gtk2/rbgtkinvisible.c +5 -21
  41. data/ext/gtk2/rbgtkitemfactory.c +3 -3
  42. data/ext/gtk2/rbgtklabel.c +0 -2
  43. data/ext/gtk2/rbgtklinkbutton.c +0 -2
  44. data/ext/gtk2/rbgtkmain.c +7 -10
  45. data/ext/gtk2/rbgtkmenu.c +22 -74
  46. data/ext/gtk2/rbgtkmenuitem.c +16 -55
  47. data/ext/gtk2/rbgtkmenushell.c +3 -11
  48. data/ext/gtk2/rbgtkmessagedialog.c +11 -20
  49. data/ext/gtk2/rbgtknotebook.c +0 -1
  50. data/ext/gtk2/rbgtkoptionmenu.c +1 -2
  51. data/ext/gtk2/rbgtkprintjob.c +1 -2
  52. data/ext/gtk2/rbgtkprintoperation.c +0 -2
  53. data/ext/gtk2/rbgtkradioaction.c +2 -7
  54. data/ext/gtk2/rbgtkradiobutton.c +1 -1
  55. data/ext/gtk2/rbgtkradiomenuitem.c +4 -6
  56. data/ext/gtk2/rbgtkradiotoolbutton.c +2 -4
  57. data/ext/gtk2/rbgtkrange.c +1 -2
  58. data/ext/gtk2/rbgtkrc.c +8 -9
  59. data/ext/gtk2/rbgtkrcstyle.c +2 -2
  60. data/ext/gtk2/rbgtkrecentaction.c +0 -1
  61. data/ext/gtk2/rbgtkrecentchooser.c +3 -3
  62. data/ext/gtk2/rbgtkrecentdata.c +2 -9
  63. data/ext/gtk2/rbgtkrecentfilter.c +2 -1
  64. data/ext/gtk2/rbgtkrecentfilterinfo.c +5 -16
  65. data/ext/gtk2/rbgtkrecentinfo.c +2 -2
  66. data/ext/gtk2/rbgtkrecentmanager.c +1 -2
  67. data/ext/gtk2/rbgtkruler.c +6 -16
  68. data/ext/gtk2/rbgtkscalebutton.c +16 -48
  69. data/ext/gtk2/rbgtkscrolledwindow.c +1 -1
  70. data/ext/gtk2/rbgtkselectiondata.c +10 -34
  71. data/ext/gtk2/rbgtksettings.c +1 -1
  72. data/ext/gtk2/rbgtkspinner.c +0 -3
  73. data/ext/gtk2/rbgtkstatusbar.c +5 -16
  74. data/ext/gtk2/rbgtkstatusicon.c +2 -9
  75. data/ext/gtk2/rbgtkstock.c +4 -4
  76. data/ext/gtk2/rbgtktable.c +8 -13
  77. data/ext/gtk2/rbgtktextattributes.c +0 -2
  78. data/ext/gtk2/rbgtktextbuffer.c +17 -16
  79. data/ext/gtk2/rbgtktextmark.c +7 -14
  80. data/ext/gtk2/rbgtktexttag.c +1 -2
  81. data/ext/gtk2/rbgtktextview.c +3 -4
  82. data/ext/gtk2/rbgtktoggleaction.c +5 -16
  83. data/ext/gtk2/rbgtktogglebutton.c +1 -2
  84. data/ext/gtk2/rbgtktoggletoolbutton.c +5 -16
  85. data/ext/gtk2/rbgtktoolbar.c +8 -31
  86. data/ext/gtk2/rbgtktoolitem.c +3 -1
  87. data/ext/gtk2/rbgtktreerowreference.c +4 -4
  88. data/ext/gtk2/rbgtktreesortable.c +0 -3
  89. data/ext/gtk2/rbgtktreestore.c +10 -7
  90. data/ext/gtk2/rbgtktreeview.c +5 -8
  91. data/ext/gtk2/rbgtktreeviewcolumn.c +13 -34
  92. data/ext/gtk2/rbgtkuimanager.c +2 -3
  93. data/ext/gtk2/rbgtkwidget.c +24 -44
  94. data/ext/gtk2/rbgtkwindow.c +32 -92
  95. data/lib/1.8/gtk2.so +0 -0
  96. data/lib/1.9/gtk2.so +0 -0
  97. data/lib/gtk2/base.rb +1 -1
  98. data/vendor/local/bin/gtk-builder-convert +2 -29
  99. data/vendor/local/bin/gtk-demo.exe +0 -0
  100. data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
  101. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  102. data/vendor/local/bin/libgailutil-18.dll +0 -0
  103. data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
  104. data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
  105. data/vendor/local/etc/gtk-2.0/gtk.immodules +1 -1
  106. data/vendor/local/include/gtk-2.0/gdk/gdk.h +5 -2
  107. data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +0 -4
  108. data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +0 -2
  109. data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +0 -7
  110. data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +4 -7
  111. data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +1 -1
  112. data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +0 -1
  113. data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +0 -4
  114. data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +9 -13
  115. data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +0 -2
  116. data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +0 -5
  117. data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +6 -16
  118. data/vendor/local/include/gtk-2.0/gtk/gtk.h +0 -1
  119. data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +1 -5
  120. data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +3 -14
  121. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +0 -3
  122. data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +0 -4
  123. data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +0 -2
  124. data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +2 -2
  125. data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +3 -5
  126. data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +0 -6
  127. data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +0 -4
  128. data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +0 -2
  129. data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +4 -4
  130. data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +0 -4
  131. data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +1 -5
  132. data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +1 -2
  133. data/vendor/local/lib/gailutil.lib +0 -0
  134. data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
  135. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
  136. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
  137. data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
  138. data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
  139. data/vendor/local/lib/libgailutil.dll.a +0 -0
  140. data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
  141. data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
  142. data/vendor/local/lib/pkgconfig/gail.pc +1 -1
  143. data/vendor/local/lib/pkgconfig/gdk-2.0.pc +1 -1
  144. data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +1 -1
  145. data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +1 -1
  146. data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +1 -1
  147. data/vendor/local/manifest/{gtk+-dev_2.24.0-1_win32.mft → gtk+-dev_2.22.1-1_win32.mft} +6 -9
  148. data/vendor/local/manifest/{gtk+_2.24.0-1_win32.mft → gtk+_2.22.1-1_win32.mft} +6 -2
  149. data/vendor/local/share/doc/{gtk+-2.24.0 → gtk+-2.22.1}/COPYING +0 -0
  150. data/vendor/local/share/doc/{gtk+-dev-2.24.0 → gtk+-dev-2.22.1}/COPYING +0 -0
  151. data/vendor/local/share/gtk-2.0/demo/appwindow.c +21 -0
  152. data/vendor/local/share/gtk-2.0/demo/combobox.c +6 -6
  153. data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +1 -1
  154. data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +1 -1
  155. data/vendor/local/share/gtk-2.0/demo/sizegroup.c +2 -2
  156. data/vendor/local/share/gtk-2.0/demo/textview.c +4 -4
  157. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +94 -60
  158. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +58 -44
  159. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp +1 -1
  160. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +1 -1
  161. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +3 -3
  162. data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +3 -3
  163. data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +1 -2
  164. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +208 -151
  165. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +37 -33
  166. data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +239 -180
  167. data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +3 -3
  168. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +3 -3
  169. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +3 -3
  170. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +3 -3
  171. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +3 -3
  172. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +3 -3
  173. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +4 -4
  174. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +3 -3
  175. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +3 -3
  176. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +3 -3
  177. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +6 -6
  178. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +4 -4
  179. data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +5 -135
  180. data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +47 -83
  181. data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +23 -20
  182. data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +126 -126
  183. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +39 -81
  184. data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +199 -135
  185. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +90 -71
  186. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +200 -161
  187. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +409 -293
  188. data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +435 -320
  189. data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +141 -109
  190. data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +234 -155
  191. data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +217 -143
  192. data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +124 -103
  193. data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +250 -168
  194. data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +131 -90
  195. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +191 -143
  196. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +53 -35
  197. data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +195 -162
  198. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +112 -85
  199. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +137 -79
  200. data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +176 -144
  201. data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +235 -188
  202. data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +134 -97
  203. data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +35 -22
  204. data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +70 -44
  205. data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +108 -83
  206. data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +744 -653
  207. data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +490 -476
  208. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp +44 -53
  209. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +76 -85
  210. data/vendor/local/share/gtk-doc/html/gdk/index.html +4 -4
  211. data/vendor/local/share/gtk-doc/html/gdk/index.sgml +1 -10
  212. data/vendor/local/share/gtk-doc/html/gdk/multihead.html +9 -9
  213. data/vendor/local/share/gtk-doc/html/gdk/reference.html +3 -3
  214. data/vendor/local/share/gtk-doc/html/gdk/style.css +1 -2
  215. data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +3 -3
  216. data/vendor/local/share/gtk-doc/html/gtk/Actions.html +3 -3
  217. data/vendor/local/share/gtk-doc/html/gtk/Builder.html +3 -3
  218. data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +3 -3
  219. data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +3 -3
  220. data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +3 -3
  221. data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +186 -193
  222. data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +46 -38
  223. data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +18 -18
  224. data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +236 -169
  225. data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +258 -175
  226. data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +50 -46
  227. data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +114 -78
  228. data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +66 -52
  229. data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +36 -30
  230. data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +46 -36
  231. data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +118 -97
  232. data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +14 -14
  233. data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +120 -95
  234. data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +117 -86
  235. data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +137 -96
  236. data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +185 -152
  237. data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +76 -59
  238. data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +895 -615
  239. data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +1780 -509
  240. data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +163 -125
  241. data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +35 -33
  242. data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +87 -60
  243. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +130 -106
  244. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +44 -35
  245. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +32 -27
  246. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +25 -24
  247. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +25 -23
  248. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +20 -19
  249. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +20 -19
  250. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +74 -69
  251. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +54 -45
  252. data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +76 -57
  253. data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +34 -30
  254. data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +75 -53
  255. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +180 -104
  256. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +32 -29
  257. data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +81 -63
  258. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +186 -344
  259. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +46 -57
  260. data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +260 -311
  261. data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +79 -61
  262. data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +121 -97
  263. data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +23 -21
  264. data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +88 -68
  265. data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +470 -360
  266. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +104 -71
  267. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +185 -130
  268. data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +38 -33
  269. data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +96 -76
  270. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +403 -331
  271. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +89 -64
  272. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +35 -30
  273. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +26 -21
  274. data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +146 -102
  275. data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +49 -38
  276. data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +86 -60
  277. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +81 -66
  278. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +61 -52
  279. data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +58 -51
  280. data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +19 -18
  281. data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +20 -17
  282. data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +34 -29
  283. data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +13 -13
  284. data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +24 -30
  285. data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +101 -65
  286. data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +30 -25
  287. data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +18 -18
  288. data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +20 -19
  289. data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +66 -55
  290. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +182 -140
  291. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +22 -18
  292. data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +22 -18
  293. data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +248 -184
  294. data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +447 -321
  295. data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +195 -174
  296. data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +69 -58
  297. data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +80 -67
  298. data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +37 -32
  299. data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +41 -33
  300. data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +42 -36
  301. data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +272 -179
  302. data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +249 -197
  303. data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +76 -68
  304. data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +60 -51
  305. data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +180 -130
  306. data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +130 -80
  307. data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +168 -138
  308. data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +221 -177
  309. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +49 -41
  310. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +145 -112
  311. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +118 -86
  312. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +49 -73
  313. data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +81 -81
  314. data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +39 -33
  315. data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +452 -396
  316. data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +206 -148
  317. data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +25 -21
  318. data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +165 -80
  319. data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +66 -56
  320. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +160 -115
  321. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +25 -22
  322. data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +134 -94
  323. data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +44 -34
  324. data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +67 -51
  325. data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +136 -109
  326. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +53 -38
  327. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +68 -53
  328. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +403 -265
  329. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +94 -74
  330. data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +134 -100
  331. data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +111 -80
  332. data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +108 -91
  333. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +53 -42
  334. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +79 -86
  335. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +71 -63
  336. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +42 -33
  337. data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +185 -218
  338. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +41 -34
  339. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +194 -135
  340. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +29 -27
  341. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +30 -25
  342. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +19 -17
  343. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +85 -63
  344. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +269 -202
  345. data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +58 -83
  346. data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +72 -61
  347. data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +83 -64
  348. data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +21 -21
  349. data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +143 -93
  350. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +13 -13
  351. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +18 -17
  352. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +27 -24
  353. data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +259 -129
  354. data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +45 -38
  355. data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +53 -44
  356. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +177 -132
  357. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +25 -24
  358. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +254 -190
  359. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +75 -60
  360. data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +928 -546
  361. data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +135 -94
  362. data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +19 -18
  363. data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +140 -97
  364. data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +656 -494
  365. data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +46 -41
  366. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +194 -164
  367. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +76 -84
  368. data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +425 -340
  369. data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +94 -74
  370. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +57 -43
  371. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +71 -59
  372. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +38 -32
  373. data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +85 -74
  374. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +166 -133
  375. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +103 -84
  376. data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +139 -116
  377. data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +59 -42
  378. data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +360 -249
  379. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +27 -27
  380. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +70 -60
  381. data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +152 -105
  382. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +134 -46
  383. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +557 -428
  384. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +126 -95
  385. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +70 -63
  386. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +171 -123
  387. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +62 -53
  388. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +199 -170
  389. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +863 -565
  390. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +282 -203
  391. data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +189 -125
  392. data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +20 -17
  393. data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +34 -27
  394. data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +14 -14
  395. data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +24 -31
  396. data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +29 -24
  397. data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +18 -18
  398. data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +18 -17
  399. data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +69 -58
  400. data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +17 -16
  401. data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +1579 -1278
  402. data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +532 -380
  403. data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +39 -21
  404. data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +3 -3
  405. data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +3 -6
  406. data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +3 -3
  407. data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +3 -3
  408. data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +3 -3
  409. data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +3 -3
  410. data/vendor/local/share/gtk-doc/html/gtk/Printing.html +4 -4
  411. data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +3 -3
  412. data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +3 -3
  413. data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +3 -3
  414. data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +3 -3
  415. data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +15 -15
  416. data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +4 -4
  417. data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +16 -16
  418. data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +3 -3
  419. data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +3 -3
  420. data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +11 -17
  421. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +20 -20
  422. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +6 -6
  423. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +3 -3
  424. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +4 -4
  425. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +3 -3
  426. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +5 -5
  427. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +3 -3
  428. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +5 -5
  429. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +28 -28
  430. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +3 -3
  431. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +7 -7
  432. data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +45 -236
  433. data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +385 -469
  434. data/vendor/local/share/gtk-doc/html/gtk/ch01.html +4 -15
  435. data/vendor/local/share/gtk-doc/html/gtk/ch02.html +4 -4
  436. data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +12 -12
  437. data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +4 -4
  438. data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +4 -4
  439. data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +4 -4
  440. data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +3 -3
  441. data/vendor/local/share/gtk-doc/html/gtk/glossary.html +3 -3
  442. data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +124 -69
  443. data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +211 -149
  444. data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +293 -189
  445. data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +246 -175
  446. data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +41 -35
  447. data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +47 -41
  448. data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +318 -270
  449. data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +22 -16
  450. data/vendor/local/share/gtk-doc/html/gtk/{GtkPaperSize.html → gtk-GtkPaperSize.html} +252 -204
  451. data/vendor/local/share/gtk-doc/html/gtk/{GtkTextIter.html → gtk-GtkTextIter.html} +806 -664
  452. data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +82 -75
  453. data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +289 -221
  454. data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +232 -142
  455. data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +20 -17
  456. data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +190 -150
  457. data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +408 -328
  458. data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +306 -190
  459. data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +53 -53
  460. data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +158 -152
  461. data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +136 -85
  462. data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +239 -204
  463. data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +343 -271
  464. data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +11 -18
  465. data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +20 -20
  466. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +5 -5
  467. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +5 -5
  468. data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +5 -5
  469. data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +7 -7
  470. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +75 -63
  471. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +75 -58
  472. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +3 -3
  473. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +3 -3
  474. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +4 -4
  475. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +4 -4
  476. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +10 -5
  477. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +3 -3
  478. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +4 -4
  479. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +5 -5
  480. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +3 -3
  481. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +3 -3
  482. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +5 -5
  483. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +7 -7
  484. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +3 -3
  485. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +3 -3
  486. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +3 -3
  487. data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +6 -6
  488. data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +10 -10
  489. data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +90 -90
  490. data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +9 -9
  491. data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +31 -39
  492. data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +10 -10
  493. data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +14 -14
  494. data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +12 -12
  495. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp +412 -445
  496. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +455 -488
  497. data/vendor/local/share/gtk-doc/html/gtk/gtk.html +4 -4
  498. data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +3 -3
  499. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +3 -3
  500. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +3 -3
  501. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +3 -3
  502. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +5 -5
  503. data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +5 -8
  504. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +3 -3
  505. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +3 -3
  506. data/vendor/local/share/gtk-doc/html/gtk/index.html +6 -10
  507. data/vendor/local/share/gtk-doc/html/gtk/index.sgml +142 -194
  508. data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +3 -3
  509. data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +17 -17
  510. data/vendor/local/share/gtk-doc/html/gtk/migrating.html +4 -4
  511. data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +3 -3
  512. data/vendor/local/share/gtk-doc/html/gtk/pt05.html +4 -4
  513. data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +3 -3
  514. data/vendor/local/share/gtk-doc/html/gtk/style.css +1 -2
  515. data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +3 -3
  516. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
  517. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
  518. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
  519. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
  520. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
  521. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
  522. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
  523. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
  524. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
  525. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
  526. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
  527. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
  528. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
  529. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
  530. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
  531. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
  532. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20-properties.mo +0 -0
  533. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20.mo +0 -0
  534. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20-properties.mo +0 -0
  535. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20.mo +0 -0
  536. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
  537. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
  538. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
  539. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
  540. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
  541. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
  542. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
  543. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
  544. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
  545. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
  546. data/vendor/local/src/tml/packaging/gtk+_2.22.1-1_win32.log +5048 -0
  547. data/vendor/local/src/tml/packaging/{gtk+_2.24.0-1_win32.sh → gtk+_2.22.1-1_win32.sh} +2 -2
  548. metadata +25 -25
  549. data/vendor/local/etc/gtk-2.0/gtkrc +0 -1
  550. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +0 -77
  551. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +0 -301
  552. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +0 -117
  553. data/vendor/local/src/tml/packaging/gtk+_2.24.0-1_win32.log +0 -4934
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="DisplayWidgets.html" title="Display Widgets">
9
9
  <link rel="prev" href="DisplayWidgets.html" title="Display Widgets">
10
10
  <link rel="next" href="GtkImage.html" title="GtkImage">
11
- <meta name="generator" content="GTK-Doc V1.16.1 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.15 (XML mode)">
12
12
  <link rel="stylesheet" href="style.css" type="text/css">
13
13
  </head>
14
14
  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -32,7 +32,7 @@
32
32
  <a href="#GtkAccelLabel.properties" class="shortcut">Properties</a>
33
33
  </td></tr>
34
34
  </table>
35
- <div class="refentry">
35
+ <div class="refentry" title="GtkAccelLabel">
36
36
  <a name="GtkAccelLabel"></a><div class="titlepage"></div>
37
37
  <div class="refnamediv"><table width="100%"><tr>
38
38
  <td valign="top">
@@ -41,23 +41,23 @@
41
41
  </td>
42
42
  <td valign="top" align="right"><img src="accel-label.png"></td>
43
43
  </tr></table></div>
44
- <div class="refsynopsisdiv">
44
+ <div class="refsynopsisdiv" title="Synopsis">
45
45
  <a name="GtkAccelLabel.synopsis"></a><h2>Synopsis</h2>
46
46
  <pre class="synopsis">
47
47
  #include &lt;gtk/gtk.h&gt;
48
48
 
49
- struct <a class="link" href="GtkAccelLabel.html#GtkAccelLabel-struct" title="struct GtkAccelLabel">GtkAccelLabel</a>;
50
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkAccelLabel.html#gtk-accel-label-new" title="gtk_accel_label_new ()">gtk_accel_label_new</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *string</code></em>);
49
+ <a class="link" href="GtkAccelLabel.html#GtkAccelLabel-struct" title="GtkAccelLabel">GtkAccelLabel</a>;
50
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkAccelLabel.html#gtk-accel-label-new" title="gtk_accel_label_new ()">gtk_accel_label_new</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *string</code></em>);
51
51
  <span class="returnvalue">void</span> <a class="link" href="GtkAccelLabel.html#gtk-accel-label-set-accel-closure" title="gtk_accel_label_set_accel_closure ()">gtk_accel_label_set_accel_closure</a> (<em class="parameter"><code><a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a> *accel_label</code></em>,
52
52
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GClosure"><span class="type">GClosure</span></a> *accel_closure</code></em>);
53
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkAccelLabel.html#gtk-accel-label-get-accel-widget" title="gtk_accel_label_get_accel_widget ()">gtk_accel_label_get_accel_widget</a> (<em class="parameter"><code><a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a> *accel_label</code></em>);
53
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkAccelLabel.html#gtk-accel-label-get-accel-widget" title="gtk_accel_label_get_accel_widget ()">gtk_accel_label_get_accel_widget</a> (<em class="parameter"><code><a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a> *accel_label</code></em>);
54
54
  <span class="returnvalue">void</span> <a class="link" href="GtkAccelLabel.html#gtk-accel-label-set-accel-widget" title="gtk_accel_label_set_accel_widget ()">gtk_accel_label_set_accel_widget</a> (<em class="parameter"><code><a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a> *accel_label</code></em>,
55
55
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *accel_widget</code></em>);
56
56
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> <a class="link" href="GtkAccelLabel.html#gtk-accel-label-get-accel-width" title="gtk_accel_label_get_accel_width ()">gtk_accel_label_get_accel_width</a> (<em class="parameter"><code><a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a> *accel_label</code></em>);
57
57
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkAccelLabel.html#gtk-accel-label-refetch" title="gtk_accel_label_refetch ()">gtk_accel_label_refetch</a> (<em class="parameter"><code><a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a> *accel_label</code></em>);
58
58
  </pre>
59
59
  </div>
60
- <div class="refsect1">
60
+ <div class="refsect1" title="Object Hierarchy">
61
61
  <a name="GtkAccelLabel.object-hierarchy"></a><h2>Object Hierarchy</h2>
62
62
  <pre class="synopsis">
63
63
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -69,20 +69,20 @@ struct <a class="link" href="GtkAccelLabel.html#GtkAccelLabel-struc
69
69
  +----GtkAccelLabel
70
70
  </pre>
71
71
  </div>
72
- <div class="refsect1">
72
+ <div class="refsect1" title="Implemented Interfaces">
73
73
  <a name="GtkAccelLabel.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
74
74
  <p>
75
75
  GtkAccelLabel implements
76
76
  AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
77
77
  </div>
78
- <div class="refsect1">
78
+ <div class="refsect1" title="Properties">
79
79
  <a name="GtkAccelLabel.properties"></a><h2>Properties</h2>
80
80
  <pre class="synopsis">
81
81
  "<a class="link" href="GtkAccelLabel.html#GtkAccelLabel--accel-closure" title='The "accel-closure" property'>accel-closure</a>" <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GClosure"><span class="type">GClosure</span></a>* : Read / Write
82
82
  "<a class="link" href="GtkAccelLabel.html#GtkAccelLabel--accel-widget" title='The "accel-widget" property'>accel-widget</a>" <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>* : Read / Write
83
83
  </pre>
84
84
  </div>
85
- <div class="refsect1">
85
+ <div class="refsect1" title="Description">
86
86
  <a name="GtkAccelLabel.description"></a><h2>Description</h2>
87
87
  <p>
88
88
  The <a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a> widget is a subclass of <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> that also displays an
@@ -115,7 +115,7 @@ A <a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="t
115
115
  though it is almost always used to display just one accelerator key.
116
116
  </p>
117
117
  <div class="example">
118
- <a name="id460594"></a><p class="title"><b>Example 11. Creating a simple menu item with an accelerator key.</b></p>
118
+ <a name="id423410"></a><p class="title"><b>Example 11. Creating a simple menu item with an accelerator key.</b></p>
119
119
  <div class="example-contents">
120
120
  <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
121
121
  <tbody>
@@ -165,20 +165,20 @@ though it is almost always used to display just one accelerator key.
165
165
  <p><br class="example-break">
166
166
  </p>
167
167
  </div>
168
- <div class="refsect1">
168
+ <div class="refsect1" title="Details">
169
169
  <a name="GtkAccelLabel.details"></a><h2>Details</h2>
170
- <div class="refsect2">
171
- <a name="GtkAccelLabel-struct"></a><h3>struct GtkAccelLabel</h3>
172
- <pre class="programlisting">struct GtkAccelLabel;</pre>
170
+ <div class="refsect2" title="GtkAccelLabel">
171
+ <a name="GtkAccelLabel-struct"></a><h3>GtkAccelLabel</h3>
172
+ <pre class="programlisting">typedef struct _GtkAccelLabel GtkAccelLabel;</pre>
173
173
  <p>
174
- The <a class="link" href="GtkAccelLabel.html#GtkAccelLabel-struct" title="struct GtkAccelLabel"><span class="type">GtkAccelLabel</span></a> struct contains private data only, and
174
+ The <a class="link" href="GtkAccelLabel.html#GtkAccelLabel-struct" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a> struct contains private data only, and
175
175
  should be accessed using the functions below.
176
176
  </p>
177
177
  </div>
178
178
  <hr>
179
- <div class="refsect2">
179
+ <div class="refsect2" title="gtk_accel_label_new ()">
180
180
  <a name="gtk-accel-label-new"></a><h3>gtk_accel_label_new ()</h3>
181
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_accel_label_new (<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> *string</code></em>);</pre>
181
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_accel_label_new (<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> *string</code></em>);</pre>
182
182
  <p>
183
183
  Creates a new <a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a>.
184
184
  </p>
@@ -187,17 +187,19 @@ Creates a new <a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><s
187
187
  <tbody>
188
188
  <tr>
189
189
  <td><p><span class="term"><em class="parameter"><code>string</code></em> :</span></p></td>
190
- <td>the label string. Must be non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</td>
190
+ <td>the label string. Must be non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
191
+ </td>
191
192
  </tr>
192
193
  <tr>
193
194
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
194
- <td>a new <a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a>.</td>
195
+ <td> a new <a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a>.
196
+ </td>
195
197
  </tr>
196
198
  </tbody>
197
199
  </table></div>
198
200
  </div>
199
201
  <hr>
200
- <div class="refsect2">
202
+ <div class="refsect2" title="gtk_accel_label_set_accel_closure ()">
201
203
  <a name="gtk-accel-label-set-accel-closure"></a><h3>gtk_accel_label_set_accel_closure ()</h3>
202
204
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_accel_label_set_accel_closure (<em class="parameter"><code><a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a> *accel_label</code></em>,
203
205
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GClosure"><span class="type">GClosure</span></a> *accel_closure</code></em>);</pre>
@@ -215,15 +217,16 @@ must be connected to an accelerator group; see <a class="link" href="gtk-Keyboar
215
217
  </tr>
216
218
  <tr>
217
219
  <td><p><span class="term"><em class="parameter"><code>accel_closure</code></em> :</span></p></td>
218
- <td>the closure to monitor for accelerator changes.</td>
220
+ <td>the closure to monitor for accelerator changes.
221
+ </td>
219
222
  </tr>
220
223
  </tbody>
221
224
  </table></div>
222
225
  </div>
223
226
  <hr>
224
- <div class="refsect2">
227
+ <div class="refsect2" title="gtk_accel_label_get_accel_widget ()">
225
228
  <a name="gtk-accel-label-get-accel-widget"></a><h3>gtk_accel_label_get_accel_widget ()</h3>
226
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_accel_label_get_accel_widget (<em class="parameter"><code><a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a> *accel_label</code></em>);</pre>
229
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_accel_label_get_accel_widget (<em class="parameter"><code><a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a> *accel_label</code></em>);</pre>
227
230
  <p>
228
231
  Fetches the widget monitored by this accelerator label. See
229
232
  <a class="link" href="GtkAccelLabel.html#gtk-accel-label-set-accel-widget" title="gtk_accel_label_set_accel_widget ()"><code class="function">gtk_accel_label_set_accel_widget()</code></a>.
@@ -238,14 +241,14 @@ Fetches the widget monitored by this accelerator label. See
238
241
  </tr>
239
242
  <tr>
240
243
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
241
- <td>the object monitored by the accelerator label, 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="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
244
+ <td> the object monitored by the accelerator label, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
242
245
  </td>
243
246
  </tr>
244
247
  </tbody>
245
248
  </table></div>
246
249
  </div>
247
250
  <hr>
248
- <div class="refsect2">
251
+ <div class="refsect2" title="gtk_accel_label_set_accel_widget ()">
249
252
  <a name="gtk-accel-label-set-accel-widget"></a><h3>gtk_accel_label_set_accel_widget ()</h3>
250
253
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_accel_label_set_accel_widget (<em class="parameter"><code><a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a> *accel_label</code></em>,
251
254
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *accel_widget</code></em>);</pre>
@@ -262,13 +265,14 @@ Sets the widget to be monitored by this accelerator label.
262
265
  </tr>
263
266
  <tr>
264
267
  <td><p><span class="term"><em class="parameter"><code>accel_widget</code></em> :</span></p></td>
265
- <td>the widget to be monitored.</td>
268
+ <td>the widget to be monitored.
269
+ </td>
266
270
  </tr>
267
271
  </tbody>
268
272
  </table></div>
269
273
  </div>
270
274
  <hr>
271
- <div class="refsect2">
275
+ <div class="refsect2" title="gtk_accel_label_get_accel_width ()">
272
276
  <a name="gtk-accel-label-get-accel-width"></a><h3>gtk_accel_label_get_accel_width ()</h3>
273
277
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> gtk_accel_label_get_accel_width (<em class="parameter"><code><a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a> *accel_label</code></em>);</pre>
274
278
  <p>
@@ -281,17 +285,19 @@ be needed by applications.
281
285
  <tbody>
282
286
  <tr>
283
287
  <td><p><span class="term"><em class="parameter"><code>accel_label</code></em> :</span></p></td>
284
- <td>a <a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a>.</td>
288
+ <td>a <a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a>.
289
+ </td>
285
290
  </tr>
286
291
  <tr>
287
292
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
288
- <td>the width needed to display the accelerator key(s).</td>
293
+ <td> the width needed to display the accelerator key(s).
294
+ </td>
289
295
  </tr>
290
296
  </tbody>
291
297
  </table></div>
292
298
  </div>
293
299
  <hr>
294
- <div class="refsect2">
300
+ <div class="refsect2" title="gtk_accel_label_refetch ()">
295
301
  <a name="gtk-accel-label-refetch"></a><h3>gtk_accel_label_refetch ()</h3>
296
302
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_accel_label_refetch (<em class="parameter"><code><a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a> *accel_label</code></em>);</pre>
297
303
  <p>
@@ -304,37 +310,39 @@ accelerators are added or removed from the associated widget.
304
310
  <tbody>
305
311
  <tr>
306
312
  <td><p><span class="term"><em class="parameter"><code>accel_label</code></em> :</span></p></td>
307
- <td>a <a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a>.</td>
313
+ <td>a <a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel"><span class="type">GtkAccelLabel</span></a>.
314
+ </td>
308
315
  </tr>
309
316
  <tr>
310
317
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
311
- <td>always returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</td>
318
+ <td> always returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.
319
+ </td>
312
320
  </tr>
313
321
  </tbody>
314
322
  </table></div>
315
323
  </div>
316
324
  </div>
317
- <div class="refsect1">
325
+ <div class="refsect1" title="Property Details">
318
326
  <a name="GtkAccelLabel.property-details"></a><h2>Property Details</h2>
319
- <div class="refsect2">
327
+ <div class="refsect2" title='The "accel-closure" property'>
320
328
  <a name="GtkAccelLabel--accel-closure"></a><h3>The <code class="literal">"accel-closure"</code> property</h3>
321
329
  <pre class="programlisting"> "accel-closure" <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GClosure"><span class="type">GClosure</span></a>* : Read / Write</pre>
322
330
  <p>The closure to be monitored for accelerator changes.</p>
323
331
  </div>
324
332
  <hr>
325
- <div class="refsect2">
333
+ <div class="refsect2" title='The "accel-widget" property'>
326
334
  <a name="GtkAccelLabel--accel-widget"></a><h3>The <code class="literal">"accel-widget"</code> property</h3>
327
335
  <pre class="programlisting"> "accel-widget" <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>* : Read / Write</pre>
328
336
  <p>The widget to be monitored for accelerator changes.</p>
329
337
  </div>
330
338
  </div>
331
- <div class="refsect1">
339
+ <div class="refsect1" title="See Also">
332
340
  <a name="GtkAccelLabel.see-also"></a><h2>See Also</h2>
333
341
  <a class="link" href="GtkItemFactory.html" title="GtkItemFactory"><span class="type">GtkItemFactory</span></a>, <a class="link" href="gtk-Keyboard-Accelerators.html#GtkAccelGroup"><span class="type">GtkAccelGroup</span></a>
334
342
  </div>
335
343
  </div>
336
344
  <div class="footer">
337
345
  <hr>
338
- Generated by GTK-Doc V1.16.1</div>
346
+ Generated by GTK-Doc V1.15</div>
339
347
  </body>
340
348
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="MiscObjects.html" title="Miscellaneous">
9
9
  <link rel="prev" href="GtkViewport.html" title="GtkViewport">
10
10
  <link rel="next" href="AbstractObjects.html" title="Abstract Base Classes">
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">
@@ -28,7 +28,7 @@
28
28
  <a href="#GtkAccessible.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
29
  </td></tr>
30
30
  </table>
31
- <div class="refentry">
31
+ <div class="refentry" title="GtkAccessible">
32
32
  <a name="GtkAccessible"></a><div class="titlepage"></div>
33
33
  <div class="refnamediv"><table width="100%"><tr>
34
34
  <td valign="top">
@@ -37,20 +37,20 @@
37
37
  </td>
38
38
  <td valign="top" align="right"></td>
39
39
  </tr></table></div>
40
- <div class="refsynopsisdiv">
40
+ <div class="refsynopsisdiv" title="Synopsis">
41
41
  <a name="GtkAccessible.synopsis"></a><h2>Synopsis</h2>
42
42
  <pre class="synopsis">
43
43
  #include &lt;gtk/gtk.h&gt;
44
44
 
45
- struct <a class="link" href="GtkAccessible.html#GtkAccessible-struct" title="struct GtkAccessible">GtkAccessible</a>;
45
+ <a class="link" href="GtkAccessible.html#GtkAccessible-struct" title="GtkAccessible">GtkAccessible</a>;
46
46
  <span class="returnvalue">void</span> <a class="link" href="GtkAccessible.html#gtk-accessible-connect-widget-destroyed" title="gtk_accessible_connect_widget_destroyed ()">gtk_accessible_connect_widget_destroyed</a>
47
47
  (<em class="parameter"><code><a class="link" href="GtkAccessible.html" title="GtkAccessible"><span class="type">GtkAccessible</span></a> *accessible</code></em>);
48
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkAccessible.html#gtk-accessible-get-widget" title="gtk_accessible_get_widget ()">gtk_accessible_get_widget</a> (<em class="parameter"><code><a class="link" href="GtkAccessible.html" title="GtkAccessible"><span class="type">GtkAccessible</span></a> *accessible</code></em>);
48
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkAccessible.html#gtk-accessible-get-widget" title="gtk_accessible_get_widget ()">gtk_accessible_get_widget</a> (<em class="parameter"><code><a class="link" href="GtkAccessible.html" title="GtkAccessible"><span class="type">GtkAccessible</span></a> *accessible</code></em>);
49
49
  <span class="returnvalue">void</span> <a class="link" href="GtkAccessible.html#gtk-accessible-set-widget" title="gtk_accessible_set_widget ()">gtk_accessible_set_widget</a> (<em class="parameter"><code><a class="link" href="GtkAccessible.html" title="GtkAccessible"><span class="type">GtkAccessible</span></a> *accessible</code></em>,
50
50
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
51
51
  </pre>
52
52
  </div>
53
- <div class="refsect1">
53
+ <div class="refsect1" title="Object Hierarchy">
54
54
  <a name="GtkAccessible.object-hierarchy"></a><h2>Object Hierarchy</h2>
55
55
  <pre class="synopsis">
56
56
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -58,19 +58,19 @@ struct <a class="link" href="GtkAccessible.html#GtkAccessible-struc
58
58
  +----GtkAccessible
59
59
  </pre>
60
60
  </div>
61
- <div class="refsect1">
61
+ <div class="refsect1" title="Description">
62
62
  <a name="GtkAccessible.description"></a><h2>Description</h2>
63
63
  </div>
64
- <div class="refsect1">
64
+ <div class="refsect1" title="Details">
65
65
  <a name="GtkAccessible.details"></a><h2>Details</h2>
66
- <div class="refsect2">
67
- <a name="GtkAccessible-struct"></a><h3>struct GtkAccessible</h3>
68
- <pre class="programlisting">struct GtkAccessible;</pre>
66
+ <div class="refsect2" title="GtkAccessible">
67
+ <a name="GtkAccessible-struct"></a><h3>GtkAccessible</h3>
68
+ <pre class="programlisting">typedef struct _GtkAccessible GtkAccessible;</pre>
69
69
  <p>
70
70
  </p>
71
71
  </div>
72
72
  <hr>
73
- <div class="refsect2">
73
+ <div class="refsect2" title="gtk_accessible_connect_widget_destroyed ()">
74
74
  <a name="gtk-accessible-connect-widget-destroyed"></a><h3>gtk_accessible_connect_widget_destroyed ()</h3>
75
75
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_accessible_connect_widget_destroyed
76
76
  (<em class="parameter"><code><a class="link" href="GtkAccessible.html" title="GtkAccessible"><span class="type">GtkAccessible</span></a> *accessible</code></em>);</pre>
@@ -88,9 +88,9 @@ corresponding to a GtkAccessible is destroyed.
88
88
  </table></div>
89
89
  </div>
90
90
  <hr>
91
- <div class="refsect2">
91
+ <div class="refsect2" title="gtk_accessible_get_widget ()">
92
92
  <a name="gtk-accessible-get-widget"></a><h3>gtk_accessible_get_widget ()</h3>
93
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_accessible_get_widget (<em class="parameter"><code><a class="link" href="GtkAccessible.html" title="GtkAccessible"><span class="type">GtkAccessible</span></a> *accessible</code></em>);</pre>
93
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_accessible_get_widget (<em class="parameter"><code><a class="link" href="GtkAccessible.html" title="GtkAccessible"><span class="type">GtkAccessible</span></a> *accessible</code></em>);</pre>
94
94
  <p>
95
95
  Gets the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> corresponding to the <a class="link" href="GtkAccessible.html" title="GtkAccessible"><span class="type">GtkAccessible</span></a>. The returned widget
96
96
  does not have a reference added, so you do not need to unref it.
@@ -105,8 +105,8 @@ does not have a reference added, so you do not need to unref it.
105
105
  </tr>
106
106
  <tr>
107
107
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
108
- <td>pointer to the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> corresponding to
109
- the <a class="link" href="GtkAccessible.html" title="GtkAccessible"><span class="type">GtkAccessible</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
108
+ <td> pointer to the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> corresponding to
109
+ the <a class="link" href="GtkAccessible.html" title="GtkAccessible"><span class="type">GtkAccessible</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
110
110
  </td>
111
111
  </tr>
112
112
  </tbody>
@@ -114,7 +114,7 @@ the <a class="link" href="GtkAccessible.html" title="GtkAccessible"><span class=
114
114
  <p class="since">Since 2.22</p>
115
115
  </div>
116
116
  <hr>
117
- <div class="refsect2">
117
+ <div class="refsect2" title="gtk_accessible_set_widget ()">
118
118
  <a name="gtk-accessible-set-widget"></a><h3>gtk_accessible_set_widget ()</h3>
119
119
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_accessible_set_widget (<em class="parameter"><code><a class="link" href="GtkAccessible.html" title="GtkAccessible"><span class="type">GtkAccessible</span></a> *accessible</code></em>,
120
120
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
@@ -142,6 +142,6 @@ Sets the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="ty
142
142
  </div>
143
143
  <div class="footer">
144
144
  <hr>
145
- Generated by GTK-Doc V1.16.1</div>
145
+ Generated by GTK-Doc V1.15</div>
146
146
  </body>
147
147
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="Actions.html" title="Action-based menus and toolbars">
9
9
  <link rel="prev" href="GtkActionGroup.html" title="GtkActionGroup">
10
10
  <link rel="next" href="GtkToggleAction.html" title="GtkToggleAction">
11
- <meta name="generator" content="GTK-Doc V1.16.1 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.15 (XML mode)">
12
12
  <link rel="stylesheet" href="style.css" type="text/css">
13
13
  </head>
14
14
  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -34,7 +34,7 @@
34
34
  <a href="#GtkAction.signals" class="shortcut">Signals</a>
35
35
  </td></tr>
36
36
  </table>
37
- <div class="refentry">
37
+ <div class="refentry" title="GtkAction">
38
38
  <a name="GtkAction"></a><div class="titlepage"></div>
39
39
  <div class="refnamediv"><table width="100%"><tr>
40
40
  <td valign="top">
@@ -43,17 +43,17 @@
43
43
  </td>
44
44
  <td valign="top" align="right"></td>
45
45
  </tr></table></div>
46
- <div class="refsynopsisdiv">
46
+ <div class="refsynopsisdiv" title="Synopsis">
47
47
  <a name="GtkAction.synopsis"></a><h2>Synopsis</h2>
48
48
  <pre class="synopsis">
49
49
  #include &lt;gtk/gtk.h&gt;
50
50
 
51
- struct <a class="link" href="GtkAction.html#GtkAction-struct" title="struct GtkAction">GtkAction</a>;
51
+ <a class="link" href="GtkAction.html#GtkAction-struct" title="GtkAction">GtkAction</a>;
52
52
  <a class="link" href="GtkAction.html" title="GtkAction"><span class="returnvalue">GtkAction</span></a> * <a class="link" href="GtkAction.html#gtk-action-new" title="gtk_action_new ()">gtk_action_new</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>,
53
53
  <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> *label</code></em>,
54
54
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *tooltip</code></em>,
55
55
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *stock_id</code></em>);
56
- 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="GtkAction.html#gtk-action-get-name" title="gtk_action_get_name ()">gtk_action_get_name</a> (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);
56
+ 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="GtkAction.html#gtk-action-get-name" title="gtk_action_get_name ()">gtk_action_get_name</a> (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);
57
57
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkAction.html#gtk-action-is-sensitive" title="gtk_action_is_sensitive ()">gtk_action_is_sensitive</a> (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);
58
58
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkAction.html#gtk-action-get-sensitive" title="gtk_action_get_sensitive ()">gtk_action_get_sensitive</a> (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);
59
59
  <span class="returnvalue">void</span> <a class="link" href="GtkAction.html#gtk-action-set-sensitive" title="gtk_action_set_sensitive ()">gtk_action_set_sensitive</a> (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
@@ -119,7 +119,7 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
119
119
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkAction.html#gtk-action-get-is-important" title="gtk_action_get_is_important ()">gtk_action_get_is_important</a> (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);
120
120
  </pre>
121
121
  </div>
122
- <div class="refsect1">
122
+ <div class="refsect1" title="Object Hierarchy">
123
123
  <a name="GtkAction.object-hierarchy"></a><h2>Object Hierarchy</h2>
124
124
  <pre class="synopsis">
125
125
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -128,13 +128,13 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
128
128
  +----<a class="link" href="GtkRecentAction.html" title="GtkRecentAction">GtkRecentAction</a>
129
129
  </pre>
130
130
  </div>
131
- <div class="refsect1">
131
+ <div class="refsect1" title="Implemented Interfaces">
132
132
  <a name="GtkAction.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
133
133
  <p>
134
134
  GtkAction implements
135
135
  <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
136
136
  </div>
137
- <div class="refsect1">
137
+ <div class="refsect1" title="Properties">
138
138
  <a name="GtkAction.properties"></a><h2>Properties</h2>
139
139
  <pre class="synopsis">
140
140
  "<a class="link" href="GtkAction.html#GtkAction--action-group" title='The "action-group" property'>action-group</a>" <a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a>* : Read / Write
@@ -155,13 +155,13 @@ GtkAction implements
155
155
  "<a class="link" href="GtkAction.html#GtkAction--visible-vertical" title='The "visible-vertical" property'>visible-vertical</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
156
156
  </pre>
157
157
  </div>
158
- <div class="refsect1">
158
+ <div class="refsect1" title="Signals">
159
159
  <a name="GtkAction.signals"></a><h2>Signals</h2>
160
160
  <pre class="synopsis">
161
- "<a class="link" href="GtkAction.html#GtkAction-activate" title='The "activate" signal'>activate</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-NO-RECURSE:CAPS"><code class="literal">No Recursion</code></a>
161
+ "<a class="link" href="GtkAction.html#GtkAction-activate" title='The "activate" signal'>activate</a>" : Run First / No Recursion
162
162
  </pre>
163
163
  </div>
164
- <div class="refsect1">
164
+ <div class="refsect1" title="Description">
165
165
  <a name="GtkAction.description"></a><h2>Description</h2>
166
166
  <p>
167
167
  Actions represent operations that the user can be perform, along with
@@ -202,16 +202,16 @@ the action's state changes. When the proxy is activated, it should
202
202
  activate its action.
203
203
  </p>
204
204
  </div>
205
- <div class="refsect1">
205
+ <div class="refsect1" title="Details">
206
206
  <a name="GtkAction.details"></a><h2>Details</h2>
207
- <div class="refsect2">
208
- <a name="GtkAction-struct"></a><h3>struct GtkAction</h3>
209
- <pre class="programlisting">struct GtkAction;</pre>
207
+ <div class="refsect2" title="GtkAction">
208
+ <a name="GtkAction-struct"></a><h3>GtkAction</h3>
209
+ <pre class="programlisting">typedef struct _GtkAction GtkAction;</pre>
210
210
  <p>
211
211
  </p>
212
212
  </div>
213
213
  <hr>
214
- <div class="refsect2">
214
+ <div class="refsect2" title="gtk_action_new ()">
215
215
  <a name="gtk-action-new"></a><h3>gtk_action_new ()</h3>
216
216
  <pre class="programlisting"><a class="link" href="GtkAction.html" title="GtkAction"><span class="returnvalue">GtkAction</span></a> * gtk_action_new (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>,
217
217
  <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> *label</code></em>,
@@ -229,27 +229,29 @@ names.
229
229
  <tbody>
230
230
  <tr>
231
231
  <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
232
- <td>A unique name for the action</td>
232
+ <td>A unique name for the action
233
+ </td>
233
234
  </tr>
234
235
  <tr>
235
236
  <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
236
- <td>the label displayed in menu items and on buttons, 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>
237
+ <td> the label displayed in menu items and on buttons, 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>
237
238
  </td>
238
239
  </tr>
239
240
  <tr>
240
241
  <td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
241
- <td>a tooltip for the action, 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>
242
+ <td> a tooltip for the action, 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>
242
243
  </td>
243
244
  </tr>
244
245
  <tr>
245
246
  <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
246
247
  <td>the stock icon to display in widgets representing the
247
- action, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
248
+ action, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
248
249
  </td>
249
250
  </tr>
250
251
  <tr>
251
252
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
252
- <td>a new <a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a>
253
+ <td> a new <a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a>
254
+
253
255
  </td>
254
256
  </tr>
255
257
  </tbody>
@@ -257,9 +259,9 @@ action, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-M
257
259
  <p class="since">Since 2.4</p>
258
260
  </div>
259
261
  <hr>
260
- <div class="refsect2">
262
+ <div class="refsect2" title="gtk_action_get_name ()">
261
263
  <a name="gtk-action-get-name"></a><h3>gtk_action_get_name ()</h3>
262
- <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_action_get_name (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
264
+ <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_action_get_name (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
263
265
  <p>
264
266
  Returns the name of the action.
265
267
  </p>
@@ -268,19 +270,22 @@ Returns the name of the action.
268
270
  <tbody>
269
271
  <tr>
270
272
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
271
- <td>the action object</td>
273
+ <td>the action object
274
+ </td>
272
275
  </tr>
273
276
  <tr>
274
277
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
275
- <td>the name of the action. The string belongs to GTK+ and should not
276
- be freed.</td>
278
+ <td> the name of the action. The string belongs to GTK+ and should not
279
+ be freed.
280
+
281
+ </td>
277
282
  </tr>
278
283
  </tbody>
279
284
  </table></div>
280
285
  <p class="since">Since 2.4</p>
281
286
  </div>
282
287
  <hr>
283
- <div class="refsect2">
288
+ <div class="refsect2" title="gtk_action_is_sensitive ()">
284
289
  <a name="gtk-action-is-sensitive"></a><h3>gtk_action_is_sensitive ()</h3>
285
290
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_action_is_sensitive (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
286
291
  <p>
@@ -291,20 +296,22 @@ Returns whether the action is effectively sensitive.
291
296
  <tbody>
292
297
  <tr>
293
298
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
294
- <td>the action object</td>
299
+ <td>the action object
300
+ </td>
295
301
  </tr>
296
302
  <tr>
297
303
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
298
- <td>
299
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the action and its associated action group
300
- are both sensitive.</td>
304
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the action and its associated action group
305
+ are both sensitive.
306
+
307
+ </td>
301
308
  </tr>
302
309
  </tbody>
303
310
  </table></div>
304
311
  <p class="since">Since 2.4</p>
305
312
  </div>
306
313
  <hr>
307
- <div class="refsect2">
314
+ <div class="refsect2" title="gtk_action_get_sensitive ()">
308
315
  <a name="gtk-action-get-sensitive"></a><h3>gtk_action_get_sensitive ()</h3>
309
316
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_action_get_sensitive (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
310
317
  <p>
@@ -317,19 +324,21 @@ for that.
317
324
  <tbody>
318
325
  <tr>
319
326
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
320
- <td>the action object</td>
327
+ <td>the action object
328
+ </td>
321
329
  </tr>
322
330
  <tr>
323
331
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
324
- <td>
325
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the action itself is sensitive.</td>
332
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the action itself is sensitive.
333
+
334
+ </td>
326
335
  </tr>
327
336
  </tbody>
328
337
  </table></div>
329
338
  <p class="since">Since 2.4</p>
330
339
  </div>
331
340
  <hr>
332
- <div class="refsect2">
341
+ <div class="refsect2" title="gtk_action_set_sensitive ()">
333
342
  <a name="gtk-action-set-sensitive"></a><h3>gtk_action_set_sensitive ()</h3>
334
343
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_set_sensitive (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
335
344
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> sensitive</code></em>);</pre>
@@ -344,19 +353,21 @@ for that.
344
353
  <tbody>
345
354
  <tr>
346
355
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
347
- <td>the action object</td>
356
+ <td>the action object
357
+ </td>
348
358
  </tr>
349
359
  <tr>
350
360
  <td><p><span class="term"><em class="parameter"><code>sensitive</code></em> :</span></p></td>
351
361
  <td>
352
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to make the action sensitive</td>
362
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to make the action sensitive
363
+ </td>
353
364
  </tr>
354
365
  </tbody>
355
366
  </table></div>
356
367
  <p class="since">Since 2.6</p>
357
368
  </div>
358
369
  <hr>
359
- <div class="refsect2">
370
+ <div class="refsect2" title="gtk_action_is_visible ()">
360
371
  <a name="gtk-action-is-visible"></a><h3>gtk_action_is_visible ()</h3>
361
372
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_action_is_visible (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
362
373
  <p>
@@ -367,20 +378,22 @@ Returns whether the action is effectively visible.
367
378
  <tbody>
368
379
  <tr>
369
380
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
370
- <td>the action object</td>
381
+ <td>the action object
382
+ </td>
371
383
  </tr>
372
384
  <tr>
373
385
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
374
- <td>
375
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the action and its associated action group
376
- are both visible.</td>
386
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the action and its associated action group
387
+ are both visible.
388
+
389
+ </td>
377
390
  </tr>
378
391
  </tbody>
379
392
  </table></div>
380
393
  <p class="since">Since 2.4</p>
381
394
  </div>
382
395
  <hr>
383
- <div class="refsect2">
396
+ <div class="refsect2" title="gtk_action_get_visible ()">
384
397
  <a name="gtk-action-get-visible"></a><h3>gtk_action_get_visible ()</h3>
385
398
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_action_get_visible (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
386
399
  <p>
@@ -393,19 +406,21 @@ for that.
393
406
  <tbody>
394
407
  <tr>
395
408
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
396
- <td>the action object</td>
409
+ <td>the action object
410
+ </td>
397
411
  </tr>
398
412
  <tr>
399
413
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
400
- <td>
401
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the action itself is visible.</td>
414
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the action itself is visible.
415
+
416
+ </td>
402
417
  </tr>
403
418
  </tbody>
404
419
  </table></div>
405
420
  <p class="since">Since 2.4</p>
406
421
  </div>
407
422
  <hr>
408
- <div class="refsect2">
423
+ <div class="refsect2" title="gtk_action_set_visible ()">
409
424
  <a name="gtk-action-set-visible"></a><h3>gtk_action_set_visible ()</h3>
410
425
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_set_visible (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
411
426
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> visible</code></em>);</pre>
@@ -420,19 +435,21 @@ for that.
420
435
  <tbody>
421
436
  <tr>
422
437
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
423
- <td>the action object</td>
438
+ <td>the action object
439
+ </td>
424
440
  </tr>
425
441
  <tr>
426
442
  <td><p><span class="term"><em class="parameter"><code>visible</code></em> :</span></p></td>
427
443
  <td>
428
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to make the action visible</td>
444
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to make the action visible
445
+ </td>
429
446
  </tr>
430
447
  </tbody>
431
448
  </table></div>
432
449
  <p class="since">Since 2.6</p>
433
450
  </div>
434
451
  <hr>
435
- <div class="refsect2">
452
+ <div class="refsect2" title="gtk_action_activate ()">
436
453
  <a name="gtk-action-activate"></a><h3>gtk_action_activate ()</h3>
437
454
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_activate (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
438
455
  <p>
@@ -447,13 +464,14 @@ It can also be used to manually activate an action.
447
464
  <col align="left" valign="top">
448
465
  <tbody><tr>
449
466
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
450
- <td>the action object</td>
467
+ <td>the action object
468
+ </td>
451
469
  </tr></tbody>
452
470
  </table></div>
453
471
  <p class="since">Since 2.4</p>
454
472
  </div>
455
473
  <hr>
456
- <div class="refsect2">
474
+ <div class="refsect2" title="gtk_action_create_icon ()">
457
475
  <a name="gtk-action-create-icon"></a><h3>gtk_action_create_icon ()</h3>
458
476
  <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_action_create_icon (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
459
477
  <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> icon_size</code></em>);</pre>
@@ -466,16 +484,18 @@ create icons displayed in the proxy widgets.
466
484
  <tbody>
467
485
  <tr>
468
486
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
469
- <td>the action object</td>
487
+ <td>the action object
488
+ </td>
470
489
  </tr>
471
490
  <tr>
472
491
  <td><p><span class="term"><em class="parameter"><code>icon_size</code></em> :</span></p></td>
473
- <td>the size of the icon that should be created. <span class="annotation">[<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
492
+ <td> the size of the icon that should be created. <span class="annotation">[type int]</span>
474
493
  </td>
475
494
  </tr>
476
495
  <tr>
477
496
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
478
- <td>a widget that displays the icon for this action. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
497
+ <td> a widget that displays the icon for this action.
498
+
479
499
  </td>
480
500
  </tr>
481
501
  </tbody>
@@ -483,7 +503,7 @@ create icons displayed in the proxy widgets.
483
503
  <p class="since">Since 2.4</p>
484
504
  </div>
485
505
  <hr>
486
- <div class="refsect2">
506
+ <div class="refsect2" title="gtk_action_create_menu_item ()">
487
507
  <a name="gtk-action-create-menu-item"></a><h3>gtk_action_create_menu_item ()</h3>
488
508
  <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_action_create_menu_item (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
489
509
  <p>
@@ -494,11 +514,13 @@ Creates a menu item widget that proxies for the given action.
494
514
  <tbody>
495
515
  <tr>
496
516
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
497
- <td>the action object</td>
517
+ <td>the action object
518
+ </td>
498
519
  </tr>
499
520
  <tr>
500
521
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
501
- <td>a menu item connected to the action. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
522
+ <td> a menu item connected to the action.
523
+
502
524
  </td>
503
525
  </tr>
504
526
  </tbody>
@@ -506,7 +528,7 @@ Creates a menu item widget that proxies for the given action.
506
528
  <p class="since">Since 2.4</p>
507
529
  </div>
508
530
  <hr>
509
- <div class="refsect2">
531
+ <div class="refsect2" title="gtk_action_create_tool_item ()">
510
532
  <a name="gtk-action-create-tool-item"></a><h3>gtk_action_create_tool_item ()</h3>
511
533
  <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_action_create_tool_item (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
512
534
  <p>
@@ -517,11 +539,13 @@ Creates a toolbar item widget that proxies for the given action.
517
539
  <tbody>
518
540
  <tr>
519
541
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
520
- <td>the action object</td>
542
+ <td>the action object
543
+ </td>
521
544
  </tr>
522
545
  <tr>
523
546
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
524
- <td>a toolbar item connected to the action. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
547
+ <td> a toolbar item connected to the action.
548
+
525
549
  </td>
526
550
  </tr>
527
551
  </tbody>
@@ -529,7 +553,7 @@ Creates a toolbar item widget that proxies for the given action.
529
553
  <p class="since">Since 2.4</p>
530
554
  </div>
531
555
  <hr>
532
- <div class="refsect2">
556
+ <div class="refsect2" title="gtk_action_create_menu ()">
533
557
  <a name="gtk-action-create-menu"></a><h3>gtk_action_create_menu ()</h3>
534
558
  <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_action_create_menu (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
535
559
  <p>
@@ -547,8 +571,8 @@ instance of that menu.
547
571
  </tr>
548
572
  <tr>
549
573
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
550
- <td>the menu item provided by the
551
- action, 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="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
574
+ <td> the menu item provided by the action, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
575
+
552
576
  </td>
553
577
  </tr>
554
578
  </tbody>
@@ -556,11 +580,11 @@ action, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-M
556
580
  <p class="since">Since 2.12</p>
557
581
  </div>
558
582
  <hr>
559
- <div class="refsect2">
583
+ <div class="refsect2" title="gtk_action_connect_proxy ()">
560
584
  <a name="gtk-action-connect-proxy"></a><h3>gtk_action_connect_proxy ()</h3>
561
585
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_connect_proxy (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
562
586
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *proxy</code></em>);</pre>
563
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
587
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
564
588
  <h3 class="title">Warning</h3>
565
589
  <p><code class="literal">gtk_action_connect_proxy</code> has been deprecated since version 2.16 and should not be used in newly-written code. Use <a class="link" href="GtkActivatable.html#gtk-activatable-set-related-action" title="gtk_activatable_set_related_action ()"><code class="function">gtk_activatable_set_related_action()</code></a> instead.</p>
566
590
  </div>
@@ -579,22 +603,24 @@ first.
579
603
  <tbody>
580
604
  <tr>
581
605
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
582
- <td>the action object</td>
606
+ <td>the action object
607
+ </td>
583
608
  </tr>
584
609
  <tr>
585
610
  <td><p><span class="term"><em class="parameter"><code>proxy</code></em> :</span></p></td>
586
- <td>the proxy widget</td>
611
+ <td>the proxy widget
612
+ </td>
587
613
  </tr>
588
614
  </tbody>
589
615
  </table></div>
590
616
  <p class="since">Since 2.4</p>
591
617
  </div>
592
618
  <hr>
593
- <div class="refsect2">
619
+ <div class="refsect2" title="gtk_action_disconnect_proxy ()">
594
620
  <a name="gtk-action-disconnect-proxy"></a><h3>gtk_action_disconnect_proxy ()</h3>
595
621
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_disconnect_proxy (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
596
622
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *proxy</code></em>);</pre>
597
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
623
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
598
624
  <h3 class="title">Warning</h3>
599
625
  <p><code class="literal">gtk_action_disconnect_proxy</code> has been deprecated since version 2.16 and should not be used in newly-written code. Use <a class="link" href="GtkActivatable.html#gtk-activatable-set-related-action" title="gtk_activatable_set_related_action ()"><code class="function">gtk_activatable_set_related_action()</code></a> instead.</p>
600
626
  </div>
@@ -607,18 +633,20 @@ Does <span class="emphasis"><em>not</em></span> destroy the widget, however.
607
633
  <tbody>
608
634
  <tr>
609
635
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
610
- <td>the action object</td>
636
+ <td>the action object
637
+ </td>
611
638
  </tr>
612
639
  <tr>
613
640
  <td><p><span class="term"><em class="parameter"><code>proxy</code></em> :</span></p></td>
614
- <td>the proxy widget</td>
641
+ <td>the proxy widget
642
+ </td>
615
643
  </tr>
616
644
  </tbody>
617
645
  </table></div>
618
646
  <p class="since">Since 2.4</p>
619
647
  </div>
620
648
  <hr>
621
- <div class="refsect2">
649
+ <div class="refsect2" title="gtk_action_get_proxies ()">
622
650
  <a name="gtk-action-get-proxies"></a><h3>gtk_action_get_proxies ()</h3>
623
651
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Singly-Linked-Lists.html#GSList"><span class="returnvalue">GSList</span></a> * gtk_action_get_proxies (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
624
652
  <p>
@@ -630,12 +658,13 @@ See also <a class="link" href="GtkWidget.html#gtk-widget-get-action" title="gtk_
630
658
  <tbody>
631
659
  <tr>
632
660
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
633
- <td>the action object</td>
661
+ <td>the action object
662
+ </td>
634
663
  </tr>
635
664
  <tr>
636
665
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
637
- <td>a <a href="http://library.gnome.org/devel/glib/unstable/glib-Singly-Linked-Lists.html#GSList"><span class="type">GSList</span></a> of proxy widgets. The list is owned by GTK+
638
- and must not be modified. <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>
666
+ <td> a <a href="http://library.gnome.org/devel/glib/unstable/glib-Singly-Linked-Lists.html#GSList"><span class="type">GSList</span></a> of proxy widgets. The list is owned by GTK+
667
+ and must not be modified. <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>
639
668
  </td>
640
669
  </tr>
641
670
  </tbody>
@@ -643,7 +672,7 @@ and must not be modified. <span class="annotation">[<acronym title="Generics and
643
672
  <p class="since">Since 2.4</p>
644
673
  </div>
645
674
  <hr>
646
- <div class="refsect2">
675
+ <div class="refsect2" title="gtk_action_connect_accelerator ()">
647
676
  <a name="gtk-action-connect-accelerator"></a><h3>gtk_action_connect_accelerator ()</h3>
648
677
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_connect_accelerator (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
649
678
  <p>
@@ -668,7 +697,7 @@ function has been called and doesn't remove the accelerator until
668
697
  <p class="since">Since 2.4</p>
669
698
  </div>
670
699
  <hr>
671
- <div class="refsect2">
700
+ <div class="refsect2" title="gtk_action_disconnect_accelerator ()">
672
701
  <a name="gtk-action-disconnect-accelerator"></a><h3>gtk_action_disconnect_accelerator ()</h3>
673
702
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_disconnect_accelerator (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
674
703
  <p>
@@ -685,7 +714,7 @@ Undoes the effect of one call to <a class="link" href="GtkAction.html#gtk-action
685
714
  <p class="since">Since 2.4</p>
686
715
  </div>
687
716
  <hr>
688
- <div class="refsect2">
717
+ <div class="refsect2" title="gtk_action_block_activate ()">
689
718
  <a name="gtk-action-block-activate"></a><h3>gtk_action_block_activate ()</h3>
690
719
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_block_activate (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
691
720
  <p>
@@ -708,7 +737,7 @@ cases (updating toggle state for instance).
708
737
  <p class="since">Since 2.16</p>
709
738
  </div>
710
739
  <hr>
711
- <div class="refsect2">
740
+ <div class="refsect2" title="gtk_action_unblock_activate ()">
712
741
  <a name="gtk-action-unblock-activate"></a><h3>gtk_action_unblock_activate ()</h3>
713
742
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_unblock_activate (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
714
743
  <p>
@@ -725,11 +754,11 @@ Reenable activation signals from the action
725
754
  <p class="since">Since 2.16</p>
726
755
  </div>
727
756
  <hr>
728
- <div class="refsect2">
757
+ <div class="refsect2" title="gtk_action_block_activate_from ()">
729
758
  <a name="gtk-action-block-activate-from"></a><h3>gtk_action_block_activate_from ()</h3>
730
759
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_block_activate_from (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
731
760
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *proxy</code></em>);</pre>
732
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
761
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
733
762
  <h3 class="title">Warning</h3>
734
763
  <p><code class="literal">gtk_action_block_activate_from</code> has been deprecated since version 2.16 and should not be used in newly-written code. activatables are now responsible for activating the
735
764
  action directly so this doesnt apply anymore.</p>
@@ -747,22 +776,24 @@ This function is intended for use by action implementations.
747
776
  <tbody>
748
777
  <tr>
749
778
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
750
- <td>the action object</td>
779
+ <td>the action object
780
+ </td>
751
781
  </tr>
752
782
  <tr>
753
783
  <td><p><span class="term"><em class="parameter"><code>proxy</code></em> :</span></p></td>
754
- <td>a proxy widget</td>
784
+ <td>a proxy widget
785
+ </td>
755
786
  </tr>
756
787
  </tbody>
757
788
  </table></div>
758
789
  <p class="since">Since 2.4</p>
759
790
  </div>
760
791
  <hr>
761
- <div class="refsect2">
792
+ <div class="refsect2" title="gtk_action_unblock_activate_from ()">
762
793
  <a name="gtk-action-unblock-activate-from"></a><h3>gtk_action_unblock_activate_from ()</h3>
763
794
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_unblock_activate_from (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
764
795
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *proxy</code></em>);</pre>
765
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
796
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
766
797
  <h3 class="title">Warning</h3>
767
798
  <p><code class="literal">gtk_action_unblock_activate_from</code> has been deprecated since version 2.16 and should not be used in newly-written code. activatables are now responsible for activating the
768
799
  action directly so this doesnt apply anymore.</p>
@@ -780,18 +811,20 @@ This function is intended for use by action implementations.
780
811
  <tbody>
781
812
  <tr>
782
813
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
783
- <td>the action object</td>
814
+ <td>the action object
815
+ </td>
784
816
  </tr>
785
817
  <tr>
786
818
  <td><p><span class="term"><em class="parameter"><code>proxy</code></em> :</span></p></td>
787
- <td>a proxy widget</td>
819
+ <td>a proxy widget
820
+ </td>
788
821
  </tr>
789
822
  </tbody>
790
823
  </table></div>
791
824
  <p class="since">Since 2.4</p>
792
825
  </div>
793
826
  <hr>
794
- <div class="refsect2">
827
+ <div class="refsect2" title="gtk_action_get_always_show_image ()">
795
828
  <a name="gtk-action-get-always-show-image"></a><h3>gtk_action_get_always_show_image ()</h3>
796
829
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_action_get_always_show_image (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
797
830
  <p>
@@ -809,15 +842,16 @@ if available.
809
842
  </tr>
810
843
  <tr>
811
844
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
812
- <td>
813
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the menu item proxies will always show their image</td>
845
+ <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 item proxies will always show their image
846
+
847
+ </td>
814
848
  </tr>
815
849
  </tbody>
816
850
  </table></div>
817
851
  <p class="since">Since 2.20</p>
818
852
  </div>
819
853
  <hr>
820
- <div class="refsect2">
854
+ <div class="refsect2" title="gtk_action_set_always_show_image ()">
821
855
  <a name="gtk-action-set-always-show-image"></a><h3>gtk_action_set_always_show_image ()</h3>
822
856
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_set_always_show_image (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
823
857
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> always_show</code></em>);</pre>
@@ -840,14 +874,15 @@ without their image.
840
874
  <tr>
841
875
  <td><p><span class="term"><em class="parameter"><code>always_show</code></em> :</span></p></td>
842
876
  <td>
843
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if menuitem proxies should always show their image</td>
877
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if menuitem proxies should always show their image
878
+ </td>
844
879
  </tr>
845
880
  </tbody>
846
881
  </table></div>
847
882
  <p class="since">Since 2.20</p>
848
883
  </div>
849
884
  <hr>
850
- <div class="refsect2">
885
+ <div class="refsect2" title="gtk_action_get_accel_path ()">
851
886
  <a name="gtk-action-get-accel-path"></a><h3>gtk_action_get_accel_path ()</h3>
852
887
  <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_action_get_accel_path (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
853
888
  <p>
@@ -858,20 +893,22 @@ Returns the accel path for this action.
858
893
  <tbody>
859
894
  <tr>
860
895
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
861
- <td>the action object</td>
896
+ <td>the action object
897
+ </td>
862
898
  </tr>
863
899
  <tr>
864
900
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
865
- <td>the accel path for this action, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
866
- if none is set. The returned string is owned by GTK+
867
- and must not be freed or modified.</td>
901
+ <td> the accel path for this action, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
902
+ if none is set. The returned string is owned by GTK+
903
+ and must not be freed or modified.
904
+ </td>
868
905
  </tr>
869
906
  </tbody>
870
907
  </table></div>
871
908
  <p class="since">Since 2.6</p>
872
909
  </div>
873
910
  <hr>
874
- <div class="refsect2">
911
+ <div class="refsect2" title="gtk_action_set_accel_path ()">
875
912
  <a name="gtk-action-set-accel-path"></a><h3>gtk_action_set_accel_path ()</h3>
876
913
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_set_accel_path (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
877
914
  <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>
@@ -890,18 +927,20 @@ pass a static string, you can save some memory by interning it first with
890
927
  <tbody>
891
928
  <tr>
892
929
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
893
- <td>the action object</td>
930
+ <td>the action object
931
+ </td>
894
932
  </tr>
895
933
  <tr>
896
934
  <td><p><span class="term"><em class="parameter"><code>accel_path</code></em> :</span></p></td>
897
- <td>the accelerator path</td>
935
+ <td>the accelerator path
936
+ </td>
898
937
  </tr>
899
938
  </tbody>
900
939
  </table></div>
901
940
  <p class="since">Since 2.4</p>
902
941
  </div>
903
942
  <hr>
904
- <div class="refsect2">
943
+ <div class="refsect2" title="gtk_action_get_accel_closure ()">
905
944
  <a name="gtk-action-get-accel-closure"></a><h3>gtk_action_get_accel_closure ()</h3>
906
945
  <pre class="programlisting"><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Closures.html#GClosure"><span class="returnvalue">GClosure</span></a> * gtk_action_get_accel_closure (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
907
946
  <p>
@@ -912,13 +951,13 @@ Returns the accel closure for this action.
912
951
  <tbody>
913
952
  <tr>
914
953
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
915
- <td>the action object</td>
954
+ <td>the action object
955
+ </td>
916
956
  </tr>
917
957
  <tr>
918
958
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
919
- <td>the accel closure for this action. The
920
- returned closure is owned by GTK+ and must not be unreffed
921
- or modified. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
959
+ <td> the accel closure for this action. The returned closure is
960
+ owned by GTK+ and must not be unreffed or modified.
922
961
  </td>
923
962
  </tr>
924
963
  </tbody>
@@ -926,7 +965,7 @@ or modified. <span class="annotation">[<acronym title="Don't free data after the
926
965
  <p class="since">Since 2.8</p>
927
966
  </div>
928
967
  <hr>
929
- <div class="refsect2">
968
+ <div class="refsect2" title="gtk_action_set_accel_group ()">
930
969
  <a name="gtk-action-set-accel-group"></a><h3>gtk_action_set_accel_group ()</h3>
931
970
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_set_accel_group (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
932
971
  <em class="parameter"><code><a class="link" href="gtk-Keyboard-Accelerators.html#GtkAccelGroup"><span class="type">GtkAccelGroup</span></a> *accel_group</code></em>);</pre>
@@ -939,11 +978,12 @@ will be installed.
939
978
  <tbody>
940
979
  <tr>
941
980
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
942
- <td>the action object</td>
981
+ <td>the action object
982
+ </td>
943
983
  </tr>
944
984
  <tr>
945
985
  <td><p><span class="term"><em class="parameter"><code>accel_group</code></em> :</span></p></td>
946
- <td>a <a class="link" href="gtk-Keyboard-Accelerators.html#GtkAccelGroup"><span class="type">GtkAccelGroup</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
986
+ <td> a <a class="link" href="gtk-Keyboard-Accelerators.html#GtkAccelGroup"><span class="type">GtkAccelGroup</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
947
987
  </td>
948
988
  </tr>
949
989
  </tbody>
@@ -951,7 +991,7 @@ will be installed.
951
991
  <p class="since">Since 2.4</p>
952
992
  </div>
953
993
  <hr>
954
- <div class="refsect2">
994
+ <div class="refsect2" title="gtk_action_set_label ()">
955
995
  <a name="gtk-action-set-label"></a><h3>gtk_action_set_label ()</h3>
956
996
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_set_label (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
957
997
  <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> *label</code></em>);</pre>
@@ -968,14 +1008,15 @@ Sets the label of <em class="parameter"><code>action</code></em>.
968
1008
  </tr>
969
1009
  <tr>
970
1010
  <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
971
- <td>the label text to set</td>
1011
+ <td>the label text to set
1012
+ </td>
972
1013
  </tr>
973
1014
  </tbody>
974
1015
  </table></div>
975
1016
  <p class="since">Since 2.16</p>
976
1017
  </div>
977
1018
  <hr>
978
- <div class="refsect2">
1019
+ <div class="refsect2" title="gtk_action_get_label ()">
979
1020
  <a name="gtk-action-get-label"></a><h3>gtk_action_get_label ()</h3>
980
1021
  <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_action_get_label (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
981
1022
  <p>
@@ -991,14 +1032,16 @@ Gets the label text of <em class="parameter"><code>action</code></em>.
991
1032
  </tr>
992
1033
  <tr>
993
1034
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
994
- <td>the label text</td>
1035
+ <td> the label text
1036
+
1037
+ </td>
995
1038
  </tr>
996
1039
  </tbody>
997
1040
  </table></div>
998
1041
  <p class="since">Since 2.16</p>
999
1042
  </div>
1000
1043
  <hr>
1001
- <div class="refsect2">
1044
+ <div class="refsect2" title="gtk_action_set_short_label ()">
1002
1045
  <a name="gtk-action-set-short-label"></a><h3>gtk_action_set_short_label ()</h3>
1003
1046
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_set_short_label (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
1004
1047
  <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> *short_label</code></em>);</pre>
@@ -1015,14 +1058,15 @@ Sets a shorter label text on <em class="parameter"><code>action</code></em>.
1015
1058
  </tr>
1016
1059
  <tr>
1017
1060
  <td><p><span class="term"><em class="parameter"><code>short_label</code></em> :</span></p></td>
1018
- <td>the label text to set</td>
1061
+ <td>the label text to set
1062
+ </td>
1019
1063
  </tr>
1020
1064
  </tbody>
1021
1065
  </table></div>
1022
1066
  <p class="since">Since 2.16</p>
1023
1067
  </div>
1024
1068
  <hr>
1025
- <div class="refsect2">
1069
+ <div class="refsect2" title="gtk_action_get_short_label ()">
1026
1070
  <a name="gtk-action-get-short-label"></a><h3>gtk_action_get_short_label ()</h3>
1027
1071
  <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_action_get_short_label (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
1028
1072
  <p>
@@ -1038,14 +1082,16 @@ Gets the short label text of <em class="parameter"><code>action</code></em>.
1038
1082
  </tr>
1039
1083
  <tr>
1040
1084
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1041
- <td>the short label text.</td>
1085
+ <td> the short label text.
1086
+
1087
+ </td>
1042
1088
  </tr>
1043
1089
  </tbody>
1044
1090
  </table></div>
1045
1091
  <p class="since">Since 2.16</p>
1046
1092
  </div>
1047
1093
  <hr>
1048
- <div class="refsect2">
1094
+ <div class="refsect2" title="gtk_action_set_tooltip ()">
1049
1095
  <a name="gtk-action-set-tooltip"></a><h3>gtk_action_set_tooltip ()</h3>
1050
1096
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_set_tooltip (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
1051
1097
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *tooltip</code></em>);</pre>
@@ -1062,14 +1108,15 @@ Sets the tooltip text on <em class="parameter"><code>action</code></em>
1062
1108
  </tr>
1063
1109
  <tr>
1064
1110
  <td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
1065
- <td>the tooltip text</td>
1111
+ <td>the tooltip text
1112
+ </td>
1066
1113
  </tr>
1067
1114
  </tbody>
1068
1115
  </table></div>
1069
1116
  <p class="since">Since 2.16</p>
1070
1117
  </div>
1071
1118
  <hr>
1072
- <div class="refsect2">
1119
+ <div class="refsect2" title="gtk_action_get_tooltip ()">
1073
1120
  <a name="gtk-action-get-tooltip"></a><h3>gtk_action_get_tooltip ()</h3>
1074
1121
  <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_action_get_tooltip (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
1075
1122
  <p>
@@ -1085,14 +1132,16 @@ Gets the tooltip text of <em class="parameter"><code>action</code></em>.
1085
1132
  </tr>
1086
1133
  <tr>
1087
1134
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1088
- <td>the tooltip text</td>
1135
+ <td> the tooltip text
1136
+
1137
+ </td>
1089
1138
  </tr>
1090
1139
  </tbody>
1091
1140
  </table></div>
1092
1141
  <p class="since">Since 2.16</p>
1093
1142
  </div>
1094
1143
  <hr>
1095
- <div class="refsect2">
1144
+ <div class="refsect2" title="gtk_action_set_stock_id ()">
1096
1145
  <a name="gtk-action-set-stock-id"></a><h3>gtk_action_set_stock_id ()</h3>
1097
1146
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_set_stock_id (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
1098
1147
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *stock_id</code></em>);</pre>
@@ -1109,14 +1158,15 @@ Sets the stock id on <em class="parameter"><code>action</code></em>
1109
1158
  </tr>
1110
1159
  <tr>
1111
1160
  <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
1112
- <td>the stock id</td>
1161
+ <td>the stock id
1162
+ </td>
1113
1163
  </tr>
1114
1164
  </tbody>
1115
1165
  </table></div>
1116
1166
  <p class="since">Since 2.16</p>
1117
1167
  </div>
1118
1168
  <hr>
1119
- <div class="refsect2">
1169
+ <div class="refsect2" title="gtk_action_get_stock_id ()">
1120
1170
  <a name="gtk-action-get-stock-id"></a><h3>gtk_action_get_stock_id ()</h3>
1121
1171
  <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_action_get_stock_id (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
1122
1172
  <p>
@@ -1132,14 +1182,16 @@ Gets the stock id of <em class="parameter"><code>action</code></em>.
1132
1182
  </tr>
1133
1183
  <tr>
1134
1184
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1135
- <td>the stock id</td>
1185
+ <td> the stock id
1186
+
1187
+ </td>
1136
1188
  </tr>
1137
1189
  </tbody>
1138
1190
  </table></div>
1139
1191
  <p class="since">Since 2.16</p>
1140
1192
  </div>
1141
1193
  <hr>
1142
- <div class="refsect2">
1194
+ <div class="refsect2" title="gtk_action_set_gicon ()">
1143
1195
  <a name="gtk-action-set-gicon"></a><h3>gtk_action_set_gicon ()</h3>
1144
1196
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_set_gicon (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
1145
1197
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>);</pre>
@@ -1156,14 +1208,15 @@ Sets the icon of <em class="parameter"><code>action</code></em>.
1156
1208
  </tr>
1157
1209
  <tr>
1158
1210
  <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
1159
- <td>the <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> to set</td>
1211
+ <td>the <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> to set
1212
+ </td>
1160
1213
  </tr>
1161
1214
  </tbody>
1162
1215
  </table></div>
1163
1216
  <p class="since">Since 2.16</p>
1164
1217
  </div>
1165
1218
  <hr>
1166
- <div class="refsect2">
1219
+ <div class="refsect2" title="gtk_action_get_gicon ()">
1167
1220
  <a name="gtk-action-get-gicon"></a><h3>gtk_action_get_gicon ()</h3>
1168
1221
  <pre class="programlisting"><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="returnvalue">GIcon</span></a> * gtk_action_get_gicon (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
1169
1222
  <p>
@@ -1179,7 +1232,8 @@ Gets the gicon of <em class="parameter"><code>action</code></em>.
1179
1232
  </tr>
1180
1233
  <tr>
1181
1234
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1182
- <td>The action's <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> if one is set. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1235
+ <td> The action's <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> if one is set.
1236
+
1183
1237
  </td>
1184
1238
  </tr>
1185
1239
  </tbody>
@@ -1187,7 +1241,7 @@ Gets the gicon of <em class="parameter"><code>action</code></em>.
1187
1241
  <p class="since">Since 2.16</p>
1188
1242
  </div>
1189
1243
  <hr>
1190
- <div class="refsect2">
1244
+ <div class="refsect2" title="gtk_action_set_icon_name ()">
1191
1245
  <a name="gtk-action-set-icon-name"></a><h3>gtk_action_set_icon_name ()</h3>
1192
1246
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_set_icon_name (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
1193
1247
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon_name</code></em>);</pre>
@@ -1204,14 +1258,15 @@ Sets the icon name on <em class="parameter"><code>action</code></em>
1204
1258
  </tr>
1205
1259
  <tr>
1206
1260
  <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
1207
- <td>the icon name to set</td>
1261
+ <td>the icon name to set
1262
+ </td>
1208
1263
  </tr>
1209
1264
  </tbody>
1210
1265
  </table></div>
1211
1266
  <p class="since">Since 2.16</p>
1212
1267
  </div>
1213
1268
  <hr>
1214
- <div class="refsect2">
1269
+ <div class="refsect2" title="gtk_action_get_icon_name ()">
1215
1270
  <a name="gtk-action-get-icon-name"></a><h3>gtk_action_get_icon_name ()</h3>
1216
1271
  <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_action_get_icon_name (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
1217
1272
  <p>
@@ -1227,14 +1282,16 @@ Gets the icon name of <em class="parameter"><code>action</code></em>.
1227
1282
  </tr>
1228
1283
  <tr>
1229
1284
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1230
- <td>the icon name</td>
1285
+ <td> the icon name
1286
+
1287
+ </td>
1231
1288
  </tr>
1232
1289
  </tbody>
1233
1290
  </table></div>
1234
1291
  <p class="since">Since 2.16</p>
1235
1292
  </div>
1236
1293
  <hr>
1237
- <div class="refsect2">
1294
+ <div class="refsect2" title="gtk_action_set_visible_horizontal ()">
1238
1295
  <a name="gtk-action-set-visible-horizontal"></a><h3>gtk_action_set_visible_horizontal ()</h3>
1239
1296
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_set_visible_horizontal (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
1240
1297
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> visible_horizontal</code></em>);</pre>
@@ -1251,14 +1308,15 @@ Sets whether <em class="parameter"><code>action</code></em> is visible when hori
1251
1308
  </tr>
1252
1309
  <tr>
1253
1310
  <td><p><span class="term"><em class="parameter"><code>visible_horizontal</code></em> :</span></p></td>
1254
- <td>whether the action is visible horizontally</td>
1311
+ <td>whether the action is visible horizontally
1312
+ </td>
1255
1313
  </tr>
1256
1314
  </tbody>
1257
1315
  </table></div>
1258
1316
  <p class="since">Since 2.16</p>
1259
1317
  </div>
1260
1318
  <hr>
1261
- <div class="refsect2">
1319
+ <div class="refsect2" title="gtk_action_get_visible_horizontal ()">
1262
1320
  <a name="gtk-action-get-visible-horizontal"></a><h3>gtk_action_get_visible_horizontal ()</h3>
1263
1321
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_action_get_visible_horizontal (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
1264
1322
  <p>
@@ -1274,14 +1332,16 @@ Checks whether <em class="parameter"><code>action</code></em> is visible when ho
1274
1332
  </tr>
1275
1333
  <tr>
1276
1334
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1277
- <td>whether <em class="parameter"><code>action</code></em> is visible when horizontal</td>
1335
+ <td> whether <em class="parameter"><code>action</code></em> is visible when horizontal
1336
+
1337
+ </td>
1278
1338
  </tr>
1279
1339
  </tbody>
1280
1340
  </table></div>
1281
1341
  <p class="since">Since 2.16</p>
1282
1342
  </div>
1283
1343
  <hr>
1284
- <div class="refsect2">
1344
+ <div class="refsect2" title="gtk_action_set_visible_vertical ()">
1285
1345
  <a name="gtk-action-set-visible-vertical"></a><h3>gtk_action_set_visible_vertical ()</h3>
1286
1346
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_set_visible_vertical (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
1287
1347
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> visible_vertical</code></em>);</pre>
@@ -1298,14 +1358,15 @@ Sets whether <em class="parameter"><code>action</code></em> is visible when vert
1298
1358
  </tr>
1299
1359
  <tr>
1300
1360
  <td><p><span class="term"><em class="parameter"><code>visible_vertical</code></em> :</span></p></td>
1301
- <td>whether the action is visible vertically</td>
1361
+ <td>whether the action is visible vertically
1362
+ </td>
1302
1363
  </tr>
1303
1364
  </tbody>
1304
1365
  </table></div>
1305
1366
  <p class="since">Since 2.16</p>
1306
1367
  </div>
1307
1368
  <hr>
1308
- <div class="refsect2">
1369
+ <div class="refsect2" title="gtk_action_get_visible_vertical ()">
1309
1370
  <a name="gtk-action-get-visible-vertical"></a><h3>gtk_action_get_visible_vertical ()</h3>
1310
1371
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_action_get_visible_vertical (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
1311
1372
  <p>
@@ -1321,14 +1382,16 @@ Checks whether <em class="parameter"><code>action</code></em> is visible when ho
1321
1382
  </tr>
1322
1383
  <tr>
1323
1384
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1324
- <td>whether <em class="parameter"><code>action</code></em> is visible when horizontal</td>
1385
+ <td> whether <em class="parameter"><code>action</code></em> is visible when horizontal
1386
+
1387
+ </td>
1325
1388
  </tr>
1326
1389
  </tbody>
1327
1390
  </table></div>
1328
1391
  <p class="since">Since 2.16</p>
1329
1392
  </div>
1330
1393
  <hr>
1331
- <div class="refsect2">
1394
+ <div class="refsect2" title="gtk_action_set_is_important ()">
1332
1395
  <a name="gtk-action-set-is-important"></a><h3>gtk_action_set_is_important ()</h3>
1333
1396
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_action_set_is_important (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
1334
1397
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> is_important</code></em>);</pre>
@@ -1342,19 +1405,21 @@ or not.
1342
1405
  <tbody>
1343
1406
  <tr>
1344
1407
  <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
1345
- <td>the action object</td>
1408
+ <td>the action object
1409
+ </td>
1346
1410
  </tr>
1347
1411
  <tr>
1348
1412
  <td><p><span class="term"><em class="parameter"><code>is_important</code></em> :</span></p></td>
1349
1413
  <td>
1350
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to make the action important</td>
1414
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to make the action important
1415
+ </td>
1351
1416
  </tr>
1352
1417
  </tbody>
1353
1418
  </table></div>
1354
1419
  <p class="since">Since 2.16</p>
1355
1420
  </div>
1356
1421
  <hr>
1357
- <div class="refsect2">
1422
+ <div class="refsect2" title="gtk_action_get_is_important ()">
1358
1423
  <a name="gtk-action-get-is-important"></a><h3>gtk_action_get_is_important ()</h3>
1359
1424
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_action_get_is_important (<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
1360
1425
  <p>
@@ -1370,22 +1435,24 @@ Checks whether <em class="parameter"><code>action</code></em> is important or no
1370
1435
  </tr>
1371
1436
  <tr>
1372
1437
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1373
- <td>whether <em class="parameter"><code>action</code></em> is important</td>
1438
+ <td> whether <em class="parameter"><code>action</code></em> is important
1439
+
1440
+ </td>
1374
1441
  </tr>
1375
1442
  </tbody>
1376
1443
  </table></div>
1377
1444
  <p class="since">Since 2.16</p>
1378
1445
  </div>
1379
1446
  </div>
1380
- <div class="refsect1">
1447
+ <div class="refsect1" title="Property Details">
1381
1448
  <a name="GtkAction.property-details"></a><h2>Property Details</h2>
1382
- <div class="refsect2">
1449
+ <div class="refsect2" title='The "action-group" property'>
1383
1450
  <a name="GtkAction--action-group"></a><h3>The <code class="literal">"action-group"</code> property</h3>
1384
1451
  <pre class="programlisting"> "action-group" <a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a>* : Read / Write</pre>
1385
1452
  <p>The GtkActionGroup this GtkAction is associated with, or NULL (for internal use).</p>
1386
1453
  </div>
1387
1454
  <hr>
1388
- <div class="refsect2">
1455
+ <div class="refsect2" title='The "always-show-image" property'>
1389
1456
  <a name="GtkAction--always-show-image"></a><h3>The <code class="literal">"always-show-image"</code> property</h3>
1390
1457
  <pre class="programlisting"> "always-show-image" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write / Construct</pre>
1391
1458
  <p>
@@ -1400,7 +1467,7 @@ without their image.
1400
1467
  <p class="since">Since 2.20</p>
1401
1468
  </div>
1402
1469
  <hr>
1403
- <div class="refsect2">
1470
+ <div class="refsect2" title='The "gicon" property'>
1404
1471
  <a name="GtkAction--gicon"></a><h3>The <code class="literal">"gicon"</code> property</h3>
1405
1472
  <pre class="programlisting"> "gicon" <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a>* : Read / Write</pre>
1406
1473
  <p>
@@ -1417,14 +1484,14 @@ This is an appearance property and thus only applies if
1417
1484
  <p class="since">Since 2.16</p>
1418
1485
  </div>
1419
1486
  <hr>
1420
- <div class="refsect2">
1487
+ <div class="refsect2" title='The "hide-if-empty" property'>
1421
1488
  <a name="GtkAction--hide-if-empty"></a><h3>The <code class="literal">"hide-if-empty"</code> property</h3>
1422
1489
  <pre class="programlisting"> "hide-if-empty" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1423
1490
  <p>When TRUE, empty menu proxies for this action are hidden.</p>
1424
1491
  <p>Default value: TRUE</p>
1425
1492
  </div>
1426
1493
  <hr>
1427
- <div class="refsect2">
1494
+ <div class="refsect2" title='The "icon-name" property'>
1428
1495
  <a name="GtkAction--icon-name"></a><h3>The <code class="literal">"icon-name"</code> property</h3>
1429
1496
  <pre class="programlisting"> "icon-name" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1430
1497
  <p>
@@ -1443,14 +1510,14 @@ This is an appearance property and thus only applies if
1443
1510
  <p class="since">Since 2.10</p>
1444
1511
  </div>
1445
1512
  <hr>
1446
- <div class="refsect2">
1513
+ <div class="refsect2" title='The "is-important" property'>
1447
1514
  <a name="GtkAction--is-important"></a><h3>The <code class="literal">"is-important"</code> property</h3>
1448
1515
  <pre class="programlisting"> "is-important" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1449
1516
  <p>Whether the action is considered important. When TRUE, toolitem proxies for this action show text in GTK_TOOLBAR_BOTH_HORIZ mode.</p>
1450
1517
  <p>Default value: FALSE</p>
1451
1518
  </div>
1452
1519
  <hr>
1453
- <div class="refsect2">
1520
+ <div class="refsect2" title='The "label" property'>
1454
1521
  <a name="GtkAction--label"></a><h3>The <code class="literal">"label"</code> property</h3>
1455
1522
  <pre class="programlisting"> "label" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1456
1523
  <p>
@@ -1465,21 +1532,21 @@ This is an appearance property and thus only applies if
1465
1532
  <p>Default value: NULL</p>
1466
1533
  </div>
1467
1534
  <hr>
1468
- <div class="refsect2">
1535
+ <div class="refsect2" title='The "name" property'>
1469
1536
  <a name="GtkAction--name"></a><h3>The <code class="literal">"name"</code> property</h3>
1470
1537
  <pre class="programlisting"> "name" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write / Construct Only</pre>
1471
1538
  <p>A unique name for the action.</p>
1472
1539
  <p>Default value: NULL</p>
1473
1540
  </div>
1474
1541
  <hr>
1475
- <div class="refsect2">
1542
+ <div class="refsect2" title='The "sensitive" property'>
1476
1543
  <a name="GtkAction--sensitive"></a><h3>The <code class="literal">"sensitive"</code> property</h3>
1477
1544
  <pre class="programlisting"> "sensitive" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1478
1545
  <p>Whether the action is enabled.</p>
1479
1546
  <p>Default value: TRUE</p>
1480
1547
  </div>
1481
1548
  <hr>
1482
- <div class="refsect2">
1549
+ <div class="refsect2" title='The "short-label" property'>
1483
1550
  <a name="GtkAction--short-label"></a><h3>The <code class="literal">"short-label"</code> property</h3>
1484
1551
  <pre class="programlisting"> "short-label" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1485
1552
  <p>
@@ -1492,7 +1559,7 @@ This is an appearance property and thus only applies if
1492
1559
  <p>Default value: NULL</p>
1493
1560
  </div>
1494
1561
  <hr>
1495
- <div class="refsect2">
1562
+ <div class="refsect2" title='The "stock-id" property'>
1496
1563
  <a name="GtkAction--stock-id"></a><h3>The <code class="literal">"stock-id"</code> property</h3>
1497
1564
  <pre class="programlisting"> "stock-id" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1498
1565
  <p>
@@ -1505,28 +1572,28 @@ This is an appearance property and thus only applies if
1505
1572
  <p>Default value: NULL</p>
1506
1573
  </div>
1507
1574
  <hr>
1508
- <div class="refsect2">
1575
+ <div class="refsect2" title='The "tooltip" property'>
1509
1576
  <a name="GtkAction--tooltip"></a><h3>The <code class="literal">"tooltip"</code> property</h3>
1510
1577
  <pre class="programlisting"> "tooltip" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1511
1578
  <p>A tooltip for this action.</p>
1512
1579
  <p>Default value: NULL</p>
1513
1580
  </div>
1514
1581
  <hr>
1515
- <div class="refsect2">
1582
+ <div class="refsect2" title='The "visible" property'>
1516
1583
  <a name="GtkAction--visible"></a><h3>The <code class="literal">"visible"</code> property</h3>
1517
1584
  <pre class="programlisting"> "visible" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1518
1585
  <p>Whether the action is visible.</p>
1519
1586
  <p>Default value: TRUE</p>
1520
1587
  </div>
1521
1588
  <hr>
1522
- <div class="refsect2">
1589
+ <div class="refsect2" title='The "visible-horizontal" property'>
1523
1590
  <a name="GtkAction--visible-horizontal"></a><h3>The <code class="literal">"visible-horizontal"</code> property</h3>
1524
1591
  <pre class="programlisting"> "visible-horizontal" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1525
1592
  <p>Whether the toolbar item is visible when the toolbar is in a horizontal orientation.</p>
1526
1593
  <p>Default value: TRUE</p>
1527
1594
  </div>
1528
1595
  <hr>
1529
- <div class="refsect2">
1596
+ <div class="refsect2" title='The "visible-overflown" property'>
1530
1597
  <a name="GtkAction--visible-overflown"></a><h3>The <code class="literal">"visible-overflown"</code> property</h3>
1531
1598
  <pre class="programlisting"> "visible-overflown" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1532
1599
  <p>
@@ -1537,19 +1604,19 @@ toolbar overflow menu.
1537
1604
  <p class="since">Since 2.6</p>
1538
1605
  </div>
1539
1606
  <hr>
1540
- <div class="refsect2">
1607
+ <div class="refsect2" title='The "visible-vertical" property'>
1541
1608
  <a name="GtkAction--visible-vertical"></a><h3>The <code class="literal">"visible-vertical"</code> property</h3>
1542
1609
  <pre class="programlisting"> "visible-vertical" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1543
1610
  <p>Whether the toolbar item is visible when the toolbar is in a vertical orientation.</p>
1544
1611
  <p>Default value: TRUE</p>
1545
1612
  </div>
1546
1613
  </div>
1547
- <div class="refsect1">
1614
+ <div class="refsect1" title="Signal Details">
1548
1615
  <a name="GtkAction.signal-details"></a><h2>Signal Details</h2>
1549
- <div class="refsect2">
1616
+ <div class="refsect2" title='The "activate" signal'>
1550
1617
  <a name="GtkAction-activate"></a><h3>The <code class="literal">"activate"</code> signal</h3>
1551
1618
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action,
1552
- <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-NO-RECURSE:CAPS"><code class="literal">No Recursion</code></a></pre>
1619
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First / No Recursion</pre>
1553
1620
  <p>
1554
1621
  The "activate" signal is emitted when the action is activated.
1555
1622
  </p>
@@ -1570,13 +1637,13 @@ The "activate" signal is emitted when the action is activated.
1570
1637
  <p class="since">Since 2.4</p>
1571
1638
  </div>
1572
1639
  </div>
1573
- <div class="refsect1">
1640
+ <div class="refsect1" title="See Also">
1574
1641
  <a name="GtkAction.see-also"></a><h2>See Also</h2>
1575
1642
  <a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a>, <a class="link" href="GtkUIManager.html" title="GtkUIManager"><span class="type">GtkUIManager</span></a>
1576
1643
  </div>
1577
1644
  </div>
1578
1645
  <div class="footer">
1579
1646
  <hr>
1580
- Generated by GTK-Doc V1.16.1</div>
1647
+ Generated by GTK-Doc V1.15</div>
1581
1648
  </body>
1582
1649
  </html>