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