d3d5e563d5f5268d591076baa05736bdf712663a
[pspp] / src / ui / gui / psppire-syntax-window.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2008, 2009, 2010  Free Software Foundation
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #include <config.h>
18
19 #include <gtk/gtksignal.h>
20 #include <gtk/gtkbox.h>
21 #include "executor.h"
22 #include "helper.h"
23
24 #include <libpspp/message.h>
25 #include <stdlib.h>
26
27 #include "psppire.h"
28 #include "psppire-syntax-window.h"
29
30 #include "psppire-data-window.h"
31 #include "psppire-window-register.h"
32 #include "psppire.h"
33 #include "help-menu.h"
34 #include "psppire-syntax-window.h"
35 #include "syntax-editor-source.h"
36 #include <language/lexer/lexer.h>
37
38 #include "xalloc.h"
39
40 #include <gettext.h>
41 #define _(msgid) gettext (msgid)
42 #define N_(msgid) msgid
43
44 static void psppire_syntax_window_base_finalize (PsppireSyntaxWindowClass *, gpointer);
45 static void psppire_syntax_window_base_init     (PsppireSyntaxWindowClass *class);
46 static void psppire_syntax_window_class_init    (PsppireSyntaxWindowClass *class);
47 static void psppire_syntax_window_init          (PsppireSyntaxWindow      *syntax_editor);
48
49
50 static void psppire_syntax_window_iface_init (PsppireWindowIface *iface);
51
52
53 GType
54 psppire_syntax_window_get_type (void)
55 {
56   static GType psppire_syntax_window_type = 0;
57
58   if (!psppire_syntax_window_type)
59     {
60       static const GTypeInfo psppire_syntax_window_info =
61       {
62         sizeof (PsppireSyntaxWindowClass),
63         (GBaseInitFunc) psppire_syntax_window_base_init,
64         (GBaseFinalizeFunc) psppire_syntax_window_base_finalize,
65         (GClassInitFunc)psppire_syntax_window_class_init,
66         (GClassFinalizeFunc) NULL,
67         NULL,
68         sizeof (PsppireSyntaxWindow),
69         0,
70         (GInstanceInitFunc) psppire_syntax_window_init,
71       };
72
73       static const GInterfaceInfo window_interface_info =
74         {
75           (GInterfaceInitFunc) psppire_syntax_window_iface_init,
76           NULL,
77           NULL
78         };
79
80       psppire_syntax_window_type =
81         g_type_register_static (PSPPIRE_TYPE_WINDOW, "PsppireSyntaxWindow",
82                                 &psppire_syntax_window_info, 0);
83
84       g_type_add_interface_static (psppire_syntax_window_type,
85                                    PSPPIRE_TYPE_WINDOW_MODEL,
86                                    &window_interface_info);
87     }
88
89   return psppire_syntax_window_type;
90 }
91
92 static GObjectClass *parent_class ;
93
94 static void
95 psppire_syntax_window_finalize (GObject *object)
96 {
97   if (G_OBJECT_CLASS (parent_class)->finalize)
98     (*G_OBJECT_CLASS (parent_class)->finalize) (object);
99 }
100
101
102 static void
103 psppire_syntax_window_class_init (PsppireSyntaxWindowClass *class)
104 {
105   parent_class = g_type_class_peek_parent (class);
106 }
107
108
109 static void
110 psppire_syntax_window_base_init (PsppireSyntaxWindowClass *class)
111 {
112   GObjectClass *object_class = G_OBJECT_CLASS (class);
113
114   object_class->finalize = psppire_syntax_window_finalize;
115 }
116
117
118
119 static void
120 psppire_syntax_window_base_finalize (PsppireSyntaxWindowClass *class,
121                                      gpointer class_data)
122 {
123 }
124
125
126 static void
127 editor_execute_syntax (const PsppireSyntaxWindow *sw, GtkTextIter start,
128                        GtkTextIter stop)
129 {
130   PsppireWindow *win = PSPPIRE_WINDOW (sw);
131   const gchar *name = psppire_window_get_filename (win);
132   execute_syntax (create_syntax_editor_source (sw->buffer, start, stop, name));
133 }
134
135
136 \f
137
138 /* Delete the currently selected text */
139 static void
140 on_edit_delete (PsppireSyntaxWindow *sw)
141 {
142   GtkTextIter begin, end;
143   
144   if ( gtk_text_buffer_get_selection_bounds (sw->buffer, &begin, &end) )
145     gtk_text_buffer_delete (sw->buffer, &begin, &end);
146 }
147
148
149
150
151 /* The syntax editor's clipboard deals only with text */
152 enum {
153   SELECT_FMT_NULL,
154   SELECT_FMT_TEXT,
155 };
156
157
158 static void
159 selection_changed (PsppireSyntaxWindow *sw)
160 {
161   gboolean sel = gtk_text_buffer_get_has_selection (sw->buffer);
162
163   gtk_action_set_sensitive (sw->edit_copy, sel);
164   gtk_action_set_sensitive (sw->edit_cut, sel);
165   gtk_action_set_sensitive (sw->edit_delete, sel);
166 }
167
168 /* The callback which runs when something request clipboard data */
169 static void
170 clipboard_get_cb (GtkClipboard     *clipboard,
171                   GtkSelectionData *selection_data,
172                   guint             info,
173                   gpointer          data)
174 {
175   PsppireSyntaxWindow *sw = data;
176   g_assert (info == SELECT_FMT_TEXT);
177
178   gtk_selection_data_set (selection_data, selection_data->target,
179                           8,
180                           (const guchar *) sw->cliptext, strlen (sw->cliptext));
181
182 }
183
184 static void
185 clipboard_clear_cb (GtkClipboard *clipboard,
186                     gpointer data)
187 {
188   PsppireSyntaxWindow *sw = data;
189   g_free (sw->cliptext);
190   sw->cliptext = NULL;
191 }
192
193
194 static const GtkTargetEntry targets[] = {
195   { "UTF8_STRING",   0, SELECT_FMT_TEXT },
196   { "STRING",        0, SELECT_FMT_TEXT },
197   { "TEXT",          0, SELECT_FMT_TEXT },
198   { "COMPOUND_TEXT", 0, SELECT_FMT_TEXT },
199   { "text/plain;charset=utf-8", 0, SELECT_FMT_TEXT },
200   { "text/plain",    0, SELECT_FMT_TEXT },
201 };
202
203
204 /*
205   Store a clip containing the currently selected text.
206   Returns true iff something was set.
207   As a side effect, begin and end will be set to indicate
208   the limits of the selected text.
209 */
210 static gboolean
211 set_clip (PsppireSyntaxWindow *sw, GtkTextIter *begin, GtkTextIter *end)
212 {
213   GtkClipboard *clipboard ;
214
215   if ( ! gtk_text_buffer_get_selection_bounds (sw->buffer, begin, end) )
216     return FALSE;
217
218   g_free (sw->cliptext);
219   sw->cliptext = gtk_text_buffer_get_text  (sw->buffer, begin, end, FALSE);
220
221   clipboard =
222     gtk_widget_get_clipboard (GTK_WIDGET (sw), GDK_SELECTION_CLIPBOARD);
223
224   if (!gtk_clipboard_set_with_owner (clipboard, targets,
225                                      G_N_ELEMENTS (targets),
226                                      clipboard_get_cb, clipboard_clear_cb,
227                                      G_OBJECT (sw)))
228     clipboard_clear_cb (clipboard, sw);
229
230   return TRUE;
231 }
232
233 static void
234 on_edit_cut (PsppireSyntaxWindow *sw)
235 {
236   GtkTextIter begin, end;
237   
238   if ( set_clip (sw, &begin, &end))
239     gtk_text_buffer_delete (sw->buffer, &begin, &end);
240 }
241
242 static void
243 on_edit_copy (PsppireSyntaxWindow *sw)
244 {
245   GtkTextIter begin, end;
246
247   set_clip (sw, &begin, &end);
248 }
249
250
251 /* A callback for when the clipboard contents have been received */
252 static void
253 contents_received_callback (GtkClipboard *clipboard,
254                             GtkSelectionData *sd,
255                             gpointer data)
256 {
257   gchar *c;
258   PsppireSyntaxWindow *syntax_window = data;
259
260   if ( sd->length < 0 )
261     return;
262
263   if ( sd->type != gdk_atom_intern ("UTF8_STRING", FALSE))
264     return;
265
266   c = (gchar *) sd->data;
267
268   gtk_text_buffer_insert_at_cursor (syntax_window->buffer,
269                                     (gchar *) sd->data,
270                                     sd->length);
271
272 }
273
274 static void
275 on_edit_paste (PsppireSyntaxWindow *sw)
276 {
277   GdkDisplay *display = gtk_widget_get_display (GTK_WIDGET (sw));
278   GtkClipboard *clipboard =
279     gtk_clipboard_get_for_display (display, GDK_SELECTION_CLIPBOARD);
280
281   gtk_clipboard_request_contents (clipboard,
282                                   gdk_atom_intern ("UTF8_STRING", TRUE),
283                                   contents_received_callback,
284                                   sw);
285 }
286
287 static void
288 on_owner_change (GtkClipboard *clip, GdkEventOwnerChange *event, gpointer data)
289 {
290   gint i;
291   gboolean compatible_target = FALSE;
292   PsppireSyntaxWindow *sw = PSPPIRE_SYNTAX_WINDOW (data);
293
294   for (i = 0 ; i < sizeof (targets) / sizeof (targets[0]) ; ++i)
295     {
296       GdkAtom atom = gdk_atom_intern (targets[i].target, TRUE);
297       if ( gtk_clipboard_wait_is_target_available (clip, atom))
298         {
299           compatible_target = TRUE;
300           break;
301         }
302     }
303
304   gtk_action_set_sensitive (sw->edit_paste, compatible_target);
305 }
306
307
308 \f
309
310 /* Parse and execute all the text in the buffer */
311 static void
312 on_run_all (GtkMenuItem *menuitem, gpointer user_data)
313 {
314   GtkTextIter begin, end;
315   PsppireSyntaxWindow *se = PSPPIRE_SYNTAX_WINDOW (user_data);
316
317   gtk_text_buffer_get_iter_at_offset (se->buffer, &begin, 0);
318   gtk_text_buffer_get_iter_at_offset (se->buffer, &end, -1);
319
320   editor_execute_syntax (se, begin, end);
321 }
322
323 /* Parse and execute the currently selected text */
324 static void
325 on_run_selection (GtkMenuItem *menuitem, gpointer user_data)
326 {
327   GtkTextIter begin, end;
328   PsppireSyntaxWindow *se = PSPPIRE_SYNTAX_WINDOW (user_data);
329
330   if ( gtk_text_buffer_get_selection_bounds (se->buffer, &begin, &end) )
331     editor_execute_syntax (se, begin, end);
332 }
333
334
335 /* Parse and execute the from the current line, to the end of the
336    buffer */
337 static void
338 on_run_to_end (GtkMenuItem *menuitem, gpointer user_data)
339 {
340   GtkTextIter begin, end;
341   GtkTextIter here;
342   gint line;
343
344   PsppireSyntaxWindow *se = PSPPIRE_SYNTAX_WINDOW (user_data);
345
346   /* Get the current line */
347   gtk_text_buffer_get_iter_at_mark (se->buffer,
348                                     &here,
349                                     gtk_text_buffer_get_insert (se->buffer)
350                                     );
351
352   line = gtk_text_iter_get_line (&here) ;
353
354   /* Now set begin and end to the start of this line, and end of buffer
355      respectively */
356   gtk_text_buffer_get_iter_at_line (se->buffer, &begin, line);
357   gtk_text_buffer_get_iter_at_line (se->buffer, &end, -1);
358
359   editor_execute_syntax (se, begin, end);
360 }
361
362
363
364 /* Parse and execute the current line */
365 static void
366 on_run_current_line (GtkMenuItem *menuitem, gpointer user_data)
367 {
368   GtkTextIter begin, end;
369   GtkTextIter here;
370   gint line;
371
372   PsppireSyntaxWindow *se = PSPPIRE_SYNTAX_WINDOW (user_data);
373
374   /* Get the current line */
375   gtk_text_buffer_get_iter_at_mark (se->buffer,
376                                     &here,
377                                     gtk_text_buffer_get_insert (se->buffer)
378                                     );
379
380   line = gtk_text_iter_get_line (&here) ;
381
382   /* Now set begin and end to the start of this line, and start of
383      following line respectively */
384   gtk_text_buffer_get_iter_at_line (se->buffer, &begin, line);
385   gtk_text_buffer_get_iter_at_line (se->buffer, &end, line + 1);
386
387   editor_execute_syntax (se, begin, end);
388 }
389
390
391
392 /* Append ".sps" to FILENAME if necessary.
393    The returned result must be freed when no longer required.
394  */
395 static gchar *
396 append_suffix (const gchar *filename)
397 {
398   if ( ! g_str_has_suffix (filename, ".sps" ) &&
399        ! g_str_has_suffix (filename, ".SPS" ) )
400     {
401       return g_strdup_printf ("%s.sps", filename);
402     }
403
404   return xstrdup (filename);
405 }
406
407 /*
408   Save BUFFER to the file called FILENAME.
409   FILENAME must be encoded in Glib filename encoding.
410   If successful, clears the buffer's modified flag.
411 */
412 static gboolean
413 save_editor_to_file (PsppireSyntaxWindow *se,
414                      const gchar *filename,
415                      GError **err)
416 {
417   GtkTextBuffer *buffer = se->buffer;
418   gboolean result ;
419   GtkTextIter start, stop;
420   gchar *text;
421
422   gchar *suffixedname;
423   g_assert (filename);
424
425   suffixedname = append_suffix (filename);
426
427   gtk_text_buffer_get_iter_at_line (buffer, &start, 0);
428   gtk_text_buffer_get_iter_at_offset (buffer, &stop, -1);
429
430   text = gtk_text_buffer_get_text (buffer, &start, &stop, FALSE);
431
432   result =  g_file_set_contents (suffixedname, text, -1, err);
433
434   g_free (suffixedname);
435
436   if ( result )
437     {
438       char *fn = g_filename_display_name (filename);
439       gchar *msg = g_strdup_printf (_("Saved file \"%s\""), fn);
440       g_free (fn);
441       gtk_statusbar_push (GTK_STATUSBAR (se->sb), se->text_context, msg);
442       gtk_text_buffer_set_modified (buffer, FALSE);
443       g_free (msg);
444     }
445
446   return result;
447 }
448
449
450 /* Callback for the File->SaveAs menuitem */
451 static void
452 syntax_save_as (PsppireWindow *se)
453 {
454   GtkFileFilter *filter;
455   gint response;
456
457   GtkWidget *dialog =
458     gtk_file_chooser_dialog_new (_("Save Syntax"),
459                                  GTK_WINDOW (se),
460                                  GTK_FILE_CHOOSER_ACTION_SAVE,
461                                  GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
462                                  GTK_STOCK_SAVE,   GTK_RESPONSE_ACCEPT,
463                                  NULL);
464
465   filter = gtk_file_filter_new ();
466   gtk_file_filter_set_name (filter, _("Syntax Files (*.sps) "));
467   gtk_file_filter_add_pattern (filter, "*.sps");
468   gtk_file_filter_add_pattern (filter, "*.SPS");
469   gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (dialog), filter);
470
471   filter = gtk_file_filter_new ();
472   gtk_file_filter_set_name (filter, _("All Files"));
473   gtk_file_filter_add_pattern (filter, "*");
474   gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (dialog), filter);
475
476   gtk_file_chooser_set_do_overwrite_confirmation (GTK_FILE_CHOOSER (dialog),
477                                                   TRUE);
478   response = gtk_dialog_run (GTK_DIALOG (dialog));
479
480   if ( response == GTK_RESPONSE_ACCEPT )
481     {
482       GError *err = NULL;
483       char *filename =
484         gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog) );
485
486       if ( ! save_editor_to_file (PSPPIRE_SYNTAX_WINDOW (se), filename, &err) )
487         {
488           msg ( ME, "%s", err->message );
489           g_error_free (err);
490         }
491
492       free (filename);
493     }
494
495   gtk_widget_destroy (dialog);
496 }
497
498
499 /* Callback for the File->Save menuitem */
500 static void
501 syntax_save (PsppireWindow *se)
502 {
503   const gchar *filename = psppire_window_get_filename (se);
504
505   if ( filename == NULL )
506     syntax_save_as (se);
507   else
508     {
509       GError *err = NULL;
510       save_editor_to_file (PSPPIRE_SYNTAX_WINDOW (se), filename, &err);
511       if ( err )
512         {
513           msg (ME, "%s", err->message);
514           g_error_free (err);
515         }
516     }
517 }
518
519
520 /* Callback for the File->Quit menuitem */
521 static gboolean
522 on_quit (GtkMenuItem *menuitem, gpointer    user_data)
523 {
524   psppire_quit ();
525
526   return FALSE;
527 }
528
529
530 void
531 create_syntax_window (void)
532 {
533   GtkWidget *w = psppire_syntax_window_new ();
534   gtk_widget_show (w);
535 }
536
537 void
538 open_syntax_window (const char *file_name)
539 {
540   GtkWidget *se = psppire_syntax_window_new ();
541
542   if ( psppire_window_load (PSPPIRE_WINDOW (se), file_name) )
543     gtk_widget_show (se);
544   else
545     gtk_widget_destroy (se);
546 }
547
548 static void
549 on_text_changed (GtkTextBuffer *buffer, PsppireSyntaxWindow *window)
550 {
551   gtk_statusbar_pop (GTK_STATUSBAR (window->sb), window->text_context);
552 }
553
554 static void
555 on_modified_changed (GtkTextBuffer *buffer, PsppireWindow *window)
556 {
557   if (gtk_text_buffer_get_modified (buffer))
558     psppire_window_set_unsaved (window);
559 }
560
561 extern struct source_stream *the_source_stream ;
562
563 static void
564 psppire_syntax_window_init (PsppireSyntaxWindow *window)
565 {
566   GtkBuilder *xml = builder_new ("syntax-editor.ui");
567   GtkWidget *box = gtk_vbox_new (FALSE, 0);
568
569   GtkWidget *menubar = get_widget_assert (xml, "menubar");
570   GtkWidget *sw = get_widget_assert (xml, "scrolledwindow8");
571
572
573   GtkWidget *text_view = get_widget_assert (xml, "syntax_text_view");
574
575   GtkClipboard *clip_selection = gtk_widget_get_clipboard (GTK_WIDGET (window), GDK_SELECTION_CLIPBOARD);
576   GtkClipboard *clip_primary =   gtk_widget_get_clipboard (GTK_WIDGET (window), GDK_SELECTION_PRIMARY);
577
578   g_signal_connect_swapped (clip_primary, "owner-change", G_CALLBACK (selection_changed), window);
579
580   g_signal_connect (clip_selection, "owner-change", G_CALLBACK (on_owner_change), window);
581
582   window->cliptext = NULL;
583
584   window->edit_delete = get_action_assert (xml, "edit_delete");
585   window->edit_copy = get_action_assert (xml, "edit_copy");
586   window->edit_cut = get_action_assert (xml, "edit_cut");
587   window->edit_paste = get_action_assert (xml, "edit_paste");
588
589   window->buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (text_view));
590   window->lexer = lex_create (the_source_stream);
591
592   window->sb = get_widget_assert (xml, "statusbar2");
593   window->text_context = gtk_statusbar_get_context_id (GTK_STATUSBAR (window->sb), "Text Context");
594
595   g_signal_connect (window->buffer, "changed", G_CALLBACK (on_text_changed), window);
596
597   g_signal_connect (window->buffer, "modified-changed",
598                     G_CALLBACK (on_modified_changed), window);
599
600   connect_help (xml);
601
602   gtk_container_add (GTK_CONTAINER (window), box);
603
604   g_object_ref (menubar);
605
606   g_object_ref (sw);
607
608   g_object_ref (window->sb);
609
610
611   gtk_box_pack_start (GTK_BOX (box), menubar, FALSE, TRUE, 0);
612   gtk_box_pack_start (GTK_BOX (box), sw, TRUE, TRUE, 0);
613   gtk_box_pack_start (GTK_BOX (box), window->sb, FALSE, TRUE, 0);
614
615   gtk_widget_show_all (box);
616
617   g_signal_connect_swapped (get_action_assert (xml,"file_new_syntax"), "activate", G_CALLBACK (create_syntax_window), NULL);
618
619 #if 0
620   g_signal_connect (get_action_assert (xml,"file_new_data"),
621                     "activate",
622                     G_CALLBACK (create_data_window),
623                     window);
624 #endif
625
626   g_signal_connect_swapped (get_action_assert (xml, "file_save"),
627                     "activate",
628                     G_CALLBACK (syntax_save),
629                     window);
630
631   g_signal_connect_swapped (get_action_assert (xml, "file_save_as"),
632                     "activate",
633                     G_CALLBACK (syntax_save_as),
634                     window);
635
636   g_signal_connect (get_action_assert (xml,"file_quit"),
637                     "activate",
638                     G_CALLBACK (on_quit),
639                     window);
640
641   g_signal_connect_swapped (window->edit_delete,
642                     "activate",
643                     G_CALLBACK (on_edit_delete),
644                     window);
645
646   g_signal_connect_swapped (window->edit_copy,
647                     "activate",
648                     G_CALLBACK (on_edit_copy),
649                     window);
650
651   g_signal_connect_swapped (window->edit_cut,
652                     "activate",
653                     G_CALLBACK (on_edit_cut),
654                     window);
655
656   g_signal_connect_swapped (window->edit_paste,
657                     "activate",
658                     G_CALLBACK (on_edit_paste),
659                     window);
660
661   g_signal_connect (get_action_assert (xml,"run_all"),
662                     "activate",
663                     G_CALLBACK (on_run_all),
664                     window);
665
666   g_signal_connect (get_action_assert (xml,"run_selection"),
667                     "activate",
668                     G_CALLBACK (on_run_selection),
669                     window);
670
671   g_signal_connect (get_action_assert (xml,"run_current_line"),
672                     "activate",
673                     G_CALLBACK (on_run_current_line),
674                     window);
675
676   g_signal_connect (get_action_assert (xml,"run_to_end"),
677                     "activate",
678                     G_CALLBACK (on_run_to_end),
679                     window);
680
681   g_signal_connect (get_action_assert (xml,"windows_minimise_all"),
682                     "activate",
683                     G_CALLBACK (psppire_window_minimise_all), NULL);
684
685
686   {
687   GtkUIManager *uim = GTK_UI_MANAGER (get_object_assert (xml, "uimanager1", GTK_TYPE_UI_MANAGER));
688
689   merge_help_menu (uim);
690
691   PSPPIRE_WINDOW (window)->menu =
692     GTK_MENU_SHELL (gtk_ui_manager_get_widget (uim,"/ui/menubar/windows/windows_minimise_all")->parent);
693   }
694
695   g_object_unref (xml);
696 }
697
698
699
700
701
702 GtkWidget*
703 psppire_syntax_window_new (void)
704 {
705   return GTK_WIDGET (g_object_new (psppire_syntax_window_get_type (),
706                                    /* TRANSLATORS: This will form a filename.  Please avoid whitespace. */
707                                    "filename", _("Syntax"),
708                                    "description", _("Syntax Editor"),
709                                    NULL));
710 }
711
712 static void
713 error_dialog (GtkWindow *w, const gchar *filename,  GError *err)
714 {
715   gchar *fn = g_filename_display_basename (filename);
716
717   GtkWidget *dialog =
718     gtk_message_dialog_new (w,
719                             GTK_DIALOG_DESTROY_WITH_PARENT,
720                             GTK_MESSAGE_ERROR,
721                             GTK_BUTTONS_CLOSE,
722                             _("Cannot load syntax file '%s'"),
723                             fn);
724
725   g_free (fn);
726
727   g_object_set (dialog, "icon-name", "psppicon", NULL);
728
729   gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
730                                             "%s", err->message);
731
732   gtk_dialog_run (GTK_DIALOG (dialog));
733
734   gtk_widget_destroy (dialog);
735 }
736
737 /*
738   Loads the buffer from the file called FILENAME
739 */
740 gboolean
741 syntax_load (PsppireWindow *window, const gchar *filename)
742 {
743   GError *err = NULL;
744   gchar *text_locale = NULL;
745   gchar *text_utf8 = NULL;
746   gsize len_locale = -1;
747   gsize len_utf8 = -1;
748   GtkTextIter iter;
749   PsppireSyntaxWindow *sw = PSPPIRE_SYNTAX_WINDOW (window);
750
751   /* FIXME: What if it's a very big file ? */
752   if ( ! g_file_get_contents (filename, &text_locale, &len_locale, &err) )
753     {
754       error_dialog (GTK_WINDOW (window), filename, err);
755       g_clear_error (&err);
756       return FALSE;
757     }
758
759   text_utf8 = g_locale_to_utf8 (text_locale, len_locale, NULL, &len_utf8, &err);
760
761   free (text_locale);
762
763   if ( text_utf8 == NULL )
764     {
765       error_dialog (GTK_WINDOW (window), filename, err);
766       g_clear_error (&err);
767       return FALSE;
768     }
769
770   gtk_text_buffer_get_iter_at_line (sw->buffer, &iter, 0);
771
772   gtk_text_buffer_insert (sw->buffer, &iter, text_utf8, len_utf8);
773
774   gtk_text_buffer_set_modified (sw->buffer, FALSE);
775
776   free (text_utf8);
777
778   return TRUE;
779 }
780
781 \f
782
783 static void
784 psppire_syntax_window_iface_init (PsppireWindowIface *iface)
785 {
786   iface->save = syntax_save;
787   iface->load = syntax_load;
788 }
789
790
791