aboutsummaryrefslogtreecommitdiffstats
path: root/default_user
diff options
context:
space:
mode:
authorMatthew Loper <mloper@src.gnome.org>2000-04-24 11:10:30 +0800
committerMatthew Loper <mloper@src.gnome.org>2000-04-24 11:10:30 +0800
commit7c309e43b25b9de136c5329d7fc041baeaf841c6 (patch)
treea97f3dbc1e924cbd1f6e2caa66ebffb337cc1b58 /default_user
parent0fe51af01075beb777894bacca9e98aeef3f860a (diff)
downloadgsoc2013-evolution-7c309e43b25b9de136c5329d7fc041baeaf841c6.tar
gsoc2013-evolution-7c309e43b25b9de136c5329d7fc041baeaf841c6.tar.gz
gsoc2013-evolution-7c309e43b25b9de136c5329d7fc041baeaf841c6.tar.bz2
gsoc2013-evolution-7c309e43b25b9de136c5329d7fc041baeaf841c6.tar.lz
gsoc2013-evolution-7c309e43b25b9de136c5329d7fc041baeaf841c6.tar.xz
gsoc2013-evolution-7c309e43b25b9de136c5329d7fc041baeaf841c6.tar.zst
gsoc2013-evolution-7c309e43b25b9de136c5329d7fc041baeaf841c6.zip
+ * widgets/Makefile.am: Added e-paned directory.
+ + * 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
Diffstat (limited to 'default_user')
-rw-r--r--default_user/Inbox.mbox29
-rw-r--r--default_user/Main_Shortcuts.xml8
-rw-r--r--default_user/Makefile.am11
-rw-r--r--default_user/Other_Shortcuts.xml4
4 files changed, 52 insertions, 0 deletions
diff --git a/default_user/Inbox.mbox b/default_user/Inbox.mbox
new file mode 100644
index 0000000000..57df16271b
--- /dev/null
+++ b/default_user/Inbox.mbox
@@ -0,0 +1,29 @@
+From matt@loper.helixcode.com Sat Apr 22 00:00:15 2000 -0400
+Status: R
+X-Status:
+X-Keywords:
+Return-Path: <matt>
+Received: (from matt@localhost)
+ by loper.helixcode.com (8.9.3/8.9.3) id AAA05962
+ for matt; Sat, 22 Apr 2000 00:00:15 -0400
+Date: Sat, 22 Apr 2000 00:00:15 -0400
+From: Matt Loper <matt@loper.helixcode.com>
+Message-Id: <200004220400.AAA05962@loper.helixcode.com>
+To: humans@the.world
+Subject: Welcome to Evolution
+X-Evolution: 00000001-0000
+
+Welcome to Evolution 1.0: a developer's alpha preview. If you find a
+bug, and you're running bug-buddy, you can submit bug-reports by going
+to the file->bugbuddy menu (insert picture here).
+
+TODO: fill out introduction a little more; make this into a pretty
+html page to show off our html support; we should use a big dancing
+monkey with light contrast as a background.
+
+-Matt
+
+
+
+
+
diff --git a/default_user/Main_Shortcuts.xml b/default_user/Main_Shortcuts.xml
new file mode 100644
index 0000000000..c96ddd199e
--- /dev/null
+++ b/default_user/Main_Shortcuts.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0">
+<shortcutpane>
+ <shortcut><uri name="file:///../folders/Today/"/></shortcut>
+ <shortcut><uri name="file:///../folders/Inbox/"/></shortcut>
+ <shortcut><uri name="file:///../folders/Calendar/"/></shortcut>
+ <shortcut><uri name="file:///../folders/Contacts/"/></shortcut>
+ <shortcut><uri name="file:///../folders/Tasks/"/></shortcut>
+</shortcutpane> \ No newline at end of file
diff --git a/default_user/Makefile.am b/default_user/Makefile.am
new file mode 100644
index 0000000000..d93df2cb0c
--- /dev/null
+++ b/default_user/Makefile.am
@@ -0,0 +1,11 @@
+shortcutdir = $(datadir)/evolution/default_user/shortcuts
+shortcut_DATA = \
+ Main_Shortcuts.xml \
+ Other_Shortcuts.xml
+
+inboxdir = $(datadir)/evolution/default_user/folders/Inbox
+inbox_DATA = \
+ Inbox.mbox
+
+
+
diff --git a/default_user/Other_Shortcuts.xml b/default_user/Other_Shortcuts.xml
new file mode 100644
index 0000000000..e19f75f975
--- /dev/null
+++ b/default_user/Other_Shortcuts.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0">
+<shortcutpane>
+ <shortcut><uri name="file:///../folders/Drafts/"/></shortcut>
+</shortcutpane> \ No newline at end of file