diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-05-25 07:00:39 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-05-25 07:00:39 +0800 |
commit | e033af05d726f5307efa12879ad0f6f3e88bb041 (patch) | |
tree | c012df66efcbf3536ee3a63a6995ce89a082cff2 /widgets/shortcut-bar/test-shortcut-bar.c | |
parent | 057745cfb6c4b4a0543446b0d7fbe2661d2164f2 (diff) | |
download | gsoc2013-evolution-e033af05d726f5307efa12879ad0f6f3e88bb041.tar.gz gsoc2013-evolution-e033af05d726f5307efa12879ad0f6f3e88bb041.tar.zst gsoc2013-evolution-e033af05d726f5307efa12879ad0f6f3e88bb041.zip |
Added widgets/e-paned/Makefile.
2000-05-24 Christopher James Lahey <clahey@helixcode.com>
* 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 <clahey@helixcode.com>
* gui/Makefile.am: Added libepaned.a.
* gui/gnome-cal.c: Switched from GtkPaned to EPaned.
From mail/ChangeLog:
2000-05-24 Christopher James Lahey <clahey@helixcode.com>
* Makefile.am: Added libepaned.a.
* folder-browser.c: Switched from GtkPaned to EPaned.
From shell/ChangeLog:
2000-05-24 Christopher James Lahey <clahey@helixcode.com>
* 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 <clahey@helixcode.com>
* Makefile.am: Added libepaned.a.
* test-shortcut-bar.c: Switched from GtkPaned to EPaned.
svn path=/trunk/; revision=3191
Diffstat (limited to 'widgets/shortcut-bar/test-shortcut-bar.c')
-rw-r--r-- | widgets/shortcut-bar/test-shortcut-bar.c | 12 |
1 files changed, 7 insertions, 5 deletions
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 <widgets/e-paned/e-hpaned.h> + #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); |