diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-01-16 19:12:47 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-01-16 19:12:47 +0000 |
commit | 226b2fa14b249949c7c550645a521a977ecd06da (patch) | |
tree | 6b00b5efb48e27466aa82e29a3aae21b89c24f44 /docs | |
parent | 5b96321c3a9894bcb0fb41856e2ad2940c20365c (diff) | |
download | gdk-pixbuf-226b2fa14b249949c7c550645a521a977ecd06da.tar.gz |
Deprecate. (#68183)
* gtk/gtkenums.h (GtkMatchType): Deprecate. (#68183)
* gtk/gtkscale.h (gtk_scale_value_width): Remove useless
compatibility macro. (#67730)
* gtk/changes-2.0.sgml: Details about GtkRange and subclasses
rewrite. (#67730)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/reference/ChangeLog | 5 | ||||
-rw-r--r-- | docs/reference/gtk/changes-2.0.sgml | 64 |
2 files changed, 69 insertions, 0 deletions
diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index e75444fe1..6e9331ff4 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,8 @@ +2002-01-15 Matthias Clasen <matthiasc@poet.de> + + * gtk/changes-2.0.sgml: Details about GtkRange and subclasses + rewrite. (#67730) + 2002-01-14 Matthias Clasen <matthiasc@poet.de> * gtk/running.sgml: Add ids to some elements to make them diff --git a/docs/reference/gtk/changes-2.0.sgml b/docs/reference/gtk/changes-2.0.sgml index ce05ceed4..1e30020eb 100644 --- a/docs/reference/gtk/changes-2.0.sgml +++ b/docs/reference/gtk/changes-2.0.sgml @@ -689,6 +689,70 @@ In GTK+ 1.2, if an event handler returned <literal>TRUE</literal> it prevented how to subclass the old version of <structname>GtkRange</structname>, you have our respect). Also, <literal>GtkTroughType</literal> is gone. </para> +<para> + Here are some notable changes: + <itemizedlist> + <listitem> + <para> + <literal>stepper_size</literal> style property is the height for + vertical ranges, width for horizontal; the other dimension matches + the trough size. + </para> + </listitem> + <listitem> + <para> + Added the ability to do NeXT-style steppers (and several other styles + that don't make any sense). + </para> + </listitem> + <listitem> + <para> + Added <literal>min_slider_length</literal>, + <literal>fixed_slider_length</literal> properties to + <structname>GtkScrollbar</structname>. + </para> + </listitem> + <listitem> + <para> + Cleaned some private (or at least useless) functions out of + <filename>gtkscale.h</filename>, e.g. + <function>gtk_scale_value_width</literal>. + </para> + </listitem> + <listitem> + <para> + Moved bindings from subclasses to <structname>GtkScale</structname>, + even arrow keys, since blind users don't know scale orientation. + </para> + </listitem> + <listitem> + <para> + Changed <literal>move_slider</literal> action signal to use new + <structname>GtkScrollType</structname>, remove + <structname>GtkTroughType</structname> argument. + </para> + </listitem> + <listitem> + <para> + Digits rounds the values a range will input to the given + number of decimals, but will not try to force adjustment + values set by other controllers. That is, we no longer + modify <literal>adjustment->value</literal> inside a + <literal>value_changed</literal> handler. + </para> + </listitem> + <listitem> + <para> + Added getters for <structname>GtkScale</structname> setters. + </para> + </listitem> + <listitem> + <para> + Middle-click begins a slider drag. + </para> + </listitem> + </itemizedlist> +</para> </listitem> <listitem> |