]> git.lyx.org Git - features.git/blob - src/frontends/xforms/FormDocument.C
The 'Branches' mega-patch.
[features.git] / src / frontends / xforms / FormDocument.C
1 /**
2  * \file FormDocument.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Jürgen Vigna
7  * \author Rob Lahaye
8  * \author Martin Vermeer
9  * \author Juergen Spitzmueller
10  *
11  * Full author contact details are available in file CREDITS
12  */
13
14 #include <config.h>
15
16 #include "ControlDocument.h"
17 #include "FormDocument.h"
18 #include "forms/form_document.h"
19 #include "xformsBC.h"
20 #include "ButtonController.h"
21
22 #include "FormColorpicker.h"
23 #include "LColor.h"
24 #include "Lsstream.h"
25 #include "bmtable.h"
26 #include "checkedwidgets.h"
27 #include "Tooltips.h"
28 #include "input_validators.h" // fl_unsigned_float_filter
29 #include "xforms_helpers.h"
30
31 #include "bufferparams.h"
32 #include "CutAndPaste.h"
33 #include "debug.h"
34 #include "language.h"
35 #include "lyxrc.h"
36 #include "lyxtextclasslist.h"
37 #include "tex-strings.h"
38 #include "ColorHandler.h"
39
40 #include "controllers/frnt_lang.h"
41 #include "controllers/helper_funcs.h"
42
43 #include "support/tostr.h"
44 #include "support/lstrings.h" // contains_functor, getStringFromVector
45 #include "support/filetools.h" // LibFileSearch
46
47 #include "lyx_xpm.h"
48 #include "lyx_forms.h"
49 #include "combox.h"
50
51 #include <boost/bind.hpp>
52
53 #include <functional>
54 #include <iomanip>
55
56 using namespace lyx::support;
57
58 using std::bind2nd;
59 using std::vector;
60 using std::endl;
61 using std::setw;
62 using std::setfill;
63
64
65 namespace {
66
67 #if FL_VERSION == 0 || (FL_REVISION == 0 && FL_FIXLEVEL < 2)
68 bool const scalableTabfolders = false;
69 #else
70 bool const scalableTabfolders = true;
71 #endif
72
73
74 } // namespace anon
75
76
77 typedef FormCB<ControlDocument, FormDB<FD_document> > base_class;
78
79 FormDocument::FormDocument()
80         : base_class(_("Document Settings"), scalableTabfolders),
81           ActCell(0), Confirmed(0),
82           current_bullet_panel(0), current_bullet_depth(0), fbullet(0)
83 {}
84
85
86 void FormDocument::redraw()
87 {
88         if (form() && form()->visible)
89                 fl_redraw_form(form());
90         else
91                 return;
92
93         FL_FORM * outer_form = fl_get_active_folder(dialog_->tabfolder);
94         if (outer_form && outer_form->visible)
95                 fl_redraw_form(outer_form);
96 }
97
98
99 void FormDocument::build()
100 {
101         // the tabbed folder
102         dialog_.reset(build_document(this));
103
104         // Allow the base class to control messages
105         setMessageWidget(dialog_->text_warning);
106
107         // Manage the restore, ok, apply, restore and cancel/close buttons
108         bcview().setOK(dialog_->button_ok);
109         bcview().setApply(dialog_->button_apply);
110         bcview().setCancel(dialog_->button_close);
111         bcview().setRestore(dialog_->button_restore);
112
113         // the document class form
114         class_.reset(build_document_class(this));
115
116         // disable for read-only documents
117         bcview().addReadOnly(class_->combox_class);
118         bcview().addReadOnly(class_->radio_indent);
119         bcview().addReadOnly(class_->radio_skip);
120         bcview().addReadOnly(class_->choice_pagestyle);
121         bcview().addReadOnly(class_->choice_fonts);
122         bcview().addReadOnly(class_->choice_fontsize);
123         bcview().addReadOnly(class_->radio_sides_one);
124         bcview().addReadOnly(class_->radio_sides_two);
125         bcview().addReadOnly(class_->radio_columns_one);
126         bcview().addReadOnly(class_->radio_columns_two);
127         bcview().addReadOnly(class_->input_extra);
128         bcview().addReadOnly(class_->input_skip);
129         bcview().addReadOnly(class_->choice_skip);
130         bcview().addReadOnly(class_->choice_spacing);
131         bcview().addReadOnly(class_->input_spacing);
132
133         // check validity of "length + unit" input
134         addCheckedGlueLength(bcview(), class_->input_skip,
135                              class_->choice_skip);
136
137         // trigger an input event for cut&paste with middle mouse button.
138         setPrehandler(class_->input_extra);
139         setPrehandler(class_->input_skip);
140         setPrehandler(class_->input_spacing);
141
142         fl_set_input_return(class_->input_extra, FL_RETURN_CHANGED);
143         fl_set_input_return(class_->input_skip, FL_RETURN_CHANGED);
144         fl_set_input_return(class_->input_spacing, FL_RETURN_CHANGED);
145
146         FL_OBJECT * obj;
147
148         // Fill the combox and choices.
149         obj = class_->combox_class;
150         LyXTextClassList::const_iterator tit  = textclasslist.begin();
151         LyXTextClassList::const_iterator tend = textclasslist.end();
152         for (; tit != tend; ++tit) {
153                 if (tit->isTeXClassAvailable()) {
154                         fl_addto_combox(obj, tit->description().c_str());
155                 } else {
156                         string item = bformat(_("Unavailable: %1$s"), tit->description());
157                         fl_addto_combox(obj, item.c_str());
158                 }
159         }
160         fl_set_combox_browser_height(obj, 400);
161
162         fl_addto_choice(class_->choice_spacing,
163                         _(" Single | OneHalf | Double | Custom ").c_str());
164         fl_addto_choice(class_->choice_fontsize, "default|10|11|12");
165         for (int n = 0; tex_fonts[n][0]; ++n) {
166                 fl_addto_choice(class_->choice_fonts,tex_fonts[n]);
167         }
168
169         // Create the contents of the unit choices; don't include the
170         // "%" terms...
171         vector<string> units_vec = getLatexUnits();
172         vector<string>::iterator ret =
173                 std::remove_if(units_vec.begin(),
174                                units_vec.end(),
175                                bind2nd(contains_functor(), "%"));
176         units_vec.erase(ret, units_vec.end());
177
178         string const units = getStringFromVector(units_vec, "|");
179
180         fl_addto_choice(class_->choice_pagestyle,
181                         "default|empty|plain|headings|fancy");
182         fl_addto_choice(class_->choice_skip,
183                         _(" SmallSkip | MedSkip | BigSkip | Length ").c_str());
184         fl_addto_choice(class_->choice_skip_units,  units.c_str());
185
186         // Set input filters on doc spacing to make it accept only
187         // unsigned numbers.
188         fl_set_input_filter(class_->input_spacing,
189                             fl_unsigned_float_filter);
190
191         // disable for read-only documents
192         bcview().addReadOnly(dialog_->button_save_defaults);
193         bcview().addReadOnly(dialog_->button_reset_defaults);
194
195         // the document paper form
196         paper_.reset(build_document_paper(this));
197
198         // disable for read-only documents
199         bcview().addReadOnly(paper_->choice_paperpackage);
200         bcview().addReadOnly(paper_->radio_portrait);
201         bcview().addReadOnly(paper_->radio_landscape);
202         bcview().addReadOnly(paper_->choice_papersize);
203         bcview().addReadOnly(paper_->check_use_geometry);
204         bcview().addReadOnly(paper_->input_custom_width);
205         bcview().addReadOnly(paper_->input_custom_height);
206         bcview().addReadOnly(paper_->input_top_margin);
207         bcview().addReadOnly(paper_->input_bottom_margin);
208         bcview().addReadOnly(paper_->input_inner_margin);
209         bcview().addReadOnly(paper_->input_outer_margin);
210         bcview().addReadOnly(paper_->input_head_height);
211         bcview().addReadOnly(paper_->input_head_sep);
212         bcview().addReadOnly(paper_->input_foot_skip);
213
214         // check validity of "length + unit" input
215         addCheckedGlueLength(bcview(), paper_->input_custom_width);
216         addCheckedGlueLength(bcview(), paper_->input_custom_height);
217         addCheckedGlueLength(bcview(), paper_->input_top_margin);
218         addCheckedGlueLength(bcview(), paper_->input_bottom_margin);
219         addCheckedGlueLength(bcview(), paper_->input_inner_margin);
220         addCheckedGlueLength(bcview(), paper_->input_outer_margin);
221         addCheckedGlueLength(bcview(), paper_->input_head_height);
222         addCheckedGlueLength(bcview(), paper_->input_head_sep);
223         addCheckedGlueLength(bcview(), paper_->input_foot_skip);
224
225         // trigger an input event for cut&paste with middle mouse button.
226         setPrehandler(paper_->input_custom_width);
227         setPrehandler(paper_->input_custom_height);
228         setPrehandler(paper_->input_top_margin);
229         setPrehandler(paper_->input_bottom_margin);
230         setPrehandler(paper_->input_inner_margin);
231         setPrehandler(paper_->input_outer_margin);
232         setPrehandler(paper_->input_head_height);
233         setPrehandler(paper_->input_head_sep);
234         setPrehandler(paper_->input_foot_skip);
235
236         fl_set_input_return(paper_->input_custom_width,  FL_RETURN_CHANGED);
237         fl_set_input_return(paper_->input_custom_height, FL_RETURN_CHANGED);
238         fl_set_input_return(paper_->input_top_margin,    FL_RETURN_CHANGED);
239         fl_set_input_return(paper_->input_bottom_margin, FL_RETURN_CHANGED);
240         fl_set_input_return(paper_->input_inner_margin,  FL_RETURN_CHANGED);
241         fl_set_input_return(paper_->input_outer_margin,  FL_RETURN_CHANGED);
242         fl_set_input_return(paper_->input_head_height,   FL_RETURN_CHANGED);
243         fl_set_input_return(paper_->input_head_sep,      FL_RETURN_CHANGED);
244         fl_set_input_return(paper_->input_foot_skip,     FL_RETURN_CHANGED);
245
246         fl_addto_choice(paper_->choice_papersize,
247                         _(" Default | Custom | US letter | US legal "
248                           "| US executive | A3 | A4 | A5 "
249                           "| B3 | B4 | B5 ").c_str());
250         fl_addto_choice(paper_->choice_paperpackage,
251                         _(" None "
252                           "| Small Margins "
253                           "| Very small Margins "
254                           "| Very wide Margins ").c_str());
255
256         fl_addto_choice(paper_->choice_custom_width_units,  units.c_str());
257         fl_addto_choice(paper_->choice_custom_height_units, units.c_str());
258         fl_addto_choice(paper_->choice_top_margin_units,    units.c_str());
259         fl_addto_choice(paper_->choice_bottom_margin_units, units.c_str());
260         fl_addto_choice(paper_->choice_inner_margin_units,  units.c_str());
261         fl_addto_choice(paper_->choice_outer_margin_units,  units.c_str());
262         fl_addto_choice(paper_->choice_head_height_units,   units.c_str());
263         fl_addto_choice(paper_->choice_head_sep_units,      units.c_str());
264         fl_addto_choice(paper_->choice_foot_skip_units,     units.c_str());
265
266         // the document language form
267         language_.reset(build_document_language(this));
268
269         // disable for read-only documents
270         bcview().addReadOnly(language_->combox_language);
271         bcview().addReadOnly(language_->choice_inputenc);
272         bcview().addReadOnly(language_->choice_quotes_language);
273         bcview().addReadOnly(language_->radio_single);
274         bcview().addReadOnly(language_->radio_double);
275
276         fl_addto_choice(language_->choice_inputenc,
277                         "default|auto|latin1|latin2|latin3|latin4|latin5|latin9"
278                         "|koi8-r|koi8-u|cp866|cp1251|iso88595|pt154");
279
280         vector<frnt::LanguagePair> const langs = frnt::getLanguageData(false);
281         // Store the identifiers for later
282         lang_ = getSecond(langs);
283
284         vector<frnt::LanguagePair>::const_iterator lit  = langs.begin();
285         vector<frnt::LanguagePair>::const_iterator lend = langs.end();
286         for (; lit != lend; ++lit) {
287                 fl_addto_combox(language_->combox_language,
288                                 lit->first.c_str());
289         }
290         fl_set_combox_browser_height(language_->combox_language, 400);
291
292         fl_addto_choice(language_->choice_quotes_language,
293                         _(" ``text'' | ''text'' | ,,text`` | ,,text'' |"
294                           " «text» | »text« ").c_str());
295
296         // the document options form
297         options_.reset(build_document_options(this));
298
299         // disable for read-only documents
300         bcview().addReadOnly(options_->counter_secnumdepth);
301         bcview().addReadOnly(options_->counter_tocdepth);
302         bcview().addReadOnly(options_->choice_ams_math);
303         bcview().addReadOnly(options_->check_use_natbib);
304         bcview().addReadOnly(options_->choice_citation_format);
305         bcview().addReadOnly(options_->input_float_placement);
306         bcview().addReadOnly(options_->choice_postscript_driver);
307
308         // trigger an input event for cut&paste with middle mouse button.
309         setPrehandler(options_->input_float_placement);
310
311         fl_set_input_return(options_->input_float_placement, FL_RETURN_CHANGED);
312
313         fl_addto_choice(options_->choice_ams_math,
314                         _("Never | Automatically | Yes ").c_str());
315
316         for (int n = 0; tex_graphics[n][0]; ++n) {
317                 fl_addto_choice(options_->choice_postscript_driver,
318                                 tex_graphics[n]);
319         }
320         fl_addto_choice(options_->choice_citation_format,
321                         _(" Author-year | Numerical ").c_str());
322
323         // the document bullets form
324         bullets_.reset(build_document_bullet(this));
325
326         // disable for read-only documents
327         bcview().addReadOnly(bullets_->radio_depth_1);
328         bcview().addReadOnly(bullets_->radio_depth_2);
329         bcview().addReadOnly(bullets_->radio_depth_3);
330         bcview().addReadOnly(bullets_->radio_depth_4);
331         bcview().addReadOnly(bullets_->radio_panel_standard);
332         bcview().addReadOnly(bullets_->radio_panel_maths);
333         bcview().addReadOnly(bullets_->radio_panel_ding1);
334         bcview().addReadOnly(bullets_->radio_panel_ding2);
335         bcview().addReadOnly(bullets_->radio_panel_ding3);
336         bcview().addReadOnly(bullets_->radio_panel_ding4);
337         bcview().addReadOnly(bullets_->bmtable_panel);
338         bcview().addReadOnly(bullets_->choice_size);
339         bcview().addReadOnly(bullets_->input_latex);
340
341         // trigger an input event for cut&paste with middle mouse button.
342         setPrehandler(bullets_->input_latex);
343
344         fl_set_input_return(bullets_->input_latex, FL_RETURN_CHANGED);
345
346         fl_addto_choice(bullets_->choice_size,
347                         _(" Default | Tiny | Smallest | Smaller "
348                           "| Small | Normal | Large | Larger | Largest "
349                           "| Huge | Huger ").c_str());
350         fl_set_choice(bullets_->choice_size, 1);
351
352         fl_set_input_maxchars(bullets_->input_latex, 80);
353
354         string const bmtablefile = LibFileSearch("images", "standard", "xpm");
355         fl_set_bmtable_pixmap_file(bullets_->bmtable_panel, 6, 6,
356                                    bmtablefile.c_str());
357
358         picker_.reset(new FormColorpicker);
359         
360         // the document branches form
361         branch_.reset(build_document_branch(this));
362
363         fl_set_object_color(branch_->button_color,
364                 GUI_COLOR_CHOICE, GUI_COLOR_CHOICE);
365         
366         bcview().addReadOnly(branch_->input_all_branches);
367         bcview().addReadOnly(branch_->button_add_branch);
368         bcview().addReadOnly(branch_->button_remove_branch);
369         bcview().addReadOnly(branch_->button_select);
370         bcview().addReadOnly(branch_->button_deselect);
371         bcview().addReadOnly(branch_->button_modify);
372         bcview().addReadOnly(branch_->browser_all_branches);
373
374         // set up the tooltips for branches form
375         string str = _("Enter the name of a new branch.");
376         tooltips().init(branch_->input_all_branches, str);
377         str = _("Add a new branch to the document.");
378         tooltips().init(branch_->button_add_branch, str);
379         str = _("Remove the selected branch from the document.");
380         tooltips().init(branch_->button_remove_branch, str);
381         str = _("Activate the selected branch for output.");
382         tooltips().init(branch_->button_select, str);
383         str = _("Deactivate the selected activated branch.");
384         tooltips().init(branch_->button_deselect, str);
385         str = _("Available branches for this document.");
386         tooltips().init(branch_->browser_all_branches, str);
387         str = _("Activated branches. Content will occur in the document\'s output");
388         tooltips().init(branch_->browser_selection, str);
389         str = _("Modify background color of branch inset");
390         tooltips().init(branch_->button_modify, str);
391         str = _("Background color of branch inset");
392         tooltips().init(branch_->button_color, str);
393
394         // Handle middle mouse paint:
395         setPrehandler(branch_->input_all_branches);
396         fl_set_input_return(branch_->input_all_branches, FL_RETURN_CHANGED);
397
398         // Enable the tabfolder to be rescaled correctly.
399         if (scalableTabfolders)
400                 fl_set_tabfolder_autofit(dialog_->tabfolder, FL_FIT);
401
402         // Stack tabs
403         fl_addto_tabfolder(dialog_->tabfolder,_("Document").c_str(),
404                            class_->form);
405         fl_addto_tabfolder(dialog_->tabfolder,_("Paper").c_str(),
406                            paper_->form);
407         fl_addto_tabfolder(dialog_->tabfolder,_("Language").c_str(),
408                            language_->form);
409         fl_addto_tabfolder(dialog_->tabfolder,_("Extra").c_str(),
410                            options_->form);
411         fbullet = fl_addto_tabfolder(dialog_->tabfolder,_("Bullets").c_str(),
412                                      bullets_->form);
413
414         if ((XpmVersion < 4) || (XpmVersion == 4 && XpmRevision < 7)) {
415                 lyxerr << _("Your version of libXpm is older than 4.7.\n"
416                             "The `bullet' tab of the document dialog "
417                             "has been disabled") << '\n';
418                 fl_deactivate_object(fbullet);
419                 fl_set_object_lcol(fbullet, FL_INACTIVE);
420         }
421
422         fl_addto_tabfolder(dialog_->tabfolder,_("Branches").c_str(),
423                                      branch_->form);
424 }
425
426
427 void FormDocument::apply()
428 {
429         BufferParams & params = controller().params();
430
431         class_apply(params);
432         paper_apply(params);
433         language_apply(params);
434         options_apply(params);
435         bullets_apply(params);
436         branch_apply(params);
437 }
438
439
440 void FormDocument::update()
441 {
442         if (!dialog_.get())
443                 return;
444
445         checkReadOnly();
446
447         BufferParams const & params = controller().params();
448
449         class_update(params);
450         paper_update(params);
451         language_update(params);
452         options_update(params);
453         bullets_update(params);
454         branch_update(params);
455 }
456
457
458 ButtonPolicy::SMInput FormDocument::input(FL_OBJECT * ob, long)
459 {
460         if (ob == bullets_->choice_size) {
461                 ChoiceBulletSize(ob, 0);
462
463         } else if (ob == bullets_->input_latex) {
464                 InputBulletLaTeX(ob, 0);
465
466         } else if (ob == bullets_->radio_depth_1 ||
467                    ob == bullets_->radio_depth_2 ||
468                    ob == bullets_->radio_depth_3 ||
469                    ob == bullets_->radio_depth_4) {
470                 BulletDepth(ob);
471
472         } else if (ob == bullets_->radio_panel_standard ||
473                    ob == bullets_->radio_panel_maths ||
474                    ob == bullets_->radio_panel_ding1 ||
475                    ob == bullets_->radio_panel_ding2 ||
476                    ob == bullets_->radio_panel_ding3 ||
477                    ob == bullets_->radio_panel_ding4) {
478                 BulletPanel(ob);
479
480         } else if (ob == bullets_->bmtable_panel) {
481                 BulletBMTable(ob, 0);
482
483         } else if (ob == class_->choice_spacing) {
484                 setEnabled(class_->input_spacing,
485                            fl_get_choice(class_->choice_spacing) == 4);
486
487         } else if (ob == class_->combox_class) {
488                 CheckChoiceClass();
489         } else if (ob == class_->radio_skip ||
490                    ob == class_->radio_indent ||
491                    ob == class_->choice_skip) {
492                 bool const skip_used = fl_get_button(class_->radio_skip);
493                 setEnabled(class_->choice_skip, skip_used);
494
495                 bool const length_input =
496                         fl_get_choice(class_->choice_skip) == 4;
497                 setEnabled(class_->input_skip,
498                            skip_used && length_input);
499                 setEnabled(class_->choice_skip_units,
500                            skip_used && length_input);
501
502                 // Default unit choice is cm if metric, inches if US paper.
503                 // If papersize is default, check the lyxrc-settings
504                 int const paperchoice = fl_get_choice(paper_->choice_papersize);
505                 bool const metric = (paperchoice == 1 && lyxrc.default_papersize > PAPER_EXECUTIVEPAPER)
506                         || paperchoice == 2 || paperchoice > 5;
507                 string const default_unit = metric ? "cm" : "in";
508                 if (getString(class_->input_skip).empty())
509                         fl_set_choice_text(class_->choice_skip_units,
510                                            default_unit.c_str());
511
512         } else if (ob == options_->check_use_natbib) {
513                 setEnabled(options_->choice_citation_format,
514                            fl_get_button(options_->check_use_natbib));
515
516         } else if (ob == branch_->browser_all_branches ||
517                         ob == branch_->browser_selection ||
518                         ob == branch_->button_add_branch ||
519                         ob == branch_->button_remove_branch ||
520                         ob == branch_->button_modify ||
521                         ob == branch_->button_select ||
522                         ob == branch_->button_deselect ||
523                         ob == branch_->button_deselect) {
524                 branch_input(ob);
525         } else if (ob == dialog_->button_save_defaults) {
526                 apply();
527                 controller().saveAsDefault();
528
529         } else if (ob == dialog_->button_reset_defaults) {
530                 BufferParams & params = controller().params();
531                 params.textclass = fl_get_combox(class_->combox_class) - 1;
532                 params.useClassDefaults();
533                 UpdateLayoutDocument(params);
534
535         } else if (ob == paper_->radio_landscape) {
536                 fl_set_choice(paper_->choice_paperpackage,
537                               PACKAGE_NONE + 1);
538
539         } else if (ob == paper_->choice_papersize) {
540                 int const paperchoice = fl_get_choice(paper_->choice_papersize);
541                 bool const defsize = paperchoice == 1;
542                 bool const custom = paperchoice == 2;
543                 bool const a3size = paperchoice == 6;
544                 bool const b3size = paperchoice == 9;
545                 bool const b4size = paperchoice == 10;
546
547                 if (custom)
548                         fl_set_button(paper_->radio_portrait, 1);
549
550                 bool const use_geom = (custom || a3size || b3size || b4size);
551
552                 fl_set_button(paper_->check_use_geometry, int(use_geom));
553
554                 setEnabled(paper_->input_top_margin,    use_geom);
555                 setEnabled(paper_->input_bottom_margin, use_geom);
556                 setEnabled(paper_->input_inner_margin,  use_geom);
557                 setEnabled(paper_->input_outer_margin,  use_geom);
558                 setEnabled(paper_->input_head_height,   use_geom);
559                 setEnabled(paper_->input_head_sep,      use_geom);
560                 setEnabled(paper_->input_foot_skip,     use_geom);
561                 setEnabled(paper_->choice_top_margin_units,    use_geom);
562                 setEnabled(paper_->choice_bottom_margin_units, use_geom);
563                 setEnabled(paper_->choice_inner_margin_units,  use_geom);
564                 setEnabled(paper_->choice_outer_margin_units,  use_geom);
565                 setEnabled(paper_->choice_head_height_units,   use_geom);
566                 setEnabled(paper_->choice_head_sep_units,      use_geom);
567                 setEnabled(paper_->choice_foot_skip_units,     use_geom);
568                 setEnabled(paper_->choice_custom_width_units,  use_geom);
569                 setEnabled(paper_->choice_custom_height_units, use_geom);
570
571                 setEnabled(paper_->input_custom_width,  custom);
572                 setEnabled(paper_->input_custom_height, custom);
573                 setEnabled(paper_->choice_custom_width_units,  custom);
574                 setEnabled(paper_->choice_custom_height_units, custom);
575                 setEnabled(paper_->radio_portrait,  !custom);
576                 setEnabled(paper_->radio_landscape, !custom);
577
578                 // Default unit choice is cm if metric, inches if US paper.
579                 // If papersize is default, use the lyxrc-settings
580                 bool const metric = (defsize && lyxrc.default_papersize > PAPER_EXECUTIVEPAPER)
581                         || paperchoice == 2 || paperchoice > 5;
582                 string const default_unit = metric ? "cm" : "in";
583                 if (getString(paper_->input_custom_width).empty())
584                         fl_set_choice_text(paper_->choice_custom_width_units,
585                                            default_unit.c_str());
586                 if (getString(paper_->input_custom_height).empty())
587                         fl_set_choice_text(paper_->choice_custom_height_units,
588                                            default_unit.c_str());
589                 if (getString(paper_->input_top_margin).empty())
590                         fl_set_choice_text(paper_->choice_top_margin_units,
591                                            default_unit.c_str());
592                 if (getString(paper_->input_bottom_margin).empty())
593                         fl_set_choice_text(paper_->choice_bottom_margin_units,
594                                            default_unit.c_str());
595                 if (getString(paper_->input_inner_margin).empty())
596                         fl_set_choice_text(paper_->choice_inner_margin_units,
597                                            default_unit.c_str());
598                 if (getString(paper_->input_outer_margin).empty())
599                         fl_set_choice_text(paper_->choice_outer_margin_units,
600                                            default_unit.c_str());
601                 if (getString(paper_->input_head_height).empty())
602                         fl_set_choice_text(paper_->choice_head_height_units,
603                                            default_unit.c_str());
604                 if (getString(paper_->input_head_sep).empty())
605                         fl_set_choice_text(paper_->choice_head_sep_units,
606                                            default_unit.c_str());
607                 if (getString(paper_->input_foot_skip).empty())
608                         fl_set_choice_text(paper_->choice_foot_skip_units,
609                                            default_unit.c_str());
610
611         } else if (ob == paper_->choice_paperpackage &&
612                    fl_get_choice(paper_->choice_paperpackage) != 1) {
613
614                 fl_set_button(paper_->check_use_geometry, 0);
615                 setEnabled(paper_->input_top_margin,    false);
616                 setEnabled(paper_->input_bottom_margin, false);
617                 setEnabled(paper_->input_inner_margin,  false);
618                 setEnabled(paper_->input_outer_margin,  false);
619                 setEnabled(paper_->input_head_height,   false);
620                 setEnabled(paper_->input_head_sep,      false);
621                 setEnabled(paper_->input_foot_skip,     false);
622                 setEnabled(paper_->choice_top_margin_units,    false);
623                 setEnabled(paper_->choice_bottom_margin_units, false);
624                 setEnabled(paper_->choice_inner_margin_units,  false);
625                 setEnabled(paper_->choice_outer_margin_units,  false);
626                 setEnabled(paper_->choice_head_height_units,   false);
627                 setEnabled(paper_->choice_head_sep_units,      false);
628                 setEnabled(paper_->choice_foot_skip_units,     false);
629
630         } else if (ob == paper_->check_use_geometry) {
631                 // don't allow switching geometry off in custom papersize
632                 // mode nor in A3, B3, and B4
633                 int const choice = fl_get_choice(paper_->choice_papersize);
634                 if (choice == 2 || choice == 6 || choice == 9 || choice == 10)
635                         fl_set_button(paper_->check_use_geometry, 1);
636
637                 fl_set_choice(paper_->choice_paperpackage,
638                               PACKAGE_NONE + 1);
639
640                 bool const use_geom = fl_get_button(paper_->check_use_geometry);
641                 setEnabled(paper_->input_top_margin,    use_geom);
642                 setEnabled(paper_->input_bottom_margin, use_geom);
643                 setEnabled(paper_->input_inner_margin,  use_geom);
644                 setEnabled(paper_->input_outer_margin,  use_geom);
645                 setEnabled(paper_->input_head_height,   use_geom);
646                 setEnabled(paper_->input_head_sep,      use_geom);
647                 setEnabled(paper_->input_foot_skip,     use_geom);
648                 setEnabled(paper_->choice_top_margin_units,    use_geom);
649                 setEnabled(paper_->choice_bottom_margin_units, use_geom);
650                 setEnabled(paper_->choice_inner_margin_units,  use_geom);
651                 setEnabled(paper_->choice_outer_margin_units,  use_geom);
652                 setEnabled(paper_->choice_head_height_units,   use_geom);
653                 setEnabled(paper_->choice_head_sep_units,      use_geom);
654                 setEnabled(paper_->choice_foot_skip_units,     use_geom);
655         }
656
657         if (ob == paper_->choice_papersize || ob == paper_->radio_portrait
658             || ob == paper_->radio_landscape) {
659                 // either default papersize (preferences) or document
660                 // papersize has to be A4
661                 bool const enable = ( fl_get_choice(paper_->choice_papersize) == 1
662                                       && lyxrc.default_papersize == PAPER_A4PAPER )
663                         || fl_get_choice(paper_->choice_papersize) == 7;
664                 if (!enable)
665                         fl_set_choice(paper_->choice_paperpackage,
666                                       PACKAGE_NONE + 1);
667                 setEnabled(paper_->choice_paperpackage,
668                            enable && fl_get_button(paper_->radio_portrait));
669         }
670
671         return ButtonPolicy::SMI_VALID;
672 }
673
674
675 void FormDocument::branch_input(FL_OBJECT * ob)
676 {
677         BufferParams & params = controller().params();
678         std::vector<string> vec;
679
680         if (ob == branch_->button_add_branch) {
681                 string new_branch = fl_get_input(branch_->input_all_branches);
682                 if (!new_branch.empty()) {
683                         params.branchlist.add(new_branch);
684                         fl_set_input(branch_->input_all_branches, "");
685                         // Update branch list
686                         string const all_branches = params.branchlist.allBranches();
687                         fl_clear_browser(branch_->browser_all_branches);
688                         vec = getVectorFromString(all_branches, "|");
689                         for (unsigned i = 0; i < vec.size(); ++i) {
690                                 fl_addto_browser(branch_->browser_all_branches,
691                                                                 vec[i].c_str());
692                         }
693                         LColor::color c = static_cast<LColor::color>(lcolor.size());
694                         lcolor.fill(c, new_branch, lcolor.getX11Name(LColor::background));
695                 }
696
697         } else if (ob == branch_->button_remove_branch) {
698                 unsigned i = fl_get_browser(branch_->browser_all_branches);
699                 string const current_branch =
700                         fl_get_browser_line(branch_->browser_all_branches, i);
701                 if (!current_branch.empty()) {
702                         params.branchlist.remove(current_branch);
703                         // Update branch list
704                         string const all_branches = params.branchlist.allBranches();
705                         fl_clear_browser(branch_->browser_all_branches);
706                         vec = getVectorFromString(all_branches, "|");
707                         for (unsigned i = 0; i < vec.size(); ++i) {
708                                 fl_addto_browser(branch_->browser_all_branches,
709                                                                 vec[i].c_str());
710                         }
711                         // Update selected-list...
712                         string const all_selected = params.branchlist.allSelected();
713                         fl_clear_browser(branch_->browser_selection);
714                         vec = getVectorFromString(all_selected, "|");
715                         for (unsigned i = 0; i < vec.size(); ++i) {
716                                 fl_addto_browser(branch_->browser_selection, vec[i].c_str());
717                         }
718                 }
719         } else if (ob == branch_->button_select) {
720                 unsigned i = fl_get_browser(branch_->browser_all_branches);
721                 string const current_branch =
722                         fl_get_browser_line(branch_->browser_all_branches, i);
723                 if (!current_branch.empty()) {
724                         fl_clear_browser(branch_->browser_selection);
725                         params.branchlist.setSelected(current_branch, true);
726                         string const all_selected = params.branchlist.allSelected();
727                         vec = getVectorFromString(all_selected, "|");
728                         for (unsigned i = 0; i < vec.size(); ++i) {
729                                 fl_addto_browser(branch_->browser_selection,
730                                                         vec[i].c_str());
731                         }
732                 }
733         } else if (ob == branch_->button_deselect) {
734                 unsigned i = fl_get_browser(branch_->browser_selection);
735                 string const current_sel =
736                         fl_get_browser_line(branch_->browser_selection, i);
737                 if (!current_sel.empty()) {
738                         fl_clear_browser(branch_->browser_selection);
739                         params.branchlist.setSelected(current_sel, false);
740                         string const all_selected = params.branchlist.allSelected();
741                         vec = getVectorFromString(all_selected, "|");
742                         for (unsigned i = 0; i < vec.size(); ++i) {
743                                 fl_addto_browser(branch_->browser_selection,
744                                                         vec[i].c_str());
745                         }
746                 }
747         } else if (ob == branch_->button_modify) {
748                 unsigned i = fl_get_browser(branch_->browser_all_branches);
749                 string const current_branch =
750                         fl_get_browser_line(branch_->browser_all_branches, i);
751                 
752                 RGBColor before;
753                 string x11hexname = params.branchlist.getColor(current_branch);
754                 if (x11hexname[0] == '#') {
755                         before = RGBColor(x11hexname);
756                 } else{
757                         fl_getmcolor(FL_COL1, &before.r, &before.g, &before.b);
758                 }
759
760                 RGBColor col = picker_->requestColor(before);
761                 if (before != col) {
762                         fl_mapcolor(GUI_COLOR_CHOICE, col.r, col.g, col.b);
763                         fl_redraw_object(branch_->button_color);
764                         // Figure out here how to stash the new colour into the
765                         // LyX colour database.
766
767                         x11hexname = X11hexname(col);
768
769                         // current_branch already in database
770                         LColor::color c = lcolor.getFromLyXName(current_branch);
771                         lcolor.setColor(current_branch, x11hexname);
772                         // Make sure that new colour is also displayed ;-)
773                         lyxColorHandler->getGCForeground(c);
774                         lyxColorHandler->updateColor(c);
775                         // what about system_lcolor?
776                         // Here set colour in BranchList:
777                         params.branchlist.setColor(current_branch, x11hexname);
778                 }
779         } else if (ob == branch_->browser_all_branches) {
780                 unsigned i = fl_get_browser(branch_->browser_all_branches);
781                 string const current_branch =
782                         fl_get_browser_line(branch_->browser_all_branches, i);
783                 // make button_color track selected branch:
784
785                 RGBColor rgb;
786                 string x11hexname = params.branchlist.getColor(current_branch);
787                 if (x11hexname[0] == '#') {
788                         rgb = RGBColor(x11hexname);
789                 } else {
790                         fl_getmcolor(FL_COL1, &rgb.r, &rgb.g, &rgb.b);
791                 }
792                 fl_mapcolor(GUI_COLOR_CHOICE, rgb.r, rgb.g, rgb.b);
793                 fl_redraw_object(branch_->button_color);
794         }
795         setEnabled(branch_->button_select,
796                 (fl_get_browser(branch_->browser_all_branches) > 0));
797         setEnabled(branch_->button_deselect,
798                 (fl_get_browser(branch_->browser_selection) > 0));
799         setEnabled(branch_->button_remove_branch,
800                 (fl_get_browser(branch_->browser_all_branches) > 0));
801         setEnabled(branch_->button_modify,
802                 (fl_get_browser(branch_->browser_all_branches) > 0));
803
804         branchlist_ = params.branchlist;
805 }
806
807
808 bool FormDocument::class_apply(BufferParams &params)
809 {
810         bool redo = false;
811
812         // If default skip is a "Length" but there's no text in the
813         // input field, reset the kind to "MedSkip", which is the default.
814         if (fl_get_choice(class_->choice_skip) == 4 &&
815             getString(class_->input_skip).empty()) {
816                 fl_set_choice(class_->choice_skip, 2);
817         }
818         params.fonts = getString(class_->choice_fonts);
819         params.fontsize = getString(class_->choice_fontsize);
820         params.pagestyle = getString(class_->choice_pagestyle);
821
822         params.textclass = fl_get_combox(class_->combox_class) - 1;
823
824         BufferParams::PARSEP tmpsep = params.paragraph_separation;
825         if (fl_get_button(class_->radio_indent))
826                 params.paragraph_separation = BufferParams::PARSEP_INDENT;
827         else
828                 params.paragraph_separation = BufferParams::PARSEP_SKIP;
829         if (tmpsep != params.paragraph_separation)
830                 redo = true;
831
832         VSpace tmpdefskip = params.getDefSkip();
833         switch (fl_get_choice(class_->choice_skip)) {
834         case 1:
835                 params.setDefSkip(VSpace(VSpace::SMALLSKIP));
836                 break;
837         case 2:
838                 params.setDefSkip(VSpace(VSpace::MEDSKIP));
839                 break;
840         case 3:
841                 params.setDefSkip(VSpace(VSpace::BIGSKIP));
842                 break;
843         case 4:
844         {
845                 string const length =
846                         getLengthFromWidgets(class_->input_skip,
847                                              class_->choice_skip_units);
848
849                 params.setDefSkip(VSpace(LyXGlueLength(length)));
850                 break;
851         }
852         default:
853                 // DocumentDefskipCB assures that this never happens
854                 params.setDefSkip(VSpace(VSpace::MEDSKIP));
855                 break;
856         }
857         if (!(tmpdefskip == params.getDefSkip()))
858                 redo = true;
859
860         if (fl_get_button(class_->radio_columns_two))
861                 params.columns = 2;
862         else
863                 params.columns = 1;
864         if (fl_get_button(class_->radio_sides_two))
865                 params.sides = LyXTextClass::TwoSides;
866         else
867                 params.sides = LyXTextClass::OneSide;
868
869         Spacing tmpSpacing = params.spacing;
870         switch (fl_get_choice(class_->choice_spacing)) {
871         case 1:
872                 lyxerr[Debug::INFO] << "Spacing: SINGLE" << endl;
873                 params.spacing.set(Spacing::Single);
874                 break;
875         case 2:
876                 lyxerr[Debug::INFO] << "Spacing: ONEHALF" << endl;
877                 params.spacing.set(Spacing::Onehalf);
878                 break;
879         case 3:
880                 lyxerr[Debug::INFO] << "Spacing: DOUBLE" << endl;
881                 params.spacing.set(Spacing::Double);
882                 break;
883         case 4:
884                 lyxerr[Debug::INFO] << "Spacing: OTHER" << endl;
885                 params.spacing.set(Spacing::Other,
886                                    getString(class_->input_spacing));
887                 break;
888         }
889         if (tmpSpacing != params.spacing)
890                 redo = true;
891
892         params.options = getString(class_->input_extra);
893
894         return redo;
895 }
896
897
898 void FormDocument::paper_apply(BufferParams & params)
899 {
900         params.papersize2 = VMARGIN_PAPER_TYPE(fl_get_choice(paper_->choice_papersize) - 1);
901
902         params.paperpackage =
903                 PAPER_PACKAGES(fl_get_choice(paper_->choice_paperpackage) - 1);
904
905         // set params.papersize from params.papersize2 and params.paperpackage
906         params.setPaperStuff();
907
908         params.use_geometry = fl_get_button(paper_->check_use_geometry);
909
910         if (fl_get_button(paper_->radio_landscape))
911                 params.orientation = ORIENTATION_LANDSCAPE;
912         else
913                 params.orientation = ORIENTATION_PORTRAIT;
914
915         params.paperwidth =
916                 getLengthFromWidgets(paper_->input_custom_width,
917                                      paper_->choice_custom_width_units);
918
919         params.paperheight =
920                 getLengthFromWidgets(paper_->input_custom_height,
921                                      paper_->choice_custom_height_units);
922
923         params.leftmargin =
924                 getLengthFromWidgets(paper_->input_inner_margin,
925                                      paper_->choice_inner_margin_units);
926
927         params.topmargin =
928                 getLengthFromWidgets(paper_->input_top_margin,
929                                      paper_->choice_top_margin_units);
930
931         params.rightmargin =
932                 getLengthFromWidgets(paper_->input_outer_margin,
933                                      paper_->choice_outer_margin_units);
934
935         params.bottommargin =
936                 getLengthFromWidgets(paper_->input_bottom_margin,
937                                      paper_->choice_bottom_margin_units);
938
939         params.headheight =
940                 getLengthFromWidgets(paper_->input_head_height,
941                                      paper_->choice_head_height_units);
942
943         params.headsep =
944                 getLengthFromWidgets(paper_->input_head_sep,
945                                      paper_->choice_head_sep_units);
946
947         params.footskip =
948                 getLengthFromWidgets(paper_->input_foot_skip,
949                                      paper_->choice_foot_skip_units);
950 }
951
952
953 bool FormDocument::language_apply(BufferParams & params)
954 {
955         InsetQuotes::quote_language lga = InsetQuotes::EnglishQ;
956         bool redo = false;
957
958         switch (fl_get_choice(language_->choice_quotes_language) - 1) {
959         case 0:
960                 lga = InsetQuotes::EnglishQ;
961                 break;
962         case 1:
963                 lga = InsetQuotes::SwedishQ;
964                 break;
965         case 2:
966                 lga = InsetQuotes::GermanQ;
967                 break;
968         case 3:
969                 lga = InsetQuotes::PolishQ;
970                 break;
971         case 4:
972                 lga = InsetQuotes::FrenchQ;
973                 break;
974         case 5:
975                 lga = InsetQuotes::DanishQ;
976                 break;
977         }
978         params.quotes_language = lga;
979         if (fl_get_button(language_->radio_single))
980                 params.quotes_times = InsetQuotes::SingleQ;
981         else
982                 params.quotes_times = InsetQuotes::DoubleQ;
983
984         int const pos = fl_get_combox(language_->combox_language);
985         Language const * new_language = languages.getLanguage(lang_[pos-1]);
986         if (!new_language)
987                 new_language = default_language;
988
989         params.language = new_language;
990         params.inputenc = getString(language_->choice_inputenc);
991
992         return redo;
993 }
994
995
996 bool FormDocument::options_apply(BufferParams & params)
997 {
998         bool redo = false;
999
1000         params.graphicsDriver = getString(options_->choice_postscript_driver);
1001         params.use_amsmath = static_cast<BufferParams::AMS>(
1002                 fl_get_choice(options_->choice_ams_math) - 1);
1003         params.use_natbib  = fl_get_button(options_->check_use_natbib);
1004         params.use_numerical_citations  =
1005                 fl_get_choice(options_->choice_citation_format) - 1;
1006
1007         int tmpchar = int(fl_get_counter_value(options_->counter_secnumdepth));
1008         if (params.secnumdepth != tmpchar)
1009                 redo = true;
1010         params.secnumdepth = tmpchar;
1011
1012         params.tocdepth = int(fl_get_counter_value(options_->counter_tocdepth));
1013
1014         params.float_placement =
1015                 getString(options_->input_float_placement);
1016
1017         return redo;
1018 }
1019
1020
1021 void FormDocument::bullets_apply(BufferParams & params)
1022 {
1023         /* update the bullet settings */
1024         BufferParams & buf_params = controller().params();
1025
1026         for (int i = 0; i < 4; ++i) {
1027                 params.user_defined_bullets[i] = buf_params.temp_bullets[i];
1028         }
1029 }
1030
1031
1032 void FormDocument::branch_apply(BufferParams & params)
1033 {
1034         BufferParams & prms = controller().params();
1035         if (branchlist_.empty())
1036                 branchlist_ = prms.branchlist;
1037         params.branchlist = branchlist_;
1038         branchlist_.clear();
1039 }
1040
1041                 
1042 void FormDocument::UpdateClassParams(BufferParams const & params)
1043 {
1044         // These are the params that have to be updated on any class change
1045         // (even if the class defaults are not used) (JSpitzm 2002-04-08)
1046
1047         LyXTextClass const & tclass = textclasslist[params.textclass];
1048
1049         fl_set_combox(class_->combox_class, params.textclass + 1);
1050         fl_clear_choice(class_->choice_fontsize);
1051         fl_addto_choice(class_->choice_fontsize, "default");
1052         fl_addto_choice(class_->choice_fontsize,
1053                         tclass.opt_fontsize().c_str());
1054         fl_set_choice_text(class_->choice_fontsize,
1055                            params.fontsize.c_str());
1056         fl_clear_choice(class_->choice_pagestyle);
1057         fl_addto_choice(class_->choice_pagestyle, "default");
1058         fl_addto_choice(class_->choice_pagestyle,
1059                         tclass.opt_pagestyle().c_str());
1060         fl_set_choice_text(class_->choice_pagestyle,
1061                            params.pagestyle.c_str());
1062
1063 }
1064
1065 void FormDocument::class_update(BufferParams const & params)
1066 {
1067         if (!class_.get())
1068                 return;
1069
1070         UpdateClassParams(params);
1071
1072         fl_set_choice_text(class_->choice_fonts, params.fonts.c_str());
1073
1074         bool const indent = params.paragraph_separation == BufferParams::PARSEP_INDENT;
1075         fl_set_button(class_->radio_indent, indent);
1076         fl_set_button(class_->radio_skip, !indent);
1077
1078         int pos;
1079         if (indent) {
1080                 pos = 2; // VSpace::MEDSKIP is default
1081         } else {
1082                 switch (params.getDefSkip().kind()) {
1083                 case VSpace::LENGTH:
1084                         pos = 4;
1085                         break;
1086                 case VSpace::BIGSKIP:
1087                         pos = 3;
1088                         break;
1089                 case VSpace::SMALLSKIP:
1090                         pos = 1;
1091                         break;
1092                 case VSpace::MEDSKIP:
1093                 default:
1094                         pos = 2;
1095                         break;
1096                 }
1097         }
1098         fl_set_choice (class_->choice_skip, pos);
1099
1100         bool const length_input = pos == 4;
1101         if (length_input) {
1102                 int const paperchoice = fl_get_choice(paper_->choice_papersize);
1103                 bool const metric = (paperchoice == 1 && lyxrc.default_papersize > PAPER_EXECUTIVEPAPER)
1104                         || paperchoice == 2 || paperchoice > 5;
1105                 string const default_unit = metric ? "cm" : "in";
1106                 string const length = params.getDefSkip().asLyXCommand();
1107                 updateWidgetsFromLengthString(class_->input_skip,
1108                                               class_->choice_skip_units,
1109                                               length, default_unit);
1110
1111         } else {
1112                 fl_set_input(class_->input_skip, "");
1113         }
1114         setEnabled(class_->choice_skip, !indent);
1115         setEnabled(class_->input_skip, length_input);
1116         setEnabled(class_->choice_skip_units, length_input);
1117
1118         bool const two_sides = params.sides == LyXTextClass::TwoSides;
1119         fl_set_button(class_->radio_sides_one, !two_sides);
1120         fl_set_button(class_->radio_sides_two, two_sides);
1121
1122         bool const two_columns = params.columns == 2;
1123         fl_set_button(class_->radio_columns_one, !two_columns);
1124         fl_set_button(class_->radio_columns_two, two_columns);
1125
1126         fl_set_input(class_->input_extra, params.options.c_str());
1127
1128         switch (params.spacing.getSpace()) {
1129         case Spacing::Other:
1130                 pos = 4;
1131                 break;
1132         case Spacing::Double: // \doublespacing
1133                 pos = 3;
1134                 break;
1135         case Spacing::Onehalf: // \onehalfspacing
1136                 pos = 2;
1137                 break;
1138         case Spacing::Single: // \singlespacing
1139         case Spacing::Default: // nothing bad should happen with this
1140         default:
1141                 pos = 1;
1142                 break;
1143         }
1144         fl_set_choice(class_->choice_spacing, pos);
1145
1146         bool const spacing_input = pos == 4;
1147         setEnabled(class_->input_spacing, spacing_input);
1148         string const input = spacing_input ? tostr(params.spacing.getValue()) : string();
1149         fl_set_input(class_->input_spacing, input.c_str());
1150 }
1151
1152
1153 void FormDocument::language_update(BufferParams const & params)
1154 {
1155         if (!language_.get())
1156                 return;
1157
1158         int const pos = int(findPos(lang_, params.language->lang()));
1159         fl_set_combox(language_->combox_language, pos+1);
1160
1161         fl_set_choice_text(language_->choice_inputenc, params.inputenc.c_str());
1162         fl_set_choice(language_->choice_quotes_language, params.quotes_language + 1);
1163         fl_set_button(language_->radio_single, 0);
1164         fl_set_button(language_->radio_double, 0);
1165         if (params.quotes_times == InsetQuotes::SingleQ)
1166                 fl_set_button(language_->radio_single, 1);
1167         else
1168                 fl_set_button(language_->radio_double, 1);
1169 }
1170
1171
1172 void FormDocument::options_update(BufferParams const & params)
1173 {
1174         if (!options_.get())
1175                 return;
1176
1177         fl_set_choice_text(options_->choice_postscript_driver,
1178                            params.graphicsDriver.c_str());
1179         fl_set_choice(options_->choice_ams_math, params.use_amsmath + 1);
1180         fl_set_button(options_->check_use_natbib,  params.use_natbib);
1181         fl_set_choice(options_->choice_citation_format,
1182                       int(params.use_numerical_citations)+1);
1183         setEnabled(options_->choice_citation_format, params.use_natbib);
1184         fl_set_counter_value(options_->counter_secnumdepth, params.secnumdepth);
1185         fl_set_counter_value(options_->counter_tocdepth, params.tocdepth);
1186         if (!params.float_placement.empty())
1187                 fl_set_input(options_->input_float_placement,
1188                              params.float_placement.c_str());
1189         else
1190                 fl_set_input(options_->input_float_placement, "");
1191 }
1192
1193
1194 void FormDocument::paper_update(BufferParams const & params)
1195 {
1196         if (!paper_.get())
1197                 return;
1198
1199         fl_set_choice(paper_->choice_papersize, params.papersize2 + 1);
1200         fl_set_choice(paper_->choice_paperpackage, params.paperpackage + 1);
1201         fl_set_button(paper_->check_use_geometry, params.use_geometry);
1202
1203         int const paperchoice = fl_get_choice(paper_->choice_papersize);
1204         bool const useCustom = paperchoice == 2;
1205         bool const useGeom = fl_get_button(paper_->check_use_geometry);
1206
1207         fl_set_button(paper_->radio_portrait, 0);
1208         setEnabled(paper_->radio_portrait, !useCustom);
1209         fl_set_button(paper_->radio_landscape, 0);
1210         setEnabled(paper_->radio_landscape, !useCustom);
1211
1212         if (params.orientation == ORIENTATION_LANDSCAPE)
1213                 fl_set_button(paper_->radio_landscape, 1);
1214         else
1215                 fl_set_button(paper_->radio_portrait, 1);
1216         setEnabled(paper_->choice_paperpackage,
1217                    //either default papersize (preferences)
1218                    //or document papersize has to be A4
1219                    (paperchoice == 7
1220                     || paperchoice == 1 && lyxrc.default_papersize == PAPER_A4PAPER)
1221                    && fl_get_button(paper_->radio_portrait));
1222
1223         // Default unit choice is cm if metric, inches if US paper.
1224         bool const metric = (paperchoice == 1 && lyxrc.default_papersize > PAPER_EXECUTIVEPAPER)
1225                 || paperchoice == 2 || paperchoice > 5;
1226         string const default_unit = metric ? "cm" : "in";
1227         updateWidgetsFromLengthString(paper_->input_custom_width,
1228                                       paper_->choice_custom_width_units,
1229                                       params.paperwidth, default_unit);
1230         setEnabled(paper_->input_custom_width, useCustom);
1231         setEnabled(paper_->choice_custom_width_units, useCustom);
1232
1233         updateWidgetsFromLengthString(paper_->input_custom_height,
1234                                       paper_->choice_custom_height_units,
1235                                       params.paperheight, default_unit);
1236         setEnabled(paper_->input_custom_height, useCustom);
1237         setEnabled(paper_->choice_custom_height_units, useCustom);
1238
1239         updateWidgetsFromLengthString(paper_->input_inner_margin,
1240                                       paper_->choice_inner_margin_units,
1241                                       params.leftmargin, default_unit);
1242         setEnabled(paper_->input_inner_margin, useGeom);
1243         setEnabled(paper_->choice_inner_margin_units, useGeom);
1244
1245         updateWidgetsFromLengthString(paper_->input_top_margin,
1246                                       paper_->choice_top_margin_units,
1247                                       params.topmargin, default_unit);
1248         setEnabled(paper_->input_top_margin, useGeom);
1249         setEnabled(paper_->choice_top_margin_units, useGeom);
1250
1251         updateWidgetsFromLengthString(paper_->input_outer_margin,
1252                                       paper_->choice_outer_margin_units,
1253                                       params.rightmargin, default_unit);
1254         setEnabled(paper_->input_outer_margin, useGeom);
1255         setEnabled(paper_->choice_outer_margin_units, useGeom);
1256
1257         updateWidgetsFromLengthString(paper_->input_bottom_margin,
1258                                       paper_->choice_bottom_margin_units,
1259                                       params.bottommargin, default_unit);
1260         setEnabled(paper_->input_bottom_margin, useGeom);
1261         setEnabled(paper_->choice_bottom_margin_units, useGeom);
1262
1263         updateWidgetsFromLengthString(paper_->input_head_height,
1264                                       paper_->choice_head_height_units,
1265                                       params.headheight, default_unit);
1266         setEnabled(paper_->input_head_height, useGeom);
1267         setEnabled(paper_->choice_head_height_units, useGeom);
1268
1269         updateWidgetsFromLengthString(paper_->input_head_sep,
1270                                       paper_->choice_head_sep_units,
1271                                       params.headsep, default_unit);
1272         setEnabled(paper_->input_head_sep, useGeom);
1273         setEnabled(paper_->choice_head_sep_units, useGeom);
1274
1275         updateWidgetsFromLengthString(paper_->input_foot_skip,
1276                                       paper_->choice_foot_skip_units,
1277                                       params.footskip, default_unit);
1278         setEnabled(paper_->input_foot_skip, useGeom);
1279         setEnabled(paper_->choice_foot_skip_units, useGeom);
1280
1281         fl_set_focus_object(paper_->form, paper_->choice_papersize);
1282 }
1283
1284
1285 void FormDocument::bullets_update(BufferParams const & params)
1286 {
1287         if (!bullets_.get() ||
1288             ((XpmVersion<4) ||
1289              (XpmVersion==4 && XpmRevision<7)))
1290                 return;
1291
1292         bool const isLinuxDoc =
1293                 controller().docType() == ControlDocument::LINUXDOC;
1294         setEnabled(fbullet, !isLinuxDoc);
1295
1296         if (isLinuxDoc) return;
1297
1298         fl_set_button(bullets_->radio_depth_1, 1);
1299         fl_set_input(bullets_->input_latex,
1300                      params.user_defined_bullets[0].getText().c_str());
1301         fl_set_choice(bullets_->choice_size,
1302                       params.user_defined_bullets[0].getSize() + 2);
1303 }
1304
1305
1306 void FormDocument::branch_update(BufferParams const & params)
1307 {
1308         if (!branch_.get())
1309                 return;
1310         
1311         string const all_branches = params.branchlist.allBranches();
1312         fl_clear_browser(branch_->browser_all_branches);
1313         string current_branch("none");
1314         
1315         if (!all_branches.empty()) {
1316                 std::vector<string> vec = getVectorFromString(all_branches, "|");
1317                 for (unsigned i = 0; i < vec.size(); ++i) {
1318                         fl_addto_browser(branch_->browser_all_branches, vec[i].c_str());
1319                 }
1320                 fl_select_browser_line(branch_->browser_all_branches, 1);
1321                 current_branch =
1322                         fl_get_browser_line(branch_->browser_all_branches, 1);
1323         }
1324
1325         // display proper selection...
1326         string const all_selected = params.branchlist.allSelected();
1327         fl_clear_browser(branch_->browser_selection);
1328         if (!all_selected.empty()) {
1329                 std::vector<string> vec = getVectorFromString(all_selected, "|");
1330                 for (unsigned i = 0; i < vec.size(); ++i) {
1331                         fl_addto_browser(branch_->browser_selection, vec[i].c_str());
1332                         }
1333         }
1334         // display proper colour...
1335         RGBColor rgb;
1336         string x11hexname = params.branchlist.getColor(current_branch);
1337         if (x11hexname[0] == '#') {
1338                 rgb = RGBColor(x11hexname);
1339         } else {
1340                 fl_getmcolor(FL_COL1, &rgb.r, &rgb.g, &rgb.b);
1341         }
1342         fl_mapcolor(GUI_COLOR_CHOICE, rgb.r, rgb.g, rgb.b);
1343         fl_redraw_object(branch_->button_color);
1344
1345         setEnabled(branch_->button_select,
1346                 (fl_get_browser(branch_->browser_all_branches) > 0));
1347         setEnabled(branch_->button_deselect,
1348                 (fl_get_browser(branch_->browser_selection) > 0));
1349         setEnabled(branch_->button_remove_branch,
1350                 (fl_get_browser(branch_->browser_all_branches) > 0));
1351         setEnabled(branch_->button_modify,
1352                 (fl_get_browser(branch_->browser_all_branches) > 0));
1353 }
1354
1355
1356 void FormDocument::checkReadOnly()
1357 {
1358         if (bc().readOnly(controller().bufferIsReadonly())) {
1359                 postWarning(_("Document is read-only."
1360                               " No changes to layout permitted."));
1361         } else {
1362                 clearMessage();
1363         }
1364 }
1365
1366
1367 void FormDocument::ChoiceBulletSize(FL_OBJECT * ob, long /*data*/)
1368 {
1369         BufferParams & param = controller().params();
1370
1371         // convert from 1-6 range to -1-4
1372         param.temp_bullets[current_bullet_depth].setSize(fl_get_choice(ob) - 2);
1373         fl_set_input(bullets_->input_latex,
1374                      param.temp_bullets[current_bullet_depth].getText().c_str());
1375 }
1376
1377
1378 void FormDocument::InputBulletLaTeX(FL_OBJECT *, long)
1379 {
1380         BufferParams & param = controller().params();
1381
1382         param.temp_bullets[current_bullet_depth].
1383                 setText(getString(bullets_->input_latex));
1384 }
1385
1386
1387 void FormDocument::BulletDepth(FL_OBJECT * ob)
1388 {
1389         /* Should I do the following:                                 */
1390         /*  1. change to the panel that the current bullet belongs in */
1391         /*  2. show that bullet as selected                           */
1392         /*  3. change the size setting to the size of the bullet in Q.*/
1393         /*  4. display the latex equivalent in the latex box          */
1394         /*                                                            */
1395         /* I'm inclined to just go with 3 and 4 at the moment and     */
1396         /* maybe try to support the others later                      */
1397         BufferParams & param = controller().params();
1398
1399         int data = 0;
1400         if (ob == bullets_->radio_depth_1)
1401                 data = 0;
1402         else if (ob == bullets_->radio_depth_2)
1403                 data = 1;
1404         else if (ob == bullets_->radio_depth_3)
1405                 data = 2;
1406         else if (ob == bullets_->radio_depth_4)
1407                 data = 3;
1408
1409         switch (fl_get_button_numb(ob)) {
1410         case 3:
1411                 // right mouse button resets to default
1412                 param.temp_bullets[data] = ITEMIZE_DEFAULTS[data];
1413         default:
1414                 current_bullet_depth = data;
1415                 fl_set_input(bullets_->input_latex,
1416                              param.temp_bullets[data].getText().c_str());
1417                 fl_set_choice(bullets_->choice_size,
1418                               param.temp_bullets[data].getSize() + 2);
1419         }
1420 }
1421
1422
1423 void FormDocument::BulletPanel(FL_OBJECT * ob)
1424 {
1425         /* Here we have to change the background pixmap to that selected */
1426         /* by the user. (eg. standard.xpm, psnfss1.xpm etc...)           */
1427
1428         int data = 0;
1429         if (ob == bullets_->radio_panel_standard)
1430                 data = 0;
1431         else if (ob == bullets_->radio_panel_maths)
1432                 data = 1;
1433         else if (ob == bullets_->radio_panel_ding2)
1434                 data = 2;
1435         else if (ob == bullets_->radio_panel_ding3)
1436                 data = 3;
1437         else if (ob == bullets_->radio_panel_ding4)
1438                 data = 4;
1439         else if (ob == bullets_->radio_panel_ding1)
1440                 data = 5;
1441
1442         if (data != current_bullet_panel) {
1443                 fl_freeze_form(bullets_->form);
1444                 current_bullet_panel = data;
1445
1446                 /* free the current pixmap */
1447                 fl_free_bmtable_pixmap(bullets_->bmtable_panel);
1448                 string new_panel;
1449                 if (ob == bullets_->radio_panel_standard) {
1450                         new_panel = "standard";
1451                 } else if (ob == bullets_->radio_panel_maths ) {
1452                         new_panel = "amssymb";
1453                 } else if (ob == bullets_->radio_panel_ding2) {
1454                         new_panel = "psnfss1";
1455                 } else if (ob == bullets_->radio_panel_ding3) {
1456                         new_panel = "psnfss2";
1457                 } else if (ob == bullets_->radio_panel_ding4) {
1458                         new_panel = "psnfss3";
1459                 } else if (ob == bullets_->radio_panel_ding1) {
1460                         new_panel = "psnfss4";
1461                 } else {
1462                         /* something very wrong happened */
1463                         // play it safe for now but should be an exception
1464                         current_bullet_panel = 0;  // standard panel
1465                         new_panel = "standard";
1466                 }
1467                 new_panel += ".xpm";
1468                 fl_set_bmtable_pixmap_file(bullets_->bmtable_panel, 6, 6,
1469                                            LibFileSearch("images", new_panel).c_str());
1470                 fl_redraw_object(bullets_->bmtable_panel);
1471                 fl_unfreeze_form(bullets_->form);
1472         }
1473 }
1474
1475
1476 void FormDocument::BulletBMTable(FL_OBJECT * ob, long /*data*/)
1477 {
1478         /* handle the user input by setting the current bullet depth's pixmap */
1479         /* to that extracted from the current chosen position of the BMTable  */
1480         /* Don't forget to free the button's old pixmap first.                */
1481
1482         BufferParams & param = controller().params();
1483         int bmtable_button = fl_get_bmtable(ob);
1484
1485         /* try to keep the button held down till another is pushed */
1486         /*  fl_set_bmtable(ob, 1, bmtable_button); */
1487         param.temp_bullets[current_bullet_depth].setFont(current_bullet_panel);
1488         param.temp_bullets[current_bullet_depth].setCharacter(bmtable_button);
1489         fl_set_input(bullets_->input_latex,
1490                      param.temp_bullets[current_bullet_depth].getText().c_str());
1491 }
1492
1493
1494 void FormDocument::CheckChoiceClass()
1495 {
1496         BufferParams & params = controller().params();
1497
1498         lyx::textclass_type const tc =
1499                 fl_get_combox(class_->combox_class) - 1;
1500
1501         if (controller().loadTextclass(tc)) {
1502                 params.textclass = tc;
1503
1504                 if (lyxrc.auto_reset_options) {
1505                         params.useClassDefaults();
1506                         UpdateLayoutDocument(params);
1507                 } else {
1508                         // update the params which are needed in any case
1509                         // (fontsizes, pagestyle)
1510                         UpdateClassParams(params);
1511                 }
1512
1513         } else {
1514                 int const revert = int(params.textclass);
1515                 fl_set_combox(class_->combox_class, revert + 1);
1516         }
1517 }
1518
1519
1520 void FormDocument::UpdateLayoutDocument(BufferParams const & params)
1521 {
1522         if (!dialog_.get())
1523                 return;
1524
1525         checkReadOnly();
1526         class_update(params);
1527         paper_update(params);
1528         language_update(params);
1529         options_update(params);
1530         bullets_update(params);
1531 }