aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-cal-component-memo-preview.c
blob: 4608967cfd069fc30d7aad5f0935bb9b9e5a3d72 (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
396
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* e-tasks.c
 *
 * Copyright (C) 2001-2003  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.
 *
 * Authors: Federico Mena Quintero <federico@ximian.com>
 *      Damon Chaplin <damon@ximian.com>
 *          Rodrigo Moya <rodrigo@ximian.com>
 *          Nathan Owens <pianocomp81@yahoo.com>
 */

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

#include <string.h>
#include <gnome.h>
#include <gtk/gtk.h>
#include <glib/gi18n.h>
#include <libgnomevfs/gnome-vfs-ops.h>
#include <libecal/e-cal-time-util.h>
#include <libedataserver/e-categories.h>
#include <gtkhtml/gtkhtml.h>
#include <gtkhtml/gtkhtml-stream.h>
#include <libedataserver/e-time-utils.h>
#include <e-util/e-categories-config.h>
#include "calendar-config.h"
#include "e-cal-component-memo-preview.h"

struct _ECalComponentMemoPreviewPrivate {
    GtkWidget *html;

    icaltimezone *zone;
};

G_DEFINE_TYPE (ECalComponentMemoPreview, e_cal_component_memo_preview, GTK_TYPE_TABLE)


static void
on_link_clicked (GtkHTML *html, const char *url, gpointer data)
{
        GError *err = NULL;

        gnome_url_show (url, &err);

    if (err) {
        g_warning ("gnome_url_show: %s", err->message);
                g_error_free (err);
        }
}

static void
on_url_cb (GtkHTML *html, const char *url, gpointer data)
{
#if 0
    char *msg;
    ECalComponentMemoPreview *preview = data;

    if (url && *url) {
        msg = g_strdup_printf (_("Click to open %s"), url);
        e_calendar_table_set_status_message (e_tasks_get_calendar_table (tasks), msg);
        g_free (msg);
    } else
        e_calendar_table_set_status_message (e_tasks_get_calendar_table (tasks), NULL);
#endif
}

/* Callback used when the user selects a URL in the HTML widget */
static void
url_requested_cb (GtkHTML *html, const char *url, GtkHTMLStream *stream, gpointer data)
{
    if (!strncmp ("file:///", url, strlen ("file:///"))) {
        GnomeVFSHandle *handle;
        GnomeVFSResult result;
        char buffer[4096];

        if (gnome_vfs_open (&handle, url, GNOME_VFS_OPEN_READ) == GNOME_VFS_OK) {
            do {
                GnomeVFSFileSize bread;

                result = gnome_vfs_read (handle, buffer, sizeof (buffer), &bread);
                if (result == GNOME_VFS_OK)
                    gtk_html_stream_write (stream, buffer, bread);
            } while (result == GNOME_VFS_OK);

            gnome_vfs_close (handle);
        }
    }
}

/* Converts a time_t to a string, relative to the specified timezone */
static char *
timet_to_str_with_zone (ECalComponentDateTime *dt, ECal *ecal, icaltimezone *default_zone)
{
    struct icaltimetype itt;
    icaltimezone *zone;
        struct tm tm;
        char buf[256];                                                                                              

    if (dt->tzid) {
        /* If we can't find the zone, we'll guess its "local" */
        if (!e_cal_get_timezone (ecal, dt->tzid, &zone, NULL))
            zone = NULL;
    } else if (dt->value->is_utc) {
        zone = icaltimezone_get_utc_timezone ();
    } else {
        zone = NULL;
    }
    
    
    itt = *dt->value;
    if (zone)
        icaltimezone_convert_time (&itt, zone, default_zone);
        tm = icaltimetype_to_tm (&itt);
                                                                                              
        e_time_format_date_and_time (&tm, calendar_config_get_24_hour_format (),
                                     FALSE, FALSE, buf, sizeof (buf));

    return g_locale_to_utf8 (buf, -1, NULL, NULL, NULL);
}

static void
write_html (GtkHTMLStream *stream, ECal *ecal, ECalComponent *comp, icaltimezone *default_zone)
{
    ECalComponentText text;
    ECalComponentDateTime dt;
    gchar *str;
    GSList *l;
    gboolean one_added = FALSE;

    g_return_if_fail (E_IS_CAL_COMPONENT (comp));

    /* write document header */
    e_cal_component_get_summary (comp, &text);

    if (text.value)
        gtk_html_stream_printf (stream,
                    "<HTML><BODY><H1>%s</H1>",
                    text.value);
    else
        gtk_html_stream_printf (stream,
                    "<HTML><BODY><H1><I>%s</I></H1>",
                    _("Untitled"));

    /* write icons for the categories */
    e_cal_component_get_categories_list (comp, &l);
    if (l) {
        GSList *node;
        GString *string = g_string_new (NULL);
        
        
        gtk_html_stream_printf(stream, "<H3>Categories: ");

        for (node = l; node != NULL; node = node->next) {
            const char *icon_file;

            icon_file = e_categories_get_icon_file_for ((const char *) node->data);
            if (icon_file && g_file_test(icon_file, G_FILE_TEST_EXISTS)) {
                gchar *icon_file_uri = g_filename_to_uri (icon_file, NULL, NULL);
                gtk_html_stream_printf (stream, "<IMG ALT=\"%s\" SRC=\"%s\">",
                            (const char *) node->data, icon_file_uri);
                g_free (icon_file_uri);
                one_added = TRUE;
            }
            else{
                if(one_added == FALSE){
                    g_string_append_printf (string, "%s", (const char *) node->data);
                    one_added = TRUE;
                }
                else{
                    g_string_append_printf (string, ", %s", (const char *) node->data);
                }
            }
        }
        
        gtk_html_stream_printf(stream, "%s", string->str);

        g_string_free (string, TRUE);
    
        gtk_html_stream_printf(stream, "</H3>");

        e_cal_component_free_categories_list (l);
    }

    /* Start table */
    gtk_html_stream_printf (stream, "<TABLE BORDER=\"0\" WIDTH=\"80%%\">"
                "<TR><TD VALIGN=\"TOP\" ALIGN=\"RIGHT\" WIDTH=\"15%%\"></TD></TR>");    

    /* write start date */
    e_cal_component_get_dtstart (comp, &dt);
    if (dt.value != NULL) {
        str = timet_to_str_with_zone (&dt, ecal, default_zone);
        gtk_html_stream_printf (stream, "<TR><TD VALIGN=\"TOP\" ALIGN=\"RIGHT\"><B>%s</B></TD><TD>%s</TD></TR>",
                    _("Start Date:"), str);

        e_cal_component_free_datetime (&dt);
        g_free (str);
    }

    /* write description and URL */
    gtk_html_stream_printf (stream, "<TR><TD COLSPAN=\"2\"><HR></TD></TR>");

    e_cal_component_get_description_list (comp, &l);
    if (l) {
        GSList *node;

        gtk_html_stream_printf (stream, "<TR><TD VALIGN=\"TOP\" ALIGN=\"RIGHT\"><B>%s</B></TD>", _("Description:"));

        gtk_html_stream_printf (stream, "<TD>");

        for (node = l; node != NULL; node = node->next) {
            gint i, j;
            GString *string = g_string_new (NULL);

            text = * (ECalComponentText *) node->data;
            for (i = 0, j=0; i < strlen (text.value ? text.value : 0); i++, j++) {
                if (text.value[i] == '\n'){
                    string = g_string_append_len (string, "<BR>", 4);
                }
                else if (text.value[i] == '<')
                    string = g_string_append_len (string, "&lt;", 4);
                else if (text.value[i] == '>')
                    string = g_string_append_len (string, "&gt;", 4);
                else
                    string = g_string_append_c (string, text.value[i]);
            }

            gtk_html_stream_printf (stream,"%s",  string->str);
            g_string_free (string, TRUE);
        }

        gtk_html_stream_printf (stream, "</TD></TR>");

        e_cal_component_free_text_list (l);
    }

    /* URL */
    e_cal_component_get_url (comp, (const char **) &str);
    if (str) {
        gtk_html_stream_printf (stream, "<TR><TD VALIGN=\"TOP\" ALIGN=\"RIGHT\"><B>%s</B></TD>", _("Web Page:"));
        gtk_html_stream_printf (stream, "<TD><A HREF=\"%s\">%s</A></TD></TR>", str, str);
    }
    
    gtk_html_stream_printf (stream, "</TABLE>");

    /* close document */
    gtk_html_stream_printf (stream, "</BODY></HTML>");
}

static void
e_cal_component_memo_preview_init (ECalComponentMemoPreview *preview)
{
    ECalComponentMemoPreviewPrivate *priv;
    GtkWidget *scroll;
    
    priv = g_new0 (ECalComponentMemoPreviewPrivate, 1);
    preview->priv = priv;

    priv->html = gtk_html_new ();
    gtk_html_set_default_content_type (GTK_HTML (priv->html), "charset=utf-8");
    gtk_html_load_empty (GTK_HTML (priv->html));

    g_signal_connect (G_OBJECT (priv->html), "url_requested",
              G_CALLBACK (url_requested_cb), NULL);
    g_signal_connect (G_OBJECT (priv->html), "link_clicked",
              G_CALLBACK (on_link_clicked), preview);
    g_signal_connect (G_OBJECT (priv->html), "on_url",
              G_CALLBACK (on_url_cb), preview);

    scroll = gtk_scrolled_window_new (NULL, NULL);
    gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scroll),
                    GTK_POLICY_AUTOMATIC,
                    GTK_POLICY_AUTOMATIC);
    gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scroll), GTK_SHADOW_IN);

    gtk_container_add (GTK_CONTAINER (scroll), priv->html);
    gtk_container_add (GTK_CONTAINER (preview), scroll);
    gtk_widget_show_all (scroll);
    
    priv->zone = icaltimezone_get_utc_timezone ();
}

static void
e_cal_component_memo_preview_destroy (GtkObject *object)
{
    ECalComponentMemoPreview *preview;
    ECalComponentMemoPreviewPrivate *priv;

    g_return_if_fail (object != NULL);
    g_return_if_fail (E_IS_CAL_COMPONENT_MEMO_PREVIEW (object));

    preview = E_CAL_COMPONENT_MEMO_PREVIEW (object);
    priv = preview->priv;

    if (priv) {

        g_free (priv);
        preview->priv = NULL;
    }

    if (GTK_OBJECT_CLASS (e_cal_component_memo_preview_parent_class)->destroy)
        (* GTK_OBJECT_CLASS (e_cal_component_memo_preview_parent_class)->destroy) (object);
}

static void
e_cal_component_memo_preview_class_init (ECalComponentMemoPreviewClass *klass)
{
    GtkObjectClass *object_class;
    
    object_class = (GtkObjectClass *) klass;
    
    object_class->destroy = e_cal_component_memo_preview_destroy;
}

GtkWidget *
e_cal_component_memo_preview_new (void)
{
    ECalComponentMemoPreview *preview;

    preview = g_object_new (e_cal_component_memo_preview_get_type (), NULL);

    return GTK_WIDGET (preview);
}

icaltimezone *
e_cal_component_memo_preview_get_default_timezone (ECalComponentMemoPreview *preview)
{
    ECalComponentMemoPreviewPrivate *priv;
    
    g_return_val_if_fail (preview != NULL, NULL);
    g_return_val_if_fail (E_IS_CAL_COMPONENT_MEMO_PREVIEW (preview), NULL);

    priv = preview->priv;

    return priv->zone;
}

void
e_cal_component_memo_preview_set_default_timezone (ECalComponentMemoPreview *preview, icaltimezone *zone)
{
    ECalComponentMemoPreviewPrivate *priv;
    
    g_return_if_fail (preview != NULL);
    g_return_if_fail (E_IS_CAL_COMPONENT_MEMO_PREVIEW (preview));
    g_return_if_fail (zone != NULL);

    priv = preview->priv;
    
    priv->zone = zone;
}

void
e_cal_component_memo_preview_display (ECalComponentMemoPreview *preview, ECal *ecal, ECalComponent *comp)
{
    ECalComponentMemoPreviewPrivate *priv;
    GtkHTMLStream *stream;

    g_return_if_fail (preview != NULL);
    g_return_if_fail (E_IS_CAL_COMPONENT_MEMO_PREVIEW (preview));
    g_return_if_fail (comp != NULL);
    g_return_if_fail (E_IS_CAL_COMPONENT (comp));

    priv = preview->priv;
    
    stream = gtk_html_begin (GTK_HTML (priv->html));
    write_html (stream, ecal, comp, priv->zone);
    gtk_html_stream_close (stream, GTK_HTML_STREAM_OK);
}

void
e_cal_component_memo_preview_clear (ECalComponentMemoPreview *preview)
{
    ECalComponentMemoPreviewPrivate *priv;

    g_return_if_fail (preview != NULL);
    g_return_if_fail (E_IS_CAL_COMPONENT_MEMO_PREVIEW (preview));
    
    priv = preview->priv;
    
    gtk_html_load_empty (GTK_HTML (priv->html));
}