aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/external-editor/external-editor.c
blob: 10cfdb4fd6f74c26456ca3ea8a28383e67ade232 (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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
/*
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) version 3.
 *
 * 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with the program; if not, see <http://www.gnu.org/licenses/>
 *
 *
 * Authors:
 *      Holger Macht <hmacht@suse.de>
 *      based on work by Sankar P <psankar@novell.com>
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

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

#include <mail/em-menu.h>
#include <mail/em-config.h>
#include <mail/em-composer-utils.h>
#include <mail/mail-config.h>
#include <e-util/e-error.h>
#include <e-msg-composer.h>
#include <camel/camel-mime-filter-tohtml.h>

#include <glib/gi18n-lib.h>
#include <glib-object.h>
#include <glib.h>
#include <glib/gstdio.h>
#include <gdk/gdkkeysyms.h>

#include <sys/stat.h>
#ifdef HAVE_SYS_WAIT_H
#  include <sys/wait.h>
#endif

#include <stdlib.h>
#include <string.h>

#include <gconf/gconf-client.h>

#define d(x)

#define EDITOR_GCONF_KEY_COMMAND "/apps/evolution/eplugin/external-editor/editor-command"
#define EDITOR_GCONF_KEY_IMMEDIATE "/apps/evolution/eplugin/external-editor/launch-on-key-press"

gboolean e_plugin_ui_init (GtkUIManager *manager, EMsgComposer *composer);
GtkWidget * e_plugin_lib_get_configure_widget (EPlugin *epl);
static void ee_editor_command_changed (GtkWidget *textbox);
static void ee_editor_immediate_launch_changed (GtkWidget *checkbox);
static void async_external_editor (EMsgComposer *composer);
static gboolean editor_running (void);
static gboolean key_press_cb(GtkWidget * widget, GdkEventKey * event, EMsgComposer *composer);

/* used to track when the external editor is active */
static GThread *editor_thread;

void
ee_editor_command_changed (GtkWidget *textbox)
{
    const gchar *editor;
    GConfClient *gconf;

    editor = gtk_entry_get_text (GTK_ENTRY(textbox));
    d(printf ("\n\aeditor is : [%s] \n\a", editor));

    /* gconf access for every key-press. Sucky ? */
    gconf = gconf_client_get_default ();
    gconf_client_set_string (gconf, EDITOR_GCONF_KEY_COMMAND, editor, NULL);
    g_object_unref (gconf);
}

void
ee_editor_immediate_launch_changed (GtkWidget *checkbox)
{
    gboolean immediately;
    GConfClient *gconf;

    immediately = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (checkbox));
    d(printf ("\n\aimmediate launch is : [%d] \n\a", immediately));

    gconf = gconf_client_get_default ();
    gconf_client_set_bool (gconf, EDITOR_GCONF_KEY_IMMEDIATE, immediately, NULL);
    g_object_unref (gconf);
}

GtkWidget *
e_plugin_lib_get_configure_widget (EPlugin *epl)
{
    GtkWidget *vbox, *textbox, *label, *help;
    GtkWidget *checkbox;
    GConfClient *gconf;
    gchar *editor;
    gboolean checked;

    vbox = gtk_vbox_new (FALSE, 10);
    textbox = gtk_entry_new ();
    label = gtk_label_new (_("Command to be executed to launch the editor: "));
    help = gtk_label_new (_("For Emacs use \"xemacs\"\nFor VI use \"gvim -f\""));
    gconf = gconf_client_get_default ();

    editor = gconf_client_get_string (gconf, EDITOR_GCONF_KEY_COMMAND, NULL);
    if (editor) {
        gtk_entry_set_text (GTK_ENTRY(textbox), editor);
        g_free (editor);
    }

    checkbox = gtk_check_button_new_with_label (
        _("Automatically launch when a new mail is edited"));
    checked = gconf_client_get_bool (gconf, EDITOR_GCONF_KEY_IMMEDIATE, NULL);
    if (checked)
        gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (checkbox), TRUE);
    g_object_unref (gconf);

    gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0);
    gtk_box_pack_start (GTK_BOX (vbox), textbox, FALSE, FALSE, 0);
    gtk_box_pack_start (GTK_BOX (vbox), help, FALSE, FALSE, 0);
    gtk_box_pack_start (GTK_BOX (vbox), checkbox, FALSE, FALSE, 0);

    g_signal_connect (textbox, "changed", G_CALLBACK(ee_editor_command_changed), textbox);

    g_signal_connect (checkbox, "toggled",
              G_CALLBACK(ee_editor_immediate_launch_changed), checkbox);

    gtk_widget_show_all (vbox);
    return vbox;
}

static void
enable_disable_composer (EMsgComposer *composer, gboolean enable)
{
    GtkhtmlEditor *editor;
    GtkAction *action;
    GtkActionGroup *action_group;

    g_return_if_fail (E_IS_MSG_COMPOSER (composer));

    editor = GTKHTML_EDITOR (composer);

    if (enable)
        gtkhtml_editor_run_command (editor, "editable-on");
    else
        gtkhtml_editor_run_command (editor, "editable-off");

    action = GTKHTML_EDITOR_ACTION_EDIT_MENU (composer);
    gtk_action_set_sensitive (action, enable);

    action = GTKHTML_EDITOR_ACTION_FORMAT_MENU (composer);
    gtk_action_set_sensitive (action, enable);

    action = GTKHTML_EDITOR_ACTION_INSERT_MENU (composer);
    gtk_action_set_sensitive (action, enable);

    action_group = gtkhtml_editor_get_action_group (editor, "composer");
    gtk_action_group_set_sensitive (action_group, enable);
}

static void
enable_composer (EMsgComposer *composer)
{
    enable_disable_composer (composer, TRUE);
}

static void
disable_composer (EMsgComposer *composer)
{
    enable_disable_composer (composer, FALSE);
}

/* needed because the new thread needs to call g_idle_add () */
static gboolean
update_composer_text (GArray *array)
{
    EMsgComposer *composer;
    gchar *text;

    composer = g_array_index (array, gpointer, 0);
    text = g_array_index (array, gpointer, 1);

    e_msg_composer_set_body_text (composer, text, -1);

    enable_composer (composer);

    g_free (text);

    return FALSE;
}

/* needed because the new thread needs to call g_idle_add () */
static gboolean
run_error_dialog (gchar *text)
{
    e_error_run (NULL, text, NULL);
    return FALSE;
}


void
async_external_editor (EMsgComposer *composer)
{
    gchar *filename = NULL;
    gint status = 0;
    GConfClient *gconf;
    gchar *editor_cmd_line = NULL;
    gint fd;

    fd = g_file_open_tmp (NULL, &filename, NULL);
    if (fd > 0) {
        close (fd);
        /* Push the text (if there is one) from the composer to the file */
        g_file_set_contents (filename, gtkhtml_editor_get_text_plain(
                         GTKHTML_EDITOR(composer), NULL),
                     -1, NULL);
        d(printf ("\n\aTemporary-file Name is : [%s] \n\a", filename));
    } else {
        g_warning ("Temporary file fd is null");
        g_idle_add ((GSourceFunc) run_error_dialog,
                "org.gnome.evolution.plugins.external-editor:no-temp-file");
        g_idle_add ((GSourceFunc) enable_composer, composer);
        return ;
    }

    gconf = gconf_client_get_default ();
    editor_cmd_line = gconf_client_get_string (gconf, EDITOR_GCONF_KEY_COMMAND, NULL);
    if (!editor_cmd_line) {
        if (! (editor_cmd_line = g_strdup(g_getenv ("EDITOR"))) )
            /* Make gedit the default external editor,
               if the default schemas are not installed
               and no $EDITOR is set. */
            editor_cmd_line = g_strdup("gedit");
    }
    g_object_unref (gconf);

    editor_cmd_line = g_strconcat(editor_cmd_line, " ", filename, NULL);

    if (!g_spawn_command_line_sync(editor_cmd_line, NULL, NULL, &status, NULL))
    {
        g_warning ("Unable to launch %s: ", editor_cmd_line);
        g_idle_add ((GSourceFunc) run_error_dialog,
                "org.gnome.evolution.plugins.external-editor:editor-not-launchable");
        g_idle_add ((GSourceFunc) enable_composer, composer);

        g_free (filename);
        g_free (editor_cmd_line);
        return ;
    }
    g_free (editor_cmd_line);

#ifdef HAVE_SYS_WAIT_H
    if (WEXITSTATUS (status) != 0) {
#else
    if (status) {
#endif
        d(printf ("\n\nsome problem here with external editor\n\n"));
        g_idle_add ((GSourceFunc) enable_composer, composer);
        return ;
    } else {
        gchar *buf;

        if (g_file_get_contents (filename, &buf, NULL, NULL)) {
            gchar *htmltext;
            GArray *array;

            htmltext = camel_text_to_html(buf, CAMEL_MIME_FILTER_TOHTML_PRE, 0);

            array = g_array_sized_new (TRUE, TRUE,
                           sizeof (gpointer), 2 * sizeof(gpointer));
            array = g_array_append_val (array, composer);
            array = g_array_append_val (array, htmltext);

            g_idle_add ((GSourceFunc) update_composer_text, array);

            /* We no longer need that temporary file */
            g_remove (filename);
            g_free (filename);
        }
    }
}

static void launch_editor (GtkAction *action, EMsgComposer *composer)
{
    d(printf ("\n\nexternal_editor plugin is launched \n\n"));

    if (editor_running()) {
        d(printf("not opening editor, because it's still running\n"));
        return ;
    }

    disable_composer (composer);

    editor_thread = g_thread_create ((GThreadFunc)async_external_editor, composer, FALSE, NULL);
}

static GtkActionEntry entries[] = {
    { "ExternalEditor",
      GTK_STOCK_EDIT,
      N_("Compose in External Editor"),
      "<Shift><Control>e",
      N_("Compose in External Editor"),
      G_CALLBACK (launch_editor) }
};

static gboolean
key_press_cb(GtkWidget * widget, GdkEventKey * event, EMsgComposer *composer)
{
    GConfClient *gconf;
    gboolean immediately;

    /* we don't want to start the editor on any modifier keys */
    switch (event->keyval) {
    case GDK_Alt_L:
    case GDK_Alt_R:
    case GDK_Super_L:
    case GDK_Super_R:
    case GDK_Control_L:
    case GDK_Control_R:
        return FALSE;
    default:
        break;
    }

    gconf = gconf_client_get_default ();
    immediately = gconf_client_get_bool (gconf, EDITOR_GCONF_KEY_IMMEDIATE, NULL);
    g_object_unref (gconf);
    if (!immediately)
        return FALSE;

    launch_editor (NULL, composer);

    return TRUE;
}

static void
editor_running_thread_func (GThread *thread, gpointer running)
{
    if (thread == editor_thread)
        *(gboolean*)running = TRUE;
}

/* Racy? */
static gboolean
editor_running (void)
{
    gboolean running = FALSE;

    g_thread_foreach ((GFunc)editor_running_thread_func, &running);

    return running;
}

static gboolean
delete_cb (GtkWidget *widget, EMsgComposer *composer)
{
    if (editor_running()) {
        e_error_run (NULL, "org.gnome.evolution.plugins.external-editor:editor-still-running", NULL);
        return TRUE;
    }

    return FALSE;
}

gboolean
e_plugin_ui_init (GtkUIManager *manager, EMsgComposer *composer)
{
    GtkhtmlEditor *editor;
    GtkHTML *html;

    editor = GTKHTML_EDITOR (composer);

    /* Add actions to the "composer" action group. */
    gtk_action_group_add_actions (
        gtkhtml_editor_get_action_group (editor, "composer"),
        entries, G_N_ELEMENTS (entries), composer);

    html = gtkhtml_editor_get_html (editor);

    g_signal_connect (G_OBJECT(html), "key_press_event",
              G_CALLBACK(key_press_cb), composer);

    g_signal_connect (G_OBJECT(composer), "delete-event",
              G_CALLBACK(delete_cb), composer);

    return TRUE;
}