X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-syntax-window.c;h=2e398ade4ad22097097c321875a5801623ec0ba8;hb=2db8b20dbf5b3ab77430cc0c6a562fc17fe03e83;hp=38a4a3f4ff94a3f8ddad8ac8be334de9d570c5fa;hpb=fd4b99dc5367c6cd8f4ef2d9a151d001676eef7f;p=pspp diff --git a/src/ui/gui/psppire-syntax-window.c b/src/ui/gui/psppire-syntax-window.c index 38a4a3f4ff..2e398ade4a 100644 --- a/src/ui/gui/psppire-syntax-window.c +++ b/src/ui/gui/psppire-syntax-window.c @@ -19,10 +19,7 @@ #include #include -#include -#include -#include -#include +#include #include "language/lexer/lexer.h" #include "libpspp/encoding-guesser.h" @@ -263,7 +260,7 @@ on_edit_delete (PsppireSyntaxWindow *sw) { GtkTextIter begin, end; GtkTextBuffer *buffer = GTK_TEXT_BUFFER (sw->buffer); - + if ( gtk_text_buffer_get_selection_bounds (buffer, &begin, &end) ) gtk_text_buffer_delete (buffer, &begin, &end); } @@ -356,7 +353,7 @@ static void on_edit_cut (PsppireSyntaxWindow *sw) { GtkTextIter begin, end; - + if ( set_clip (sw, &begin, &end)) gtk_text_buffer_delete (GTK_TEXT_BUFFER (sw->buffer), &begin, &end); } @@ -707,7 +704,7 @@ psppire_syntax_window_init (PsppireSyntaxWindow *window) g_action_map_add_action (G_ACTION_MAP (window), G_ACTION (window->undo_menuitem)); g_action_map_add_action (G_ACTION_MAP (window), G_ACTION (window->redo_menuitem)); - + if (class->lan) window->buffer = gtk_source_buffer_new_with_language (class->lan); else @@ -751,19 +748,19 @@ psppire_syntax_window_init (PsppireSyntaxWindow *window) window->sb = get_widget_assert (xml, "statusbar2"); window->text_context = gtk_statusbar_get_context_id (GTK_STATUSBAR (window->sb), "Text Context"); - g_signal_connect (window->buffer, "changed", + g_signal_connect (window->buffer, "changed", G_CALLBACK (on_text_changed), window); - g_signal_connect (window->buffer, "modified-changed", + g_signal_connect (window->buffer, "modified-changed", G_CALLBACK (on_modified_changed), window); { GSimpleAction *print = g_simple_action_new ("print", NULL); - + g_signal_connect_swapped (print, "activate", G_CALLBACK (psppire_syntax_window_print), window); - + g_action_map_add_action (G_ACTION_MAP (window), G_ACTION (print)); } @@ -780,10 +777,10 @@ psppire_syntax_window_init (PsppireSyntaxWindow *window) undo_redo_update (window); - window->sel_handler = g_signal_connect_swapped (clip_primary, "owner-change", + window->sel_handler = g_signal_connect_swapped (clip_primary, "owner-change", G_CALLBACK (selection_changed), window); - window->ps_handler = g_signal_connect (clip_selection, "owner-change", + window->ps_handler = g_signal_connect (clip_selection, "owner-change", G_CALLBACK (set_paste_sensitivity), window); connect_help (xml); @@ -804,7 +801,7 @@ psppire_syntax_window_init (PsppireSyntaxWindow *window) { GSimpleAction *open = g_simple_action_new ("open", NULL); - + g_action_map_add_action (G_ACTION_MAP (window), G_ACTION (open)); g_signal_connect_swapped (open, @@ -815,9 +812,9 @@ psppire_syntax_window_init (PsppireSyntaxWindow *window) { GSimpleAction *save = g_simple_action_new ("save", NULL); - + g_action_map_add_action (G_ACTION_MAP (window), G_ACTION (save)); - + g_signal_connect_swapped (save, "activate", G_CALLBACK (psppire_window_save), @@ -827,14 +824,14 @@ psppire_syntax_window_init (PsppireSyntaxWindow *window) gtk_application_set_accels_for_action (app, "win.save", accels); - + } { GSimpleAction *save_as = g_simple_action_new ("save_as", NULL); - + g_action_map_add_action (G_ACTION_MAP (window), G_ACTION (save_as)); - + g_signal_connect_swapped (save_as, "activate", G_CALLBACK (psppire_window_save_as), @@ -845,8 +842,8 @@ psppire_syntax_window_init (PsppireSyntaxWindow *window) gtk_application_set_accels_for_action (app, "win.save_as", accels); - - + + } @@ -896,7 +893,7 @@ psppire_syntax_window_init (PsppireSyntaxWindow *window) { GSimpleAction *run_selection = g_simple_action_new ("run-selection", NULL); - + g_signal_connect_swapped (run_selection, "activate", G_CALLBACK (on_run_selection), window); @@ -905,10 +902,10 @@ psppire_syntax_window_init (PsppireSyntaxWindow *window) { GSimpleAction *run_to_end = g_simple_action_new ("run-to-end", NULL); - + g_signal_connect_swapped (run_to_end, "activate", G_CALLBACK (on_run_to_end), window); - + g_action_map_add_action (G_ACTION_MAP (window), G_ACTION (run_to_end)); } @@ -932,7 +929,7 @@ psppire_syntax_window_new (const char *encoding) "description", _("Syntax Editor"), "encoding", encoding, NULL); - + GApplication *app = g_application_get_default (); gtk_application_add_window (GTK_APPLICATION (app), GTK_WINDOW (sw)); @@ -1104,7 +1101,7 @@ paginate (GtkPrintOperation *operation, { gint n_pages = gtk_source_print_compositor_get_n_pages (window->compositor); gtk_print_operation_set_n_pages (operation, n_pages); - + return TRUE; } @@ -1117,7 +1114,7 @@ draw_page (GtkPrintOperation *operation, gint page_nr, PsppireSyntaxWindow *window) { - gtk_source_print_compositor_draw_page (window->compositor, + gtk_source_print_compositor_draw_page (window->compositor, context, page_nr); } @@ -1131,7 +1128,7 @@ psppire_syntax_window_print (PsppireSyntaxWindow *window) GtkPrintOperation *print = gtk_print_operation_new (); - if (window->print_settings != NULL) + if (window->print_settings != NULL) gtk_print_operation_set_print_settings (print, window->print_settings);