Reverted the use of bool in favour of gboolean
[midnight-commander.git] / src / option.c
blob1649b05373119d66d8832c3e24440fe538eb48f2
1 /* Configure box module for the Midnight Commander
2 Copyright (C) 1994, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
3 2007 Free Software Foundation, Inc.
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 2 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, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 #include <config.h>
22 #include <stdio.h>
23 #include <string.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <unistd.h>
29 #include "global.h"
30 #include "tty.h"
31 #include "win.h"
32 #include "color.h"
33 #include "dialog.h"
34 #include "widget.h"
35 #include "setup.h" /* For save_setup() */
36 #include "main.h"
37 #include "profile.h" /* For sync_profiles */
39 #include "panel.h" /* Needed for the externs */
40 #include "file.h" /* safe_delete */
41 #include "layout.h" /* For nice_rotating_dash */
42 #include "option.h"
43 static Dlg_head *conf_dlg;
45 #define TOGGLE_VARIABLE 0
47 static int first_width, second_width;
49 static struct {
50 const char *text;
51 int *variable;
52 void (*toggle_function)(void);
53 WCheck *widget;
54 } check_options [] = {
55 /* other options */
56 {N_("safe de&Lete"), &safe_delete, TOGGLE_VARIABLE, 0 },
57 {N_("cd follows lin&Ks"), &cd_symlinks, TOGGLE_VARIABLE, 0 },
58 {N_("L&ynx-like motion"), &navigate_with_arrows,TOGGLE_VARIABLE, 0 },
59 {N_("rotatin&G dash"), &nice_rotating_dash,TOGGLE_VARIABLE, 0 },
60 {N_("co&Mplete: show all"),&show_all_if_ambiguous,TOGGLE_VARIABLE, 0 },
61 {N_("&Use internal view"), &use_internal_view, TOGGLE_VARIABLE, 0 },
62 {N_("use internal ed&It"), &use_internal_edit, TOGGLE_VARIABLE, 0 },
63 {N_("auto m&Enus"), &auto_menu, TOGGLE_VARIABLE, 0 },
64 {N_("&Auto save setup"), &auto_save_setup, TOGGLE_VARIABLE, 0 },
65 {N_("shell &Patterns"), &easy_patterns, TOGGLE_VARIABLE, 0 },
66 {N_("Compute &Totals"), &file_op_compute_totals, TOGGLE_VARIABLE, 0 },
67 {N_("&Verbose operation"), &verbose, TOGGLE_VARIABLE, 0 },
68 {N_("Mkdir autoname"), &auto_fill_mkdir_name, TOGGLE_VARIABLE, 0 },
69 /* panel options */
70 {N_("&Fast dir reload"), &fast_reload, toggle_fast_reload, 0 },
71 {N_("mi&X all files"), &mix_all_files, toggle_mix_all_files, 0 },
72 {N_("&Drop down menus"), &drop_menus, TOGGLE_VARIABLE, 0 },
73 {N_("ma&Rk moves down"), &mark_moves_down, TOGGLE_VARIABLE, 0 },
74 {N_("show &Hidden files"), &show_dot_files, toggle_show_hidden, 0 },
75 {N_("show &Backup files"), &show_backups, toggle_show_backup, 0 },
76 { 0, 0, 0, 0 }
79 /* Make sure this corresponds to the check_options structure */
80 #define OTHER_OPTIONS 13
81 #define PANEL_OPTIONS 6
83 static WRadio *pause_radio;
85 static const char *pause_options [3] = {
86 N_("&Never"),
87 N_("on dumb &Terminals"),
88 N_("Alwa&ys") };
90 #define PAUSE_OPTIONS (sizeof(pause_options) / sizeof(pause_options[0]))
92 /* Heights of the panes */
93 #define PY 3
94 #define OY PY
95 /* Align bottoms of "pause after run" and "other options" */
96 #define RY (OTHER_OPTIONS - PAUSE_OPTIONS + OY)
97 #define DLG_Y (OTHER_OPTIONS + 9)
98 #define BY (DLG_Y - 3)
100 /* Horizontal dimensions */
101 #define X_MARGIN 3
102 #define X_PANE_GAP 1
103 #define PX X_MARGIN
104 #define RX X_MARGIN
105 #define OX (first_width + X_MARGIN + X_PANE_GAP)
107 /* Create the "Configure options" dialog */
108 static void
109 init_configure (void)
111 int i;
112 static int i18n_config_flag = 0;
113 static int b1, b2, b3;
114 const char *ok_button = _("&OK");
115 const char *cancel_button = _("&Cancel");
116 const char *save_button = _("&Save");
117 static const char *title1, *title2, *title3;
119 if (!i18n_config_flag) {
120 register int l1;
122 /* Similar code is in layout.c (init_layout()) */
124 title1 = _(" Panel options ");
125 title2 = _(" Pause after run... ");
126 title3 = _(" Other options ");
128 first_width = strlen (title1) + 1;
129 second_width = strlen (title3) + 1;
131 for (i = 0; check_options[i].text; i++) {
132 check_options[i].text = _(check_options[i].text);
133 l1 = strlen (check_options[i].text) + 7;
134 if (i >= OTHER_OPTIONS) {
135 if (l1 > first_width)
136 first_width = l1;
137 } else {
138 if (l1 > second_width)
139 second_width = l1;
143 i = PAUSE_OPTIONS;
144 while (i--) {
145 pause_options[i] = _(pause_options[i]);
146 l1 = strlen (pause_options[i]) + 7;
147 if (l1 > first_width)
148 first_width = l1;
151 l1 = strlen (title2) + 1;
152 if (l1 > first_width)
153 first_width = l1;
155 l1 = 11 + strlen (ok_button)
156 + strlen (save_button)
157 + strlen (cancel_button);
159 i = (first_width + second_width - l1) / 4;
160 b1 = 5 + i;
161 b2 = b1 + strlen (ok_button) + i + 6;
162 b3 = b2 + strlen (save_button) + i + 4;
164 i18n_config_flag = 1;
167 conf_dlg =
168 create_dlg (0, 0, DLG_Y,
169 first_width + second_width + 2 * X_MARGIN + X_PANE_GAP,
170 dialog_colors, NULL, "[Configuration]",
171 _("Configure options"), DLG_CENTER | DLG_REVERSE);
173 add_widget (conf_dlg,
174 groupbox_new (PX, PY, first_width, PANEL_OPTIONS + 2, title1));
176 add_widget (conf_dlg,
177 groupbox_new (RX, RY, first_width, PAUSE_OPTIONS + 2, title2));
179 add_widget (conf_dlg,
180 groupbox_new (OX, OY, second_width, OTHER_OPTIONS + 2, title3));
182 add_widget (conf_dlg,
183 button_new (BY, b3, B_CANCEL, NORMAL_BUTTON,
184 cancel_button, 0));
186 add_widget (conf_dlg,
187 button_new (BY, b2, B_EXIT, NORMAL_BUTTON,
188 save_button, 0));
190 add_widget (conf_dlg,
191 button_new (BY, b1, B_ENTER, DEFPUSH_BUTTON,
192 ok_button, 0));
194 #define XTRACT(i) *check_options[i].variable, check_options[i].text
196 /* Add checkboxes for "other options" */
197 for (i = 0; i < OTHER_OPTIONS; i++) {
198 check_options[i].widget =
199 check_new (OY + (OTHER_OPTIONS - i), OX + 2, XTRACT (i));
200 add_widget (conf_dlg, check_options[i].widget);
203 pause_radio =
204 radio_new (RY + 1, RX + 2, 3, pause_options);
205 pause_radio->sel = pause_after_run;
206 add_widget (conf_dlg, pause_radio);
208 /* Add checkboxes for "panel options" */
209 for (i = 0; i < PANEL_OPTIONS; i++) {
210 check_options[i + OTHER_OPTIONS].widget =
211 check_new (PY + (PANEL_OPTIONS - i), PX + 2,
212 XTRACT (i + OTHER_OPTIONS));
213 add_widget (conf_dlg, check_options[i + OTHER_OPTIONS].widget);
218 void configure_box (void)
220 int result, i;
222 init_configure ();
223 run_dlg (conf_dlg);
225 result = conf_dlg->ret_value;
226 if (result == B_ENTER || result == B_EXIT){
227 for (i = 0; check_options [i].text; i++)
228 if (check_options [i].widget->state & C_CHANGE){
229 if (check_options [i].toggle_function)
230 (*check_options [i].toggle_function)();
231 else
232 *check_options [i].variable =
233 !(*check_options [i].variable);
235 pause_after_run = pause_radio->sel;
238 /* If they pressed the save button */
239 if (result == B_EXIT){
240 save_configure ();
241 sync_profiles ();
244 destroy_dlg (conf_dlg);