diff options
author | Harish Krishnaswamy <kharish@novell.com> | 2005-11-15 01:33:39 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2005-11-15 01:33:39 +0800 |
commit | 8928bf50902823f2d74d120420b7ca96f8f86174 (patch) | |
tree | a23fdd5d5d2cd7d8eafd4c9a057fbc7dca7500b1 /plugins/hula-account-setup/hula-account-setup.c | |
parent | ad24566a8b00276a2c5ae9f6f88a3fe5b69fc679 (diff) | |
download | gsoc2013-evolution-8928bf50902823f2d74d120420b7ca96f8f86174.tar.gz gsoc2013-evolution-8928bf50902823f2d74d120420b7ca96f8f86174.tar.zst gsoc2013-evolution-8928bf50902823f2d74d120420b7ca96f8f86174.zip |
Hula Account setup - initial commits.
2005-11-14 Harish Krishnaswamy <kharish@novell.com>
* Makefile.am, camel-hula-listener.[ch], hula-account-setup.c,
org-gnome-evolution-hula-account-setup.eplug.xml: Hula Account
setup - initial commits.
svn path=/trunk/; revision=30609
Diffstat (limited to 'plugins/hula-account-setup/hula-account-setup.c')
-rw-r--r-- | plugins/hula-account-setup/hula-account-setup.c | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/plugins/hula-account-setup/hula-account-setup.c b/plugins/hula-account-setup/hula-account-setup.c new file mode 100644 index 0000000000..45475690c6 --- /dev/null +++ b/plugins/hula-account-setup/hula-account-setup.c @@ -0,0 +1,62 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- + * + * Copyright (C) 2005 Novell, Inc. + * + * Author: Harish Krishnaswamy <kharish@novell.com> + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, copy, + * modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + */ + + +#include "camel-hula-listener.h" +#include <gtk/gtk.h> +#include "mail/em-config.h" + +static CamelHulaListener *config_listener = NULL; + +int e_plugin_lib_enable (EPluginLib *ep, int enable); +GtkWidget* org_gnome_evolution_hula_account_setup (struct _EPlugin *epl, struct _EConfigHookItemFactoryData *data); + +static void +free_hula_listener ( void ) +{ + g_object_unref (config_listener); +} + +int +e_plugin_lib_enable (EPluginLib *ep, int enable) +{ + if (!config_listener) { + config_listener = camel_hula_listener_new (); + g_atexit ( free_hula_listener ); + } + + return 0; +} + + +GtkWidget * +org_gnome_evolution_hula_account_setup (struct _EPlugin *epl, struct _EConfigHookItemFactoryData *data) +{ + if (data->old) + return data->old; + return NULL; +} |