]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormDocument.C
change some __GNUG_ to __GNUG__
[lyx.git] / src / frontends / xforms / FormDocument.C
1 /**
2  * \file FormDocument.C
3  * Copyright 2000-2001 The LyX Team.
4  * See the file COPYING.
5  *
6  * \author Jürgen Vigna, jug@sad.it
7  */
8
9 #include <config.h>
10
11 #include FORMS_H_LOCATION
12 #include XPM_H_LOCATION
13
14 #ifdef __GNUG__
15 #pragma implementation
16 #endif
17
18 #include "FormDocument.h"
19 #include "form_document.h"
20 #include "Alert.h"
21 #include "Dialogs.h"
22 #include "lyxtextclasslist.h"
23 #include "combox.h"
24 #include "tex-strings.h"
25 #include "bufferparams.h"
26 #include "vspace.h"
27 #include "bmtable.h"
28 #include "language.h"
29 #include "LyXView.h"
30 #include "lyxfunc.h"
31 #include "lyxrc.h"
32 #include "BufferView.h"
33 #include "buffer.h"
34 #include "Liason.h"
35 #include "CutAndPaste.h"
36 #include "bufferview_funcs.h"
37 #include "xforms_helpers.h"
38 #include "debug.h"
39 #include "input_validators.h" // fl_unsigned_float_filter
40 #include "helper_funcs.h"
41 #include "lyx_main.h" // for user_lyxdir
42
43 #include "insets/insetquotes.h"
44
45 #include "support/filetools.h"
46 #include "support/lstrings.h"
47
48 #include <functional>
49
50 using std::bind2nd;
51
52 using Liason::setMinibuffer;
53 using SigC::slot;
54 using std::vector;
55
56 FormDocument::FormDocument(LyXView * lv, Dialogs * d)
57         : FormBaseBD(lv, d, _("Document Layout")),
58           ActCell(0), Confirmed(0),
59           current_bullet_panel(0), current_bullet_depth(0), fbullet(0)
60 {
61         // let the dialog be shown
62         // This is a permanent connection so we won't bother
63         // storing a copy because we won't be disconnecting.
64         d->showDocument.connect(slot(this, &FormDocument::show));
65 }
66
67
68 void FormDocument::redraw()
69 {
70         if (form() && form()->visible)
71                 fl_redraw_form(form());
72         else
73                 return;
74
75         FL_FORM * outer_form = fl_get_active_folder(dialog_->tabfolder);
76         if (outer_form && outer_form->visible)
77                 fl_redraw_form(outer_form);
78 }
79
80
81 FL_FORM * FormDocument::form() const
82 {
83         if (dialog_.get()) return dialog_->form;
84         return 0;
85 }
86
87
88 void FormDocument::build()
89 {
90         int n;
91
92         // the tabbed folder
93         dialog_.reset(build_tabbed_document());
94
95         // Allow the base class to control messages
96         setMessageWidget(dialog_->text_warning);
97
98         // Manage the restore, ok, apply, restore and cancel/close buttons
99         bc().setOK(dialog_->button_ok);
100         bc().setApply(dialog_->button_apply);
101         bc().setCancel(dialog_->button_close);
102         bc().setRestore(dialog_->button_restore);
103         bc().addReadOnly (dialog_->button_save_defaults);
104         bc().addReadOnly (dialog_->button_reset_defaults);
105
106         // the document paper form
107         paper_.reset(build_doc_paper());
108         fl_addto_choice(paper_->choice_papersize,
109                         _(" Default | Custom | USletter | USlegal "
110                           "| USexecutive | A3 | A4 | A5 | B3 | B4 | B5 "));
111         fl_addto_choice(paper_->choice_paperpackage,
112                         _(" None "
113                           "| Small Margins "
114                           "| Very small Margins "
115                           "| Very wide Margins "));
116
117         fl_set_input_return(paper_->input_custom_width,  FL_RETURN_CHANGED);
118         fl_set_input_return(paper_->input_custom_height, FL_RETURN_CHANGED);
119         fl_set_input_return(paper_->input_top_margin,    FL_RETURN_CHANGED);
120         fl_set_input_return(paper_->input_bottom_margin, FL_RETURN_CHANGED);
121         fl_set_input_return(paper_->input_inner_margin,  FL_RETURN_CHANGED);
122         fl_set_input_return(paper_->input_outer_margin,  FL_RETURN_CHANGED);
123         fl_set_input_return(paper_->input_head_height,   FL_RETURN_CHANGED);
124         fl_set_input_return(paper_->input_head_sep,      FL_RETURN_CHANGED);
125         fl_set_input_return(paper_->input_foot_skip,     FL_RETURN_CHANGED);
126
127         setPrehandler(paper_->input_custom_width);
128         setPrehandler(paper_->input_custom_height);
129         setPrehandler(paper_->input_top_margin);
130         setPrehandler(paper_->input_bottom_margin);
131         setPrehandler(paper_->input_inner_margin);
132         setPrehandler(paper_->input_outer_margin);
133         setPrehandler(paper_->input_head_height);
134         setPrehandler(paper_->input_head_sep);
135         setPrehandler(paper_->input_foot_skip);
136
137         // Create the contents of the unit choices
138         // Don't include the "%" terms...
139         vector<string> units_vec = getLatexUnits();
140 #if 0
141         for (vector<string>::iterator it = units_vec.begin();
142              it != units_vec.end(); ++it) {
143                 if (contains(*it, "%"))
144                         it = units_vec.erase(it, it+1) - 1;
145         }
146 #else
147         vector<string>::iterator ret =
148                 std::remove_if(units_vec.begin(),
149                                units_vec.end(),
150                                bind2nd(contains_functor(), "%"));
151         units_vec.erase(ret, units_vec.end());
152 #endif
153         string units = getStringFromVector(units_vec, "|");
154
155         fl_addto_choice(paper_->choice_custom_width_units,  units.c_str());
156         fl_addto_choice(paper_->choice_custom_height_units, units.c_str());
157         fl_addto_choice(paper_->choice_top_margin_units,    units.c_str());
158         fl_addto_choice(paper_->choice_bottom_margin_units, units.c_str());
159         fl_addto_choice(paper_->choice_inner_margin_units,  units.c_str());
160         fl_addto_choice(paper_->choice_outer_margin_units,  units.c_str());
161         fl_addto_choice(paper_->choice_head_height_units,   units.c_str());
162         fl_addto_choice(paper_->choice_head_sep_units,      units.c_str());
163         fl_addto_choice(paper_->choice_foot_skip_units,     units.c_str());
164
165         bc().addReadOnly (paper_->choice_paperpackage);
166         bc().addReadOnly (paper_->radio_portrait);
167         bc().addReadOnly (paper_->radio_landscape);
168         bc().addReadOnly (paper_->choice_papersize);
169         bc().addReadOnly (paper_->check_use_geometry);
170         bc().addReadOnly (paper_->input_custom_width);
171         bc().addReadOnly (paper_->input_custom_height);
172         bc().addReadOnly (paper_->input_top_margin);
173         bc().addReadOnly (paper_->input_bottom_margin);
174         bc().addReadOnly (paper_->input_inner_margin);
175         bc().addReadOnly (paper_->input_outer_margin);
176         bc().addReadOnly (paper_->input_head_height);
177         bc().addReadOnly (paper_->input_head_sep);
178         bc().addReadOnly (paper_->input_foot_skip);
179
180         // the document class form
181         class_.reset(build_doc_class());
182
183         FL_OBJECT * obj;
184         // The language is a combo-box and has to be inserted manually
185         obj = class_->choice_doc_class;
186         fl_deactivate_object(obj);
187         fl_addto_form(class_->form);
188         combo_doc_class.reset(new Combox(FL_COMBOX_DROPLIST));
189         combo_doc_class->add(obj->x, obj->y, obj->w, obj->h, 400,
190                              dialog_->tabfolder);
191         combo_doc_class->shortcut("#C",1);
192         combo_doc_class->setcallback(ComboInputCB, this);
193         fl_end_form();
194         for (LyXTextClassList::const_iterator cit = textclasslist.begin();
195              cit != textclasslist.end(); ++cit) {
196                 combo_doc_class->addto(cit->description());
197         }
198
199         fl_addto_choice(class_->choice_doc_spacing,
200                         _(" Single | OneHalf | Double | Other "));
201         fl_addto_choice(class_->choice_doc_fontsize, "default|10|11|12");
202         for (n=0; tex_fonts[n][0]; ++n) {
203                 fl_addto_choice(class_->choice_doc_fonts,tex_fonts[n]);
204         }
205         fl_addto_choice(class_->choice_doc_pagestyle,
206                         "default|empty|plain|headings|fancy");
207         fl_addto_choice(class_->choice_doc_skip,
208                         _(" Smallskip | Medskip | Bigskip | Length "));
209         fl_addto_choice(class_->choice_default_skip_units,  units.c_str());
210         fl_set_input_return(class_->input_doc_extra, FL_RETURN_CHANGED);
211         fl_set_input_return(class_->input_doc_skip, FL_RETURN_CHANGED);
212         fl_set_input_return(class_->input_doc_spacing, FL_RETURN_CHANGED);
213
214         setPrehandler(class_->input_doc_extra);
215         setPrehandler(class_->input_doc_skip);
216         setPrehandler(class_->input_doc_spacing);
217
218         // Set input filters on doc spacing to make it accept only
219         // unsigned numbers.
220         fl_set_input_filter(class_->input_doc_spacing, fl_unsigned_float_filter);
221
222         bc().addReadOnly (class_->radio_doc_indent);
223         bc().addReadOnly (class_->radio_doc_skip);
224
225         bc().addReadOnly (class_->choice_doc_pagestyle);
226         bc().addReadOnly (class_->choice_doc_fonts);
227         bc().addReadOnly (class_->choice_doc_fontsize);
228         bc().addReadOnly (class_->radio_doc_sides_one);
229         bc().addReadOnly (class_->radio_doc_sides_two);
230         bc().addReadOnly (class_->radio_doc_columns_one);
231         bc().addReadOnly (class_->radio_doc_columns_two);
232         bc().addReadOnly (class_->input_doc_extra);
233         bc().addReadOnly (class_->input_doc_skip);
234         bc().addReadOnly (class_->choice_doc_skip);
235         bc().addReadOnly (class_->choice_doc_spacing);
236         bc().addReadOnly (class_->input_doc_spacing);
237
238         // the document language form
239         language_.reset(build_doc_language());
240         fl_addto_choice(language_->choice_inputenc,
241                         "default|auto|latin1|latin2|latin3|latin4|latin5|latin9"
242                         "|koi8-r|koi8-u|cp866|cp1251|iso88595");
243
244         // The language is a combo-box and has to be inserted manually
245         obj = language_->choice_language;
246         fl_deactivate_object(obj);
247         fl_addto_form(language_->form);
248         combo_language.reset(new Combox(FL_COMBOX_DROPLIST));
249         combo_language->add(obj->x, obj->y, obj->w, obj->h, 400,
250                             dialog_->tabfolder);
251         combo_language->shortcut("#L",1);
252         combo_language->setcallback(ComboInputCB, this);
253         fl_end_form();
254
255         for (Languages::const_iterator cit = languages.begin();
256              cit != languages.end(); ++cit) {
257                 combo_language->addto(cit->second.lang());
258         }
259
260         fl_addto_choice(language_->choice_quotes_language,
261                         _(" ``text'' | ''text'' | ,,text`` | ,,text'' |"
262                           " «text» | »text« "));
263
264         bc().addReadOnly (language_->choice_inputenc);
265         bc().addReadOnly (language_->choice_quotes_language);
266         bc().addReadOnly (language_->radio_single);
267         bc().addReadOnly (language_->radio_double);
268
269         // the document options form
270         options_.reset(build_doc_options());
271         fl_set_input_return(options_->input_float_placement, FL_RETURN_CHANGED);
272         setPrehandler(options_->input_float_placement);
273
274         fl_set_counter_bounds(options_->counter_secnumdepth,-2,5);
275         fl_set_counter_bounds(options_->counter_tocdepth,-1,5);
276         fl_set_counter_step(options_->counter_secnumdepth,1,1);
277         fl_set_counter_step(options_->counter_tocdepth,1,1);
278         fl_set_counter_precision(options_->counter_secnumdepth, 0);
279         fl_set_counter_precision(options_->counter_tocdepth, 0);
280         for (n=0; tex_graphics[n][0]; ++n) {
281                 fl_addto_choice(options_->choice_postscript_driver,
282                                 tex_graphics[n]);
283         }
284         fl_addto_choice(options_->choice_citation_format,
285                         _(" Author-year | Numerical "));
286
287         bc_.addReadOnly (options_->counter_secnumdepth);
288         bc_.addReadOnly (options_->counter_tocdepth);
289         bc_.addReadOnly (options_->check_use_amsmath);
290         bc_.addReadOnly (options_->check_use_natbib);
291         bc_.addReadOnly (options_->choice_citation_format);
292         bc_.addReadOnly (options_->input_float_placement);
293         bc_.addReadOnly (options_->choice_postscript_driver);
294
295         // the document bullets form
296         bullets_.reset(build_doc_bullet());
297         fl_addto_choice(bullets_->choice_bullet_size,
298                         _(" default | tiny | script | footnote | small |"
299                           " normal | large | Large | LARGE | huge | Huge"));
300         fl_set_choice(bullets_->choice_bullet_size, 1);
301         fl_set_input_return(bullets_->input_bullet_latex, FL_RETURN_CHANGED);
302         setPrehandler(bullets_->input_bullet_latex);
303         fl_set_input_maxchars(bullets_->input_bullet_latex, 80);
304
305         bc_.addReadOnly(bullets_->radio_bullet_depth_1);
306         bc_.addReadOnly(bullets_->radio_bullet_depth_2);
307         bc_.addReadOnly(bullets_->radio_bullet_depth_3);
308         bc_.addReadOnly(bullets_->radio_bullet_depth_4);
309         bc_.addReadOnly(bullets_->radio_bullet_panel_standard);
310         bc_.addReadOnly(bullets_->radio_bullet_panel_maths);
311         bc_.addReadOnly(bullets_->radio_bullet_panel_ding1);
312         bc_.addReadOnly(bullets_->radio_bullet_panel_ding2);
313         bc_.addReadOnly(bullets_->radio_bullet_panel_ding3);
314         bc_.addReadOnly(bullets_->radio_bullet_panel_ding4);
315
316         bc().addReadOnly (bullets_->bmtable_bullet_panel);
317         bc().addReadOnly (bullets_->choice_bullet_size);
318         bc().addReadOnly (bullets_->input_bullet_latex);
319
320         fl_addto_tabfolder(dialog_->tabfolder,_("Document"),
321                            class_->form);
322         fl_addto_tabfolder(dialog_->tabfolder,_("Paper"),
323                            paper_->form);
324         fl_addto_tabfolder(dialog_->tabfolder,_("Language"),
325                            language_->form);
326         fl_addto_tabfolder(dialog_->tabfolder,_("Extra"),
327                            options_->form);
328         fbullet = fl_addto_tabfolder(dialog_->tabfolder,_("Bullets"),
329                                      bullets_->form);
330         if ((XpmVersion < 4) || (XpmVersion == 4 && XpmRevision < 7)) {
331                 lyxerr << _("Your version of libXpm is older than 4.7.\n"
332                             "The `bullet' tab of the document dialog "
333                             "has been disabled") << '\n';
334                 fl_deactivate_object(fbullet);
335                 fl_set_object_lcol(fbullet, FL_INACTIVE);
336         }
337 }
338
339
340 void FormDocument::apply()
341 {
342         if (!lv_->view()->available() || !dialog_.get())
343                 return;
344
345         bool redo = class_apply();
346         paper_apply();
347         redo = language_apply() || redo;
348         redo = options_apply() || redo;
349         bullets_apply();
350
351         if (redo) {
352                 lv_->view()->redoCurrentBuffer();
353         }
354         lv_->buffer()->markDirty();
355         setMinibuffer(lv_, _("Document layout set"));
356 }
357
358
359 void FormDocument::cancel()
360 {
361         // this avoids confusion when reopening
362         BufferParams & param = lv_->buffer()->params;
363         param.temp_bullets[0] = param.user_defined_bullets[0];
364         param.temp_bullets[1] = param.user_defined_bullets[1];
365         param.temp_bullets[2] = param.user_defined_bullets[2];
366         param.temp_bullets[3] = param.user_defined_bullets[3];
367         hide();
368 }
369
370
371 void FormDocument::update()
372 {
373         if (!dialog_.get())
374                 return;
375
376         checkReadOnly();
377
378         BufferParams const & params = lv_->buffer()->params;
379
380         class_update(params);
381         paper_update(params);
382         language_update(params);
383         options_update(params);
384         bullets_update(params);
385 }
386
387
388 namespace {
389 // should this go elsewhere? Maybe a ControllerDocument? (JMarc)
390 /** Save the buffer's parameters as user default.
391     This function saves a file \c user_lyxdir/templates/defaults.lyx
392     which parameters are those of the current buffer. This file
393     is used as a default template when creating a new
394     file. Returns \c true on success.
395 */
396 bool saveParamsAsDefault(BufferParams const &params)
397 {
398         if (!Alert::askQuestion(_("Do you want to save the current settings"),
399                                 _("for the document layout as default?"),
400                                 _("(they will be valid for any new document)")))
401                 return false;
402
403         string const fname = AddName(AddPath(user_lyxdir, "templates/"),
404                                      "defaults.lyx");
405         Buffer defaults = Buffer(fname);
406         defaults.params = params;
407
408         // add an empty paragraph. Is this enough?
409         defaults.paragraph = new Paragraph;
410
411         return defaults.writeFile(defaults.fileName(), false);
412 }
413
414 } //namespace
415
416
417 bool FormDocument::input(FL_OBJECT * ob, long data)
418 {
419         State cb = static_cast<State>(data);
420
421         switch (cb) {
422         case CHECKCHOICECLASS:
423                 CheckChoiceClass(ob, 0);
424                 break;
425         case CHOICEBULLETSIZE:
426                 ChoiceBulletSize(ob, 0);
427                 break;
428         case INPUTBULLETLATEX:
429                 InputBulletLaTeX(ob, 0);
430                 break;
431         case BULLETDEPTH1:
432         case BULLETDEPTH2:
433         case BULLETDEPTH3:
434         case BULLETDEPTH4:
435                 BulletDepth(ob, cb);
436                 break;
437         case BULLETPANEL1:
438         case BULLETPANEL2:
439         case BULLETPANEL3:
440         case BULLETPANEL4:
441         case BULLETPANEL5:
442         case BULLETPANEL6:
443                 BulletPanel(ob, cb);
444                 break;
445         case BULLETBMTABLE:
446                 BulletBMTable(ob, 0);
447                 break;
448         default:
449                 break;
450         }
451
452         bool const length_input = fl_get_choice(class_->choice_doc_skip) == 4;
453         if (ob == class_->choice_doc_skip) {
454                 setEnabled(class_->input_doc_skip, length_input);
455                 setEnabled(class_->choice_default_skip_units, length_input);
456         }
457
458         if (ob == class_->choice_doc_spacing)
459                 setEnabled(class_->input_doc_spacing,
460                            fl_get_choice(class_->choice_doc_spacing) == 4);
461
462         bool const skip_used = fl_get_button(class_->radio_doc_skip);
463         if (ob == class_->radio_doc_skip ||
464             ob == class_->radio_doc_indent) {
465                 setEnabled(class_->choice_doc_skip, skip_used);
466                 setEnabled(class_->input_doc_skip,
467                            skip_used && length_input);
468                 setEnabled(class_->choice_default_skip_units,
469                            skip_used && length_input);
470                 // Default unit choice is cm if metric, inches if US paper.
471                 // If papersize is default, check the lyxrc-settings
472                 int const paperchoice = fl_get_choice(paper_->choice_papersize);
473                 bool const metric = (paperchoice == 1 && lyxrc.default_papersize > 3)
474                         || paperchoice == 2 || paperchoice > 5;
475                 int const default_unit = metric ? 8 : 9;
476                 if (strip(fl_get_input(class_->input_doc_skip)).empty())
477                         fl_set_choice(class_->choice_default_skip_units,
478                                       default_unit);
479         }
480
481         if (ob == options_->check_use_natbib) {
482                 setEnabled(options_->choice_citation_format,
483                            fl_get_button(options_->check_use_natbib));
484         }
485
486         if (ob == dialog_->button_save_defaults) {
487                 BufferParams params;
488                 class_apply(params);
489                 paper_apply(params);
490                 language_apply(params);
491                 options_apply(params);
492                 bullets_apply(params);
493                 saveParamsAsDefault(params);
494         }
495
496         if (ob == dialog_->button_reset_defaults) {
497                 BufferParams params = lv_->buffer()->params;
498                 params.textclass = combo_doc_class->get() - 1;
499                 params.useClassDefaults();
500                 UpdateLayoutDocument(params);
501         }
502
503         if (ob == paper_->radio_landscape)
504                 fl_set_choice(paper_->choice_paperpackage,
505                               BufferParams::PACKAGE_NONE + 1);
506
507         if (ob == paper_->choice_papersize) {
508                 int const paperchoice = fl_get_choice(paper_->choice_papersize);
509                 bool const defsize = paperchoice == 1;
510                 bool const custom = paperchoice == 2;
511                 bool const a3size = paperchoice == 6;
512                 bool const b3size = paperchoice == 9;
513                 bool const b4size = paperchoice == 10;
514
515                 if (custom)
516                         fl_set_button(paper_->radio_portrait, 1);
517
518                 bool const use_geom = (custom || a3size || b3size || b4size);
519
520                 fl_set_button(paper_->check_use_geometry, int(use_geom));
521
522                 setEnabled(paper_->input_top_margin,    use_geom);
523                 setEnabled(paper_->input_bottom_margin, use_geom);
524                 setEnabled(paper_->input_inner_margin,  use_geom);
525                 setEnabled(paper_->input_outer_margin,  use_geom);
526                 setEnabled(paper_->input_head_height,   use_geom);
527                 setEnabled(paper_->input_head_sep,      use_geom);
528                 setEnabled(paper_->input_foot_skip,     use_geom);
529                 setEnabled(paper_->choice_top_margin_units,    use_geom);
530                 setEnabled(paper_->choice_bottom_margin_units, use_geom);
531                 setEnabled(paper_->choice_inner_margin_units,  use_geom);
532                 setEnabled(paper_->choice_outer_margin_units,  use_geom);
533                 setEnabled(paper_->choice_head_height_units,   use_geom);
534                 setEnabled(paper_->choice_head_sep_units,      use_geom);
535                 setEnabled(paper_->choice_foot_skip_units,     use_geom);
536                 setEnabled(paper_->choice_custom_width_units,  use_geom);
537                 setEnabled(paper_->choice_custom_height_units, use_geom);
538
539                 setEnabled(paper_->input_custom_width,  custom);
540                 setEnabled(paper_->input_custom_height, custom);
541                 setEnabled(paper_->choice_custom_width_units,  custom);
542                 setEnabled(paper_->choice_custom_height_units, custom);
543                 setEnabled(paper_->radio_portrait,  !custom);
544                 setEnabled(paper_->radio_landscape, !custom);
545
546                 // Default unit choice is cm if metric, inches if US paper.
547                 // If papersize is default, use the lyxrc-settings
548                 bool const metric = (defsize && lyxrc.default_papersize > 3)
549                         || paperchoice == 2 || paperchoice > 5;
550                 int const default_unit = metric ? 8 : 9;
551                 if (strip(fl_get_input(paper_->input_custom_width)).empty())
552                         fl_set_choice(paper_->choice_custom_width_units,
553                                       default_unit);
554                 if (strip(fl_get_input(paper_->input_custom_height)).empty())
555                         fl_set_choice(paper_->choice_custom_height_units,
556                                       default_unit);
557                 if (strip(fl_get_input(paper_->input_top_margin)).empty())
558                         fl_set_choice(paper_->choice_top_margin_units,
559                                       default_unit);
560                 if (strip(fl_get_input(paper_->input_bottom_margin)).empty())
561                         fl_set_choice(paper_->choice_bottom_margin_units,
562                                       default_unit);
563                 if (strip(fl_get_input(paper_->input_inner_margin)).empty())
564                         fl_set_choice(paper_->choice_inner_margin_units,
565                                       default_unit);
566                 if (strip(fl_get_input(paper_->input_outer_margin)).empty())
567                         fl_set_choice(paper_->choice_outer_margin_units,
568                                       default_unit);
569                 if (strip(fl_get_input(paper_->input_head_height)).empty())
570                         fl_set_choice(paper_->choice_head_height_units,
571                                       default_unit);
572                 if (strip(fl_get_input(paper_->input_head_sep)).empty())
573                         fl_set_choice(paper_->choice_head_sep_units,
574                                       default_unit);
575                 if (strip(fl_get_input(paper_->input_foot_skip)).empty())
576                         fl_set_choice(paper_->choice_foot_skip_units,
577                                       default_unit);
578         }
579
580         if (ob == paper_->choice_papersize ||
581             ob == paper_->radio_portrait ||
582             ob == paper_->radio_landscape) {
583
584                 setEnabled(paper_->choice_paperpackage,
585                            //either default papersize (preferences)
586                            //or document papersize has to be A4
587                            (fl_get_choice(paper_->choice_papersize) == 7
588                             || fl_get_choice(paper_->choice_papersize) == 1
589                             && lyxrc.default_papersize == 5)
590                            && fl_get_button(paper_->radio_portrait));
591         }
592
593         if (ob == paper_->choice_paperpackage) {
594                 if (fl_get_choice(paper_->choice_paperpackage) != 1) {
595                         fl_set_button(paper_->check_use_geometry, 0);
596
597                         setEnabled(paper_->input_top_margin,    false);
598                         setEnabled(paper_->input_bottom_margin, false);
599                         setEnabled(paper_->input_inner_margin,  false);
600                         setEnabled(paper_->input_outer_margin,  false);
601                         setEnabled(paper_->input_head_height,   false);
602                         setEnabled(paper_->input_head_sep,      false);
603                         setEnabled(paper_->input_foot_skip,     false);
604                         setEnabled(paper_->choice_top_margin_units,    false);
605                         setEnabled(paper_->choice_bottom_margin_units, false);
606                         setEnabled(paper_->choice_inner_margin_units,  false);
607                         setEnabled(paper_->choice_outer_margin_units,  false);
608                         setEnabled(paper_->choice_head_height_units,   false);
609                         setEnabled(paper_->choice_head_sep_units,      false);
610                         setEnabled(paper_->choice_foot_skip_units,     false);
611                 }
612         }
613
614         if (ob == paper_->check_use_geometry) {
615                 //don't allow switching geometry off in custom papersize mode
616                 //nor in A3, B3, and B4
617                 int const choice = fl_get_choice(paper_->choice_papersize);
618                 if (choice == 2 || choice == 6 || choice == 9 || choice == 10)
619                         fl_set_button(paper_->check_use_geometry, 1);
620
621                 fl_set_choice(paper_->choice_paperpackage,
622                               BufferParams::PACKAGE_NONE + 1);
623
624                 bool const use_geom = fl_get_button(paper_->check_use_geometry);
625                 setEnabled(paper_->input_top_margin,    use_geom);
626                 setEnabled(paper_->input_bottom_margin, use_geom);
627                 setEnabled(paper_->input_inner_margin,  use_geom);
628                 setEnabled(paper_->input_outer_margin,  use_geom);
629                 setEnabled(paper_->input_head_height,   use_geom);
630                 setEnabled(paper_->input_head_sep,      use_geom);
631                 setEnabled(paper_->input_foot_skip,     use_geom);
632                 setEnabled(paper_->choice_top_margin_units,    use_geom);
633                 setEnabled(paper_->choice_bottom_margin_units, use_geom);
634                 setEnabled(paper_->choice_inner_margin_units,  use_geom);
635                 setEnabled(paper_->choice_outer_margin_units,  use_geom);
636                 setEnabled(paper_->choice_head_height_units,   use_geom);
637                 setEnabled(paper_->choice_head_sep_units,      use_geom);
638                 setEnabled(paper_->choice_foot_skip_units,     use_geom);
639         }
640
641         switch (data) {
642         case INPUT:
643         case CHECKCHOICECLASS:
644         case CHOICEBULLETSIZE:
645         case INPUTBULLETLATEX:
646         case BULLETBMTABLE:
647                 return CheckDocumentInput(ob, 0);
648         default:
649                 break;
650         }
651
652         return true;
653 }
654
655
656 void FormDocument::ComboInputCB(int, void * v, Combox * combox)
657 {
658         FormDocument * pre = static_cast<FormDocument*>(v);
659         if (combox == pre->combo_doc_class.get())
660                 pre->CheckChoiceClass(0, 0);
661         pre->bc().valid(pre->CheckDocumentInput(0,0));
662 }
663
664
665 bool FormDocument::class_apply(BufferParams &params)
666 {
667         bool redo = false;
668
669         // If default skip is a "Length" but there's no text in the
670         // input field, reset the kind to "Medskip", which is the default.
671         if ((fl_get_choice (class_->choice_doc_skip) == 4) &&
672             !*(fl_get_input (class_->input_doc_skip))) {
673                 fl_set_choice (class_->choice_doc_skip, 2);
674         }
675         params.fonts = fl_get_choice_text(class_->choice_doc_fonts);
676         params.fontsize = fl_get_choice_text(class_->choice_doc_fontsize);
677         params.pagestyle = fl_get_choice_text(class_->choice_doc_pagestyle);
678
679         params.textclass = combo_doc_class->get() - 1;
680
681         BufferParams::PARSEP tmpsep = params.paragraph_separation;
682         if (fl_get_button(class_->radio_doc_indent))
683                 params.paragraph_separation = BufferParams::PARSEP_INDENT;
684         else
685                 params.paragraph_separation = BufferParams::PARSEP_SKIP;
686         if (tmpsep != params.paragraph_separation)
687                 redo = true;
688
689         VSpace tmpdefskip = params.getDefSkip();
690         switch (fl_get_choice (class_->choice_doc_skip)) {
691         case 1:
692                 params.setDefSkip(VSpace(VSpace::SMALLSKIP));
693                 break;
694         case 2:
695                 params.setDefSkip(VSpace(VSpace::MEDSKIP));
696                 break;
697         case 3:
698                 params.setDefSkip(VSpace(VSpace::BIGSKIP));
699                 break;
700         case 4:
701         {
702                 string const length =
703                         getLengthFromWidgets(class_->input_doc_skip,
704                                              class_->choice_default_skip_units);
705
706                 params.setDefSkip(VSpace(LyXGlueLength(length)));
707                 break;
708         }
709         default:
710                 // DocumentDefskipCB assures that this never happens
711                 params.setDefSkip(VSpace(VSpace::MEDSKIP));
712                 break;
713         }
714         if (!(tmpdefskip == params.getDefSkip()))
715                 redo = true;
716
717         if (fl_get_button(class_->radio_doc_columns_two))
718                 params.columns = 2;
719         else
720                 params.columns = 1;
721         if (fl_get_button(class_->radio_doc_sides_two))
722                 params.sides = LyXTextClass::TwoSides;
723         else
724                 params.sides = LyXTextClass::OneSide;
725
726         Spacing tmpSpacing = params.spacing;
727         switch (fl_get_choice(class_->choice_doc_spacing)) {
728         case 1:
729                 lyxerr[Debug::INFO] << "Spacing: SINGLE\n";
730                 params.spacing.set(Spacing::Single);
731                 break;
732         case 2:
733                 lyxerr[Debug::INFO] << "Spacing: ONEHALF\n";
734                 params.spacing.set(Spacing::Onehalf);
735                 break;
736         case 3:
737                 lyxerr[Debug::INFO] << "Spacing: DOUBLE\n";
738                 params.spacing.set(Spacing::Double);
739                 break;
740         case 4:
741                 lyxerr[Debug::INFO] << "Spacing: OTHER\n";
742                 params.spacing.set(Spacing::Other,
743                                    fl_get_input(class_->input_doc_spacing));
744                 break;
745         }
746         if (tmpSpacing != params.spacing)
747                 redo = true;
748
749         params.options = fl_get_input(class_->input_doc_extra);
750
751         return redo;
752 }
753
754
755 bool FormDocument::class_apply()
756 {
757         BufferParams &params = lv_->buffer()->params;
758
759         unsigned int const old_class = params.textclass;
760
761         bool redo = class_apply(params);
762
763         if (params.textclass != old_class) {
764                 // try to load new_class
765                 if (textclasslist[params.textclass].load()) {
766                         // successfully loaded
767                         redo = true;
768                         setMinibuffer(lv_, _("Converting document to new document class..."));
769                         int ret = CutAndPaste::SwitchLayoutsBetweenClasses(
770                                 old_class, params.textclass,
771                                 lv_->buffer()->paragraph,
772                                 lv_->buffer()->params);
773                         if (ret) {
774                                 string s;
775                                 if (ret == 1) {
776                                         s = _("One paragraph couldn't be converted");
777                                 } else {
778                                         s += tostr(ret);
779                                         s += _(" paragraphs couldn't be converted");
780                                 }
781                                 Alert::alert(_("Conversion Errors!"),s,
782                                              _("into chosen document class"));
783                         }
784
785                 } else {
786                         // problem changing class -- warn user and retain old style
787                         Alert::alert(_("Conversion Errors!"),
788                                      _("Errors loading new document class."),
789                                      _("Reverting to original document class."));
790                         combo_doc_class->select(int(old_class) + 1);
791                 }
792         }
793
794         return redo;
795 }
796
797
798 void FormDocument::paper_apply(BufferParams & params)
799 {
800         params.papersize2 = char(fl_get_choice(paper_->choice_papersize)-1);
801
802         params.paperpackage =
803                 char(fl_get_choice(paper_->choice_paperpackage)-1);
804
805         // set params.papersize from params.papersize2 and params.paperpackage
806         params.setPaperStuff();
807
808         params.use_geometry = fl_get_button(paper_->check_use_geometry);
809
810         if (fl_get_button(paper_->radio_landscape))
811                 params.orientation = BufferParams::ORIENTATION_LANDSCAPE;
812         else
813                 params.orientation = BufferParams::ORIENTATION_PORTRAIT;
814
815         params.paperwidth =
816                 getLengthFromWidgets(paper_->input_custom_width,
817                                      paper_->choice_custom_width_units);
818
819         params.paperheight =
820                 getLengthFromWidgets(paper_->input_custom_height,
821                                      paper_->choice_custom_height_units);
822
823         params.leftmargin =
824                 getLengthFromWidgets(paper_->input_inner_margin,
825                                      paper_->choice_inner_margin_units);
826
827         params.topmargin =
828                 getLengthFromWidgets(paper_->input_top_margin,
829                                      paper_->choice_top_margin_units);
830
831         params.rightmargin =
832                 getLengthFromWidgets(paper_->input_outer_margin,
833                                      paper_->choice_outer_margin_units);
834
835         params.bottommargin =
836                 getLengthFromWidgets(paper_->input_bottom_margin,
837                                      paper_->choice_bottom_margin_units);
838
839         params.headheight =
840                 getLengthFromWidgets(paper_->input_head_height,
841                                      paper_->choice_head_height_units);
842
843         params.headsep =
844                 getLengthFromWidgets(paper_->input_head_sep,
845                                      paper_->choice_head_sep_units);
846
847         params.footskip =
848                 getLengthFromWidgets(paper_->input_foot_skip,
849                                      paper_->choice_foot_skip_units);
850 }
851
852
853 void FormDocument::paper_apply()
854 {
855         paper_apply(lv_->buffer()->params);
856 }
857
858
859 bool FormDocument::language_apply(BufferParams & params)
860 {
861         InsetQuotes::quote_language lga = InsetQuotes::EnglishQ;
862         bool redo = false;
863
864         switch (fl_get_choice(language_->choice_quotes_language) - 1) {
865         case 0:
866                 lga = InsetQuotes::EnglishQ;
867                 break;
868         case 1:
869                 lga = InsetQuotes::SwedishQ;
870                 break;
871         case 2:
872                 lga = InsetQuotes::GermanQ;
873                 break;
874         case 3:
875                 lga = InsetQuotes::PolishQ;
876                 break;
877         case 4:
878                 lga = InsetQuotes::FrenchQ;
879                 break;
880         case 5:
881                 lga = InsetQuotes::DanishQ;
882                 break;
883         }
884         params.quotes_language = lga;
885         if (fl_get_button(language_->radio_single))
886                 params.quotes_times = InsetQuotes::SingleQ;
887         else
888                 params.quotes_times = InsetQuotes::DoubleQ;
889
890         Language const * old_language = params.language;
891         Language const * new_language =
892                 languages.getLanguage(combo_language->getline());
893         if (!new_language)
894                 new_language = default_language;
895
896         if (old_language != new_language
897             && old_language->RightToLeft() == params.language->RightToLeft()
898             && !lv_->buffer()->isMultiLingual())
899                 lv_->buffer()->changeLanguage(old_language, params.language);
900
901         if (old_language != new_language) {
902                 redo = true;
903         }
904
905         params.language = new_language;
906         params.inputenc = fl_get_choice_text(language_->choice_inputenc);
907
908         return redo;
909 }
910
911
912 bool FormDocument::language_apply()
913 {
914         return language_apply(lv_->buffer()->params);
915 }
916
917
918 bool FormDocument::options_apply(BufferParams & params)
919 {
920         bool redo = false;
921
922         params.graphicsDriver =
923                 fl_get_choice_text(options_->choice_postscript_driver);
924         params.use_amsmath = fl_get_button(options_->check_use_amsmath);
925         params.use_natbib  = fl_get_button(options_->check_use_natbib);
926         params.use_numerical_citations  =
927                 fl_get_choice(options_->choice_citation_format)-1;
928
929         int tmpchar = int(fl_get_counter_value(options_->counter_secnumdepth));
930         if (params.secnumdepth != tmpchar)
931                 redo = true;
932         params.secnumdepth = tmpchar;
933
934         params.tocdepth = int(fl_get_counter_value(options_->counter_tocdepth));
935
936         params.float_placement =
937                 fl_get_input(options_->input_float_placement);
938
939         return redo;
940 }
941
942
943 bool FormDocument::options_apply()
944 {
945         return options_apply(lv_->buffer()->params);
946 }
947
948
949 void FormDocument::bullets_apply(BufferParams & params)
950 {
951         /* update the bullet settings */
952         BufferParams & buf_params = lv_->buffer()->params;
953
954         // a little bit of loop unrolling
955         params.user_defined_bullets[0] = buf_params.temp_bullets[0];
956         params.user_defined_bullets[1] = buf_params.temp_bullets[1];
957         params.user_defined_bullets[2] = buf_params.temp_bullets[2];
958         params.user_defined_bullets[3] = buf_params.temp_bullets[3];
959 }
960
961
962 void FormDocument::bullets_apply()
963 {
964         bullets_apply(lv_->buffer()->params);
965 }
966
967 void FormDocument::UpdateClassParams(BufferParams const & params)
968 {
969         // These are the params that have to be updated on any class change
970         // (even if the class defaults are not used) (JSpitzm 2002-04-08)
971
972         LyXTextClass const & tclass = textclasslist[params.textclass];
973
974         combo_doc_class->select(tclass.description());
975         fl_clear_choice(class_->choice_doc_fontsize);
976         fl_addto_choice(class_->choice_doc_fontsize, "default");
977         fl_addto_choice(class_->choice_doc_fontsize,
978                         tclass.opt_fontsize().c_str());
979         fl_set_choice_text(class_->choice_doc_fontsize,
980                         params.fontsize.c_str());
981         fl_clear_choice(class_->choice_doc_pagestyle);
982         fl_addto_choice(class_->choice_doc_pagestyle, "default");
983         fl_addto_choice(class_->choice_doc_pagestyle,
984                         tclass.opt_pagestyle().c_str());
985         fl_set_choice_text(class_->choice_doc_pagestyle,
986                         params.pagestyle.c_str());
987
988 }
989
990 void FormDocument::class_update(BufferParams const & params)
991 {
992         if (!class_.get())
993                 return;
994
995         UpdateClassParams(params);
996
997         fl_set_choice_text(class_->choice_doc_fonts,
998                 params.fonts.c_str());
999         fl_set_button(class_->radio_doc_indent, 0);
1000         fl_set_button(class_->radio_doc_skip, 0);
1001         if (params.paragraph_separation == BufferParams::PARSEP_INDENT)
1002                 fl_set_button(class_->radio_doc_indent, 1);
1003         else
1004                 fl_set_button(class_->radio_doc_skip, 1);
1005
1006         bool const input_length = fl_get_choice(class_->choice_doc_skip) == 4;
1007         setEnabled(class_->choice_default_skip_units, input_length);
1008         setEnabled(class_->input_doc_skip, input_length);
1009
1010         switch (params.getDefSkip().kind()) {
1011         case VSpace::SMALLSKIP:
1012                 fl_set_choice (class_->choice_doc_skip, 1);
1013                 break;
1014         case VSpace::MEDSKIP:
1015                 fl_set_choice (class_->choice_doc_skip, 2);
1016                 break;
1017         case VSpace::BIGSKIP:
1018                 fl_set_choice (class_->choice_doc_skip, 3);
1019                 break;
1020         case VSpace::LENGTH:
1021         {
1022                 int const paperchoice = fl_get_choice(paper_->choice_papersize);
1023                 bool const metric = (paperchoice == 1 && lyxrc.default_papersize > 3)
1024                         || paperchoice == 2 || paperchoice > 5;
1025                 string const default_unit = metric ? "cm" : "in";
1026                 string const length = params.getDefSkip().asLyXCommand();
1027                 updateWidgetsFromLengthString(class_->input_doc_skip,
1028                                               class_->choice_default_skip_units,
1029                                               length, default_unit);
1030                 break;
1031         }
1032         default:
1033                 fl_set_choice (class_->choice_doc_skip, 2);
1034                 break;
1035         }
1036         fl_set_button(class_->radio_doc_sides_one, 0);
1037         fl_set_button(class_->radio_doc_sides_two, 0);
1038         setEnabled(class_->choice_doc_skip,
1039                    fl_get_button(class_->radio_doc_skip));
1040
1041         if (params.sides == LyXTextClass::TwoSides)
1042                 fl_set_button(class_->radio_doc_sides_two, 1);
1043         else
1044                 fl_set_button(class_->radio_doc_sides_one, 1);
1045         fl_set_button(class_->radio_doc_columns_one, 0);
1046         fl_set_button(class_->radio_doc_columns_two, 0);
1047         if (params.columns == 2)
1048                 fl_set_button(class_->radio_doc_columns_two, 1);
1049         else
1050                 fl_set_button(class_->radio_doc_columns_one, 1);
1051
1052         fl_set_input(class_->input_doc_spacing, "");
1053         setEnabled(class_->input_doc_spacing, false);
1054
1055         switch (params.spacing.getSpace()) {
1056         case Spacing::Default: // nothing bad should happen with this
1057         case Spacing::Single:
1058                 // \singlespacing
1059                 fl_set_choice(class_->choice_doc_spacing, 1);
1060                 break;
1061         case Spacing::Onehalf:
1062                 // \onehalfspacing
1063                 fl_set_choice(class_->choice_doc_spacing, 2);
1064                 break;
1065         case Spacing::Double:
1066                 // \doublespacing
1067                 fl_set_choice(class_->choice_doc_spacing, 3);
1068                 break;
1069         case Spacing::Other:
1070         {
1071                 fl_set_choice(class_->choice_doc_spacing, 4);
1072                 char sval[20];
1073                 sprintf(sval,"%g",params.spacing.getValue());
1074                 fl_set_input(class_->input_doc_spacing, sval);
1075                 setEnabled(class_->input_doc_spacing, true);
1076                 break;
1077         }
1078         }
1079         if (!params.options.empty())
1080                 fl_set_input(class_->input_doc_extra, params.options.c_str());
1081         else
1082                 fl_set_input(class_->input_doc_extra, "");
1083 }
1084
1085
1086 void FormDocument::language_update(BufferParams const & params)
1087 {
1088         if (!language_.get())
1089                 return;
1090
1091         combo_language->select(params.language->lang());
1092         fl_set_choice_text(language_->choice_inputenc, params.inputenc.c_str());
1093         fl_set_choice(language_->choice_quotes_language, params.quotes_language + 1);
1094         fl_set_button(language_->radio_single, 0);
1095         fl_set_button(language_->radio_double, 0);
1096         if (params.quotes_times == InsetQuotes::SingleQ)
1097                 fl_set_button(language_->radio_single, 1);
1098         else
1099                 fl_set_button(language_->radio_double, 1);
1100 }
1101
1102
1103 void FormDocument::options_update(BufferParams const & params)
1104 {
1105         if (!options_.get())
1106                 return;
1107
1108         fl_set_choice_text(options_->choice_postscript_driver,
1109                            params.graphicsDriver.c_str());
1110         fl_set_button(options_->check_use_amsmath, params.use_amsmath);
1111         fl_set_button(options_->check_use_natbib,  params.use_natbib);
1112         fl_set_choice(options_->choice_citation_format,
1113                       int(params.use_numerical_citations)+1);
1114         setEnabled(options_->choice_citation_format, params.use_natbib);
1115         fl_set_counter_value(options_->counter_secnumdepth, params.secnumdepth);
1116         fl_set_counter_value(options_->counter_tocdepth, params.tocdepth);
1117         if (!params.float_placement.empty())
1118                 fl_set_input(options_->input_float_placement,
1119                              params.float_placement.c_str());
1120         else
1121                 fl_set_input(options_->input_float_placement, "");
1122 }
1123
1124
1125 void FormDocument::paper_update(BufferParams const & params)
1126 {
1127         if (!paper_.get())
1128                 return;
1129
1130         fl_set_choice(paper_->choice_papersize, params.papersize2 + 1);
1131         fl_set_choice(paper_->choice_paperpackage, params.paperpackage + 1);
1132         fl_set_button(paper_->check_use_geometry, params.use_geometry);
1133
1134         int const paperchoice = fl_get_choice(paper_->choice_papersize);
1135         bool const useCustom = paperchoice == 2;
1136         bool const useGeom = fl_get_button(paper_->check_use_geometry);
1137
1138         fl_set_button(paper_->radio_portrait, 0);
1139         setEnabled(paper_->radio_portrait, !useCustom);
1140         fl_set_button(paper_->radio_landscape, 0);
1141         setEnabled(paper_->radio_landscape, !useCustom);
1142
1143         if (params.orientation == BufferParams::ORIENTATION_LANDSCAPE)
1144                 fl_set_button(paper_->radio_landscape, 1);
1145         else
1146                 fl_set_button(paper_->radio_portrait, 1);
1147         setEnabled(paper_->choice_paperpackage,
1148                    //either default papersize (preferences)
1149                    //or document papersize has to be A4
1150                    (paperchoice == 7
1151                     || paperchoice == 1 && lyxrc.default_papersize == 5)
1152                    && fl_get_button(paper_->radio_portrait));
1153
1154         // Default unit choice is cm if metric, inches if US paper.
1155         bool const metric = (paperchoice == 1 && lyxrc.default_papersize > 3)
1156                 || paperchoice == 2 || paperchoice > 5;
1157         string const default_unit = metric ? "cm" : "in";
1158         updateWidgetsFromLengthString(paper_->input_custom_width,
1159                                       paper_->choice_custom_width_units,
1160                                       params.paperwidth, default_unit);
1161         setEnabled(paper_->input_custom_width, useCustom);
1162         setEnabled(paper_->choice_custom_width_units, useCustom);
1163
1164         updateWidgetsFromLengthString(paper_->input_custom_height,
1165                                       paper_->choice_custom_height_units,
1166                                       params.paperheight, default_unit);
1167         setEnabled(paper_->input_custom_height, useCustom);
1168         setEnabled(paper_->choice_custom_height_units, useCustom);
1169
1170         updateWidgetsFromLengthString(paper_->input_inner_margin,
1171                                       paper_->choice_inner_margin_units,
1172                                       params.leftmargin, default_unit);
1173         setEnabled(paper_->input_inner_margin, useGeom);
1174         setEnabled(paper_->choice_inner_margin_units, useGeom);
1175
1176         updateWidgetsFromLengthString(paper_->input_top_margin,
1177                                       paper_->choice_top_margin_units,
1178                                       params.topmargin, default_unit);
1179         setEnabled(paper_->input_top_margin, useGeom);
1180         setEnabled(paper_->choice_top_margin_units, useGeom);
1181
1182         updateWidgetsFromLengthString(paper_->input_outer_margin,
1183                                       paper_->choice_outer_margin_units,
1184                                       params.rightmargin, default_unit);
1185         setEnabled(paper_->input_outer_margin, useGeom);
1186         setEnabled(paper_->choice_outer_margin_units, useGeom);
1187
1188         updateWidgetsFromLengthString(paper_->input_bottom_margin,
1189                                       paper_->choice_bottom_margin_units,
1190                                       params.bottommargin, default_unit);
1191         setEnabled(paper_->input_bottom_margin, useGeom);
1192         setEnabled(paper_->choice_bottom_margin_units, useGeom);
1193
1194         updateWidgetsFromLengthString(paper_->input_head_height,
1195                                       paper_->choice_head_height_units,
1196                                       params.headheight, default_unit);
1197         setEnabled(paper_->input_head_height, useGeom);
1198         setEnabled(paper_->choice_head_height_units, useGeom);
1199
1200         updateWidgetsFromLengthString(paper_->input_head_sep,
1201                                       paper_->choice_head_sep_units,
1202                                       params.headsep, default_unit);
1203         setEnabled(paper_->input_head_sep, useGeom);
1204         setEnabled(paper_->choice_head_sep_units, useGeom);
1205
1206         updateWidgetsFromLengthString(paper_->input_foot_skip,
1207                                       paper_->choice_foot_skip_units,
1208                                       params.footskip, default_unit);
1209         setEnabled(paper_->input_foot_skip, useGeom);
1210         setEnabled(paper_->choice_foot_skip_units, useGeom);
1211
1212         fl_set_focus_object(paper_->form, paper_->choice_papersize);
1213 }
1214
1215
1216 void FormDocument::bullets_update(BufferParams const & params)
1217 {
1218         if (!bullets_.get() ||
1219             ((XpmVersion<4) ||
1220              (XpmVersion==4 && XpmRevision<7)))
1221                 return;
1222
1223         bool const isLinuxDoc = lv_->buffer()->isLinuxDoc();
1224         setEnabled(fbullet, !isLinuxDoc);
1225
1226         if (isLinuxDoc) return;
1227
1228         fl_set_button(bullets_->radio_bullet_depth_1, 1);
1229         fl_set_input(bullets_->input_bullet_latex,
1230                      params.user_defined_bullets[0].getText().c_str());
1231         fl_set_choice(bullets_->choice_bullet_size,
1232                       params.user_defined_bullets[0].getSize() + 2);
1233 }
1234
1235
1236 void FormDocument::checkReadOnly()
1237 {
1238         if (bc().readOnly(lv_->buffer()->isReadonly())) {
1239                 combo_doc_class->deactivate();
1240                 combo_language->deactivate();
1241                 postWarning(_("Document is read-only."
1242                               " No changes to layout permitted."));
1243         } else {
1244                 combo_doc_class->activate();
1245                 combo_language->activate();
1246                 clearMessage();
1247         }
1248 }
1249
1250
1251 bool FormDocument::CheckDocumentInput(FL_OBJECT * ob, long)
1252 {
1253         string str;
1254         bool ok = true;
1255         char const * input;
1256
1257         // this has to be all out of if/elseif because it has to deactivate
1258         // the document buttons and so the whole stuff has to be tested again.
1259         // disable OK/Apply if input is not valid
1260         str = fl_get_input(class_->input_doc_skip);
1261         ok = ok && (str.empty() || isValidLength(str) || isStrDbl(str));
1262         str = fl_get_input(paper_->input_custom_width);
1263         ok = ok && (str.empty() || isValidLength(str) || isStrDbl(str));
1264         str = fl_get_input(paper_->input_custom_height);
1265         ok = ok && (str.empty() || isValidLength(str) || isStrDbl(str));
1266         str = fl_get_input(paper_->input_outer_margin);
1267         ok = ok && (str.empty() || isValidLength(str) || isStrDbl(str));
1268         str = fl_get_input(paper_->input_inner_margin);
1269         ok = ok && (str.empty() || isValidLength(str) || isStrDbl(str));
1270         str = fl_get_input(paper_->input_top_margin);
1271         ok = ok && (str.empty() || isValidLength(str) || isStrDbl(str));
1272         str = fl_get_input(paper_->input_bottom_margin);
1273         ok = ok && (str.empty() || isValidLength(str) || isStrDbl(str));
1274         str = fl_get_input(paper_->input_head_height);
1275         ok = ok && (str.empty() || isValidLength(str) || isStrDbl(str));
1276         str = fl_get_input(paper_->input_head_sep);
1277         ok = ok && (str.empty() || isValidLength(str) || isStrDbl(str));
1278         str = fl_get_input(paper_->input_foot_skip);
1279         ok = ok && (str.empty() || isValidLength(str) || isStrDbl(str));
1280
1281         //display warning if input is not valid
1282         if (ob == class_->input_doc_skip
1283             || ob == paper_->input_custom_width
1284             || ob == paper_->input_custom_height
1285             || ob == paper_->input_outer_margin
1286             || ob == paper_->input_inner_margin
1287             || ob == paper_->input_top_margin
1288             || ob == paper_->input_bottom_margin
1289             || ob == paper_->input_head_height
1290             || ob == paper_->input_head_sep
1291             || ob == paper_->input_foot_skip) {
1292                 if (!ok) {
1293                         postWarning(_("Invalid Length (valid example: 10mm)"));
1294                         return false;
1295                 } else {
1296                         clearMessage();
1297                         return true;
1298                 }
1299         }
1300
1301         // "Synchronize" the choice and the input field, so that it
1302         // is impossible to commit senseless data.
1303         input = fl_get_input (class_->input_doc_skip);
1304         if ((fl_get_choice(class_->choice_doc_skip) == 4) && !*input)
1305                 ok = false;
1306         else if (fl_get_choice(class_->choice_doc_skip) != 4)
1307                 fl_set_input (class_->input_doc_skip, "");
1308
1309         input = fl_get_input(class_->input_doc_spacing);
1310         if ((fl_get_choice(class_->choice_doc_spacing) == 4) && !*input)
1311                 ok = false;
1312         else if (fl_get_choice(class_->choice_doc_spacing) != 4)
1313                 fl_set_input (class_->input_doc_spacing, "");
1314         return ok;
1315 }
1316
1317
1318 void FormDocument::ChoiceBulletSize(FL_OBJECT * ob, long /*data*/)
1319 {
1320         BufferParams & param = lv_->buffer()->params;
1321
1322         // convert from 1-6 range to -1-4
1323         param.temp_bullets[current_bullet_depth].setSize(fl_get_choice(ob) - 2);
1324         fl_set_input(bullets_->input_bullet_latex,
1325                      param.temp_bullets[current_bullet_depth].getText().c_str());
1326 }
1327
1328
1329 void FormDocument::InputBulletLaTeX(FL_OBJECT *, long)
1330 {
1331         BufferParams & param = lv_->buffer()->params;
1332
1333         param.temp_bullets[current_bullet_depth].
1334                 setText(fl_get_input(bullets_->input_bullet_latex));
1335 }
1336
1337
1338 void FormDocument::BulletDepth(FL_OBJECT * ob, State cb)
1339 {
1340         /* Should I do the following:                                 */
1341         /*  1. change to the panel that the current bullet belongs in */
1342         /*  2. show that bullet as selected                           */
1343         /*  3. change the size setting to the size of the bullet in Q.*/
1344         /*  4. display the latex equivalent in the latex box          */
1345         /*                                                            */
1346         /* I'm inclined to just go with 3 and 4 at the moment and     */
1347         /* maybe try to support the others later                      */
1348         BufferParams & param = lv_->buffer()->params;
1349
1350         int data = 0;
1351         if (cb == BULLETDEPTH1)
1352                 data = 0;
1353         else if (cb == BULLETDEPTH2)
1354                 data = 1;
1355         else if (cb == BULLETDEPTH3)
1356                 data = 2;
1357         else if (cb == BULLETDEPTH4)
1358                 data = 3;
1359
1360         switch (fl_get_button_numb(ob)) {
1361         case 3:
1362                 // right mouse button resets to default
1363                 param.temp_bullets[data] = ITEMIZE_DEFAULTS[data];
1364         default:
1365                 current_bullet_depth = data;
1366                 fl_set_input(bullets_->input_bullet_latex,
1367                              param.temp_bullets[data].getText().c_str());
1368                 fl_set_choice(bullets_->choice_bullet_size,
1369                               param.temp_bullets[data].getSize() + 2);
1370         }
1371 }
1372
1373
1374 void FormDocument::BulletPanel(FL_OBJECT * /*ob*/, State cb)
1375 {
1376         /* Here we have to change the background pixmap to that selected */
1377         /* by the user. (eg. standard.xpm, psnfss1.xpm etc...)           */
1378
1379         int data = 0;
1380         if (cb == BULLETPANEL1)
1381                 data = 0;
1382         else if (cb == BULLETPANEL2)
1383                 data = 1;
1384         else if (cb == BULLETPANEL3)
1385                 data = 2;
1386         else if (cb == BULLETPANEL4)
1387                 data = 3;
1388         else if (cb == BULLETPANEL5)
1389                 data = 4;
1390         else if (cb == BULLETPANEL6)
1391                 data = 5;
1392
1393         if (data != current_bullet_panel) {
1394                 fl_freeze_form(bullets_->form);
1395                 current_bullet_panel = data;
1396
1397                 /* free the current pixmap */
1398                 fl_free_bmtable_pixmap(bullets_->bmtable_bullet_panel);
1399                 string new_panel;
1400                 switch (cb) {
1401                         /* display the new one */
1402                 case BULLETPANEL1 :
1403                         new_panel = "standard";
1404                         break;
1405                 case BULLETPANEL2 :
1406                         new_panel = "amssymb";
1407                         break;
1408                 case BULLETPANEL3 :
1409                         new_panel = "psnfss1";
1410                         break;
1411                 case BULLETPANEL4 :
1412                         new_panel = "psnfss2";
1413                         break;
1414                 case BULLETPANEL5 :
1415                         new_panel = "psnfss3";
1416                         break;
1417                 case BULLETPANEL6 :
1418                         new_panel = "psnfss4";
1419                         break;
1420                 default :
1421                         /* something very wrong happened */
1422                         // play it safe for now but should be an exception
1423                         current_bullet_panel = 0;  // standard panel
1424                         new_panel = "standard";
1425                         break;
1426                 }
1427                 new_panel += ".xpm";
1428                 fl_set_bmtable_pixmap_file(bullets_->bmtable_bullet_panel, 6, 6,
1429                                            LibFileSearch("images", new_panel).c_str());
1430                 fl_redraw_object(bullets_->bmtable_bullet_panel);
1431                 fl_unfreeze_form(bullets_->form);
1432         }
1433 }
1434
1435
1436 void FormDocument::BulletBMTable(FL_OBJECT * ob, long /*data*/)
1437 {
1438         /* handle the user input by setting the current bullet depth's pixmap */
1439         /* to that extracted from the current chosen position of the BMTable  */
1440         /* Don't forget to free the button's old pixmap first.                */
1441
1442         BufferParams & param = lv_->buffer()->params;
1443         int bmtable_button = fl_get_bmtable(ob);
1444
1445         /* try to keep the button held down till another is pushed */
1446         /*  fl_set_bmtable(ob, 1, bmtable_button); */
1447         param.temp_bullets[current_bullet_depth].setFont(current_bullet_panel);
1448         param.temp_bullets[current_bullet_depth].setCharacter(bmtable_button);
1449         fl_set_input(bullets_->input_bullet_latex,
1450                      param.temp_bullets[current_bullet_depth].getText().c_str());
1451 }
1452
1453
1454 void FormDocument::CheckChoiceClass(FL_OBJECT * ob, long)
1455 {
1456         if (!ob)
1457                 ob = class_->choice_doc_class;
1458
1459         lv_->prohibitInput();
1460
1461         unsigned int tc = combo_doc_class->get() - 1;
1462         if (textclasslist[tc].load()) {
1463                 // we use a copy of the bufferparams because we do not
1464                 // want to modify them yet.
1465                 BufferParams params = lv_->buffer()->params;
1466
1467                 if (lyxrc.auto_reset_options) {
1468                         params.textclass = tc;
1469                         params.useClassDefaults();
1470                         UpdateLayoutDocument(params);
1471                 } else {
1472                         // update the params which are needed in any case
1473                         // (fontsizes, pagestyle)
1474                         params.textclass = tc;
1475                         UpdateClassParams(params);
1476                 }
1477
1478         } else {
1479                 // unable to load new style
1480                 Alert::alert(_("Conversion Errors!"),
1481                              _("Unable to switch to new document class."),
1482                              _("Reverting to original document class."));
1483                 combo_doc_class->select(int(lv_->buffer()->params.textclass) + 1);
1484         }
1485         lv_->allowInput();
1486 }
1487
1488
1489 void FormDocument::UpdateLayoutDocument(BufferParams const & params)
1490 {
1491         if (!dialog_.get())
1492                 return;
1493
1494         checkReadOnly();
1495         class_update(params);
1496         paper_update(params);
1497         language_update(params);
1498         options_update(params);
1499         bullets_update(params);
1500 }