]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormDocument.C
43594f30bb294c81068f6b67f127b845922f6eb7
[lyx.git] / src / frontends / xforms / FormDocument.C
1 /* This file is part of
2  * ======================================================
3  * 
4  *           LyX, The Document Processor
5  *       
6  *           Copyright 2000 The LyX Team.
7  *
8  *           @author Jürgen Vigna
9  *
10  *======================================================*/
11
12 #include <config.h>
13
14 #ifdef __GNUG_
15 #pragma implementation
16 #endif
17
18 #include "lyx_gui_misc.h"
19 #include FORMS_H_LOCATION
20 #include XPM_H_LOCATION
21
22 #include "FormDocument.h"
23 #include "form_document.h"
24 #include "Dialogs.h"
25 #include "layout.h"
26 #include "combox.h"
27 #include "tex-strings.h"
28 #include "bufferparams.h"
29 #include "insets/insetquotes.h"
30 #include "vspace.h"
31 #include "bmtable.h"
32 #include "support/filetools.h"
33 #include "language.h"
34 #include "LyXView.h"
35 #include "BufferView.h"
36 #include "buffer.h"
37 #include "Liason.h"
38 #include "CutAndPaste.h"
39 #include "bufferview_funcs.h"
40
41 #ifdef CXX_WORKING_NAMESPACES
42 using Liason::setMinibuffer;
43 #endif
44
45 #define USE_CLASS_COMBO 1
46
47 FormDocument::FormDocument(LyXView * lv, Dialogs * d)
48         : FormBaseBD(lv, d, _("Document Layout"),
49                      new NoRepeatedApplyReadOnlyPolicy),
50           dialog_(0), paper_(0), class_(0), language_(0), options_(0),
51           bullets_(0), current_bullet_panel(0), current_bullet_depth(0),
52           fbullet(0), combo_language(0), combo_doc_class(0)
53 {
54     // let the popup be shown
55     // This is a permanent connection so we won't bother
56     // storing a copy because we won't be disconnecting.
57     d->showLayoutDocument.connect(slot(this, &FormDocument::show));
58 }
59
60
61 FormDocument::~FormDocument()
62 {
63 #ifdef USE_CLASS_COMBO
64     delete combo_doc_class;
65 #endif
66     delete class_;
67     delete paper_;
68     delete combo_language;
69     delete language_;
70     delete options_;
71     delete bullets_;
72     delete dialog_;
73 }
74
75
76 FL_FORM * FormDocument::form() const
77 {
78     if (dialog_) return dialog_->form;
79     return 0;
80 }
81
82
83 void FormDocument::build()
84 {
85     int n;
86
87     // the tabbed folder
88     dialog_ = build_tabbed_document();
89
90     // manage the restore, ok, apply and cancel/close buttons
91     bc_.setOK(dialog_->button_ok);
92     bc_.setApply(dialog_->button_apply);
93     bc_.setCancel(dialog_->button_cancel);
94     bc_.setUndoAll(dialog_->button_restore);
95     bc_.refresh();
96
97     // the document paper form
98     paper_ = build_doc_paper();
99     fl_addto_choice(paper_->choice_papersize2,
100                     _(" Default | Custom | USletter | USlegal "
101                       "| USexecutive | A3 | A4 | A5 | B3 | B4 | B5 "));
102     fl_addto_choice(paper_->choice_paperpackage,
103                     _(" None "
104                       "| A4 small Margins (only portrait) "
105                       "| A4 very small Margins (only portrait) "
106                       "| A4 very wide margins (only portrait) "));
107     fl_set_input_return(paper_->input_custom_width, FL_RETURN_ALWAYS);
108     fl_set_input_return(paper_->input_custom_height, FL_RETURN_ALWAYS);
109     fl_set_input_return(paper_->input_top_margin, FL_RETURN_ALWAYS);
110     fl_set_input_return(paper_->input_bottom_margin, FL_RETURN_ALWAYS);
111     fl_set_input_return(paper_->input_left_margin, FL_RETURN_ALWAYS);
112     fl_set_input_return(paper_->input_right_margin, FL_RETURN_ALWAYS);
113     fl_set_input_return(paper_->input_head_height, FL_RETURN_ALWAYS);
114     fl_set_input_return(paper_->input_head_sep, FL_RETURN_ALWAYS);
115     fl_set_input_return(paper_->input_foot_skip, FL_RETURN_ALWAYS);
116
117     bc_.addReadOnly (paper_->choice_paperpackage);
118     bc_.addReadOnly (paper_->greoup_radio_orientation);
119     bc_.addReadOnly (paper_->radio_portrait);
120     bc_.addReadOnly (paper_->radio_landscape);
121     bc_.addReadOnly (paper_->choice_papersize2);
122     bc_.addReadOnly (paper_->push_use_geometry);
123     bc_.addReadOnly (paper_->input_custom_width);
124     bc_.addReadOnly (paper_->input_custom_height);
125     bc_.addReadOnly (paper_->input_top_margin);
126     bc_.addReadOnly (paper_->input_bottom_margin);
127     bc_.addReadOnly (paper_->input_left_margin);
128     bc_.addReadOnly (paper_->input_right_margin);
129     bc_.addReadOnly (paper_->input_head_height);
130     bc_.addReadOnly (paper_->input_head_sep);
131     bc_.addReadOnly (paper_->input_foot_skip);
132
133     // the document class form
134     class_ = build_doc_class();
135
136     FL_OBJECT * obj;
137 #ifdef USE_CLASS_COMBO
138     // The language is a combo-box and has to be inserted manually
139     obj = class_->choice_doc_class;
140     fl_addto_form(class_->form);
141     combo_doc_class = new Combox(FL_COMBOX_DROPLIST);
142     combo_doc_class->add(obj->x, obj->y, obj->w, obj->h, 400);
143     combo_doc_class->shortcut("#C",1);
144     combo_doc_class->setcallback(ComboInputCB, this);
145     fl_end_form();
146     for (LyXTextClassList::const_iterator cit = textclasslist.begin();
147          cit != textclasslist.end(); ++cit)
148     {
149         combo_doc_class->addto((*cit).description());
150     }
151 #else
152     fl_clear_choice(class_->choice_doc_class);
153     for (LyXTextClassList::const_iterator cit = textclasslist.begin();
154          cit != textclasslist.end(); ++cit)
155     {
156         fl_addto_choice(class_->choice_doc_class,(*cit).description().c_str());
157     }
158 #endif
159     fl_addto_choice(class_->choice_doc_spacing,
160                     _(" Single | OneHalf | Double | Other "));
161     fl_addto_choice(class_->choice_doc_fontsize, "default|10|11|12");
162    for (n=0; tex_fonts[n][0]; ++n) {
163         fl_addto_choice(class_->choice_doc_fonts,tex_fonts[n]);
164     }
165     fl_addto_choice(class_->choice_doc_pagestyle,
166                     "default|empty|plain|headings|fancy");
167     fl_addto_choice(class_->choice_doc_skip,
168                     _(" Smallskip | Medskip | Bigskip | Length "));
169     fl_set_input_return(class_->input_doc_skip, FL_RETURN_ALWAYS);
170     fl_set_input_return(class_->input_doc_spacing, FL_RETURN_ALWAYS);
171
172     bc_.addReadOnly (class_->radio_doc_indent);
173     bc_.addReadOnly (class_->radio_doc_skip);
174 #ifndef USE_CLASS_COMBO
175     bc_.addReadOnly (class_->choice_doc_class);
176 #endif
177     bc_.addReadOnly (class_->choice_doc_pagestyle);
178     bc_.addReadOnly (class_->choice_doc_fonts);
179     bc_.addReadOnly (class_->choice_doc_fontsize);
180     bc_.addReadOnly (class_->radio_doc_sides_one);
181     bc_.addReadOnly (class_->radio_doc_sides_two);
182     bc_.addReadOnly (class_->radio_doc_columns_one);
183     bc_.addReadOnly (class_->radio_doc_columns_two);
184     bc_.addReadOnly (class_->input_doc_extra);
185     bc_.addReadOnly (class_->input_doc_skip);
186     bc_.addReadOnly (class_->choice_doc_skip);
187     bc_.addReadOnly (class_->choice_doc_spacing);
188     bc_.addReadOnly (class_->input_doc_spacing);
189
190     // the document language form
191     language_ = build_doc_language();
192     fl_addto_choice(language_->choice_inputenc,
193                     "default|auto|latin1|latin2|latin5"
194                     "|koi8-r|koi8-u|cp866|cp1251|iso88595");
195
196     // The language is a combo-box and has to be inserted manually
197     obj = language_->choice_language;
198     fl_addto_form(language_->form);
199     combo_language = new Combox(FL_COMBOX_DROPLIST);
200     combo_language->add(obj->x, obj->y, obj->w, obj->h, 400);
201     combo_language->shortcut("#L",1);
202     combo_language->setcallback(ComboInputCB, this);
203     fl_end_form();
204     // "default" is not part of the languages array any more.
205 #ifdef DO_USE_DEFAULT_LANGUAGE
206     combo_language->addto("default");
207 #endif
208     for(Languages::const_iterator cit = languages.begin();
209         cit != languages.end(); ++cit) {
210         combo_language->addto((*cit).second.lang());
211     }
212
213     fl_addto_choice(language_->choice_quotes_language,
214                     _(" ``text'' | ''text'' | ,,text`` | ,,text'' |"
215                       " «text» | »text« "));
216
217     bc_.addReadOnly (language_->choice_language);
218     bc_.addReadOnly (language_->choice_inputenc);
219
220     // the document options form
221     options_ = build_doc_options();
222     fl_set_counter_bounds(options_->slider_secnumdepth,-2,5);
223     fl_set_counter_bounds(options_->slider_tocdepth,-1,5);
224     fl_set_counter_step(options_->slider_secnumdepth,1,1);
225     fl_set_counter_step(options_->slider_tocdepth,1,1);
226     fl_set_counter_precision(options_->slider_secnumdepth, 0);
227     fl_set_counter_precision(options_->slider_tocdepth, 0);
228     for (n=0; tex_graphics[n][0]; ++n) {
229         fl_addto_choice(options_->choice_postscript_driver, tex_graphics[n]);
230     }
231
232     bc_.addReadOnly (options_->slider_secnumdepth);
233     bc_.addReadOnly (options_->slider_tocdepth);
234     bc_.addReadOnly (options_->check_use_amsmath);
235     bc_.addReadOnly (options_->input_float_placement);
236     bc_.addReadOnly (options_->choice_postscript_driver);
237
238     // the document bullets form
239     bullets_ = build_doc_bullet();
240     fl_addto_choice(bullets_->choice_bullet_size,
241                     _(" default | tiny | script | footnote | small |"
242                       " normal | large | Large | LARGE | huge | Huge"));
243     fl_set_choice(bullets_->choice_bullet_size, 1);
244     fl_set_input_return(bullets_->input_bullet_latex, FL_RETURN_CHANGED);
245     fl_set_input_maxchars(bullets_->input_bullet_latex, 80);
246
247     bc_.addReadOnly (bullets_->bmtable_bullet_panel);
248     bc_.addReadOnly (bullets_->choice_bullet_size);
249     bc_.addReadOnly (bullets_->input_bullet_latex);
250
251     fl_addto_tabfolder(dialog_->tabbed_folder,_("Document"),
252                        class_->form);
253     fl_addto_tabfolder(dialog_->tabbed_folder,_("Paper"),
254                        paper_->form);
255     fl_addto_tabfolder(dialog_->tabbed_folder,_("Language"),
256                        language_->form);
257     fl_addto_tabfolder(dialog_->tabbed_folder,_("Extra"),
258                        options_->form);
259     fbullet = fl_addto_tabfolder(dialog_->tabbed_folder,_("Bullets"),
260                                  bullets_->form);
261     if ((XpmVersion < 4) || (XpmVersion == 4 && XpmRevision < 7)) {
262             lyxerr << _("Your version of libXpm is older than 4.7.\n"
263                         "The `bullet' tab of the document popup "
264                         "has been disabled") << '\n';
265         fl_deactivate_object(fbullet);
266         fl_set_object_lcol(fbullet, FL_INACTIVE);
267     }
268 }
269
270
271 void FormDocument::apply()
272 {
273     if (!lv_->view()->available() || !dialog_)
274         return;
275
276     bool redo = class_apply();
277     paper_apply();
278     redo = language_apply() || redo;
279     redo = options_apply() || redo;
280     bullets_apply();
281
282     if (redo) {
283             lv_->view()->redoCurrentBuffer();
284     }
285     lv_->buffer()->markDirty();
286     setMinibuffer(lv_, _("Document layout set"));
287 }
288
289
290 void FormDocument::cancel()
291 {
292     // this avoids confusion when reopening
293     BufferParams & param = lv_->buffer()->params;
294     param.temp_bullets[0] = param.user_defined_bullets[0];
295     param.temp_bullets[1] = param.user_defined_bullets[1];
296     param.temp_bullets[2] = param.user_defined_bullets[2];
297     param.temp_bullets[3] = param.user_defined_bullets[3];
298     hide();
299 }
300
301
302 // we can safely ignore the parameter because we can always update
303 void FormDocument::update(bool)
304 {
305     if (!dialog_)
306         return;
307
308     checkReadOnly();
309
310     BufferParams const & params = lv_->buffer()->params;
311
312     class_update(params);
313     paper_update(params);
314     language_update(params);
315     options_update(params);
316     bullets_update(params);
317 }
318
319
320 bool FormDocument::input( FL_OBJECT * ob, long data )
321 {
322         State cb = static_cast<State>( data );
323
324         switch( cb ) {
325         case CHECKCHOICECLASS:
326                 CheckChoiceClass(ob, 0);
327                 break;
328         case CHOICEBULLETSIZE:
329                 ChoiceBulletSize(ob, 0);
330                 break;
331         case INPUTBULLETLATEX:
332                 InputBulletLaTeX(ob, 0);
333                 break;
334         case BULLETDEPTH1:
335         case BULLETDEPTH2:
336         case BULLETDEPTH3:
337         case BULLETDEPTH4:
338                 BulletDepth(ob, cb);
339                 break;
340         case BULLETPANEL1:
341         case BULLETPANEL2:
342         case BULLETPANEL3:
343         case BULLETPANEL4:
344         case BULLETPANEL5:
345         case BULLETPANEL6:
346                 BulletPanel(ob, cb);
347                 break;
348         case BULLETBMTABLE:
349                 BulletBMTable(ob, 0);
350                 break;
351         default:
352                 break;
353         }
354         
355         switch( data ) {
356         case INPUT:
357         case CHECKCHOICECLASS:
358         case CHOICEBULLETSIZE:
359         case INPUTBULLETLATEX:
360         case BULLETBMTABLE:
361                 return CheckDocumentInput(ob, 0);
362         default:
363                 break;
364         }
365
366         return true;
367 }
368
369
370 void FormDocument::ComboInputCB(int, void * v, Combox * combox)
371 {
372     FormDocument * pre = static_cast<FormDocument*>(v);
373     if (combox == pre->combo_doc_class)
374         pre->CheckChoiceClass(0, 0);
375     pre->bc_.valid(pre->CheckDocumentInput(0,0));
376 }
377
378
379 bool FormDocument::class_apply()
380 {
381         bool redo = false;
382         BufferParams &params = lv_->buffer()->params;
383
384         // If default skip is a "Length" but there's no text in the
385         // input field, reset the kind to "Medskip", which is the default.
386         if ((fl_get_choice (class_->choice_doc_skip) == 4) &&
387             !*(fl_get_input (class_->input_doc_skip))) {
388                 fl_set_choice (class_->choice_doc_skip, 2);
389         }
390         params.fonts = fl_get_choice_text(class_->choice_doc_fonts);
391         params.fontsize = fl_get_choice_text(class_->choice_doc_fontsize);
392         params.pagestyle = fl_get_choice_text(class_->choice_doc_pagestyle);
393
394 #ifdef USE_CLASS_COMBO   
395         unsigned int const new_class = combo_doc_class->get() - 1;
396 #else
397         unsigned int const new_class = fl_get_choice(class_->choice_doc_class) - 1;
398 #endif
399         if (params.textclass != new_class) {
400                 // try to load new_class
401                 if (textclasslist.Load(new_class)) {
402                         // successfully loaded
403                         redo = true;
404                         setMinibuffer(lv_, _("Converting document to new document class..."));
405                         CutAndPaste cap;
406                         int ret = cap.SwitchLayoutsBetweenClasses(
407                             params.textclass, new_class,
408                             lv_->buffer()->paragraph);
409                         if (ret) {
410                                 string s;
411                                 if (ret==1) {
412                                         s = _("One paragraph couldn't be converted");
413                                 } else {
414                                         s += tostr(ret);
415                                         s += _(" paragraphs couldn't be converted");
416                                 }
417                                 WriteAlert(_("Conversion Errors!"),s,
418                                            _("into chosen document class"));
419                         }
420                         
421                         params.textclass = new_class;
422                 } else {
423                         // problem changing class -- warn user and retain old style
424                         WriteAlert(_("Conversion Errors!"),
425                                    _("Errors loading new document class."),
426                                    _("Reverting to original document class."));
427 #ifdef USE_CLASS_COMBO
428                         combo_doc_class->select(params.textclass + 1);
429 #else
430                         fl_set_choice(class_->choice_doc_class,
431                                       params.textclass + 1);
432 #endif
433                 }
434         }
435         BufferParams::PARSEP tmpsep = params.paragraph_separation;
436         if (fl_get_button(class_->radio_doc_indent))
437                 params.paragraph_separation = BufferParams::PARSEP_INDENT;
438         else
439                 params.paragraph_separation = BufferParams::PARSEP_SKIP;
440         if (tmpsep != params.paragraph_separation)
441                 redo = true;
442         
443         VSpace tmpdefskip = params.getDefSkip();
444         switch (fl_get_choice (class_->choice_doc_skip)) {
445         case 1:
446                 params.setDefSkip(VSpace(VSpace::SMALLSKIP));
447                 break;
448         case 2:
449                 params.setDefSkip(VSpace(VSpace::MEDSKIP));
450                 break;
451     case 3:
452             params.setDefSkip(VSpace(VSpace::BIGSKIP));
453             break;
454         case 4:
455                 params.setDefSkip
456                         (VSpace(LyXGlueLength(fl_get_input(class_->input_doc_skip))));
457                 break;
458                 // DocumentDefskipCB assures that this never happens
459         default:
460                 params.setDefSkip(VSpace(VSpace::MEDSKIP));
461                 break;
462         }
463         if (!(tmpdefskip == params.getDefSkip()))
464                 redo = true;
465         
466         if (fl_get_button(class_->radio_doc_columns_two))
467                 params.columns = 2;
468         else
469                 params.columns = 1;
470         if (fl_get_button(class_->radio_doc_sides_two))
471                 params.sides = LyXTextClass::TwoSides;
472         else
473                 params.sides = LyXTextClass::OneSide;
474         
475         Spacing tmpSpacing = params.spacing;
476         switch(fl_get_choice(class_->choice_doc_spacing)) {
477         case 1:
478                 lyxerr[Debug::INFO] << "Spacing: SINGLE\n";
479                 params.spacing.set(Spacing::Single);
480                 break;
481         case 2:
482                 lyxerr[Debug::INFO] << "Spacing: ONEHALF\n";
483                 params.spacing.set(Spacing::Onehalf);
484                 break;
485         case 3:
486                 lyxerr[Debug::INFO] << "Spacing: DOUBLE\n";
487                 params.spacing.set(Spacing::Double);
488                 break;
489         case 4:
490                 lyxerr[Debug::INFO] << "Spacing: OTHER\n";
491                 params.spacing.set(Spacing::Other, 
492                                    fl_get_input(class_->input_doc_spacing));
493                 break;
494         }
495         if (tmpSpacing != params.spacing)
496                 redo = true;
497         
498         params.options = fl_get_input(class_->input_doc_extra);
499         
500         return redo;
501 }
502
503
504 void FormDocument::paper_apply()
505 {
506     BufferParams & params = lv_->buffer()->params;
507     
508     params.papersize2 =
509             static_cast<char>(fl_get_choice(paper_->choice_papersize2)-1);
510     params.paperpackage =
511             static_cast<char>(fl_get_choice(paper_->choice_paperpackage)-1);
512     params.use_geometry = fl_get_button(paper_->push_use_geometry);
513     if (fl_get_button(paper_->radio_landscape))
514         params.orientation = BufferParams::ORIENTATION_LANDSCAPE;
515     else
516         params.orientation = BufferParams::ORIENTATION_PORTRAIT;
517     params.paperwidth = fl_get_input(paper_->input_custom_width);
518     params.paperheight = fl_get_input(paper_->input_custom_height);
519     params.leftmargin = fl_get_input(paper_->input_left_margin);
520     params.topmargin = fl_get_input(paper_->input_top_margin);
521     params.rightmargin = fl_get_input(paper_->input_right_margin);
522     params.bottommargin = fl_get_input(paper_->input_bottom_margin);
523     params.headheight = fl_get_input(paper_->input_head_height);
524     params.headsep = fl_get_input(paper_->input_head_sep);
525     params.footskip = fl_get_input(paper_->input_foot_skip);
526     lv_->buffer()->setPaperStuff();
527 }
528
529
530 bool FormDocument::language_apply()
531 {
532     BufferParams & params = lv_->buffer()->params;
533     InsetQuotes::quote_language lga = InsetQuotes::EnglishQ;
534     bool redo = false;
535
536     switch(fl_get_choice(language_->choice_quotes_language) - 1) {
537     case 0:
538         lga = InsetQuotes::EnglishQ;
539         break;
540     case 1:
541         lga = InsetQuotes::SwedishQ;
542         break;
543     case 2:
544         lga = InsetQuotes::GermanQ;
545         break;
546     case 3:
547         lga = InsetQuotes::PolishQ;
548                 break;
549     case 4:
550         lga = InsetQuotes::FrenchQ;
551         break;
552     case 5:
553         lga = InsetQuotes::DanishQ;
554         break;
555     }
556     params.quotes_language = lga;
557     if (fl_get_button(language_->radio_single))   
558         params.quotes_times = InsetQuotes::SingleQ;
559     else
560         params.quotes_times = InsetQuotes::DoubleQ;
561
562     Language const * old_language = params.language;
563     Language const * new_language = 
564             languages.getLanguage(combo_language->getline());
565     if (!new_language)
566         new_language = default_language;
567
568     if (old_language != new_language
569         && old_language->RightToLeft() == new_language->RightToLeft()
570         && !lv_->buffer()->isMultiLingual())
571         lv_->buffer()->ChangeLanguage(old_language, new_language);
572     if (old_language != new_language) {
573         redo = true;
574     }
575     params.language = new_language;
576     params.inputenc = fl_get_choice_text(language_->choice_inputenc);
577
578     return redo;
579 }
580
581
582 bool FormDocument::options_apply()
583 {
584     BufferParams & params = lv_->buffer()->params;
585     bool redo = false;
586
587     params.graphicsDriver =
588         fl_get_choice_text(options_->choice_postscript_driver);
589     params.use_amsmath = fl_get_button(options_->check_use_amsmath);
590
591     int tmpchar = int(fl_get_counter_value(options_->slider_secnumdepth));
592     if (params.secnumdepth != tmpchar)
593         redo = true;
594     params.secnumdepth = tmpchar;
595    
596     params.tocdepth = int(fl_get_counter_value(options_->slider_tocdepth));
597
598     params.float_placement =
599         fl_get_input(options_->input_float_placement);
600
601     return redo;
602 }
603
604
605 void FormDocument::bullets_apply()
606 {
607     /* update the bullet settings */
608     BufferParams & param = lv_->buffer()->params;
609     
610     // a little bit of loop unrolling
611     param.user_defined_bullets[0] = param.temp_bullets[0];
612     param.user_defined_bullets[1] = param.temp_bullets[1];
613     param.user_defined_bullets[2] = param.temp_bullets[2];
614     param.user_defined_bullets[3] = param.temp_bullets[3];
615 }
616
617
618 void FormDocument::class_update(BufferParams const & params)
619 {
620     if (!class_)
621         return;
622
623     LyXTextClass const & tclass = textclasslist.TextClass(params.textclass);
624
625 #ifdef USE_CLASS_COMBO
626     combo_doc_class->select_text(
627         textclasslist.DescOfClass(params.textclass));
628 #else   
629     fl_set_choice_text(class_->choice_doc_class, 
630                        textclasslist.DescOfClass(params.textclass).c_str());
631 #endif
632     fl_set_choice_text(class_->choice_doc_fonts, params.fonts.c_str());
633     fl_clear_choice(class_->choice_doc_fontsize);
634     fl_addto_choice(class_->choice_doc_fontsize, "default");
635     fl_addto_choice(class_->choice_doc_fontsize,
636                     tclass.opt_fontsize().c_str());
637     fl_set_choice(class_->choice_doc_fontsize,
638                   tokenPos(tclass.opt_fontsize(), '|', params.fontsize)+2);
639     fl_clear_choice(class_->choice_doc_pagestyle);
640     fl_addto_choice(class_->choice_doc_pagestyle, "default");
641     fl_addto_choice(class_->choice_doc_pagestyle,
642                     tclass.opt_pagestyle().c_str());
643     fl_set_choice(class_->choice_doc_pagestyle,
644                   tokenPos(tclass.opt_pagestyle(), '|', params.pagestyle)+2);
645     fl_set_button(class_->radio_doc_indent, 0);
646     fl_set_button(class_->radio_doc_skip, 0);
647     if (params.paragraph_separation == BufferParams::PARSEP_INDENT)
648         fl_set_button(class_->radio_doc_indent, 1);
649     else
650         fl_set_button(class_->radio_doc_skip, 1);
651     switch (params.getDefSkip().kind()) {
652     case VSpace::SMALLSKIP: 
653         fl_set_choice (class_->choice_doc_skip, 1);
654         break;
655     case VSpace::MEDSKIP: 
656         fl_set_choice (class_->choice_doc_skip, 2);
657         break;
658     case VSpace::BIGSKIP: 
659         fl_set_choice (class_->choice_doc_skip, 3);
660         break;
661     case VSpace::LENGTH: 
662         fl_set_choice (class_->choice_doc_skip, 4);
663         fl_set_input (class_->input_doc_skip,
664                       params.getDefSkip().asLyXCommand().c_str());
665         break;
666     default:
667         fl_set_choice (class_->choice_doc_skip, 2);
668         break;
669     }
670     fl_set_button(class_->radio_doc_sides_one, 0);
671     fl_set_button(class_->radio_doc_sides_two, 0);
672     if (params.sides == 2)
673         fl_set_button(class_->radio_doc_sides_two, 1);
674     else
675         fl_set_button(class_->radio_doc_sides_one, 1);
676     fl_set_button(class_->radio_doc_columns_one, 0);
677     fl_set_button(class_->radio_doc_columns_two, 0);
678     if (params.columns == 2)
679         fl_set_button(class_->radio_doc_columns_two, 1);
680     else
681         fl_set_button(class_->radio_doc_columns_one, 1);
682     fl_set_input(class_->input_doc_spacing, "");
683     switch (params.spacing.getSpace()) {
684     case Spacing::Default: // nothing bad should happen with this
685     case Spacing::Single:
686         // \singlespacing
687         fl_set_choice(class_->choice_doc_spacing, 1);
688         break;
689     case Spacing::Onehalf:
690         // \onehalfspacing
691         fl_set_choice(class_->choice_doc_spacing, 2);
692         break;
693     case Spacing::Double:
694         // \doublespacing
695         fl_set_choice(class_->choice_doc_spacing, 3);
696         break;
697     case Spacing::Other:
698         {
699             fl_set_choice(class_->choice_doc_spacing, 4);
700             char sval[20];
701             sprintf(sval,"%g",params.spacing.getValue()); 
702             fl_set_input(class_->input_doc_spacing, sval);
703             break;
704         }
705     }
706     if (!params.options.empty())
707         fl_set_input(class_->input_doc_extra, params.options.c_str());
708     else
709         fl_set_input(class_->input_doc_extra, "");
710 }
711
712
713 void FormDocument::language_update(BufferParams const & params)
714 {
715     if (!language_)
716         return;
717
718     combo_language->select_text(params.language->lang());
719     fl_set_choice_text(language_->choice_inputenc, params.inputenc.c_str());
720     fl_set_choice(language_->choice_quotes_language, params.quotes_language + 1);
721     fl_set_button(language_->radio_single, 0);
722     fl_set_button(language_->radio_double, 0);
723     if (params.quotes_times == InsetQuotes::SingleQ)
724         fl_set_button(language_->radio_single, 1);
725     else
726         fl_set_button(language_->radio_double, 1);
727 }
728
729
730 void FormDocument::options_update(BufferParams const & params)
731 {
732     if (!options_)
733         return;
734
735     fl_set_choice_text(options_->choice_postscript_driver,
736                        params.graphicsDriver.c_str());
737     fl_set_button(options_->check_use_amsmath, params.use_amsmath);
738     fl_set_counter_value(options_->slider_secnumdepth, params.secnumdepth);
739     fl_set_counter_value(options_->slider_tocdepth, params.tocdepth);
740     if (!params.float_placement.empty())
741         fl_set_input(options_->input_float_placement,
742                      params.float_placement.c_str());
743     else
744         fl_set_input(options_->input_float_placement, "");
745 }
746
747
748 void FormDocument::paper_update(BufferParams const & params)
749 {
750     if (!paper_)
751         return;
752
753     fl_set_choice(paper_->choice_papersize2, params.papersize2 + 1);
754     fl_set_choice(paper_->choice_paperpackage, params.paperpackage + 1);
755     fl_set_button(paper_->push_use_geometry, params.use_geometry);
756     fl_set_button(paper_->radio_portrait, 0);
757     fl_set_button(paper_->radio_landscape, 0);
758     if (params.orientation == BufferParams::ORIENTATION_LANDSCAPE)
759         fl_set_button(paper_->radio_landscape, 1);
760     else
761         fl_set_button(paper_->radio_portrait, 1);
762     fl_set_input(paper_->input_custom_width, params.paperwidth.c_str());
763     fl_set_input(paper_->input_custom_height, params.paperheight.c_str());
764     fl_set_input(paper_->input_left_margin, params.leftmargin.c_str());
765     fl_set_input(paper_->input_top_margin, params.topmargin.c_str());
766     fl_set_input(paper_->input_right_margin, params.rightmargin.c_str());
767     fl_set_input(paper_->input_bottom_margin, params.bottommargin.c_str());
768     fl_set_input(paper_->input_head_height, params.headheight.c_str());
769     fl_set_input(paper_->input_head_sep, params.headsep.c_str());
770     fl_set_input(paper_->input_foot_skip, params.footskip.c_str());
771     fl_set_focus_object(paper_->form, paper_->choice_papersize2);
772 }
773
774
775 void FormDocument::bullets_update(BufferParams const & params)
776 {
777     if (!bullets_ || ((XpmVersion<4) || (XpmVersion==4 && XpmRevision<7)))
778         return;
779
780     if (lv_->buffer()->isLinuxDoc()) {
781         fl_deactivate_object(fbullet);
782         fl_set_object_lcol(fbullet, FL_INACTIVE);
783         return;
784     } else {
785         fl_activate_object(fbullet);
786         fl_set_object_lcol(fbullet, FL_BLACK);
787     }
788
789     fl_set_button(bullets_->radio_bullet_depth_1, 1);
790     fl_set_input(bullets_->input_bullet_latex,
791                  params.user_defined_bullets[0].getText().c_str());
792     fl_set_choice(bullets_->choice_bullet_size,
793                   params.user_defined_bullets[0].getSize() + 2);
794 }
795
796
797 void FormDocument::checkReadOnly()
798 {
799     if (bc_.readOnly(lv_->buffer()->isReadonly())) {
800         combo_doc_class->deactivate();
801         combo_language->deactivate();
802         fl_set_object_label(dialog_->text_warning,
803                             _("Document is read-only."
804                               " No changes to layout permitted."));
805         fl_show_object(dialog_->text_warning);
806     } else {
807         combo_doc_class->activate();
808         combo_language->activate();
809         fl_hide_object(dialog_->text_warning);
810     }   
811 }
812
813
814 void FormDocument::checkMarginValues()
815 {
816     int const allEmpty = (!strlen(fl_get_input(paper_->input_top_margin)) &&
817                 !strlen(fl_get_input(paper_->input_bottom_margin)) &&
818                 !strlen(fl_get_input(paper_->input_left_margin)) &&
819                 !strlen(fl_get_input(paper_->input_right_margin)) &&
820                 !strlen(fl_get_input(paper_->input_head_height)) &&
821                 !strlen(fl_get_input(paper_->input_head_sep)) &&
822                 !strlen(fl_get_input(paper_->input_foot_skip)) &&
823                 !strlen(fl_get_input(paper_->input_custom_width)) &&
824                 !strlen(fl_get_input(paper_->input_custom_height)));
825     if (!allEmpty)
826         fl_set_button(paper_->push_use_geometry, 1);
827 }
828
829 bool FormDocument::CheckDocumentInput(FL_OBJECT * ob, long)
830 {
831     string str;
832     int val;
833     bool ok = true;
834     char const * input;
835     
836     checkMarginValues();
837     if (ob == paper_->choice_papersize2) {
838         val = fl_get_choice(paper_->choice_papersize2)-1;
839         if (val == BufferParams::VM_PAPER_DEFAULT) {
840             fl_set_button(paper_->push_use_geometry, 0);
841             checkMarginValues();
842         } else {
843             if ((val != BufferParams::VM_PAPER_USLETTER) &&
844                 (val != BufferParams::VM_PAPER_USLEGAL) &&
845                 (val != BufferParams::VM_PAPER_USEXECUTIVE) &&
846                 (val != BufferParams::VM_PAPER_A4) &&
847                 (val != BufferParams::VM_PAPER_A5) &&
848                 (val != BufferParams::VM_PAPER_B5)) {
849                 fl_set_button(paper_->push_use_geometry, 1);
850             }
851             fl_set_choice(paper_->choice_paperpackage,
852                           BufferParams::PACKAGE_NONE + 1);
853         }
854     } else if (ob == paper_->choice_paperpackage) {
855         val = fl_get_choice(paper_->choice_paperpackage)-1;
856         if (val != BufferParams::PACKAGE_NONE) {
857             fl_set_choice(paper_->choice_papersize2,
858                           BufferParams::VM_PAPER_DEFAULT + 1);
859             fl_set_button(paper_->push_use_geometry, 0);
860         }
861     } else if (ob == class_->input_doc_spacing) {
862         input = fl_get_input(class_->input_doc_spacing);
863         if (!*input) {
864             fl_set_choice (class_->choice_doc_spacing, 1);
865         } else {
866             fl_set_choice(class_->choice_doc_spacing, 4);
867         }
868     }
869     // this has to be all out of if/elseif because it has to deactivate
870     // the document buttons and so the whole stuff has to be tested again.
871     str = fl_get_input(paper_->input_custom_width);
872     ok = ok && (str.empty() || isValidLength(str));
873     str = fl_get_input(paper_->input_custom_height);
874     ok = ok && (str.empty() || isValidLength(str));
875     str = fl_get_input(paper_->input_left_margin);
876     ok = ok && (str.empty() || isValidLength(str));
877     str = fl_get_input(paper_->input_right_margin);
878     ok = ok && (str.empty() || isValidLength(str));
879     str = fl_get_input(paper_->input_top_margin);
880     ok = ok && (str.empty() || isValidLength(str));
881     str = fl_get_input(paper_->input_bottom_margin);
882     ok = ok && (str.empty() || isValidLength(str));
883     str = fl_get_input(paper_->input_head_height);
884     ok = ok && (str.empty() || isValidLength(str));
885     str = fl_get_input(paper_->input_head_sep);
886     ok = ok && (str.empty() || isValidLength(str));
887     str = fl_get_input(paper_->input_foot_skip);
888     ok = ok && (str.empty() || isValidLength(str));
889     // "Synchronize" the choice and the input field, so that it
890     // is impossible to commit senseless data.
891     input = fl_get_input (class_->input_doc_skip);
892     if (ob == class_->input_doc_skip) {
893         if (!*input) {
894             fl_set_choice (class_->choice_doc_skip, 2);
895         } else if (isValidGlueLength (input)) {
896             fl_set_choice (class_->choice_doc_skip, 4);
897         } else {
898             fl_set_choice(class_->choice_doc_skip, 4);
899             ok = false;
900         }
901     } else {
902         if (*input && !isValidGlueLength(input))
903             ok = false;
904     }
905     if ((fl_get_choice(class_->choice_doc_skip) == 4) && !*input)
906         ok = false;
907     else if (fl_get_choice(class_->choice_doc_skip) != 4)
908         fl_set_input (class_->input_doc_skip, "");
909
910     input = fl_get_input(class_->input_doc_spacing);
911     if ((fl_get_choice(class_->choice_doc_spacing) == 4) && !*input)
912         ok = false;
913     else  if (fl_get_choice(class_->choice_doc_spacing) != 4)
914         fl_set_input (class_->input_doc_spacing, "");
915     return ok;
916 }
917
918
919 void FormDocument::ChoiceBulletSize(FL_OBJECT * ob, long /*data*/ )
920 {
921     BufferParams & param = lv_->buffer()->params;
922
923     // convert from 1-6 range to -1-4 
924     param.temp_bullets[current_bullet_depth].setSize(fl_get_choice(ob) - 2);
925     fl_set_input(bullets_->input_bullet_latex,
926                  param.temp_bullets[current_bullet_depth].getText().c_str());
927 }
928
929
930 void FormDocument::InputBulletLaTeX(FL_OBJECT *, long)
931 {
932     BufferParams & param = lv_->buffer()->params;
933
934     param.temp_bullets[current_bullet_depth].
935         setText(fl_get_input(bullets_->input_bullet_latex));
936 }
937
938
939 void FormDocument::BulletDepth(FL_OBJECT * ob, State cb)
940 {
941     /* Should I do the following:                                 */
942     /*  1. change to the panel that the current bullet belongs in */
943     /*  2. show that bullet as selected                           */
944     /*  3. change the size setting to the size of the bullet in Q.*/
945     /*  4. display the latex equivalent in the latex box          */
946     /*                                                            */
947     /* I'm inclined to just go with 3 and 4 at the moment and     */
948     /* maybe try to support the others later                      */
949     BufferParams & param = lv_->buffer()->params;
950
951     int data = 0;
952     if( cb == BULLETDEPTH1 )
953             data = 0;
954     else if ( cb == BULLETDEPTH2 )
955             data = 1;
956     else if ( cb == BULLETDEPTH3 )
957             data = 2;
958     else if ( cb == BULLETDEPTH4 )
959             data = 3;
960
961     switch (fl_get_button_numb(ob)) {
962     case 3:
963             // right mouse button resets to default
964         param.temp_bullets[data] = ITEMIZE_DEFAULTS[data];
965     default:
966         current_bullet_depth = data;
967         fl_set_input(bullets_->input_bullet_latex,
968                      param.temp_bullets[data].getText().c_str());
969         fl_set_choice(bullets_->choice_bullet_size,
970                       param.temp_bullets[data].getSize() + 2);
971     }
972 }
973
974
975 void FormDocument::BulletPanel(FL_OBJECT * /*ob*/, State cb)
976 {
977     /* Here we have to change the background pixmap to that selected */
978     /* by the user. (eg. standard.xpm, psnfss1.xpm etc...)           */
979     
980     int data = 0;
981     if( cb == BULLETPANEL1 )
982             data = 0;
983     else if ( cb == BULLETPANEL2 )
984             data = 1;
985     else if ( cb == BULLETPANEL3 )
986             data = 2;
987     else if ( cb == BULLETPANEL4 )
988             data = 3;
989     else if ( cb == BULLETPANEL5 )
990             data = 4;
991     else if ( cb == BULLETPANEL6 )
992             data = 5;
993
994     if (data != current_bullet_panel) {
995         fl_freeze_form(bullets_->form);
996         current_bullet_panel = data;
997
998         /* free the current pixmap */
999         fl_free_bmtable_pixmap(bullets_->bmtable_bullet_panel);
1000         string new_panel;
1001         switch (cb) {
1002             /* display the new one */
1003         case BULLETPANEL1 :
1004             new_panel = "standard";
1005             break;
1006         case BULLETPANEL2 :
1007             new_panel = "amssymb";
1008             break;
1009         case BULLETPANEL3 :
1010             new_panel = "psnfss1";
1011             break;
1012         case BULLETPANEL4 :
1013             new_panel = "psnfss2";
1014             break;
1015         case BULLETPANEL5 :
1016             new_panel = "psnfss3";
1017             break;
1018         case BULLETPANEL6 :
1019             new_panel = "psnfss4";
1020             break;
1021         default :
1022             /* something very wrong happened */
1023             // play it safe for now but should be an exception
1024             current_bullet_panel = 0;  // standard panel
1025             new_panel = "standard";
1026             break;
1027         }
1028         new_panel += ".xpm";
1029         fl_set_bmtable_pixmap_file(bullets_->bmtable_bullet_panel, 6, 6,
1030                                    LibFileSearch("images", new_panel).c_str());
1031         fl_redraw_object(bullets_->bmtable_bullet_panel);
1032         fl_unfreeze_form(bullets_->form);
1033     }
1034 }
1035
1036
1037 void FormDocument::BulletBMTable(FL_OBJECT * ob, long /*data*/ )
1038 {
1039     /* handle the user input by setting the current bullet depth's pixmap */
1040     /* to that extracted from the current chosen position of the BMTable  */
1041     /* Don't forget to free the button's old pixmap first.                */
1042
1043     BufferParams & param = lv_->buffer()->params;
1044     int bmtable_button = fl_get_bmtable(ob);
1045
1046     /* try to keep the button held down till another is pushed */
1047     /*  fl_set_bmtable(ob, 1, bmtable_button); */
1048     param.temp_bullets[current_bullet_depth].setFont(current_bullet_panel);
1049     param.temp_bullets[current_bullet_depth].setCharacter(bmtable_button);
1050     fl_set_input(bullets_->input_bullet_latex,
1051                  param.temp_bullets[current_bullet_depth].getText().c_str());
1052 }
1053
1054
1055 void FormDocument::CheckChoiceClass(FL_OBJECT * ob, long)
1056 {
1057     if (!ob)
1058         ob = class_->choice_doc_class;
1059
1060     ProhibitInput(lv_->view());
1061
1062 #ifdef USE_CLASS_COMBO
1063     int tc = combo_doc_class->get() - 1;
1064     string tct = combo_doc_class->getline();
1065 #else
1066     int tc = fl_get_choice(ob) - 1;
1067     string tct = fl_get_choice_text(ob);
1068 #endif
1069     if (textclasslist.Load(tc)) {
1070         if (AskQuestion(_("Should I set some parameters to"), tct,
1071                         _("the defaults of this document class?"))) {
1072             BufferParams & params = lv_->buffer()->params;
1073
1074             params.textclass = tc;
1075             params.useClassDefaults();
1076             UpdateLayoutDocument(params);
1077         }
1078     } else {
1079         // unable to load new style
1080         WriteAlert(_("Conversion Errors!"),
1081                    _("Unable to switch to new document class."),
1082                    _("Reverting to original document class."));
1083 #ifdef USE_CLASS_COMBO
1084         combo_doc_class->select(lv_->buffer()->params.textclass + 1);
1085 #else
1086         fl_set_choice(class_->choice_doc_class, 
1087                       lv_->buffer()->params.textclass + 1);
1088 #endif
1089     }
1090     AllowInput(lv_->view());
1091 }
1092
1093
1094 void FormDocument::UpdateLayoutDocument(BufferParams const & params)
1095 {
1096     if (!dialog_)
1097         return;
1098
1099     checkReadOnly();
1100     class_update(params);
1101     paper_update(params);
1102     language_update(params);
1103     options_update(params);
1104     bullets_update(params);
1105 }