aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2001-07-04 00:36:54 +0800
committerIain Holmes <iain@src.gnome.org>2001-07-04 00:36:54 +0800
commit59b07be2c70cb82fab72249e982d9a15063b34b2 (patch)
treeed36fc538085be5980fe687b7de402f3da97a44c /my-evolution
parentc7553c75aa2b11b42df7031773dd6326c4a98272 (diff)
downloadgsoc2013-evolution-59b07be2c70cb82fab72249e982d9a15063b34b2.tar
gsoc2013-evolution-59b07be2c70cb82fab72249e982d9a15063b34b2.tar.gz
gsoc2013-evolution-59b07be2c70cb82fab72249e982d9a15063b34b2.tar.bz2
gsoc2013-evolution-59b07be2c70cb82fab72249e982d9a15063b34b2.tar.lz
gsoc2013-evolution-59b07be2c70cb82fab72249e982d9a15063b34b2.tar.xz
gsoc2013-evolution-59b07be2c70cb82fab72249e982d9a15063b34b2.tar.zst
gsoc2013-evolution-59b07be2c70cb82fab72249e982d9a15063b34b2.zip
BonoboConf work New print icon
BonoboConf work New print icon svn path=/trunk/; revision=10751
Diffstat (limited to 'my-evolution')
-rw-r--r--my-evolution/ChangeLog10
-rw-r--r--my-evolution/Makefile.am2
-rw-r--r--my-evolution/e-summary-factory.c2
-rw-r--r--my-evolution/e-summary-preferences.c135
4 files changed, 75 insertions, 74 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog
index fae5f529b6..f680c91492 100644
--- a/my-evolution/ChangeLog
+++ b/my-evolution/ChangeLog
@@ -1,5 +1,15 @@
2001-07-03 Iain Holmes <iain@ximian.com>
+ * e-summary-preferences.c (e_summary_preferences_restore): Ditch
+ gnome-config and replace it with bonobo-conf.
+ (e_summary_preferences_save): Ditto.
+
+ * e-summary-factory.c: Use the new print.png icon.
+
+ * Makefile.am: Add bonobo conf CFLAGS and LIBS
+
+2001-07-03 Iain Holmes <iain@ximian.com>
+
* e-summary.c (e_summary_set_online): Return if summary == NULL.
(e_summary_add_connections): Return NULL if summary == NULL.
(e_summary_count_connections): Return 0 if summary == NULL.
diff --git a/my-evolution/Makefile.am b/my-evolution/Makefile.am
index e713bcf202..5033ccbd32 100644
--- a/my-evolution/Makefile.am
+++ b/my-evolution/Makefile.am
@@ -11,6 +11,7 @@ INCLUDES = \
$(EXTRA_GNOME_CFLAGS) \
$(GNOME_VFS_CFLAGS) \
$(GTKHTML_CFLAGS) \
+ $(BONOBO_CONF_CFLAGS) \
-DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \
-DEVOLUTION_LOCALEDIR=\""$(localedir)"\" \
-DEVOLUTION_DATADIR=\""$(datadir)"\" \
@@ -67,6 +68,7 @@ evolution_executive_summary_LDADD = \
$(top_builddir)/libical/src/libical/libical.la \
$(top_builddir)/libwombat/libwombat.la \
$(BONOBO_VFS_GNOME_LIBS) \
+ $(BONOBO_CONF_LIBS) \
$(EXTRA_GNOME_LIBS) \
-lgal \
$(GTKHTML_LIBS)
diff --git a/my-evolution/e-summary-factory.c b/my-evolution/e-summary-factory.c
index 7afd677d95..fbc45f13a7 100644
--- a/my-evolution/e-summary-factory.c
+++ b/my-evolution/e-summary-factory.c
@@ -31,7 +31,7 @@ BonoboUIVerb verbs[] = {
static EPixmap pixmaps [] = {
- E_PIXMAP ("/commands/Print", "print.xpm"),
+ E_PIXMAP ("/commands/Print", "print.png"),
E_PIXMAP ("/commands/ToolsSettings", "configure_16_mail.xpm"),
E_PIXMAP_END
};
diff --git a/my-evolution/e-summary-preferences.c b/my-evolution/e-summary-preferences.c
index 3eae095fba..1012609fc4 100644
--- a/my-evolution/e-summary-preferences.c
+++ b/my-evolution/e-summary-preferences.c
@@ -21,6 +21,11 @@
#include <glade/glade.h>
#include <stdio.h>
+
+#include <bonobo/bonobo-exception.h>
+#include <bonobo/bonobo-moniker-util.h>
+#include <bonobo-conf/bonobo-config-database.h>
+
static void
make_initial_mail_list (ESummaryPrefs *prefs)
{
@@ -109,62 +114,58 @@ str_list_from_vector (const char *vector)
gboolean
e_summary_preferences_restore (ESummaryPrefs *prefs)
{
- char *evolution_dir, *key;
+ Bonobo_ConfigDatabase db;
+ CORBA_Environment ev;
char *vector;
g_return_val_if_fail (prefs != NULL, FALSE);
- evolution_dir = gnome_util_prepend_user_home ("evolution/config/my-evolution");
- if (g_file_exists (evolution_dir) == FALSE) {
- g_free (evolution_dir);
+ CORBA_exception_init (&ev);
+ db = bonobo_get_object ("wombat:", "Bonobo/ConfigDatabase", &ev);
+ if (BONOBO_EX (&ev) || db == CORBA_OBJECT_NIL) {
+ g_warning ("Error getting Wombat. Using defaults");
+ CORBA_exception_free (&ev);
return FALSE;
}
- key = g_strdup_printf ("=%s=/Mail/", evolution_dir);
- gnome_config_push_prefix (key);
- g_free (key);
-
- vector = gnome_config_get_string ("display_folders");
+ CORBA_exception_free (&ev);
+ vector = bonobo_config_get_string (db, "Mail/display_folders", NULL);
+ if (vector == NULL) {
+ bonobo_object_release_unref (db, NULL);
+ return FALSE;
+ }
prefs->display_folders = str_list_from_vector (vector);
g_free (vector);
- prefs->show_full_path = gnome_config_get_bool ("show_full_path=FALSE");
+ prefs->show_full_path = bonobo_config_get_boolean (db, "Mail/show_full_path=FALSE", NULL);
- gnome_config_pop_prefix ();
- key = g_strdup_printf ("=%s=/RDF/", evolution_dir);
- gnome_config_push_prefix (key);
- g_free (key);
-
- vector = gnome_config_get_string ("rdf_urls");
+ vector = bonobo_config_get_string (db, "RDF/rdf_urls", NULL);
+ if (vector == NULL) {
+ bonobo_object_release_unref (db, NULL);
+ return FALSE;
+ }
prefs->rdf_urls = str_list_from_vector (vector);
g_free (vector);
- prefs->rdf_refresh_time = gnome_config_get_int ("rdf_refresh_time=600");
- prefs->limit = gnome_config_get_int ("limit=10");
- prefs->wipe_trackers = gnome_config_get_bool ("wipe_trackers=True");
+ prefs->rdf_refresh_time = bonobo_config_get_long_with_default (db, "RDF/rdf_refresh_time", 600, NULL);
+ prefs->limit = bonobo_config_get_long_with_default (db, "RDF/limit", 10, NULL);
+ prefs->wipe_trackers = bonobo_config_get_boolean_with_default (db, "RDF/wipe_trackers", FALSE, NULL);
- gnome_config_pop_prefix ();
- key = g_strdup_printf ("=%s=/Weather/", evolution_dir);
- gnome_config_push_prefix (key);
- g_free (key);
-
- vector = gnome_config_get_string ("stations");
+ vector = bonobo_config_get_string (db, "Weather/stations", NULL);
+ if (vector == NULL) {
+ bonobo_object_release_unref (db, NULL);
+ return FALSE;
+ }
prefs->stations = str_list_from_vector (vector);
g_free (vector);
- prefs->units = gnome_config_get_int ("units");
- prefs->weather_refresh_time = gnome_config_get_int ("weather_refresh_time");
+ prefs->units = bonobo_config_get_long (db, "Weather/units", NULL);
+ prefs->weather_refresh_time = bonobo_config_get_long (db, "weather_refresh_time", NULL);
- gnome_config_pop_prefix ();
- key = g_strdup_printf ("=%s=/Schedule/", evolution_dir);
- gnome_config_push_prefix (key);
- g_free (key);
-
- prefs->days = gnome_config_get_int ("days");
- prefs->show_tasks = gnome_config_get_int ("show_tasks");
+ prefs->days = bonobo_config_get_long (db, "Schedule/days", NULL);
+ prefs->show_tasks = bonobo_config_get_long (db, "show_tasks", NULL);
- gnome_config_pop_prefix ();
- g_free (evolution_dir);
+ bonobo_object_release_unref (db, NULL);
return TRUE;
}
@@ -172,62 +173,50 @@ e_summary_preferences_restore (ESummaryPrefs *prefs)
void
e_summary_preferences_save (ESummaryPrefs *prefs)
{
- char *evolution_dir, *key;
+ Bonobo_ConfigDatabase db;
+ CORBA_Environment ev;
char *vector;
g_return_if_fail (prefs != NULL);
- g_print ("Saving stuff\n");
- evolution_dir = gnome_util_prepend_user_home ("evolution/config/my-evolution");
- key = g_strdup_printf ("=%s=/Mail/", evolution_dir);
- gnome_config_push_prefix (key);
- g_free (key);
+ CORBA_exception_init (&ev);
+ db = bonobo_get_object ("wombat:", "Bonobo/ConfigDatabase", &ev);
+ if (BONOBO_EX (&ev) || db == CORBA_OBJECT_NIL) {
+ g_warning ("Cannot save preferences");
+ CORBA_exception_free (&ev);
+ return;
+ }
+ CORBA_exception_free (&ev);
vector = vector_from_str_list (prefs->display_folders);
- gnome_config_set_string ("display_folders", vector);
+ bonobo_config_set_string (db, "Mail/display_folders", vector, NULL);
g_free (vector);
- gnome_config_set_bool ("show_full_path", prefs->show_full_path);
+ bonobo_config_set_boolean (db, "Mail/show_full_path", prefs->show_full_path, NULL);
- gnome_config_pop_prefix ();
- key = g_strdup_printf ("=%s=/RDF/", evolution_dir);
- gnome_config_push_prefix (key);
- g_free (key);
-
vector = vector_from_str_list (prefs->rdf_urls);
- gnome_config_set_string ("rdf_urls", vector);
+ bonobo_config_set_string (db, "RDF/rdf_urls", vector, NULL);
g_free (vector);
- gnome_config_set_int ("rdf_refresh_time", prefs->rdf_refresh_time);
- gnome_config_set_int ("limit", prefs->limit);
- gnome_config_set_bool ("wipe_trackers", prefs->wipe_trackers);
-
- gnome_config_pop_prefix ();
- key = g_strdup_printf ("=%s=/Weather/", evolution_dir);
- gnome_config_push_prefix (key);
- g_free (key);
+ bonobo_config_set_long (db, "RDF/rdf_refresh_time", prefs->rdf_refresh_time, NULL);
+ bonobo_config_set_long (db, "RDF/limit", prefs->limit, NULL);
+ bonobo_config_set_boolean (db, "RDF/wipe_trackers", prefs->wipe_trackers, NULL);
vector = vector_from_str_list (prefs->stations);
- gnome_config_set_string ("stations", vector);
+ bonobo_config_set_string (db, "Weather/stations", vector, NULL);
g_free (vector);
- gnome_config_set_int ("units", prefs->units);
- gnome_config_set_int ("weather_refresh_time", prefs->weather_refresh_time);
-
- gnome_config_pop_prefix ();
- key = g_strdup_printf ("=%s=/Schedule/", evolution_dir);
- gnome_config_push_prefix (key);
- g_free (key);
+ bonobo_config_set_long (db, "Weather/units", prefs->units, NULL);
+ bonobo_config_set_long (db, "Weather/weather_refresh_time", prefs->weather_refresh_time, NULL);
- gnome_config_set_int ("days", prefs->days);
- gnome_config_set_int ("show_tasks", prefs->show_tasks);
+ bonobo_config_set_long (db, "Schedule/days", prefs->days, NULL);
+ bonobo_config_set_long (db, "Schedule/show_tasks", prefs->show_tasks, NULL);
- gnome_config_pop_prefix ();
+ CORBA_exception_init (&ev);
+ Bonobo_ConfigDatabase_sync (db, &ev);
+ CORBA_exception_free (&ev);
- gnome_config_sync ();
- gnome_config_drop_all ();
-
- g_free (evolution_dir);
+ bonobo_object_release_unref (db, NULL);
}
static void