diff options
author | Michael Natterer <mitch@gimp.org> | 2008-11-07 16:39:50 +0000 |
---|---|---|
committer | Michael Natterer <mitch@src.gnome.org> | 2008-11-07 16:39:50 +0000 |
commit | 59f0703855d6066aaef0a4e9b8dd2f2edd3fbdf2 (patch) | |
tree | 2b2722da77749249f22a35c957a1a0ba6945939b /gtk/gtk.symbols | |
parent | 3e72ccbcdc75422010100354ac3d226746195626 (diff) | |
download | gtk+-59f0703855d6066aaef0a4e9b8dd2f2edd3fbdf2.tar.gz |
Bug 553586 – Add orientation API to GtkPaned
2008-11-07 Michael Natterer <mitch@gimp.org>
Bug 553586 – Add orientation API to GtkPaned
* gtk/gtkpaned.[ch]: implement the GtkOrientable interface
and swallow all code from GtkHPaned and GtkVPaned. Add
gtk_paned_new() which takes a GtkOrientation argument. Deprecate
gtk_paned_compute_position() for good (also for GTK_COMPILATION).
* gtk/gtkhpaned.[ch]
* gtk/gtkvpaned.[ch]: remove all code except the constructor and
call gtk_orientable_set_orientation() in init().
* gtk/gtk.symbols: add gtk_box_new().
svn path=/trunk/; revision=21772
Diffstat (limited to 'gtk/gtk.symbols')
-rw-r--r-- | gtk/gtk.symbols | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gtk/gtk.symbols b/gtk/gtk.symbols index b364de1040..b8f51a55dd 100644 --- a/gtk/gtk.symbols +++ b/gtk/gtk.symbols @@ -2592,14 +2592,17 @@ gtk_option_menu_set_menu #if IN_FILE(__GTK_PANED_C__) gtk_paned_add1 gtk_paned_add2 -gtk_paned_compute_position gtk_paned_get_child1 gtk_paned_get_child2 gtk_paned_get_position gtk_paned_get_type G_GNUC_CONST +gtk_paned_new gtk_paned_pack1 gtk_paned_pack2 gtk_paned_set_position +#ifndef GTK_DISABLE_DEPRECATED +gtk_paned_compute_position +#endif #endif #endif |