aboutsummaryrefslogtreecommitdiffstats
path: root/shell/evolution-session.c
blob: c447dec36c17964295b87180ceab79f553ac2ad1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/* -*- 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)