claws-mail/src/sourcewindow.c

223 lines
6 KiB
C
Raw Normal View History

2001-04-19 14:21:46 +02:00
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 1999-2005 Hiroyuki Yamamoto
2001-04-19 14:21:46 +02:00
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "defs.h"
#include <glib.h>
#include <gdk/gdkkeysyms.h>
#include <gtk/gtkwidget.h>
#include <gtk/gtkwindow.h>
#include <gtk/gtksignal.h>
#include <gtk/gtkscrolledwindow.h>
#include <gtk/gtktext.h>
#include <gtk/gtkstyle.h>
#include <stdio.h>
#include <stdlib.h>
#include "intl.h"
#include "sourcewindow.h"
#include "utils.h"
#include "gtkutils.h"
#include "prefs_common.h"
2003-02-18 06:42:13 +01:00
static void source_window_size_alloc_cb (GtkWidget *widget,
GtkAllocation *allocation);
2001-04-19 14:21:46 +02:00
static void source_window_destroy_cb (GtkWidget *widget,
SourceWindow *sourcewin);
2003-10-05 12:10:30 +02:00
static gboolean key_pressed (GtkWidget *widget,
2001-04-19 14:21:46 +02:00
GdkEventKey *event,
SourceWindow *sourcewin);
static void source_window_init()
{
}
SourceWindow *source_window_create(void)
{
SourceWindow *sourcewin;
GtkWidget *window;
GtkWidget *scrolledwin;
GtkWidget *text;
2003-10-05 12:10:30 +02:00
static PangoFontDescription *font_desc = NULL;
2001-04-19 14:21:46 +02:00
static GdkGeometry geometry;
2002-08-15 09:38:17 +02:00
debug_print("Creating source window...\n");
2001-04-19 14:21:46 +02:00
sourcewin = g_new0(SourceWindow, 1);
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_window_set_title(GTK_WINDOW(window), _("Source of the message"));
gtk_window_set_resizable(GTK_WINDOW(window), TRUE);
2003-10-05 12:10:30 +02:00
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);
2003-10-05 12:10:30 +02:00
g_signal_connect(G_OBJECT(window), "size_allocate",
G_CALLBACK(source_window_size_alloc_cb),
sourcewin);
g_signal_connect(G_OBJECT(window), "destroy",
G_CALLBACK(source_window_destroy_cb),
sourcewin);
g_signal_connect(G_OBJECT(window), "key_press_event",
G_CALLBACK(key_pressed), sourcewin);
2001-04-19 14:21:46 +02:00
gtk_widget_realize(window);
scrolledwin = gtk_scrolled_window_new(NULL, NULL);
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolledwin),
GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolledwin),
GTK_SHADOW_IN);
2001-04-19 14:21:46 +02:00
gtk_container_add(GTK_CONTAINER(window), scrolledwin);
gtk_widget_show(scrolledwin);
2003-10-05 12:10:30 +02:00
text = gtk_text_view_new();
gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(text), GTK_WRAP_WORD_CHAR);
2003-10-05 12:10:30 +02:00
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);
2004-01-12 22:28:31 +01:00
if (font_desc)
2003-10-05 12:10:30 +02:00
gtk_widget_modify_font(text, font_desc);
2001-04-19 14:21:46 +02:00
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);
}
void source_window_destroy(SourceWindow *sourcewin)
{
g_free(sourcewin);
}
void source_window_show_msg(SourceWindow *sourcewin, MsgInfo *msginfo)
{
gchar *file;
gchar *title;
FILE *fp;
gchar buf[BUFFSIZE];
g_return_if_fail(msginfo != NULL);
2002-02-05 14:27:32 +01:00
file = procmsg_get_message_file(msginfo);
2001-04-19 14:21:46 +02:00
g_return_if_fail(file != NULL);
2002-03-14 11:17:32 +01:00
if ((fp = fopen(file, "rb")) == NULL) {
2001-04-19 14:21:46 +02:00
FILE_OP_ERROR(file, "fopen");
g_free(file);
return;
}
2002-08-15 09:38:17 +02:00
debug_print("Displaying the source of %s ...\n", file);
2001-04-19 14:21:46 +02:00
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);
}
void source_window_append(SourceWindow *sourcewin, const gchar *str)
{
2003-10-05 12:10:30 +02:00
GtkTextView *text = GTK_TEXT_VIEW(sourcewin->text);
GtkTextBuffer *buffer = gtk_text_view_get_buffer(text);
GtkTextIter iter;
2003-02-18 06:42:13 +01:00
gchar *out;
gint len;
len = strlen(str) + 1;
Xalloca(out, len, return);
2003-02-18 06:42:13 +01:00
conv_localetodisp(out, len, str);
2004-07-18 13:39:58 +02:00
if (!g_utf8_validate(out, -1, NULL)) {
gchar *buf;
gint buflen;
const gchar *src_codeset, *dest_codeset;
src_codeset = conv_get_current_charset_str();
dest_codeset = CS_UTF_8;
buf = conv_codeset_strdup(out, src_codeset, dest_codeset);
gtk_text_buffer_get_iter_at_offset(buffer, &iter, -1);
gtk_text_buffer_insert(buffer, &iter, buf, -1);
g_free(buf);
} else {
gtk_text_buffer_get_iter_at_offset(buffer, &iter, -1);
gtk_text_buffer_insert(buffer, &iter, out, -1);
}
2003-02-18 06:42:13 +01:00
}
static void source_window_size_alloc_cb(GtkWidget *widget,
GtkAllocation *allocation)
{
g_return_if_fail(allocation != NULL);
prefs_common.sourcewin_width = allocation->width;
prefs_common.sourcewin_height = allocation->height;
2001-04-19 14:21:46 +02:00
}
static void source_window_destroy_cb(GtkWidget *widget,
SourceWindow *sourcewin)
{
source_window_destroy(sourcewin);
}
2003-10-05 12:10:30 +02:00
static gboolean key_pressed(GtkWidget *widget, GdkEventKey *event,
SourceWindow *sourcewin)
2001-04-19 14:21:46 +02:00
{
2003-10-05 12:10:30 +02:00
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;
2004-07-18 13:39:58 +02:00
case GDK_W:
case GDK_w:
if ((event->state & GDK_CONTROL_MASK) != 0)
gtk_widget_destroy(sourcewin->window);
break;
case GDK_Escape:
2001-04-19 14:21:46 +02:00
gtk_widget_destroy(sourcewin->window);
break;
}
2003-10-05 12:10:30 +02:00
return FALSE;
2001-04-19 14:21:46 +02:00
}