2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 2004-2013 Hiroyuki Yamamoto & the Claws Mail team
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "claws-features.h"
31 #include <glib/gi18n.h>
33 #include <gdk/gdkkeysyms.h>
37 #include "prefs_common.h"
38 #include "prefs_gtk.h"
40 #include "gtk/gtkutils.h"
41 #include "gtk/prefswindow.h"
43 #include "manage_window.h"
45 typedef struct _ExtProgPage
49 GtkWidget
*window
; /* do not modify */
51 GtkWidget
*cmds_use_system_default_checkbtn
;
58 GtkWidget
*exteditor_label
;
59 GtkWidget
*exteditor_combo
;
60 GtkWidget
*exteditor_entry
;
62 GtkWidget
*astextviewer_label
;
63 GtkWidget
*astextviewer_entry
;
66 static void prefs_ext_prog_create_widget(PrefsPage
*_page
, GtkWindow
*window
,
69 ExtProgPage
*prefs_ext_prog
= (ExtProgPage
*) _page
;
73 GtkWidget
*hint_label
;
75 GtkWidget
*cmds_use_system_default_checkbtn
;
81 GtkWidget
*exteditor_label
;
82 GtkWidget
*exteditor_combo
;
83 GtkWidget
*exteditor_entry
;
84 GtkWidget
*astextviewer_label
;
85 GtkWidget
*astextviewer_entry
;
89 table
= gtk_table_new(2, 1, FALSE
);
90 gtk_widget_show(table
);
91 gtk_container_set_border_width(GTK_CONTAINER(table
), 8);
92 gtk_table_set_row_spacings(GTK_TABLE(table
), 4);
93 gtk_table_set_col_spacings(GTK_TABLE(table
), 8);
95 vbox
= gtk_vbox_new(TRUE
, 0);
96 gtk_widget_show(vbox
);
98 gtk_table_attach(GTK_TABLE (table
), vbox
, 0, 1, 0, 1,
99 (GtkAttachOptions
) (GTK_SHRINK
),
100 (GtkAttachOptions
) (0), 0, 0);
102 hint_label
= gtk_label_new(_("%s will be replaced with file name / URI"));
103 gtk_label_set_justify (GTK_LABEL (hint_label
), GTK_JUSTIFY_LEFT
);
104 gtkut_widget_set_small_font_size (hint_label
);
105 gtk_widget_show(hint_label
);
106 gtk_box_pack_start(GTK_BOX (vbox
),
107 hint_label
, FALSE
, FALSE
, 4);
109 table2
= gtk_table_new(7, 2, FALSE
);
110 gtk_widget_show(table2
);
111 gtk_container_set_border_width(GTK_CONTAINER(table2
), 8);
112 gtk_table_set_row_spacings(GTK_TABLE(table2
), 4);
113 gtk_table_set_col_spacings(GTK_TABLE(table2
), 8);
115 gtk_table_attach(GTK_TABLE (table
), table2
, 0, 1, 1, 2,
116 (GtkAttachOptions
) (GTK_EXPAND
| GTK_FILL
),
117 (GtkAttachOptions
) (0), 0, 0);
119 cmds_use_system_default_checkbtn
= gtk_check_button_new_with_label(
120 _("Use system defaults when possible"));
122 gtk_widget_show(cmds_use_system_default_checkbtn
);
123 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(cmds_use_system_default_checkbtn
),
124 prefs_common
.cmds_use_system_default
);
125 tmp
= g_find_program_in_path("xdg-open");
127 g_print("xdg-open not found\n");
128 gtk_widget_set_sensitive(cmds_use_system_default_checkbtn
, FALSE
);
129 gtk_widget_set_sensitive(cmds_use_system_default_checkbtn
, FALSE
);
130 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(cmds_use_system_default_checkbtn
),
136 gtk_table_attach(GTK_TABLE (table2
), cmds_use_system_default_checkbtn
, 0, 2, i
, i
+1,
137 (GtkAttachOptions
) (GTK_FILL
),
138 (GtkAttachOptions
) (0), 0, 2);
141 uri_label
= gtk_label_new (_("Web browser"));
142 gtk_widget_show(uri_label
);
144 gtk_table_attach(GTK_TABLE (table2
), uri_label
, 0, 1, i
, i
+1,
145 (GtkAttachOptions
) (GTK_FILL
),
146 (GtkAttachOptions
) (0), 0, 2);
147 gtk_label_set_justify(GTK_LABEL (uri_label
), GTK_JUSTIFY_RIGHT
);
148 gtk_misc_set_alignment(GTK_MISC (uri_label
), 1, 0.5);
150 uri_combo
= combobox_text_new(TRUE
,
152 "galeon --new-tab '%s'",
154 "mozilla -remote 'openurl(%s,new-window)'",
155 "netscape -remote 'openURL(%s, new-window)'",
157 "gnome-moz-remote --newwin '%s'",
158 "kfmclient openURL '%s'",
159 "opera -newwindow '%s'",
163 gtk_table_attach (GTK_TABLE (table2
), uri_combo
, 1, 2, i
, i
+1,
164 GTK_EXPAND
| GTK_FILL
, 0, 0, 0);
166 uri_entry
= gtk_bin_get_child(GTK_BIN((uri_combo
)));
167 gtk_entry_set_text(GTK_ENTRY(uri_entry
), prefs_common
.uri_cmd
? prefs_common
.uri_cmd
: "");
169 exteditor_label
= gtk_label_new (_("Text editor"));
170 gtk_widget_show(exteditor_label
);
173 gtk_table_attach(GTK_TABLE (table2
), exteditor_label
, 0, 1, i
, i
+1,
174 (GtkAttachOptions
) (GTK_FILL
),
175 (GtkAttachOptions
) (0), 0, 2);
176 gtk_label_set_justify(GTK_LABEL (exteditor_label
), GTK_JUSTIFY_RIGHT
);
177 gtk_misc_set_alignment(GTK_MISC (exteditor_label
), 1, 0.5);
179 exteditor_combo
= combobox_text_new(TRUE
,
184 "mgedit --no-fork %s",
190 gtk_table_attach (GTK_TABLE (table2
), exteditor_combo
, 1, 2, i
, i
+1,
191 GTK_EXPAND
| GTK_FILL
, 0, 0, 0);
193 exteditor_entry
= gtk_bin_get_child(GTK_BIN((exteditor_combo
)));
194 gtk_entry_set_text(GTK_ENTRY(exteditor_entry
),
195 prefs_common
.ext_editor_cmd
? prefs_common
.ext_editor_cmd
: "");
197 astextviewer_label
= gtk_label_new(_("Command for 'Display as text'"));
198 gtk_widget_show(astextviewer_label
);
201 gtk_table_attach(GTK_TABLE (table2
), astextviewer_label
, 0, 1, i
, i
+1,
202 (GtkAttachOptions
) (GTK_FILL
),
203 (GtkAttachOptions
) (0), 0, 2);
204 gtk_label_set_justify(GTK_LABEL (astextviewer_label
), GTK_JUSTIFY_RIGHT
);
205 gtk_misc_set_alignment(GTK_MISC (astextviewer_label
), 1, 0.5);
207 astextviewer_entry
= gtk_entry_new ();
208 gtk_widget_show(astextviewer_entry
);
209 CLAWS_SET_TIP(astextviewer_entry
,
210 _("This option enables MIME parts to be displayed in the "
211 "message view via a script when using the 'Display as text' "
212 "contextual menu item"));
214 gtk_table_attach(GTK_TABLE (table2
), astextviewer_entry
, 1, 2, i
, i
+1,
215 (GtkAttachOptions
) (GTK_EXPAND
| GTK_FILL
),
216 (GtkAttachOptions
) (0), 0, 0);
217 gtk_entry_set_text(GTK_ENTRY(astextviewer_entry
),
218 prefs_common
.mime_textviewer
? prefs_common
.mime_textviewer
: "");
221 SET_TOGGLE_SENSITIVITY_REVERSE (cmds_use_system_default_checkbtn
, uri_label
);
222 SET_TOGGLE_SENSITIVITY_REVERSE (cmds_use_system_default_checkbtn
, uri_combo
);
224 #if 0 /* we should do that, but it detaches the editor and breaks
225 compose.c's external composition. */
226 SET_TOGGLE_SENSITIVITY_REVERSE (cmds_use_system_default_checkbtn
, exteditor_label
);
227 SET_TOGGLE_SENSITIVITY_REVERSE (cmds_use_system_default_checkbtn
, exteditor_combo
);
230 prefs_ext_prog
->window
= GTK_WIDGET(window
);
232 prefs_ext_prog
->uri_entry
= uri_entry
;
234 prefs_ext_prog
->exteditor_entry
= exteditor_entry
;
235 prefs_ext_prog
->astextviewer_entry
= astextviewer_entry
;
236 prefs_ext_prog
->cmds_use_system_default_checkbtn
= cmds_use_system_default_checkbtn
;
237 prefs_ext_prog
->page
.widget
= table
;
240 static void prefs_ext_prog_save(PrefsPage
*_page
)
242 ExtProgPage
*ext_prog
= (ExtProgPage
*) _page
;
245 prefs_common
.uri_cmd
= gtk_editable_get_chars
246 (GTK_EDITABLE(ext_prog
->uri_entry
), 0, -1);
248 prefs_common
.ext_editor_cmd
= gtk_editable_get_chars
249 (GTK_EDITABLE(ext_prog
->exteditor_entry
), 0, -1);
250 prefs_common
.mime_textviewer
= gtk_editable_get_chars
251 (GTK_EDITABLE(ext_prog
->astextviewer_entry
), 0, -1);
252 prefs_common
.cmds_use_system_default
= gtk_toggle_button_get_active
253 (GTK_TOGGLE_BUTTON(ext_prog
->cmds_use_system_default_checkbtn
));
256 static void prefs_ext_prog_destroy_widget(PrefsPage
*_page
)
258 /* ExtProgPage *ext_prog = (ExtProgPage *) _page; */
262 ExtProgPage
*prefs_ext_prog
;
264 void prefs_ext_prog_init(void)
267 static gchar
*path
[3];
269 path
[0] = _("Message View");
270 path
[1] = _("External Programs");
273 page
= g_new0(ExtProgPage
, 1);
274 page
->page
.path
= path
;
275 page
->page
.create_widget
= prefs_ext_prog_create_widget
;
276 page
->page
.destroy_widget
= prefs_ext_prog_destroy_widget
;
277 page
->page
.save_page
= prefs_ext_prog_save
;
278 page
->page
.weight
= 155.0;
279 prefs_gtk_register_page((PrefsPage
*) page
);
280 prefs_ext_prog
= page
;
283 void prefs_ext_prog_done(void)
285 prefs_gtk_unregister_page((PrefsPage
*) prefs_ext_prog
);
286 g_free(prefs_ext_prog
);