]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiPrefs.cpp
6b07c214243d5dbc6b563ba955f85213ad127f70
[lyx.git] / src / frontends / qt4 / GuiPrefs.cpp
1 /**
2  * \file GuiPrefs.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  * \author Bo Peng
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "GuiPrefs.h"
15
16 #include "ColorCache.h"
17 #include "FileDialog.h"
18 #include "GuiApplication.h"
19 #include "GuiFontExample.h"
20 #include "GuiFontLoader.h"
21 #include "GuiKeySymbol.h"
22 #include "qt_helpers.h"
23
24 #include "BufferList.h"
25 #include "Color.h"
26 #include "ColorSet.h"
27 #include "ConverterCache.h"
28 #include "FontEnums.h"
29 #include "FuncRequest.h"
30 #include "KeyMap.h"
31 #include "KeySequence.h"
32 #include "Language.h"
33 #include "LyXAction.h"
34 #include "PanelStack.h"
35 #include "paper.h"
36 #include "Session.h"
37 #include "SpellChecker.h"
38
39 #include "support/debug.h"
40 #include "support/FileName.h"
41 #include "support/filetools.h"
42 #include "support/foreach.h"
43 #include "support/gettext.h"
44 #include "support/lstrings.h"
45 #include "support/os.h"
46 #include "support/Package.h"
47
48 #include "graphics/GraphicsTypes.h"
49
50 #include "frontends/alert.h"
51 #include "frontends/Application.h"
52 #include "frontends/FontLoader.h"
53
54 #include <QAbstractItemModel>
55 #include <QCheckBox>
56 #include <QColorDialog>
57 #include <QFontDatabase>
58 #include <QHeaderView>
59 #include <QLineEdit>
60 #include <QMessageBox>
61 #include <QPixmapCache>
62 #include <QPushButton>
63 #include <QSpinBox>
64 #include <QString>
65 #include <QTreeWidget>
66 #include <QTreeWidgetItem>
67 #include <QValidator>
68
69 #include <iomanip>
70 #include <sstream>
71 #include <algorithm>
72
73 using namespace Ui;
74
75 using namespace std;
76 using namespace lyx::support;
77 using namespace lyx::support::os;
78
79 namespace lyx {
80 namespace frontend {
81
82 /////////////////////////////////////////////////////////////////////
83 //
84 // Browser Helpers
85 //
86 /////////////////////////////////////////////////////////////////////
87
88 /** Launch a file dialog and return the chosen file.
89         filename: a suggested filename.
90         title: the title of the dialog.
91         pattern: *.ps etc.
92         dir1 = (name, dir), dir2 = (name, dir): extra buttons on the dialog.
93 */
94 QString browseFile(QString const & filename,
95         QString const & title,
96         QStringList const & filters,
97         bool save = false,
98         QString const & label1 = QString(),
99         QString const & dir1 = QString(),
100         QString const & label2 = QString(),
101         QString const & dir2 = QString(),
102         QString const & fallback_dir = QString())
103 {
104         QString lastPath = ".";
105         if (!filename.isEmpty())
106                 lastPath = onlyPath(filename);
107         else if(!fallback_dir.isEmpty())
108                 lastPath = fallback_dir;
109
110         FileDialog dlg(title, LFUN_SELECT_FILE_SYNC);
111         dlg.setButton2(label1, dir1);
112         dlg.setButton2(label2, dir2);
113
114         FileDialog::Result result;
115
116         if (save)
117                 result = dlg.save(lastPath, filters, onlyFilename(filename));
118         else
119                 result = dlg.open(lastPath, filters, onlyFilename(filename));
120
121         return result.second;
122 }
123
124
125 /** Wrapper around browseFile which tries to provide a filename
126 *  relative to the user or system directory. The dir, name and ext
127 *  parameters have the same meaning as in the
128 *  support::LibFileSearch function.
129 */
130 QString browseLibFile(QString const & dir,
131         QString const & name,
132         QString const & ext,
133         QString const & title,
134         QStringList const & filters)
135 {
136         // FIXME UNICODE
137         QString const label1 = qt_("System files|#S#s");
138         QString const dir1 =
139                 toqstr(addName(package().system_support().absFilename(), fromqstr(dir)));
140
141         QString const label2 = qt_("User files|#U#u");
142         QString const dir2 =
143                 toqstr(addName(package().user_support().absFilename(), fromqstr(dir)));
144
145         QString const result = browseFile(toqstr(
146                 libFileSearch(dir, name, ext).absFilename()),
147                 title, filters, false, dir1, dir2, QString(), QString(), dir1);
148
149         // remove the extension if it is the default one
150         QString noextresult;
151         if (getExtension(result) == ext)
152                 noextresult = removeExtension(result);
153         else
154                 noextresult = result;
155
156         // remove the directory, if it is the default one
157         QString const file = onlyFilename(noextresult);
158         if (toqstr(libFileSearch(dir, file, ext).absFilename()) == result)
159                 return file;
160         else
161                 return noextresult;
162 }
163
164
165 /** Launch a file dialog and return the chosen directory.
166         pathname: a suggested pathname.
167         title: the title of the dialog.
168         dir1 = (name, dir), dir2 = (name, dir): extra buttons on the dialog.
169 */
170 QString browseDir(QString const & pathname,
171         QString const & title,
172         QString const & label1 = QString(),
173         QString const & dir1 = QString(),
174         QString const & label2 = QString(),
175         QString const & dir2 = QString())
176 {
177         QString lastPath = ".";
178         if (!pathname.isEmpty())
179                 lastPath = onlyPath(pathname);
180
181         FileDialog dlg(title, LFUN_SELECT_FILE_SYNC);
182         dlg.setButton1(label1, dir1);
183         dlg.setButton2(label2, dir2);
184
185         FileDialog::Result const result =
186                 dlg.opendir(lastPath, onlyFilename(pathname));
187
188         return result.second;
189 }
190
191
192 } // namespace frontend
193
194
195 QString browseRelFile(QString const & filename, QString const & refpath,
196         QString const & title, QStringList const & filters, bool save,
197         QString const & label1, QString const & dir1,
198         QString const & label2, QString const & dir2)
199 {
200         QString const fname = makeAbsPath(filename, refpath);
201
202
203         QString const outname =
204                 frontend::browseFile(fname, title, filters, save, label1, dir1, label2, dir2);
205
206         QString const reloutname =
207                 toqstr(makeRelPath(qstring_to_ucs4(outname), qstring_to_ucs4(refpath)));
208
209         if (reloutname.startsWith("../"))
210                 return outname;
211         else
212                 return reloutname;
213 }
214
215
216
217 /////////////////////////////////////////////////////////////////////
218 //
219 // Helpers
220 //
221 /////////////////////////////////////////////////////////////////////
222
223 namespace frontend {
224
225 string const catLookAndFeel = N_("Look & Feel");
226 string const catEditing = N_("Editing");
227 string const catLanguage = N_("Language Settings");
228 string const catOutput = N_("Output");
229 string const catFiles = N_("File Handling");
230
231 static void parseFontName(QString const & mangled0,
232         string & name, string & foundry)
233 {
234         string mangled = fromqstr(mangled0);
235         size_t const idx = mangled.find('[');
236         if (idx == string::npos || idx == 0) {
237                 name = mangled;
238                 foundry.clear();
239         } else {
240                 name = mangled.substr(0, idx - 1),
241                 foundry = mangled.substr(idx + 1, mangled.size() - idx - 2);
242         }
243 }
244
245
246 static void setComboxFont(QComboBox * cb, string const & family,
247         string const & foundry)
248 {
249         QString fontname = toqstr(family);
250         if (!foundry.empty())
251                 fontname += " [" + toqstr(foundry) + ']';
252
253         for (int i = 0; i != cb->count(); ++i) {
254                 if (cb->itemText(i) == fontname) {
255                         cb->setCurrentIndex(i);
256                         return;
257                 }
258         }
259
260         // Try matching without foundry name
261
262         // We count in reverse in order to prefer the Xft foundry
263         for (int i = cb->count(); --i >= 0;) {
264                 string name, foundry;
265                 parseFontName(cb->itemText(i), name, foundry);
266                 if (compare_ascii_no_case(name, family) == 0) {
267                         cb->setCurrentIndex(i);
268                         return;
269                 }
270         }
271
272         // family alone can contain e.g. "Helvetica [Adobe]"
273         string tmpname, tmpfoundry;
274         parseFontName(toqstr(family), tmpname, tmpfoundry);
275
276         // We count in reverse in order to prefer the Xft foundry
277         for (int i = cb->count(); --i >= 0; ) {
278                 string name, foundry;
279                 parseFontName(cb->itemText(i), name, foundry);
280                 if (compare_ascii_no_case(name, foundry) == 0) {
281                         cb->setCurrentIndex(i);
282                         return;
283                 }
284         }
285
286         // Bleh, default fonts, and the names couldn't be found. Hack
287         // for bug 1063.
288
289         QFont font;
290         font.setKerning(false);
291
292         QString const font_family = toqstr(family);
293         if (font_family == guiApp->romanFontName()) {
294                 font.setStyleHint(QFont::Serif);
295                 font.setFamily(font_family);
296         } else if (font_family == guiApp->sansFontName()) {
297                 font.setStyleHint(QFont::SansSerif);
298                 font.setFamily(font_family);
299         } else if (font_family == guiApp->typewriterFontName()) {
300                 font.setStyleHint(QFont::TypeWriter);
301                 font.setFamily(font_family);
302         } else {
303                 LYXERR0("FAILED to find the default font: '"
304                        << foundry << "', '" << family << '\'');
305                 return;
306         }
307
308         QFontInfo info(font);
309         string default_font_name, dummyfoundry;
310         parseFontName(info.family(), default_font_name, dummyfoundry);
311         LYXERR0("Apparent font is " << default_font_name);
312
313         for (int i = 0; i < cb->count(); ++i) {
314                 LYXERR0("Looking at " << cb->itemText(i));
315                 if (compare_ascii_no_case(fromqstr(cb->itemText(i)),
316                                     default_font_name) == 0) {
317                         cb->setCurrentIndex(i);
318                         return;
319                 }
320         }
321
322         LYXERR0("FAILED to find the font: '"
323                << foundry << "', '" << family << '\'');
324 }
325
326
327
328 /////////////////////////////////////////////////////////////////////
329 //
330 // PrefPlaintext
331 //
332 /////////////////////////////////////////////////////////////////////
333
334 PrefPlaintext::PrefPlaintext(GuiPreferences * form)
335         : PrefModule(qt_(catOutput), qt_("Plain text"), form)
336 {
337         setupUi(this);
338         connect(plaintextLinelengthSB, SIGNAL(valueChanged(int)),
339                 this, SIGNAL(changed()));
340 }
341
342
343 void PrefPlaintext::apply(LyXRC & rc) const
344 {
345         rc.plaintext_linelen = plaintextLinelengthSB->value();
346 }
347
348
349 void PrefPlaintext::update(LyXRC const & rc)
350 {
351         plaintextLinelengthSB->setValue(rc.plaintext_linelen);
352 }
353
354
355 /////////////////////////////////////////////////////////////////////
356 //
357 // StrftimeValidator
358 //
359 /////////////////////////////////////////////////////////////////////
360
361 class StrftimeValidator : public QValidator
362 {
363 public:
364         StrftimeValidator(QWidget *);
365         QValidator::State validate(QString & input, int & pos) const;
366 };
367
368
369 StrftimeValidator::StrftimeValidator(QWidget * parent)
370         : QValidator(parent)
371 {
372 }
373
374
375 QValidator::State StrftimeValidator::validate(QString & input, int & /*pos*/) const
376 {
377         if (is_valid_strftime(fromqstr(input)))
378                 return QValidator::Acceptable;
379         else
380                 return QValidator::Intermediate;
381 }
382
383
384 /////////////////////////////////////////////////////////////////////
385 //
386 // PrefDate
387 //
388 /////////////////////////////////////////////////////////////////////
389
390 PrefDate::PrefDate(GuiPreferences * form)
391         : PrefModule(qt_(catOutput), qt_("Date format"), form)
392 {
393         setupUi(this);
394         DateED->setValidator(new StrftimeValidator(DateED));
395         connect(DateED, SIGNAL(textChanged(QString)),
396                 this, SIGNAL(changed()));
397 }
398
399
400 void PrefDate::on_DateED_textChanged(const QString &)
401 {
402         QString t = DateED->text();
403         int p = 0;
404         bool valid = DateED->validator()->validate(t, p)
405                      == QValidator::Acceptable;
406         setValid(DateLA, valid);
407 }
408
409
410 void PrefDate::apply(LyXRC & rc) const
411 {
412         rc.date_insert_format = fromqstr(DateED->text());
413 }
414
415
416 void PrefDate::update(LyXRC const & rc)
417 {
418         DateED->setText(toqstr(rc.date_insert_format));
419 }
420
421
422 /////////////////////////////////////////////////////////////////////
423 //
424 // PrefInput
425 //
426 /////////////////////////////////////////////////////////////////////
427
428 PrefInput::PrefInput(GuiPreferences * form)
429         : PrefModule(qt_(catEditing), qt_("Keyboard/Mouse"), form)
430 {
431         setupUi(this);
432
433         connect(keymapCB, SIGNAL(clicked()),
434                 this, SIGNAL(changed()));
435         connect(firstKeymapED, SIGNAL(textChanged(QString)),
436                 this, SIGNAL(changed()));
437         connect(secondKeymapED, SIGNAL(textChanged(QString)),
438                 this, SIGNAL(changed()));
439         connect(mouseWheelSpeedSB, SIGNAL(valueChanged(double)),
440                 this, SIGNAL(changed()));
441 }
442
443
444 void PrefInput::apply(LyXRC & rc) const
445 {
446         // FIXME: can derive CB from the two EDs
447         rc.use_kbmap = keymapCB->isChecked();
448         rc.primary_kbmap = internal_path(fromqstr(firstKeymapED->text()));
449         rc.secondary_kbmap = internal_path(fromqstr(secondKeymapED->text()));
450         rc.mouse_wheel_speed = mouseWheelSpeedSB->value();
451 }
452
453
454 void PrefInput::update(LyXRC const & rc)
455 {
456         // FIXME: can derive CB from the two EDs
457         keymapCB->setChecked(rc.use_kbmap);
458         firstKeymapED->setText(toqstr(external_path(rc.primary_kbmap)));
459         secondKeymapED->setText(toqstr(external_path(rc.secondary_kbmap)));
460         mouseWheelSpeedSB->setValue(rc.mouse_wheel_speed);
461 }
462
463
464 QString PrefInput::testKeymap(QString const & keymap)
465 {
466         return form_->browsekbmap(internalPath(keymap));
467 }
468
469
470 void PrefInput::on_firstKeymapPB_clicked(bool)
471 {
472         QString const file = testKeymap(firstKeymapED->text());
473         if (!file.isEmpty())
474                 firstKeymapED->setText(file);
475 }
476
477
478 void PrefInput::on_secondKeymapPB_clicked(bool)
479 {
480         QString const file = testKeymap(secondKeymapED->text());
481         if (!file.isEmpty())
482                 secondKeymapED->setText(file);
483 }
484
485
486 void PrefInput::on_keymapCB_toggled(bool keymap)
487 {
488         firstKeymapLA->setEnabled(keymap);
489         secondKeymapLA->setEnabled(keymap);
490         firstKeymapED->setEnabled(keymap);
491         secondKeymapED->setEnabled(keymap);
492         firstKeymapPB->setEnabled(keymap);
493         secondKeymapPB->setEnabled(keymap);
494 }
495
496
497 /////////////////////////////////////////////////////////////////////
498 //
499 // PrefCompletion
500 //
501 /////////////////////////////////////////////////////////////////////
502
503 PrefCompletion::PrefCompletion(GuiPreferences * form)
504         : PrefModule(qt_(catEditing), qt_("Input Completion"), form)
505 {
506         setupUi(this);
507
508         connect(inlineDelaySB, SIGNAL(valueChanged(double)),
509                 this, SIGNAL(changed()));
510         connect(inlineMathCB, SIGNAL(clicked()),
511                 this, SIGNAL(changed()));
512         connect(inlineTextCB, SIGNAL(clicked()),
513                 this, SIGNAL(changed()));
514         connect(inlineDotsCB, SIGNAL(clicked()),
515                 this, SIGNAL(changed()));
516         connect(popupDelaySB, SIGNAL(valueChanged(double)),
517                 this, SIGNAL(changed()));
518         connect(popupMathCB, SIGNAL(clicked()),
519                 this, SIGNAL(changed()));
520         connect(autocorrectionCB, SIGNAL(clicked()),
521                 this, SIGNAL(changed()));
522         connect(popupTextCB, SIGNAL(clicked()),
523                 this, SIGNAL(changed()));
524         connect(popupAfterCompleteCB, SIGNAL(clicked()),
525                 this, SIGNAL(changed()));
526         connect(cursorTextCB, SIGNAL(clicked()),
527                 this, SIGNAL(changed()));
528 }
529
530
531 void PrefCompletion::on_inlineTextCB_clicked()
532 {
533         enableCB();
534 }
535
536
537 void PrefCompletion::on_popupTextCB_clicked()
538 {
539         enableCB();
540 }
541
542
543 void PrefCompletion::enableCB()
544 {
545         cursorTextCB->setEnabled(
546                 popupTextCB->isChecked() || inlineTextCB->isChecked());
547 }
548
549
550 void PrefCompletion::apply(LyXRC & rc) const
551 {
552         rc.completion_inline_delay = inlineDelaySB->value();
553         rc.completion_inline_math = inlineMathCB->isChecked();
554         rc.completion_inline_text = inlineTextCB->isChecked();
555         rc.completion_inline_dots = inlineDotsCB->isChecked() ? 13 : -1;
556         rc.completion_popup_delay = popupDelaySB->value();
557         rc.completion_popup_math = popupMathCB->isChecked();
558         rc.autocorrection_math = autocorrectionCB->isChecked();
559         rc.completion_popup_text = popupTextCB->isChecked();
560         rc.completion_cursor_text = cursorTextCB->isChecked();
561         rc.completion_popup_after_complete =
562                 popupAfterCompleteCB->isChecked();
563 }
564
565
566 void PrefCompletion::update(LyXRC const & rc)
567 {
568         inlineDelaySB->setValue(rc.completion_inline_delay);
569         inlineMathCB->setChecked(rc.completion_inline_math);
570         inlineTextCB->setChecked(rc.completion_inline_text);
571         inlineDotsCB->setChecked(rc.completion_inline_dots != -1);
572         popupDelaySB->setValue(rc.completion_popup_delay);
573         popupMathCB->setChecked(rc.completion_popup_math);
574         autocorrectionCB->setChecked(rc.autocorrection_math);
575         popupTextCB->setChecked(rc.completion_popup_text);
576         cursorTextCB->setChecked(rc.completion_cursor_text);
577         popupAfterCompleteCB->setChecked(rc.completion_popup_after_complete);
578         enableCB();
579 }
580
581
582
583 /////////////////////////////////////////////////////////////////////
584 //
585 // PrefLatex
586 //
587 /////////////////////////////////////////////////////////////////////
588
589 PrefLatex::PrefLatex(GuiPreferences * form)
590         : PrefModule(qt_(catOutput), qt_("LaTeX"), form)
591 {
592         setupUi(this);
593         connect(latexEncodingED, SIGNAL(textChanged(QString)),
594                 this, SIGNAL(changed()));
595         connect(latexChecktexED, SIGNAL(textChanged(QString)),
596                 this, SIGNAL(changed()));
597         connect(latexBibtexCO, SIGNAL(activated(int)),
598                 this, SIGNAL(changed()));
599         connect(latexBibtexED, SIGNAL(textChanged(QString)),
600                 this, SIGNAL(changed()));
601         connect(latexJBibtexED, SIGNAL(textChanged(QString)),
602                 this, SIGNAL(changed()));
603         connect(latexIndexCO, SIGNAL(activated(int)),
604                 this, SIGNAL(changed()));
605         connect(latexIndexED, SIGNAL(textChanged(QString)),
606                 this, SIGNAL(changed()));
607         connect(latexJIndexED, SIGNAL(textChanged(QString)),
608                 this, SIGNAL(changed()));
609         connect(latexAutoresetCB, SIGNAL(clicked()),
610                 this, SIGNAL(changed()));
611         connect(latexDviPaperED, SIGNAL(textChanged(QString)),
612                 this, SIGNAL(changed()));
613         connect(latexPaperSizeCO, SIGNAL(activated(int)),
614                 this, SIGNAL(changed()));
615
616 #if defined(__CYGWIN__) || defined(_WIN32)
617         pathCB->setVisible(true);
618         connect(pathCB, SIGNAL(clicked()),
619                 this, SIGNAL(changed()));
620 #else
621         pathCB->setVisible(false);
622 #endif
623 }
624
625
626 void PrefLatex::on_latexBibtexCO_activated(int n)
627 {
628         QString const bibtex = latexBibtexCO->itemData(n).toString();
629         if (bibtex.isEmpty()) {
630                 latexBibtexED->clear();
631                 latexBibtexOptionsLA->setText(qt_("Co&mmand:"));
632                 return;
633         }
634         for (set<string>::const_iterator it = bibtex_alternatives.begin();
635              it != bibtex_alternatives.end(); ++it) {
636                 QString const bib = toqstr(*it);
637                 int ind = bib.indexOf(" ");
638                 QString sel_command = bib.left(ind);
639                 QString sel_options = ind < 0 ? QString() : bib.mid(ind + 1);
640                 if (bibtex == sel_command) {
641                         if (ind < 0)
642                                 latexBibtexED->clear();
643                         else
644                                 latexBibtexED->setText(sel_options.trimmed());
645                 }
646         }
647         latexBibtexOptionsLA->setText(qt_("&Options:"));
648 }
649
650
651 void PrefLatex::on_latexIndexCO_activated(int n)
652 {
653         QString const index = latexIndexCO->itemData(n).toString();
654         if (index.isEmpty()) {
655                 latexIndexED->clear();
656                 latexIndexOptionsLA->setText(qt_("Co&mmand:"));
657                 return;
658         }
659         for (set<string>::const_iterator it = index_alternatives.begin();
660              it != index_alternatives.end(); ++it) {
661                 QString const idx = toqstr(*it);
662                 int ind = idx.indexOf(" ");
663                 QString sel_command = idx.left(ind);
664                 QString sel_options = ind < 0 ? QString() : idx.mid(ind + 1);
665                 if (index == sel_command) {
666                         if (ind < 0)
667                                 latexIndexED->clear();
668                         else
669                                 latexIndexED->setText(sel_options.trimmed());
670                 }
671         }
672         latexIndexOptionsLA->setText(qt_("Op&tions:"));
673 }
674
675
676 void PrefLatex::apply(LyXRC & rc) const
677 {
678         // If bibtex is not empty, bibopt contains the options, otherwise
679         // it is a customized bibtex command with options.
680         QString const bibtex = latexBibtexCO->itemData(
681                 latexBibtexCO->currentIndex()).toString();
682         QString const bibopt = latexBibtexED->text();
683         if (bibtex.isEmpty())
684                 rc.bibtex_command = fromqstr(bibopt);
685         else if (bibopt.isEmpty())
686                 rc.bibtex_command = fromqstr(bibtex);
687         else
688                 rc.bibtex_command = fromqstr(bibtex) + " " + fromqstr(bibopt);
689
690         // If index is not empty, idxopt contains the options, otherwise
691         // it is a customized index command with options.
692         QString const index = latexIndexCO->itemData(
693                 latexIndexCO->currentIndex()).toString();
694         QString const idxopt = latexIndexED->text();
695         if (index.isEmpty())
696                 rc.index_command = fromqstr(idxopt);
697         else if (idxopt.isEmpty())
698                 rc.index_command = fromqstr(index);
699         else
700                 rc.index_command = fromqstr(index) + " " + fromqstr(idxopt);
701
702         rc.fontenc = fromqstr(latexEncodingED->text());
703         rc.chktex_command = fromqstr(latexChecktexED->text());
704         rc.jbibtex_command = fromqstr(latexJBibtexED->text());
705         rc.jindex_command = fromqstr(latexJIndexED->text());
706         rc.nomencl_command = fromqstr(latexNomenclED->text());
707         rc.auto_reset_options = latexAutoresetCB->isChecked();
708         rc.view_dvi_paper_option = fromqstr(latexDviPaperED->text());
709         rc.default_papersize =
710                 form_->toPaperSize(latexPaperSizeCO->currentIndex());
711 #if defined(__CYGWIN__) || defined(_WIN32)
712         rc.windows_style_tex_paths = pathCB->isChecked();
713 #endif
714 }
715
716
717 void PrefLatex::update(LyXRC const & rc)
718 {
719         latexBibtexCO->clear();
720
721         latexBibtexCO->addItem(qt_("Custom"), QString());
722         for (set<string>::const_iterator it = rc.bibtex_alternatives.begin();
723                              it != rc.bibtex_alternatives.end(); ++it) {
724                 QString const command = toqstr(*it).left(toqstr(*it).indexOf(" "));
725                 latexBibtexCO->addItem(command, command);
726         }
727
728         bibtex_alternatives = rc.bibtex_alternatives;
729
730         QString const bib = toqstr(rc.bibtex_command);
731         int ind = bib.indexOf(" ");
732         QString sel_command = bib.left(ind);
733         QString sel_options = ind < 0 ? QString() : bib.mid(ind + 1);
734
735         int pos = latexBibtexCO->findData(sel_command);
736         if (pos != -1) {
737                 latexBibtexCO->setCurrentIndex(pos);
738                 latexBibtexED->setText(sel_options.trimmed());
739                 latexBibtexOptionsLA->setText(qt_("&Options:"));
740         } else {
741                 latexBibtexED->setText(toqstr(rc.bibtex_command));
742                 latexBibtexCO->setCurrentIndex(0);
743                 latexBibtexOptionsLA->setText(qt_("Co&mmand:"));
744         }
745
746         latexIndexCO->clear();
747
748         latexIndexCO->addItem(qt_("Custom"), QString());
749         for (set<string>::const_iterator it = rc.index_alternatives.begin();
750                              it != rc.index_alternatives.end(); ++it) {
751                 QString const command = toqstr(*it).left(toqstr(*it).indexOf(" "));
752                 latexIndexCO->addItem(command, command);
753         }
754
755         index_alternatives = rc.index_alternatives;
756
757         QString const idx = toqstr(rc.index_command);
758         ind = idx.indexOf(" ");
759         sel_command = idx.left(ind);
760         sel_options = ind < 0 ? QString() : idx.mid(ind + 1);
761
762         pos = latexIndexCO->findData(sel_command);
763         if (pos != -1) {
764                 latexIndexCO->setCurrentIndex(pos);
765                 latexIndexED->setText(sel_options.trimmed());
766                 latexIndexOptionsLA->setText(qt_("Op&tions:"));
767         } else {
768                 latexIndexED->setText(toqstr(rc.index_command));
769                 latexIndexCO->setCurrentIndex(0);
770                 latexIndexOptionsLA->setText(qt_("Co&mmand:"));
771         }
772
773         latexEncodingED->setText(toqstr(rc.fontenc));
774         latexChecktexED->setText(toqstr(rc.chktex_command));
775         latexJBibtexED->setText(toqstr(rc.jbibtex_command));
776         latexJIndexED->setText(toqstr(rc.jindex_command));
777         latexNomenclED->setText(toqstr(rc.nomencl_command));
778         latexAutoresetCB->setChecked(rc.auto_reset_options);
779         latexDviPaperED->setText(toqstr(rc.view_dvi_paper_option));
780         latexPaperSizeCO->setCurrentIndex(
781                 form_->fromPaperSize(rc.default_papersize));
782 #if defined(__CYGWIN__) || defined(_WIN32)
783         pathCB->setChecked(rc.windows_style_tex_paths);
784 #endif
785 }
786
787
788 /////////////////////////////////////////////////////////////////////
789 //
790 // PrefScreenFonts
791 //
792 /////////////////////////////////////////////////////////////////////
793
794 PrefScreenFonts::PrefScreenFonts(GuiPreferences * form)
795         : PrefModule(qt_(catLookAndFeel), qt_("Screen fonts"), form)
796 {
797         setupUi(this);
798
799         connect(screenRomanCO, SIGNAL(activated(QString)),
800                 this, SLOT(selectRoman(QString)));
801         connect(screenSansCO, SIGNAL(activated(QString)),
802                 this, SLOT(selectSans(QString)));
803         connect(screenTypewriterCO, SIGNAL(activated(QString)),
804                 this, SLOT(selectTypewriter(QString)));
805
806         QFontDatabase fontdb;
807         QStringList families(fontdb.families());
808         for (QStringList::Iterator it = families.begin(); it != families.end(); ++it) {
809                 screenRomanCO->addItem(*it);
810                 screenSansCO->addItem(*it);
811                 screenTypewriterCO->addItem(*it);
812         }
813         connect(screenRomanCO, SIGNAL(activated(QString)),
814                 this, SIGNAL(changed()));
815         connect(screenSansCO, SIGNAL(activated(QString)),
816                 this, SIGNAL(changed()));
817         connect(screenTypewriterCO, SIGNAL(activated(QString)),
818                 this, SIGNAL(changed()));
819         connect(screenZoomSB, SIGNAL(valueChanged(int)),
820                 this, SIGNAL(changed()));
821         connect(screenDpiSB, SIGNAL(valueChanged(int)),
822                 this, SIGNAL(changed()));
823         connect(screenTinyED, SIGNAL(textChanged(QString)),
824                 this, SIGNAL(changed()));
825         connect(screenSmallestED, SIGNAL(textChanged(QString)),
826                 this, SIGNAL(changed()));
827         connect(screenSmallerED, SIGNAL(textChanged(QString)),
828                 this, SIGNAL(changed()));
829         connect(screenSmallED, SIGNAL(textChanged(QString)),
830                 this, SIGNAL(changed()));
831         connect(screenNormalED, SIGNAL(textChanged(QString)),
832                 this, SIGNAL(changed()));
833         connect(screenLargeED, SIGNAL(textChanged(QString)),
834                 this, SIGNAL(changed()));
835         connect(screenLargerED, SIGNAL(textChanged(QString)),
836                 this, SIGNAL(changed()));
837         connect(screenLargestED, SIGNAL(textChanged(QString)),
838                 this, SIGNAL(changed()));
839         connect(screenHugeED, SIGNAL(textChanged(QString)),
840                 this, SIGNAL(changed()));
841         connect(screenHugerED, SIGNAL(textChanged(QString)),
842                 this, SIGNAL(changed()));
843         connect(pixmapCacheCB, SIGNAL(toggled(bool)),
844                 this, SIGNAL(changed()));
845
846         screenTinyED->setValidator(new QDoubleValidator(screenTinyED));
847         screenSmallestED->setValidator(new QDoubleValidator(screenSmallestED));
848         screenSmallerED->setValidator(new QDoubleValidator(screenSmallerED));
849         screenSmallED->setValidator(new QDoubleValidator(screenSmallED));
850         screenNormalED->setValidator(new QDoubleValidator(screenNormalED));
851         screenLargeED->setValidator(new QDoubleValidator(screenLargeED));
852         screenLargerED->setValidator(new QDoubleValidator(screenLargerED));
853         screenLargestED->setValidator(new QDoubleValidator(screenLargestED));
854         screenHugeED->setValidator(new QDoubleValidator(screenHugeED));
855         screenHugerED->setValidator(new QDoubleValidator(screenHugerED));
856 }
857
858
859 void PrefScreenFonts::apply(LyXRC & rc) const
860 {
861         LyXRC const oldrc = rc;
862
863         parseFontName(screenRomanCO->currentText(),
864                 rc.roman_font_name, rc.roman_font_foundry);
865         parseFontName(screenSansCO->currentText(),
866                 rc.sans_font_name, rc.sans_font_foundry);
867         parseFontName(screenTypewriterCO->currentText(),
868                 rc.typewriter_font_name, rc.typewriter_font_foundry);
869
870         rc.zoom = screenZoomSB->value();
871         rc.dpi = screenDpiSB->value();
872         rc.font_sizes[FONT_SIZE_TINY] = widgetToDoubleStr(screenTinyED);
873         rc.font_sizes[FONT_SIZE_SCRIPT] = widgetToDoubleStr(screenSmallestED);
874         rc.font_sizes[FONT_SIZE_FOOTNOTE] = widgetToDoubleStr(screenSmallerED);
875         rc.font_sizes[FONT_SIZE_SMALL] = widgetToDoubleStr(screenSmallED);
876         rc.font_sizes[FONT_SIZE_NORMAL] = widgetToDoubleStr(screenNormalED);
877         rc.font_sizes[FONT_SIZE_LARGE] = widgetToDoubleStr(screenLargeED);
878         rc.font_sizes[FONT_SIZE_LARGER] = widgetToDoubleStr(screenLargerED);
879         rc.font_sizes[FONT_SIZE_LARGEST] = widgetToDoubleStr(screenLargestED);
880         rc.font_sizes[FONT_SIZE_HUGE] = widgetToDoubleStr(screenHugeED);
881         rc.font_sizes[FONT_SIZE_HUGER] = widgetToDoubleStr(screenHugerED);
882         rc.use_pixmap_cache = pixmapCacheCB->isChecked();
883
884         if (rc.font_sizes != oldrc.font_sizes
885                 || rc.roman_font_name != oldrc.roman_font_name
886                 || rc.sans_font_name != oldrc.sans_font_name
887                 || rc.typewriter_font_name != oldrc.typewriter_font_name
888                 || rc.zoom != oldrc.zoom || rc.dpi != oldrc.dpi) {
889                 // The global QPixmapCache is used in GuiPainter to cache text
890                 // painting so we must reset it in case any of the above
891                 // parameter is changed.
892                 QPixmapCache::clear();
893                 guiApp->fontLoader().update();
894                 form_->updateScreenFonts();
895         }
896 }
897
898
899 void PrefScreenFonts::update(LyXRC const & rc)
900 {
901         setComboxFont(screenRomanCO, rc.roman_font_name,
902                         rc.roman_font_foundry);
903         setComboxFont(screenSansCO, rc.sans_font_name,
904                         rc.sans_font_foundry);
905         setComboxFont(screenTypewriterCO, rc.typewriter_font_name,
906                         rc.typewriter_font_foundry);
907
908         selectRoman(screenRomanCO->currentText());
909         selectSans(screenSansCO->currentText());
910         selectTypewriter(screenTypewriterCO->currentText());
911
912         screenZoomSB->setValue(rc.zoom);
913         screenDpiSB->setValue(rc.dpi);
914         doubleToWidget(screenTinyED, rc.font_sizes[FONT_SIZE_TINY]);
915         doubleToWidget(screenSmallestED, rc.font_sizes[FONT_SIZE_SCRIPT]);
916         doubleToWidget(screenSmallerED, rc.font_sizes[FONT_SIZE_FOOTNOTE]);
917         doubleToWidget(screenSmallED, rc.font_sizes[FONT_SIZE_SMALL]);
918         doubleToWidget(screenNormalED, rc.font_sizes[FONT_SIZE_NORMAL]);
919         doubleToWidget(screenLargeED, rc.font_sizes[FONT_SIZE_LARGE]);
920         doubleToWidget(screenLargerED, rc.font_sizes[FONT_SIZE_LARGER]);
921         doubleToWidget(screenLargestED, rc.font_sizes[FONT_SIZE_LARGEST]);
922         doubleToWidget(screenHugeED, rc.font_sizes[FONT_SIZE_HUGE]);
923         doubleToWidget(screenHugerED, rc.font_sizes[FONT_SIZE_HUGER]);
924
925         pixmapCacheCB->setChecked(rc.use_pixmap_cache);
926 #if defined(Q_WS_X11)
927         pixmapCacheCB->setEnabled(false);
928 #endif
929
930 }
931
932
933 void PrefScreenFonts::selectRoman(const QString & name)
934 {
935         screenRomanFE->set(QFont(name), name);
936 }
937
938
939 void PrefScreenFonts::selectSans(const QString & name)
940 {
941         screenSansFE->set(QFont(name), name);
942 }
943
944
945 void PrefScreenFonts::selectTypewriter(const QString & name)
946 {
947         screenTypewriterFE->set(QFont(name), name);
948 }
949
950
951 /////////////////////////////////////////////////////////////////////
952 //
953 // PrefColors
954 //
955 /////////////////////////////////////////////////////////////////////
956
957 namespace {
958
959 struct ColorSorter
960 {
961         bool operator()(ColorCode lhs, ColorCode rhs) const {
962                 return 
963                         compare_no_case(lcolor.getGUIName(lhs), lcolor.getGUIName(rhs)) < 0;
964         }
965 };
966
967 } // namespace anon
968
969 PrefColors::PrefColors(GuiPreferences * form)
970         : PrefModule(qt_(catLookAndFeel), qt_("Colors"), form)
971 {
972         setupUi(this);
973
974         // FIXME: all of this initialization should be put into the controller.
975         // See http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg113301.html
976         // for some discussion of why that is not trivial.
977         QPixmap icon(32, 32);
978         for (int i = 0; i < Color_ignore; ++i) {
979                 ColorCode lc = static_cast<ColorCode>(i);
980                 if (lc == Color_none
981                         || lc == Color_black
982                         || lc == Color_white
983                         || lc == Color_red
984                         || lc == Color_green
985                         || lc == Color_blue
986                         || lc == Color_cyan
987                         || lc == Color_magenta
988                         || lc == Color_yellow
989                         || lc == Color_inherit
990                         || lc == Color_ignore) continue;
991
992                 lcolors_.push_back(lc);
993         }
994         sort(lcolors_.begin(), lcolors_.end(), ColorSorter());
995         vector<ColorCode>::const_iterator cit = lcolors_.begin();
996         vector<ColorCode>::const_iterator const end = lcolors_.end();
997         for (; cit != end; ++cit) {
998                         (void) new QListWidgetItem(QIcon(icon),
999                         toqstr(lcolor.getGUIName(*cit)), lyxObjectsLW);
1000         }
1001         curcolors_.resize(lcolors_.size());
1002         newcolors_.resize(lcolors_.size());
1003         // End initialization
1004
1005         connect(colorChangePB, SIGNAL(clicked()),
1006                 this, SLOT(changeColor()));
1007         connect(lyxObjectsLW, SIGNAL(itemSelectionChanged()),
1008                 this, SLOT(changeLyxObjectsSelection()));
1009         connect(lyxObjectsLW, SIGNAL(itemActivated(QListWidgetItem*)),
1010                 this, SLOT(changeColor()));
1011 }
1012
1013
1014 void PrefColors::apply(LyXRC & /*rc*/) const
1015 {
1016         for (unsigned int i = 0; i < lcolors_.size(); ++i)
1017                 if (curcolors_[i] != newcolors_[i])
1018                         form_->setColor(lcolors_[i], newcolors_[i]);
1019 }
1020
1021
1022 void PrefColors::update(LyXRC const & /*rc*/)
1023 {
1024         for (unsigned int i = 0; i < lcolors_.size(); ++i) {
1025                 QColor color = QColor(guiApp->colorCache().get(lcolors_[i]));
1026                 QPixmap coloritem(32, 32);
1027                 coloritem.fill(color);
1028                 lyxObjectsLW->item(i)->setIcon(QIcon(coloritem));
1029                 newcolors_[i] = curcolors_[i] = color.name();
1030         }
1031         changeLyxObjectsSelection();
1032 }
1033
1034
1035 void PrefColors::changeColor()
1036 {
1037         int const row = lyxObjectsLW->currentRow();
1038
1039         // just to be sure
1040         if (row < 0)
1041                 return;
1042
1043         QString const color = newcolors_[row];
1044         QColor c = QColorDialog::getColor(QColor(color), qApp->focusWidget());
1045
1046         if (c.isValid() && c.name() != color) {
1047                 newcolors_[row] = c.name();
1048                 QPixmap coloritem(32, 32);
1049                 coloritem.fill(c);
1050                 lyxObjectsLW->currentItem()->setIcon(QIcon(coloritem));
1051                 // emit signal
1052                 changed();
1053         }
1054 }
1055
1056 void PrefColors::changeLyxObjectsSelection()
1057 {
1058         colorChangePB->setDisabled(lyxObjectsLW->currentRow() < 0);
1059 }
1060
1061
1062 /////////////////////////////////////////////////////////////////////
1063 //
1064 // PrefDisplay
1065 //
1066 /////////////////////////////////////////////////////////////////////
1067
1068 PrefDisplay::PrefDisplay(GuiPreferences * form)
1069         : PrefModule(qt_(catLookAndFeel), qt_("Display"), form)
1070 {
1071         setupUi(this);
1072         connect(displayGraphicsCB, SIGNAL(toggled(bool)), this, SIGNAL(changed()));
1073         connect(instantPreviewCO, SIGNAL(activated(int)), this, SIGNAL(changed()));
1074         connect(paragraphMarkerCB, SIGNAL(toggled(bool)), this, SIGNAL(changed())); 
1075 }
1076
1077
1078 void PrefDisplay::apply(LyXRC & rc) const
1079 {
1080         switch (instantPreviewCO->currentIndex()) {
1081                 case 0: rc.preview = LyXRC::PREVIEW_OFF; break;
1082                 case 1: rc.preview = LyXRC::PREVIEW_NO_MATH; break;
1083                 case 2: rc.preview = LyXRC::PREVIEW_ON; break;
1084         }
1085
1086         rc.display_graphics = displayGraphicsCB->isChecked();
1087         rc.paragraph_markers = paragraphMarkerCB->isChecked();
1088
1089         // FIXME!! The graphics cache no longer has a changeDisplay method.
1090 #if 0
1091         if (old_value != rc.display_graphics) {
1092                 graphics::GCache & gc = graphics::GCache::get();
1093                 gc.changeDisplay();
1094         }
1095 #endif
1096 }
1097
1098
1099 void PrefDisplay::update(LyXRC const & rc)
1100 {
1101         switch (rc.preview) {
1102         case LyXRC::PREVIEW_OFF:
1103                 instantPreviewCO->setCurrentIndex(0);
1104                 break;
1105         case LyXRC::PREVIEW_NO_MATH :
1106                 instantPreviewCO->setCurrentIndex(1);
1107                 break;
1108         case LyXRC::PREVIEW_ON :
1109                 instantPreviewCO->setCurrentIndex(2);
1110                 break;
1111         }
1112
1113         displayGraphicsCB->setChecked(rc.display_graphics);
1114         instantPreviewCO->setEnabled(rc.display_graphics);
1115         paragraphMarkerCB->setChecked(rc.paragraph_markers);
1116 }
1117
1118
1119 /////////////////////////////////////////////////////////////////////
1120 //
1121 // PrefPaths
1122 //
1123 /////////////////////////////////////////////////////////////////////
1124
1125 PrefPaths::PrefPaths(GuiPreferences * form)
1126         : PrefModule(QString(), qt_("Paths"), form)
1127 {
1128         setupUi(this);
1129         connect(exampleDirPB, SIGNAL(clicked()), this, SLOT(selectExampledir()));
1130         connect(templateDirPB, SIGNAL(clicked()), this, SLOT(selectTemplatedir()));
1131         connect(tempDirPB, SIGNAL(clicked()), this, SLOT(selectTempdir()));
1132         connect(backupDirPB, SIGNAL(clicked()), this, SLOT(selectBackupdir()));
1133         connect(workingDirPB, SIGNAL(clicked()), this, SLOT(selectWorkingdir()));
1134         connect(lyxserverDirPB, SIGNAL(clicked()), this, SLOT(selectLyxPipe()));
1135         connect(thesaurusDirPB, SIGNAL(clicked()), this, SLOT(selectThesaurusdir()));
1136         connect(hunspellDirPB, SIGNAL(clicked()), this, SLOT(selectHunspelldir()));
1137         connect(workingDirED, SIGNAL(textChanged(QString)),
1138                 this, SIGNAL(changed()));
1139         connect(exampleDirED, SIGNAL(textChanged(QString)),
1140                 this, SIGNAL(changed()));
1141         connect(templateDirED, SIGNAL(textChanged(QString)),
1142                 this, SIGNAL(changed()));
1143         connect(backupDirED, SIGNAL(textChanged(QString)),
1144                 this, SIGNAL(changed()));
1145         connect(tempDirED, SIGNAL(textChanged(QString)),
1146                 this, SIGNAL(changed()));
1147         connect(lyxserverDirED, SIGNAL(textChanged(QString)),
1148                 this, SIGNAL(changed()));
1149         connect(thesaurusDirED, SIGNAL(textChanged(QString)),
1150                 this, SIGNAL(changed()));
1151         connect(pathPrefixED, SIGNAL(textChanged(QString)),
1152                 this, SIGNAL(changed()));
1153 }
1154
1155
1156 void PrefPaths::apply(LyXRC & rc) const
1157 {
1158         rc.document_path = internal_path(fromqstr(workingDirED->text()));
1159         rc.example_path = internal_path(fromqstr(exampleDirED->text()));
1160         rc.template_path = internal_path(fromqstr(templateDirED->text()));
1161         rc.backupdir_path = internal_path(fromqstr(backupDirED->text()));
1162         rc.tempdir_path = internal_path(fromqstr(tempDirED->text()));
1163         rc.thesaurusdir_path = internal_path(fromqstr(thesaurusDirED->text()));
1164         rc.hunspelldir_path = internal_path(fromqstr(hunspellDirED->text()));
1165         rc.path_prefix = internal_path_list(fromqstr(pathPrefixED->text()));
1166         // FIXME: should be a checkbox only
1167         rc.lyxpipes = internal_path(fromqstr(lyxserverDirED->text()));
1168 }
1169
1170
1171 void PrefPaths::update(LyXRC const & rc)
1172 {
1173         workingDirED->setText(toqstr(external_path(rc.document_path)));
1174         exampleDirED->setText(toqstr(external_path(rc.example_path)));
1175         templateDirED->setText(toqstr(external_path(rc.template_path)));
1176         backupDirED->setText(toqstr(external_path(rc.backupdir_path)));
1177         tempDirED->setText(toqstr(external_path(rc.tempdir_path)));
1178         thesaurusDirED->setText(toqstr(external_path(rc.thesaurusdir_path)));
1179         hunspellDirED->setText(toqstr(external_path(rc.hunspelldir_path)));
1180         pathPrefixED->setText(toqstr(external_path_list(rc.path_prefix)));
1181         // FIXME: should be a checkbox only
1182         lyxserverDirED->setText(toqstr(external_path(rc.lyxpipes)));
1183 }
1184
1185
1186 void PrefPaths::selectExampledir()
1187 {
1188         QString file = browseDir(internalPath(exampleDirED->text()),
1189                 qt_("Select directory for example files"));
1190         if (!file.isEmpty())
1191                 exampleDirED->setText(file);
1192 }
1193
1194
1195 void PrefPaths::selectTemplatedir()
1196 {
1197         QString file = browseDir(internalPath(templateDirED->text()),
1198                 qt_("Select a document templates directory"));
1199         if (!file.isEmpty())
1200                 templateDirED->setText(file);
1201 }
1202
1203
1204 void PrefPaths::selectTempdir()
1205 {
1206         QString file = browseDir(internalPath(tempDirED->text()),
1207                 qt_("Select a temporary directory"));
1208         if (!file.isEmpty())
1209                 tempDirED->setText(file);
1210 }
1211
1212
1213 void PrefPaths::selectBackupdir()
1214 {
1215         QString file = browseDir(internalPath(backupDirED->text()),
1216                 qt_("Select a backups directory"));
1217         if (!file.isEmpty())
1218                 backupDirED->setText(file);
1219 }
1220
1221
1222 void PrefPaths::selectWorkingdir()
1223 {
1224         QString file = browseDir(internalPath(workingDirED->text()),
1225                 qt_("Select a document directory"));
1226         if (!file.isEmpty())
1227                 workingDirED->setText(file);
1228 }
1229
1230
1231 void PrefPaths::selectThesaurusdir()
1232 {
1233         QString file = browseDir(internalPath(thesaurusDirED->text()),
1234                 qt_("Set the path to the thesaurus dictionaries"));
1235         if (!file.isEmpty())
1236                 thesaurusDirED->setText(file);
1237 }
1238
1239
1240 void PrefPaths::selectHunspelldir()
1241 {
1242         QString file = browseDir(internalPath(hunspellDirED->text()),
1243                 qt_("Set the path to the Hunspell dictionaries"));
1244         if (!file.isEmpty())
1245                 hunspellDirED->setText(file);
1246 }
1247
1248
1249 void PrefPaths::selectLyxPipe()
1250 {
1251         QString file = form_->browse(internalPath(lyxserverDirED->text()),
1252                 qt_("Give a filename for the LyX server pipe"));
1253         if (!file.isEmpty())
1254                 lyxserverDirED->setText(file);
1255 }
1256
1257
1258 /////////////////////////////////////////////////////////////////////
1259 //
1260 // PrefSpellchecker
1261 //
1262 /////////////////////////////////////////////////////////////////////
1263
1264 PrefSpellchecker::PrefSpellchecker(GuiPreferences * form)
1265         : PrefModule(qt_(catLanguage), qt_("Spellchecker"), form)
1266 {
1267         setupUi(this);
1268
1269         spellcheckerCB->addItem("aspell");
1270         spellcheckerCB->addItem("hunspell");
1271
1272         connect(spellcheckerCB, SIGNAL(currentIndexChanged(int)),
1273                 this, SIGNAL(changed()));
1274         connect(altLanguageED, SIGNAL(textChanged(QString)),
1275                 this, SIGNAL(changed()));
1276         connect(escapeCharactersED, SIGNAL(textChanged(QString)),
1277                 this, SIGNAL(changed()));
1278         connect(compoundWordCB, SIGNAL(clicked()),
1279                 this, SIGNAL(changed()));
1280         connect(spellcheckContinuouslyCB, SIGNAL(clicked()),
1281                 this, SIGNAL(changed()));
1282 }
1283
1284
1285 void PrefSpellchecker::apply(LyXRC & rc) const
1286 {
1287         rc.spellchecker = fromqstr(spellcheckerCB->currentText());
1288         rc.spellchecker_alt_lang = fromqstr(altLanguageED->text());
1289         rc.spellchecker_esc_chars = fromqstr(escapeCharactersED->text());
1290         rc.spellchecker_accept_compound = compoundWordCB->isChecked();
1291         rc.spellcheck_continuously = spellcheckContinuouslyCB->isChecked();
1292 }
1293
1294
1295 void PrefSpellchecker::update(LyXRC const & rc)
1296 {
1297         spellcheckerCB->setCurrentIndex(spellcheckerCB->findText(
1298                 toqstr(rc.spellchecker)));
1299         altLanguageED->setText(toqstr(rc.spellchecker_alt_lang));
1300         escapeCharactersED->setText(toqstr(rc.spellchecker_esc_chars));
1301         compoundWordCB->setChecked(rc.spellchecker_accept_compound);
1302         spellcheckContinuouslyCB->setChecked(rc.spellcheck_continuously);
1303 }
1304
1305
1306
1307 /////////////////////////////////////////////////////////////////////
1308 //
1309 // PrefConverters
1310 //
1311 /////////////////////////////////////////////////////////////////////
1312
1313
1314 PrefConverters::PrefConverters(GuiPreferences * form)
1315         : PrefModule(qt_(catFiles), qt_("Converters"), form)
1316 {
1317         setupUi(this);
1318
1319         connect(converterNewPB, SIGNAL(clicked()),
1320                 this, SLOT(updateConverter()));
1321         connect(converterRemovePB, SIGNAL(clicked()),
1322                 this, SLOT(removeConverter()));
1323         connect(converterModifyPB, SIGNAL(clicked()),
1324                 this, SLOT(updateConverter()));
1325         connect(convertersLW, SIGNAL(currentRowChanged(int)),
1326                 this, SLOT(switchConverter()));
1327         connect(converterFromCO, SIGNAL(activated(QString)),
1328                 this, SLOT(changeConverter()));
1329         connect(converterToCO, SIGNAL(activated(QString)),
1330                 this, SLOT(changeConverter()));
1331         connect(converterED, SIGNAL(textEdited(QString)),
1332                 this, SLOT(changeConverter()));
1333         connect(converterFlagED, SIGNAL(textEdited(QString)),
1334                 this, SLOT(changeConverter()));
1335         connect(converterNewPB, SIGNAL(clicked()),
1336                 this, SIGNAL(changed()));
1337         connect(converterRemovePB, SIGNAL(clicked()),
1338                 this, SIGNAL(changed()));
1339         connect(converterModifyPB, SIGNAL(clicked()),
1340                 this, SIGNAL(changed()));
1341         connect(maxAgeLE, SIGNAL(textEdited(QString)),
1342                 this, SIGNAL(changed()));
1343
1344         maxAgeLE->setValidator(new QDoubleValidator(maxAgeLE));
1345         //converterDefGB->setFocusProxy(convertersLW);
1346 }
1347
1348
1349 void PrefConverters::apply(LyXRC & rc) const
1350 {
1351         rc.use_converter_cache = cacheCB->isChecked();
1352         rc.converter_cache_maxage = int(widgetToDouble(maxAgeLE) * 86400.0);
1353 }
1354
1355
1356 void PrefConverters::update(LyXRC const & rc)
1357 {
1358         cacheCB->setChecked(rc.use_converter_cache);
1359         QString max_age;
1360         doubleToWidget(maxAgeLE, (double(rc.converter_cache_maxage) / 86400.0), 'g', 6);
1361         updateGui();
1362 }
1363
1364
1365 void PrefConverters::updateGui()
1366 {
1367         form_->formats().sort();
1368         form_->converters().update(form_->formats());
1369         // save current selection
1370         QString current = converterFromCO->currentText()
1371                 + " -> " + converterToCO->currentText();
1372
1373         converterFromCO->clear();
1374         converterToCO->clear();
1375
1376         Formats::const_iterator cit = form_->formats().begin();
1377         Formats::const_iterator end = form_->formats().end();
1378         for (; cit != end; ++cit) {
1379                 converterFromCO->addItem(qt_(cit->prettyname()));
1380                 converterToCO->addItem(qt_(cit->prettyname()));
1381         }
1382
1383         // currentRowChanged(int) is also triggered when updating the listwidget
1384         // block signals to avoid unnecessary calls to switchConverter()
1385         convertersLW->blockSignals(true);
1386         convertersLW->clear();
1387
1388         Converters::const_iterator ccit = form_->converters().begin();
1389         Converters::const_iterator cend = form_->converters().end();
1390         for (; ccit != cend; ++ccit) {
1391                 QString const name =
1392                         qt_(ccit->From->prettyname()) + " -> " + qt_(ccit->To->prettyname());
1393                 int type = form_->converters().getNumber(ccit->From->name(), ccit->To->name());
1394                 new QListWidgetItem(name, convertersLW, type);
1395         }
1396         convertersLW->sortItems(Qt::AscendingOrder);
1397         convertersLW->blockSignals(false);
1398
1399         // restore selection
1400         if (!current.isEmpty()) {
1401                 QList<QListWidgetItem *> const item =
1402                         convertersLW->findItems(current, Qt::MatchExactly);
1403                 if (!item.isEmpty())
1404                         convertersLW->setCurrentItem(item.at(0));
1405         }
1406
1407         // select first element if restoring failed
1408         if (convertersLW->currentRow() == -1)
1409                 convertersLW->setCurrentRow(0);
1410
1411         updateButtons();
1412 }
1413
1414
1415 void PrefConverters::switchConverter()
1416 {
1417         int const cnr = convertersLW->currentItem()->type();
1418         Converter const & c(form_->converters().get(cnr));
1419         converterFromCO->setCurrentIndex(form_->formats().getNumber(c.from));
1420         converterToCO->setCurrentIndex(form_->formats().getNumber(c.to));
1421         converterED->setText(toqstr(c.command));
1422         converterFlagED->setText(toqstr(c.flags));
1423
1424         updateButtons();
1425 }
1426
1427
1428 void PrefConverters::changeConverter()
1429 {
1430         updateButtons();
1431 }
1432
1433
1434 void PrefConverters::updateButtons()
1435 {
1436         Format const & from = form_->formats().get(converterFromCO->currentIndex());
1437         Format const & to = form_->formats().get(converterToCO->currentIndex());
1438         int const sel = form_->converters().getNumber(from.name(), to.name());
1439         bool const known = sel >= 0;
1440         bool const valid = !(converterED->text().isEmpty()
1441                 || from.name() == to.name());
1442
1443         int const cnr = convertersLW->currentItem()->type();
1444         Converter const & c = form_->converters().get(cnr);
1445         string const old_command = c.command;
1446         string const old_flag = c.flags;
1447         string const new_command = fromqstr(converterED->text());
1448         string const new_flag = fromqstr(converterFlagED->text());
1449
1450         bool modified = (old_command != new_command || old_flag != new_flag);
1451
1452         converterModifyPB->setEnabled(valid && known && modified);
1453         converterNewPB->setEnabled(valid && !known);
1454         converterRemovePB->setEnabled(known);
1455
1456         maxAgeLE->setEnabled(cacheCB->isChecked());
1457         maxAgeLA->setEnabled(cacheCB->isChecked());
1458 }
1459
1460
1461 // FIXME: user must
1462 // specify unique from/to or it doesn't appear. This is really bad UI
1463 // this is why we can use the same function for both new and modify
1464 void PrefConverters::updateConverter()
1465 {
1466         Format const & from = form_->formats().get(converterFromCO->currentIndex());
1467         Format const & to = form_->formats().get(converterToCO->currentIndex());
1468         string const flags = fromqstr(converterFlagED->text());
1469         string const command = fromqstr(converterED->text());
1470
1471         Converter const * old =
1472                 form_->converters().getConverter(from.name(), to.name());
1473         form_->converters().add(from.name(), to.name(), command, flags);
1474
1475         if (!old)
1476                 form_->converters().updateLast(form_->formats());
1477
1478         updateGui();
1479
1480         // Remove all files created by this converter from the cache, since
1481         // the modified converter might create different files.
1482         ConverterCache::get().remove_all(from.name(), to.name());
1483 }
1484
1485
1486 void PrefConverters::removeConverter()
1487 {
1488         Format const & from = form_->formats().get(converterFromCO->currentIndex());
1489         Format const & to = form_->formats().get(converterToCO->currentIndex());
1490         form_->converters().erase(from.name(), to.name());
1491
1492         updateGui();
1493
1494         // Remove all files created by this converter from the cache, since
1495         // a possible new converter might create different files.
1496         ConverterCache::get().remove_all(from.name(), to.name());
1497 }
1498
1499
1500 void PrefConverters::on_cacheCB_stateChanged(int state)
1501 {
1502         maxAgeLE->setEnabled(state == Qt::Checked);
1503         maxAgeLA->setEnabled(state == Qt::Checked);
1504         changed();
1505 }
1506
1507
1508 /////////////////////////////////////////////////////////////////////
1509 //
1510 // FormatValidator
1511 //
1512 /////////////////////////////////////////////////////////////////////
1513
1514 class FormatValidator : public QValidator
1515 {
1516 public:
1517         FormatValidator(QWidget *, Formats const & f);
1518         void fixup(QString & input) const;
1519         QValidator::State validate(QString & input, int & pos) const;
1520 private:
1521         virtual QString toString(Format const & format) const = 0;
1522         int nr() const;
1523         Formats const & formats_;
1524 };
1525
1526
1527 FormatValidator::FormatValidator(QWidget * parent, Formats const & f)
1528         : QValidator(parent), formats_(f)
1529 {
1530 }
1531
1532
1533 void FormatValidator::fixup(QString & input) const
1534 {
1535         Formats::const_iterator cit = formats_.begin();
1536         Formats::const_iterator end = formats_.end();
1537         for (; cit != end; ++cit) {
1538                 QString const name = toString(*cit);
1539                 if (distance(formats_.begin(), cit) == nr()) {
1540                         input = name;
1541                         return;
1542                 }
1543         }
1544 }
1545
1546
1547 QValidator::State FormatValidator::validate(QString & input, int & /*pos*/) const
1548 {
1549         Formats::const_iterator cit = formats_.begin();
1550         Formats::const_iterator end = formats_.end();
1551         bool unknown = true;
1552         for (; unknown && cit != end; ++cit) {
1553                 QString const name = toString(*cit);
1554                 if (distance(formats_.begin(), cit) != nr())
1555                         unknown = name != input;
1556         }
1557
1558         if (unknown && !input.isEmpty())
1559                 return QValidator::Acceptable;
1560         else
1561                 return QValidator::Intermediate;
1562 }
1563
1564
1565 int FormatValidator::nr() const
1566 {
1567         QComboBox * p = qobject_cast<QComboBox *>(parent());
1568         return p->itemData(p->currentIndex()).toInt();
1569 }
1570
1571
1572 /////////////////////////////////////////////////////////////////////
1573 //
1574 // FormatNameValidator
1575 //
1576 /////////////////////////////////////////////////////////////////////
1577
1578 class FormatNameValidator : public FormatValidator
1579 {
1580 public:
1581         FormatNameValidator(QWidget * parent, Formats const & f)
1582                 : FormatValidator(parent, f)
1583         {}
1584 private:
1585         QString toString(Format const & format) const
1586         {
1587                 return toqstr(format.name());
1588         }
1589 };
1590
1591
1592 /////////////////////////////////////////////////////////////////////
1593 //
1594 // FormatPrettynameValidator
1595 //
1596 /////////////////////////////////////////////////////////////////////
1597
1598 class FormatPrettynameValidator : public FormatValidator
1599 {
1600 public:
1601         FormatPrettynameValidator(QWidget * parent, Formats const & f)
1602                 : FormatValidator(parent, f)
1603         {}
1604 private:
1605         QString toString(Format const & format) const
1606         {
1607                 return qt_(format.prettyname());
1608         }
1609 };
1610
1611
1612 /////////////////////////////////////////////////////////////////////
1613 //
1614 // PrefFileformats
1615 //
1616 /////////////////////////////////////////////////////////////////////
1617
1618 PrefFileformats::PrefFileformats(GuiPreferences * form)
1619         : PrefModule(qt_(catFiles), qt_("File formats"), form)
1620 {
1621         setupUi(this);
1622         formatED->setValidator(new FormatNameValidator(formatsCB, form_->formats()));
1623         formatsCB->setValidator(new FormatPrettynameValidator(formatsCB, form_->formats()));
1624
1625         connect(documentCB, SIGNAL(clicked()),
1626                 this, SLOT(setFlags()));
1627         connect(vectorCB, SIGNAL(clicked()),
1628                 this, SLOT(setFlags()));
1629         connect(formatsCB->lineEdit(), SIGNAL(editingFinished()),
1630                 this, SLOT(updatePrettyname()));
1631         connect(formatsCB->lineEdit(), SIGNAL(textEdited(QString)),
1632                 this, SIGNAL(changed()));
1633         connect(defaultFormatCB, SIGNAL(activated(QString)),
1634                 this, SIGNAL(changed()));
1635 }
1636
1637
1638 namespace {
1639
1640 string const l10n_shortcut(string const prettyname, string const shortcut)
1641 {
1642         if (shortcut.empty())
1643                 return string();
1644
1645         string l10n_format =
1646                 to_utf8(_(prettyname + '|' + shortcut));
1647         return split(l10n_format, '|');
1648 }
1649
1650 }; // namespace anon
1651
1652
1653 void PrefFileformats::apply(LyXRC & rc) const
1654 {
1655         QString const default_format = defaultFormatCB->itemData(
1656                 defaultFormatCB->currentIndex()).toString();
1657         rc.default_view_format = fromqstr(default_format);
1658 }
1659
1660
1661 void PrefFileformats::update(LyXRC const & rc)
1662 {
1663         bool const init = defaultFormatCB->currentText().isEmpty();
1664         updateView();
1665         if (init) {
1666                 int const pos = defaultFormatCB->findData(toqstr(
1667                 rc.default_view_format));
1668                 defaultFormatCB->setCurrentIndex(pos);
1669         }
1670 }
1671
1672
1673 void PrefFileformats::updateView()
1674 {
1675         QString const current = formatsCB->currentText();
1676         QString const current_def = defaultFormatCB->currentText();
1677
1678         // update comboboxes with formats
1679         formatsCB->blockSignals(true);
1680         defaultFormatCB->blockSignals(true);
1681         formatsCB->clear();
1682         defaultFormatCB->clear();
1683         form_->formats().sort();
1684         Formats::const_iterator cit = form_->formats().begin();
1685         Formats::const_iterator end = form_->formats().end();
1686         for (; cit != end; ++cit) {
1687                 formatsCB->addItem(qt_(cit->prettyname()),
1688                                 QVariant(form_->formats().getNumber(cit->name())));
1689                 if (form_->converters().isReachable("latex", cit->name())
1690                     || form_->converters().isReachable("pdflatex", cit->name()))
1691                         defaultFormatCB->addItem(qt_(cit->prettyname()),
1692                                         QVariant(toqstr(cit->name())));
1693         }
1694
1695         // restore selection
1696         int item = formatsCB->findText(current, Qt::MatchExactly);
1697         formatsCB->setCurrentIndex(item < 0 ? 0 : item);
1698         on_formatsCB_currentIndexChanged(item < 0 ? 0 : item);
1699         item = defaultFormatCB->findText(current_def, Qt::MatchExactly);
1700         defaultFormatCB->setCurrentIndex(item < 0 ? 0 : item);
1701         formatsCB->blockSignals(false);
1702         defaultFormatCB->blockSignals(false);
1703 }
1704
1705
1706 void PrefFileformats::on_formatsCB_currentIndexChanged(int i)
1707 {
1708         int const nr = formatsCB->itemData(i).toInt();
1709         Format const f = form_->formats().get(nr);
1710
1711         formatED->setText(toqstr(f.name()));
1712         copierED->setText(toqstr(form_->movers().command(f.name())));
1713         extensionED->setText(toqstr(f.extension()));
1714         shortcutED->setText(
1715                 toqstr(l10n_shortcut(f.prettyname(), f.shortcut())));
1716         viewerED->setText(toqstr(f.viewer()));
1717         editorED->setText(toqstr(f.editor()));
1718         documentCB->setChecked((f.documentFormat()));
1719         vectorCB->setChecked((f.vectorFormat()));
1720 }
1721
1722
1723 void PrefFileformats::setFlags()
1724 {
1725         int flags = Format::none;
1726         if (documentCB->isChecked())
1727                 flags |= Format::document;
1728         if (vectorCB->isChecked())
1729                 flags |= Format::vector;
1730         currentFormat().setFlags(flags);
1731         changed();
1732 }
1733
1734
1735 void PrefFileformats::on_copierED_textEdited(const QString & s)
1736 {
1737         string const fmt = fromqstr(formatED->text());
1738         form_->movers().set(fmt, fromqstr(s));
1739         changed();
1740 }
1741
1742
1743 void PrefFileformats::on_extensionED_textEdited(const QString & s)
1744 {
1745         currentFormat().setExtension(fromqstr(s));
1746         changed();
1747 }
1748
1749 void PrefFileformats::on_viewerED_textEdited(const QString & s)
1750 {
1751         currentFormat().setViewer(fromqstr(s));
1752         changed();
1753 }
1754
1755
1756 void PrefFileformats::on_editorED_textEdited(const QString & s)
1757 {
1758         currentFormat().setEditor(fromqstr(s));
1759         changed();
1760 }
1761
1762
1763 void PrefFileformats::on_shortcutED_textEdited(const QString & s)
1764 {
1765         string const new_shortcut = fromqstr(s);
1766         if (new_shortcut == l10n_shortcut(currentFormat().prettyname(),
1767                                           currentFormat().shortcut()))
1768                 return;
1769         currentFormat().setShortcut(new_shortcut);
1770         changed();
1771 }
1772
1773
1774 void PrefFileformats::on_formatED_editingFinished()
1775 {
1776         string const newname = fromqstr(formatED->displayText());
1777         if (newname == currentFormat().name())
1778                 return;
1779
1780         currentFormat().setName(newname);
1781         changed();
1782 }
1783
1784
1785 void PrefFileformats::on_formatED_textChanged(const QString &)
1786 {
1787         QString t = formatED->text();
1788         int p = 0;
1789         bool valid = formatED->validator()->validate(t, p) == QValidator::Acceptable;
1790         setValid(formatLA, valid);
1791 }
1792
1793
1794 void PrefFileformats::on_formatsCB_editTextChanged(const QString &)
1795 {
1796         QString t = formatsCB->currentText();
1797         int p = 0;
1798         bool valid = formatsCB->validator()->validate(t, p) == QValidator::Acceptable;
1799         setValid(formatsLA, valid);
1800 }
1801
1802
1803 void PrefFileformats::updatePrettyname()
1804 {
1805         QString const newname = formatsCB->currentText();
1806         if (newname == qt_(currentFormat().prettyname()))
1807                 return;
1808
1809         currentFormat().setPrettyname(fromqstr(newname));
1810         formatsChanged();
1811         updateView();
1812         changed();
1813 }
1814
1815
1816 Format & PrefFileformats::currentFormat()
1817 {
1818         int const i = formatsCB->currentIndex();
1819         int const nr = formatsCB->itemData(i).toInt();
1820         return form_->formats().get(nr);
1821 }
1822
1823
1824 void PrefFileformats::on_formatNewPB_clicked()
1825 {
1826         form_->formats().add("", "", "", "", "", "", Format::none);
1827         updateView();
1828         formatsCB->setCurrentIndex(0);
1829         formatsCB->setFocus(Qt::OtherFocusReason);
1830 }
1831
1832
1833 void PrefFileformats::on_formatRemovePB_clicked()
1834 {
1835         int const i = formatsCB->currentIndex();
1836         int const nr = formatsCB->itemData(i).toInt();
1837         string const current_text = form_->formats().get(nr).name();
1838         if (form_->converters().formatIsUsed(current_text)) {
1839                 Alert::error(_("Format in use"),
1840                              _("Cannot remove a Format used by a Converter. "
1841                                             "Remove the converter first."));
1842                 return;
1843         }
1844
1845         form_->formats().erase(current_text);
1846         formatsChanged();
1847         updateView();
1848         on_formatsCB_editTextChanged(formatsCB->currentText());
1849         changed();
1850 }
1851
1852
1853 /////////////////////////////////////////////////////////////////////
1854 //
1855 // PrefLanguage
1856 //
1857 /////////////////////////////////////////////////////////////////////
1858
1859 PrefLanguage::PrefLanguage(GuiPreferences * form)
1860         : PrefModule(qt_(catLanguage), qt_("Language"), form)
1861 {
1862         setupUi(this);
1863
1864         connect(rtlGB, SIGNAL(clicked()),
1865                 this, SIGNAL(changed()));
1866         connect(visualCursorRB, SIGNAL(clicked()),
1867                 this, SIGNAL(changed()));
1868         connect(logicalCursorRB, SIGNAL(clicked()),
1869                 this, SIGNAL(changed()));
1870         connect(markForeignCB, SIGNAL(clicked()),
1871                 this, SIGNAL(changed()));
1872         connect(autoBeginCB, SIGNAL(clicked()),
1873                 this, SIGNAL(changed()));
1874         connect(autoEndCB, SIGNAL(clicked()),
1875                 this, SIGNAL(changed()));
1876         connect(useBabelCB, SIGNAL(clicked()),
1877                 this, SIGNAL(changed()));
1878         connect(globalCB, SIGNAL(clicked()),
1879                 this, SIGNAL(changed()));
1880         connect(languagePackageED, SIGNAL(textChanged(QString)),
1881                 this, SIGNAL(changed()));
1882         connect(startCommandED, SIGNAL(textChanged(QString)),
1883                 this, SIGNAL(changed()));
1884         connect(endCommandED, SIGNAL(textChanged(QString)),
1885                 this, SIGNAL(changed()));
1886         connect(uiLanguageCO, SIGNAL(activated(int)),
1887                 this, SIGNAL(changed()));
1888
1889         uiLanguageCO->clear();
1890
1891         QAbstractItemModel * language_model = guiApp->languageModel();
1892         // FIXME: it would be nice if sorting was enabled/disabled via a checkbox.
1893         language_model->sort(0);
1894
1895         // FIXME: This is wrong, we need filter this list based on the available
1896         // translation.
1897         uiLanguageCO->blockSignals(true);
1898         uiLanguageCO->addItem(qt_("Default"), toqstr("auto"));
1899         for (int i = 0; i != language_model->rowCount(); ++i) {
1900                 QModelIndex index = language_model->index(i, 0);
1901                 uiLanguageCO->addItem(index.data(Qt::DisplayRole).toString(),
1902                         index.data(Qt::UserRole).toString());
1903         }
1904         uiLanguageCO->blockSignals(false);
1905 }
1906
1907
1908 void PrefLanguage::on_uiLanguageCO_currentIndexChanged(int)
1909 {
1910          QMessageBox::information(this, qt_("LyX needs to be restarted!"),
1911                  qt_("The change of user interface language will be fully "
1912                  "effective only after a restart."));
1913 }
1914
1915
1916 void PrefLanguage::apply(LyXRC & rc) const
1917 {
1918         // FIXME: remove rtl_support bool
1919         rc.rtl_support = rtlGB->isChecked();
1920         rc.visual_cursor = rtlGB->isChecked() && visualCursorRB->isChecked();
1921         rc.mark_foreign_language = markForeignCB->isChecked();
1922         rc.language_auto_begin = autoBeginCB->isChecked();
1923         rc.language_auto_end = autoEndCB->isChecked();
1924         rc.language_use_babel = useBabelCB->isChecked();
1925         rc.language_global_options = globalCB->isChecked();
1926         rc.language_package = fromqstr(languagePackageED->text());
1927         rc.language_command_begin = fromqstr(startCommandED->text());
1928         rc.language_command_end = fromqstr(endCommandED->text());
1929         rc.gui_language = fromqstr(
1930                 uiLanguageCO->itemData(uiLanguageCO->currentIndex()).toString());
1931 }
1932
1933
1934 void PrefLanguage::update(LyXRC const & rc)
1935 {
1936         // FIXME: remove rtl_support bool
1937         rtlGB->setChecked(rc.rtl_support);
1938         if (rc.visual_cursor)
1939                 visualCursorRB->setChecked(true);
1940         else
1941                 logicalCursorRB->setChecked(true);
1942         markForeignCB->setChecked(rc.mark_foreign_language);
1943         autoBeginCB->setChecked(rc.language_auto_begin);
1944         autoEndCB->setChecked(rc.language_auto_end);
1945         useBabelCB->setChecked(rc.language_use_babel);
1946         globalCB->setChecked(rc.language_global_options);
1947         languagePackageED->setText(toqstr(rc.language_package));
1948         startCommandED->setText(toqstr(rc.language_command_begin));
1949         endCommandED->setText(toqstr(rc.language_command_end));
1950
1951         int pos = uiLanguageCO->findData(toqstr(rc.gui_language));
1952         uiLanguageCO->blockSignals(true);
1953         uiLanguageCO->setCurrentIndex(pos);
1954         uiLanguageCO->blockSignals(false);
1955 }
1956
1957
1958 /////////////////////////////////////////////////////////////////////
1959 //
1960 // PrefPrinter
1961 //
1962 /////////////////////////////////////////////////////////////////////
1963
1964 PrefPrinter::PrefPrinter(GuiPreferences * form)
1965         : PrefModule(qt_(catOutput), qt_("Printer"), form)
1966 {
1967         setupUi(this);
1968
1969         connect(printerAdaptCB, SIGNAL(clicked()),
1970                 this, SIGNAL(changed()));
1971         connect(printerCommandED, SIGNAL(textChanged(QString)),
1972                 this, SIGNAL(changed()));
1973         connect(printerNameED, SIGNAL(textChanged(QString)),
1974                 this, SIGNAL(changed()));
1975         connect(printerPageRangeED, SIGNAL(textChanged(QString)),
1976                 this, SIGNAL(changed()));
1977         connect(printerCopiesED, SIGNAL(textChanged(QString)),
1978                 this, SIGNAL(changed()));
1979         connect(printerReverseED, SIGNAL(textChanged(QString)),
1980                 this, SIGNAL(changed()));
1981         connect(printerToPrinterED, SIGNAL(textChanged(QString)),
1982                 this, SIGNAL(changed()));
1983         connect(printerExtensionED, SIGNAL(textChanged(QString)),
1984                 this, SIGNAL(changed()));
1985         connect(printerSpoolCommandED, SIGNAL(textChanged(QString)),
1986                 this, SIGNAL(changed()));
1987         connect(printerPaperTypeED, SIGNAL(textChanged(QString)),
1988                 this, SIGNAL(changed()));
1989         connect(printerEvenED, SIGNAL(textChanged(QString)),
1990                 this, SIGNAL(changed()));
1991         connect(printerOddED, SIGNAL(textChanged(QString)),
1992                 this, SIGNAL(changed()));
1993         connect(printerCollatedED, SIGNAL(textChanged(QString)),
1994                 this, SIGNAL(changed()));
1995         connect(printerLandscapeED, SIGNAL(textChanged(QString)),
1996                 this, SIGNAL(changed()));
1997         connect(printerToFileED, SIGNAL(textChanged(QString)),
1998                 this, SIGNAL(changed()));
1999         connect(printerExtraED, SIGNAL(textChanged(QString)),
2000                 this, SIGNAL(changed()));
2001         connect(printerSpoolPrefixED, SIGNAL(textChanged(QString)),
2002                 this, SIGNAL(changed()));
2003         connect(printerPaperSizeED, SIGNAL(textChanged(QString)),
2004                 this, SIGNAL(changed()));
2005 }
2006
2007
2008 void PrefPrinter::apply(LyXRC & rc) const
2009 {
2010         rc.print_adapt_output = printerAdaptCB->isChecked();
2011         rc.print_command = fromqstr(printerCommandED->text());
2012         rc.printer = fromqstr(printerNameED->text());
2013
2014         rc.print_pagerange_flag = fromqstr(printerPageRangeED->text());
2015         rc.print_copies_flag = fromqstr(printerCopiesED->text());
2016         rc.print_reverse_flag = fromqstr(printerReverseED->text());
2017         rc.print_to_printer = fromqstr(printerToPrinterED->text());
2018         rc.print_file_extension = fromqstr(printerExtensionED->text());
2019         rc.print_spool_command = fromqstr(printerSpoolCommandED->text());
2020         rc.print_paper_flag = fromqstr(printerPaperTypeED->text());
2021         rc.print_evenpage_flag = fromqstr(printerEvenED->text());
2022         rc.print_oddpage_flag = fromqstr(printerOddED->text());
2023         rc.print_collcopies_flag = fromqstr(printerCollatedED->text());
2024         rc.print_landscape_flag = fromqstr(printerLandscapeED->text());
2025         rc.print_to_file = internal_path(fromqstr(printerToFileED->text()));
2026         rc.print_extra_options = fromqstr(printerExtraED->text());
2027         rc.print_spool_printerprefix = fromqstr(printerSpoolPrefixED->text());
2028         rc.print_paper_dimension_flag = fromqstr(printerPaperSizeED->text());
2029 }
2030
2031
2032 void PrefPrinter::update(LyXRC const & rc)
2033 {
2034         printerAdaptCB->setChecked(rc.print_adapt_output);
2035         printerCommandED->setText(toqstr(rc.print_command));
2036         printerNameED->setText(toqstr(rc.printer));
2037
2038         printerPageRangeED->setText(toqstr(rc.print_pagerange_flag));
2039         printerCopiesED->setText(toqstr(rc.print_copies_flag));
2040         printerReverseED->setText(toqstr(rc.print_reverse_flag));
2041         printerToPrinterED->setText(toqstr(rc.print_to_printer));
2042         printerExtensionED->setText(toqstr(rc.print_file_extension));
2043         printerSpoolCommandED->setText(toqstr(rc.print_spool_command));
2044         printerPaperTypeED->setText(toqstr(rc.print_paper_flag));
2045         printerEvenED->setText(toqstr(rc.print_evenpage_flag));
2046         printerOddED->setText(toqstr(rc.print_oddpage_flag));
2047         printerCollatedED->setText(toqstr(rc.print_collcopies_flag));
2048         printerLandscapeED->setText(toqstr(rc.print_landscape_flag));
2049         printerToFileED->setText(toqstr(external_path(rc.print_to_file)));
2050         printerExtraED->setText(toqstr(rc.print_extra_options));
2051         printerSpoolPrefixED->setText(toqstr(rc.print_spool_printerprefix));
2052         printerPaperSizeED->setText(toqstr(rc.print_paper_dimension_flag));
2053 }
2054
2055
2056 /////////////////////////////////////////////////////////////////////
2057 //
2058 // PrefUserInterface
2059 //
2060 /////////////////////////////////////////////////////////////////////
2061
2062 PrefUserInterface::PrefUserInterface(GuiPreferences * form)
2063         : PrefModule(qt_(catLookAndFeel), qt_("User interface"), form)
2064 {
2065         setupUi(this);
2066
2067         connect(autoSaveCB, SIGNAL(toggled(bool)),
2068                 autoSaveSB, SLOT(setEnabled(bool)));
2069         connect(autoSaveCB, SIGNAL(toggled(bool)),
2070                 TextLabel1, SLOT(setEnabled(bool)));
2071         connect(openDocumentsInTabsCB, SIGNAL(clicked()),
2072                 this, SIGNAL(changed()));
2073         connect(uiFilePB, SIGNAL(clicked()),
2074                 this, SLOT(selectUi()));
2075         connect(uiFileED, SIGNAL(textChanged(QString)),
2076                 this, SIGNAL(changed()));
2077         connect(restoreCursorCB, SIGNAL(clicked()),
2078                 this, SIGNAL(changed()));
2079         connect(loadSessionCB, SIGNAL(clicked()),
2080                 this, SIGNAL(changed()));
2081         connect(allowGeometrySessionCB, SIGNAL(clicked()),
2082                 this, SIGNAL(changed()));
2083         connect(autoSaveSB, SIGNAL(valueChanged(int)),
2084                 this, SIGNAL(changed()));
2085         connect(autoSaveCB, SIGNAL(clicked()),
2086                 this, SIGNAL(changed()));
2087         connect(lastfilesSB, SIGNAL(valueChanged(int)),
2088                 this, SIGNAL(changed()));
2089         connect(tooltipCB, SIGNAL(toggled(bool)),
2090                 this, SIGNAL(changed()));
2091         lastfilesSB->setMaximum(maxlastfiles);
2092 }
2093
2094
2095 void PrefUserInterface::apply(LyXRC & rc) const
2096 {
2097         rc.ui_file = internal_path(fromqstr(uiFileED->text()));
2098         rc.use_lastfilepos = restoreCursorCB->isChecked();
2099         rc.load_session = loadSessionCB->isChecked();
2100         rc.allow_geometry_session = allowGeometrySessionCB->isChecked();
2101         rc.autosave = autoSaveSB->value() * 60;
2102         rc.make_backup = autoSaveCB->isChecked();
2103         rc.num_lastfiles = lastfilesSB->value();
2104         rc.use_tooltip = tooltipCB->isChecked();
2105         rc.open_buffers_in_tabs = openDocumentsInTabsCB->isChecked();
2106 }
2107
2108
2109 void PrefUserInterface::update(LyXRC const & rc)
2110 {
2111         uiFileED->setText(toqstr(external_path(rc.ui_file)));
2112         restoreCursorCB->setChecked(rc.use_lastfilepos);
2113         loadSessionCB->setChecked(rc.load_session);
2114         allowGeometrySessionCB->setChecked(rc.allow_geometry_session);
2115         // convert to minutes
2116         int mins(rc.autosave / 60);
2117         if (rc.autosave && !mins)
2118                 mins = 1;
2119         autoSaveSB->setValue(mins);
2120         autoSaveCB->setChecked(rc.make_backup);
2121         lastfilesSB->setValue(rc.num_lastfiles);
2122         tooltipCB->setChecked(rc.use_tooltip);
2123         openDocumentsInTabsCB->setChecked(rc.open_buffers_in_tabs);
2124 }
2125
2126
2127 void PrefUserInterface::selectUi()
2128 {
2129         QString file = form_->browseUI(internalPath(uiFileED->text()));
2130         if (!file.isEmpty())
2131                 uiFileED->setText(file);
2132 }
2133
2134
2135 void PrefUserInterface::on_clearSessionPB_clicked()
2136 {
2137         guiApp->clearSession();
2138 }
2139
2140
2141
2142 /////////////////////////////////////////////////////////////////////
2143 //
2144 // PrefEdit
2145 //
2146 /////////////////////////////////////////////////////////////////////
2147
2148 PrefEdit::PrefEdit(GuiPreferences * form)
2149         : PrefModule(qt_(catEditing), qt_("Control"), form)
2150 {
2151         setupUi(this);
2152
2153         connect(cursorFollowsCB, SIGNAL(clicked()),
2154                 this, SIGNAL(changed()));
2155         connect(scrollBelowCB, SIGNAL(clicked()),
2156                 this, SIGNAL(changed()));
2157         connect(sortEnvironmentsCB, SIGNAL(clicked()),
2158                 this, SIGNAL(changed()));
2159         connect(groupEnvironmentsCB, SIGNAL(clicked()),
2160                 this, SIGNAL(changed()));
2161         connect(macroEditStyleCO, SIGNAL(activated(int)),
2162                 this, SIGNAL(changed()));
2163         connect(fullscreenLimitGB, SIGNAL(clicked()),
2164                 this, SIGNAL(changed()));
2165         connect(fullscreenWidthSB, SIGNAL(valueChanged(int)),
2166                 this, SIGNAL(changed()));
2167         connect(toggleTabbarCB, SIGNAL(toggled(bool)),
2168                 this, SIGNAL(changed()));
2169         connect(toggleMenubarCB, SIGNAL(toggled(bool)),
2170                 this, SIGNAL(changed()));
2171         connect(toggleScrollbarCB, SIGNAL(toggled(bool)),
2172                 this, SIGNAL(changed()));
2173         connect(toggleToolbarsCB, SIGNAL(toggled(bool)),
2174                 this, SIGNAL(changed()));
2175 }
2176
2177
2178 void PrefEdit::apply(LyXRC & rc) const
2179 {
2180         rc.cursor_follows_scrollbar = cursorFollowsCB->isChecked();
2181         rc.scroll_below_document = scrollBelowCB->isChecked();
2182         rc.sort_layouts = sortEnvironmentsCB->isChecked();
2183         rc.group_layouts = groupEnvironmentsCB->isChecked();
2184         switch (macroEditStyleCO->currentIndex()) {
2185                 case 0: rc.macro_edit_style = LyXRC::MACRO_EDIT_INLINE_BOX; break;
2186                 case 1: rc.macro_edit_style = LyXRC::MACRO_EDIT_INLINE; break;
2187                 case 2: rc.macro_edit_style = LyXRC::MACRO_EDIT_LIST;   break;
2188         }
2189         rc.full_screen_toolbars = toggleToolbarsCB->isChecked();
2190         rc.full_screen_scrollbar = toggleScrollbarCB->isChecked();
2191         rc.full_screen_tabbar = toggleTabbarCB->isChecked();
2192         rc.full_screen_menubar = toggleMenubarCB->isChecked();
2193         rc.full_screen_width = fullscreenWidthSB->value();
2194         rc.full_screen_limit = fullscreenLimitGB->isChecked();
2195 }
2196
2197
2198 void PrefEdit::update(LyXRC const & rc)
2199 {
2200         cursorFollowsCB->setChecked(rc.cursor_follows_scrollbar);
2201         scrollBelowCB->setChecked(rc.scroll_below_document);
2202         sortEnvironmentsCB->setChecked(rc.sort_layouts);
2203         groupEnvironmentsCB->setChecked(rc.group_layouts);
2204         macroEditStyleCO->setCurrentIndex(rc.macro_edit_style);
2205         toggleScrollbarCB->setChecked(rc.full_screen_scrollbar);
2206         toggleToolbarsCB->setChecked(rc.full_screen_toolbars);
2207         toggleTabbarCB->setChecked(rc.full_screen_tabbar);
2208         toggleMenubarCB->setChecked(rc.full_screen_menubar);
2209         fullscreenWidthSB->setValue(rc.full_screen_width);
2210         fullscreenLimitGB->setChecked(rc.full_screen_limit);
2211 }
2212
2213
2214 /////////////////////////////////////////////////////////////////////
2215 //
2216 // PrefShortcuts
2217 //
2218 /////////////////////////////////////////////////////////////////////
2219
2220
2221 GuiShortcutDialog::GuiShortcutDialog(QWidget * parent) : QDialog(parent)
2222 {
2223         Ui::shortcutUi::setupUi(this);
2224         QDialog::setModal(true);
2225 }
2226
2227
2228 PrefShortcuts::PrefShortcuts(GuiPreferences * form)
2229         : PrefModule(qt_(catEditing), qt_("Shortcuts"), form)
2230 {
2231         setupUi(this);
2232
2233         shortcutsTW->setColumnCount(2);
2234         shortcutsTW->headerItem()->setText(0, qt_("Function"));
2235         shortcutsTW->headerItem()->setText(1, qt_("Shortcut"));
2236         shortcutsTW->setSortingEnabled(true);
2237         // Multi-selection can be annoying.
2238         // shortcutsTW->setSelectionMode(QAbstractItemView::MultiSelection);
2239
2240         connect(bindFilePB, SIGNAL(clicked()),
2241                 this, SLOT(selectBind()));
2242         connect(bindFileED, SIGNAL(textChanged(QString)),
2243                 this, SIGNAL(changed()));
2244         connect(removePB, SIGNAL(clicked()),
2245                 this, SIGNAL(changed()));
2246
2247         shortcut_ = new GuiShortcutDialog(this);
2248         shortcut_bc_.setPolicy(ButtonPolicy::OkCancelPolicy);
2249         shortcut_bc_.setOK(shortcut_->okPB);
2250         shortcut_bc_.setCancel(shortcut_->cancelPB);
2251
2252         connect(shortcut_->okPB, SIGNAL(clicked()),
2253                 shortcut_, SLOT(accept()));
2254         connect(shortcut_->okPB, SIGNAL(clicked()),
2255                 this, SIGNAL(changed()));
2256         connect(shortcut_->cancelPB, SIGNAL(clicked()),
2257                 shortcut_, SLOT(reject()));
2258         connect(shortcut_->clearPB, SIGNAL(clicked()),
2259                 this, SLOT(shortcutClearPressed()));
2260         connect(shortcut_->removePB, SIGNAL(clicked()),
2261                 this, SLOT(shortcutRemovePressed()));
2262         connect(shortcut_->okPB, SIGNAL(clicked()),
2263                 this, SLOT(shortcutOkPressed()));
2264         connect(shortcut_->cancelPB, SIGNAL(clicked()),
2265                 this, SLOT(shortcutCancelPressed()));
2266 }
2267
2268
2269 void PrefShortcuts::apply(LyXRC & rc) const
2270 {
2271         rc.bind_file = internal_path(fromqstr(bindFileED->text()));
2272         // write user_bind and user_unbind to .lyx/bind/user.bind
2273         FileName bind_dir(addPath(package().user_support().absFilename(), "bind"));
2274         if (!bind_dir.exists() && !bind_dir.createDirectory(0777)) {
2275                 lyxerr << "LyX could not create the user bind directory '"
2276                        << bind_dir << "'. All user-defined key bindings will be lost." << endl;
2277                 return;
2278         }
2279         if (!bind_dir.isDirWritable()) {
2280                 lyxerr << "LyX could not write to the user bind directory '"
2281                        << bind_dir << "'. All user-defined key bindings will be lost." << endl;
2282                 return;
2283         }
2284         FileName user_bind_file(bind_dir.absFilename() + "/user.bind");
2285         user_unbind_.write(user_bind_file.toFilesystemEncoding(), false, true);
2286         user_bind_.write(user_bind_file.toFilesystemEncoding(), true, false);
2287         // immediately apply the keybindings. Why this is not done before?
2288         // The good thing is that the menus are updated automatically.
2289         theTopLevelKeymap().clear();
2290         theTopLevelKeymap().read("site");
2291         theTopLevelKeymap().read(rc.bind_file, 0, KeyMap::Fallback);
2292         theTopLevelKeymap().read("user", 0, KeyMap::MissingOK);
2293 }
2294
2295
2296 void PrefShortcuts::update(LyXRC const & rc)
2297 {
2298         bindFileED->setText(toqstr(external_path(rc.bind_file)));
2299         //
2300         system_bind_.clear();
2301         user_bind_.clear();
2302         user_unbind_.clear();
2303         system_bind_.read("site");
2304         system_bind_.read(rc.bind_file);
2305         // \unbind in user.bind is added to user_unbind_
2306         user_bind_.read("user", &user_unbind_, KeyMap::MissingOK);
2307         updateShortcutsTW();
2308 }
2309
2310
2311 void PrefShortcuts::updateShortcutsTW()
2312 {
2313         shortcutsTW->clear();
2314
2315         editItem_ = new QTreeWidgetItem(shortcutsTW);
2316         editItem_->setText(0, qt_("Cursor, Mouse and Editing functions"));
2317         editItem_->setFlags(editItem_->flags() & ~Qt::ItemIsSelectable);
2318
2319         mathItem_ = new QTreeWidgetItem(shortcutsTW);
2320         mathItem_->setText(0, qt_("Mathematical Symbols"));
2321         mathItem_->setFlags(mathItem_->flags() & ~Qt::ItemIsSelectable);
2322
2323         bufferItem_ = new QTreeWidgetItem(shortcutsTW);
2324         bufferItem_->setText(0, qt_("Document and Window"));
2325         bufferItem_->setFlags(bufferItem_->flags() & ~Qt::ItemIsSelectable);
2326
2327         layoutItem_ = new QTreeWidgetItem(shortcutsTW);
2328         layoutItem_->setText(0, qt_("Font, Layouts and Textclasses"));
2329         layoutItem_->setFlags(layoutItem_->flags() & ~Qt::ItemIsSelectable);
2330
2331         systemItem_ = new QTreeWidgetItem(shortcutsTW);
2332         systemItem_->setText(0, qt_("System and Miscellaneous"));
2333         systemItem_->setFlags(systemItem_->flags() & ~Qt::ItemIsSelectable);
2334
2335         // listBindings(unbound=true) lists all bound and unbound lfuns
2336         // Items in this list is tagged by its source.
2337         KeyMap::BindingList bindinglist = system_bind_.listBindings(true,
2338                 KeyMap::System);
2339         KeyMap::BindingList user_bindinglist = user_bind_.listBindings(false,
2340                 KeyMap::UserBind);
2341         KeyMap::BindingList user_unbindinglist = user_unbind_.listBindings(false,
2342                 KeyMap::UserUnbind);
2343         bindinglist.insert(bindinglist.end(), user_bindinglist.begin(),
2344                         user_bindinglist.end());
2345         bindinglist.insert(bindinglist.end(), user_unbindinglist.begin(),
2346                         user_unbindinglist.end());
2347
2348         KeyMap::BindingList::const_iterator it = bindinglist.begin();
2349         KeyMap::BindingList::const_iterator it_end = bindinglist.end();
2350         for (; it != it_end; ++it)
2351                 insertShortcutItem(it->request, it->sequence, KeyMap::ItemType(it->tag));
2352
2353         shortcutsTW->sortItems(0, Qt::AscendingOrder);
2354         QList<QTreeWidgetItem*> items = shortcutsTW->selectedItems();
2355         removePB->setEnabled(!items.isEmpty() && !items[0]->text(1).isEmpty());
2356         modifyPB->setEnabled(!items.isEmpty());
2357
2358         shortcutsTW->resizeColumnToContents(0);
2359 }
2360
2361
2362 void PrefShortcuts::setItemType(QTreeWidgetItem * item, KeyMap::ItemType tag)
2363 {
2364         item->setData(0, Qt::UserRole, QVariant(tag));
2365         QFont font;
2366
2367         switch (tag) {
2368         case KeyMap::System:
2369                 break;
2370         case KeyMap::UserBind:
2371                 font.setBold(true);
2372                 break;
2373         case KeyMap::UserUnbind:
2374                 font.setStrikeOut(true);
2375                 break;
2376         // this item is not displayed now.
2377         case KeyMap::UserExtraUnbind:
2378                 font.setStrikeOut(true);
2379                 break;
2380         }
2381
2382         item->setFont(1, font);
2383 }
2384
2385
2386 QTreeWidgetItem * PrefShortcuts::insertShortcutItem(FuncRequest const & lfun,
2387                 KeySequence const & seq, KeyMap::ItemType tag)
2388 {
2389         FuncCode action = lfun.action;
2390         string const action_name = lyxaction.getActionName(action);
2391         QString const lfun_name = toqstr(from_utf8(action_name)
2392                         + ' ' + lfun.argument());
2393         QString const shortcut = toqstr(seq.print(KeySequence::ForGui));
2394         KeyMap::ItemType item_tag = tag;
2395
2396         QTreeWidgetItem * newItem = 0;
2397         // for unbind items, try to find an existing item in the system bind list
2398         if (tag == KeyMap::UserUnbind) {
2399                 QList<QTreeWidgetItem*> const items = shortcutsTW->findItems(lfun_name,
2400                         Qt::MatchFlags(Qt::MatchExactly | Qt::MatchRecursive), 0);
2401                 for (int i = 0; i < items.size(); ++i) {
2402                         if (items[i]->text(1) == shortcut)
2403                                 newItem = items[i];
2404                                 break;
2405                         }
2406                 // if not found, this unbind item is KeyMap::UserExtraUnbind
2407                 // Such an item is not displayed to avoid confusion (what is
2408                 // unmatched removed?).
2409                 if (!newItem) {
2410                         item_tag = KeyMap::UserExtraUnbind;
2411                         return 0;
2412                 }
2413         }
2414         if (!newItem) {
2415                 switch(lyxaction.getActionType(action)) {
2416                 case LyXAction::Hidden:
2417                         return 0;
2418                 case LyXAction::Edit:
2419                         newItem = new QTreeWidgetItem(editItem_);
2420                         break;
2421                 case LyXAction::Math:
2422                         newItem = new QTreeWidgetItem(mathItem_);
2423                         break;
2424                 case LyXAction::Buffer:
2425                         newItem = new QTreeWidgetItem(bufferItem_);
2426                         break;
2427                 case LyXAction::Layout:
2428                         newItem = new QTreeWidgetItem(layoutItem_);
2429                         break;
2430                 case LyXAction::System:
2431                         newItem = new QTreeWidgetItem(systemItem_);
2432                         break;
2433                 default:
2434                         // this should not happen
2435                         newItem = new QTreeWidgetItem(shortcutsTW);
2436                 }
2437         }
2438
2439         newItem->setText(0, lfun_name);
2440         newItem->setText(1, shortcut);
2441         // record BindFile representation to recover KeySequence when needed.
2442         newItem->setData(1, Qt::UserRole, toqstr(seq.print(KeySequence::BindFile)));
2443         setItemType(newItem, item_tag);
2444         return newItem;
2445 }
2446
2447
2448 void PrefShortcuts::on_shortcutsTW_itemSelectionChanged()
2449 {
2450         QList<QTreeWidgetItem*> items = shortcutsTW->selectedItems();
2451         removePB->setEnabled(!items.isEmpty() && !items[0]->text(1).isEmpty());
2452         modifyPB->setEnabled(!items.isEmpty());
2453         if (items.isEmpty())
2454                 return;
2455
2456         KeyMap::ItemType tag = 
2457                 static_cast<KeyMap::ItemType>(items[0]->data(0, Qt::UserRole).toInt());
2458         if (tag == KeyMap::UserUnbind)
2459                 removePB->setText(qt_("Res&tore"));
2460         else
2461                 removePB->setText(qt_("Remo&ve"));
2462 }
2463
2464
2465 void PrefShortcuts::on_shortcutsTW_itemDoubleClicked()
2466 {
2467         modifyShortcut();
2468 }
2469
2470
2471 void PrefShortcuts::modifyShortcut()
2472 {
2473         QTreeWidgetItem * item = shortcutsTW->currentItem();
2474         if (item->flags() & Qt::ItemIsSelectable) {
2475                 shortcut_->lfunLE->setText(item->text(0));
2476                 save_lfun_ = item->text(0);
2477                 shortcut_->shortcutWG->setText(item->text(1));
2478                 KeySequence seq;
2479                 seq.parse(fromqstr(item->data(1, Qt::UserRole).toString()));
2480                 shortcut_->shortcutWG->setKeySequence(seq);
2481                 shortcut_->shortcutWG->setFocus();
2482                 shortcut_->exec();
2483         }
2484 }
2485
2486
2487 void PrefShortcuts::removeShortcut()
2488 {
2489         // it seems that only one item can be selected, but I am
2490         // removing all selected items anyway.
2491         QList<QTreeWidgetItem*> items = shortcutsTW->selectedItems();
2492         for (int i = 0; i < items.size(); ++i) {
2493                 string shortcut = fromqstr(items[i]->data(1, Qt::UserRole).toString());
2494                 string lfun = fromqstr(items[i]->text(0));
2495                 FuncRequest func = lyxaction.lookupFunc(lfun);
2496                 KeyMap::ItemType tag = 
2497                         static_cast<KeyMap::ItemType>(items[i]->data(0, Qt::UserRole).toInt());
2498
2499                 switch (tag) {
2500                 case KeyMap::System: {
2501                         // for system bind, we do not touch the item
2502                         // but add an user unbind item
2503                         user_unbind_.bind(shortcut, func);
2504                         setItemType(items[i], KeyMap::UserUnbind);
2505                         removePB->setText(qt_("Res&tore"));
2506                         break;
2507                 }
2508                 case KeyMap::UserBind: {
2509                         // for user_bind, we remove this bind
2510                         QTreeWidgetItem * parent = items[i]->parent();
2511                         int itemIdx = parent->indexOfChild(items[i]);
2512                         parent->takeChild(itemIdx);
2513                         if (itemIdx > 0)
2514                                 shortcutsTW->scrollToItem(parent->child(itemIdx - 1));
2515                         else
2516                                 shortcutsTW->scrollToItem(parent);
2517                         user_bind_.unbind(shortcut, func);
2518                         break;
2519                 }
2520                 case KeyMap::UserUnbind: {
2521                         // for user_unbind, we remove the unbind, and the item
2522                         // become KeyMap::System again.
2523                         user_unbind_.unbind(shortcut, func);
2524                         setItemType(items[i], KeyMap::System);
2525                         removePB->setText(qt_("Remo&ve"));
2526                         break;
2527                 }
2528                 case KeyMap::UserExtraUnbind: {
2529                         // for user unbind that is not in system bind file,
2530                         // remove this unbind file
2531                         QTreeWidgetItem * parent = items[i]->parent();
2532                         parent->takeChild(parent->indexOfChild(items[i]));
2533                         user_unbind_.unbind(shortcut, func);
2534                 }
2535                 }
2536         }
2537 }
2538
2539
2540 void PrefShortcuts::selectBind()
2541 {
2542         QString file = form_->browsebind(internalPath(bindFileED->text()));
2543         if (!file.isEmpty()) {
2544                 bindFileED->setText(file);
2545                 system_bind_ = KeyMap();
2546                 system_bind_.read(fromqstr(file));
2547                 updateShortcutsTW();
2548         }
2549 }
2550
2551
2552 void PrefShortcuts::on_modifyPB_pressed()
2553 {
2554         modifyShortcut();
2555 }
2556
2557
2558 void PrefShortcuts::on_newPB_pressed()
2559 {
2560         shortcut_->lfunLE->clear();
2561         shortcut_->shortcutWG->reset();
2562         save_lfun_ = QString();
2563         shortcut_->exec();
2564 }
2565
2566
2567 void PrefShortcuts::on_removePB_pressed()
2568 {
2569         removeShortcut();
2570 }
2571
2572
2573 void PrefShortcuts::on_searchLE_textEdited()
2574 {
2575         if (searchLE->text().isEmpty()) {
2576                 // show all hidden items
2577                 QTreeWidgetItemIterator it(shortcutsTW, QTreeWidgetItemIterator::Hidden);
2578                 while (*it)
2579                         shortcutsTW->setItemHidden(*it++, false);
2580                 return;
2581         }
2582         // search both columns
2583         QList<QTreeWidgetItem *> matched = shortcutsTW->findItems(searchLE->text(),
2584                 Qt::MatchFlags(Qt::MatchContains | Qt::MatchRecursive), 0);
2585         matched += shortcutsTW->findItems(searchLE->text(),
2586                 Qt::MatchFlags(Qt::MatchContains | Qt::MatchRecursive), 1);
2587
2588         // hide everyone (to avoid searching in matched QList repeatedly
2589         QTreeWidgetItemIterator it(shortcutsTW, QTreeWidgetItemIterator::Selectable);
2590         while (*it)
2591                 shortcutsTW->setItemHidden(*it++, true);
2592         // show matched items
2593         for (int i = 0; i < matched.size(); ++i) {
2594                 shortcutsTW->setItemHidden(matched[i], false);
2595         shortcutsTW->setItemExpanded(matched[i]->parent(), true);
2596         }
2597 }
2598
2599
2600 docstring makeCmdString(FuncRequest const & f)
2601 {
2602         docstring actionStr = from_ascii(lyxaction.getActionName(f.action));
2603         if (!f.argument().empty())
2604                 actionStr += " " + f.argument();
2605         return actionStr;
2606 }
2607
2608
2609 void PrefShortcuts::shortcutOkPressed()
2610 {
2611         QString const new_lfun = shortcut_->lfunLE->text();
2612         FuncRequest func = lyxaction.lookupFunc(fromqstr(new_lfun));
2613
2614         if (func.action == LFUN_UNKNOWN_ACTION) {
2615                 Alert::error(_("Failed to create shortcut"),
2616                         _("Unknown or invalid LyX function"));
2617                 return;
2618         }
2619
2620         KeySequence k = shortcut_->shortcutWG->getKeySequence();
2621         if (k.length() == 0) {
2622                 Alert::error(_("Failed to create shortcut"),
2623                         _("Invalid or empty key sequence"));
2624                 return;
2625         }
2626
2627         // check to see if there's been any change
2628         FuncRequest oldBinding = system_bind_.getBinding(k);
2629         if (oldBinding.action == LFUN_UNKNOWN_ACTION)
2630                 oldBinding = user_bind_.getBinding(k);
2631         if (oldBinding == func) {
2632                 docstring const actionStr = makeCmdString(func);
2633                 Alert::error(_("Failed to create shortcut"),
2634                         bformat(_("Shortcut `%1$s' is already bound to:\n%2$s"), 
2635                         k.print(KeySequence::ForGui), actionStr));
2636                 return;
2637         }
2638         
2639         // make sure this key isn't already bound---and, if so, not unbound
2640         FuncCode const unbind = user_unbind_.getBinding(k).action;
2641         if (oldBinding.action != LFUN_UNKNOWN_ACTION && unbind == LFUN_UNKNOWN_ACTION)
2642         {
2643                 // FIXME Perhaps we should offer to over-write the old shortcut?
2644                 // If so, we'll need to remove it from our list, etc.
2645                 docstring const actionStr = makeCmdString(oldBinding);
2646                 Alert::error(_("Failed to create shortcut"),
2647                         bformat(_("Shortcut `%1$s' is already bound to:\n%2$s\n"
2648                           "You need to remove that binding before creating a new one."), 
2649                         k.print(KeySequence::ForGui), actionStr));
2650                 return;
2651         }
2652
2653         if (!save_lfun_.isEmpty() && new_lfun == save_lfun_)
2654                 // real modification of the lfun's shortcut,
2655                 // so remove the previous one
2656                 removeShortcut();
2657
2658         QTreeWidgetItem * item = insertShortcutItem(func, k, KeyMap::UserBind);
2659         if (item) {
2660                 user_bind_.bind(&k, func);
2661                 shortcutsTW->sortItems(0, Qt::AscendingOrder);
2662                 shortcutsTW->setItemExpanded(item->parent(), true);
2663                 shortcutsTW->scrollToItem(item);
2664         } else {
2665                 Alert::error(_("Failed to create shortcut"),
2666                         _("Can not insert shortcut to the list"));
2667                 return;
2668         }
2669 }
2670
2671
2672 void PrefShortcuts::shortcutCancelPressed()
2673 {
2674         shortcut_->shortcutWG->reset();
2675 }
2676
2677
2678 void PrefShortcuts::shortcutClearPressed()
2679 {
2680         shortcut_->shortcutWG->reset();
2681 }
2682
2683
2684 void PrefShortcuts::shortcutRemovePressed()
2685 {
2686         shortcut_->shortcutWG->removeFromSequence();
2687 }
2688
2689
2690 /////////////////////////////////////////////////////////////////////
2691 //
2692 // PrefIdentity
2693 //
2694 /////////////////////////////////////////////////////////////////////
2695
2696 PrefIdentity::PrefIdentity(GuiPreferences * form)
2697         : PrefModule(QString(), qt_("Identity"), form)
2698 {
2699         setupUi(this);
2700
2701         connect(nameED, SIGNAL(textChanged(QString)),
2702                 this, SIGNAL(changed()));
2703         connect(emailED, SIGNAL(textChanged(QString)),
2704                 this, SIGNAL(changed()));
2705 }
2706
2707
2708 void PrefIdentity::apply(LyXRC & rc) const
2709 {
2710         rc.user_name = fromqstr(nameED->text());
2711         rc.user_email = fromqstr(emailED->text());
2712 }
2713
2714
2715 void PrefIdentity::update(LyXRC const & rc)
2716 {
2717         nameED->setText(toqstr(rc.user_name));
2718         emailED->setText(toqstr(rc.user_email));
2719 }
2720
2721
2722
2723 /////////////////////////////////////////////////////////////////////
2724 //
2725 // GuiPreferences
2726 //
2727 /////////////////////////////////////////////////////////////////////
2728
2729 GuiPreferences::GuiPreferences(GuiView & lv)
2730         : GuiDialog(lv, "prefs", qt_("Preferences")), update_screen_font_(false)
2731 {
2732         setupUi(this);
2733
2734         QDialog::setModal(false);
2735
2736         connect(savePB, SIGNAL(clicked()), this, SLOT(slotOK()));
2737         connect(applyPB, SIGNAL(clicked()), this, SLOT(slotApply()));
2738         connect(closePB, SIGNAL(clicked()), this, SLOT(slotClose()));
2739         connect(restorePB, SIGNAL(clicked()), this, SLOT(slotRestore()));
2740
2741         addModule(new PrefUserInterface(this));
2742         addModule(new PrefEdit(this));
2743         addModule(new PrefShortcuts(this));
2744         addModule(new PrefScreenFonts(this));
2745         addModule(new PrefColors(this));
2746         addModule(new PrefDisplay(this));
2747         addModule(new PrefInput(this));
2748         addModule(new PrefCompletion(this));
2749
2750         addModule(new PrefPaths(this));
2751
2752         addModule(new PrefIdentity(this));
2753
2754         addModule(new PrefLanguage(this));
2755         addModule(new PrefSpellchecker(this));
2756
2757         addModule(new PrefPrinter(this));
2758         PrefDate * dateFormat = new PrefDate(this);
2759         addModule(dateFormat);
2760         addModule(new PrefPlaintext(this));
2761         addModule(new PrefLatex(this));
2762
2763         PrefConverters * converters = new PrefConverters(this);
2764         PrefFileformats * formats = new PrefFileformats(this);
2765         connect(formats, SIGNAL(formatsChanged()),
2766                         converters, SLOT(updateGui()));
2767         addModule(converters);
2768         addModule(formats);
2769
2770         prefsPS->setCurrentPanel(qt_("User interface"));
2771 // FIXME: hack to work around resizing bug in Qt >= 4.2
2772 // bug verified with Qt 4.2.{0-3} (JSpitzm)
2773 #if QT_VERSION >= 0x040200
2774         prefsPS->updateGeometry();
2775 #endif
2776
2777         bc().setPolicy(ButtonPolicy::PreferencesPolicy);
2778         bc().setOK(savePB);
2779         bc().setApply(applyPB);
2780         bc().setCancel(closePB);
2781         bc().setRestore(restorePB);
2782
2783         // initialize the strftime validator
2784         bc().addCheckedLineEdit(dateFormat->DateED);
2785 }
2786
2787
2788 void GuiPreferences::addModule(PrefModule * module)
2789 {
2790         LASSERT(module, return);
2791         if (module->category().isEmpty())
2792                 prefsPS->addPanel(module, module->title());
2793         else
2794                 prefsPS->addPanel(module, module->title(), module->category());
2795         connect(module, SIGNAL(changed()), this, SLOT(change_adaptor()));
2796         modules_.push_back(module);
2797 }
2798
2799
2800 void GuiPreferences::change_adaptor()
2801 {
2802         changed();
2803 }
2804
2805
2806 void GuiPreferences::apply(LyXRC & rc) const
2807 {
2808         size_t end = modules_.size();
2809         for (size_t i = 0; i != end; ++i)
2810                 modules_[i]->apply(rc);
2811 }
2812
2813
2814 void GuiPreferences::updateRc(LyXRC const & rc)
2815 {
2816         size_t const end = modules_.size();
2817         for (size_t i = 0; i != end; ++i)
2818                 modules_[i]->update(rc);
2819 }
2820
2821
2822 void GuiPreferences::applyView()
2823 {
2824         apply(rc());
2825 }
2826
2827 bool GuiPreferences::initialiseParams(string const &)
2828 {
2829         rc_ = lyxrc;
2830         formats_ = lyx::formats;
2831         converters_ = theConverters();
2832         converters_.update(formats_);
2833         movers_ = theMovers();
2834         colors_.clear();
2835         update_screen_font_ = false;
2836         
2837         updateRc(rc_);
2838         // Make sure that the bc is in the INITIAL state  
2839         if (bc().policy().buttonStatus(ButtonPolicy::RESTORE))  
2840                 bc().restore();  
2841
2842         return true;
2843 }
2844
2845
2846 void GuiPreferences::dispatchParams()
2847 {
2848         ostringstream ss;
2849         rc_.write(ss, true);
2850         dispatch(FuncRequest(LFUN_LYXRC_APPLY, ss.str()));
2851         // FIXME: these need lfuns
2852         // FIXME UNICODE
2853         theBufferList().setCurrentAuthor(from_utf8(rc_.user_name), from_utf8(rc_.user_email));
2854
2855         lyx::formats = formats_;
2856
2857         theConverters() = converters_;
2858         theConverters().update(lyx::formats);
2859         theConverters().buildGraph();
2860
2861         theMovers() = movers_;
2862
2863         vector<string>::const_iterator it = colors_.begin();
2864         vector<string>::const_iterator const end = colors_.end();
2865         for (; it != end; ++it)
2866                 dispatch(FuncRequest(LFUN_SET_COLOR, *it));
2867         colors_.clear();
2868
2869         if (update_screen_font_) {
2870                 dispatch(FuncRequest(LFUN_SCREEN_FONT_UPDATE));
2871                 update_screen_font_ = false;
2872         }
2873
2874         // The Save button has been pressed
2875         if (isClosing())
2876                 dispatch(FuncRequest(LFUN_PREFERENCES_SAVE));
2877 }
2878
2879
2880 void GuiPreferences::setColor(ColorCode col, QString const & hex)
2881 {
2882         colors_.push_back(lcolor.getLyXName(col) + ' ' + fromqstr(hex));
2883 }
2884
2885
2886 void GuiPreferences::updateScreenFonts()
2887 {
2888         update_screen_font_ = true;
2889 }
2890
2891
2892 QString GuiPreferences::browsebind(QString const & file) const
2893 {
2894         return browseLibFile("bind", file, "bind", qt_("Choose bind file"),
2895                              QStringList(qt_("LyX bind files (*.bind)")));
2896 }
2897
2898
2899 QString GuiPreferences::browseUI(QString const & file) const
2900 {
2901         return browseLibFile("ui", file, "ui", qt_("Choose UI file"),
2902                              QStringList(qt_("LyX UI files (*.ui)")));
2903 }
2904
2905
2906 QString GuiPreferences::browsekbmap(QString const & file) const
2907 {
2908         return browseLibFile("kbd", file, "kmap", qt_("Choose keyboard map"),
2909                              QStringList(qt_("LyX keyboard maps (*.kmap)")));
2910 }
2911
2912
2913 QString GuiPreferences::browse(QString const & file,
2914         QString const & title) const
2915 {
2916         return browseFile(file, title, QStringList(), true);
2917 }
2918
2919
2920 // We support less paper sizes than the document dialog
2921 // Therefore this adjustment is needed.
2922 PAPER_SIZE GuiPreferences::toPaperSize(int i) const
2923 {
2924         switch (i) {
2925         case 0:
2926                 return PAPER_DEFAULT;
2927         case 1:
2928                 return PAPER_USLETTER;
2929         case 2:
2930                 return PAPER_USLEGAL;
2931         case 3:
2932                 return PAPER_USEXECUTIVE;
2933         case 4:
2934                 return PAPER_A3;
2935         case 5:
2936                 return PAPER_A4;
2937         case 6:
2938                 return PAPER_A5;
2939         case 7:
2940                 return PAPER_B5;
2941         default:
2942                 // should not happen
2943                 return PAPER_DEFAULT;
2944         }
2945 }
2946
2947
2948 int GuiPreferences::fromPaperSize(PAPER_SIZE papersize) const
2949 {
2950         switch (papersize) {
2951         case PAPER_DEFAULT:
2952                 return 0;
2953         case PAPER_USLETTER:
2954                 return 1;
2955         case PAPER_USLEGAL:
2956                 return 2;
2957         case PAPER_USEXECUTIVE:
2958                 return 3;
2959         case PAPER_A3:
2960                 return 4;
2961         case PAPER_A4:
2962                 return 5;
2963         case PAPER_A5:
2964                 return 6;
2965         case PAPER_B5:
2966                 return 7;
2967         default:
2968                 // should not happen
2969                 return 0;
2970         }
2971 }
2972
2973
2974 Dialog * createGuiPreferences(GuiView & lv) { return new GuiPreferences(lv); }
2975
2976
2977 } // namespace frontend
2978 } // namespace lyx
2979
2980 #include "moc_GuiPrefs.cpp"