diff options
author | Dan Winship <danw@src.gnome.org> | 2002-04-11 03:01:14 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2002-04-11 03:01:14 +0800 |
commit | 8ded5c9c10e4079fded6889ec4b10c37226468d4 (patch) | |
tree | 46bc039454a21d53d478af5f069816b2e4f872a5 /shell/e-shell-config.h | |
parent | eaeb675f415f5f672cdcd5b4774356d1ca383fa1 (diff) | |
download | gsoc2013-evolution-8ded5c9c10e4079fded6889ec4b10c37226468d4.tar.gz gsoc2013-evolution-8ded5c9c10e4079fded6889ec4b10c37226468d4.tar.zst gsoc2013-evolution-8ded5c9c10e4079fded6889ec4b10c37226468d4.zip |
Shell config page routines. Right now handles the default folders page.
* e-shell-config.c: Shell config page routines. Right now
handles the default folders page.
* glade/e-shell-config-default-folders.glade: New.
* GNOME_Evolution_Shell.oaf.in: Add info for the default folders
config page.
* main.c (idle_cb): If we successfully registered the shell,
register the config factory.
* evolution-shell-client.c (evolution_shell_client_new): Note the
fact that it frees the corba_shell when it is destroyed.
* evolution-folder-selector-button.c
(evolution_folder_selector_button_construct, destroy): Use
bonobo_object_ref/unref on the shell client, not gtk.
* e-shell.c (e_shell_construct): Pass local_directory to
e_setup_check_db.
(handle_default_uri): Fix the config db paths here to match the
other routines.
* e-setup.c (e_setup_check_db): Make this take the evolution
directory path as well so we can properly set up file: URIs for
the default folders.
svn path=/trunk/; revision=16423
Diffstat (limited to 'shell/e-shell-config.h')
-rw-r--r-- | shell/e-shell-config.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/shell/e-shell-config.h b/shell/e-shell-config.h new file mode 100644 index 0000000000..e2f209c5c4 --- /dev/null +++ b/shell/e-shell-config.h @@ -0,0 +1,28 @@ +/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ +/* e-shell-config.h + * + * Copyright (C) 2002 Ximian, Inc. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of version 2 of the GNU General Public + * License as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +#ifndef E_SHELL_CONFIG_H +#define E_SHELL_CONFIG_H + +#include "e-shell.h" + +gboolean e_shell_config_factory_register (EShell *shell); + +#endif |