
* s/BonoboXObject/BonoboObject/ (for BONOBO_DISABLE_DEPRECATED) svn path=/trunk/; revision=19427
170 lines
3.9 KiB
C
170 lines
3.9 KiB
C
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
|
||
/* evolution-session.c
|
||
*
|
||
* Copyright (C) 2000, 2001, 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: Ettore Perazzoli
|
||
*/
|
||
|
||
#ifdef HAVE_CONFIG_H
|
||
#include <config.h>
|
||
#endif
|
||
|
||
#include <gtk/gtksignal.h>
|
||
#include <gal/util/e-util.h>
|
||
|
||
#include "Evolution.h"
|
||
|
||
#include "evolution-session.h"
|
||
|
||
#include "e-shell-marshal.h"
|
||
|
||
|
||
#define PARENT_TYPE bonobo_object_get_type ()
|
||
static BonoboObjectClass *parent_class = NULL;
|
||
|
||
struct _EvolutionSessionPrivate {
|
||
int dummy;
|
||
};
|
||
|
||
enum {
|
||
LOAD_CONFIGURATION,
|
||
SAVE_CONFIGURATION,
|
||
LAST_SIGNAL
|
||
};
|
||
|
||
static int signals[LAST_SIGNAL];
|
||
|
||
|
||
/* GObject methods. */
|
||
|
||
static void
|
||
impl_dispose (GObject *object)
|
||
{
|
||
/* Nothing to do here. */
|
||
|
||
(* G_OBJECT_CLASS (parent_class)->dispose) (object);
|
||
}
|
||
|
||
static void
|
||
impl_finalize (GObject *object)
|
||
{
|
||
EvolutionSession *session;
|
||
EvolutionSessionPrivate *priv;
|
||
|
||
session = EVOLUTION_SESSION (object);
|
||
priv = session->priv;
|
||
|
||
g_free (priv);
|
||
|
||
(* G_OBJECT_CLASS (parent_class)->finalize) (object);
|
||
}
|
||
|
||
|
||
/* CORBA interface implementation. */
|
||
|
||
static void
|
||
impl_GNOME_Evolution_Session_saveConfiguration (PortableServer_Servant servant,
|
||
const CORBA_char *prefix,
|
||
CORBA_Environment *ev)
|
||
{
|
||
BonoboObject *self;
|
||
|
||
self = bonobo_object_from_servant (servant);
|
||
g_signal_emit (self, signals[SAVE_CONFIGURATION], 0, prefix);
|
||
}
|
||
|
||
static void
|
||
impl_GNOME_Evolution_Session_loadConfiguration (PortableServer_Servant servant,
|
||
const CORBA_char *prefix,
|
||
CORBA_Environment *ev)
|
||
{
|
||
BonoboObject *self;
|
||
|
||
self = bonobo_object_from_servant (servant);
|
||
g_signal_emit (self, signals[LOAD_CONFIGURATION], 0, prefix);
|
||
}
|
||
|
||
|
||
/* Initialization. */
|
||
|
||
static void
|
||
corba_class_init (EvolutionSessionClass *klass)
|
||
{
|
||
POA_GNOME_Evolution_Session__epv *epv = & (EVOLUTION_SESSION_CLASS (klass)->epv);
|
||
|
||
epv = g_new0 (POA_GNOME_Evolution_Session__epv, 1);
|
||
epv->saveConfiguration = impl_GNOME_Evolution_Session_saveConfiguration;
|
||
epv->loadConfiguration = impl_GNOME_Evolution_Session_loadConfiguration;
|
||
}
|
||
|
||
static void
|
||
evolution_session_class_init (EvolutionSessionClass *klass)
|
||
{
|
||
GObjectClass *object_class;
|
||
|
||
object_class = G_OBJECT_CLASS (klass);
|
||
parent_class = g_type_class_ref(PARENT_TYPE);
|
||
|
||
object_class->dispose = impl_dispose;
|
||
object_class->finalize = impl_finalize;
|
||
|
||
signals[LOAD_CONFIGURATION]
|
||
= g_signal_new ("load_configuration",
|
||
G_OBJECT_CLASS_TYPE (object_class),
|
||
G_SIGNAL_RUN_FIRST,
|
||
G_STRUCT_OFFSET (EvolutionSessionClass, load_configuration),
|
||
NULL, NULL,
|
||
e_shell_marshal_NONE__STRING,
|
||
G_TYPE_NONE, 1,
|
||
G_TYPE_STRING);
|
||
signals[SAVE_CONFIGURATION]
|
||
= g_signal_new ("save_configuration",
|
||
G_OBJECT_CLASS_TYPE (object_class),
|
||
G_SIGNAL_RUN_FIRST,
|
||
G_STRUCT_OFFSET (EvolutionSessionClass, save_configuration),
|
||
NULL, NULL,
|
||
e_shell_marshal_NONE__STRING,
|
||
G_TYPE_NONE, 1,
|
||
G_TYPE_STRING);
|
||
|
||
corba_class_init (klass);
|
||
}
|
||
|
||
static void
|
||
evolution_session_init (EvolutionSession *session)
|
||
{
|
||
EvolutionSessionPrivate *priv;
|
||
|
||
priv = g_new (EvolutionSessionPrivate, 1);
|
||
|
||
session->priv = priv;
|
||
}
|
||
|
||
|
||
EvolutionSession *
|
||
evolution_session_new (void)
|
||
{
|
||
return g_object_new (evolution_session_get_type (), NULL);
|
||
}
|
||
|
||
|
||
BONOBO_TYPE_FUNC_FULL (EvolutionSession,
|
||
GNOME_Evolution_Session,
|
||
PARENT_TYPE,
|
||
evolution_session)
|