Make the the scrolled window have an "in" shadow. Likewise. Likewise.

* gui/component/addressbook-component.c (impl_createControls):
Make the the scrolled window have an "in" shadow.
* gui/component/addressbook-config.c
(addressbook_dialog_create_sources_table): Likewise.
* gui/widgets/e-addressbook-view.c (create_minicard_view): Likewise.
(create_treeview_view): Likewise.

svn path=/trunk/; revision=22996
This commit is contained in:
Ettore Perazzoli
2003-10-22 19:17:00 +00:00
parent df3238a735
commit 36ec6f4a0d
4 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,12 @@
2003-10-22 Ettore Perazzoli <ettore@ximian.com>
* gui/component/addressbook-component.c (impl_createControls):
Make the the scrolled window have an "in" shadow.
* gui/component/addressbook-config.c
(addressbook_dialog_create_sources_table): Likewise.
* gui/widgets/e-addressbook-view.c (create_minicard_view): Likewise.
(create_treeview_view): Likewise.
2003-10-22 Ettore Perazzoli <ettore@ximian.com>
* gui/component/addressbook-component.c (impl_createControls): Set

View File

@ -89,6 +89,7 @@ impl_createControls (PortableServer_Servant servant,
gtk_widget_show (selector);
selector_scrolled_window = gtk_scrolled_window_new (NULL, NULL);
gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (selector_scrolled_window), GTK_SHADOW_IN);
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (selector_scrolled_window),
GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
gtk_container_add (GTK_CONTAINER (selector_scrolled_window), selector);

View File

@ -1625,6 +1625,7 @@ addressbook_dialog_create_sources_table (char *name, char *string1, char *string
GtkListStore *model;
scrolled = gtk_scrolled_window_new (NULL, NULL);
gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scrolld), GTK_SHADOW_IN);
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled),
GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);

View File

@ -1127,6 +1127,7 @@ create_minicard_view (EABView *view)
G_CALLBACK(minicard_right_click), view);
scrolled_window = gtk_scrolled_window_new (NULL, NULL);
gtk_scrolled_window_set_shadow_type (GTK_SCROLLED (scrolled_window), GTK_SHADOW_IN);
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window),
GTK_POLICY_AUTOMATIC,
GTK_POLICY_AUTOMATIC);
@ -1223,6 +1224,7 @@ create_treeview_view (EABView *view)
adapter = eab_treeview_adapter_new(view->model);
scrolled = gtk_scrolled_window_new (NULL, NULL);
gtk_scrolled_window_set_shadow (GTK_SCROLLED_WINDOW (scrolled), GTK_SHADOW_IN);
treeview = gtk_tree_view_new_with_model (adapter);
gtk_widget_show (treeview);