claws-mail/src/prefs_ext_prog.c
Colin Leroy 84076b9bbd 2008-11-04 [colin] 3.6.1cvs15
* src/procmime.c
		w32: Fix getting content-type
	* src/mimeview.c
	* src/prefs_common.c
	* src/prefs_common.h
	* src/prefs_ext_prog.c
	* src/textview.c
		w32: better integration (use the
		standard file associations instead
		of our platform-unadapted open
		dialog)
	* src/mainwindow.c
	* src/common/utils.c
	* src/common/w32_reg.c
	* src/common/w32lib.h
		w32: better integration (allow
		setting Claws as default MUA)
2008-11-04 21:13:42 +00:00

328 lines
10 KiB
C

/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 2004 Hiroyuki Yamamoto & 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/>.
*
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "defs.h"
#include <stdio.h>
#include <stdlib.h>
#include <glib.h>
#include <glib/gi18n.h>
#include <gtk/gtk.h>
#include <gdk/gdkkeysyms.h>
#include "utils.h"
#include "combobox.h"
#include "prefs_common.h"
#include "prefs_gtk.h"
#include "gtk/gtkutils.h"
#include "gtk/prefswindow.h"
#include "manage_window.h"
typedef struct _ExtProgPage
{
PrefsPage page;
GtkWidget *window; /* do not modify */
GtkWidget *cmds_use_system_default_checkbtn;
#ifndef G_OS_WIN32
GtkWidget *uri_label;
GtkWidget *uri_combo;
GtkWidget *uri_entry;
GtkWidget *printcmd_label;
GtkWidget *printcmd_entry;
#endif
GtkWidget *exteditor_label;
GtkWidget *exteditor_combo;
GtkWidget *exteditor_entry;
GtkWidget *astextviewer_label;
GtkWidget *astextviewer_entry;
} ExtProgPage;
static void prefs_ext_prog_create_widget(PrefsPage *_page, GtkWindow *window,
gpointer data)
{
ExtProgPage *prefs_ext_prog = (ExtProgPage *) _page;
GtkWidget *table;
GtkWidget *vbox;
GtkWidget *hint_label;
GtkWidget *table2;
GtkWidget *cmds_use_system_default_checkbtn;
#ifndef G_OS_WIN32
GtkWidget *uri_label;
GtkWidget *uri_combo;
GtkWidget *uri_entry;
GtkWidget *printcmd_label;
GtkWidget *printcmd_entry;
#endif
GtkWidget *exteditor_label;
GtkWidget *exteditor_combo;
GtkWidget *exteditor_entry;
GtkWidget *astextviewer_label;
GtkWidget *astextviewer_entry;
CLAWS_TIP_DECL();
int i = 0;
gchar *tmp;
table = gtk_table_new(2, 1, FALSE);
gtk_widget_show(table);
gtk_container_set_border_width(GTK_CONTAINER(table), 8);
gtk_table_set_row_spacings(GTK_TABLE(table), 4);
gtk_table_set_col_spacings(GTK_TABLE(table), 8);
vbox = gtk_vbox_new(TRUE, 0);
gtk_widget_show(vbox);
gtk_table_attach(GTK_TABLE (table), vbox, 0, 1, 0, 1,
(GtkAttachOptions) (GTK_SHRINK),
(GtkAttachOptions) (0), 0, 0);
hint_label = gtk_label_new(_("%s will be replaced with file name / URI"));
gtk_label_set_justify (GTK_LABEL (hint_label), GTK_JUSTIFY_LEFT);
gtkut_widget_set_small_font_size (hint_label);
gtk_widget_show(hint_label);
gtk_box_pack_start(GTK_BOX (vbox),
hint_label, FALSE, FALSE, 4);
table2 = gtk_table_new(7, 2, FALSE);
gtk_widget_show(table2);
gtk_container_set_border_width(GTK_CONTAINER(table2), 8);
gtk_table_set_row_spacings(GTK_TABLE(table2), 4);
gtk_table_set_col_spacings(GTK_TABLE(table2), 8);
gtk_table_attach(GTK_TABLE (table), table2, 0, 1, 1, 2,
(GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
(GtkAttachOptions) (0), 0, 0);
cmds_use_system_default_checkbtn = gtk_check_button_new_with_label(
_("Use system defaults when possible"));
#ifndef MAEMO
gtk_widget_show(cmds_use_system_default_checkbtn);
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(cmds_use_system_default_checkbtn),
prefs_common.cmds_use_system_default);
#else
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(cmds_use_system_default_checkbtn),
TRUE);
#endif
tmp = g_find_program_in_path("xdg-open");
if (!tmp) {
g_print("xdg-open not found\n");
gtk_widget_set_sensitive(cmds_use_system_default_checkbtn, FALSE);
gtk_widget_set_sensitive(cmds_use_system_default_checkbtn, FALSE);
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(cmds_use_system_default_checkbtn),
FALSE);
} else
g_free(tmp);
gtk_table_attach(GTK_TABLE (table2), cmds_use_system_default_checkbtn, 0, 2, i, i+1,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (0), 0, 2);
#ifndef G_OS_WIN32
uri_label = gtk_label_new (_("Web browser"));
gtk_widget_show(uri_label);
#ifdef MAEMO
gtk_widget_set_sensitive(uri_label, FALSE);
#endif
i++;
gtk_table_attach(GTK_TABLE (table2), uri_label, 0, 1, i, i+1,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (0), 0, 2);
gtk_label_set_justify(GTK_LABEL (uri_label), GTK_JUSTIFY_RIGHT);
gtk_misc_set_alignment(GTK_MISC (uri_label), 1, 0.5);
uri_combo = combobox_text_new(TRUE,
DEFAULT_BROWSER_CMD,
"galeon --new-tab '%s'",
"galeon '%s'",
"mozilla -remote 'openurl(%s,new-window)'",
"netscape -remote 'openURL(%s, new-window)'",
"netscape '%s'",
"gnome-moz-remote --newwin '%s'",
"kfmclient openURL '%s'",
"opera -newwindow '%s'",
"rxvt -e w3m '%s'",
"rxvt -e lynx '%s'",
NULL);
#ifdef MAEMO
gtk_widget_set_sensitive(uri_combo, FALSE);
#endif
gtk_table_attach (GTK_TABLE (table2), uri_combo, 1, 2, i, i+1,
GTK_EXPAND | GTK_FILL, 0, 0, 0);
uri_entry = gtk_bin_get_child(GTK_BIN((uri_combo)));
gtk_entry_set_text(GTK_ENTRY(uri_entry), prefs_common.uri_cmd ? prefs_common.uri_cmd : "");
#endif
exteditor_label = gtk_label_new (_("Text editor"));
gtk_widget_show(exteditor_label);
i++;
gtk_table_attach(GTK_TABLE (table2), exteditor_label, 0, 1, i, i+1,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (0), 0, 2);
gtk_label_set_justify(GTK_LABEL (exteditor_label), GTK_JUSTIFY_RIGHT);
gtk_misc_set_alignment(GTK_MISC (exteditor_label), 1, 0.5);
exteditor_combo = combobox_text_new(TRUE,
"gedit %s",
"kedit %s",
"mousepad %s",
"nedit %s",
"mgedit --no-fork %s",
"emacs %s",
"xemacs %s",
"kterm -e jed %s",
"kterm -e vi %s",
NULL);
gtk_table_attach (GTK_TABLE (table2), exteditor_combo, 1, 2, i, i+1,
GTK_EXPAND | GTK_FILL, 0, 0, 0);
exteditor_entry = gtk_bin_get_child(GTK_BIN((exteditor_combo)));
gtk_entry_set_text(GTK_ENTRY(exteditor_entry),
prefs_common.ext_editor_cmd ? prefs_common.ext_editor_cmd : "");
astextviewer_label = gtk_label_new(_("Command for 'Display as text'"));
gtk_widget_show(astextviewer_label);
i++;
gtk_table_attach(GTK_TABLE (table2), astextviewer_label, 0, 1, i, i+1,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (0), 0, 2);
gtk_label_set_justify(GTK_LABEL (astextviewer_label), GTK_JUSTIFY_RIGHT);
gtk_misc_set_alignment(GTK_MISC (astextviewer_label), 1, 0.5);
astextviewer_entry = gtk_entry_new ();
gtk_widget_show(astextviewer_entry);
CLAWS_SET_TIP(astextviewer_entry,
_("This option enables MIME parts to be displayed in the "
"message view via a script when using the 'Display as text' "
"contextual menu item"));
gtk_table_attach(GTK_TABLE (table2), astextviewer_entry, 1, 2, i, i+1,
(GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
(GtkAttachOptions) (0), 0, 0);
gtk_entry_set_text(GTK_ENTRY(astextviewer_entry),
prefs_common.mime_textviewer ? prefs_common.mime_textviewer : "");
#ifndef G_OS_WIN32
printcmd_label = gtk_label_new (_("Print command"));
#if !defined(USE_GNOMEPRINT) && !GTK_CHECK_VERSION(2,10,0)
gtk_widget_show(printcmd_label);
#endif
i++;
gtk_table_attach(GTK_TABLE (table2), printcmd_label, 0, 1, i, i+1,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (0), 0, 2);
gtk_label_set_justify(GTK_LABEL (printcmd_label), GTK_JUSTIFY_RIGHT);
gtk_misc_set_alignment(GTK_MISC (printcmd_label), 1, 0.5);
printcmd_entry = gtk_entry_new ();
#if !defined(USE_GNOMEPRINT) && !GTK_CHECK_VERSION(2,10,0)
gtk_widget_show(printcmd_entry);
#endif
gtk_table_attach(GTK_TABLE (table2), printcmd_entry, 1, 2, i, i+1,
(GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
(GtkAttachOptions) (0), 0, 0);
gtk_entry_set_text(GTK_ENTRY(printcmd_entry), prefs_common.print_cmd ? prefs_common.print_cmd : "");
#endif
#ifndef G_OS_WIN32
SET_TOGGLE_SENSITIVITY_REVERSE (cmds_use_system_default_checkbtn, uri_label);
SET_TOGGLE_SENSITIVITY_REVERSE (cmds_use_system_default_checkbtn, uri_combo);
#endif
#if 0 /* we should do that, but it detaches the editor and breaks
compose.c's external composition. */
SET_TOGGLE_SENSITIVITY_REVERSE (cmds_use_system_default_checkbtn, exteditor_label);
SET_TOGGLE_SENSITIVITY_REVERSE (cmds_use_system_default_checkbtn, exteditor_combo);
#endif
prefs_ext_prog->window = GTK_WIDGET(window);
#ifndef G_OS_WIN32
prefs_ext_prog->uri_entry = uri_entry;
prefs_ext_prog->printcmd_entry = printcmd_entry;
#endif
prefs_ext_prog->exteditor_entry = exteditor_entry;
prefs_ext_prog->astextviewer_entry = astextviewer_entry;
prefs_ext_prog->cmds_use_system_default_checkbtn = cmds_use_system_default_checkbtn;
prefs_ext_prog->page.widget = table;
}
static void prefs_ext_prog_save(PrefsPage *_page)
{
ExtProgPage *ext_prog = (ExtProgPage *) _page;
#ifndef G_OS_WIN32
prefs_common.uri_cmd = gtk_editable_get_chars
(GTK_EDITABLE(ext_prog->uri_entry), 0, -1);
prefs_common.print_cmd = gtk_editable_get_chars
(GTK_EDITABLE(ext_prog->printcmd_entry), 0, -1);
#endif
prefs_common.ext_editor_cmd = gtk_editable_get_chars
(GTK_EDITABLE(ext_prog->exteditor_entry), 0, -1);
prefs_common.mime_textviewer = gtk_editable_get_chars
(GTK_EDITABLE(ext_prog->astextviewer_entry), 0, -1);
prefs_common.cmds_use_system_default = gtk_toggle_button_get_active
(GTK_TOGGLE_BUTTON(ext_prog->cmds_use_system_default_checkbtn));
}
static void prefs_ext_prog_destroy_widget(PrefsPage *_page)
{
/* ExtProgPage *ext_prog = (ExtProgPage *) _page; */
}
ExtProgPage *prefs_ext_prog;
void prefs_ext_prog_init(void)
{
ExtProgPage *page;
static gchar *path[3];
path[0] = _("Message View");
path[1] = _("External Programs");
path[2] = NULL;
page = g_new0(ExtProgPage, 1);
page->page.path = path;
page->page.create_widget = prefs_ext_prog_create_widget;
page->page.destroy_widget = prefs_ext_prog_destroy_widget;
page->page.save_page = prefs_ext_prog_save;
page->page.weight = 155.0;
prefs_gtk_register_page((PrefsPage *) page);
prefs_ext_prog = page;
}
void prefs_ext_prog_done(void)
{
prefs_gtk_unregister_page((PrefsPage *) prefs_ext_prog);
g_free(prefs_ext_prog);
}