+ + * default_user/Makefile.am: new file. + + * default_user/Main_Shortcuts.xml: New file; is used to fill the + shortcut bar's "main shortcuts" pane. + + * default_user/Other_Shortcuts.xml: New file, used to fill the + shortcut bar's "other shortcuts" pane. + + * default_user/Inbox.mbox: New file. This is the first message a + new user will see when they fire up Evolution. Needs work. + + * Makefile.am: added default_user directory. + * configure.in: same. + + * e-paned.c: New file. Makes a GtkPaned with more than two + children. + * e-paned.h: same. + + * Makefile.am: added e-paned.[ch]. + + * e-shell-view.h: Added hpaned and treeview widgets to + EShellView. Added e_shell_view_toggle_shortcut_bar() and + e_shell_view_toggle_treeview(). + + * e-shell-view.c (e_shell_view_setup_shortcut_display): Use EPaned + widget to house our shortcut bar. + (e_shell_view_toggle_shortcut_bar): New function; toggles whether + the shortcut bar is showing. + (e_shell_view_toggle_treeview): Same, for the treeview (NYI). + (e_shell_view_new): Put the notebook view in our EPaned widget. + + * e-shell-view-menu.c (esv_cmd_toggle_shortcut_bar): New function; + toggles whether the shortcut bar is viewed. + (esv_cmd_toggle_treeview): Same, but with the treeview. Added + menuitems in the "view" menu to allow access to the above. + svn path=/trunk/; revision=2575
39 lines
497 B
Makefile
39 lines
497 B
Makefile
changelogs = \
|
|
ChangeLog
|
|
|
|
EXTRA_DIST = \
|
|
AUTHORS \
|
|
$(changelogs) \
|
|
README \
|
|
HACKING \
|
|
MAINTAINERS \
|
|
NEWS
|
|
|
|
SUBDIRS = \
|
|
intl \
|
|
macros \
|
|
data \
|
|
e-util \
|
|
widgets \
|
|
shell \
|
|
libibex \
|
|
camel \
|
|
filter \
|
|
composer \
|
|
mail \
|
|
tests \
|
|
libical \
|
|
libversit \
|
|
addressbook \
|
|
calendar \
|
|
wombat \
|
|
art \
|
|
default_user \
|
|
po
|
|
|
|
dist-hook:
|
|
for subdir in intl ; do \
|
|
mkdir $(distdir)/$$subdir ; \
|
|
cp -pr $(srcdir)/$$subdir $(distdir) ; \
|
|
done
|