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="ButtonWidgets.html" title="Buttons and Toggles">
9
9
  <link rel="prev" href="ButtonWidgets.html" title="Buttons and Toggles">
10
10
  <link rel="next" href="GtkCheckButton.html" title="GtkCheckButton">
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">
@@ -36,7 +36,7 @@
36
36
  <a href="#GtkButton.signals" class="shortcut">Signals</a>
37
37
  </td></tr>
38
38
  </table>
39
- <div class="refentry">
39
+ <div class="refentry" title="GtkButton">
40
40
  <a name="GtkButton"></a><div class="titlepage"></div>
41
41
  <div class="refnamediv"><table width="100%"><tr>
42
42
  <td valign="top">
@@ -45,16 +45,16 @@
45
45
  </td>
46
46
  <td valign="top" align="right"><img src="button.png"></td>
47
47
  </tr></table></div>
48
- <div class="refsynopsisdiv">
48
+ <div class="refsynopsisdiv" title="Synopsis">
49
49
  <a name="GtkButton.synopsis"></a><h2>Synopsis</h2>
50
50
  <pre class="synopsis">
51
51
  #include &lt;gtk/gtk.h&gt;
52
52
 
53
- struct <a class="link" href="GtkButton.html#GtkButton-struct" title="struct GtkButton">GtkButton</a>;
54
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkButton.html#gtk-button-new" title="gtk_button_new ()">gtk_button_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
55
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkButton.html#gtk-button-new-with-label" title="gtk_button_new_with_label ()">gtk_button_new_with_label</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> *label</code></em>);
56
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkButton.html#gtk-button-new-with-mnemonic" title="gtk_button_new_with_mnemonic ()">gtk_button_new_with_mnemonic</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> *label</code></em>);
57
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkButton.html#gtk-button-new-from-stock" title="gtk_button_new_from_stock ()">gtk_button_new_from_stock</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *stock_id</code></em>);
53
+ <a class="link" href="GtkButton.html#GtkButton-struct" title="GtkButton">GtkButton</a>;
54
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkButton.html#gtk-button-new" title="gtk_button_new ()">gtk_button_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
55
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkButton.html#gtk-button-new-with-label" title="gtk_button_new_with_label ()">gtk_button_new_with_label</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> *label</code></em>);
56
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkButton.html#gtk-button-new-with-mnemonic" title="gtk_button_new_with_mnemonic ()">gtk_button_new_with_mnemonic</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> *label</code></em>);
57
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkButton.html#gtk-button-new-from-stock" title="gtk_button_new_from_stock ()">gtk_button_new_from_stock</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *stock_id</code></em>);
58
58
  <span class="returnvalue">void</span> <a class="link" href="GtkButton.html#gtk-button-pressed" title="gtk_button_pressed ()">gtk_button_pressed</a> (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);
59
59
  <span class="returnvalue">void</span> <a class="link" href="GtkButton.html#gtk-button-released" title="gtk_button_released ()">gtk_button_released</a> (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);
60
60
  <span class="returnvalue">void</span> <a class="link" href="GtkButton.html#gtk-button-clicked" title="gtk_button_clicked ()">gtk_button_clicked</a> (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);
@@ -83,14 +83,14 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
83
83
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> *yalign</code></em>);
84
84
  <span class="returnvalue">void</span> <a class="link" href="GtkButton.html#gtk-button-set-image" title="gtk_button_set_image ()">gtk_button_set_image</a> (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>,
85
85
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *image</code></em>);
86
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkButton.html#gtk-button-get-image" title="gtk_button_get_image ()">gtk_button_get_image</a> (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);
86
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkButton.html#gtk-button-get-image" title="gtk_button_get_image ()">gtk_button_get_image</a> (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);
87
87
  <span class="returnvalue">void</span> <a class="link" href="GtkButton.html#gtk-button-set-image-position" title="gtk_button_set_image_position ()">gtk_button_set_image_position</a> (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>,
88
88
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkPositionType" title="enum GtkPositionType"><span class="type">GtkPositionType</span></a> position</code></em>);
89
89
  <a class="link" href="gtk-Standard-Enumerations.html#GtkPositionType" title="enum GtkPositionType"><span class="returnvalue">GtkPositionType</span></a> <a class="link" href="GtkButton.html#gtk-button-get-image-position" title="gtk_button_get_image_position ()">gtk_button_get_image_position</a> (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);
90
- <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> * <a class="link" href="GtkButton.html#gtk-button-get-event-window" title="gtk_button_get_event_window ()">gtk_button_get_event_window</a> (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);
90
+ <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a>* <a class="link" href="GtkButton.html#gtk-button-get-event-window" title="gtk_button_get_event_window ()">gtk_button_get_event_window</a> (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);
91
91
  </pre>
92
92
  </div>
93
- <div class="refsect1">
93
+ <div class="refsect1" title="Object Hierarchy">
94
94
  <a name="GtkButton.object-hierarchy"></a><h2>Object Hierarchy</h2>
95
95
  <pre class="synopsis">
96
96
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -108,13 +108,13 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
108
108
  +----<a class="link" href="GtkScaleButton.html" title="GtkScaleButton">GtkScaleButton</a>
109
109
  </pre>
110
110
  </div>
111
- <div class="refsect1">
111
+ <div class="refsect1" title="Implemented Interfaces">
112
112
  <a name="GtkButton.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
113
113
  <p>
114
114
  GtkButton implements
115
115
  AtkImplementorIface, <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a> and <a class="link" href="GtkActivatable.html" title="GtkActivatable">GtkActivatable</a>.</p>
116
116
  </div>
117
- <div class="refsect1">
117
+ <div class="refsect1" title="Properties">
118
118
  <a name="GtkButton.properties"></a><h2>Properties</h2>
119
119
  <pre class="synopsis">
120
120
  "<a class="link" href="GtkButton.html#GtkButton--focus-on-click" title='The "focus-on-click" property'>focus-on-click</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
@@ -128,30 +128,30 @@ GtkButton implements
128
128
  "<a class="link" href="GtkButton.html#GtkButton--yalign" title='The "yalign" property'>yalign</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> : Read / Write
129
129
  </pre>
130
130
  </div>
131
- <div class="refsect1">
131
+ <div class="refsect1" title="Style Properties">
132
132
  <a name="GtkButton.style-properties"></a><h2>Style Properties</h2>
133
133
  <pre class="synopsis">
134
134
  "<a class="link" href="GtkButton.html#GtkButton--s-child-displacement-x" title='The "child-displacement-x" style property'>child-displacement-x</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read
135
135
  "<a class="link" href="GtkButton.html#GtkButton--s-child-displacement-y" title='The "child-displacement-y" style property'>child-displacement-y</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read
136
- "<a class="link" href="GtkButton.html#GtkButton--s-default-border" title='The "default-border" style property'>default-border</a>" <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read
137
- "<a class="link" href="GtkButton.html#GtkButton--s-default-outside-border" title='The "default-outside-border" style property'>default-outside-border</a>" <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read
136
+ "<a class="link" href="GtkButton.html#GtkButton--s-default-border" title='The "default-border" style property'>default-border</a>" <a class="link" href="GtkStyle.html#GtkBorder" title="GtkBorder"><span class="type">GtkBorder</span></a>* : Read
137
+ "<a class="link" href="GtkButton.html#GtkButton--s-default-outside-border" title='The "default-outside-border" style property'>default-outside-border</a>" <a class="link" href="GtkStyle.html#GtkBorder" title="GtkBorder"><span class="type">GtkBorder</span></a>* : Read
138
138
  "<a class="link" href="GtkButton.html#GtkButton--s-displace-focus" title='The "displace-focus" style property'>displace-focus</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read
139
139
  "<a class="link" href="GtkButton.html#GtkButton--s-image-spacing" title='The "image-spacing" style property'>image-spacing</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read
140
- "<a class="link" href="GtkButton.html#GtkButton--s-inner-border" title='The "inner-border" style property'>inner-border</a>" <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read
140
+ "<a class="link" href="GtkButton.html#GtkButton--s-inner-border" title='The "inner-border" style property'>inner-border</a>" <a class="link" href="GtkStyle.html#GtkBorder" title="GtkBorder"><span class="type">GtkBorder</span></a>* : Read
141
141
  </pre>
142
142
  </div>
143
- <div class="refsect1">
143
+ <div class="refsect1" title="Signals">
144
144
  <a name="GtkButton.signals"></a><h2>Signals</h2>
145
145
  <pre class="synopsis">
146
- "<a class="link" href="GtkButton.html#GtkButton-activate" title='The "activate" signal'>activate</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
147
- "<a class="link" href="GtkButton.html#GtkButton-clicked" title='The "clicked" signal'>clicked</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
148
- "<a class="link" href="GtkButton.html#GtkButton-enter" title='The "enter" signal'>enter</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a>
149
- "<a class="link" href="GtkButton.html#GtkButton-leave" title='The "leave" signal'>leave</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a>
150
- "<a class="link" href="GtkButton.html#GtkButton-pressed" title='The "pressed" signal'>pressed</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a>
151
- "<a class="link" href="GtkButton.html#GtkButton-released" title='The "released" signal'>released</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a>
146
+ "<a class="link" href="GtkButton.html#GtkButton-activate" title='The "activate" signal'>activate</a>" : Run First / Action
147
+ "<a class="link" href="GtkButton.html#GtkButton-clicked" title='The "clicked" signal'>clicked</a>" : Run First / Action
148
+ "<a class="link" href="GtkButton.html#GtkButton-enter" title='The "enter" signal'>enter</a>" : Run First
149
+ "<a class="link" href="GtkButton.html#GtkButton-leave" title='The "leave" signal'>leave</a>" : Run First
150
+ "<a class="link" href="GtkButton.html#GtkButton-pressed" title='The "pressed" signal'>pressed</a>" : Run First
151
+ "<a class="link" href="GtkButton.html#GtkButton-released" title='The "released" signal'>released</a>" : Run First
152
152
  </pre>
153
153
  </div>
154
- <div class="refsect1">
154
+ <div class="refsect1" title="Description">
155
155
  <a name="GtkButton.description"></a><h2>Description</h2>
156
156
  <p>
157
157
  The <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> widget is generally used to attach a function to that
@@ -164,19 +164,19 @@ hold most any other standard <a class="link" href="GtkWidget.html" title="GtkWid
164
164
  the <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>.
165
165
  </p>
166
166
  </div>
167
- <div class="refsect1">
167
+ <div class="refsect1" title="Details">
168
168
  <a name="GtkButton.details"></a><h2>Details</h2>
169
- <div class="refsect2">
170
- <a name="GtkButton-struct"></a><h3>struct GtkButton</h3>
171
- <pre class="programlisting">struct GtkButton;</pre>
169
+ <div class="refsect2" title="GtkButton">
170
+ <a name="GtkButton-struct"></a><h3>GtkButton</h3>
171
+ <pre class="programlisting">typedef struct _GtkButton GtkButton;</pre>
172
172
  <p>
173
173
  This should not be accessed directly. Use the accessor functions below.
174
174
  </p>
175
175
  </div>
176
176
  <hr>
177
- <div class="refsect2">
177
+ <div class="refsect2" title="gtk_button_new ()">
178
178
  <a name="gtk-button-new"></a><h3>gtk_button_new ()</h3>
179
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_button_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
179
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_button_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
180
180
  <p>
181
181
  Creates a new <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> widget. To add a child widget to the button,
182
182
  use <a class="link" href="GtkContainer.html#gtk-container-add" title="gtk_container_add ()"><code class="function">gtk_container_add()</code></a>.
@@ -185,14 +185,15 @@ use <a class="link" href="GtkContainer.html#gtk-container-add" title="gtk_contai
185
185
  <col align="left" valign="top">
186
186
  <tbody><tr>
187
187
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
188
- <td>The newly created <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> widget.</td>
188
+ <td>The newly created <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> widget.
189
+ </td>
189
190
  </tr></tbody>
190
191
  </table></div>
191
192
  </div>
192
193
  <hr>
193
- <div class="refsect2">
194
+ <div class="refsect2" title="gtk_button_new_with_label ()">
194
195
  <a name="gtk-button-new-with-label"></a><h3>gtk_button_new_with_label ()</h3>
195
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_button_new_with_label (<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>
196
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_button_new_with_label (<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>
196
197
  <p>
197
198
  Creates a <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> widget with a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> child containing the given
198
199
  text.
@@ -202,19 +203,21 @@ text.
202
203
  <tbody>
203
204
  <tr>
204
205
  <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
205
- <td>The text you want the <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> to hold.</td>
206
+ <td>The text you want the <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> to hold.
207
+ </td>
206
208
  </tr>
207
209
  <tr>
208
210
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
209
- <td>The newly created <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> widget.</td>
211
+ <td>The newly created <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> widget.
212
+ </td>
210
213
  </tr>
211
214
  </tbody>
212
215
  </table></div>
213
216
  </div>
214
217
  <hr>
215
- <div class="refsect2">
218
+ <div class="refsect2" title="gtk_button_new_with_mnemonic ()">
216
219
  <a name="gtk-button-new-with-mnemonic"></a><h3>gtk_button_new_with_mnemonic ()</h3>
217
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_button_new_with_mnemonic (<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>
220
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_button_new_with_mnemonic (<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>
218
221
  <p>
219
222
  Creates a new <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> containing a label.
220
223
  If characters in <em class="parameter"><code>label</code></em> are preceded by an underscore, they are underlined.
@@ -229,7 +232,8 @@ Pressing Alt and that key activates the button.
229
232
  <tr>
230
233
  <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
231
234
  <td>The text of the button, with an underscore in front of the
232
- mnemonic character</td>
235
+ mnemonic character
236
+ </td>
233
237
  </tr>
234
238
  <tr>
235
239
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
@@ -240,9 +244,9 @@ mnemonic character</td>
240
244
  </table></div>
241
245
  </div>
242
246
  <hr>
243
- <div class="refsect2">
247
+ <div class="refsect2" title="gtk_button_new_from_stock ()">
244
248
  <a name="gtk-button-new-from-stock"></a><h3>gtk_button_new_from_stock ()</h3>
245
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_button_new_from_stock (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *stock_id</code></em>);</pre>
249
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_button_new_from_stock (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *stock_id</code></em>);</pre>
246
250
  <p>
247
251
  Creates a new <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> containing the image and text from a stock item.
248
252
  Some stock ids have preprocessor macros like <a class="link" href="gtk-Stock-Items.html#GTK-STOCK-OK:CAPS" title="GTK_STOCK_OK"><span class="type">GTK_STOCK_OK</span></a> and
@@ -257,21 +261,22 @@ label (as for <a class="link" href="GtkButton.html#gtk-button-new-with-mnemonic"
257
261
  <tbody>
258
262
  <tr>
259
263
  <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
260
- <td>the name of the stock item</td>
264
+ <td>the name of the stock item
265
+ </td>
261
266
  </tr>
262
267
  <tr>
263
268
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
264
- <td>a new <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a>
269
+ <td> a new <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a>
265
270
  </td>
266
271
  </tr>
267
272
  </tbody>
268
273
  </table></div>
269
274
  </div>
270
275
  <hr>
271
- <div class="refsect2">
276
+ <div class="refsect2" title="gtk_button_pressed ()">
272
277
  <a name="gtk-button-pressed"></a><h3>gtk_button_pressed ()</h3>
273
278
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_button_pressed (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);</pre>
274
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
279
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
275
280
  <h3 class="title">Warning</h3>
276
281
  <p><code class="literal">gtk_button_pressed</code> has been deprecated since version 2.20 and should not be used in newly-written code. Use the <a class="link" href="GtkWidget.html#GtkWidget-button-press-event" title='The "button-press-event" signal'><span class="type">"button-press-event"</span></a> signal.</p>
277
282
  </div>
@@ -282,15 +287,16 @@ Emits a <a class="link" href="GtkButton.html#GtkButton-pressed" title='The "pres
282
287
  <col align="left" valign="top">
283
288
  <tbody><tr>
284
289
  <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
285
- <td>The <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> you want to send the signal to.</td>
290
+ <td>The <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> you want to send the signal to.
291
+ </td>
286
292
  </tr></tbody>
287
293
  </table></div>
288
294
  </div>
289
295
  <hr>
290
- <div class="refsect2">
296
+ <div class="refsect2" title="gtk_button_released ()">
291
297
  <a name="gtk-button-released"></a><h3>gtk_button_released ()</h3>
292
298
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_button_released (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);</pre>
293
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
299
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
294
300
  <h3 class="title">Warning</h3>
295
301
  <p><code class="literal">gtk_button_released</code> has been deprecated since version 2.20 and should not be used in newly-written code. Use the <a class="link" href="GtkWidget.html#GtkWidget-button-release-event" title='The "button-release-event" signal'><span class="type">"button-release-event"</span></a> signal.</p>
296
302
  </div>
@@ -301,12 +307,13 @@ Emits a <a class="link" href="GtkButton.html#GtkButton-released" title='The "rel
301
307
  <col align="left" valign="top">
302
308
  <tbody><tr>
303
309
  <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
304
- <td>The <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> you want to send the signal to.</td>
310
+ <td>The <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> you want to send the signal to.
311
+ </td>
305
312
  </tr></tbody>
306
313
  </table></div>
307
314
  </div>
308
315
  <hr>
309
- <div class="refsect2">
316
+ <div class="refsect2" title="gtk_button_clicked ()">
310
317
  <a name="gtk-button-clicked"></a><h3>gtk_button_clicked ()</h3>
311
318
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_button_clicked (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);</pre>
312
319
  <p>
@@ -316,15 +323,16 @@ Emits a <a class="link" href="GtkButton.html#GtkButton-clicked" title='The "clic
316
323
  <col align="left" valign="top">
317
324
  <tbody><tr>
318
325
  <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
319
- <td>The <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> you want to send the signal to.</td>
326
+ <td>The <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> you want to send the signal to.
327
+ </td>
320
328
  </tr></tbody>
321
329
  </table></div>
322
330
  </div>
323
331
  <hr>
324
- <div class="refsect2">
332
+ <div class="refsect2" title="gtk_button_enter ()">
325
333
  <a name="gtk-button-enter"></a><h3>gtk_button_enter ()</h3>
326
334
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_button_enter (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);</pre>
327
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
335
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
328
336
  <h3 class="title">Warning</h3>
329
337
  <p><code class="literal">gtk_button_enter</code> has been deprecated since version 2.20 and should not be used in newly-written code. Use the <a class="link" href="GtkWidget.html#GtkWidget-enter-notify-event" title='The "enter-notify-event" signal'><span class="type">"enter-notify-event"</span></a> signal.</p>
330
338
  </div>
@@ -335,15 +343,16 @@ Emits a <a class="link" href="GtkButton.html#GtkButton-enter" title='The "enter"
335
343
  <col align="left" valign="top">
336
344
  <tbody><tr>
337
345
  <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
338
- <td>The <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> you want to send the signal to.</td>
346
+ <td>The <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> you want to send the signal to.
347
+ </td>
339
348
  </tr></tbody>
340
349
  </table></div>
341
350
  </div>
342
351
  <hr>
343
- <div class="refsect2">
352
+ <div class="refsect2" title="gtk_button_leave ()">
344
353
  <a name="gtk-button-leave"></a><h3>gtk_button_leave ()</h3>
345
354
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_button_leave (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);</pre>
346
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
355
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
347
356
  <h3 class="title">Warning</h3>
348
357
  <p><code class="literal">gtk_button_leave</code> has been deprecated since version 2.20 and should not be used in newly-written code. Use the <a class="link" href="GtkWidget.html#GtkWidget-leave-notify-event" title='The "leave-notify-event" signal'><span class="type">"leave-notify-event"</span></a> signal.</p>
349
358
  </div>
@@ -354,12 +363,13 @@ Emits a <a class="link" href="GtkButton.html#GtkButton-leave" title='The "leave"
354
363
  <col align="left" valign="top">
355
364
  <tbody><tr>
356
365
  <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
357
- <td>The <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> you want to send the signal to.</td>
366
+ <td>The <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> you want to send the signal to.
367
+ </td>
358
368
  </tr></tbody>
359
369
  </table></div>
360
370
  </div>
361
371
  <hr>
362
- <div class="refsect2">
372
+ <div class="refsect2" title="gtk_button_set_relief ()">
363
373
  <a name="gtk-button-set-relief"></a><h3>gtk_button_set_relief ()</h3>
364
374
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_button_set_relief (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>,
365
375
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkReliefStyle" title="enum GtkReliefStyle"><span class="type">GtkReliefStyle</span></a> newstyle</code></em>);</pre>
@@ -374,17 +384,19 @@ The default style is, as one can guess, GTK_RELIEF_NORMAL.
374
384
  <tbody>
375
385
  <tr>
376
386
  <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
377
- <td>The <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> you want to set relief styles of.</td>
387
+ <td>The <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> you want to set relief styles of.
388
+ </td>
378
389
  </tr>
379
390
  <tr>
380
391
  <td><p><span class="term"><em class="parameter"><code>newstyle</code></em> :</span></p></td>
381
- <td>The GtkReliefStyle as described above.</td>
392
+ <td>The GtkReliefStyle as described above.
393
+ </td>
382
394
  </tr>
383
395
  </tbody>
384
396
  </table></div>
385
397
  </div>
386
398
  <hr>
387
- <div class="refsect2">
399
+ <div class="refsect2" title="gtk_button_get_relief ()">
388
400
  <a name="gtk-button-get-relief"></a><h3>gtk_button_get_relief ()</h3>
389
401
  <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkReliefStyle" title="enum GtkReliefStyle"><span class="returnvalue">GtkReliefStyle</span></a> gtk_button_get_relief (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);</pre>
390
402
  <p>
@@ -395,7 +407,8 @@ Returns the current relief style of the given <a class="link" href="GtkButton.ht
395
407
  <tbody>
396
408
  <tr>
397
409
  <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
398
- <td>The <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> you want the <a class="link" href="gtk-Standard-Enumerations.html#GtkReliefStyle" title="enum GtkReliefStyle"><span class="type">GtkReliefStyle</span></a> from.</td>
410
+ <td>The <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> you want the <a class="link" href="gtk-Standard-Enumerations.html#GtkReliefStyle" title="enum GtkReliefStyle"><span class="type">GtkReliefStyle</span></a> from.
411
+ </td>
399
412
  </tr>
400
413
  <tr>
401
414
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
@@ -406,7 +419,7 @@ Returns the current relief style of the given <a class="link" href="GtkButton.ht
406
419
  </table></div>
407
420
  </div>
408
421
  <hr>
409
- <div class="refsect2">
422
+ <div class="refsect2" title="gtk_button_get_label ()">
410
423
  <a name="gtk-button-get-label"></a><h3>gtk_button_get_label ()</h3>
411
424
  <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_button_get_label (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);</pre>
412
425
  <p>
@@ -426,14 +439,15 @@ use as a container.
426
439
  </tr>
427
440
  <tr>
428
441
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
429
- <td>The text of the label widget. This string is owned
430
- by the widget and must not be modified or freed.</td>
442
+ <td> The text of the label widget. This string is owned
443
+ by the widget and must not be modified or freed.
444
+ </td>
431
445
  </tr>
432
446
  </tbody>
433
447
  </table></div>
434
448
  </div>
435
449
  <hr>
436
- <div class="refsect2">
450
+ <div class="refsect2" title="gtk_button_set_label ()">
437
451
  <a name="gtk-button-set-label"></a><h3>gtk_button_set_label ()</h3>
438
452
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_button_set_label (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>,
439
453
  <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>
@@ -455,13 +469,14 @@ This will also clear any previously set labels.
455
469
  </tr>
456
470
  <tr>
457
471
  <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
458
- <td>a string</td>
472
+ <td>a string
473
+ </td>
459
474
  </tr>
460
475
  </tbody>
461
476
  </table></div>
462
477
  </div>
463
478
  <hr>
464
- <div class="refsect2">
479
+ <div class="refsect2" title="gtk_button_get_use_stock ()">
465
480
  <a name="gtk-button-get-use-stock"></a><h3>gtk_button_get_use_stock ()</h3>
466
481
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_button_get_use_stock (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);</pre>
467
482
  <p>
@@ -477,16 +492,16 @@ Returns whether the button label is a stock item.
477
492
  </tr>
478
493
  <tr>
479
494
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
480
- <td>
481
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the button label is used to
482
- select a stock item instead of being
483
- used directly as the label text.</td>
495
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the button label is used to
496
+ select a stock item instead of being
497
+ used directly as the label text.
498
+ </td>
484
499
  </tr>
485
500
  </tbody>
486
501
  </table></div>
487
502
  </div>
488
503
  <hr>
489
- <div class="refsect2">
504
+ <div class="refsect2" title="gtk_button_set_use_stock ()">
490
505
  <a name="gtk-button-set-use-stock"></a><h3>gtk_button_set_use_stock ()</h3>
491
506
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_button_set_use_stock (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>,
492
507
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> use_stock</code></em>);</pre>
@@ -505,13 +520,14 @@ stock id to select the stock item for the button.
505
520
  <tr>
506
521
  <td><p><span class="term"><em class="parameter"><code>use_stock</code></em> :</span></p></td>
507
522
  <td>
508
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the button should use a stock item</td>
523
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the button should use a stock item
524
+ </td>
509
525
  </tr>
510
526
  </tbody>
511
527
  </table></div>
512
528
  </div>
513
529
  <hr>
514
- <div class="refsect2">
530
+ <div class="refsect2" title="gtk_button_get_use_underline ()">
515
531
  <a name="gtk-button-get-use-underline"></a><h3>gtk_button_get_use_underline ()</h3>
516
532
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_button_get_use_underline (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);</pre>
517
533
  <p>
@@ -528,15 +544,15 @@ mnemonic. See <a class="link" href="GtkButton.html#gtk-button-set-use-underline"
528
544
  </tr>
529
545
  <tr>
530
546
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
531
- <td>
532
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if an embedded underline in the button label
533
- indicates the mnemonic accelerator keys.</td>
547
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if an embedded underline in the button label
548
+ indicates the mnemonic accelerator keys.
549
+ </td>
534
550
  </tr>
535
551
  </tbody>
536
552
  </table></div>
537
553
  </div>
538
554
  <hr>
539
- <div class="refsect2">
555
+ <div class="refsect2" title="gtk_button_set_use_underline ()">
540
556
  <a name="gtk-button-set-use-underline"></a><h3>gtk_button_set_use_underline ()</h3>
541
557
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_button_set_use_underline (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>,
542
558
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> use_underline</code></em>);</pre>
@@ -555,13 +571,14 @@ the next character should be used for the mnemonic accelerator key.
555
571
  <tr>
556
572
  <td><p><span class="term"><em class="parameter"><code>use_underline</code></em> :</span></p></td>
557
573
  <td>
558
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if underlines in the text indicate mnemonics</td>
574
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if underlines in the text indicate mnemonics
575
+ </td>
559
576
  </tr>
560
577
  </tbody>
561
578
  </table></div>
562
579
  </div>
563
580
  <hr>
564
- <div class="refsect2">
581
+ <div class="refsect2" title="gtk_button_set_focus_on_click ()">
565
582
  <a name="gtk-button-set-focus-on-click"></a><h3>gtk_button_set_focus_on_click ()</h3>
566
583
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_button_set_focus_on_click (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>,
567
584
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> focus_on_click</code></em>);</pre>
@@ -581,14 +598,15 @@ application.
581
598
  </tr>
582
599
  <tr>
583
600
  <td><p><span class="term"><em class="parameter"><code>focus_on_click</code></em> :</span></p></td>
584
- <td>whether the button grabs focus when clicked with the mouse</td>
601
+ <td>whether the button grabs focus when clicked with the mouse
602
+ </td>
585
603
  </tr>
586
604
  </tbody>
587
605
  </table></div>
588
606
  <p class="since">Since 2.4</p>
589
607
  </div>
590
608
  <hr>
591
- <div class="refsect2">
609
+ <div class="refsect2" title="gtk_button_get_focus_on_click ()">
592
610
  <a name="gtk-button-get-focus-on-click"></a><h3>gtk_button_get_focus_on_click ()</h3>
593
611
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_button_get_focus_on_click (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);</pre>
594
612
  <p>
@@ -605,16 +623,17 @@ See <a class="link" href="GtkButton.html#gtk-button-set-focus-on-click" title="g
605
623
  </tr>
606
624
  <tr>
607
625
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
608
- <td>
609
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the button grabs focus when it is clicked with
610
- the mouse.</td>
626
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the button grabs focus when it is clicked with
627
+ the mouse.
628
+
629
+ </td>
611
630
  </tr>
612
631
  </tbody>
613
632
  </table></div>
614
633
  <p class="since">Since 2.4</p>
615
634
  </div>
616
635
  <hr>
617
- <div class="refsect2">
636
+ <div class="refsect2" title="gtk_button_set_alignment ()">
618
637
  <a name="gtk-button-set-alignment"></a><h3>gtk_button_set_alignment ()</h3>
619
638
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_button_set_alignment (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>,
620
639
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> xalign</code></em>,
@@ -633,20 +652,22 @@ the child is a <a class="link" href="GtkMisc.html" title="GtkMisc"><span class="
633
652
  </tr>
634
653
  <tr>
635
654
  <td><p><span class="term"><em class="parameter"><code>xalign</code></em> :</span></p></td>
636
- <td>the horizontal position of the child, 0.0 is left aligned,
637
- 1.0 is right aligned</td>
655
+ <td>the horizontal position of the child, 0.0 is left aligned,
656
+ 1.0 is right aligned
657
+ </td>
638
658
  </tr>
639
659
  <tr>
640
660
  <td><p><span class="term"><em class="parameter"><code>yalign</code></em> :</span></p></td>
641
- <td>the vertical position of the child, 0.0 is top aligned,
642
- 1.0 is bottom aligned</td>
661
+ <td>the vertical position of the child, 0.0 is top aligned,
662
+ 1.0 is bottom aligned
663
+ </td>
643
664
  </tr>
644
665
  </tbody>
645
666
  </table></div>
646
667
  <p class="since">Since 2.4</p>
647
668
  </div>
648
669
  <hr>
649
- <div class="refsect2">
670
+ <div class="refsect2" title="gtk_button_get_alignment ()">
650
671
  <a name="gtk-button-get-alignment"></a><h3>gtk_button_get_alignment ()</h3>
651
672
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_button_get_alignment (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>,
652
673
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> *xalign</code></em>,
@@ -664,18 +685,20 @@ Gets the alignment of the child in the button.
664
685
  </tr>
665
686
  <tr>
666
687
  <td><p><span class="term"><em class="parameter"><code>xalign</code></em> :</span></p></td>
667
- <td>return location for horizontal alignment</td>
688
+ <td>return location for horizontal alignment
689
+ </td>
668
690
  </tr>
669
691
  <tr>
670
692
  <td><p><span class="term"><em class="parameter"><code>yalign</code></em> :</span></p></td>
671
- <td>return location for vertical alignment</td>
693
+ <td>return location for vertical alignment
694
+ </td>
672
695
  </tr>
673
696
  </tbody>
674
697
  </table></div>
675
698
  <p class="since">Since 2.4</p>
676
699
  </div>
677
700
  <hr>
678
- <div class="refsect2">
701
+ <div class="refsect2" title="gtk_button_set_image ()">
679
702
  <a name="gtk-button-set-image"></a><h3>gtk_button_set_image ()</h3>
680
703
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_button_set_image (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>,
681
704
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *image</code></em>);</pre>
@@ -695,16 +718,17 @@ image will be displayed or not, you don't have to call
695
718
  </tr>
696
719
  <tr>
697
720
  <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
698
- <td>a widget to set as the image for the button</td>
721
+ <td>a widget to set as the image for the button
722
+ </td>
699
723
  </tr>
700
724
  </tbody>
701
725
  </table></div>
702
726
  <p class="since">Since 2.6</p>
703
727
  </div>
704
728
  <hr>
705
- <div class="refsect2">
729
+ <div class="refsect2" title="gtk_button_get_image ()">
706
730
  <a name="gtk-button-get-image"></a><h3>gtk_button_get_image ()</h3>
707
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_button_get_image (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);</pre>
731
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_button_get_image (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);</pre>
708
732
  <p>
709
733
  Gets the widget that is currenty set as the image of <em class="parameter"><code>button</code></em>.
710
734
  This may have been explicitly set by <a class="link" href="GtkButton.html#gtk-button-set-image" title="gtk_button_set_image ()"><code class="function">gtk_button_set_image()</code></a>
@@ -720,7 +744,8 @@ or constructed by <a class="link" href="GtkButton.html#gtk-button-new-from-stock
720
744
  </tr>
721
745
  <tr>
722
746
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
723
- <td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> in case there is no image. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
747
+ <td> a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> in case there is no image
748
+
724
749
  </td>
725
750
  </tr>
726
751
  </tbody>
@@ -728,7 +753,7 @@ or constructed by <a class="link" href="GtkButton.html#gtk-button-new-from-stock
728
753
  <p class="since">Since 2.6</p>
729
754
  </div>
730
755
  <hr>
731
- <div class="refsect2">
756
+ <div class="refsect2" title="gtk_button_set_image_position ()">
732
757
  <a name="gtk-button-set-image-position"></a><h3>gtk_button_set_image_position ()</h3>
733
758
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_button_set_image_position (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>,
734
759
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkPositionType" title="enum GtkPositionType"><span class="type">GtkPositionType</span></a> position</code></em>);</pre>
@@ -746,14 +771,15 @@ inside the button.
746
771
  </tr>
747
772
  <tr>
748
773
  <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
749
- <td>the position</td>
774
+ <td>the position
775
+ </td>
750
776
  </tr>
751
777
  </tbody>
752
778
  </table></div>
753
779
  <p class="since">Since 2.10</p>
754
780
  </div>
755
781
  <hr>
756
- <div class="refsect2">
782
+ <div class="refsect2" title="gtk_button_get_image_position ()">
757
783
  <a name="gtk-button-get-image-position"></a><h3>gtk_button_get_image_position ()</h3>
758
784
  <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkPositionType" title="enum GtkPositionType"><span class="returnvalue">GtkPositionType</span></a> gtk_button_get_image_position (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);</pre>
759
785
  <p>
@@ -770,16 +796,18 @@ inside the button.
770
796
  </tr>
771
797
  <tr>
772
798
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
773
- <td>the position</td>
799
+ <td> the position
800
+
801
+ </td>
774
802
  </tr>
775
803
  </tbody>
776
804
  </table></div>
777
805
  <p class="since">Since 2.10</p>
778
806
  </div>
779
807
  <hr>
780
- <div class="refsect2">
808
+ <div class="refsect2" title="gtk_button_get_event_window ()">
781
809
  <a name="gtk-button-get-event-window"></a><h3>gtk_button_get_event_window ()</h3>
782
- <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> * gtk_button_get_event_window (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);</pre>
810
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a>* gtk_button_get_event_window (<em class="parameter"><code><a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button</code></em>);</pre>
783
811
  <p>
784
812
  Returns the button's event window if it is realized, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> otherwise.
785
813
  This function should be rarely needed.
@@ -794,8 +822,7 @@ This function should be rarely needed.
794
822
  </tr>
795
823
  <tr>
796
824
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
797
- <td>
798
- <em class="parameter"><code>button</code></em>'s event window. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
825
+ <td> <em class="parameter"><code>button</code></em>'s event window. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
799
826
  </td>
800
827
  </tr>
801
828
  </tbody>
@@ -803,22 +830,22 @@ This function should be rarely needed.
803
830
  <p class="since">Since 2.22</p>
804
831
  </div>
805
832
  </div>
806
- <div class="refsect1">
833
+ <div class="refsect1" title="Property Details">
807
834
  <a name="GtkButton.property-details"></a><h2>Property Details</h2>
808
- <div class="refsect2">
835
+ <div class="refsect2" title='The "focus-on-click" property'>
809
836
  <a name="GtkButton--focus-on-click"></a><h3>The <code class="literal">"focus-on-click"</code> property</h3>
810
837
  <pre class="programlisting"> "focus-on-click" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
811
838
  <p>Whether the button grabs focus when it is clicked with the mouse.</p>
812
839
  <p>Default value: TRUE</p>
813
840
  </div>
814
841
  <hr>
815
- <div class="refsect2">
842
+ <div class="refsect2" title='The "image" property'>
816
843
  <a name="GtkButton--image"></a><h3>The <code class="literal">"image"</code> property</h3>
817
844
  <pre class="programlisting"> "image" <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>* : Read / Write</pre>
818
845
  <p>Child widget to appear next to the button text.</p>
819
846
  </div>
820
847
  <hr>
821
- <div class="refsect2">
848
+ <div class="refsect2" title='The "image-position" property'>
822
849
  <a name="GtkButton--image-position"></a><h3>The <code class="literal">"image-position"</code> property</h3>
823
850
  <pre class="programlisting"> "image-position" <a class="link" href="gtk-Standard-Enumerations.html#GtkPositionType" title="enum GtkPositionType"><span class="type">GtkPositionType</span></a> : Read / Write</pre>
824
851
  <p>
@@ -828,35 +855,35 @@ The position of the image relative to the text inside the button.
828
855
  <p class="since">Since 2.10</p>
829
856
  </div>
830
857
  <hr>
831
- <div class="refsect2">
858
+ <div class="refsect2" title='The "label" property'>
832
859
  <a name="GtkButton--label"></a><h3>The <code class="literal">"label"</code> property</h3>
833
860
  <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 / Construct</pre>
834
861
  <p>Text of the label widget inside the button, if the button contains a label widget.</p>
835
862
  <p>Default value: NULL</p>
836
863
  </div>
837
864
  <hr>
838
- <div class="refsect2">
865
+ <div class="refsect2" title='The "relief" property'>
839
866
  <a name="GtkButton--relief"></a><h3>The <code class="literal">"relief"</code> property</h3>
840
867
  <pre class="programlisting"> "relief" <a class="link" href="gtk-Standard-Enumerations.html#GtkReliefStyle" title="enum GtkReliefStyle"><span class="type">GtkReliefStyle</span></a> : Read / Write</pre>
841
868
  <p>The border relief style.</p>
842
869
  <p>Default value: GTK_RELIEF_NORMAL</p>
843
870
  </div>
844
871
  <hr>
845
- <div class="refsect2">
872
+ <div class="refsect2" title='The "use-stock" property'>
846
873
  <a name="GtkButton--use-stock"></a><h3>The <code class="literal">"use-stock"</code> property</h3>
847
874
  <pre class="programlisting"> "use-stock" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write / Construct</pre>
848
875
  <p>If set, the label is used to pick a stock item instead of being displayed.</p>
849
876
  <p>Default value: FALSE</p>
850
877
  </div>
851
878
  <hr>
852
- <div class="refsect2">
879
+ <div class="refsect2" title='The "use-underline" property'>
853
880
  <a name="GtkButton--use-underline"></a><h3>The <code class="literal">"use-underline"</code> property</h3>
854
881
  <pre class="programlisting"> "use-underline" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write / Construct</pre>
855
882
  <p>If set, an underline in the text indicates the next character should be used for the mnemonic accelerator key.</p>
856
883
  <p>Default value: FALSE</p>
857
884
  </div>
858
885
  <hr>
859
- <div class="refsect2">
886
+ <div class="refsect2" title='The "xalign" property'>
860
887
  <a name="GtkButton--xalign"></a><h3>The <code class="literal">"xalign"</code> property</h3>
861
888
  <pre class="programlisting"> "xalign" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> : Read / Write</pre>
862
889
  <p>
@@ -869,7 +896,7 @@ can be used to control it's horizontal alignment. 0.0 is left aligned,
869
896
  <p class="since">Since 2.4</p>
870
897
  </div>
871
898
  <hr>
872
- <div class="refsect2">
899
+ <div class="refsect2" title='The "yalign" property'>
873
900
  <a name="GtkButton--yalign"></a><h3>The <code class="literal">"yalign"</code> property</h3>
874
901
  <pre class="programlisting"> "yalign" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> : Read / Write</pre>
875
902
  <p>
@@ -882,25 +909,25 @@ can be used to control it's vertical alignment. 0.0 is top aligned,
882
909
  <p class="since">Since 2.4</p>
883
910
  </div>
884
911
  </div>
885
- <div class="refsect1">
912
+ <div class="refsect1" title="Style Property Details">
886
913
  <a name="GtkButton.style-property-details"></a><h2>Style Property Details</h2>
887
- <div class="refsect2">
914
+ <div class="refsect2" title='The "child-displacement-x" style property'>
888
915
  <a name="GtkButton--s-child-displacement-x"></a><h3>The <code class="literal">"child-displacement-x"</code> style property</h3>
889
916
  <pre class="programlisting"> "child-displacement-x" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
890
917
  <p>How far in the x direction to move the child when the button is depressed.</p>
891
918
  <p>Default value: 0</p>
892
919
  </div>
893
920
  <hr>
894
- <div class="refsect2">
921
+ <div class="refsect2" title='The "child-displacement-y" style property'>
895
922
  <a name="GtkButton--s-child-displacement-y"></a><h3>The <code class="literal">"child-displacement-y"</code> style property</h3>
896
923
  <pre class="programlisting"> "child-displacement-y" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
897
924
  <p>How far in the y direction to move the child when the button is depressed.</p>
898
925
  <p>Default value: 0</p>
899
926
  </div>
900
927
  <hr>
901
- <div class="refsect2">
928
+ <div class="refsect2" title='The "default-border" style property'>
902
929
  <a name="GtkButton--s-default-border"></a><h3>The <code class="literal">"default-border"</code> style property</h3>
903
- <pre class="programlisting"> "default-border" <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read</pre>
930
+ <pre class="programlisting"> "default-border" <a class="link" href="GtkStyle.html#GtkBorder" title="GtkBorder"><span class="type">GtkBorder</span></a>* : Read</pre>
904
931
  <p>
905
932
  The "default-border" style property defines the extra space to add
906
933
  around a button that can become the default widget of its window.
@@ -908,9 +935,9 @@ For more information about default widgets, see <a class="link" href="GtkWidget.
908
935
  </p>
909
936
  </div>
910
937
  <hr>
911
- <div class="refsect2">
938
+ <div class="refsect2" title='The "default-outside-border" style property'>
912
939
  <a name="GtkButton--s-default-outside-border"></a><h3>The <code class="literal">"default-outside-border"</code> style property</h3>
913
- <pre class="programlisting"> "default-outside-border" <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read</pre>
940
+ <pre class="programlisting"> "default-outside-border" <a class="link" href="GtkStyle.html#GtkBorder" title="GtkBorder"><span class="type">GtkBorder</span></a>* : Read</pre>
914
941
  <p>
915
942
  The "default-outside-border" style property defines the extra outside
916
943
  space to add around a button that can become the default widget of its
@@ -919,7 +946,7 @@ For more information about default widgets, see <a class="link" href="GtkWidget.
919
946
  </p>
920
947
  </div>
921
948
  <hr>
922
- <div class="refsect2">
949
+ <div class="refsect2" title='The "displace-focus" style property'>
923
950
  <a name="GtkButton--s-displace-focus"></a><h3>The <code class="literal">"displace-focus"</code> style property</h3>
924
951
  <pre class="programlisting"> "displace-focus" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
925
952
  <p>
@@ -930,7 +957,7 @@ should also affect the focus rectangle.
930
957
  <p class="since">Since 2.6</p>
931
958
  </div>
932
959
  <hr>
933
- <div class="refsect2">
960
+ <div class="refsect2" title='The "image-spacing" style property'>
934
961
  <a name="GtkButton--s-image-spacing"></a><h3>The <code class="literal">"image-spacing"</code> style property</h3>
935
962
  <pre class="programlisting"> "image-spacing" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
936
963
  <p>Spacing in pixels between the image and label.</p>
@@ -938,21 +965,21 @@ should also affect the focus rectangle.
938
965
  <p>Default value: 2</p>
939
966
  </div>
940
967
  <hr>
941
- <div class="refsect2">
968
+ <div class="refsect2" title='The "inner-border" style property'>
942
969
  <a name="GtkButton--s-inner-border"></a><h3>The <code class="literal">"inner-border"</code> style property</h3>
943
- <pre class="programlisting"> "inner-border" <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read</pre>
970
+ <pre class="programlisting"> "inner-border" <a class="link" href="GtkStyle.html#GtkBorder" title="GtkBorder"><span class="type">GtkBorder</span></a>* : Read</pre>
944
971
  <p>
945
972
  Sets the border between the button edges and child.
946
973
  </p>
947
974
  <p class="since">Since 2.10</p>
948
975
  </div>
949
976
  </div>
950
- <div class="refsect1">
977
+ <div class="refsect1" title="Signal Details">
951
978
  <a name="GtkButton.signal-details"></a><h2>Signal Details</h2>
952
- <div class="refsect2">
979
+ <div class="refsect2" title='The "activate" signal'>
953
980
  <a name="GtkButton-activate"></a><h3>The <code class="literal">"activate"</code> signal</h3>
954
981
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *widget,
955
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
982
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First / Action</pre>
956
983
  <p>
957
984
  The ::activate signal on GtkButton is an action signal and
958
985
  emitting it causes the button to animate press then release.
@@ -964,7 +991,8 @@ Applications should never connect to this signal, but use the
964
991
  <tbody>
965
992
  <tr>
966
993
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
967
- <td>the object which received the signal.</td>
994
+ <td>the object which received the signal.
995
+ </td>
968
996
  </tr>
969
997
  <tr>
970
998
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -974,10 +1002,10 @@ Applications should never connect to this signal, but use the
974
1002
  </table></div>
975
1003
  </div>
976
1004
  <hr>
977
- <div class="refsect2">
1005
+ <div class="refsect2" title='The "clicked" signal'>
978
1006
  <a name="GtkButton-clicked"></a><h3>The <code class="literal">"clicked"</code> signal</h3>
979
1007
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button,
980
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
1008
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First / Action</pre>
981
1009
  <p>
982
1010
  Emitted when the button has been activated (pressed and released).
983
1011
  </p>
@@ -986,7 +1014,8 @@ Emitted when the button has been activated (pressed and released).
986
1014
  <tbody>
987
1015
  <tr>
988
1016
  <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
989
- <td>the object that received the signal</td>
1017
+ <td>the object that received the signal
1018
+ </td>
990
1019
  </tr>
991
1020
  <tr>
992
1021
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -996,11 +1025,11 @@ Emitted when the button has been activated (pressed and released).
996
1025
  </table></div>
997
1026
  </div>
998
1027
  <hr>
999
- <div class="refsect2">
1028
+ <div class="refsect2" title='The "enter" signal'>
1000
1029
  <a name="GtkButton-enter"></a><h3>The <code class="literal">"enter"</code> signal</h3>
1001
1030
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button,
1002
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a></pre>
1003
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1031
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First</pre>
1032
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1004
1033
  <h3 class="title">Warning</h3>
1005
1034
  <p><code class="literal">GtkButton::enter</code> has been deprecated since version 2.8 and should not be used in newly-written code. Use the <a class="link" href="GtkWidget.html#GtkWidget-enter-notify-event" title='The "enter-notify-event" signal'><span class="type">"enter-notify-event"</span></a> signal.</p>
1006
1035
  </div>
@@ -1012,7 +1041,8 @@ Emitted when the pointer enters the button.
1012
1041
  <tbody>
1013
1042
  <tr>
1014
1043
  <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
1015
- <td>the object that received the signal</td>
1044
+ <td>the object that received the signal
1045
+ </td>
1016
1046
  </tr>
1017
1047
  <tr>
1018
1048
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1022,11 +1052,11 @@ Emitted when the pointer enters the button.
1022
1052
  </table></div>
1023
1053
  </div>
1024
1054
  <hr>
1025
- <div class="refsect2">
1055
+ <div class="refsect2" title='The "leave" signal'>
1026
1056
  <a name="GtkButton-leave"></a><h3>The <code class="literal">"leave"</code> signal</h3>
1027
1057
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button,
1028
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a></pre>
1029
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1058
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First</pre>
1059
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1030
1060
  <h3 class="title">Warning</h3>
1031
1061
  <p><code class="literal">GtkButton::leave</code> has been deprecated since version 2.8 and should not be used in newly-written code. Use the <a class="link" href="GtkWidget.html#GtkWidget-leave-notify-event" title='The "leave-notify-event" signal'><span class="type">"leave-notify-event"</span></a> signal.</p>
1032
1062
  </div>
@@ -1038,7 +1068,8 @@ Emitted when the pointer leaves the button.
1038
1068
  <tbody>
1039
1069
  <tr>
1040
1070
  <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
1041
- <td>the object that received the signal</td>
1071
+ <td>the object that received the signal
1072
+ </td>
1042
1073
  </tr>
1043
1074
  <tr>
1044
1075
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1048,11 +1079,11 @@ Emitted when the pointer leaves the button.
1048
1079
  </table></div>
1049
1080
  </div>
1050
1081
  <hr>
1051
- <div class="refsect2">
1082
+ <div class="refsect2" title='The "pressed" signal'>
1052
1083
  <a name="GtkButton-pressed"></a><h3>The <code class="literal">"pressed"</code> signal</h3>
1053
1084
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button,
1054
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a></pre>
1055
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1085
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First</pre>
1086
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1056
1087
  <h3 class="title">Warning</h3>
1057
1088
  <p><code class="literal">GtkButton::pressed</code> has been deprecated since version 2.8 and should not be used in newly-written code. Use the <a class="link" href="GtkWidget.html#GtkWidget-button-press-event" title='The "button-press-event" signal'><span class="type">"button-press-event"</span></a> signal.</p>
1058
1089
  </div>
@@ -1064,7 +1095,8 @@ Emitted when the button is pressed.
1064
1095
  <tbody>
1065
1096
  <tr>
1066
1097
  <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
1067
- <td>the object that received the signal</td>
1098
+ <td>the object that received the signal
1099
+ </td>
1068
1100
  </tr>
1069
1101
  <tr>
1070
1102
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1074,11 +1106,11 @@ Emitted when the button is pressed.
1074
1106
  </table></div>
1075
1107
  </div>
1076
1108
  <hr>
1077
- <div class="refsect2">
1109
+ <div class="refsect2" title='The "released" signal'>
1078
1110
  <a name="GtkButton-released"></a><h3>The <code class="literal">"released"</code> signal</h3>
1079
1111
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> *button,
1080
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a></pre>
1081
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1112
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First</pre>
1113
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1082
1114
  <h3 class="title">Warning</h3>
1083
1115
  <p><code class="literal">GtkButton::released</code> has been deprecated since version 2.8 and should not be used in newly-written code. Use the <a class="link" href="GtkWidget.html#GtkWidget-button-release-event" title='The "button-release-event" signal'><span class="type">"button-release-event"</span></a> signal.</p>
1084
1116
  </div>
@@ -1090,7 +1122,8 @@ Emitted when the button is released.
1090
1122
  <tbody>
1091
1123
  <tr>
1092
1124
  <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
1093
- <td>the object that received the signal</td>
1125
+ <td>the object that received the signal
1126
+ </td>
1094
1127
  </tr>
1095
1128
  <tr>
1096
1129
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1103,6 +1136,6 @@ Emitted when the button is released.
1103
1136
  </div>
1104
1137
  <div class="footer">
1105
1138
  <hr>
1106
- Generated by GTK-Doc V1.16.1</div>
1139
+ Generated by GTK-Doc V1.15</div>
1107
1140
  </body>
1108
1141
  </html>