From e033af05d726f5307efa12879ad0f6f3e88bb041 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Wed, 24 May 2000 23:00:39 +0000 Subject: Added widgets/e-paned/Makefile. 2000-05-24 Christopher James Lahey * configure.in: Added widgets/e-paned/Makefile. * tests/ui-tests/message-browser.c: Switched from GtkPaned to EPaned. * widgets/Makefile.am: Added e-paned directory. * widgets/e-paned/, widgets/e-paned/.cvsignore, widgets/e-paned/Makefile.am, widgets/e-paned/e-hpaned.c, widgets/e-paned/e-hpaned.h, widgets/e-paned/e-paned.c, widgets/e-paned/e-paned.h, widgets/e-paned/e-vpaned.c, widgets/e-paned/e-vpaned.h: New widget based completely on GtkPaned from 1.4. This will be more advanced soon. From calendar/ChangeLog: 2000-05-24 Christopher James Lahey * gui/Makefile.am: Added libepaned.a. * gui/gnome-cal.c: Switched from GtkPaned to EPaned. From mail/ChangeLog: 2000-05-24 Christopher James Lahey * Makefile.am: Added libepaned.a. * folder-browser.c: Switched from GtkPaned to EPaned. From shell/ChangeLog: 2000-05-24 Christopher James Lahey * Makefile.am: Added libepaned.a. * e-shell-view.c: Switched from GtkPaned to EPaned. From widgets/shortcut-bar/ChangeLog: 2000-05-24 Christopher James Lahey * Makefile.am: Added libepaned.a. * test-shortcut-bar.c: Switched from GtkPaned to EPaned. svn path=/trunk/; revision=3191 --- widgets/shortcut-bar/test-shortcut-bar.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'widgets/shortcut-bar/test-shortcut-bar.c') diff --git a/widgets/shortcut-bar/test-shortcut-bar.c b/widgets/shortcut-bar/test-shortcut-bar.c index 5d9ae700f3..3d3503c745 100644 --- a/widgets/shortcut-bar/test-shortcut-bar.c +++ b/widgets/shortcut-bar/test-shortcut-bar.c @@ -30,6 +30,8 @@ #include "e-shortcut-bar.h" +#include + #define NUM_SHORTCUT_TYPES 5 gchar *shortcut_types[NUM_SHORTCUT_TYPES] = { "folder:", "file:", "calendar:", "todo:", "contacts:" @@ -114,12 +116,12 @@ main (int argc, char *argv[]) gtk_signal_connect (GTK_OBJECT (window), "delete-event", GTK_SIGNAL_FUNC (quit), NULL); - hpaned = gtk_hpaned_new (); + hpaned = e_hpaned_new (); gnome_app_set_contents (GNOME_APP (window), hpaned); gtk_widget_show (hpaned); shortcut_bar = e_shortcut_bar_new (); - gtk_paned_pack1 (GTK_PANED (hpaned), shortcut_bar, FALSE, TRUE); + e_paned_pack1 (E_PANED (hpaned), shortcut_bar, FALSE, TRUE); gtk_widget_show (shortcut_bar); e_shortcut_bar_set_icon_callback (E_SHORTCUT_BAR (shortcut_bar), icon_callback, @@ -138,11 +140,11 @@ main (int argc, char *argv[]) gtk_container_set_border_width (GTK_CONTAINER (shortcut_bar), 4); #endif - gtk_paned_set_position (GTK_PANED (hpaned), 100); - /*gtk_paned_set_gutter_size (GTK_PANED (hpaned), 12);*/ + e_paned_set_position (E_PANED (hpaned), 100); + /*e_paned_set_gutter_size (E_PANED (hpaned), 12);*/ vbox = gtk_vbox_new (FALSE, 0); - gtk_paned_pack2 (GTK_PANED (hpaned), vbox, TRUE, TRUE); + e_paned_pack2 (E_PANED (hpaned), vbox, TRUE, TRUE); gtk_widget_show (vbox); -- cgit v1.2.3