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