aboutsummaryrefslogtreecommitdiffstats
path: root/composer/listener.c
blob: c3cc8f4e76b5ab3dd2ea415fc0fb2db953fce208 (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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*  This file is part of gnome-spell bonobo component

    Copyright (C) 2000 Ximian, Inc.
    Authors:           Radek Doulik <rodo@ximian.com>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.

    This library 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
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.
*/

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <bonobo/bonobo-arg.h>
#include <bonobo/bonobo-object.h>

#include "listener.h"

static BonoboObjectClass *listener_parent_class;
static POA_GNOME_GtkHTML_Editor_Listener__vepv listener_vepv;

inline static EditorListener *
listener_from_servant (PortableServer_Servant servant)
{
    return EDITOR_LISTENER (bonobo_object_from_servant (servant));
}

static CORBA_any *
get_any_null ()
{
    CORBA_any *rv;

    rv = CORBA_any__alloc ();
    rv->_type = TC_null;

    return rv;
}

static gchar *
resolve_image_url (EditorListener *l, gchar *url)
{
    gchar *cid = NULL;

    printf ("resolve_image_url %s\n", url);

    if (!strncmp (url, "file:", 5)) {
        gchar *id;

        id = (gchar *) g_hash_table_lookup (l->composer->inline_images, url + 5);
        if (!id) {
            id = header_msgid_generate ();
            g_hash_table_insert (l->composer->inline_images, g_strdup (url + 5), id);
        }
        cid = g_strconcat ("cid:", id, NULL);
        printf ("resolved to %s\n", cid);
    }

    return cid;
}

static void
reply_indent (EditorListener *l, CORBA_Environment * ev)
{
    if (!GNOME_GtkHTML_Editor_Engine_isParagraphEmpty (l->composer->editor_engine, ev)) {
        if (GNOME_GtkHTML_Editor_Engine_isPreviousParagraphEmpty (l->composer->editor_engine, ev))
            GNOME_GtkHTML_Editor_Engine_runCommand (l->composer->editor_engine, "cursor-backward", ev);
        else {
            GNOME_GtkHTML_Editor_Engine_runCommand (l->composer->editor_engine, "insert-paragraph", ev);
            return;
        }
            
    }

    GNOME_GtkHTML_Editor_Engine_runCommand (l->composer->editor_engine, "style-normal", ev);
    GNOME_GtkHTML_Editor_Engine_runCommand (l->composer->editor_engine, "indent-zero", ev);
    GNOME_GtkHTML_Editor_Engine_runCommand (l->composer->editor_engine, "cursor-position-save", ev);
    GNOME_GtkHTML_Editor_Engine_runCommand (l->composer->editor_engine, "select-paragraph-extended", ev);
    GNOME_GtkHTML_Editor_Engine_runCommand (l->composer->editor_engine, "text-default-color", ev);
    GNOME_GtkHTML_Editor_Engine_runCommand (l->composer->editor_engine, "italic-off", ev);
    GNOME_GtkHTML_Editor_Engine_runCommand (l->composer->editor_engine, "disable-selection", ev);
    GNOME_GtkHTML_Editor_Engine_runCommand (l->composer->editor_engine, "cursor-position-restore", ev);
}

static void
clear_signature (GNOME_GtkHTML_Editor_Engine e, CORBA_Environment * ev)
{
    if (GNOME_GtkHTML_Editor_Engine_isParagraphEmpty (e, ev))
        GNOME_GtkHTML_Editor_Engine_setParagraphData (e, "signature", "0", ev);
    else if (GNOME_GtkHTML_Editor_Engine_isPreviousParagraphEmpty (e, ev)
         && GNOME_GtkHTML_Editor_Engine_runCommand (e, "cursor-backward", ev)) {
        GNOME_GtkHTML_Editor_Engine_setParagraphData (e, "signature", "0", ev);
        GNOME_GtkHTML_Editor_Engine_runCommand (e, "cursor-forward", ev);
    }
}

static CORBA_any *
impl_event (PortableServer_Servant _servant,
        const CORBA_char * name, const CORBA_any * arg,
        CORBA_Environment * ev)
{
    EditorListener *l = listener_from_servant (_servant);
    CORBA_any  *rv = NULL;

    /* printf ("impl_event\n"); */

    if (!strcmp (name, "command")) {
        if (!l->composer->in_signature_insert) {
            CORBA_char *orig, *signature;
            /* FIXME check for insert-paragraph command */
            orig = GNOME_GtkHTML_Editor_Engine_getParagraphData (l->composer->editor_engine, "orig", ev);
            if (ev->_major == CORBA_NO_EXCEPTION) {
                if (orig && *orig == '1')
                    reply_indent (l, ev);
                GNOME_GtkHTML_Editor_Engine_setParagraphData (l->composer->editor_engine, "orig", "0", ev);
            }
            signature = GNOME_GtkHTML_Editor_Engine_getParagraphData (l->composer->editor_engine, "signature", ev);
            if (ev->_major == CORBA_NO_EXCEPTION) {
                if (signature && *signature == '1')
                    clear_signature (l->composer->editor_engine, ev);
            }
        }
    } else if (!strcmp (name, "image_url")) {
        gchar *url;

        if ((url = resolve_image_url (l, BONOBO_ARG_GET_STRING (arg)))) {
            rv = bonobo_arg_new (TC_string);
            BONOBO_ARG_SET_STRING (rv, url);
            /* printf ("new url: %s\n", url); */
            g_free (url);
        }
    }

    return rv ? rv : get_any_null ();
}

POA_GNOME_GtkHTML_Editor_Listener__epv *
listener_get_epv (void)
{
    POA_GNOME_GtkHTML_Editor_Listener__epv *epv;

    epv = g_new0 (POA_GNOME_GtkHTML_Editor_Listener__epv, 1);

    epv->event = impl_event;

    return epv;
}

static void
init_listener_corba_class (void)
{
    listener_vepv.Bonobo_Unknown_epv            = bonobo_object_get_epv ();
    listener_vepv.GNOME_GtkHTML_Editor_Listener_epv = listener_get_epv ();
}

static void
listener_class_init (EditorListenerClass *klass)
{
    listener_parent_class = gtk_type_class (bonobo_object_get_type ());

    init_listener_corba_class ();
}

GtkType
listener_get_type (void)
{
    static GtkType type = 0;

    if (!type){
        GtkTypeInfo info = {
            "EditorListener",
            sizeof (EditorListener),
            sizeof (EditorListenerClass),
            (GtkClassInitFunc) listener_class_init,
            (GtkObjectInitFunc) NULL,
            NULL, /* reserved 1 */
            NULL, /* reserved 2 */
            (GtkClassInitFunc) NULL
        };

        type = gtk_type_unique (bonobo_object_get_type (), &info);
    }

    return type;
}

EditorListener *
listener_construct (EditorListener *listener, GNOME_GtkHTML_Editor_Listener corba_listener)
{
    g_return_val_if_fail (listener != NULL, NULL);
    g_return_val_if_fail (IS_EDITOR_LISTENER (listener), NULL);
    g_return_val_if_fail (corba_listener != CORBA_OBJECT_NIL, NULL);

    if (!bonobo_object_construct (BONOBO_OBJECT (listener), (CORBA_Object) corba_listener))
        return NULL;

    return listener;
}

static GNOME_GtkHTML_Editor_Listener
create_listener (BonoboObject *listener)
{
    POA_GNOME_GtkHTML_Editor_Listener *servant;
    CORBA_Environment ev;

    servant = (POA_GNOME_GtkHTML_Editor_Listener *) g_new0 (BonoboObjectServant, 1);
    servant->vepv = &listener_vepv;

    CORBA_exception_init (&ev);
    POA_GNOME_GtkHTML_Editor_Listener__init ((PortableServer_Servant) servant, &ev);
    ORBIT_OBJECT_KEY(servant->_private)->object = NULL;

    if (ev._major != CORBA_NO_EXCEPTION){
        g_free (servant);
        CORBA_exception_free (&ev);
        return CORBA_OBJECT_NIL;
    }

    CORBA_exception_free (&ev);

    return (GNOME_GtkHTML_Editor_Listener) bonobo_object_activate_servant (listener, servant);
}

EditorListener *
listener_new (EMsgComposer *composer)
{
    EditorListener *listener;
    GNOME_GtkHTML_Editor_Listener corba_listener;

    listener = gtk_type_new (EDITOR_LISTENER_TYPE);
    listener->composer = composer;

    corba_listener = create_listener (BONOBO_OBJECT (listener));

    if (corba_listener == CORBA_OBJECT_NIL) {
        bonobo_object_unref (BONOBO_OBJECT (listener));
        return NULL;
    }
    
    return listener_construct (listener, corba_listener);
}