123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- /*
- * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2009 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
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * 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, see <http://www.gnu.org/licenses/>.
- *
- */
- #include "defs.h"
- #include <glib.h>
- #include <glib/gi18n.h>
- #include <gdk/gdkkeysyms.h>
- #include <gtk/gtk.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include "sourcewindow.h"
- #include "utils.h"
- #include "gtkutils.h"
- #include "prefs_common.h"
- static void source_window_size_alloc_cb (GtkWidget *widget,
- GtkAllocation *allocation);
- static gint source_window_delete_cb (GtkWidget *widget,
- GdkEventAny *event,
- SourceWindow *sourcewin);
- static gboolean key_pressed (GtkWidget *widget,
- GdkEventKey *event,
- SourceWindow *sourcewin);
- static void source_window_append (SourceWindow *sourcewin,
- const gchar *str);
- static void source_window_destroy (SourceWindow *sourcewin);
- static void source_window_init()
- {
- }
- SourceWindow *source_window_create(void)
- {
- SourceWindow *sourcewin;
- GtkWidget *window;
- GtkWidget *scrolledwin;
- GtkWidget *text;
- static PangoFontDescription *font_desc = NULL;
- static GdkGeometry geometry;
-
- debug_print("Creating source window...\n");
- sourcewin = g_new0(SourceWindow, 1);
- 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_widget_set_size_request(window, prefs_common.sourcewin_width,
- prefs_common.sourcewin_height);
-
- if (!geometry.min_height) {
- geometry.min_width = 400;
- geometry.min_height = 320;
- }
- gtk_window_set_geometry_hints(GTK_WINDOW(window), NULL, &geometry,
- GDK_HINT_MIN_SIZE);
- g_signal_connect(G_OBJECT(window), "size_allocate",
- G_CALLBACK(source_window_size_alloc_cb),
- sourcewin);
- g_signal_connect(G_OBJECT(window), "delete_event",
- G_CALLBACK(source_window_delete_cb), sourcewin);
- g_signal_connect(G_OBJECT(window), "key_press_event",
- G_CALLBACK(key_pressed), sourcewin);
- gtk_widget_realize(window);
- scrolledwin = gtk_scrolled_window_new(NULL, NULL);
- gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolledwin),
- GTK_POLICY_AUTOMATIC,
- GTK_POLICY_AUTOMATIC);
- gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolledwin),
- GTK_SHADOW_IN);
- gtk_container_add(GTK_CONTAINER(window), scrolledwin);
- gtk_widget_show(scrolledwin);
- text = gtk_text_view_new();
- gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(text), GTK_WRAP_WORD_CHAR);
- gtk_text_view_set_editable(GTK_TEXT_VIEW(text), FALSE);
- if (!font_desc && prefs_common.textfont)
- font_desc = pango_font_description_from_string
- (prefs_common.textfont);
- if (font_desc)
- gtk_widget_modify_font(text, font_desc);
- gtk_container_add(GTK_CONTAINER(scrolledwin), text);
- gtk_widget_show(text);
- sourcewin->window = window;
- sourcewin->scrolledwin = scrolledwin;
- sourcewin->text = text;
- source_window_init();
- return sourcewin;
- }
- void source_window_show(SourceWindow *sourcewin)
- {
- gtk_widget_show_all(sourcewin->window);
- }
- static void source_window_destroy(SourceWindow *sourcewin)
- {
- if (sourcewin->updating) {
- debug_print("deferring destroy\n");
- sourcewin->deferred_destroy = TRUE;
- return;
- }
- gtk_widget_destroy(sourcewin->window);
- g_free(sourcewin);
- }
- void source_window_show_msg(SourceWindow *sourcewin, MsgInfo *msginfo)
- {
- gchar *file;
- gchar *title;
- FILE *fp;
- gchar buf[BUFFSIZE];
- cm_return_if_fail(msginfo != NULL);
- sourcewin->updating = TRUE;
- file = procmsg_get_message_file(msginfo);
- sourcewin->updating = FALSE;
-
- if (sourcewin->deferred_destroy) {
- g_free(file);
- source_window_destroy(sourcewin);
- return;
- }
- cm_return_if_fail(file != NULL);
- if ((fp = g_fopen(file, "rb")) == NULL) {
- FILE_OP_ERROR(file, "fopen");
- g_free(file);
- return;
- }
- debug_print("Displaying the source of %s ...\n", file);
- title = g_strdup_printf(_("%s - Source"), file);
- gtk_window_set_title(GTK_WINDOW(sourcewin->window), title);
- g_free(title);
- g_free(file);
- while (fgets(buf, sizeof(buf), fp) != NULL)
- source_window_append(sourcewin, buf);
- fclose(fp);
- }
- static void source_window_append(SourceWindow *sourcewin, const gchar *str)
- {
- GtkTextView *text = GTK_TEXT_VIEW(sourcewin->text);
- GtkTextBuffer *buffer = gtk_text_view_get_buffer(text);
- GtkTextIter iter;
- gchar *out;
- gint len;
- len = strlen(str) + 1;
- Xalloca(out, len, return);
- conv_utf8todisp(out, len, str);
- gtk_text_buffer_get_iter_at_offset(buffer, &iter, -1);
- gtk_text_buffer_insert(buffer, &iter, out, -1);
- }
- static void source_window_size_alloc_cb(GtkWidget *widget,
- GtkAllocation *allocation)
- {
- cm_return_if_fail(allocation != NULL);
- prefs_common.sourcewin_width = allocation->width;
- prefs_common.sourcewin_height = allocation->height;
- }
- static gint source_window_delete_cb(GtkWidget *widget, GdkEventAny *event,
- SourceWindow *sourcewin)
- {
- source_window_destroy(sourcewin);
- return TRUE;
- }
- static gboolean key_pressed(GtkWidget *widget, GdkEventKey *event,
- SourceWindow *sourcewin)
- {
- if (!event || !sourcewin) return FALSE;
-
- switch (event->keyval) {
- case GDK_A:
- case GDK_a:
- if ((event->state & GDK_CONTROL_MASK) != 0)
- gtk_editable_select_region(GTK_EDITABLE(sourcewin->text), 0, -1);
- break;
- case GDK_W:
- case GDK_w:
- if ((event->state & GDK_CONTROL_MASK) != 0)
- gtk_widget_destroy(sourcewin->window);
- break;
- case GDK_Escape:
- source_window_destroy(sourcewin);
- return TRUE;
- break;
- }
- return FALSE;
- }
|