3 /* variables.c -- how to manipulate user visible variables in Info.
4 Id: variables.c,v 1.3 2004/04/11 17:56:46 karl Exp
6 Copyright (C) 1993, 1997, 2001, 2002, 2004 Free Software Foundation, Inc.
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, or (at your option)
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 Written by Brian Fox (bfox@ai.mit.edu). */
25 #include "variables.h"
27 /* **************************************************************** */
29 /* User Visible Variables in Info */
31 /* **************************************************************** */
33 /* Choices used by the completer when reading a zero/non-zero value for
35 static char *on_off_choices
[] = { "Off", "On", (char *)NULL
};
37 VARIABLE_ALIST info_variables
[] = {
38 { "automatic-footnotes",
39 N_("When \"On\", footnotes appear and disappear automatically"),
40 &auto_footnotes_p
, (char **)on_off_choices
},
43 N_("When \"On\", creating or deleting a window resizes other windows"),
44 &auto_tiling_p
, (char **)on_off_choices
},
47 N_("When \"On\", flash the screen instead of ringing the bell"),
48 &terminal_use_visible_bell_p
, (char **)on_off_choices
},
51 N_("When \"On\", errors cause the bell to ring"),
52 &info_error_rings_bell_p
, (char **)on_off_choices
},
54 { "gc-compressed-files",
55 N_("When \"On\", Info garbage collects files which had to be uncompressed"),
56 &gc_compressed_files
, (char **)on_off_choices
},
58 N_("When \"On\", the portion of the matched search string is highlighted"),
59 &show_index_match
, (char **)on_off_choices
},
62 N_("Controls what happens when scrolling is requested at the end of a node"),
63 &info_scroll_behaviour
, (char **)info_scroll_choices
},
66 N_("The number lines to scroll when the cursor moves out of the window"),
67 &window_scroll_step
, (char **)NULL
},
70 N_("When \"On\", Info accepts and displays ISO Latin characters"),
71 &ISO_Latin_p
, (char **)on_off_choices
},
73 { (char *)NULL
, (char *)NULL
, (int *)NULL
, (char **)NULL
}
76 DECLARE_INFO_COMMAND (describe_variable
, _("Explain the use of a variable"))
81 /* Get the variable's name. */
82 var
= read_variable_name ((char *) _("Describe variable: "), window
);
87 description
= (char *)xmalloc (20 + strlen (var
->name
)
88 + strlen (_(var
->doc
)));
91 sprintf (description
, "%s (%s): %s.",
92 var
->name
, var
->choices
[*(var
->value
)], _(var
->doc
));
94 sprintf (description
, "%s (%d): %s.",
95 var
->name
, *(var
->value
), _(var
->doc
));
97 window_message_in_echo_area ("%s", description
, NULL
);
101 DECLARE_INFO_COMMAND (set_variable
, _("Set the value of an Info variable"))
106 /* Get the variable's name and value. */
107 var
= read_variable_name ((char *) _("Set variable: "), window
);
112 /* Read a new value for this variable. */
120 if (info_explicit_arg
|| count
!= 1)
121 potential_value
= count
;
123 potential_value
= *(var
->value
);
125 sprintf (prompt
, _("Set %s to value (%d): "),
126 var
->name
, potential_value
);
127 line
= info_read_in_echo_area (active_window
, prompt
);
129 /* If no error was printed, clear the echo area. */
130 if (!info_error_was_printed
)
131 window_clear_echo_area ();
137 /* If the user specified a value, get that, otherwise, we are done. */
138 canonicalize_whitespace (line
);
140 *(var
->value
) = atoi (line
);
142 *(var
->value
) = potential_value
;
149 REFERENCE
**array
= (REFERENCE
**)NULL
;
153 for (i
= 0; var
->choices
[i
]; i
++)
157 entry
= (REFERENCE
*)xmalloc (sizeof (REFERENCE
));
158 entry
->label
= xstrdup (var
->choices
[i
]);
159 entry
->nodename
= (char *)NULL
;
160 entry
->filename
= (char *)NULL
;
163 (entry
, array_index
, array
, array_slots
, 10, REFERENCE
*);
166 sprintf (prompt
, _("Set %s to value (%s): "),
167 var
->name
, var
->choices
[*(var
->value
)]);
169 /* Ask the completer to read a variable value for us. */
170 line
= info_read_completing_in_echo_area (window
, prompt
, array
);
172 info_free_references (array
);
174 if (!echo_area_is_active
)
175 window_clear_echo_area ();
180 info_abort_key (active_window
, 0, 0);
184 /* User accepted default choice? If so, no change. */
191 /* Find the choice in our list of choices. */
192 for (i
= 0; var
->choices
[i
]; i
++)
193 if (strcmp (var
->choices
[i
], line
) == 0)
202 /* Read the name of an Info variable in the echo area and return the
203 address of a VARIABLE_ALIST member. A return value of NULL indicates
204 that no variable could be read. */
206 read_variable_name (char *prompt
, WINDOW
*window
)
210 REFERENCE
**variables
;
212 /* Get the completion array of variable names. */
213 variables
= make_variable_completions_array ();
215 /* Ask the completer to read a variable for us. */
217 info_read_completing_in_echo_area (window
, prompt
, variables
);
219 info_free_references (variables
);
221 if (!echo_area_is_active
)
222 window_clear_echo_area ();
227 info_abort_key (active_window
, 0, 0);
228 return ((VARIABLE_ALIST
*)NULL
);
231 /* User accepted "default"? (There is none.) */
235 return ((VARIABLE_ALIST
*)NULL
);
238 /* Find the variable in our list of variables. */
239 for (i
= 0; info_variables
[i
].name
; i
++)
240 if (strcmp (info_variables
[i
].name
, line
) == 0)
243 if (!info_variables
[i
].name
)
244 return ((VARIABLE_ALIST
*)NULL
);
246 return (&(info_variables
[i
]));
249 /* Make an array of REFERENCE which actually contains the names of the
250 variables available in Info. */
252 make_variable_completions_array (void)
255 REFERENCE
**array
= (REFERENCE
**)NULL
;
256 int array_index
= 0, array_slots
= 0;
258 for (i
= 0; info_variables
[i
].name
; i
++)
262 entry
= (REFERENCE
*) xmalloc (sizeof (REFERENCE
));
263 entry
->label
= xstrdup (info_variables
[i
].name
);
264 entry
->nodename
= (char *)NULL
;
265 entry
->filename
= (char *)NULL
;
268 (entry
, array_index
, array
, array_slots
, 200, REFERENCE
*);
277 set_variable_to_value(char *name
, char *value
)
281 /* Find the variable in our list of variables. */
282 for (i
= 0; info_variables
[i
].name
; i
++)
283 if (strcmp(info_variables
[i
].name
, name
) == 0)
286 if (!info_variables
[i
].name
)
289 if (info_variables
[i
].choices
)
293 /* Find the choice in our list of choices. */
294 for (j
= 0; info_variables
[i
].choices
[j
]; j
++)
295 if (strcmp (info_variables
[i
].choices
[j
], value
) == 0)
298 if (info_variables
[i
].choices
[j
])
299 *info_variables
[i
].value
= j
;
303 *info_variables
[i
].value
= atoi(value
);