
2002-05-24 Chris Toshok <toshok@ximian.com> [ fixes 90% of #25047 ] * e-folder-list.c (get_folder_for_uri): shamelessly lifted from evolution-folder-selector-button.c. (create_display_string): modeled again after evolution-folder-selector-button.c, so we can give a little more context (and make the table look like the folder selector buttons.) (SPEC): add a pixbuf column, also remove the sorting behavior. (columns): add a pixbuf column and another string column (for the display string). (add_clicked): create the display string and get the proper pixbuf, and insert both. (edit_clicked): removed. (update_buttons): remove edit button handling from here. (e_folder_list_init): remove the hooking up of button-edit's "clicked" signal. (e_folder_list_construct): get a reference to the storage registry so we can look up folders. (e_folder_list_set_items): analogous change to add_clicked - get the display string and pixbuf and insert them. * glade/e-folder-list.glade: remove the edit button. * glade/e-shell-config-default-folders.glade: remove the frame/vbox, since we embed it in a notebook and the tab has the title already. * e-shell-config.c (config_control_factory_cb): the only config control we deal with here now is the folder settings control. * e-shell-config-default-folders.c (e_shell_config_default_folders_create_widget): rename e_shell_config_default_folders_create_control to this, return the widget, and take the config control to use as an arg. * e-shell-config-offline.c (e_shell_config_offline_create_widget): make an analogous change here as with default_folders_create_widget. * e-shell-config-default-folders.h (e_shell_config_default_folders_create_widget): track change to prototype. * e-shell-config-offline.h (e_shell_config_offline_create_widget): same. * GNOME_Evolution_Shell.oaf.in: remove the DefaultFolders and OfflineFolders controls and add a FolderSettings_Control. * Makefile.am (evolution_SOURCES): add e-shell-config-folder-settings.[ch] and e-shell-config-autocompletion.[ch]. * e-shell-config-folder-settings.[ch]: new files, embed (after a fashion) the default folder, offline, and autocompletion UI's in a notebook. * e-shell-config-autocompletion.[ch]: Basically copy over and shell-ize the addressbook autocompletion config control so it can be embedded more easily with the other folder settings. svn path=/trunk/; revision=17000
190 lines
6.5 KiB
C
190 lines
6.5 KiB
C
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
|
||
/* e-shell-config-default-folders.c - Configuration page for specifying default
|
||
* folders.
|
||
*
|
||
* 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.
|
||
*
|
||
* Author: Dan Winship <danw@ximian.com>
|
||
*/
|
||
|
||
#ifdef HAVE_CONFIG_H
|
||
#include <config.h>
|
||
#endif
|
||
|
||
#include "e-shell-config-default-folders.h"
|
||
|
||
#include "evolution-folder-selector-button.h"
|
||
|
||
#include <glade/glade-xml.h>
|
||
#include <gtk/gtktogglebutton.h>
|
||
#include <gtk/gtksignal.h>
|
||
|
||
#include <libgnome/gnome-i18n.h>
|
||
|
||
|
||
typedef struct {
|
||
GladeXML *glade;
|
||
EvolutionConfigControl *config_control;
|
||
|
||
char *mail_uri, *mail_path;
|
||
char *contacts_uri, *contacts_path;
|
||
char *calendar_uri, *calendar_path;
|
||
char *tasks_uri, *tasks_path;
|
||
|
||
Bonobo_ConfigDatabase db;
|
||
EvolutionShellClient *shell_client;
|
||
} EvolutionDefaultFolderConfig;
|
||
|
||
static void
|
||
folder_selected (EvolutionFolderSelectorButton *button,
|
||
GNOME_Evolution_Folder *folder,
|
||
EvolutionDefaultFolderConfig *dfc)
|
||
{
|
||
char **uri_ptr, **path_ptr;
|
||
|
||
uri_ptr = gtk_object_get_data (GTK_OBJECT (button), "uri_ptr");
|
||
path_ptr = gtk_object_get_data (GTK_OBJECT (button), "path_ptr");
|
||
|
||
g_free (*uri_ptr);
|
||
g_free (*path_ptr);
|
||
*uri_ptr = g_strdup (folder->physicalUri);
|
||
*path_ptr = g_strdup (folder->evolutionUri);
|
||
|
||
evolution_config_control_changed (dfc->config_control);
|
||
}
|
||
|
||
GtkWidget *e_shell_config_default_folder_selector_button_new (char *widget_name, char *string1, char *string2, int int1, int int2);
|
||
|
||
GtkWidget *
|
||
e_shell_config_default_folder_selector_button_new (char *widget_name,
|
||
char *string1,
|
||
char *string2,
|
||
int int1, int int2)
|
||
{
|
||
return (GtkWidget *)gtk_type_new (EVOLUTION_TYPE_FOLDER_SELECTOR_BUTTON);
|
||
}
|
||
|
||
static void
|
||
config_control_apply_cb (EvolutionConfigControl *control,
|
||
EvolutionDefaultFolderConfig *dfc)
|
||
{
|
||
bonobo_config_set_string (dfc->db, "/DefaultFolders/mail_path", dfc->mail_path, NULL);
|
||
bonobo_config_set_string (dfc->db, "/DefaultFolders/mail_uri", dfc->mail_uri, NULL);
|
||
bonobo_config_set_string (dfc->db, "/DefaultFolders/contacts_path", dfc->contacts_path, NULL);
|
||
bonobo_config_set_string (dfc->db, "/DefaultFolders/contacts_uri", dfc->contacts_uri, NULL);
|
||
bonobo_config_set_string (dfc->db, "/DefaultFolders/calendar_path", dfc->calendar_path, NULL);
|
||
bonobo_config_set_string (dfc->db, "/DefaultFolders/calendar_uri", dfc->calendar_uri, NULL);
|
||
bonobo_config_set_string (dfc->db, "/DefaultFolders/tasks_path", dfc->tasks_path, NULL);
|
||
bonobo_config_set_string (dfc->db, "/DefaultFolders/tasks_uri", dfc->tasks_uri, NULL);
|
||
}
|
||
|
||
static void
|
||
config_control_destroy_cb (EvolutionConfigControl *config_control,
|
||
EvolutionDefaultFolderConfig *dfc)
|
||
{
|
||
g_free (dfc->mail_uri);
|
||
g_free (dfc->mail_path);
|
||
g_free (dfc->contacts_uri);
|
||
g_free (dfc->contacts_path);
|
||
g_free (dfc->calendar_uri);
|
||
g_free (dfc->calendar_path);
|
||
g_free (dfc->tasks_uri);
|
||
g_free (dfc->tasks_path);
|
||
|
||
gtk_object_unref (GTK_OBJECT (dfc->glade));
|
||
bonobo_object_unref (BONOBO_OBJECT (dfc->shell_client));
|
||
g_free (dfc);
|
||
}
|
||
|
||
static const char *mail_types[] = { "mail", NULL };
|
||
static const char *contacts_types[] = { "contacts", "ldap-contacts", NULL };
|
||
static const char *calendar_types[] = { "calendar", NULL };
|
||
static const char *tasks_types[] = { "tasks", NULL };
|
||
|
||
static void
|
||
setup_folder_selector (EvolutionDefaultFolderConfig *dfc,
|
||
const char *widget_name,
|
||
char **path_ptr, char *path_dbpath,
|
||
char **uri_ptr, char *uri_dbpath,
|
||
const char **types)
|
||
{
|
||
GtkWidget *button;
|
||
|
||
*path_ptr = bonobo_config_get_string (dfc->db, path_dbpath, NULL);
|
||
*uri_ptr = bonobo_config_get_string (dfc->db, uri_dbpath, NULL);
|
||
|
||
button = glade_xml_get_widget (dfc->glade, widget_name);
|
||
evolution_folder_selector_button_construct (
|
||
EVOLUTION_FOLDER_SELECTOR_BUTTON (button),
|
||
dfc->shell_client, _("Select Default Folder"),
|
||
*uri_ptr, types);
|
||
gtk_object_set_data (GTK_OBJECT (button), "uri_ptr", uri_ptr);
|
||
gtk_object_set_data (GTK_OBJECT (button), "path_ptr", path_ptr);
|
||
gtk_signal_connect (GTK_OBJECT (button), "selected",
|
||
GTK_SIGNAL_FUNC (folder_selected),
|
||
dfc);
|
||
}
|
||
|
||
GtkWidget*
|
||
e_shell_config_default_folders_create_widget (EShell *shell, EvolutionConfigControl *config_control)
|
||
{
|
||
GNOME_Evolution_Shell shell_dup;
|
||
CORBA_Environment ev;
|
||
EvolutionDefaultFolderConfig *dfc;
|
||
GtkWidget *widget;
|
||
|
||
dfc = g_new0 (EvolutionDefaultFolderConfig, 1);
|
||
dfc->db = e_shell_get_config_db (shell);
|
||
|
||
CORBA_exception_init (&ev);
|
||
shell_dup = CORBA_Object_duplicate (bonobo_object_corba_objref (BONOBO_OBJECT (shell)), &ev);
|
||
CORBA_exception_free (&ev);
|
||
dfc->shell_client = evolution_shell_client_new (shell_dup);
|
||
|
||
dfc->glade = glade_xml_new (EVOLUTION_GLADEDIR "/e-shell-config-default-folders.glade", NULL);
|
||
|
||
setup_folder_selector (dfc, "default_mail_button",
|
||
&dfc->mail_path, "/DefaultFolders/mail_path",
|
||
&dfc->mail_uri, "/DefaultFolders/mail_uri",
|
||
mail_types);
|
||
setup_folder_selector (dfc, "default_contacts_button",
|
||
&dfc->contacts_path, "/DefaultFolders/contacts_path",
|
||
&dfc->contacts_uri, "/DefaultFolders/contacts_uri",
|
||
contacts_types);
|
||
setup_folder_selector (dfc, "default_calendar_button",
|
||
&dfc->calendar_path, "/DefaultFolders/calendar_path",
|
||
&dfc->calendar_uri, "/DefaultFolders/calendar_uri",
|
||
calendar_types);
|
||
setup_folder_selector (dfc, "default_tasks_button",
|
||
&dfc->tasks_path, "/DefaultFolders/tasks_path",
|
||
&dfc->tasks_uri, "/DefaultFolders/tasks_uri",
|
||
tasks_types);
|
||
|
||
widget = glade_xml_get_widget (dfc->glade, "default_folders_table");
|
||
gtk_widget_ref (widget);
|
||
gtk_container_remove (GTK_CONTAINER (widget->parent), widget);
|
||
gtk_widget_show (widget);
|
||
dfc->config_control = config_control;
|
||
|
||
gtk_signal_connect (GTK_OBJECT (dfc->config_control), "apply",
|
||
GTK_SIGNAL_FUNC (config_control_apply_cb), dfc);
|
||
gtk_signal_connect (GTK_OBJECT (dfc->config_control), "destroy",
|
||
GTK_SIGNAL_FUNC (config_control_destroy_cb), dfc);
|
||
|
||
return widget;
|
||
}
|