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="SpecialObjects.html" title="Special-purpose features">
9
9
  <link rel="prev" href="GtkGammaCurve.html" title="GtkGammaCurve">
10
10
  <link rel="next" href="GtkHRuler.html" title="GtkHRuler">
11
- <meta name="generator" content="GTK-Doc V1.16.1 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.15 (XML mode)">
12
12
  <link rel="stylesheet" href="style.css" type="text/css">
13
13
  </head>
14
14
  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -32,7 +32,7 @@
32
32
  <a href="#GtkRuler.properties" class="shortcut">Properties</a>
33
33
  </td></tr>
34
34
  </table>
35
- <div class="refentry">
35
+ <div class="refentry" title="GtkRuler">
36
36
  <a name="GtkRuler"></a><div class="titlepage"></div>
37
37
  <div class="refnamediv"><table width="100%"><tr>
38
38
  <td valign="top">
@@ -41,13 +41,13 @@
41
41
  </td>
42
42
  <td valign="top" align="right"></td>
43
43
  </tr></table></div>
44
- <div class="refsynopsisdiv">
44
+ <div class="refsynopsisdiv" title="Synopsis">
45
45
  <a name="GtkRuler.synopsis"></a><h2>Synopsis</h2>
46
46
  <pre class="synopsis">
47
47
  #include &lt;gtk/gtk.h&gt;
48
48
 
49
- struct <a class="link" href="GtkRuler.html#GtkRuler-struct" title="struct GtkRuler">GtkRuler</a>;
50
- struct <a class="link" href="GtkRuler.html#GtkRulerMetric" title="struct GtkRulerMetric">GtkRulerMetric</a>;
49
+ <a class="link" href="GtkRuler.html#GtkRuler-struct" title="GtkRuler">GtkRuler</a>;
50
+ <a class="link" href="GtkRuler.html#GtkRulerMetric" title="GtkRulerMetric">GtkRulerMetric</a>;
51
51
  <span class="returnvalue">void</span> <a class="link" href="GtkRuler.html#gtk-ruler-set-metric" title="gtk_ruler_set_metric ()">gtk_ruler_set_metric</a> (<em class="parameter"><code><a class="link" href="GtkRuler.html" title="GtkRuler"><span class="type">GtkRuler</span></a> *ruler</code></em>,
52
52
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkMetricType" title="enum GtkMetricType"><span class="type">GtkMetricType</span></a> metric</code></em>);
53
53
  <span class="returnvalue">void</span> <a class="link" href="GtkRuler.html#gtk-ruler-set-range" title="gtk_ruler_set_range ()">gtk_ruler_set_range</a> (<em class="parameter"><code><a class="link" href="GtkRuler.html" title="GtkRuler"><span class="type">GtkRuler</span></a> *ruler</code></em>,
@@ -63,7 +63,7 @@ struct <a class="link" href="GtkRuler.html#GtkRulerMetric" title="s
63
63
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> *max_size</code></em>);
64
64
  </pre>
65
65
  </div>
66
- <div class="refsect1">
66
+ <div class="refsect1" title="Object Hierarchy">
67
67
  <a name="GtkRuler.object-hierarchy"></a><h2>Object Hierarchy</h2>
68
68
  <pre class="synopsis">
69
69
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -75,13 +75,13 @@ struct <a class="link" href="GtkRuler.html#GtkRulerMetric" title="s
75
75
  +----<a class="link" href="GtkVRuler.html" title="GtkVRuler">GtkVRuler</a>
76
76
  </pre>
77
77
  </div>
78
- <div class="refsect1">
78
+ <div class="refsect1" title="Implemented Interfaces">
79
79
  <a name="GtkRuler.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
80
80
  <p>
81
81
  GtkRuler implements
82
82
  AtkImplementorIface, <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a> and <a class="link" href="gtk-Orientable.html#GtkOrientable">GtkOrientable</a>.</p>
83
83
  </div>
84
- <div class="refsect1">
84
+ <div class="refsect1" title="Properties">
85
85
  <a name="GtkRuler.properties"></a><h2>Properties</h2>
86
86
  <pre class="synopsis">
87
87
  "<a class="link" href="GtkRuler.html#GtkRuler--lower" title='The "lower" property'>lower</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write
@@ -91,16 +91,18 @@ GtkRuler implements
91
91
  "<a class="link" href="GtkRuler.html#GtkRuler--upper" title='The "upper" property'>upper</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write
92
92
  </pre>
93
93
  </div>
94
- <div class="refsect1">
94
+ <div class="refsect1" title="Description">
95
95
  <a name="GtkRuler.description"></a><h2>Description</h2>
96
- <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
96
+ <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
97
97
  <h3 class="title">Note</h3>
98
98
  <p>
99
99
  This widget is considered too specialized/little-used for
100
- GTK+, and will be removed in GTK 3. If your application needs this widget,
101
- feel free to use it, as the widget is useful in some applications; it's just
102
- not of general interest. However, we are not accepting new features for the
103
- widget, and it will move out of the GTK+ distribution.
100
+ GTK+, and will in the future be moved to some other package. If
101
+ your application needs this widget, feel free to use it, as the
102
+ widget does work and is useful in some applications; it's just not
103
+ of general interest. However, we are not accepting new features for
104
+ the widget, and it will eventually move out of the GTK+
105
+ distribution.
104
106
  </p>
105
107
  </div>
106
108
  <p>
@@ -112,24 +114,20 @@ ruler. See <a class="link" href="GtkHRuler.html" title="GtkHRuler"><span class="
112
114
  <a class="link" href="GtkVRuler.html" title="GtkVRuler"><span class="type">GtkVRuler</span></a> to learn how to create a new vertical ruler.
113
115
  </p>
114
116
  </div>
115
- <div class="refsect1">
117
+ <div class="refsect1" title="Details">
116
118
  <a name="GtkRuler.details"></a><h2>Details</h2>
117
- <div class="refsect2">
118
- <a name="GtkRuler-struct"></a><h3>struct GtkRuler</h3>
119
- <pre class="programlisting">struct GtkRuler;</pre>
120
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
121
- <h3 class="title">Warning</h3>
122
- <p><code class="literal">GtkRuler</code> is deprecated and should not be used in newly-written code.</p>
123
- </div>
119
+ <div class="refsect2" title="GtkRuler">
120
+ <a name="GtkRuler-struct"></a><h3>GtkRuler</h3>
121
+ <pre class="programlisting">typedef struct _GtkRuler GtkRuler;</pre>
124
122
  <p>
125
123
  All distances are in 1/72nd's of an inch. (According to Adobe thats a point, but
126
124
  points are really 1/72.27 in.)
127
125
  </p>
128
126
  </div>
129
127
  <hr>
130
- <div class="refsect2">
131
- <a name="GtkRulerMetric"></a><h3>struct GtkRulerMetric</h3>
132
- <pre class="programlisting">struct GtkRulerMetric {
128
+ <div class="refsect2" title="GtkRulerMetric">
129
+ <a name="GtkRulerMetric"></a><h3>GtkRulerMetric</h3>
130
+ <pre class="programlisting">typedef struct {
133
131
  gchar *metric_name;
134
132
  gchar *abbrev;
135
133
  /* This should be points_per_unit. This is the size of the unit
@@ -137,27 +135,17 @@ points are really 1/72.27 in.)
137
135
  gdouble pixels_per_unit;
138
136
  gdouble ruler_scale[10];
139
137
  gint subdivide[5]; /* five possible modes of subdivision */
140
- };
138
+ } GtkRulerMetric;
141
139
  </pre>
142
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
143
- <h3 class="title">Warning</h3>
144
- <p><code class="literal">GtkRulerMetric</code> has been deprecated since version 2.24 and should not be used in newly-written code. <a class="link" href="GtkRuler.html" title="GtkRuler"><span class="type">GtkRuler</span></a> has been removed from GTK 3 for being
145
- unmaintained and too specialized. There is no replacement.</p>
146
- </div>
147
140
  <p>
148
141
  This should be points_per_unit. This is the size of the unit in 1/72nd's of an inch and has nothing to do with screen pixels.
149
142
  </p>
150
143
  </div>
151
144
  <hr>
152
- <div class="refsect2">
145
+ <div class="refsect2" title="gtk_ruler_set_metric ()">
153
146
  <a name="gtk-ruler-set-metric"></a><h3>gtk_ruler_set_metric ()</h3>
154
147
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_ruler_set_metric (<em class="parameter"><code><a class="link" href="GtkRuler.html" title="GtkRuler"><span class="type">GtkRuler</span></a> *ruler</code></em>,
155
148
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkMetricType" title="enum GtkMetricType"><span class="type">GtkMetricType</span></a> metric</code></em>);</pre>
156
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
157
- <h3 class="title">Warning</h3>
158
- <p><code class="literal">gtk_ruler_set_metric</code> has been deprecated since version 2.24 and should not be used in newly-written code. <a class="link" href="GtkRuler.html" title="GtkRuler"><span class="type">GtkRuler</span></a> has been removed from GTK 3 for being
159
- unmaintained and too specialized. There is no replacement.</p>
160
- </div>
161
149
  <p>
162
150
  This calls the <span class="type">GTKMetricType</span> to set the ruler to units defined. Available units
163
151
  are GTK_PIXELS, GTK_INCHES, or GTK_CENTIMETERS. The default unit of measurement
@@ -168,69 +156,64 @@ is GTK_PIXELS.
168
156
  <tbody>
169
157
  <tr>
170
158
  <td><p><span class="term"><em class="parameter"><code>ruler</code></em> :</span></p></td>
171
- <td>the gtkruler</td>
159
+ <td>the gtkruler
160
+ </td>
172
161
  </tr>
173
162
  <tr>
174
163
  <td><p><span class="term"><em class="parameter"><code>metric</code></em> :</span></p></td>
175
- <td>the unit of measurement</td>
164
+ <td>the unit of measurement
165
+ </td>
176
166
  </tr>
177
167
  </tbody>
178
168
  </table></div>
179
169
  </div>
180
170
  <hr>
181
- <div class="refsect2">
171
+ <div class="refsect2" title="gtk_ruler_set_range ()">
182
172
  <a name="gtk-ruler-set-range"></a><h3>gtk_ruler_set_range ()</h3>
183
173
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_ruler_set_range (<em class="parameter"><code><a class="link" href="GtkRuler.html" title="GtkRuler"><span class="type">GtkRuler</span></a> *ruler</code></em>,
184
174
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> lower</code></em>,
185
175
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> upper</code></em>,
186
176
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> position</code></em>,
187
177
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> max_size</code></em>);</pre>
188
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
189
- <h3 class="title">Warning</h3>
190
- <p><code class="literal">gtk_ruler_set_range</code> is deprecated and should not be used in newly-written code.</p>
191
- </div>
192
- <p>
193
- This sets the range of the ruler.
194
- </p>
195
178
  <p>
196
- <em class="parameter"><code>Deprecated</code></em>: 2.24: <a class="link" href="GtkRuler.html" title="GtkRuler"><span class="type">GtkRuler</span></a> has been removed from GTK 3 for being
197
- unmaintained and too specialized. There is no replacement.
179
+ This sets the range of the ruler.
198
180
  </p>
199
181
  <div class="variablelist"><table border="0">
200
182
  <col align="left" valign="top">
201
183
  <tbody>
202
184
  <tr>
203
185
  <td><p><span class="term"><em class="parameter"><code>ruler</code></em> :</span></p></td>
204
- <td>the gtkruler</td>
186
+ <td>the gtkruler
187
+ </td>
205
188
  </tr>
206
189
  <tr>
207
190
  <td><p><span class="term"><em class="parameter"><code>lower</code></em> :</span></p></td>
208
- <td>the lower limit of the ruler</td>
191
+ <td>the lower limit of the ruler
192
+ </td>
209
193
  </tr>
210
194
  <tr>
211
195
  <td><p><span class="term"><em class="parameter"><code>upper</code></em> :</span></p></td>
212
- <td>the upper limit of the ruler</td>
196
+ <td>the upper limit of the ruler
197
+ </td>
213
198
  </tr>
214
199
  <tr>
215
200
  <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
216
- <td>the mark on the ruler</td>
201
+ <td>the mark on the ruler
202
+ </td>
217
203
  </tr>
218
204
  <tr>
219
205
  <td><p><span class="term"><em class="parameter"><code>max_size</code></em> :</span></p></td>
220
206
  <td>the maximum size of the ruler used when calculating the space to
221
- leave for the text</td>
207
+ leave for the text
208
+ </td>
222
209
  </tr>
223
210
  </tbody>
224
211
  </table></div>
225
212
  </div>
226
213
  <hr>
227
- <div class="refsect2">
214
+ <div class="refsect2" title="gtk_ruler_get_metric ()">
228
215
  <a name="gtk-ruler-get-metric"></a><h3>gtk_ruler_get_metric ()</h3>
229
216
  <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkMetricType" title="enum GtkMetricType"><span class="returnvalue">GtkMetricType</span></a> gtk_ruler_get_metric (<em class="parameter"><code><a class="link" href="GtkRuler.html" title="GtkRuler"><span class="type">GtkRuler</span></a> *ruler</code></em>);</pre>
230
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
231
- <h3 class="title">Warning</h3>
232
- <p><code class="literal">gtk_ruler_get_metric</code> is deprecated and should not be used in newly-written code.</p>
233
- </div>
234
217
  <p>
235
218
  Gets the units used for a <a class="link" href="GtkRuler.html" title="GtkRuler"><span class="type">GtkRuler</span></a>. See <a class="link" href="GtkRuler.html#gtk-ruler-set-metric" title="gtk_ruler_set_metric ()"><code class="function">gtk_ruler_set_metric()</code></a>.
236
219
  </p>
@@ -244,33 +227,24 @@ Gets the units used for a <a class="link" href="GtkRuler.html" title="GtkRuler">
244
227
  </tr>
245
228
  <tr>
246
229
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
247
- <td>the units currently used for <em class="parameter"><code>ruler</code></em>
248
- <em class="parameter"><code>Deprecated</code></em>: 2.24: <a class="link" href="GtkRuler.html" title="GtkRuler"><span class="type">GtkRuler</span></a> has been removed from GTK 3 for being
249
- unmaintained and too specialized. There is no replacement.</td>
230
+ <td> the units currently used for <em class="parameter"><code>ruler</code></em>
231
+ </td>
250
232
  </tr>
251
233
  </tbody>
252
234
  </table></div>
253
235
  </div>
254
236
  <hr>
255
- <div class="refsect2">
237
+ <div class="refsect2" title="gtk_ruler_get_range ()">
256
238
  <a name="gtk-ruler-get-range"></a><h3>gtk_ruler_get_range ()</h3>
257
239
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_ruler_get_range (<em class="parameter"><code><a class="link" href="GtkRuler.html" title="GtkRuler"><span class="type">GtkRuler</span></a> *ruler</code></em>,
258
240
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> *lower</code></em>,
259
241
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> *upper</code></em>,
260
242
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> *position</code></em>,
261
243
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> *max_size</code></em>);</pre>
262
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
263
- <h3 class="title">Warning</h3>
264
- <p><code class="literal">gtk_ruler_get_range</code> is deprecated and should not be used in newly-written code.</p>
265
- </div>
266
244
  <p>
267
245
  Retrieves values indicating the range and current position of a <a class="link" href="GtkRuler.html" title="GtkRuler"><span class="type">GtkRuler</span></a>.
268
246
  See <a class="link" href="GtkRuler.html#gtk-ruler-set-range" title="gtk_ruler_set_range ()"><code class="function">gtk_ruler_set_range()</code></a>.
269
247
  </p>
270
- <p>
271
- <em class="parameter"><code>Deprecated</code></em>: 2.24: <a class="link" href="GtkRuler.html" title="GtkRuler"><span class="type">GtkRuler</span></a> has been removed from GTK 3 for being
272
- unmaintained and too specialized. There is no replacement.
273
- </p>
274
248
  <div class="variablelist"><table border="0">
275
249
  <col align="left" valign="top">
276
250
  <tbody>
@@ -281,45 +255,46 @@ See <a class="link" href="GtkRuler.html#gtk-ruler-set-range" title="gtk_ruler_se
281
255
  </tr>
282
256
  <tr>
283
257
  <td><p><span class="term"><em class="parameter"><code>lower</code></em> :</span></p></td>
284
- <td>location to store lower limit of the ruler, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
258
+ <td> location to store lower limit of the ruler, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
285
259
  </td>
286
260
  </tr>
287
261
  <tr>
288
262
  <td><p><span class="term"><em class="parameter"><code>upper</code></em> :</span></p></td>
289
- <td>location to store upper limit of the ruler, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
263
+ <td> location to store upper limit of the ruler, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
290
264
  </td>
291
265
  </tr>
292
266
  <tr>
293
267
  <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
294
- <td>location to store the current position of the mark on the ruler, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
268
+ <td> location to store the current position of the mark on the ruler, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
295
269
  </td>
296
270
  </tr>
297
271
  <tr>
298
272
  <td><p><span class="term"><em class="parameter"><code>max_size</code></em> :</span></p></td>
299
273
  <td>location to store the maximum size of the ruler used when calculating
300
- the space to leave for the text, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</td>
274
+ the space to leave for the text, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
275
+ </td>
301
276
  </tr>
302
277
  </tbody>
303
278
  </table></div>
304
279
  </div>
305
280
  </div>
306
- <div class="refsect1">
281
+ <div class="refsect1" title="Property Details">
307
282
  <a name="GtkRuler.property-details"></a><h2>Property Details</h2>
308
- <div class="refsect2">
283
+ <div class="refsect2" title='The "lower" property'>
309
284
  <a name="GtkRuler--lower"></a><h3>The <code class="literal">"lower"</code> property</h3>
310
285
  <pre class="programlisting"> "lower" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write</pre>
311
286
  <p>Lower limit of ruler.</p>
312
287
  <p>Default value: 0</p>
313
288
  </div>
314
289
  <hr>
315
- <div class="refsect2">
290
+ <div class="refsect2" title='The "max-size" property'>
316
291
  <a name="GtkRuler--max-size"></a><h3>The <code class="literal">"max-size"</code> property</h3>
317
292
  <pre class="programlisting"> "max-size" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write</pre>
318
293
  <p>Maximum size of the ruler.</p>
319
294
  <p>Default value: 0</p>
320
295
  </div>
321
296
  <hr>
322
- <div class="refsect2">
297
+ <div class="refsect2" title='The "metric" property'>
323
298
  <a name="GtkRuler--metric"></a><h3>The <code class="literal">"metric"</code> property</h3>
324
299
  <pre class="programlisting"> "metric" <a class="link" href="gtk-Standard-Enumerations.html#GtkMetricType" title="enum GtkMetricType"><span class="type">GtkMetricType</span></a> : Read / Write</pre>
325
300
  <p>
@@ -329,21 +304,21 @@ The metric used for the ruler.
329
304
  <p class="since">Since 2.8</p>
330
305
  </div>
331
306
  <hr>
332
- <div class="refsect2">
307
+ <div class="refsect2" title='The "position" property'>
333
308
  <a name="GtkRuler--position"></a><h3>The <code class="literal">"position"</code> property</h3>
334
309
  <pre class="programlisting"> "position" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write</pre>
335
310
  <p>Position of mark on the ruler.</p>
336
311
  <p>Default value: 0</p>
337
312
  </div>
338
313
  <hr>
339
- <div class="refsect2">
314
+ <div class="refsect2" title='The "upper" property'>
340
315
  <a name="GtkRuler--upper"></a><h3>The <code class="literal">"upper"</code> property</h3>
341
316
  <pre class="programlisting"> "upper" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write</pre>
342
317
  <p>Upper limit of ruler.</p>
343
318
  <p>Default value: 0</p>
344
319
  </div>
345
320
  </div>
346
- <div class="refsect1">
321
+ <div class="refsect1" title="See Also">
347
322
  <a name="GtkRuler.see-also"></a><h2>See Also</h2>
348
323
  <p>
349
324
  <a class="link" href="GtkHRuler.html" title="GtkHRuler"><span class="type">GtkHRuler</span></a>, <a class="link" href="GtkVRuler.html" title="GtkVRuler"><span class="type">GtkVRuler</span></a>
@@ -352,6 +327,6 @@ The metric used for the ruler.
352
327
  </div>
353
328
  <div class="footer">
354
329
  <hr>
355
- Generated by GTK-Doc V1.16.1</div>
330
+ Generated by GTK-Doc V1.15</div>
356
331
  </body>
357
332
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="AbstractObjects.html" title="Abstract Base Classes">
9
9
  <link rel="prev" href="GtkRange.html" title="GtkRange">
10
10
  <link rel="next" href="GtkScrollbar.html" title="GtkScrollbar">
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="#GtkScale.signals" class="shortcut">Signals</a>
37
37
  </td></tr>
38
38
  </table>
39
- <div class="refentry">
39
+ <div class="refentry" title="GtkScale">
40
40
  <a name="GtkScale"></a><div class="titlepage"></div>
41
41
  <div class="refnamediv"><table width="100%"><tr>
42
42
  <td valign="top">
@@ -45,12 +45,12 @@
45
45
  </td>
46
46
  <td valign="top" align="right"><img src="scales.png"></td>
47
47
  </tr></table></div>
48
- <div class="refsynopsisdiv">
48
+ <div class="refsynopsisdiv" title="Synopsis">
49
49
  <a name="GtkScale.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="GtkScale.html#GtkScale-struct" title="struct GtkScale">GtkScale</a>;
53
+ <a class="link" href="GtkScale.html#GtkScale-struct" title="GtkScale">GtkScale</a>;
54
54
  <span class="returnvalue">void</span> <a class="link" href="GtkScale.html#gtk-scale-set-digits" title="gtk_scale_set_digits ()">gtk_scale_set_digits</a> (<em class="parameter"><code><a class="link" href="GtkScale.html" title="GtkScale"><span class="type">GtkScale</span></a> *scale</code></em>,
55
55
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> digits</code></em>);
56
56
  <span class="returnvalue">void</span> <a class="link" href="GtkScale.html#gtk-scale-set-draw-value" title="gtk_scale_set_draw_value ()">gtk_scale_set_draw_value</a> (<em class="parameter"><code><a class="link" href="GtkScale.html" title="GtkScale"><span class="type">GtkScale</span></a> *scale</code></em>,
@@ -71,7 +71,7 @@ struct <a class="link" href="GtkScale.html#GtkScale-struct" title="
71
71
  <span class="returnvalue">void</span> <a class="link" href="GtkScale.html#gtk-scale-clear-marks" title="gtk_scale_clear_marks ()">gtk_scale_clear_marks</a> (<em class="parameter"><code><a class="link" href="GtkScale.html" title="GtkScale"><span class="type">GtkScale</span></a> *scale</code></em>);
72
72
  </pre>
73
73
  </div>
74
- <div class="refsect1">
74
+ <div class="refsect1" title="Object Hierarchy">
75
75
  <a name="GtkScale.object-hierarchy"></a><h2>Object Hierarchy</h2>
76
76
  <pre class="synopsis">
77
77
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -84,13 +84,13 @@ struct <a class="link" href="GtkScale.html#GtkScale-struct" title="
84
84
  +----<a class="link" href="GtkVScale.html" title="GtkVScale">GtkVScale</a>
85
85
  </pre>
86
86
  </div>
87
- <div class="refsect1">
87
+ <div class="refsect1" title="Implemented Interfaces">
88
88
  <a name="GtkScale.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
89
89
  <p>
90
90
  GtkScale implements
91
91
  AtkImplementorIface, <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a> and <a class="link" href="gtk-Orientable.html#GtkOrientable">GtkOrientable</a>.</p>
92
92
  </div>
93
- <div class="refsect1">
93
+ <div class="refsect1" title="Properties">
94
94
  <a name="GtkScale.properties"></a><h2>Properties</h2>
95
95
  <pre class="synopsis">
96
96
  "<a class="link" href="GtkScale.html#GtkScale--digits" title='The "digits" property'>digits</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
@@ -98,20 +98,20 @@ GtkScale implements
98
98
  "<a class="link" href="GtkScale.html#GtkScale--value-pos" title='The "value-pos" property'>value-pos</a>" <a class="link" href="gtk-Standard-Enumerations.html#GtkPositionType" title="enum GtkPositionType"><span class="type">GtkPositionType</span></a> : Read / Write
99
99
  </pre>
100
100
  </div>
101
- <div class="refsect1">
101
+ <div class="refsect1" title="Style Properties">
102
102
  <a name="GtkScale.style-properties"></a><h2>Style Properties</h2>
103
103
  <pre class="synopsis">
104
104
  "<a class="link" href="GtkScale.html#GtkScale--s-slider-length" title='The "slider-length" style property'>slider-length</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read
105
105
  "<a class="link" href="GtkScale.html#GtkScale--s-value-spacing" title='The "value-spacing" style property'>value-spacing</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read
106
106
  </pre>
107
107
  </div>
108
- <div class="refsect1">
108
+ <div class="refsect1" title="Signals">
109
109
  <a name="GtkScale.signals"></a><h2>Signals</h2>
110
110
  <pre class="synopsis">
111
- "<a class="link" href="GtkScale.html#GtkScale-format-value" title='The "format-value" signal'>format-value</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
111
+ "<a class="link" href="GtkScale.html#GtkScale-format-value" title='The "format-value" signal'>format-value</a>" : Run Last
112
112
  </pre>
113
113
  </div>
114
- <div class="refsect1">
114
+ <div class="refsect1" title="Description">
115
115
  <a name="GtkScale.description"></a><h2>Description</h2>
116
116
  <p>
117
117
  A <a class="link" href="GtkScale.html" title="GtkScale"><span class="type">GtkScale</span></a> is a slider control used to select a numeric value.
@@ -126,7 +126,7 @@ The <a class="link" href="GtkScale.html" title="GtkScale"><span class="type">Gtk
126
126
  subclasses <a class="link" href="GtkHScale.html" title="GtkHScale"><span class="type">GtkHScale</span></a> and <a class="link" href="GtkVScale.html" title="GtkVScale"><span class="type">GtkVScale</span></a>. To create a scale widget,
127
127
  call <a class="link" href="GtkHScale.html#gtk-hscale-new-with-range" title="gtk_hscale_new_with_range ()"><code class="function">gtk_hscale_new_with_range()</code></a> or <a class="link" href="GtkVScale.html#gtk-vscale-new-with-range" title="gtk_vscale_new_with_range ()"><code class="function">gtk_vscale_new_with_range()</code></a>.
128
128
  </p>
129
- <div class="refsect2">
129
+ <div class="refsect2" title="GtkScale as GtkBuildable">
130
130
  <a name="GtkScale-BUILDER-UI"></a><h3>GtkScale as GtkBuildable</h3>
131
131
  <p>
132
132
  GtkScale supports a custom &lt;marks&gt; element, which
@@ -138,18 +138,18 @@ to show at the mark. It can be translated with the usual "translatable and
138
138
  </p>
139
139
  </div>
140
140
  </div>
141
- <div class="refsect1">
141
+ <div class="refsect1" title="Details">
142
142
  <a name="GtkScale.details"></a><h2>Details</h2>
143
- <div class="refsect2">
144
- <a name="GtkScale-struct"></a><h3>struct GtkScale</h3>
145
- <pre class="programlisting">struct GtkScale;</pre>
143
+ <div class="refsect2" title="GtkScale">
144
+ <a name="GtkScale-struct"></a><h3>GtkScale</h3>
145
+ <pre class="programlisting">typedef struct _GtkScale GtkScale;</pre>
146
146
  <p>
147
- The fields of the <a class="link" href="GtkScale.html#GtkScale-struct" title="struct GtkScale"><span class="type">GtkScale</span></a> struct should only be accessed via
147
+ The fields of the <a class="link" href="GtkScale.html#GtkScale-struct" title="GtkScale"><span class="type">GtkScale</span></a> struct should only be accessed via
148
148
  the accessor functions.
149
149
  </p>
150
150
  </div>
151
151
  <hr>
152
- <div class="refsect2">
152
+ <div class="refsect2" title="gtk_scale_set_digits ()">
153
153
  <a name="gtk-scale-set-digits"></a><h3>gtk_scale_set_digits ()</h3>
154
154
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_scale_set_digits (<em class="parameter"><code><a class="link" href="GtkScale.html" title="GtkScale"><span class="type">GtkScale</span></a> *scale</code></em>,
155
155
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> digits</code></em>);</pre>
@@ -168,14 +168,15 @@ number of digits, so the retrieved value matches the value the user saw.
168
168
  </tr>
169
169
  <tr>
170
170
  <td><p><span class="term"><em class="parameter"><code>digits</code></em> :</span></p></td>
171
- <td>the number of decimal places to display,
172
- e.g. use 1 to display 1.0, 2 to display 1.00, etc</td>
171
+ <td>the number of decimal places to display,
172
+ e.g. use 1 to display 1.0, 2 to display 1.00, etc
173
+ </td>
173
174
  </tr>
174
175
  </tbody>
175
176
  </table></div>
176
177
  </div>
177
178
  <hr>
178
- <div class="refsect2">
179
+ <div class="refsect2" title="gtk_scale_set_draw_value ()">
179
180
  <a name="gtk-scale-set-draw-value"></a><h3>gtk_scale_set_draw_value ()</h3>
180
181
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_scale_set_draw_value (<em class="parameter"><code><a class="link" href="GtkScale.html" title="GtkScale"><span class="type">GtkScale</span></a> *scale</code></em>,
181
182
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> draw_value</code></em>);</pre>
@@ -194,13 +195,14 @@ to the slider.
194
195
  <tr>
195
196
  <td><p><span class="term"><em class="parameter"><code>draw_value</code></em> :</span></p></td>
196
197
  <td>
197
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to draw the value</td>
198
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to draw the value
199
+ </td>
198
200
  </tr>
199
201
  </tbody>
200
202
  </table></div>
201
203
  </div>
202
204
  <hr>
203
- <div class="refsect2">
205
+ <div class="refsect2" title="gtk_scale_set_value_pos ()">
204
206
  <a name="gtk-scale-set-value-pos"></a><h3>gtk_scale_set_value_pos ()</h3>
205
207
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_scale_set_value_pos (<em class="parameter"><code><a class="link" href="GtkScale.html" title="GtkScale"><span class="type">GtkScale</span></a> *scale</code></em>,
206
208
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkPositionType" title="enum GtkPositionType"><span class="type">GtkPositionType</span></a> pos</code></em>);</pre>
@@ -217,13 +219,14 @@ Sets the position in which the current value is displayed.
217
219
  </tr>
218
220
  <tr>
219
221
  <td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
220
- <td>the position in which the current value is displayed</td>
222
+ <td>the position in which the current value is displayed
223
+ </td>
221
224
  </tr>
222
225
  </tbody>
223
226
  </table></div>
224
227
  </div>
225
228
  <hr>
226
- <div class="refsect2">
229
+ <div class="refsect2" title="gtk_scale_get_digits ()">
227
230
  <a name="gtk-scale-get-digits"></a><h3>gtk_scale_get_digits ()</h3>
228
231
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_scale_get_digits (<em class="parameter"><code><a class="link" href="GtkScale.html" title="GtkScale"><span class="type">GtkScale</span></a> *scale</code></em>);</pre>
229
232
  <p>
@@ -239,13 +242,14 @@ Gets the number of decimal places that are displayed in the value.
239
242
  </tr>
240
243
  <tr>
241
244
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
242
- <td>the number of decimal places that are displayed</td>
245
+ <td> the number of decimal places that are displayed
246
+ </td>
243
247
  </tr>
244
248
  </tbody>
245
249
  </table></div>
246
250
  </div>
247
251
  <hr>
248
- <div class="refsect2">
252
+ <div class="refsect2" title="gtk_scale_get_draw_value ()">
249
253
  <a name="gtk-scale-get-draw-value"></a><h3>gtk_scale_get_draw_value ()</h3>
250
254
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_scale_get_draw_value (<em class="parameter"><code><a class="link" href="GtkScale.html" title="GtkScale"><span class="type">GtkScale</span></a> *scale</code></em>);</pre>
251
255
  <p>
@@ -262,13 +266,14 @@ next to the slider.
262
266
  </tr>
263
267
  <tr>
264
268
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
265
- <td>whether the current value is displayed as a string</td>
269
+ <td> whether the current value is displayed as a string
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_scale_get_value_pos ()">
272
277
  <a name="gtk-scale-get-value-pos"></a><h3>gtk_scale_get_value_pos ()</h3>
273
278
  <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkPositionType" title="enum GtkPositionType"><span class="returnvalue">GtkPositionType</span></a> gtk_scale_get_value_pos (<em class="parameter"><code><a class="link" href="GtkScale.html" title="GtkScale"><span class="type">GtkScale</span></a> *scale</code></em>);</pre>
274
279
  <p>
@@ -284,19 +289,20 @@ Gets the position in which the current value is displayed.
284
289
  </tr>
285
290
  <tr>
286
291
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
287
- <td>the position in which the current value is displayed</td>
292
+ <td> the position in which the current value is displayed
293
+ </td>
288
294
  </tr>
289
295
  </tbody>
290
296
  </table></div>
291
297
  </div>
292
298
  <hr>
293
- <div class="refsect2">
299
+ <div class="refsect2" title="gtk_scale_get_layout ()">
294
300
  <a name="gtk-scale-get-layout"></a><h3>gtk_scale_get_layout ()</h3>
295
301
  <pre class="programlisting"><a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="returnvalue">PangoLayout</span></a> * gtk_scale_get_layout (<em class="parameter"><code><a class="link" href="GtkScale.html" title="GtkScale"><span class="type">GtkScale</span></a> *scale</code></em>);</pre>
296
302
  <p>
297
- Gets the <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> used to display the scale. The returned
298
- object is owned by the scale so does not need to be freed by
299
- the caller.
303
+ Gets the <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> used to display the scale.
304
+ The returned object is owned by the scale so does
305
+ not need to be freed by the caller.
300
306
  </p>
301
307
  <div class="variablelist"><table border="0">
302
308
  <col align="left" valign="top">
@@ -308,8 +314,9 @@ the caller.
308
314
  </tr>
309
315
  <tr>
310
316
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
311
- <td>the <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> for this scale,
312
- or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the <a class="link" href="GtkScale.html#GtkScale--draw-value" title='The "draw-value" property'><span class="type">"draw-value"</span></a> property is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
317
+ <td> the <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> for this scale, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
318
+ if the <a class="link" href="GtkScale.html#GtkScale--draw-value" title='The "draw-value" property'><span class="type">"draw-value"</span></a> property is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.
319
+
313
320
  </td>
314
321
  </tr>
315
322
  </tbody>
@@ -317,7 +324,7 @@ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.ht
317
324
  <p class="since">Since 2.4</p>
318
325
  </div>
319
326
  <hr>
320
- <div class="refsect2">
327
+ <div class="refsect2" title="gtk_scale_get_layout_offsets ()">
321
328
  <a name="gtk-scale-get-layout-offsets"></a><h3>gtk_scale_get_layout_offsets ()</h3>
322
329
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_scale_get_layout_offsets (<em class="parameter"><code><a class="link" href="GtkScale.html" title="GtkScale"><span class="type">GtkScale</span></a> *scale</code></em>,
323
330
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
@@ -342,12 +349,12 @@ values are undefined.
342
349
  </tr>
343
350
  <tr>
344
351
  <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
345
- <td>location to store X offset of layout, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
352
+ <td> location to store X offset of layout, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
346
353
  </td>
347
354
  </tr>
348
355
  <tr>
349
356
  <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
350
- <td>location to store Y offset of layout, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
357
+ <td> location to store Y offset of layout, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
351
358
  </td>
352
359
  </tr>
353
360
  </tbody>
@@ -355,7 +362,7 @@ values are undefined.
355
362
  <p class="since">Since 2.4</p>
356
363
  </div>
357
364
  <hr>
358
- <div class="refsect2">
365
+ <div class="refsect2" title="gtk_scale_add_mark ()">
359
366
  <a name="gtk-scale-add-mark"></a><h3>gtk_scale_add_mark ()</h3>
360
367
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_scale_add_mark (<em class="parameter"><code><a class="link" href="GtkScale.html" title="GtkScale"><span class="type">GtkScale</span></a> *scale</code></em>,
361
368
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> value</code></em>,
@@ -385,19 +392,21 @@ To remove marks from a scale, use <a class="link" href="GtkScale.html#gtk-scale-
385
392
  </tr>
386
393
  <tr>
387
394
  <td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
388
- <td>the value at which the mark is placed, must be between
389
- the lower and upper limits of the scales' adjustment</td>
395
+ <td>the value at which the mark is placed, must be between
396
+ the lower and upper limits of the scales' adjustment
397
+ </td>
390
398
  </tr>
391
399
  <tr>
392
400
  <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
393
401
  <td>where to draw the mark. For a horizontal scale, <a class="link" href="gtk-Standard-Enumerations.html#GTK-POS-TOP:CAPS"><span class="type">GTK_POS_TOP</span></a>
394
- is drawn above the scale, anything else below. For a vertical scale,
395
- <a class="link" href="gtk-Standard-Enumerations.html#GTK-POS-LEFT:CAPS"><span class="type">GTK_POS_LEFT</span></a> is drawn to the left of the scale, anything else to the
396
- right.</td>
402
+ is drawn above the scale, anything else below. For a vertical scale,
403
+ <a class="link" href="gtk-Standard-Enumerations.html#GTK-POS-LEFT:CAPS"><span class="type">GTK_POS_LEFT</span></a> is drawn to the left of the scale, anything else to the
404
+ right.
405
+ </td>
397
406
  </tr>
398
407
  <tr>
399
408
  <td><p><span class="term"><em class="parameter"><code>markup</code></em> :</span></p></td>
400
- <td>Text to be shown at the mark, using <a href="/usr/share/gtk-doc/html/pango/PangoMarkupFormat.html">Pango markup</a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
409
+ <td> Text to be shown at the mark, using <a href="/usr/share/gtk-doc/html/pango/PangoMarkupFormat.html">Pango markup</a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
401
410
  </td>
402
411
  </tr>
403
412
  </tbody>
@@ -405,7 +414,7 @@ right.</td>
405
414
  <p class="since">Since 2.16</p>
406
415
  </div>
407
416
  <hr>
408
- <div class="refsect2">
417
+ <div class="refsect2" title="gtk_scale_clear_marks ()">
409
418
  <a name="gtk-scale-clear-marks"></a><h3>gtk_scale_clear_marks ()</h3>
410
419
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_scale_clear_marks (<em class="parameter"><code><a class="link" href="GtkScale.html" title="GtkScale"><span class="type">GtkScale</span></a> *scale</code></em>);</pre>
411
420
  <p>
@@ -422,9 +431,9 @@ Removes any marks that have been added with <a class="link" href="GtkScale.html#
422
431
  <p class="since">Since 2.16</p>
423
432
  </div>
424
433
  </div>
425
- <div class="refsect1">
434
+ <div class="refsect1" title="Property Details">
426
435
  <a name="GtkScale.property-details"></a><h2>Property Details</h2>
427
- <div class="refsect2">
436
+ <div class="refsect2" title='The "digits" property'>
428
437
  <a name="GtkScale--digits"></a><h3>The <code class="literal">"digits"</code> property</h3>
429
438
  <pre class="programlisting"> "digits" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
430
439
  <p>The number of decimal places that are displayed in the value.</p>
@@ -432,23 +441,23 @@ Removes any marks that have been added with <a class="link" href="GtkScale.html#
432
441
  <p>Default value: 1</p>
433
442
  </div>
434
443
  <hr>
435
- <div class="refsect2">
444
+ <div class="refsect2" title='The "draw-value" property'>
436
445
  <a name="GtkScale--draw-value"></a><h3>The <code class="literal">"draw-value"</code> property</h3>
437
446
  <pre class="programlisting"> "draw-value" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
438
447
  <p>Whether the current value is displayed as a string next to the slider.</p>
439
448
  <p>Default value: TRUE</p>
440
449
  </div>
441
450
  <hr>
442
- <div class="refsect2">
451
+ <div class="refsect2" title='The "value-pos" property'>
443
452
  <a name="GtkScale--value-pos"></a><h3>The <code class="literal">"value-pos"</code> property</h3>
444
453
  <pre class="programlisting"> "value-pos" <a class="link" href="gtk-Standard-Enumerations.html#GtkPositionType" title="enum GtkPositionType"><span class="type">GtkPositionType</span></a> : Read / Write</pre>
445
454
  <p>The position in which the current value is displayed.</p>
446
455
  <p>Default value: GTK_POS_TOP</p>
447
456
  </div>
448
457
  </div>
449
- <div class="refsect1">
458
+ <div class="refsect1" title="Style Property Details">
450
459
  <a name="GtkScale.style-property-details"></a><h2>Style Property Details</h2>
451
- <div class="refsect2">
460
+ <div class="refsect2" title='The "slider-length" style property'>
452
461
  <a name="GtkScale--s-slider-length"></a><h3>The <code class="literal">"slider-length"</code> style property</h3>
453
462
  <pre class="programlisting"> "slider-length" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
454
463
  <p>Length of scale's slider.</p>
@@ -456,7 +465,7 @@ Removes any marks that have been added with <a class="link" href="GtkScale.html#
456
465
  <p>Default value: 31</p>
457
466
  </div>
458
467
  <hr>
459
- <div class="refsect2">
468
+ <div class="refsect2" title='The "value-spacing" style property'>
460
469
  <a name="GtkScale--s-value-spacing"></a><h3>The <code class="literal">"value-spacing"</code> style property</h3>
461
470
  <pre class="programlisting"> "value-spacing" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
462
471
  <p>Space between value text and the slider/trough area.</p>
@@ -464,13 +473,13 @@ Removes any marks that have been added with <a class="link" href="GtkScale.html#
464
473
  <p>Default value: 2</p>
465
474
  </div>
466
475
  </div>
467
- <div class="refsect1">
476
+ <div class="refsect1" title="Signal Details">
468
477
  <a name="GtkScale.signal-details"></a><h2>Signal Details</h2>
469
- <div class="refsect2">
478
+ <div class="refsect2" title='The "format-value" signal'>
470
479
  <a name="GtkScale-format-value"></a><h3>The <code class="literal">"format-value"</code> signal</h3>
471
480
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>* user_function (<a class="link" href="GtkScale.html" title="GtkScale"><span class="type">GtkScale</span></a> *scale,
472
481
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> value,
473
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
482
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
474
483
  <p>
475
484
  Signal which allows you to change how the scale value is displayed.
476
485
  Connect a signal handler which returns an allocated string representing
@@ -510,11 +519,13 @@ with "--&gt;1.0&lt;--".
510
519
  <tbody>
511
520
  <tr>
512
521
  <td><p><span class="term"><em class="parameter"><code>scale</code></em> :</span></p></td>
513
- <td>the object which received the signal</td>
522
+ <td>the object which received the signal
523
+ </td>
514
524
  </tr>
515
525
  <tr>
516
526
  <td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
517
- <td>the value to format</td>
527
+ <td>the value to format
528
+ </td>
518
529
  </tr>
519
530
  <tr>
520
531
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -522,7 +533,7 @@ with "--&gt;1.0&lt;--".
522
533
  </tr>
523
534
  <tr>
524
535
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
525
- <td>allocated string representing <em class="parameter"><code>value</code></em>
536
+ <td> allocated string representing <em class="parameter"><code>value</code></em>
526
537
  </td>
527
538
  </tr>
528
539
  </tbody>
@@ -532,6 +543,6 @@ with "--&gt;1.0&lt;--".
532
543
  </div>
533
544
  <div class="footer">
534
545
  <hr>
535
- Generated by GTK-Doc V1.16.1</div>
546
+ Generated by GTK-Doc V1.15</div>
536
547
  </body>
537
548
  </html>