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="AbstractObjects.html" title="Abstract Base Classes">
9
9
  <link rel="prev" href="GtkPaned.html" title="GtkPaned">
10
10
  <link rel="next" href="GtkScale.html" title="GtkScale">
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="#GtkRange.signals" class="shortcut">Signals</a>
37
37
  </td></tr>
38
38
  </table>
39
- <div class="refentry">
39
+ <div class="refentry" title="GtkRange">
40
40
  <a name="GtkRange"></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"></td>
47
47
  </tr></table></div>
48
- <div class="refsynopsisdiv">
48
+ <div class="refsynopsisdiv" title="Synopsis">
49
49
  <a name="GtkRange.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="GtkRange.html#GtkRange-struct" title="struct GtkRange">GtkRange</a>;
53
+ <a class="link" href="GtkRange.html#GtkRange-struct" title="GtkRange">GtkRange</a>;
54
54
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> <a class="link" href="GtkRange.html#gtk-range-get-fill-level" title="gtk_range_get_fill_level ()">gtk_range_get_fill_level</a> (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);
55
55
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkRange.html#gtk-range-get-restrict-to-fill-level" title="gtk_range_get_restrict_to_fill_level ()">gtk_range_get_restrict_to_fill_level</a>
56
56
  (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);
@@ -62,7 +62,7 @@ struct <a class="link" href="GtkRange.html#GtkRange-struct" title="
62
62
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> restrict_to_fill_level</code></em>);
63
63
  <span class="returnvalue">void</span> <a class="link" href="GtkRange.html#gtk-range-set-show-fill-level" title="gtk_range_set_show_fill_level ()">gtk_range_set_show_fill_level</a> (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
64
64
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> show_fill_level</code></em>);
65
- <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * <a class="link" href="GtkRange.html#gtk-range-get-adjustment" title="gtk_range_get_adjustment ()">gtk_range_get_adjustment</a> (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);
65
+ <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a>* <a class="link" href="GtkRange.html#gtk-range-get-adjustment" title="gtk_range_get_adjustment ()">gtk_range_get_adjustment</a> (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);
66
66
  <span class="returnvalue">void</span> <a class="link" href="GtkRange.html#gtk-range-set-update-policy" title="gtk_range_set_update_policy ()">gtk_range_set_update_policy</a> (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
67
67
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkUpdateType" title="enum GtkUpdateType"><span class="type">GtkUpdateType</span></a> policy</code></em>);
68
68
  <span class="returnvalue">void</span> <a class="link" href="GtkRange.html#gtk-range-set-adjustment" title="gtk_range_set_adjustment ()">gtk_range_set_adjustment</a> (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
@@ -71,18 +71,15 @@ struct <a class="link" href="GtkRange.html#GtkRange-struct" title="
71
71
  <span class="returnvalue">void</span> <a class="link" href="GtkRange.html#gtk-range-set-inverted" title="gtk_range_set_inverted ()">gtk_range_set_inverted</a> (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
72
72
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);
73
73
  <a class="link" href="gtk-Standard-Enumerations.html#GtkUpdateType" title="enum GtkUpdateType"><span class="returnvalue">GtkUpdateType</span></a> <a class="link" href="GtkRange.html#gtk-range-get-update-policy" title="gtk_range_get_update_policy ()">gtk_range_get_update_policy</a> (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);
74
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> <a class="link" href="GtkRange.html#gtk-range-get-value" title="gtk_range_get_value ()">gtk_range_get_value</a> (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);
74
75
  <span class="returnvalue">void</span> <a class="link" href="GtkRange.html#gtk-range-set-increments" title="gtk_range_set_increments ()">gtk_range_set_increments</a> (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
75
76
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> step</code></em>,
76
77
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> page</code></em>);
77
78
  <span class="returnvalue">void</span> <a class="link" href="GtkRange.html#gtk-range-set-range" title="gtk_range_set_range ()">gtk_range_set_range</a> (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
78
79
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> min</code></em>,
79
80
  <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</code></em>);
80
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> <a class="link" href="GtkRange.html#gtk-range-get-value" title="gtk_range_get_value ()">gtk_range_get_value</a> (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);
81
81
  <span class="returnvalue">void</span> <a class="link" href="GtkRange.html#gtk-range-set-value" title="gtk_range_set_value ()">gtk_range_set_value</a> (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
82
82
  <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>);
83
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkRange.html#gtk-range-get-round-digits" title="gtk_range_get_round_digits ()">gtk_range_get_round_digits</a> (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);
84
- <span class="returnvalue">void</span> <a class="link" href="GtkRange.html#gtk-range-set-round-digits" title="gtk_range_set_round_digits ()">gtk_range_set_round_digits</a> (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
85
- <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> round_digits</code></em>);
86
83
  enum <a class="link" href="GtkRange.html#GtkSensitivityType" title="enum GtkSensitivityType">GtkSensitivityType</a>;
87
84
  <span class="returnvalue">void</span> <a class="link" href="GtkRange.html#gtk-range-set-lower-stepper-sensitivity" title="gtk_range_set_lower_stepper_sensitivity ()">gtk_range_set_lower_stepper_sensitivity</a>
88
85
  (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
@@ -110,7 +107,7 @@ enum <a class="link" href="GtkRange.html#GtkSensitivityType" titl
110
107
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> size_fixed</code></em>);
111
108
  </pre>
112
109
  </div>
113
- <div class="refsect1">
110
+ <div class="refsect1" title="Object Hierarchy">
114
111
  <a name="GtkRange.object-hierarchy"></a><h2>Object Hierarchy</h2>
115
112
  <pre class="synopsis">
116
113
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -122,13 +119,13 @@ enum <a class="link" href="GtkRange.html#GtkSensitivityType" titl
122
119
  +----<a class="link" href="GtkScrollbar.html" title="GtkScrollbar">GtkScrollbar</a>
123
120
  </pre>
124
121
  </div>
125
- <div class="refsect1">
122
+ <div class="refsect1" title="Implemented Interfaces">
126
123
  <a name="GtkRange.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
127
124
  <p>
128
125
  GtkRange implements
129
126
  AtkImplementorIface, <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a> and <a class="link" href="gtk-Orientable.html#GtkOrientable">GtkOrientable</a>.</p>
130
127
  </div>
131
- <div class="refsect1">
128
+ <div class="refsect1" title="Properties">
132
129
  <a name="GtkRange.properties"></a><h2>Properties</h2>
133
130
  <pre class="synopsis">
134
131
  "<a class="link" href="GtkRange.html#GtkRange--adjustment" title='The "adjustment" property'>adjustment</a>" <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>* : Read / Write / Construct
@@ -136,13 +133,12 @@ GtkRange implements
136
133
  "<a class="link" href="GtkRange.html#GtkRange--inverted" title='The "inverted" property'>inverted</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
137
134
  "<a class="link" href="GtkRange.html#GtkRange--lower-stepper-sensitivity" title='The "lower-stepper-sensitivity" property'>lower-stepper-sensitivity</a>" <a class="link" href="GtkRange.html#GtkSensitivityType" title="enum GtkSensitivityType"><span class="type">GtkSensitivityType</span></a> : Read / Write
138
135
  "<a class="link" href="GtkRange.html#GtkRange--restrict-to-fill-level" title='The "restrict-to-fill-level" property'>restrict-to-fill-level</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
139
- "<a class="link" href="GtkRange.html#GtkRange--round-digits" title='The "round-digits" property'>round-digits</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
140
136
  "<a class="link" href="GtkRange.html#GtkRange--show-fill-level" title='The "show-fill-level" property'>show-fill-level</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
141
137
  "<a class="link" href="GtkRange.html#GtkRange--update-policy" title='The "update-policy" property'>update-policy</a>" <a class="link" href="gtk-Standard-Enumerations.html#GtkUpdateType" title="enum GtkUpdateType"><span class="type">GtkUpdateType</span></a> : Read / Write
142
138
  "<a class="link" href="GtkRange.html#GtkRange--upper-stepper-sensitivity" title='The "upper-stepper-sensitivity" property'>upper-stepper-sensitivity</a>" <a class="link" href="GtkRange.html#GtkSensitivityType" title="enum GtkSensitivityType"><span class="type">GtkSensitivityType</span></a> : Read / Write
143
139
  </pre>
144
140
  </div>
145
- <div class="refsect1">
141
+ <div class="refsect1" title="Style Properties">
146
142
  <a name="GtkRange.style-properties"></a><h2>Style Properties</h2>
147
143
  <pre class="synopsis">
148
144
  "<a class="link" href="GtkRange.html#GtkRange--s-activate-slider" title='The "activate-slider" style property'>activate-slider</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read
@@ -158,16 +154,16 @@ GtkRange implements
158
154
  "<a class="link" href="GtkRange.html#GtkRange--s-trough-under-steppers" title='The "trough-under-steppers" style property'>trough-under-steppers</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read
159
155
  </pre>
160
156
  </div>
161
- <div class="refsect1">
157
+ <div class="refsect1" title="Signals">
162
158
  <a name="GtkRange.signals"></a><h2>Signals</h2>
163
159
  <pre class="synopsis">
164
- "<a class="link" href="GtkRange.html#GtkRange-adjust-bounds" title='The "adjust-bounds" signal'>adjust-bounds</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>
165
- "<a class="link" href="GtkRange.html#GtkRange-change-value" title='The "change-value" signal'>change-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>
166
- "<a class="link" href="GtkRange.html#GtkRange-move-slider" title='The "move-slider" signal'>move-slider</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
167
- "<a class="link" href="GtkRange.html#GtkRange-value-changed" title='The "value-changed" signal'>value-changed</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
160
+ "<a class="link" href="GtkRange.html#GtkRange-adjust-bounds" title='The "adjust-bounds" signal'>adjust-bounds</a>" : Run Last
161
+ "<a class="link" href="GtkRange.html#GtkRange-change-value" title='The "change-value" signal'>change-value</a>" : Run Last
162
+ "<a class="link" href="GtkRange.html#GtkRange-move-slider" title='The "move-slider" signal'>move-slider</a>" : Run Last / Action
163
+ "<a class="link" href="GtkRange.html#GtkRange-value-changed" title='The "value-changed" signal'>value-changed</a>" : Run Last
168
164
  </pre>
169
165
  </div>
170
- <div class="refsect1">
166
+ <div class="refsect1" title="Description">
171
167
  <a name="GtkRange.description"></a><h2>Description</h2>
172
168
  <p>
173
169
  <a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> is the common base class for widgets which visualize an
@@ -180,16 +176,16 @@ of the "steppers". It also provides properties and methods for setting a
180
176
  "fill level" on range widgets. See <a class="link" href="GtkRange.html#gtk-range-set-fill-level" title="gtk_range_set_fill_level ()"><code class="function">gtk_range_set_fill_level()</code></a>.
181
177
  </p>
182
178
  </div>
183
- <div class="refsect1">
179
+ <div class="refsect1" title="Details">
184
180
  <a name="GtkRange.details"></a><h2>Details</h2>
185
- <div class="refsect2">
186
- <a name="GtkRange-struct"></a><h3>struct GtkRange</h3>
187
- <pre class="programlisting">struct GtkRange;</pre>
181
+ <div class="refsect2" title="GtkRange">
182
+ <a name="GtkRange-struct"></a><h3>GtkRange</h3>
183
+ <pre class="programlisting">typedef struct _GtkRange GtkRange;</pre>
188
184
  <p>
189
185
  </p>
190
186
  </div>
191
187
  <hr>
192
- <div class="refsect2">
188
+ <div class="refsect2" title="gtk_range_get_fill_level ()">
193
189
  <a name="gtk-range-get-fill-level"></a><h3>gtk_range_get_fill_level ()</h3>
194
190
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> gtk_range_get_fill_level (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);</pre>
195
191
  <p>
@@ -205,14 +201,16 @@ Gets the current position of the fill level indicator.
205
201
  </tr>
206
202
  <tr>
207
203
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
208
- <td>The current fill level</td>
204
+ <td> The current fill level
205
+
206
+ </td>
209
207
  </tr>
210
208
  </tbody>
211
209
  </table></div>
212
210
  <p class="since">Since 2.12</p>
213
211
  </div>
214
212
  <hr>
215
- <div class="refsect2">
213
+ <div class="refsect2" title="gtk_range_get_restrict_to_fill_level ()">
216
214
  <a name="gtk-range-get-restrict-to-fill-level"></a><h3>gtk_range_get_restrict_to_fill_level ()</h3>
217
215
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_range_get_restrict_to_fill_level
218
216
  (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);</pre>
@@ -229,15 +227,16 @@ Gets whether the range is restricted to the fill level.
229
227
  </tr>
230
228
  <tr>
231
229
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
232
- <td>
233
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>range</code></em> is restricted to the fill level.</td>
230
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>range</code></em> is restricted to the fill level.
231
+
232
+ </td>
234
233
  </tr>
235
234
  </tbody>
236
235
  </table></div>
237
236
  <p class="since">Since 2.12</p>
238
237
  </div>
239
238
  <hr>
240
- <div class="refsect2">
239
+ <div class="refsect2" title="gtk_range_get_show_fill_level ()">
241
240
  <a name="gtk-range-get-show-fill-level"></a><h3>gtk_range_get_show_fill_level ()</h3>
242
241
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_range_get_show_fill_level (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);</pre>
243
242
  <p>
@@ -253,15 +252,16 @@ Gets whether the range displays the fill level graphically.
253
252
  </tr>
254
253
  <tr>
255
254
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
256
- <td>
257
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>range</code></em> shows the fill level.</td>
255
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>range</code></em> shows the fill level.
256
+
257
+ </td>
258
258
  </tr>
259
259
  </tbody>
260
260
  </table></div>
261
261
  <p class="since">Since 2.12</p>
262
262
  </div>
263
263
  <hr>
264
- <div class="refsect2">
264
+ <div class="refsect2" title="gtk_range_set_fill_level ()">
265
265
  <a name="gtk-range-set-fill-level"></a><h3>gtk_range_set_fill_level ()</h3>
266
266
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_range_set_fill_level (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
267
267
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> fill_level</code></em>);</pre>
@@ -297,14 +297,15 @@ enabled.
297
297
  </tr>
298
298
  <tr>
299
299
  <td><p><span class="term"><em class="parameter"><code>fill_level</code></em> :</span></p></td>
300
- <td>the new position of the fill level indicator</td>
300
+ <td>the new position of the fill level indicator
301
+ </td>
301
302
  </tr>
302
303
  </tbody>
303
304
  </table></div>
304
305
  <p class="since">Since 2.12</p>
305
306
  </div>
306
307
  <hr>
307
- <div class="refsect2">
308
+ <div class="refsect2" title="gtk_range_set_restrict_to_fill_level ()">
308
309
  <a name="gtk-range-set-restrict-to-fill-level"></a><h3>gtk_range_set_restrict_to_fill_level ()</h3>
309
310
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_range_set_restrict_to_fill_level
310
311
  (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
@@ -324,14 +325,15 @@ level concept.
324
325
  </tr>
325
326
  <tr>
326
327
  <td><p><span class="term"><em class="parameter"><code>restrict_to_fill_level</code></em> :</span></p></td>
327
- <td>Whether the fill level restricts slider movement.</td>
328
+ <td>Whether the fill level restricts slider movement.
329
+ </td>
328
330
  </tr>
329
331
  </tbody>
330
332
  </table></div>
331
333
  <p class="since">Since 2.12</p>
332
334
  </div>
333
335
  <hr>
334
- <div class="refsect2">
336
+ <div class="refsect2" title="gtk_range_set_show_fill_level ()">
335
337
  <a name="gtk-range-set-show-fill-level"></a><h3>gtk_range_set_show_fill_level ()</h3>
336
338
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_range_set_show_fill_level (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
337
339
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> show_fill_level</code></em>);</pre>
@@ -350,16 +352,17 @@ level concept.
350
352
  </tr>
351
353
  <tr>
352
354
  <td><p><span class="term"><em class="parameter"><code>show_fill_level</code></em> :</span></p></td>
353
- <td>Whether a fill level indicator graphics is shown.</td>
355
+ <td>Whether a fill level indicator graphics is shown.
356
+ </td>
354
357
  </tr>
355
358
  </tbody>
356
359
  </table></div>
357
360
  <p class="since">Since 2.12</p>
358
361
  </div>
359
362
  <hr>
360
- <div class="refsect2">
363
+ <div class="refsect2" title="gtk_range_get_adjustment ()">
361
364
  <a name="gtk-range-get-adjustment"></a><h3>gtk_range_get_adjustment ()</h3>
362
- <pre class="programlisting"><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * gtk_range_get_adjustment (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);</pre>
365
+ <pre class="programlisting"><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a>* gtk_range_get_adjustment (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);</pre>
363
366
  <p>
364
367
  Get the <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> which is the "model" object for <a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a>.
365
368
  See <a class="link" href="GtkRange.html#gtk-range-set-adjustment" title="gtk_range_set_adjustment ()"><code class="function">gtk_range_set_adjustment()</code></a> for details.
@@ -376,22 +379,17 @@ be unreferenced.
376
379
  </tr>
377
380
  <tr>
378
381
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
379
- <td>a <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
382
+ <td> a <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>
380
383
  </td>
381
384
  </tr>
382
385
  </tbody>
383
386
  </table></div>
384
387
  </div>
385
388
  <hr>
386
- <div class="refsect2">
389
+ <div class="refsect2" title="gtk_range_set_update_policy ()">
387
390
  <a name="gtk-range-set-update-policy"></a><h3>gtk_range_set_update_policy ()</h3>
388
391
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_range_set_update_policy (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
389
392
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkUpdateType" title="enum GtkUpdateType"><span class="type">GtkUpdateType</span></a> policy</code></em>);</pre>
390
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
391
- <h3 class="title">Warning</h3>
392
- <p><code class="literal">gtk_range_set_update_policy</code> has been deprecated since version 2.24 and should not be used in newly-written code. There is no replacement. If you require delayed
393
- updates, you need to code it yourself.</p>
394
- </div>
395
393
  <p>
396
394
  Sets the update policy for the range. <a class="link" href="gtk-Standard-Enumerations.html#GTK-UPDATE-CONTINUOUS:CAPS"><span class="type">GTK_UPDATE_CONTINUOUS</span></a> means that
397
395
  anytime the range slider is moved, the range value will change and the
@@ -412,13 +410,14 @@ drag operation.
412
410
  </tr>
413
411
  <tr>
414
412
  <td><p><span class="term"><em class="parameter"><code>policy</code></em> :</span></p></td>
415
- <td>update policy</td>
413
+ <td>update policy
414
+ </td>
416
415
  </tr>
417
416
  </tbody>
418
417
  </table></div>
419
418
  </div>
420
419
  <hr>
421
- <div class="refsect2">
420
+ <div class="refsect2" title="gtk_range_set_adjustment ()">
422
421
  <a name="gtk-range-set-adjustment"></a><h3>gtk_range_set_adjustment ()</h3>
423
422
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_range_set_adjustment (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
424
423
  <em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);</pre>
@@ -448,7 +447,7 @@ The page size affects the size of the scrollbar slider.
448
447
  </table></div>
449
448
  </div>
450
449
  <hr>
451
- <div class="refsect2">
450
+ <div class="refsect2" title="gtk_range_get_inverted ()">
452
451
  <a name="gtk-range-get-inverted"></a><h3>gtk_range_get_inverted ()</h3>
453
452
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_range_get_inverted (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);</pre>
454
453
  <p>
@@ -464,14 +463,14 @@ Gets the value set by <a class="link" href="GtkRange.html#gtk-range-set-inverted
464
463
  </tr>
465
464
  <tr>
466
465
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
467
- <td>
468
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the range is inverted</td>
466
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the range is inverted
467
+ </td>
469
468
  </tr>
470
469
  </tbody>
471
470
  </table></div>
472
471
  </div>
473
472
  <hr>
474
- <div class="refsect2">
473
+ <div class="refsect2" title="gtk_range_set_inverted ()">
475
474
  <a name="gtk-range-set-inverted"></a><h3>gtk_range_set_inverted ()</h3>
476
475
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_range_set_inverted (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
477
476
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
@@ -492,20 +491,16 @@ on the bottom or left.
492
491
  <tr>
493
492
  <td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
494
493
  <td>
495
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to invert the range</td>
494
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to invert the range
495
+ </td>
496
496
  </tr>
497
497
  </tbody>
498
498
  </table></div>
499
499
  </div>
500
500
  <hr>
501
- <div class="refsect2">
501
+ <div class="refsect2" title="gtk_range_get_update_policy ()">
502
502
  <a name="gtk-range-get-update-policy"></a><h3>gtk_range_get_update_policy ()</h3>
503
503
  <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkUpdateType" title="enum GtkUpdateType"><span class="returnvalue">GtkUpdateType</span></a> gtk_range_get_update_policy (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);</pre>
504
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
505
- <h3 class="title">Warning</h3>
506
- <p><code class="literal">gtk_range_get_update_policy</code> has been deprecated since version 2.24 and should not be used in newly-written code. There is no replacement. If you require delayed
507
- updates, you need to code it yourself.</p>
508
- </div>
509
504
  <p>
510
505
  Gets the update policy of <em class="parameter"><code>range</code></em>. See <a class="link" href="GtkRange.html#gtk-range-set-update-policy" title="gtk_range_set_update_policy ()"><code class="function">gtk_range_set_update_policy()</code></a>.
511
506
  </p>
@@ -519,13 +514,37 @@ Gets the update policy of <em class="parameter"><code>range</code></em>. See <a
519
514
  </tr>
520
515
  <tr>
521
516
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
522
- <td>the current update policy</td>
517
+ <td> the current update policy
518
+ </td>
519
+ </tr>
520
+ </tbody>
521
+ </table></div>
522
+ </div>
523
+ <hr>
524
+ <div class="refsect2" title="gtk_range_get_value ()">
525
+ <a name="gtk-range-get-value"></a><h3>gtk_range_get_value ()</h3>
526
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> gtk_range_get_value (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);</pre>
527
+ <p>
528
+ Gets the current value of the range.
529
+ </p>
530
+ <div class="variablelist"><table border="0">
531
+ <col align="left" valign="top">
532
+ <tbody>
533
+ <tr>
534
+ <td><p><span class="term"><em class="parameter"><code>range</code></em> :</span></p></td>
535
+ <td>a <a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a>
536
+ </td>
537
+ </tr>
538
+ <tr>
539
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
540
+ <td> current value of the range.
541
+ </td>
523
542
  </tr>
524
543
  </tbody>
525
544
  </table></div>
526
545
  </div>
527
546
  <hr>
528
- <div class="refsect2">
547
+ <div class="refsect2" title="gtk_range_set_increments ()">
529
548
  <a name="gtk-range-set-increments"></a><h3>gtk_range_set_increments ()</h3>
530
549
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_range_set_increments (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
531
550
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> step</code></em>,
@@ -546,17 +565,19 @@ is used for example when moving via Page Up or Page Down keys.
546
565
  </tr>
547
566
  <tr>
548
567
  <td><p><span class="term"><em class="parameter"><code>step</code></em> :</span></p></td>
549
- <td>step size</td>
568
+ <td>step size
569
+ </td>
550
570
  </tr>
551
571
  <tr>
552
572
  <td><p><span class="term"><em class="parameter"><code>page</code></em> :</span></p></td>
553
- <td>page size</td>
573
+ <td>page size
574
+ </td>
554
575
  </tr>
555
576
  </tbody>
556
577
  </table></div>
557
578
  </div>
558
579
  <hr>
559
- <div class="refsect2">
580
+ <div class="refsect2" title="gtk_range_set_range ()">
560
581
  <a name="gtk-range-set-range"></a><h3>gtk_range_set_range ()</h3>
561
582
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_range_set_range (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
562
583
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> min</code></em>,
@@ -576,39 +597,19 @@ page size, it is clamped between <em class="parameter"><code>min</code></em> and
576
597
  </tr>
577
598
  <tr>
578
599
  <td><p><span class="term"><em class="parameter"><code>min</code></em> :</span></p></td>
579
- <td>minimum range value</td>
600
+ <td>minimum range value
601
+ </td>
580
602
  </tr>
581
603
  <tr>
582
604
  <td><p><span class="term"><em class="parameter"><code>max</code></em> :</span></p></td>
583
- <td>maximum range value</td>
584
- </tr>
585
- </tbody>
586
- </table></div>
587
- </div>
588
- <hr>
589
- <div class="refsect2">
590
- <a name="gtk-range-get-value"></a><h3>gtk_range_get_value ()</h3>
591
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> gtk_range_get_value (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);</pre>
592
- <p>
593
- Gets the current value of the range.
594
- </p>
595
- <div class="variablelist"><table border="0">
596
- <col align="left" valign="top">
597
- <tbody>
598
- <tr>
599
- <td><p><span class="term"><em class="parameter"><code>range</code></em> :</span></p></td>
600
- <td>a <a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a>
605
+ <td>maximum range value
601
606
  </td>
602
607
  </tr>
603
- <tr>
604
- <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
605
- <td>current value of the range.</td>
606
- </tr>
607
608
  </tbody>
608
609
  </table></div>
609
610
  </div>
610
611
  <hr>
611
- <div class="refsect2">
612
+ <div class="refsect2" title="gtk_range_set_value ()">
612
613
  <a name="gtk-range-set-value"></a><h3>gtk_range_set_value ()</h3>
613
614
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_range_set_value (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
614
615
  <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>);</pre>
@@ -628,62 +629,14 @@ value changes.
628
629
  </tr>
629
630
  <tr>
630
631
  <td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
631
- <td>new value of the range</td>
632
- </tr>
633
- </tbody>
634
- </table></div>
635
- </div>
636
- <hr>
637
- <div class="refsect2">
638
- <a name="gtk-range-get-round-digits"></a><h3>gtk_range_get_round_digits ()</h3>
639
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_range_get_round_digits (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);</pre>
640
- <p>
641
- Gets the number of digits to round the value to when
642
- it changes. See <a class="link" href="GtkRange.html#GtkRange-change-value" title='The "change-value" signal'><span class="type">"change-value"</span></a>.
643
- </p>
644
- <div class="variablelist"><table border="0">
645
- <col align="left" valign="top">
646
- <tbody>
647
- <tr>
648
- <td><p><span class="term"><em class="parameter"><code>range</code></em> :</span></p></td>
649
- <td>a <a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a>
650
- </td>
651
- </tr>
652
- <tr>
653
- <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
654
- <td>the number of digits to round to</td>
655
- </tr>
656
- </tbody>
657
- </table></div>
658
- <p class="since">Since 2.24</p>
659
- </div>
660
- <hr>
661
- <div class="refsect2">
662
- <a name="gtk-range-set-round-digits"></a><h3>gtk_range_set_round_digits ()</h3>
663
- <pre class="programlisting"><span class="returnvalue">void</span> gtk_range_set_round_digits (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
664
- <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> round_digits</code></em>);</pre>
665
- <p>
666
- Sets the number of digits to round the value to when
667
- it changes. See <a class="link" href="GtkRange.html#GtkRange-change-value" title='The "change-value" signal'><span class="type">"change-value"</span></a>.
668
- </p>
669
- <div class="variablelist"><table border="0">
670
- <col align="left" valign="top">
671
- <tbody>
672
- <tr>
673
- <td><p><span class="term"><em class="parameter"><code>range</code></em> :</span></p></td>
674
- <td>a <a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a>
632
+ <td>new value of the range
675
633
  </td>
676
634
  </tr>
677
- <tr>
678
- <td><p><span class="term"><em class="parameter"><code>round_digits</code></em> :</span></p></td>
679
- <td>the precision in digits, or -1</td>
680
- </tr>
681
635
  </tbody>
682
636
  </table></div>
683
- <p class="since">Since 2.24</p>
684
637
  </div>
685
638
  <hr>
686
- <div class="refsect2">
639
+ <div class="refsect2" title="enum GtkSensitivityType">
687
640
  <a name="GtkSensitivityType"></a><h3>enum GtkSensitivityType</h3>
688
641
  <pre class="programlisting">typedef enum
689
642
  {
@@ -719,7 +672,7 @@ at the end of range widgets.
719
672
  </table></div>
720
673
  </div>
721
674
  <hr>
722
- <div class="refsect2">
675
+ <div class="refsect2" title="gtk_range_set_lower_stepper_sensitivity ()">
723
676
  <a name="gtk-range-set-lower-stepper-sensitivity"></a><h3>gtk_range_set_lower_stepper_sensitivity ()</h3>
724
677
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_range_set_lower_stepper_sensitivity
725
678
  (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
@@ -738,14 +691,15 @@ Sets the sensitivity policy for the stepper that points to the
738
691
  </tr>
739
692
  <tr>
740
693
  <td><p><span class="term"><em class="parameter"><code>sensitivity</code></em> :</span></p></td>
741
- <td>the lower stepper's sensitivity policy.</td>
694
+ <td>the lower stepper's sensitivity policy.
695
+ </td>
742
696
  </tr>
743
697
  </tbody>
744
698
  </table></div>
745
699
  <p class="since">Since 2.10</p>
746
700
  </div>
747
701
  <hr>
748
- <div class="refsect2">
702
+ <div class="refsect2" title="gtk_range_get_lower_stepper_sensitivity ()">
749
703
  <a name="gtk-range-get-lower-stepper-sensitivity"></a><h3>gtk_range_get_lower_stepper_sensitivity ()</h3>
750
704
  <pre class="programlisting"><a class="link" href="GtkRange.html#GtkSensitivityType" title="enum GtkSensitivityType"><span class="returnvalue">GtkSensitivityType</span></a> gtk_range_get_lower_stepper_sensitivity
751
705
  (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);</pre>
@@ -763,14 +717,16 @@ Gets the sensitivity policy for the stepper that points to the
763
717
  </tr>
764
718
  <tr>
765
719
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
766
- <td>The lower stepper's sensitivity policy.</td>
720
+ <td> The lower stepper's sensitivity policy.
721
+
722
+ </td>
767
723
  </tr>
768
724
  </tbody>
769
725
  </table></div>
770
726
  <p class="since">Since 2.10</p>
771
727
  </div>
772
728
  <hr>
773
- <div class="refsect2">
729
+ <div class="refsect2" title="gtk_range_set_upper_stepper_sensitivity ()">
774
730
  <a name="gtk-range-set-upper-stepper-sensitivity"></a><h3>gtk_range_set_upper_stepper_sensitivity ()</h3>
775
731
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_range_set_upper_stepper_sensitivity
776
732
  (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
@@ -789,14 +745,15 @@ Sets the sensitivity policy for the stepper that points to the
789
745
  </tr>
790
746
  <tr>
791
747
  <td><p><span class="term"><em class="parameter"><code>sensitivity</code></em> :</span></p></td>
792
- <td>the upper stepper's sensitivity policy.</td>
748
+ <td>the upper stepper's sensitivity policy.
749
+ </td>
793
750
  </tr>
794
751
  </tbody>
795
752
  </table></div>
796
753
  <p class="since">Since 2.10</p>
797
754
  </div>
798
755
  <hr>
799
- <div class="refsect2">
756
+ <div class="refsect2" title="gtk_range_get_upper_stepper_sensitivity ()">
800
757
  <a name="gtk-range-get-upper-stepper-sensitivity"></a><h3>gtk_range_get_upper_stepper_sensitivity ()</h3>
801
758
  <pre class="programlisting"><a class="link" href="GtkRange.html#GtkSensitivityType" title="enum GtkSensitivityType"><span class="returnvalue">GtkSensitivityType</span></a> gtk_range_get_upper_stepper_sensitivity
802
759
  (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);</pre>
@@ -814,14 +771,16 @@ Gets the sensitivity policy for the stepper that points to the
814
771
  </tr>
815
772
  <tr>
816
773
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
817
- <td>The upper stepper's sensitivity policy.</td>
774
+ <td> The upper stepper's sensitivity policy.
775
+
776
+ </td>
818
777
  </tr>
819
778
  </tbody>
820
779
  </table></div>
821
780
  <p class="since">Since 2.10</p>
822
781
  </div>
823
782
  <hr>
824
- <div class="refsect2">
783
+ <div class="refsect2" title="gtk_range_get_flippable ()">
825
784
  <a name="gtk-range-get-flippable"></a><h3>gtk_range_get_flippable ()</h3>
826
785
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_range_get_flippable (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);</pre>
827
786
  <p>
@@ -837,15 +796,16 @@ Gets the value set by <a class="link" href="GtkRange.html#gtk-range-set-flippabl
837
796
  </tr>
838
797
  <tr>
839
798
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
840
- <td>
841
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the range is flippable</td>
799
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the range is flippable
800
+
801
+ </td>
842
802
  </tr>
843
803
  </tbody>
844
804
  </table></div>
845
805
  <p class="since">Since 2.18</p>
846
806
  </div>
847
807
  <hr>
848
- <div class="refsect2">
808
+ <div class="refsect2" title="gtk_range_set_flippable ()">
849
809
  <a name="gtk-range-set-flippable"></a><h3>gtk_range_set_flippable ()</h3>
850
810
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_range_set_flippable (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
851
811
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> flippable</code></em>);</pre>
@@ -867,14 +827,15 @@ See <a class="link" href="GtkWidget.html#gtk-widget-get-direction" title="gtk_wi
867
827
  <tr>
868
828
  <td><p><span class="term"><em class="parameter"><code>flippable</code></em> :</span></p></td>
869
829
  <td>
870
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to make the range flippable</td>
830
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to make the range flippable
831
+ </td>
871
832
  </tr>
872
833
  </tbody>
873
834
  </table></div>
874
835
  <p class="since">Since 2.18</p>
875
836
  </div>
876
837
  <hr>
877
- <div class="refsect2">
838
+ <div class="refsect2" title="gtk_range_get_min_slider_size ()">
878
839
  <a name="gtk-range-get-min-slider-size"></a><h3>gtk_range_get_min_slider_size ()</h3>
879
840
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_range_get_min_slider_size (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);</pre>
880
841
  <p>
@@ -893,14 +854,16 @@ See <a class="link" href="GtkRange.html#gtk-range-set-min-slider-size" title="gt
893
854
  </tr>
894
855
  <tr>
895
856
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
896
- <td>The minimum size of the range's slider.</td>
857
+ <td> The minimum size of the range's slider.
858
+
859
+ </td>
897
860
  </tr>
898
861
  </tbody>
899
862
  </table></div>
900
863
  <p class="since">Since 2.20</p>
901
864
  </div>
902
865
  <hr>
903
- <div class="refsect2">
866
+ <div class="refsect2" title="gtk_range_get_range_rect ()">
904
867
  <a name="gtk-range-get-range-rect"></a><h3>gtk_range_get_range_rect ()</h3>
905
868
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_range_get_range_rect (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
906
869
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *range_rect</code></em>);</pre>
@@ -921,14 +884,15 @@ This function is useful mainly for <a class="link" href="GtkRange.html" title="G
921
884
  </tr>
922
885
  <tr>
923
886
  <td><p><span class="term"><em class="parameter"><code>range_rect</code></em> :</span></p></td>
924
- <td>return location for the range rectangle</td>
887
+ <td>return location for the range rectangle
888
+ </td>
925
889
  </tr>
926
890
  </tbody>
927
891
  </table></div>
928
892
  <p class="since">Since 2.20</p>
929
893
  </div>
930
894
  <hr>
931
- <div class="refsect2">
895
+ <div class="refsect2" title="gtk_range_get_slider_range ()">
932
896
  <a name="gtk-range-get-slider-range"></a><h3>gtk_range_get_slider_range ()</h3>
933
897
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_range_get_slider_range (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
934
898
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *slider_start</code></em>,
@@ -950,12 +914,12 @@ This function is useful mainly for <a class="link" href="GtkRange.html" title="G
950
914
  </tr>
951
915
  <tr>
952
916
  <td><p><span class="term"><em class="parameter"><code>slider_start</code></em> :</span></p></td>
953
- <td>return location for the slider's start, 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>
917
+ <td> return location for the slider's start, 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>
954
918
  </td>
955
919
  </tr>
956
920
  <tr>
957
921
  <td><p><span class="term"><em class="parameter"><code>slider_end</code></em> :</span></p></td>
958
- <td>return location for the slider's end, 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>
922
+ <td> return location for the slider's end, 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>
959
923
  </td>
960
924
  </tr>
961
925
  </tbody>
@@ -963,7 +927,7 @@ This function is useful mainly for <a class="link" href="GtkRange.html" title="G
963
927
  <p class="since">Since 2.20</p>
964
928
  </div>
965
929
  <hr>
966
- <div class="refsect2">
930
+ <div class="refsect2" title="gtk_range_get_slider_size_fixed ()">
967
931
  <a name="gtk-range-get-slider-size-fixed"></a><h3>gtk_range_get_slider_size_fixed ()</h3>
968
932
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_range_get_slider_size_fixed (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>);</pre>
969
933
  <p>
@@ -982,14 +946,16 @@ See <a class="link" href="GtkRange.html#gtk-range-set-slider-size-fixed" title="
982
946
  </tr>
983
947
  <tr>
984
948
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
985
- <td>whether the range's slider has a fixed size.</td>
949
+ <td> whether the range's slider has a fixed size.
950
+
951
+ </td>
986
952
  </tr>
987
953
  </tbody>
988
954
  </table></div>
989
955
  <p class="since">Since 2.20</p>
990
956
  </div>
991
957
  <hr>
992
- <div class="refsect2">
958
+ <div class="refsect2" title="gtk_range_set_min_slider_size ()">
993
959
  <a name="gtk-range-set-min-slider-size"></a><h3>gtk_range_set_min_slider_size ()</h3>
994
960
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_range_set_min_slider_size (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
995
961
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> min_size</code></em>);</pre>
@@ -1009,14 +975,15 @@ This function is useful mainly for <a class="link" href="GtkRange.html" title="G
1009
975
  </tr>
1010
976
  <tr>
1011
977
  <td><p><span class="term"><em class="parameter"><code>min_size</code></em> :</span></p></td>
1012
- <td>The slider's minimum size</td>
978
+ <td>The slider's minimum size
979
+ </td>
1013
980
  </tr>
1014
981
  </tbody>
1015
982
  </table></div>
1016
983
  <p class="since">Since 2.20</p>
1017
984
  </div>
1018
985
  <hr>
1019
- <div class="refsect2">
986
+ <div class="refsect2" title="gtk_range_set_slider_size_fixed ()">
1020
987
  <a name="gtk-range-set-slider-size-fixed"></a><h3>gtk_range_set_slider_size_fixed ()</h3>
1021
988
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_range_set_slider_size_fixed (<em class="parameter"><code><a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range</code></em>,
1022
989
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> size_fixed</code></em>);</pre>
@@ -1038,22 +1005,23 @@ This function is useful mainly for <a class="link" href="GtkRange.html" title="G
1038
1005
  <tr>
1039
1006
  <td><p><span class="term"><em class="parameter"><code>size_fixed</code></em> :</span></p></td>
1040
1007
  <td>
1041
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to make the slider size constant</td>
1008
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to make the slider size constant
1009
+ </td>
1042
1010
  </tr>
1043
1011
  </tbody>
1044
1012
  </table></div>
1045
1013
  <p class="since">Since 2.20</p>
1046
1014
  </div>
1047
1015
  </div>
1048
- <div class="refsect1">
1016
+ <div class="refsect1" title="Property Details">
1049
1017
  <a name="GtkRange.property-details"></a><h2>Property Details</h2>
1050
- <div class="refsect2">
1018
+ <div class="refsect2" title='The "adjustment" property'>
1051
1019
  <a name="GtkRange--adjustment"></a><h3>The <code class="literal">"adjustment"</code> property</h3>
1052
1020
  <pre class="programlisting"> "adjustment" <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>* : Read / Write / Construct</pre>
1053
1021
  <p>The GtkAdjustment that contains the current value of this range object.</p>
1054
1022
  </div>
1055
1023
  <hr>
1056
- <div class="refsect2">
1024
+ <div class="refsect2" title='The "fill-level" property'>
1057
1025
  <a name="GtkRange--fill-level"></a><h3>The <code class="literal">"fill-level"</code> property</h3>
1058
1026
  <pre class="programlisting"> "fill-level" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write</pre>
1059
1027
  <p>
@@ -1064,21 +1032,21 @@ See <a class="link" href="GtkRange.html#gtk-range-set-fill-level" title="gtk_ran
1064
1032
  <p class="since">Since 2.12</p>
1065
1033
  </div>
1066
1034
  <hr>
1067
- <div class="refsect2">
1035
+ <div class="refsect2" title='The "inverted" property'>
1068
1036
  <a name="GtkRange--inverted"></a><h3>The <code class="literal">"inverted"</code> property</h3>
1069
1037
  <pre class="programlisting"> "inverted" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1070
1038
  <p>Invert direction slider moves to increase range value.</p>
1071
1039
  <p>Default value: FALSE</p>
1072
1040
  </div>
1073
1041
  <hr>
1074
- <div class="refsect2">
1042
+ <div class="refsect2" title='The "lower-stepper-sensitivity" property'>
1075
1043
  <a name="GtkRange--lower-stepper-sensitivity"></a><h3>The <code class="literal">"lower-stepper-sensitivity"</code> property</h3>
1076
1044
  <pre class="programlisting"> "lower-stepper-sensitivity" <a class="link" href="GtkRange.html#GtkSensitivityType" title="enum GtkSensitivityType"><span class="type">GtkSensitivityType</span></a> : Read / Write</pre>
1077
1045
  <p>The sensitivity policy for the stepper that points to the adjustment's lower side.</p>
1078
1046
  <p>Default value: GTK_SENSITIVITY_AUTO</p>
1079
1047
  </div>
1080
1048
  <hr>
1081
- <div class="refsect2">
1049
+ <div class="refsect2" title='The "restrict-to-fill-level" property'>
1082
1050
  <a name="GtkRange--restrict-to-fill-level"></a><h3>The <code class="literal">"restrict-to-fill-level"</code> property</h3>
1083
1051
  <pre class="programlisting"> "restrict-to-fill-level" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1084
1052
  <p>
@@ -1090,19 +1058,7 @@ fill level. See <a class="link" href="GtkRange.html#gtk-range-set-restrict-to-fi
1090
1058
  <p class="since">Since 2.12</p>
1091
1059
  </div>
1092
1060
  <hr>
1093
- <div class="refsect2">
1094
- <a name="GtkRange--round-digits"></a><h3>The <code class="literal">"round-digits"</code> property</h3>
1095
- <pre class="programlisting"> "round-digits" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1096
- <p>
1097
- The number of digits to round the value to when
1098
- it changes, or -1. See <a class="link" href="GtkRange.html#GtkRange-change-value" title='The "change-value" signal'><span class="type">"change-value"</span></a>.
1099
- </p>
1100
- <p>Allowed values: &gt;= G_MAXULONG</p>
1101
- <p>Default value: -1</p>
1102
- <p class="since">Since 2.24</p>
1103
- </div>
1104
- <hr>
1105
- <div class="refsect2">
1061
+ <div class="refsect2" title='The "show-fill-level" property'>
1106
1062
  <a name="GtkRange--show-fill-level"></a><h3>The <code class="literal">"show-fill-level"</code> property</h3>
1107
1063
  <pre class="programlisting"> "show-fill-level" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1108
1064
  <p>
@@ -1114,26 +1070,26 @@ graphics are displayed on the trough. See
1114
1070
  <p class="since">Since 2.12</p>
1115
1071
  </div>
1116
1072
  <hr>
1117
- <div class="refsect2">
1073
+ <div class="refsect2" title='The "update-policy" property'>
1118
1074
  <a name="GtkRange--update-policy"></a><h3>The <code class="literal">"update-policy"</code> property</h3>
1119
1075
  <pre class="programlisting"> "update-policy" <a class="link" href="gtk-Standard-Enumerations.html#GtkUpdateType" title="enum GtkUpdateType"><span class="type">GtkUpdateType</span></a> : Read / Write</pre>
1120
1076
  <p>How the range should be updated on the screen.</p>
1121
1077
  <p>Default value: GTK_UPDATE_CONTINUOUS</p>
1122
1078
  </div>
1123
1079
  <hr>
1124
- <div class="refsect2">
1080
+ <div class="refsect2" title='The "upper-stepper-sensitivity" property'>
1125
1081
  <a name="GtkRange--upper-stepper-sensitivity"></a><h3>The <code class="literal">"upper-stepper-sensitivity"</code> property</h3>
1126
1082
  <pre class="programlisting"> "upper-stepper-sensitivity" <a class="link" href="GtkRange.html#GtkSensitivityType" title="enum GtkSensitivityType"><span class="type">GtkSensitivityType</span></a> : Read / Write</pre>
1127
1083
  <p>The sensitivity policy for the stepper that points to the adjustment's upper side.</p>
1128
1084
  <p>Default value: GTK_SENSITIVITY_AUTO</p>
1129
1085
  </div>
1130
1086
  </div>
1131
- <div class="refsect1">
1087
+ <div class="refsect1" title="Style Property Details">
1132
1088
  <a name="GtkRange.style-property-details"></a><h2>Style Property Details</h2>
1133
- <div class="refsect2">
1089
+ <div class="refsect2" title='The "activate-slider" style property'>
1134
1090
  <a name="GtkRange--s-activate-slider"></a><h3>The <code class="literal">"activate-slider"</code> style property</h3>
1135
1091
  <pre class="programlisting"> "activate-slider" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
1136
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1092
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1137
1093
  <h3 class="title">Warning</h3>
1138
1094
  <p><code class="literal">GtkRange:activate-slider</code> has been deprecated since version 2.22 and should not be used in newly-written code. This style property will be removed in GTK+ 3</p>
1139
1095
  </div>
@@ -1144,21 +1100,21 @@ while they are dragged.
1144
1100
  <p>Default value: FALSE</p>
1145
1101
  </div>
1146
1102
  <hr>
1147
- <div class="refsect2">
1103
+ <div class="refsect2" title='The "arrow-displacement-x" style property'>
1148
1104
  <a name="GtkRange--s-arrow-displacement-x"></a><h3>The <code class="literal">"arrow-displacement-x"</code> style property</h3>
1149
1105
  <pre class="programlisting"> "arrow-displacement-x" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
1150
1106
  <p>How far in the x direction to move the arrow when the button is depressed.</p>
1151
1107
  <p>Default value: 0</p>
1152
1108
  </div>
1153
1109
  <hr>
1154
- <div class="refsect2">
1110
+ <div class="refsect2" title='The "arrow-displacement-y" style property'>
1155
1111
  <a name="GtkRange--s-arrow-displacement-y"></a><h3>The <code class="literal">"arrow-displacement-y"</code> style property</h3>
1156
1112
  <pre class="programlisting"> "arrow-displacement-y" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
1157
1113
  <p>How far in the y direction to move the arrow when the button is depressed.</p>
1158
1114
  <p>Default value: 0</p>
1159
1115
  </div>
1160
1116
  <hr>
1161
- <div class="refsect2">
1117
+ <div class="refsect2" title='The "arrow-scaling" style property'>
1162
1118
  <a name="GtkRange--s-arrow-scaling"></a><h3>The <code class="literal">"arrow-scaling"</code> style property</h3>
1163
1119
  <pre class="programlisting"> "arrow-scaling" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> : Read</pre>
1164
1120
  <p>
@@ -1169,7 +1125,7 @@ The arrow size proportion relative to the scroll button size.
1169
1125
  <p class="since">Since 2.14</p>
1170
1126
  </div>
1171
1127
  <hr>
1172
- <div class="refsect2">
1128
+ <div class="refsect2" title='The "slider-width" style property'>
1173
1129
  <a name="GtkRange--s-slider-width"></a><h3>The <code class="literal">"slider-width"</code> style property</h3>
1174
1130
  <pre class="programlisting"> "slider-width" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
1175
1131
  <p>Width of scrollbar or scale thumb.</p>
@@ -1177,10 +1133,10 @@ The arrow size proportion relative to the scroll button size.
1177
1133
  <p>Default value: 14</p>
1178
1134
  </div>
1179
1135
  <hr>
1180
- <div class="refsect2">
1136
+ <div class="refsect2" title='The "stepper-position-details" style property'>
1181
1137
  <a name="GtkRange--s-stepper-position-details"></a><h3>The <code class="literal">"stepper-position-details"</code> style property</h3>
1182
1138
  <pre class="programlisting"> "stepper-position-details" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
1183
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1139
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1184
1140
  <h3 class="title">Warning</h3>
1185
1141
  <p><code class="literal">GtkRange:stepper-position-details</code> has been deprecated since version 2.22 and should not be used in newly-written code. This style property will be removed in GTK+ 3</p>
1186
1142
  </div>
@@ -1192,7 +1148,7 @@ suffixed with information about the stepper position.
1192
1148
  <p class="since">Since 2.22</p>
1193
1149
  </div>
1194
1150
  <hr>
1195
- <div class="refsect2">
1151
+ <div class="refsect2" title='The "stepper-size" style property'>
1196
1152
  <a name="GtkRange--s-stepper-size"></a><h3>The <code class="literal">"stepper-size"</code> style property</h3>
1197
1153
  <pre class="programlisting"> "stepper-size" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
1198
1154
  <p>Length of step buttons at ends.</p>
@@ -1200,7 +1156,7 @@ suffixed with information about the stepper position.
1200
1156
  <p>Default value: 14</p>
1201
1157
  </div>
1202
1158
  <hr>
1203
- <div class="refsect2">
1159
+ <div class="refsect2" title='The "stepper-spacing" style property'>
1204
1160
  <a name="GtkRange--s-stepper-spacing"></a><h3>The <code class="literal">"stepper-spacing"</code> style property</h3>
1205
1161
  <pre class="programlisting"> "stepper-spacing" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
1206
1162
  <p>
@@ -1213,7 +1169,7 @@ stepper-spacing won't have any effect if there are no steppers.
1213
1169
  <p>Default value: 0</p>
1214
1170
  </div>
1215
1171
  <hr>
1216
- <div class="refsect2">
1172
+ <div class="refsect2" title='The "trough-border" style property'>
1217
1173
  <a name="GtkRange--s-trough-border"></a><h3>The <code class="literal">"trough-border"</code> style property</h3>
1218
1174
  <pre class="programlisting"> "trough-border" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
1219
1175
  <p>Spacing between thumb/steppers and outer trough bevel.</p>
@@ -1221,10 +1177,10 @@ stepper-spacing won't have any effect if there are no steppers.
1221
1177
  <p>Default value: 1</p>
1222
1178
  </div>
1223
1179
  <hr>
1224
- <div class="refsect2">
1180
+ <div class="refsect2" title='The "trough-side-details" style property'>
1225
1181
  <a name="GtkRange--s-trough-side-details"></a><h3>The <code class="literal">"trough-side-details"</code> style property</h3>
1226
1182
  <pre class="programlisting"> "trough-side-details" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
1227
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1183
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1228
1184
  <h3 class="title">Warning</h3>
1229
1185
  <p><code class="literal">GtkRange:trough-side-details</code> has been deprecated since version 2.22 and should not be used in newly-written code. This style property will be removed in GTK+ 3</p>
1230
1186
  </div>
@@ -1236,7 +1192,7 @@ slider are drawn with different details.
1236
1192
  <p class="since">Since 2.10</p>
1237
1193
  </div>
1238
1194
  <hr>
1239
- <div class="refsect2">
1195
+ <div class="refsect2" title='The "trough-under-steppers" style property'>
1240
1196
  <a name="GtkRange--s-trough-under-steppers"></a><h3>The <code class="literal">"trough-under-steppers"</code> style property</h3>
1241
1197
  <pre class="programlisting"> "trough-under-steppers" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
1242
1198
  <p>
@@ -1249,13 +1205,13 @@ automatically enable trough-under-steppers too.
1249
1205
  <p class="since">Since 2.10</p>
1250
1206
  </div>
1251
1207
  </div>
1252
- <div class="refsect1">
1208
+ <div class="refsect1" title="Signal Details">
1253
1209
  <a name="GtkRange.signal-details"></a><h2>Signal Details</h2>
1254
- <div class="refsect2">
1210
+ <div class="refsect2" title='The "adjust-bounds" signal'>
1255
1211
  <a name="GtkRange-adjust-bounds"></a><h3>The <code class="literal">"adjust-bounds"</code> signal</h3>
1256
1212
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range,
1257
1213
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> arg1,
1258
- <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>
1214
+ <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>
1259
1215
  <p>
1260
1216
  </p>
1261
1217
  <div class="variablelist"><table border="0">
@@ -1263,7 +1219,13 @@ automatically enable trough-under-steppers too.
1263
1219
  <tbody>
1264
1220
  <tr>
1265
1221
  <td><p><span class="term"><em class="parameter"><code>range</code></em> :</span></p></td>
1266
- <td>the object which received the signal.</td>
1222
+ <td>the object which received the signal.
1223
+ </td>
1224
+ </tr>
1225
+ <tr>
1226
+ <td><p><span class="term"><em class="parameter"><code>arg1</code></em> :</span></p></td>
1227
+ <td>
1228
+ </td>
1267
1229
  </tr>
1268
1230
  <tr>
1269
1231
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1273,12 +1235,12 @@ automatically enable trough-under-steppers too.
1273
1235
  </table></div>
1274
1236
  </div>
1275
1237
  <hr>
1276
- <div class="refsect2">
1238
+ <div class="refsect2" title='The "change-value" signal'>
1277
1239
  <a name="GtkRange-change-value"></a><h3>The <code class="literal">"change-value"</code> signal</h3>
1278
1240
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> user_function (<a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range,
1279
1241
  <a class="link" href="gtk-Standard-Enumerations.html#GtkScrollType" title="enum GtkScrollType"><span class="type">GtkScrollType</span></a> scroll,
1280
1242
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> value,
1281
- <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>
1243
+ <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>
1282
1244
  <p>
1283
1245
  The ::change-value signal is emitted when a scroll action is
1284
1246
  performed on a range. It allows an application to determine the
@@ -1292,7 +1254,7 @@ reached.
1292
1254
  The value parameter is unrounded. An application that overrides
1293
1255
  the ::change-value signal is responsible for clamping the value to
1294
1256
  the desired number of decimal digits; the default GTK+ handler
1295
- clamps the value based on <a class="link" href="GtkRange.html#GtkRange--round-digits" title='The "round-digits" property'><span class="type">"round_digits"</span></a>.
1257
+ clamps the value based on <em class="parameter"><code>range-&gt;round_digits</code></em>.
1296
1258
  </p>
1297
1259
  <p>
1298
1260
  It is not possible to use delayed update policies in an overridden
@@ -1303,21 +1265,25 @@ It is not possible to use delayed update policies in an overridden
1303
1265
  <tbody>
1304
1266
  <tr>
1305
1267
  <td><p><span class="term"><em class="parameter"><code>range</code></em> :</span></p></td>
1306
- <td>the range that received the signal</td>
1268
+ <td>the range that received the signal
1269
+ </td>
1307
1270
  </tr>
1308
1271
  <tr>
1309
1272
  <td><p><span class="term"><em class="parameter"><code>scroll</code></em> :</span></p></td>
1310
- <td>the type of scroll action that was performed</td>
1273
+ <td>the type of scroll action that was performed
1274
+ </td>
1311
1275
  </tr>
1312
1276
  <tr>
1313
1277
  <td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
1314
- <td>the new value resulting from the scroll action</td>
1278
+ <td>the new value resulting from the scroll action
1279
+ </td>
1315
1280
  </tr>
1316
1281
  <tr>
1317
1282
  <td><p><span class="term"><em class="parameter"><code>returns</code></em> :</span></p></td>
1318
1283
  <td>
1319
1284
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to prevent other handlers from being invoked for the
1320
- signal, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to propagate the signal further</td>
1285
+ signal, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to propagate the signal further
1286
+ </td>
1321
1287
  </tr>
1322
1288
  <tr>
1323
1289
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1328,11 +1294,11 @@ signal, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macr
1328
1294
  <p class="since">Since 2.6</p>
1329
1295
  </div>
1330
1296
  <hr>
1331
- <div class="refsect2">
1297
+ <div class="refsect2" title='The "move-slider" signal'>
1332
1298
  <a name="GtkRange-move-slider"></a><h3>The <code class="literal">"move-slider"</code> signal</h3>
1333
1299
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range,
1334
1300
  <a class="link" href="gtk-Standard-Enumerations.html#GtkScrollType" title="enum GtkScrollType"><span class="type">GtkScrollType</span></a> step,
1335
- <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>
1301
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last / Action</pre>
1336
1302
  <p>
1337
1303
  Virtual function that moves the slider. Used for keybindings.
1338
1304
  </p>
@@ -1346,7 +1312,8 @@ Virtual function that moves the slider. Used for keybindings.
1346
1312
  </tr>
1347
1313
  <tr>
1348
1314
  <td><p><span class="term"><em class="parameter"><code>step</code></em> :</span></p></td>
1349
- <td>how to move the slider</td>
1315
+ <td>how to move the slider
1316
+ </td>
1350
1317
  </tr>
1351
1318
  <tr>
1352
1319
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1356,10 +1323,10 @@ Virtual function that moves the slider. Used for keybindings.
1356
1323
  </table></div>
1357
1324
  </div>
1358
1325
  <hr>
1359
- <div class="refsect2">
1326
+ <div class="refsect2" title='The "value-changed" signal'>
1360
1327
  <a name="GtkRange-value-changed"></a><h3>The <code class="literal">"value-changed"</code> signal</h3>
1361
1328
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkRange.html" title="GtkRange"><span class="type">GtkRange</span></a> *range,
1362
- <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>
1329
+ <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>
1363
1330
  <p>
1364
1331
  Emitted when the range value changes.
1365
1332
  </p>
@@ -1382,6 +1349,6 @@ Emitted when the range value changes.
1382
1349
  </div>
1383
1350
  <div class="footer">
1384
1351
  <hr>
1385
- Generated by GTK-Doc V1.16.1</div>
1352
+ Generated by GTK-Doc V1.15</div>
1386
1353
  </body>
1387
1354
  </html>