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