diff options
author | Havoc Pennington <hp@pobox.com> | 2001-08-10 03:46:08 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2001-08-10 03:46:08 +0000 |
commit | f37a0627fc3fe7676dc38b8c32856e375be59de1 (patch) | |
tree | 3246680255da5aa2ed168d8deb17a6f2a6c7343f /docs/Changes-2.0.txt | |
parent | 439cd9a3a505424ea64d099ecbe1b4c910b79649 (diff) | |
download | gdk-pixbuf-f37a0627fc3fe7676dc38b8c32856e375be59de1.tar.gz |
fix a typo.
2001-08-07 Havoc Pennington <hp@pobox.com>
* gtk/gtkfilesel.c (open_ref_dir): fix a typo.
* gtk/gtkplug.c (gtk_plug_init): remove setting of auto_shrink;
some fixage is needed here, but nothing simple. Owen understands
it. ;-)
* gtk/gtkwindow.h, gtk/gtkwindow.c: Rework code and API for window
sizing and positioning. Also, fix bug in compute_geometry_hints
(width/height confusion for setting min size).
(gtk_window_move): new function
(gtk_window_resize): new function
(gtk_window_get_size): new function
(gtk_window_get_position): new function
(gtk_window_parse_geometry): new function
* gtk/gtkwidget.c (gtk_widget_set_size_request): new function
(gtk_widget_get_size_request): new function
(gtk_widget_get_usize): delete, that was a short-lived function
;-)
(gtk_widget_set_usize): deprecate
(gtk_widget_set_uposition): deprecate, make it a trivial
gtk_window_move() wrapper
(gtk_widget_class_init): remove x/y/width/height properties,
add width_request height_request
* demos/*: update to avoid deprecated functions
* gtk/gtklayout.c: add x/y child properties
* gtk/gtkfixed.c: add x/y child properties, and get rid of
uses of "gint16"
* tests/testgtk.c (create_window_sizing): lots of tweaks to window
sizing test
* gdk/x11/gdkevents-x11.c (gdk_event_translate): Ensure that
configure events on toplevel windows are always in root window
coordinates, following ICCCM spec that all synthetic events
are in root window coords already, while real events are
in parent window coords. Previously the code assumed that
coords of 0,0 were parent window coords, which was
really broken.
* gtk/gtkcontainer.c (gtk_container_get_focus_chain): fix
warning
* gdk/gdkwindow.h (GdkWindowHints): add GDK_HINT_USER_POS
and GDK_HINT_USER_SIZE so we can set USSize and USPosition
hints in gtk_window_parse_geometry()
* gdk/x11/gdkwindow-x11.c (gdk_window_set_geometry_hints): support
new USER_POS USER_SIZE hints
Diffstat (limited to 'docs/Changes-2.0.txt')
-rw-r--r-- | docs/Changes-2.0.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/Changes-2.0.txt b/docs/Changes-2.0.txt index ffce736df..9b82b2d85 100644 --- a/docs/Changes-2.0.txt +++ b/docs/Changes-2.0.txt @@ -397,6 +397,22 @@ Incompatible Changes from GTK+-1.2 to GTK+-2.0: using gdk_image_get() should really be ported to gdk_pixbuf_get_from_drawable(). +* gtk_widget_set_usize() has been renamed to + gtk_widget_set_size_request(), however the old name still exists + unless you define GTK_DISABLE_DEPRECATED. + +* gtk_widget_set_uposition() is deprecated; use gtk_window_move(), + gtk_fixed_put(), or gtk_layout_put() instead. + +* gtk_window_set_policy() is deprecated. To get the effect of + "allow_shrink", call gtk_widget_set_size_request(window, 0, 0). To + get the effect of "allow_grow", call + gtk_window_set_resizable(window, TRUE). You didn't want the effect + of auto_shrink, it made no sense. But maybe if you were using it you + want to use gtk_window_resize (window, 1, 1) to snap a window back + to its minimum size (the 1, 1 will be rounded up to the minimum + window size). + * The core GTK+ now takes care of handling mapping, unmapping and realizing the child widgets of containers in gtk_widget_set_parent(). In most cases, this allows container |