1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2008, 2009, 2010, 2011, 2012, 2014 Free Software Foundation
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.
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.
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/>. */
22 #include <gtksourceview/gtksourcebuffer.h>
23 #include <gtksourceview/gtksourcelanguage.h>
24 #include <gtksourceview/gtksourcelanguagemanager.h>
25 #include <gtksourceview/gtksourceprintcompositor.h>
27 #include "language/lexer/lexer.h"
28 #include "libpspp/encoding-guesser.h"
29 #include "libpspp/i18n.h"
30 #include "libpspp/message.h"
31 #include "ui/gui/executor.h"
32 #include "ui/gui/help-menu.h"
33 #include "ui/gui/helper.h"
34 #include "ui/gui/builder-wrapper.h"
35 #include "ui/gui/psppire-data-window.h"
36 #include "ui/gui/psppire-encoding-selector.h"
37 #include "ui/gui/psppire-lex-reader.h"
38 #include "ui/gui/psppire-syntax-window.h"
39 #include "ui/gui/psppire-window-register.h"
40 #include "ui/gui/psppire.h"
42 #include "gl/localcharset.h"
43 #include "gl/xalloc.h"
44 #include "gl/xvasprintf.h"
47 #define _(msgid) gettext (msgid)
48 #define N_(msgid) msgid
50 static void psppire_syntax_window_base_finalize (PsppireSyntaxWindowClass *, gpointer);
51 static void psppire_syntax_window_base_init (PsppireSyntaxWindowClass *class);
52 static void psppire_syntax_window_class_init (PsppireSyntaxWindowClass *class);
53 static void psppire_syntax_window_init (PsppireSyntaxWindow *syntax_editor);
56 static void psppire_syntax_window_iface_init (PsppireWindowIface *iface);
67 psppire_syntax_window_set_property (GObject *object,
72 PsppireSyntaxWindow *window = PSPPIRE_SYNTAX_WINDOW (object);
77 g_free (window->encoding);
78 window->encoding = g_value_dup_string (value);
81 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
88 psppire_syntax_window_get_property (GObject *object,
93 PsppireSyntaxWindow *window = PSPPIRE_SYNTAX_WINDOW (object);
98 g_value_set_string (value, window->encoding);
101 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
107 psppire_syntax_window_get_type (void)
109 static GType psppire_syntax_window_type = 0;
111 if (!psppire_syntax_window_type)
113 static const GTypeInfo psppire_syntax_window_info =
115 sizeof (PsppireSyntaxWindowClass),
116 (GBaseInitFunc) psppire_syntax_window_base_init,
117 (GBaseFinalizeFunc) psppire_syntax_window_base_finalize,
118 (GClassInitFunc)psppire_syntax_window_class_init,
119 (GClassFinalizeFunc) NULL,
121 sizeof (PsppireSyntaxWindow),
123 (GInstanceInitFunc) psppire_syntax_window_init,
126 static const GInterfaceInfo window_interface_info =
128 (GInterfaceInitFunc) psppire_syntax_window_iface_init,
133 psppire_syntax_window_type =
134 g_type_register_static (PSPPIRE_TYPE_WINDOW, "PsppireSyntaxWindow",
135 &psppire_syntax_window_info, 0);
137 g_type_add_interface_static (psppire_syntax_window_type,
138 PSPPIRE_TYPE_WINDOW_MODEL,
139 &window_interface_info);
142 return psppire_syntax_window_type;
145 static GObjectClass *parent_class ;
148 psppire_syntax_window_finalize (GObject *object)
150 if (G_OBJECT_CLASS (parent_class)->finalize)
151 (*G_OBJECT_CLASS (parent_class)->finalize) (object);
156 psppire_syntax_window_dispose (GObject *obj)
158 PsppireSyntaxWindow *sw = (PsppireSyntaxWindow *)obj;
160 GtkClipboard *clip_selection;
161 GtkClipboard *clip_primary;
163 if (sw->dispose_has_run)
166 g_free (sw->encoding);
169 clip_selection = gtk_widget_get_clipboard (GTK_WIDGET (sw), GDK_SELECTION_CLIPBOARD);
170 clip_primary = gtk_widget_get_clipboard (GTK_WIDGET (sw), GDK_SELECTION_PRIMARY);
172 g_signal_handler_disconnect (clip_primary, sw->sel_handler);
174 g_signal_handler_disconnect (clip_selection, sw->ps_handler);
176 /* Make sure dispose does not run twice. */
177 sw->dispose_has_run = TRUE;
179 /* Chain up to the parent class */
180 G_OBJECT_CLASS (parent_class)->dispose (obj);
186 psppire_syntax_window_class_init (PsppireSyntaxWindowClass *class)
188 GParamSpec *encoding_spec;
189 GObjectClass *gobject_class = G_OBJECT_CLASS (class);
191 GtkSourceLanguageManager *lm = gtk_source_language_manager_get_default ();
193 const gchar * const *existing_paths = gtk_source_language_manager_get_search_path (lm);
194 gchar **new_paths = g_strdupv ((gchar **)existing_paths);
195 int n = g_strv_length ((gchar **) existing_paths);
197 new_paths = g_realloc (new_paths, (n + 2) * sizeof (*new_paths));
198 new_paths[n] = g_strdup (relocate (PKGDATADIR));
199 new_paths[n+1] = NULL;
201 lm = gtk_source_language_manager_new ();
202 gtk_source_language_manager_set_search_path (lm, new_paths);
204 class->lan = gtk_source_language_manager_get_language (lm, "pspp");
206 if (class->lan == NULL)
207 g_warning ("pspp.lang file not found. Syntax highlighting will not be available.");
209 parent_class = g_type_class_peek_parent (class);
211 g_strfreev (new_paths);
214 null_if_empty_param ("encoding",
215 "Character encoding",
216 "IANA character encoding in this syntax file",
218 G_PARAM_CONSTRUCT | G_PARAM_READWRITE);
220 parent_class = g_type_class_peek_parent (class);
222 gobject_class->set_property = psppire_syntax_window_set_property;
223 gobject_class->get_property = psppire_syntax_window_get_property;
224 gobject_class->dispose = psppire_syntax_window_dispose;
226 g_object_class_install_property (gobject_class,
233 psppire_syntax_window_base_init (PsppireSyntaxWindowClass *class)
235 GObjectClass *object_class = G_OBJECT_CLASS (class);
236 object_class->finalize = psppire_syntax_window_finalize;
242 psppire_syntax_window_base_finalize (PsppireSyntaxWindowClass *class,
249 editor_execute_syntax (const PsppireSyntaxWindow *sw, GtkTextIter start,
252 PsppireWindow *win = PSPPIRE_WINDOW (sw);
253 struct lex_reader *reader = lex_reader_for_gtk_text_buffer (GTK_TEXT_BUFFER (sw->buffer), start, stop);
255 lex_reader_set_file_name (reader, psppire_window_get_filename (win));
257 execute_syntax (psppire_default_data_window (), reader);
260 /* Delete the currently selected text */
262 on_edit_delete (PsppireSyntaxWindow *sw)
264 GtkTextIter begin, end;
265 GtkTextBuffer *buffer = GTK_TEXT_BUFFER (sw->buffer);
267 if ( gtk_text_buffer_get_selection_bounds (buffer, &begin, &end) )
268 gtk_text_buffer_delete (buffer, &begin, &end);
272 /* The syntax editor's clipboard deals only with text */
280 selection_changed (PsppireSyntaxWindow *sw)
282 gboolean sel = gtk_text_buffer_get_has_selection (GTK_TEXT_BUFFER (sw->buffer));
284 gtk_action_set_sensitive (sw->edit_copy, sel);
285 gtk_action_set_sensitive (sw->edit_cut, sel);
286 gtk_action_set_sensitive (sw->edit_delete, sel);
289 /* The callback which runs when something request clipboard data */
291 clipboard_get_cb (GtkClipboard *clipboard,
292 GtkSelectionData *selection_data,
296 PsppireSyntaxWindow *sw = data;
297 g_assert (info == SELECT_FMT_TEXT);
299 gtk_selection_data_set (selection_data, gtk_selection_data_get_target (selection_data),
301 (const guchar *) sw->cliptext, strlen (sw->cliptext));
306 clipboard_clear_cb (GtkClipboard *clipboard,
309 PsppireSyntaxWindow *sw = data;
310 g_free (sw->cliptext);
315 static const GtkTargetEntry targets[] = {
316 { "UTF8_STRING", 0, SELECT_FMT_TEXT },
317 { "STRING", 0, SELECT_FMT_TEXT },
318 { "TEXT", 0, SELECT_FMT_TEXT },
319 { "COMPOUND_TEXT", 0, SELECT_FMT_TEXT },
320 { "text/plain;charset=utf-8", 0, SELECT_FMT_TEXT },
321 { "text/plain", 0, SELECT_FMT_TEXT },
326 Store a clip containing the currently selected text.
327 Returns true iff something was set.
328 As a side effect, begin and end will be set to indicate
329 the limits of the selected text.
332 set_clip (PsppireSyntaxWindow *sw, GtkTextIter *begin, GtkTextIter *end)
334 GtkClipboard *clipboard ;
335 GtkTextBuffer *buffer = GTK_TEXT_BUFFER (sw->buffer);
337 if ( ! gtk_text_buffer_get_selection_bounds (buffer, begin, end) )
340 g_free (sw->cliptext);
341 sw->cliptext = gtk_text_buffer_get_text (buffer, begin, end, FALSE);
344 gtk_widget_get_clipboard (GTK_WIDGET (sw), GDK_SELECTION_CLIPBOARD);
346 if (!gtk_clipboard_set_with_owner (clipboard, targets,
347 G_N_ELEMENTS (targets),
348 clipboard_get_cb, clipboard_clear_cb,
350 clipboard_clear_cb (clipboard, sw);
356 on_edit_cut (PsppireSyntaxWindow *sw)
358 GtkTextIter begin, end;
360 if ( set_clip (sw, &begin, &end))
361 gtk_text_buffer_delete (GTK_TEXT_BUFFER (sw->buffer), &begin, &end);
365 on_edit_copy (PsppireSyntaxWindow *sw)
367 GtkTextIter begin, end;
369 set_clip (sw, &begin, &end);
373 on_edit_paste (PsppireSyntaxWindow *sw)
375 GdkDisplay *display = gtk_widget_get_display (GTK_WIDGET (sw));
376 GtkClipboard *clipboard =
377 gtk_clipboard_get_for_display (display, GDK_SELECTION_CLIPBOARD);
379 gtk_text_buffer_paste_clipboard (GTK_TEXT_BUFFER (sw->buffer), clipboard, NULL, TRUE);
383 /* Check to see if CLIP holds a target which we know how to paste,
384 and set the sensitivity of the Paste action accordingly.
387 set_paste_sensitivity (GtkClipboard *clip, GdkEventOwnerChange *event, gpointer data)
390 gboolean compatible_target = FALSE;
391 PsppireSyntaxWindow *sw = PSPPIRE_SYNTAX_WINDOW (data);
393 for (i = 0 ; i < sizeof (targets) / sizeof (targets[0]) ; ++i)
395 GdkAtom atom = gdk_atom_intern (targets[i].target, TRUE);
396 if ( gtk_clipboard_wait_is_target_available (clip, atom))
398 compatible_target = TRUE;
403 gtk_action_set_sensitive (sw->edit_paste, compatible_target);
409 /* Parse and execute all the text in the buffer */
411 on_run_all (GtkMenuItem *menuitem, gpointer user_data)
413 GtkTextIter begin, end;
414 PsppireSyntaxWindow *se = PSPPIRE_SYNTAX_WINDOW (user_data);
416 gtk_text_buffer_get_iter_at_offset (GTK_TEXT_BUFFER (se->buffer), &begin, 0);
417 gtk_text_buffer_get_iter_at_offset (GTK_TEXT_BUFFER (se->buffer), &end, -1);
419 editor_execute_syntax (se, begin, end);
422 /* Parse and execute the currently selected text */
424 on_run_selection (GtkMenuItem *menuitem, gpointer user_data)
426 GtkTextIter begin, end;
427 PsppireSyntaxWindow *se = PSPPIRE_SYNTAX_WINDOW (user_data);
429 if ( gtk_text_buffer_get_selection_bounds (GTK_TEXT_BUFFER (se->buffer), &begin, &end) )
430 editor_execute_syntax (se, begin, end);
434 /* Parse and execute the from the current line, to the end of the
437 on_run_to_end (GtkMenuItem *menuitem, gpointer user_data)
439 GtkTextIter begin, end;
443 PsppireSyntaxWindow *se = PSPPIRE_SYNTAX_WINDOW (user_data);
445 /* Get the current line */
446 gtk_text_buffer_get_iter_at_mark (GTK_TEXT_BUFFER (se->buffer),
448 gtk_text_buffer_get_insert (GTK_TEXT_BUFFER (se->buffer))
451 line = gtk_text_iter_get_line (&here) ;
453 /* Now set begin and end to the start of this line, and end of buffer
455 gtk_text_buffer_get_iter_at_line (GTK_TEXT_BUFFER (se->buffer), &begin, line);
456 gtk_text_buffer_get_iter_at_line (GTK_TEXT_BUFFER (se->buffer), &end, -1);
458 editor_execute_syntax (se, begin, end);
463 /* Parse and execute the current line */
465 on_run_current_line (GtkMenuItem *menuitem, gpointer user_data)
467 GtkTextIter begin, end;
471 PsppireSyntaxWindow *se = PSPPIRE_SYNTAX_WINDOW (user_data);
473 /* Get the current line */
474 gtk_text_buffer_get_iter_at_mark (GTK_TEXT_BUFFER (se->buffer),
476 gtk_text_buffer_get_insert (GTK_TEXT_BUFFER (se->buffer))
479 line = gtk_text_iter_get_line (&here) ;
481 /* Now set begin and end to the start of this line, and start of
482 following line respectively */
483 gtk_text_buffer_get_iter_at_line (GTK_TEXT_BUFFER (se->buffer), &begin, line);
484 gtk_text_buffer_get_iter_at_line (GTK_TEXT_BUFFER (se->buffer), &end, line + 1);
486 editor_execute_syntax (se, begin, end);
491 /* Append ".sps" to FILENAME if necessary.
492 The returned result must be freed when no longer required.
495 append_suffix (const gchar *filename)
497 if ( ! g_str_has_suffix (filename, ".sps" ) &&
498 ! g_str_has_suffix (filename, ".SPS" ) )
500 return g_strdup_printf ("%s.sps", filename);
503 return xstrdup (filename);
507 Save BUFFER to the file called FILENAME.
508 FILENAME must be encoded in Glib filename encoding.
509 If successful, clears the buffer's modified flag.
512 save_editor_to_file (PsppireSyntaxWindow *se,
513 const gchar *filename,
516 GtkTextBuffer *buffer = GTK_TEXT_BUFFER (se->buffer);
517 struct substring text_locale;
519 GtkTextIter start, stop;
525 suffixedname = append_suffix (filename);
527 gtk_text_buffer_get_iter_at_line (buffer, &start, 0);
528 gtk_text_buffer_get_iter_at_offset (buffer, &stop, -1);
530 text = gtk_text_buffer_get_text (buffer, &start, &stop, FALSE);
532 text_locale = recode_substring_pool (se->encoding, "UTF-8", ss_cstr (text),
535 result = g_file_set_contents (suffixedname, ss_data (text_locale),
536 ss_length (text_locale), err);
538 ss_dealloc (&text_locale);
539 g_free (suffixedname);
543 char *fn = g_filename_display_name (filename);
544 gchar *msg = g_strdup_printf (_("Saved file `%s'"), fn);
546 gtk_statusbar_push (GTK_STATUSBAR (se->sb), se->text_context, msg);
547 gtk_text_buffer_set_modified (buffer, FALSE);
555 /* PsppireWindow 'pick_Filename' callback. */
557 syntax_pick_filename (PsppireWindow *window)
559 PsppireSyntaxWindow *se = PSPPIRE_SYNTAX_WINDOW (window);
560 const char *default_encoding;
561 GtkFileFilter *filter;
565 gtk_file_chooser_dialog_new (_("Save Syntax"),
567 GTK_FILE_CHOOSER_ACTION_SAVE,
568 _("Cancel"), GTK_RESPONSE_CANCEL,
569 _("Save"), GTK_RESPONSE_ACCEPT,
572 g_object_set (dialog, "local-only", FALSE, NULL);
574 filter = gtk_file_filter_new ();
575 gtk_file_filter_set_name (filter, _("Syntax Files (*.sps) "));
576 gtk_file_filter_add_pattern (filter, "*.sps");
577 gtk_file_filter_add_pattern (filter, "*.SPS");
578 gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (dialog), filter);
580 filter = gtk_file_filter_new ();
581 gtk_file_filter_set_name (filter, _("All Files"));
582 gtk_file_filter_add_pattern (filter, "*");
583 gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (dialog), filter);
585 gtk_file_chooser_set_do_overwrite_confirmation (GTK_FILE_CHOOSER (dialog),
588 default_encoding = se->encoding != NULL ? se->encoding : locale_charset ();
589 gtk_file_chooser_set_extra_widget (
590 GTK_FILE_CHOOSER (dialog),
591 psppire_encoding_selector_new (default_encoding, false));
593 response = gtk_dialog_run (GTK_DIALOG (dialog));
595 if ( response == GTK_RESPONSE_ACCEPT )
600 filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog) );
601 psppire_window_set_filename (window, filename);
604 encoding = psppire_encoding_selector_get_encoding (
605 gtk_file_chooser_get_extra_widget (GTK_FILE_CHOOSER (dialog)));
606 if (encoding != NULL)
608 g_free (se->encoding);
609 se->encoding = encoding;
613 gtk_widget_destroy (dialog);
617 /* PsppireWindow 'save' callback. */
619 syntax_save (PsppireWindow *se)
621 const gchar *filename = psppire_window_get_filename (se);
623 save_editor_to_file (PSPPIRE_SYNTAX_WINDOW (se), filename, &err);
626 msg (ME, "%s", err->message);
632 /* Callback for the File->Quit menuitem */
634 on_quit (GtkMenuItem *menuitem, gpointer user_data)
643 load_and_show_syntax_window (GtkWidget *se, const gchar *filename,
644 const gchar *encoding)
648 gtk_source_buffer_begin_not_undoable_action (PSPPIRE_SYNTAX_WINDOW (se)->buffer);
649 ok = psppire_window_load (PSPPIRE_WINDOW (se), filename, encoding, NULL);
650 gtk_source_buffer_end_not_undoable_action (PSPPIRE_SYNTAX_WINDOW (se)->buffer);
653 gtk_widget_show (se);
655 gtk_widget_destroy (se);
659 create_syntax_window (void)
661 GtkWidget *w = psppire_syntax_window_new (NULL);
666 open_syntax_window (const char *file_name, const gchar *encoding)
668 GtkWidget *se = psppire_syntax_window_new (NULL);
671 load_and_show_syntax_window (se, file_name, encoding);
676 static void psppire_syntax_window_print (PsppireSyntaxWindow *window);
679 on_modified_changed (GtkTextBuffer *buffer, PsppireWindow *window)
681 if (gtk_text_buffer_get_modified (buffer))
682 psppire_window_set_unsaved (window);
685 static void undo_redo_update (PsppireSyntaxWindow *window);
686 static void undo_last_edit (PsppireSyntaxWindow *window);
687 static void redo_last_edit (PsppireSyntaxWindow *window);
690 on_text_changed (GtkTextBuffer *buffer, PsppireSyntaxWindow *window)
692 gtk_statusbar_pop (GTK_STATUSBAR (window->sb), window->text_context);
693 undo_redo_update (window);
697 psppire_syntax_window_init (PsppireSyntaxWindow *window)
699 GtkBuilder *xml = builder_new ("syntax-editor.ui");
700 GtkWidget *box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
702 GtkWidget *menubar = get_widget_assert (xml, "menubar");
703 GtkWidget *sw = get_widget_assert (xml, "scrolledwindow8");
705 GtkWidget *text_view = get_widget_assert (xml, "syntax_text_view");
707 PsppireSyntaxWindowClass *class
708 = PSPPIRE_SYNTAX_WINDOW_CLASS (G_OBJECT_GET_CLASS (window));
710 GtkClipboard *clip_selection = gtk_widget_get_clipboard (GTK_WIDGET (window), GDK_SELECTION_CLIPBOARD);
711 GtkClipboard *clip_primary = gtk_widget_get_clipboard (GTK_WIDGET (window), GDK_SELECTION_PRIMARY);
713 window->print_settings = NULL;
714 window->undo_menuitem = get_action_assert (xml, "edit_undo");
715 window->redo_menuitem = get_action_assert (xml, "edit_redo");
718 window->buffer = gtk_source_buffer_new_with_language (class->lan);
720 window->buffer = gtk_source_buffer_new (NULL);
722 gtk_text_view_set_buffer (GTK_TEXT_VIEW (text_view), GTK_TEXT_BUFFER (window->buffer));
724 g_object_set (window->buffer,
725 "highlight-matching-brackets", TRUE,
728 g_object_set (text_view,
729 "show-line-numbers", TRUE,
730 "show-line-marks", TRUE,
733 "highlight-current-line", TRUE,
736 window->encoding = NULL;
738 window->cliptext = NULL;
739 window->dispose_has_run = FALSE;
741 window->edit_delete = get_action_assert (xml, "edit_delete");
742 window->edit_copy = get_action_assert (xml, "edit_copy");
743 window->edit_cut = get_action_assert (xml, "edit_cut");
744 window->edit_paste = get_action_assert (xml, "edit_paste");
746 window->buffer = GTK_SOURCE_BUFFER (gtk_text_view_get_buffer (GTK_TEXT_VIEW (text_view)));
748 window->sb = get_widget_assert (xml, "statusbar2");
749 window->text_context = gtk_statusbar_get_context_id (GTK_STATUSBAR (window->sb), "Text Context");
751 g_signal_connect (window->buffer, "changed",
752 G_CALLBACK (on_text_changed), window);
754 g_signal_connect (window->buffer, "modified-changed",
755 G_CALLBACK (on_modified_changed), window);
757 g_signal_connect_swapped (get_action_assert (xml, "file_print"), "activate",
758 G_CALLBACK (psppire_syntax_window_print), window);
761 g_signal_connect_swapped (window->undo_menuitem,
763 G_CALLBACK (undo_last_edit),
766 g_signal_connect_swapped (window->redo_menuitem,
768 G_CALLBACK (redo_last_edit),
771 undo_redo_update (window);
773 window->sel_handler = g_signal_connect_swapped (clip_primary, "owner-change",
774 G_CALLBACK (selection_changed), window);
776 window->ps_handler = g_signal_connect (clip_selection, "owner-change",
777 G_CALLBACK (set_paste_sensitivity), window);
781 gtk_container_add (GTK_CONTAINER (window), box);
783 g_object_ref (menubar);
787 g_object_ref (window->sb);
789 gtk_box_pack_start (GTK_BOX (box), menubar, FALSE, TRUE, 0);
790 gtk_box_pack_start (GTK_BOX (box), sw, TRUE, TRUE, 0);
791 gtk_box_pack_start (GTK_BOX (box), window->sb, FALSE, TRUE, 0);
793 gtk_widget_show_all (box);
795 g_signal_connect_swapped (get_action_assert (xml,"file_new_syntax"), "activate", G_CALLBACK (create_syntax_window), NULL);
797 g_signal_connect (get_action_assert (xml,"file_new_data"),
799 G_CALLBACK (create_data_window),
802 g_signal_connect_swapped (get_action_assert (xml, "file_open"),
804 G_CALLBACK (psppire_window_open),
807 g_signal_connect_swapped (get_action_assert (xml, "file_save"),
809 G_CALLBACK (psppire_window_save),
812 g_signal_connect_swapped (get_action_assert (xml, "file_save_as"),
814 G_CALLBACK (psppire_window_save_as),
817 g_signal_connect (get_action_assert (xml,"file_quit"),
819 G_CALLBACK (on_quit),
822 g_signal_connect_swapped (window->edit_delete,
824 G_CALLBACK (on_edit_delete),
827 g_signal_connect_swapped (window->edit_copy,
829 G_CALLBACK (on_edit_copy),
832 g_signal_connect_swapped (window->edit_cut,
834 G_CALLBACK (on_edit_cut),
837 g_signal_connect_swapped (window->edit_paste,
839 G_CALLBACK (on_edit_paste),
842 g_signal_connect (get_action_assert (xml,"run_all"),
844 G_CALLBACK (on_run_all),
847 g_signal_connect (get_action_assert (xml,"run_selection"),
849 G_CALLBACK (on_run_selection),
852 g_signal_connect (get_action_assert (xml,"run_current_line"),
854 G_CALLBACK (on_run_current_line),
857 g_signal_connect (get_action_assert (xml,"run_to_end"),
859 G_CALLBACK (on_run_to_end),
862 g_signal_connect (get_action_assert (xml,"windows_minimise_all"),
864 G_CALLBACK (psppire_window_minimise_all), NULL);
868 GtkUIManager *uim = GTK_UI_MANAGER (get_object_assert (xml, "uimanager1", GTK_TYPE_UI_MANAGER));
869 GtkWidget *w = gtk_ui_manager_get_widget (uim,"/ui/menubar/windows/windows_minimise_all");
871 gtk_menu_shell_append (GTK_MENU_SHELL (menubar), create_help_menu (GTK_WINDOW (window)));
873 PSPPIRE_WINDOW (window)->menu = GTK_MENU_SHELL (gtk_widget_get_parent (w));
876 g_object_unref (xml);
884 psppire_syntax_window_new (const char *encoding)
886 return GTK_WIDGET (g_object_new (psppire_syntax_window_get_type (),
887 "description", _("Syntax Editor"),
888 "encoding", encoding,
893 error_dialog (GtkWindow *w, const gchar *filename, GError *err)
895 gchar *fn = g_filename_display_basename (filename);
898 gtk_message_dialog_new (w,
899 GTK_DIALOG_DESTROY_WITH_PARENT,
902 _("Cannot load syntax file `%s'"),
907 g_object_set (dialog, "icon-name", "pspp", NULL);
909 gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
912 gtk_dialog_run (GTK_DIALOG (dialog));
914 gtk_widget_destroy (dialog);
918 Loads the buffer from the file called FILENAME
921 syntax_load (PsppireWindow *window, const gchar *filename,
922 const gchar *encoding, gpointer not_used)
925 gchar *text_locale = NULL;
926 gchar *text_utf8 = NULL;
927 gsize len_locale = -1;
930 PsppireSyntaxWindow *sw = PSPPIRE_SYNTAX_WINDOW (window);
931 GtkTextBuffer *buffer = GTK_TEXT_BUFFER (sw->buffer);
933 /* FIXME: What if it's a very big file ? */
934 if ( ! g_file_get_contents (filename, &text_locale, &len_locale, &err) )
936 error_dialog (GTK_WINDOW (window), filename, err);
937 g_clear_error (&err);
941 if (!encoding || !encoding[0])
943 /* Determine the file's encoding and update sw->encoding. (The ordering
944 is important here because encoding_guess_whole_file() often returns
945 its argument instead of a copy of it.) */
946 char *guessed_encoding;
948 guessed_encoding = g_strdup (encoding_guess_whole_file (sw->encoding,
951 g_free (sw->encoding);
952 sw->encoding = guessed_encoding;
956 g_free (sw->encoding);
957 sw->encoding = g_strdup (encoding);
960 text_utf8 = recode_substring_pool ("UTF-8", sw->encoding,
961 ss_buffer (text_locale, len_locale),
965 if ( text_utf8 == NULL )
967 error_dialog (GTK_WINDOW (window), filename, err);
968 g_clear_error (&err);
972 gtk_text_buffer_get_iter_at_line (buffer, &iter, 0);
974 gtk_text_buffer_insert (buffer, &iter, text_utf8, len_utf8);
976 gtk_text_buffer_set_modified (buffer, FALSE);
980 add_most_recent (filename, "text/x-spss-syntax", sw->encoding);
988 psppire_syntax_window_iface_init (PsppireWindowIface *iface)
990 iface->save = syntax_save;
991 iface->pick_filename = syntax_pick_filename;
992 iface->load = syntax_load;
999 undo_redo_update (PsppireSyntaxWindow *window)
1001 gtk_action_set_sensitive (window->undo_menuitem,
1002 gtk_source_buffer_can_undo (window->buffer));
1004 gtk_action_set_sensitive (window->redo_menuitem,
1005 gtk_source_buffer_can_redo (window->buffer));
1009 undo_last_edit (PsppireSyntaxWindow *window)
1011 gtk_source_buffer_undo (window->buffer);
1012 undo_redo_update (window);
1016 redo_last_edit (PsppireSyntaxWindow *window)
1018 gtk_source_buffer_redo (window->buffer);
1019 undo_redo_update (window);
1024 /* Printing related stuff */
1028 begin_print (GtkPrintOperation *operation,
1029 GtkPrintContext *context,
1030 PsppireSyntaxWindow *window)
1032 window->compositor =
1033 gtk_source_print_compositor_new (window->buffer);
1038 end_print (GtkPrintOperation *operation,
1039 GtkPrintContext *context,
1040 PsppireSyntaxWindow *window)
1042 g_object_unref (window->compositor);
1043 window->compositor = NULL;
1049 paginate (GtkPrintOperation *operation,
1050 GtkPrintContext *context,
1051 PsppireSyntaxWindow *window)
1053 if (gtk_source_print_compositor_paginate (window->compositor, context))
1055 gint n_pages = gtk_source_print_compositor_get_n_pages (window->compositor);
1056 gtk_print_operation_set_n_pages (operation, n_pages);
1065 draw_page (GtkPrintOperation *operation,
1066 GtkPrintContext *context,
1068 PsppireSyntaxWindow *window)
1070 gtk_source_print_compositor_draw_page (window->compositor,
1078 psppire_syntax_window_print (PsppireSyntaxWindow *window)
1080 GtkPrintOperationResult res;
1082 GtkPrintOperation *print = gtk_print_operation_new ();
1084 if (window->print_settings != NULL)
1085 gtk_print_operation_set_print_settings (print, window->print_settings);
1088 g_signal_connect (print, "begin_print", G_CALLBACK (begin_print), window);
1089 g_signal_connect (print, "end_print", G_CALLBACK (end_print), window);
1090 g_signal_connect (print, "draw_page", G_CALLBACK (draw_page), window);
1091 g_signal_connect (print, "paginate", G_CALLBACK (paginate), window);
1093 res = gtk_print_operation_run (print, GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG,
1094 GTK_WINDOW (window), NULL);
1096 if (res == GTK_PRINT_OPERATION_RESULT_APPLY)
1098 if (window->print_settings != NULL)
1099 g_object_unref (window->print_settings);
1100 window->print_settings = g_object_ref (gtk_print_operation_get_print_settings (print));
1103 g_object_unref (print);