Merge branch '1556_find_all_i18n'
[pantumic.git] / edit / editoptions.c
blob657cb92891ee40b9a12490a58b66f5aae7af16d6
1 /* editor options dialog box
3 Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003, 2004, 2005, 2007
4 Free Software Foundation, Inc.
6 Authors: 1996, 1997 Paul Sheer
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 02110-1301, USA.
24 /** \file
25 * \brief Source: editor options dialog box
26 * \author Paul Sheer
27 * \date 1996, 1997
30 #include <config.h>
32 #include <stdlib.h> /* atoi(), NULL */
34 #include "../src/global.h"
36 #include "edit-impl.h"
37 #include "usermap.h"
38 #include "../src/dialog.h" /* B_CANCEL */
39 #include "../src/wtools.h" /* QuickDialog */
41 #define OPT_DLG_H 21
42 #define OPT_DLG_W 72
44 static const char *key_emu_str[] =
46 N_("Intuitive"),
47 N_("Emacs"),
48 N_("User-defined"),
49 NULL
52 static const char *wrap_str[] =
54 N_("None"),
55 N_("Dynamic paragraphing"),
56 N_("Type writer wrap"),
57 NULL
60 static void
61 i18n_translate_array (const char *array[])
63 while (*array != NULL) {
64 *array = _(*array);
65 array++;
69 void
70 edit_options_dialog (void)
72 char wrap_length[16], tab_spacing[16], *p, *q;
73 int wrap_mode = 0;
74 int old_syntax_hl;
75 int tedit_key_emulation = edit_key_emulation;
77 QuickWidget quick_widgets[] =
79 /* 0 */ QUICK_BUTTON (6, 10, OPT_DLG_H - 3, OPT_DLG_H, N_("&Cancel"), B_CANCEL, NULL),
80 /* 1 */ QUICK_BUTTON (2, 10, OPT_DLG_H - 3, OPT_DLG_H, N_("&OK"), B_ENTER, NULL),
81 /* 2 */ QUICK_LABEL (OPT_DLG_W / 2, OPT_DLG_W, OPT_DLG_H - 6, OPT_DLG_H, N_("Word wrap line length: ")),
82 /* 3 */ QUICK_INPUT (OPT_DLG_W / 2 + 24, OPT_DLG_W, OPT_DLG_H - 6, OPT_DLG_H,
83 wrap_length, OPT_DLG_W / 2 - 4 - 24, 0, "edit-word-wrap", &p),
84 /* 4 */ QUICK_LABEL (OPT_DLG_W / 2, OPT_DLG_W, OPT_DLG_H - 7, OPT_DLG_H, N_("Tab spacing: ")),
85 /* 5 */ QUICK_INPUT (OPT_DLG_W / 2 + 24, OPT_DLG_W, OPT_DLG_H - 7, OPT_DLG_H,
86 tab_spacing, OPT_DLG_W / 2 - 4 - 24, 0, "edit-tab-spacing", &q),
87 /* 6 */ QUICK_CHECKBOX (OPT_DLG_W / 2 + 1, OPT_DLG_W, OPT_DLG_H - 8, OPT_DLG_H,
88 N_("Cursor beyond end of line"), &option_cursor_beyond_eol),
89 /* 7 */ QUICK_CHECKBOX (OPT_DLG_W / 2 + 1, OPT_DLG_W, OPT_DLG_H - 9, OPT_DLG_H,
90 N_("Pers&istent selection"), &option_persistent_selections),
91 /* 8 */ QUICK_CHECKBOX (OPT_DLG_W / 2 + 1, OPT_DLG_W, OPT_DLG_H - 10, OPT_DLG_H,
92 N_("Synta&x highlighting"), &option_syntax_highlighting),
93 /* 9 */ QUICK_CHECKBOX (OPT_DLG_W / 2 + 1, OPT_DLG_W, OPT_DLG_H - 11, OPT_DLG_H,
94 N_("Visible tabs"), &visible_tabs),
95 /* 10 */ QUICK_CHECKBOX (OPT_DLG_W / 2 + 1, OPT_DLG_W, OPT_DLG_H - 12, OPT_DLG_H,
96 N_("Visible trailing spaces"), &visible_tws),
97 /* 11 */ QUICK_CHECKBOX (OPT_DLG_W / 2 + 1, OPT_DLG_W, OPT_DLG_H - 13, OPT_DLG_H,
98 N_("Save file &position"), &option_save_position),
99 /* 12 */ QUICK_CHECKBOX (OPT_DLG_W / 2 + 1, OPT_DLG_W, OPT_DLG_H - 14, OPT_DLG_H,
100 N_("Confir&m before saving"), &edit_confirm_save),
101 /* 13 */ QUICK_CHECKBOX (OPT_DLG_W / 2 + 1, OPT_DLG_W, OPT_DLG_H - 15, OPT_DLG_H,
102 N_("Fill tabs with &spaces"), &option_fill_tabs_with_spaces),
103 /* 14 */ QUICK_CHECKBOX (OPT_DLG_W / 2 + 1, OPT_DLG_W, OPT_DLG_H - 16, OPT_DLG_H,
104 N_("&Return does autoindent"), &option_return_does_auto_indent),
105 /* 15 */ QUICK_CHECKBOX (OPT_DLG_W / 2 + 1, OPT_DLG_W, OPT_DLG_H - 17, OPT_DLG_H,
106 N_("&Backspace through tabs"), &option_backspace_through_tabs),
107 /* 16 */ QUICK_CHECKBOX (OPT_DLG_W / 2 + 1, OPT_DLG_W, OPT_DLG_H - 18, OPT_DLG_H,
108 N_("&Fake half tabs"), &option_fake_half_tabs),
109 /* 17 */ QUICK_RADIO (5, OPT_DLG_W, OPT_DLG_H - 11, OPT_DLG_H, 3, wrap_str, &wrap_mode),
110 /* 18 */ QUICK_LABEL (4, OPT_DLG_W, OPT_DLG_H - 12, OPT_DLG_H, N_("Wrap mode")),
111 /* 19 */ QUICK_RADIO (5, OPT_DLG_W, OPT_DLG_H - 17, OPT_DLG_H, 3, key_emu_str, &tedit_key_emulation),
112 /* 10 */ QUICK_LABEL (4, OPT_DLG_W, OPT_DLG_H - 18, OPT_DLG_H, N_("Key emulation")),
113 QUICK_END
116 QuickDialog Quick_options =
118 OPT_DLG_W, OPT_DLG_H, -1, -1, N_(" Editor options "),
119 "[Editor options]", quick_widgets, FALSE
122 #ifdef ENABLE_NLS
123 static gboolean i18n_flag = FALSE;
125 if (!i18n_flag) {
126 i18n_translate_array (key_emu_str);
127 i18n_translate_array (wrap_str);
128 i18n_flag = TRUE;
130 #endif
132 g_snprintf (wrap_length, sizeof (wrap_length), "%d",
133 option_word_wrap_line_length);
134 g_snprintf (tab_spacing, sizeof (tab_spacing), "%d",
135 option_tab_spacing);
137 if (option_auto_para_formatting)
138 wrap_mode = 1;
139 else if (option_typewriter_wrap)
140 wrap_mode = 2;
141 else
142 wrap_mode = 0;
144 if (quick_dialog (&Quick_options) == B_CANCEL)
145 return;
147 old_syntax_hl = option_syntax_highlighting;
149 if (p) {
150 option_word_wrap_line_length = atoi (p);
151 g_free (p);
153 if (q) {
154 option_tab_spacing = atoi (q);
155 if (option_tab_spacing <= 0)
156 option_tab_spacing = 8;
157 g_free (q);
160 if (wrap_mode == 1) {
161 option_auto_para_formatting = 1;
162 option_typewriter_wrap = 0;
163 } else if (wrap_mode == 2) {
164 option_auto_para_formatting = 0;
165 option_typewriter_wrap = 1;
166 } else {
167 option_auto_para_formatting = 0;
168 option_typewriter_wrap = 0;
171 /* Reload menu if key emulation has changed */
172 if (edit_key_emulation != tedit_key_emulation) {
173 edit_key_emulation = tedit_key_emulation;
174 edit_reload_menu ();
177 /* Load or unload syntax rules if the option has changed */
178 if (option_syntax_highlighting != old_syntax_hl)
179 edit_load_syntax (wedit, NULL, option_syntax_type);
180 /* Load usermap if it's needed */
181 edit_load_user_map (wedit);