309 lines
9.9 KiB
C
309 lines
9.9 KiB
C
/*
|
|
* Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
|
|
* Copyright (C) 2004-2018 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"
|
|
#include "claws-features.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;
|
|
#endif /* !G_OS_WIN32 */
|
|
|
|
GtkWidget *exteditor_label;
|
|
#ifdef CAN_USE_EXTERNAL_EDITOR
|
|
GtkWidget *exteditor_combo;
|
|
GtkWidget *exteditor_entry;
|
|
#endif /* CAN_USE_EXTERNAL_EDITOR */
|
|
|
|
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;
|
|
#endif /* !G_OS_WIN32 */
|
|
|
|
#ifdef CAN_USE_EXTERNAL_EDITOR
|
|
GtkWidget *exteditor_label;
|
|
GtkWidget *exteditor_combo;
|
|
GtkWidget *exteditor_entry;
|
|
#endif /* CAN_USE_EXTERNAL_EDITOR */
|
|
|
|
GtkWidget *astextviewer_label;
|
|
GtkWidget *astextviewer_entry;
|
|
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);
|
|
|
|
#ifdef G_OS_UNIX
|
|
hint_label = gtk_label_new(_("For the text editor, %w will be replaced with GtkSocket ID"));
|
|
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);
|
|
#endif
|
|
|
|
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"));
|
|
|
|
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);
|
|
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);
|
|
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_label_set_xalign(GTK_LABEL (uri_label), 1.0);
|
|
|
|
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);
|
|
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 /* !G_OS_WIN32 */
|
|
|
|
#ifdef CAN_USE_EXTERNAL_EDITOR
|
|
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_label_set_xalign(GTK_LABEL (exteditor_label), 1.0);
|
|
|
|
exteditor_combo = combobox_text_new(TRUE,
|
|
"gedit %s",
|
|
"kedit %s",
|
|
"mousepad %s",
|
|
"nedit %s",
|
|
"mgedit --no-fork %s",
|
|
"emacs %s",
|
|
"xemacs %s",
|
|
#ifdef G_OS_UNIX
|
|
"gvim -f --socketid %w %s",
|
|
"emacsclient --parent-id %w %s",
|
|
#endif
|
|
"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 : "");
|
|
#endif /* CAN_USE_EXTERNAL_EDITOR */
|
|
|
|
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_label_set_xalign(GTK_LABEL (astextviewer_label), 1.0);
|
|
|
|
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
|
|
SET_TOGGLE_SENSITIVITY_REVERSE (cmds_use_system_default_checkbtn, uri_label);
|
|
SET_TOGGLE_SENSITIVITY_REVERSE (cmds_use_system_default_checkbtn, uri_combo);
|
|
#endif /* !G_OS_WIN32 */
|
|
|
|
#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;
|
|
#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);
|
|
#endif /* !G_OS_WIN32 */
|
|
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);
|
|
}
|