]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiPrefs.cpp
If we are in a closeEvent, we don't want to close all buffers, because these may...
[lyx.git] / src / frontends / qt4 / GuiPrefs.cpp
index 679ad15a45d05f604d5c27cba31c8435937be642..aaeaa73042282481d0f13a9446106f18a8b0c3f7 100644 (file)
@@ -34,6 +34,7 @@
 #include "PanelStack.h"
 #include "paper.h"
 #include "Session.h"
+#include "SpellChecker.h"
 
 #include "support/debug.h"
 #include "support/FileName.h"
@@ -516,6 +517,8 @@ PrefCompletion::PrefCompletion(GuiPreferences * form)
                this, SIGNAL(changed()));
        connect(popupMathCB, SIGNAL(clicked()),
                this, SIGNAL(changed()));
+       connect(autocorrectionCB, SIGNAL(clicked()),
+               this, SIGNAL(changed()));
        connect(popupTextCB, SIGNAL(clicked()),
                this, SIGNAL(changed()));
        connect(popupAfterCompleteCB, SIGNAL(clicked()),
@@ -525,6 +528,25 @@ PrefCompletion::PrefCompletion(GuiPreferences * form)
 }
 
 
+void PrefCompletion::on_inlineTextCB_clicked()
+{
+       enableCB();
+}
+
+
+void PrefCompletion::on_popupTextCB_clicked()
+{
+       enableCB();
+}
+
+
+void PrefCompletion::enableCB()
+{
+       cursorTextCB->setEnabled(
+               popupTextCB->isChecked() || inlineTextCB->isChecked());
+}
+
+
 void PrefCompletion::apply(LyXRC & rc) const
 {
        rc.completion_inline_delay = inlineDelaySB->value();
@@ -533,6 +555,7 @@ void PrefCompletion::apply(LyXRC & rc) const
        rc.completion_inline_dots = inlineDotsCB->isChecked() ? 13 : -1;
        rc.completion_popup_delay = popupDelaySB->value();
        rc.completion_popup_math = popupMathCB->isChecked();
+       rc.autocorrection_math = autocorrectionCB->isChecked();
        rc.completion_popup_text = popupTextCB->isChecked();
        rc.completion_cursor_text = cursorTextCB->isChecked();
        rc.completion_popup_after_complete =
@@ -548,9 +571,11 @@ void PrefCompletion::update(LyXRC const & rc)
        inlineDotsCB->setChecked(rc.completion_inline_dots != -1);
        popupDelaySB->setValue(rc.completion_popup_delay);
        popupMathCB->setChecked(rc.completion_popup_math);
+       autocorrectionCB->setChecked(rc.autocorrection_math);
        popupTextCB->setChecked(rc.completion_popup_text);
        cursorTextCB->setChecked(rc.completion_cursor_text);
        popupAfterCompleteCB->setChecked(rc.completion_popup_after_complete);
+        enableCB();
 }
 
 
@@ -569,10 +594,14 @@ PrefLatex::PrefLatex(GuiPreferences * form)
                this, SIGNAL(changed()));
        connect(latexChecktexED, SIGNAL(textChanged(QString)),
                this, SIGNAL(changed()));
+       connect(latexBibtexCO, SIGNAL(activated(int)),
+               this, SIGNAL(changed()));
        connect(latexBibtexED, SIGNAL(textChanged(QString)),
                this, SIGNAL(changed()));
        connect(latexJBibtexED, SIGNAL(textChanged(QString)),
                this, SIGNAL(changed()));
+       connect(latexIndexCO, SIGNAL(activated(int)),
+               this, SIGNAL(changed()));
        connect(latexIndexED, SIGNAL(textChanged(QString)),
                this, SIGNAL(changed()));
        connect(latexJIndexED, SIGNAL(textChanged(QString)),
@@ -594,13 +623,85 @@ PrefLatex::PrefLatex(GuiPreferences * form)
 }
 
 
+void PrefLatex::on_latexBibtexCO_activated(int n)
+{
+       QString const bibtex = latexBibtexCO->itemData(n).toString();
+       if (bibtex.isEmpty()) {
+               latexBibtexED->clear();
+               latexBibtexOptionsLA->setText(qt_("Co&mmand:"));
+               return;
+       }
+       for (set<string>::const_iterator it = bibtex_alternatives.begin();
+            it != bibtex_alternatives.end(); ++it) {
+               QString const bib = toqstr(*it);
+               int ind = bib.indexOf(" ");
+               QString sel_command = bib.left(ind);
+               QString sel_options = ind < 0 ? QString() : bib.mid(ind + 1);
+               if (bibtex == sel_command) {
+                       if (ind < 0)
+                               latexBibtexED->clear();
+                       else
+                               latexBibtexED->setText(sel_options.trimmed());
+               }
+       }
+       latexBibtexOptionsLA->setText(qt_("&Options:"));
+}
+
+
+void PrefLatex::on_latexIndexCO_activated(int n)
+{
+       QString const index = latexIndexCO->itemData(n).toString();
+       if (index.isEmpty()) {
+               latexIndexED->clear();
+               latexIndexOptionsLA->setText(qt_("Co&mmand:"));
+               return;
+       }
+       for (set<string>::const_iterator it = index_alternatives.begin();
+            it != index_alternatives.end(); ++it) {
+               QString const idx = toqstr(*it);
+               int ind = idx.indexOf(" ");
+               QString sel_command = idx.left(ind);
+               QString sel_options = ind < 0 ? QString() : idx.mid(ind + 1);
+               if (index == sel_command) {
+                       if (ind < 0)
+                               latexIndexED->clear();
+                       else
+                               latexIndexED->setText(sel_options.trimmed());
+               }
+       }
+       latexIndexOptionsLA->setText(qt_("Op&tions:"));
+}
+
+
 void PrefLatex::apply(LyXRC & rc) const
 {
+       // If bibtex is not empty, bibopt contains the options, otherwise
+       // it is a customized bibtex command with options.
+       QString const bibtex = latexBibtexCO->itemData(
+               latexBibtexCO->currentIndex()).toString();
+       QString const bibopt = latexBibtexED->text();
+       if (bibtex.isEmpty())
+               rc.bibtex_command = fromqstr(bibopt);
+       else if (bibopt.isEmpty())
+               rc.bibtex_command = fromqstr(bibtex);
+       else
+               rc.bibtex_command = fromqstr(bibtex) + " " + fromqstr(bibopt);
+
+       // If index is not empty, idxopt contains the options, otherwise
+       // it is a customized index command with options.
+       QString const index = latexIndexCO->itemData(
+               latexIndexCO->currentIndex()).toString();
+       QString const idxopt = latexIndexED->text();
+       if (index.isEmpty())
+               rc.index_command = fromqstr(idxopt);
+       else if (idxopt.isEmpty())
+               rc.index_command = fromqstr(index);
+       else
+               rc.index_command = fromqstr(index) + " " + fromqstr(idxopt);
+
        rc.fontenc = fromqstr(latexEncodingED->text());
        rc.chktex_command = fromqstr(latexChecktexED->text());
-       rc.bibtex_command = fromqstr(latexBibtexED->text());
        rc.jbibtex_command = fromqstr(latexJBibtexED->text());
-       rc.index_command = fromqstr(latexIndexED->text());
        rc.jindex_command = fromqstr(latexJIndexED->text());
        rc.nomencl_command = fromqstr(latexNomenclED->text());
        rc.auto_reset_options = latexAutoresetCB->isChecked();
@@ -615,11 +716,63 @@ void PrefLatex::apply(LyXRC & rc) const
 
 void PrefLatex::update(LyXRC const & rc)
 {
+       latexBibtexCO->clear();
+
+       latexBibtexCO->addItem(qt_("Custom"), QString());
+       for (set<string>::const_iterator it = rc.bibtex_alternatives.begin();
+                            it != rc.bibtex_alternatives.end(); ++it) {
+               QString const command = toqstr(*it).left(toqstr(*it).indexOf(" "));
+               latexBibtexCO->addItem(command, command);
+       }
+
+       bibtex_alternatives = rc.bibtex_alternatives;
+
+       QString const bib = toqstr(rc.bibtex_command);
+       int ind = bib.indexOf(" ");
+       QString sel_command = bib.left(ind);
+       QString sel_options = ind < 0 ? QString() : bib.mid(ind + 1);
+
+       int pos = latexBibtexCO->findData(sel_command);
+       if (pos != -1) {
+               latexBibtexCO->setCurrentIndex(pos);
+               latexBibtexED->setText(sel_options.trimmed());
+               latexBibtexOptionsLA->setText(qt_("&Options:"));
+       } else {
+               latexBibtexED->setText(toqstr(rc.bibtex_command));
+               latexBibtexCO->setCurrentIndex(0);
+               latexBibtexOptionsLA->setText(qt_("Co&mmand:"));
+       }
+
+       latexIndexCO->clear();
+
+       latexIndexCO->addItem(qt_("Custom"), QString());
+       for (set<string>::const_iterator it = rc.index_alternatives.begin();
+                            it != rc.index_alternatives.end(); ++it) {
+               QString const command = toqstr(*it).left(toqstr(*it).indexOf(" "));
+               latexIndexCO->addItem(command, command);
+       }
+
+       index_alternatives = rc.index_alternatives;
+
+       QString const idx = toqstr(rc.index_command);
+       ind = idx.indexOf(" ");
+       sel_command = idx.left(ind);
+       sel_options = ind < 0 ? QString() : idx.mid(ind + 1);
+
+       pos = latexIndexCO->findData(sel_command);
+       if (pos != -1) {
+               latexIndexCO->setCurrentIndex(pos);
+               latexIndexED->setText(sel_options.trimmed());
+               latexIndexOptionsLA->setText(qt_("Op&tions:"));
+       } else {
+               latexIndexED->setText(toqstr(rc.index_command));
+               latexIndexCO->setCurrentIndex(0);
+               latexIndexOptionsLA->setText(qt_("Co&mmand:"));
+       }
+
        latexEncodingED->setText(toqstr(rc.fontenc));
        latexChecktexED->setText(toqstr(rc.chktex_command));
-       latexBibtexED->setText(toqstr(rc.bibtex_command));
        latexJBibtexED->setText(toqstr(rc.jbibtex_command));
-       latexIndexED->setText(toqstr(rc.index_command));
        latexJIndexED->setText(toqstr(rc.jindex_command));
        latexNomenclED->setText(toqstr(rc.nomencl_command));
        latexAutoresetCB->setChecked(rc.auto_reset_options);
@@ -644,11 +797,11 @@ PrefScreenFonts::PrefScreenFonts(GuiPreferences * form)
        setupUi(this);
 
        connect(screenRomanCO, SIGNAL(activated(QString)),
-               this, SLOT(select_roman(QString)));
+               this, SLOT(selectRoman(QString)));
        connect(screenSansCO, SIGNAL(activated(QString)),
-               this, SLOT(select_sans(QString)));
+               this, SLOT(selectSans(QString)));
        connect(screenTypewriterCO, SIGNAL(activated(QString)),
-               this, SLOT(select_typewriter(QString)));
+               this, SLOT(selectTypewriter(QString)));
 
        QFontDatabase fontdb;
        QStringList families(fontdb.families());
@@ -752,9 +905,9 @@ void PrefScreenFonts::update(LyXRC const & rc)
        setComboxFont(screenTypewriterCO, rc.typewriter_font_name,
                        rc.typewriter_font_foundry);
 
-       select_roman(screenRomanCO->currentText());
-       select_sans(screenSansCO->currentText());
-       select_typewriter(screenTypewriterCO->currentText());
+       selectRoman(screenRomanCO->currentText());
+       selectSans(screenSansCO->currentText());
+       selectTypewriter(screenTypewriterCO->currentText());
 
        screenZoomSB->setValue(rc.zoom);
        screenDpiSB->setValue(rc.dpi);
@@ -777,19 +930,19 @@ void PrefScreenFonts::update(LyXRC const & rc)
 }
 
 
-void PrefScreenFonts::select_roman(const QString & name)
+void PrefScreenFonts::selectRoman(const QString & name)
 {
        screenRomanFE->set(QFont(name), name);
 }
 
 
-void PrefScreenFonts::select_sans(const QString & name)
+void PrefScreenFonts::selectSans(const QString & name)
 {
        screenSansFE->set(QFont(name), name);
 }
 
 
-void PrefScreenFonts::select_typewriter(const QString & name)
+void PrefScreenFonts::selectTypewriter(const QString & name)
 {
        screenTypewriterFE->set(QFont(name), name);
 }
@@ -850,11 +1003,11 @@ PrefColors::PrefColors(GuiPreferences * form)
        // End initialization
 
        connect(colorChangePB, SIGNAL(clicked()),
-               this, SLOT(change_color()));
+               this, SLOT(changeColor()));
        connect(lyxObjectsLW, SIGNAL(itemSelectionChanged()),
-               this, SLOT(change_lyxObjects_selection()));
+               this, SLOT(changeLyxObjectsSelection()));
        connect(lyxObjectsLW, SIGNAL(itemActivated(QListWidgetItem*)),
-               this, SLOT(change_color()));
+               this, SLOT(changeColor()));
 }
 
 
@@ -875,11 +1028,11 @@ void PrefColors::update(LyXRC const & /*rc*/)
                lyxObjectsLW->item(i)->setIcon(QIcon(coloritem));
                newcolors_[i] = curcolors_[i] = color.name();
        }
-       change_lyxObjects_selection();
+       changeLyxObjectsSelection();
 }
 
 
-void PrefColors::change_color()
+void PrefColors::changeColor()
 {
        int const row = lyxObjectsLW->currentRow();
 
@@ -900,7 +1053,7 @@ void PrefColors::change_color()
        }
 }
 
-void PrefColors::change_lyxObjects_selection()
+void PrefColors::changeLyxObjectsSelection()
 {
        colorChangePB->setDisabled(lyxObjectsLW->currentRow() < 0);
 }
@@ -970,13 +1123,14 @@ PrefPaths::PrefPaths(GuiPreferences * form)
        : PrefModule(QString(), qt_("Paths"), form)
 {
        setupUi(this);
-       connect(exampleDirPB, SIGNAL(clicked()), this, SLOT(select_exampledir()));
-       connect(templateDirPB, SIGNAL(clicked()), this, SLOT(select_templatedir()));
-       connect(tempDirPB, SIGNAL(clicked()), this, SLOT(select_tempdir()));
-       connect(backupDirPB, SIGNAL(clicked()), this, SLOT(select_backupdir()));
-       connect(workingDirPB, SIGNAL(clicked()), this, SLOT(select_workingdir()));
-       connect(lyxserverDirPB, SIGNAL(clicked()), this, SLOT(select_lyxpipe()));
-       connect(thesaurusDirPB, SIGNAL(clicked()), this, SLOT(select_thesaurusdir()));
+       connect(exampleDirPB, SIGNAL(clicked()), this, SLOT(selectExampledir()));
+       connect(templateDirPB, SIGNAL(clicked()), this, SLOT(selectTemplatedir()));
+       connect(tempDirPB, SIGNAL(clicked()), this, SLOT(selectTempdir()));
+       connect(backupDirPB, SIGNAL(clicked()), this, SLOT(selectBackupdir()));
+       connect(workingDirPB, SIGNAL(clicked()), this, SLOT(selectWorkingdir()));
+       connect(lyxserverDirPB, SIGNAL(clicked()), this, SLOT(selectLyxPipe()));
+       connect(thesaurusDirPB, SIGNAL(clicked()), this, SLOT(selectThesaurusdir()));
+       connect(hunspellDirPB, SIGNAL(clicked()), this, SLOT(selectHunspelldir()));
        connect(workingDirED, SIGNAL(textChanged(QString)),
                this, SIGNAL(changed()));
        connect(exampleDirED, SIGNAL(textChanged(QString)),
@@ -1004,6 +1158,7 @@ void PrefPaths::apply(LyXRC & rc) const
        rc.backupdir_path = internal_path(fromqstr(backupDirED->text()));
        rc.tempdir_path = internal_path(fromqstr(tempDirED->text()));
        rc.thesaurusdir_path = internal_path(fromqstr(thesaurusDirED->text()));
+       rc.hunspelldir_path = internal_path(fromqstr(hunspellDirED->text()));
        rc.path_prefix = internal_path_list(fromqstr(pathPrefixED->text()));
        // FIXME: should be a checkbox only
        rc.lyxpipes = internal_path(fromqstr(lyxserverDirED->text()));
@@ -1018,13 +1173,14 @@ void PrefPaths::update(LyXRC const & rc)
        backupDirED->setText(toqstr(external_path(rc.backupdir_path)));
        tempDirED->setText(toqstr(external_path(rc.tempdir_path)));
        thesaurusDirED->setText(toqstr(external_path(rc.thesaurusdir_path)));
+       hunspellDirED->setText(toqstr(external_path(rc.hunspelldir_path)));
        pathPrefixED->setText(toqstr(external_path_list(rc.path_prefix)));
        // FIXME: should be a checkbox only
        lyxserverDirED->setText(toqstr(external_path(rc.lyxpipes)));
 }
 
 
-void PrefPaths::select_exampledir()
+void PrefPaths::selectExampledir()
 {
        QString file = browseDir(internalPath(exampleDirED->text()),
                qt_("Select directory for example files"));
@@ -1033,7 +1189,7 @@ void PrefPaths::select_exampledir()
 }
 
 
-void PrefPaths::select_templatedir()
+void PrefPaths::selectTemplatedir()
 {
        QString file = browseDir(internalPath(templateDirED->text()),
                qt_("Select a document templates directory"));
@@ -1042,7 +1198,7 @@ void PrefPaths::select_templatedir()
 }
 
 
-void PrefPaths::select_tempdir()
+void PrefPaths::selectTempdir()
 {
        QString file = browseDir(internalPath(tempDirED->text()),
                qt_("Select a temporary directory"));
@@ -1051,7 +1207,7 @@ void PrefPaths::select_tempdir()
 }
 
 
-void PrefPaths::select_backupdir()
+void PrefPaths::selectBackupdir()
 {
        QString file = browseDir(internalPath(backupDirED->text()),
                qt_("Select a backups directory"));
@@ -1060,7 +1216,7 @@ void PrefPaths::select_backupdir()
 }
 
 
-void PrefPaths::select_workingdir()
+void PrefPaths::selectWorkingdir()
 {
        QString file = browseDir(internalPath(workingDirED->text()),
                qt_("Select a document directory"));
@@ -1069,7 +1225,7 @@ void PrefPaths::select_workingdir()
 }
 
 
-void PrefPaths::select_thesaurusdir()
+void PrefPaths::selectThesaurusdir()
 {
        QString file = browseDir(internalPath(thesaurusDirED->text()),
                qt_("Set the path to the thesaurus dictionaries"));
@@ -1078,7 +1234,16 @@ void PrefPaths::select_thesaurusdir()
 }
 
 
-void PrefPaths::select_lyxpipe()
+void PrefPaths::selectHunspelldir()
+{
+       QString file = browseDir(internalPath(hunspellDirED->text()),
+               qt_("Set the path to the Hunspell dictionaries"));
+       if (!file.isEmpty())
+               hunspellDirED->setText(file);
+}
+
+
+void PrefPaths::selectLyxPipe()
 {
        QString file = form_->browse(internalPath(lyxserverDirED->text()),
                qt_("Give a filename for the LyX server pipe"));
@@ -1098,18 +1263,17 @@ PrefSpellchecker::PrefSpellchecker(GuiPreferences * form)
 {
        setupUi(this);
 
-       connect(persDictionaryPB, SIGNAL(clicked()), this, SLOT(select_dict()));
+       spellcheckerCB->addItem("aspell");
+       spellcheckerCB->addItem("hunspell");
 
+       connect(spellcheckerCB, SIGNAL(currentIndexChanged(int)),
+               this, SIGNAL(changed()));
        connect(altLanguageED, SIGNAL(textChanged(QString)),
                this, SIGNAL(changed()));
        connect(escapeCharactersED, SIGNAL(textChanged(QString)),
                this, SIGNAL(changed()));
-       connect(persDictionaryED, SIGNAL(textChanged(QString)),
-               this, SIGNAL(changed()));
        connect(compoundWordCB, SIGNAL(clicked()),
                this, SIGNAL(changed()));
-       connect(inputEncodingCB, SIGNAL(clicked()),
-               this, SIGNAL(changed()));
        connect(spellcheckContinuouslyCB, SIGNAL(clicked()),
                this, SIGNAL(changed()));
 }
@@ -1117,43 +1281,25 @@ PrefSpellchecker::PrefSpellchecker(GuiPreferences * form)
 
 void PrefSpellchecker::apply(LyXRC & rc) const
 {
-       // FIXME: remove spellchecker_use_alt_lang
+       rc.spellchecker = fromqstr(spellcheckerCB->currentText());
        rc.spellchecker_alt_lang = fromqstr(altLanguageED->text());
-       rc.spellchecker_use_alt_lang = !rc.spellchecker_alt_lang.empty();
-       // FIXME: remove spellchecker_use_esc_chars
        rc.spellchecker_esc_chars = fromqstr(escapeCharactersED->text());
-       rc.spellchecker_use_esc_chars = !rc.spellchecker_esc_chars.empty();
-       // FIXME: remove spellchecker_use_pers_dict
-       rc.spellchecker_pers_dict = internal_path(fromqstr(persDictionaryED->text()));
-       rc.spellchecker_use_pers_dict = !rc.spellchecker_pers_dict.empty();
        rc.spellchecker_accept_compound = compoundWordCB->isChecked();
-       rc.spellchecker_use_input_encoding = inputEncodingCB->isChecked();
        rc.spellcheck_continuously = spellcheckContinuouslyCB->isChecked();
 }
 
 
 void PrefSpellchecker::update(LyXRC const & rc)
 {
-       // FIXME: remove spellchecker_use_alt_lang
+       spellcheckerCB->setCurrentIndex(spellcheckerCB->findText(
+               toqstr(rc.spellchecker)));
        altLanguageED->setText(toqstr(rc.spellchecker_alt_lang));
-       // FIXME: remove spellchecker_use_esc_chars
        escapeCharactersED->setText(toqstr(rc.spellchecker_esc_chars));
-       // FIXME: remove spellchecker_use_pers_dict
-       persDictionaryED->setText(toqstr(external_path(rc.spellchecker_pers_dict)));
        compoundWordCB->setChecked(rc.spellchecker_accept_compound);
-       inputEncodingCB->setChecked(rc.spellchecker_use_input_encoding);
        spellcheckContinuouslyCB->setChecked(rc.spellcheck_continuously);
 }
 
 
-void PrefSpellchecker::select_dict()
-{
-       QString file = form_->browsedict(internalPath(persDictionaryED->text()));
-       if (!file.isEmpty())
-               persDictionaryED->setText(file);
-}
-
-
 
 /////////////////////////////////////////////////////////////////////
 //
@@ -1168,21 +1314,21 @@ PrefConverters::PrefConverters(GuiPreferences * form)
        setupUi(this);
 
        connect(converterNewPB, SIGNAL(clicked()),
-               this, SLOT(update_converter()));
+               this, SLOT(updateConverter()));
        connect(converterRemovePB, SIGNAL(clicked()),
-               this, SLOT(remove_converter()));
+               this, SLOT(removeConverter()));
        connect(converterModifyPB, SIGNAL(clicked()),
-               this, SLOT(update_converter()));
+               this, SLOT(updateConverter()));
        connect(convertersLW, SIGNAL(currentRowChanged(int)),
-               this, SLOT(switch_converter()));
+               this, SLOT(switchConverter()));
        connect(converterFromCO, SIGNAL(activated(QString)),
-               this, SLOT(converter_changed()));
+               this, SLOT(changeConverter()));
        connect(converterToCO, SIGNAL(activated(QString)),
-               this, SLOT(converter_changed()));
+               this, SLOT(changeConverter()));
        connect(converterED, SIGNAL(textEdited(QString)),
-               this, SLOT(converter_changed()));
+               this, SLOT(changeConverter()));
        connect(converterFlagED, SIGNAL(textEdited(QString)),
-               this, SLOT(converter_changed()));
+               this, SLOT(changeConverter()));
        connect(converterNewPB, SIGNAL(clicked()),
                this, SIGNAL(changed()));
        connect(converterRemovePB, SIGNAL(clicked()),
@@ -1232,7 +1378,7 @@ void PrefConverters::updateGui()
        }
 
        // currentRowChanged(int) is also triggered when updating the listwidget
-       // block signals to avoid unnecessary calls to switch_converter()
+       // block signals to avoid unnecessary calls to switchConverter()
        convertersLW->blockSignals(true);
        convertersLW->clear();
 
@@ -1263,7 +1409,7 @@ void PrefConverters::updateGui()
 }
 
 
-void PrefConverters::switch_converter()
+void PrefConverters::switchConverter()
 {
        int const cnr = convertersLW->currentItem()->type();
        Converter const & c(form_->converters().get(cnr));
@@ -1276,7 +1422,7 @@ void PrefConverters::switch_converter()
 }
 
 
-void PrefConverters::converter_changed()
+void PrefConverters::changeConverter()
 {
        updateButtons();
 }
@@ -1312,7 +1458,7 @@ void PrefConverters::updateButtons()
 // FIXME: user must
 // specify unique from/to or it doesn't appear. This is really bad UI
 // this is why we can use the same function for both new and modify
-void PrefConverters::update_converter()
+void PrefConverters::updateConverter()
 {
        Format const & from = form_->formats().get(converterFromCO->currentIndex());
        Format const & to = form_->formats().get(converterToCO->currentIndex());
@@ -1334,7 +1480,7 @@ void PrefConverters::update_converter()
 }
 
 
-void PrefConverters::remove_converter()
+void PrefConverters::removeConverter()
 {
        Format const & from = form_->formats().get(converterFromCO->currentIndex());
        Format const & to = form_->formats().get(converterToCO->currentIndex());
@@ -1922,7 +2068,7 @@ PrefUserInterface::PrefUserInterface(GuiPreferences * form)
        connect(openDocumentsInTabsCB, SIGNAL(clicked()),
                this, SIGNAL(changed()));
        connect(uiFilePB, SIGNAL(clicked()),
-               this, SLOT(select_ui()));
+               this, SLOT(selectUi()));
        connect(uiFileED, SIGNAL(textChanged(QString)),
                this, SIGNAL(changed()));
        connect(restoreCursorCB, SIGNAL(clicked()),
@@ -1975,7 +2121,7 @@ void PrefUserInterface::update(LyXRC const & rc)
 }
 
 
-void PrefUserInterface::select_ui()
+void PrefUserInterface::selectUi()
 {
        QString file = form_->browseUI(internalPath(uiFileED->text()));
        if (!file.isEmpty())
@@ -2017,6 +2163,8 @@ PrefEdit::PrefEdit(GuiPreferences * form)
                this, SIGNAL(changed()));
        connect(toggleTabbarCB, SIGNAL(toggled(bool)),
                this, SIGNAL(changed()));
+       connect(toggleMenubarCB, SIGNAL(toggled(bool)),
+               this, SIGNAL(changed()));
        connect(toggleScrollbarCB, SIGNAL(toggled(bool)),
                this, SIGNAL(changed()));
        connect(toggleToolbarsCB, SIGNAL(toggled(bool)),
@@ -2038,6 +2186,7 @@ void PrefEdit::apply(LyXRC & rc) const
        rc.full_screen_toolbars = toggleToolbarsCB->isChecked();
        rc.full_screen_scrollbar = toggleScrollbarCB->isChecked();
        rc.full_screen_tabbar = toggleTabbarCB->isChecked();
+       rc.full_screen_menubar = toggleMenubarCB->isChecked();
        rc.full_screen_width = fullscreenWidthSB->value();
        rc.full_screen_limit = fullscreenLimitGB->isChecked();
 }
@@ -2053,6 +2202,7 @@ void PrefEdit::update(LyXRC const & rc)
        toggleScrollbarCB->setChecked(rc.full_screen_scrollbar);
        toggleToolbarsCB->setChecked(rc.full_screen_toolbars);
        toggleTabbarCB->setChecked(rc.full_screen_tabbar);
+       toggleMenubarCB->setChecked(rc.full_screen_menubar);
        fullscreenWidthSB->setValue(rc.full_screen_width);
        fullscreenLimitGB->setChecked(rc.full_screen_limit);
 }
@@ -2085,7 +2235,7 @@ PrefShortcuts::PrefShortcuts(GuiPreferences * form)
        // shortcutsTW->setSelectionMode(QAbstractItemView::MultiSelection);
 
        connect(bindFilePB, SIGNAL(clicked()),
-               this, SLOT(select_bind()));
+               this, SLOT(selectBind()));
        connect(bindFileED, SIGNAL(textChanged(QString)),
                this, SIGNAL(changed()));
        connect(removePB, SIGNAL(clicked()),
@@ -2103,13 +2253,13 @@ PrefShortcuts::PrefShortcuts(GuiPreferences * form)
        connect(shortcut_->cancelPB, SIGNAL(clicked()),
                shortcut_, SLOT(reject()));
        connect(shortcut_->clearPB, SIGNAL(clicked()),
-               this, SLOT(shortcut_clearPB_pressed()));
+               this, SLOT(shortcutClearPressed()));
        connect(shortcut_->removePB, SIGNAL(clicked()),
-               this, SLOT(shortcut_removePB_pressed()));
+               this, SLOT(shortcutRemovePressed()));
        connect(shortcut_->okPB, SIGNAL(clicked()),
-               this, SLOT(shortcut_okPB_pressed()));
+               this, SLOT(shortcutOkPressed()));
        connect(shortcut_->cancelPB, SIGNAL(clicked()),
-               this, SLOT(shortcut_cancelPB_pressed()));
+               this, SLOT(shortcutCancelPressed()));
 }
 
 
@@ -2135,8 +2285,8 @@ void PrefShortcuts::apply(LyXRC & rc) const
        // The good thing is that the menus are updated automatically.
        theTopLevelKeymap().clear();
        theTopLevelKeymap().read("site");
-       theTopLevelKeymap().read(rc.bind_file);
-       theTopLevelKeymap().read("user");
+       theTopLevelKeymap().read(rc.bind_file, 0, KeyMap::Fallback);
+       theTopLevelKeymap().read("user", 0, KeyMap::MissingOK);
 }
 
 
@@ -2150,7 +2300,7 @@ void PrefShortcuts::update(LyXRC const & rc)
        system_bind_.read("site");
        system_bind_.read(rc.bind_file);
        // \unbind in user.bind is added to user_unbind_
-       user_bind_.read("user", &user_unbind_);
+       user_bind_.read("user", &user_unbind_, KeyMap::MissingOK);
        updateShortcutsTW();
 }
 
@@ -2384,7 +2534,7 @@ void PrefShortcuts::removeShortcut()
 }
 
 
-void PrefShortcuts::select_bind()
+void PrefShortcuts::selectBind()
 {
        QString file = form_->browsebind(internalPath(bindFileED->text()));
        if (!file.isEmpty()) {
@@ -2453,7 +2603,7 @@ docstring makeCmdString(FuncRequest const & f)
 }
 
 
-void PrefShortcuts::shortcut_okPB_pressed()
+void PrefShortcuts::shortcutOkPressed()
 {
        QString const new_lfun = shortcut_->lfunLE->text();
        FuncRequest func = lyxaction.lookupFunc(fromqstr(new_lfun));
@@ -2516,19 +2666,19 @@ void PrefShortcuts::shortcut_okPB_pressed()
 }
 
 
-void PrefShortcuts::shortcut_cancelPB_pressed()
+void PrefShortcuts::shortcutCancelPressed()
 {
        shortcut_->shortcutWG->reset();
 }
 
 
-void PrefShortcuts::shortcut_clearPB_pressed()
+void PrefShortcuts::shortcutClearPressed()
 {
        shortcut_->shortcutWG->reset();
 }
 
 
-void PrefShortcuts::shortcut_removePB_pressed()
+void PrefShortcuts::shortcutRemovePressed()
 {
        shortcut_->shortcutWG->removeFromSequence();
 }
@@ -2757,13 +2907,6 @@ QString GuiPreferences::browsekbmap(QString const & file) const
 }
 
 
-QString GuiPreferences::browsedict(QString const & file) const
-{
-       return browseFile(file, qt_("Choose personal dictionary"),
-               QStringList(qt_("*.pws")));
-}
-
-
 QString GuiPreferences::browse(QString const & file,
        QString const & title) const
 {