fix bug 4239, 'Preferences: Text Options Header Display modal is not modal' (sic)
[claws.git] / src / sourcewindow.c
index 05c88f3102a764a5b2f5bf3b72cad0d31c78c631..f188c0fb69a3599d2d87b6ac1151314b5a932728 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2011 Hiroyuki Yamamoto and the Claws Mail team
+ * Copyright (C) 1999-2012 Hiroyuki Yamamoto and the Claws Mail team
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -30,6 +30,7 @@
 #include "utils.h"
 #include "gtkutils.h"
 #include "prefs_common.h"
+#include "file-utils.h"
 
 static void source_window_size_alloc_cb        (GtkWidget      *widget,
                                         GtkAllocation  *allocation);
@@ -63,6 +64,7 @@ SourceWindow *source_window_create(void)
        window = gtkut_window_new(GTK_WINDOW_TOPLEVEL, "sourcewindow");
        gtk_window_set_title(GTK_WINDOW(window), _("Source of the message"));
        gtk_window_set_resizable(GTK_WINDOW(window), TRUE);
+       gtk_window_set_type_hint(GTK_WINDOW(window), GDK_WINDOW_TYPE_HINT_DIALOG);
        gtk_widget_set_size_request(window, prefs_common.sourcewin_width,
                                    prefs_common.sourcewin_height);
        
@@ -148,8 +150,8 @@ void source_window_show_msg(SourceWindow *sourcewin, MsgInfo *msginfo)
 
        cm_return_if_fail(file != NULL);
 
-       if ((fp = g_fopen(file, "rb")) == NULL) {
-               FILE_OP_ERROR(file, "fopen");
+       if ((fp = claws_fopen(file, "rb")) == NULL) {
+               FILE_OP_ERROR(file, "claws_fopen");
                g_free(file);
                return;
        }
@@ -161,10 +163,10 @@ void source_window_show_msg(SourceWindow *sourcewin, MsgInfo *msginfo)
        g_free(title);
        g_free(file);
 
-       while (fgets(buf, sizeof(buf), fp) != NULL)
+       while (claws_fgets(buf, sizeof(buf), fp) != NULL)
                source_window_append(sourcewin, buf);
 
-       fclose(fp);
+       claws_fclose(fp);
 }
 
 static void source_window_append(SourceWindow *sourcewin, const gchar *str)
@@ -202,15 +204,9 @@ static gint source_window_delete_cb(GtkWidget *widget, GdkEventAny *event,
 static gboolean key_pressed(GtkWidget *widget, GdkEventKey *event,
                            SourceWindow *sourcewin)
 {
-
        if (!event || !sourcewin) return FALSE;
-       
+
        switch (event->keyval) {
-       case GDK_KEY_A:
-       case GDK_KEY_a:
-               if ((event->state & GDK_CONTROL_MASK) != 0)
-                       gtk_editable_select_region(GTK_EDITABLE(sourcewin->text), 0, -1);
-               break;
        case GDK_KEY_W:
        case GDK_KEY_w:
                if ((event->state & GDK_CONTROL_MASK) != 0)