From 7acab8b24cd9e7e2e32211e77d2a5c2eae1c4bb0 Mon Sep 17 00:00:00 2001 From: nobody Date: Thu, 2 Aug 2001 15:43:54 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'release-0-2-91'. svn path=/tags/release-0-2-91/; revision=11578 --- libwombat/.cvsignore | 11 --- libwombat/ChangeLog | 22 ------ libwombat/Makefile.am | 37 ---------- libwombat/wombat-client.c | 173 ---------------------------------------------- libwombat/wombat-client.h | 73 ------------------- 5 files changed, 316 deletions(-) delete mode 100644 libwombat/.cvsignore delete mode 100644 libwombat/ChangeLog delete mode 100644 libwombat/Makefile.am delete mode 100644 libwombat/wombat-client.c delete mode 100644 libwombat/wombat-client.h (limited to 'libwombat') diff --git a/libwombat/.cvsignore b/libwombat/.cvsignore deleted file mode 100644 index 6116a56ead..0000000000 --- a/libwombat/.cvsignore +++ /dev/null @@ -1,11 +0,0 @@ -Makefile.in -Makefile -*.lo -wombat.h -wombat-common.c -wombat-skels.c -wombat-stubs.c -.deps -.libs -libwombat.la -libwombat-static.la diff --git a/libwombat/ChangeLog b/libwombat/ChangeLog deleted file mode 100644 index 6919fda2a9..0000000000 --- a/libwombat/ChangeLog +++ /dev/null @@ -1,22 +0,0 @@ -2001-06-25 Peter Williams - - * Makefile.am (libwombat_static_la_SOURCES): Create a static - libwombat for the conduits. - -2001-06-23 Jason Leach - - * Makefile.am: builddir != srcdir fixes. - -2001-06-22 Rodrigo Moya - - * Makefile.am: added $(ORBIT_IDL) as a dependency to the IDL - files, so that the skels/stubs are rebuilt if a new version of - ORBit has been installed - -2001-06-21 JP Rosevear - - * Makefile.am: Add some includes - -2001-06-21 Rodrigo Moya - - * created new directory for the libwombat library diff --git a/libwombat/Makefile.am b/libwombat/Makefile.am deleted file mode 100644 index 9fa5bd9c70..0000000000 --- a/libwombat/Makefile.am +++ /dev/null @@ -1,37 +0,0 @@ -INCLUDES = \ - $(BONOBO_VFS_GNOME_CFLAGS) \ - $(GNOME_INCLUDEDIR) - -# CORBA stuff - -IDLS = $(top_srcdir)/wombat/wombat.idl -IDL_GENERATED = \ - wombat.h \ - wombat-common.c \ - wombat-skels.c \ - wombat-stubs.c - -$(IDLS): $(ORBIT_IDL) - -$(IDL_GENERATED): $(IDLS) - $(ORBIT_IDL) -I $(srcdir) -I $(datadir)/idl `$(GNOME_CONFIG) --cflags idl` \ - $(top_srcdir)/wombat/wombat.idl - -# Wombat library -lib_LTLIBRARIES = libwombat.la - -wombatincludedir = $(includedir)/evolution/wombat -wombatinclude_HEADERS = \ - wombat-client.h - -libwombat_la_SOURCES = \ - $(IDL_GENERATED) \ - wombat-client.c \ - $(wombatinclude_HEADERS) - -# Static lib for pilot conduits - -noinst_LTLIBRARIES = libwombat-static.la - -libwombat_static_la_SOURCES = $(libwombat_la_SOURCES) -libwombat_static_la_LDFLAGS = --all-static diff --git a/libwombat/wombat-client.c b/libwombat/wombat-client.c deleted file mode 100644 index 0087d1a9ed..0000000000 --- a/libwombat/wombat-client.c +++ /dev/null @@ -1,173 +0,0 @@ -/* Wombat client library - * - * Copyright (C) 2001 Ximian, Inc. - * - * Author: Rodrigo Moya - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * 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. - */ - -#include "wombat-client.h" - -#define PARENT_TYPE BONOBO_X_OBJECT_TYPE - -struct _WombatClientPrivate { - WombatClientGetPasswordFn get_password; - WombatClientForgetPasswordFn forget_password; - gpointer fn_data; -}; - -static void wombat_client_class_init (WombatClientClass *klass); -static void wombat_client_init (WombatClient *client); -static void wombat_client_destroy (GtkObject *objct); - -/* - * CORBA interface implementation - */ -static CORBA_char * -impl_GNOME_Evolution_WombatClient_getPassword (PortableServer_Servant servant, - const CORBA_char *prompt, - const CORBA_char *key, - CORBA_Environment *ev) -{ - WombatClient *client; - - client = WOMBAT_CLIENT (bonobo_x_object (servant)); - g_return_val_if_fail (WOMBAT_IS_CLIENT (client), NULL); - g_return_val_if_fail (client->priv != NULL, NULL); - - if (client->priv->get_password != NULL) - return client->priv->get_password (client, prompt, key, client->priv->fn_data); - - return NULL; -} - -static void -impl_GNOME_Evolution_WombatClient_forgetPassword (PortableServer_Servant servant, - const CORBA_char *key, - CORBA_Environment *ev) -{ - WombatClient *client; - - client = WOMBAT_CLIENT (bonobo_x_object (servant)); - g_return_if_fail (WOMBAT_IS_CLIENT (client)); - g_return_if_fail (client->priv != NULL); - - if (client->priv->forget_password != NULL) - client->priv->forget_password (client, key, client->priv->fn_data); -} - -/* - * WombatClient class implementation - */ -static void -wombat_client_class_init (WombatClientClass *klass) -{ - GtkObjectClass *object_class = GTK_OBJECT_CLASS(klass); - POA_GNOME_Evolution_WombatClient__epv *epv = &klass->epv; - - object_class->destroy = wombat_client_destroy; - - epv->getPassword = impl_GNOME_Evolution_WombatClient_getPassword; - epv->forgetPassword = impl_GNOME_Evolution_WombatClient_forgetPassword; -} - -static void -wombat_client_init (WombatClient *client) -{ - client->priv = g_new0 (WombatClientPrivate, 1); -} - -static void -wombat_client_destroy (GtkObject *object) -{ - GtkObjectClass *parent_class; - WombatClient *client = (WombatClient *) object; - - g_return_if_fail (WOMBAT_IS_CLIENT (client)); - - /* free memory */ - if (client->priv != NULL) { - g_free (client->priv); - } - - /* call parent class' destroy handler */ - parent_class = GTK_OBJECT_CLASS (gtk_type_class (PARENT_TYPE)); - if (parent_class->destroy != NULL) - parent_class->destroy (GTK_OBJECT(client)); -} - -/** - * wombat_client_get_type - */ -GtkType -wombat_client_get_type (void) -{ - static GtkType type = 0; - - if (!type) { - GtkTypeInfo info = { - "WombatClient", - sizeof (WombatClient), - sizeof (WombatClientClass), - (GtkClassInitFunc) wombat_client_class_init, - (GtkObjectInitFunc) wombat_client_init, - (GtkArgSetFunc) NULL, - (GtkArgSetFunc) NULL - }; - type = bonobo_x_type_unique( - PARENT_TYPE, - POA_GNOME_Evolution_WombatClient__init, NULL, - GTK_STRUCT_OFFSET (WombatClientClass, epv), - &info); - } - return type; -} - -/** - * wombat_client_construct - */ -WombatClient * -wombat_client_construct (WombatClient *client, - WombatClientGetPasswordFn get_password_fn, - WombatClientForgetPasswordFn forget_password_fn, - gpointer fn_data) -{ - g_return_val_if_fail (WOMBAT_IS_CLIENT (client), NULL); - g_return_val_if_fail (client->priv != NULL, NULL); - - client->priv->get_password = get_password_fn; - client->priv->forget_password = forget_password_fn; - client->priv->fn_data = fn_data; - - return client; -} - -/** - * wombat_client_new - */ -WombatClient * -wombat_client_new (WombatClientGetPasswordFn get_password_fn, - WombatClientForgetPasswordFn forget_password_fn, - gpointer fn_data) -{ - WombatClient *client; - - client = WOMBAT_CLIENT (gtk_type_new (WOMBAT_TYPE_CLIENT)); - return wombat_client_construct (client, - get_password_fn, - forget_password_fn, - fn_data); -} diff --git a/libwombat/wombat-client.h b/libwombat/wombat-client.h deleted file mode 100644 index afec05db39..0000000000 --- a/libwombat/wombat-client.h +++ /dev/null @@ -1,73 +0,0 @@ -/* Wombat client library - * - * Copyright (C) 2001 Ximian, Inc. - * - * Author: Rodrigo Moya - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * 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 WOMBAT_CLIENT_H -#define WOMBAT_CLIENT_H - -#include -#include -#include "wombat.h" - -BEGIN_GNOME_DECLS - -#define WOMBAT_TYPE_CLIENT (wombat_client_get_type()) -#define WOMBAT_CLIENT(obj) GTK_CHECK_CAST(obj, WOMBAT_TYPE_CLIENT, WombatClient) -#define WOMBAT_CLIENT_CLASS(klass) GTK_CHECK_CLASS_CAST(klass, WOMBAT_TYPE_CLIENT, WombatClientClass) -#define WOMBAT_IS_CLIENT(obj) GTK_CHECK_TYPE(obj, WOMBAT_TYPE_CLIENT) -#define WOMBAT_IS_CLIENT_CLASS(klass) (GTK_CHECK_CLASS_TYPE((klass), WOMBAT_TYPE_CLIENT)) - -typedef struct _WombatClient WombatClient; -typedef struct _WombatClientClass WombatClientClass; -typedef struct _WombatClientPrivate WombatClientPrivate; - -struct _WombatClient { - BonoboXObject object; - WombatClientPrivate *priv; -}; - -struct _WombatClientClass { - BonoboXObjectClass parent_class; - - POA_GNOME_Evolution_WombatClient__epv epv; -}; - -typedef gchar * (* WombatClientGetPasswordFn) (WombatClient *client, - const gchar *prompt, - const gchar *key, - gpointer user_data); -typedef void (* WombatClientForgetPasswordFn) (WombatClient *client, - const gchar *key, - gpointer user_data); - -GtkType wombat_client_get_type (void); - -WombatClient *wombat_client_construct (WombatClient *client, - WombatClientGetPasswordFn get_password_fn, - WombatClientForgetPasswordFn forget_password_fn, - gpointer fn_data); -WombatClient *wombat_client_new (WombatClientGetPasswordFn get_password_fn, - WombatClientForgetPasswordFn forget_password_fn, - gpointer fn_data); - - -END_GNOME_DECLS - -#endif -- cgit v1.2.3