]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/QPrefs.C
the convert patch
[lyx.git] / src / frontends / qt2 / QPrefs.C
index fc53491e22c78ba3d4f230aae6a6e0773d16838c..f180a995f8d08ba9b2e99df566786eb77055049e 100644 (file)
@@ -5,52 +5,98 @@
  *
  * \author John Levon
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
-#include "support/lstrings.h"
-#include "ControlPrefs.h"
+#include "QPrefs.h"
 #include "QPrefsDialog.h"
+
+#include "lcolorcache.h"
+#include "Qt2BC.h"
+#include "qt_helpers.h"
+
 #include "ui/QPrefAsciiModule.h"
 #include "ui/QPrefDateModule.h"
 #include "ui/QPrefKeyboardModule.h"
 #include "ui/QPrefLatexModule.h"
 #include "ui/QPrefScreenFontsModule.h"
 #include "ui/QPrefColorsModule.h"
+#if defined(__CYGWIN__) || defined(__CYGWIN32__)
+#include "ui/QPrefCygwinPathModule.h"
+#endif
 #include "ui/QPrefDisplayModule.h"
 #include "ui/QPrefPathsModule.h"
 #include "ui/QPrefSpellcheckerModule.h"
-#include "ui/QPrefConvertersModule.h"
-#include "ui/QPrefFileformatsModule.h"
 #include "ui/QPrefLanguageModule.h"
 #include "ui/QPrefPrinterModule.h"
 #include "ui/QPrefUIModule.h"
-#include "QPrefs.h"
-#include "Qt2BC.h"
-#include "lyxrc.h"
-#include "frnt_lang.h"
-#include "helper_funcs.h"
+#include "ui/QPrefIdentityModule.h"
+
+#include "debug.h"
+#include "lastfiles.h"
+#include "LColor.h"
+#include "lyxfont.h"
+
+#include "support/lstrings.h"
+
+#include "controllers/ControlPrefs.h"
+#include "controllers/frnt_lang.h"
+#include "controllers/helper_funcs.h"
+
+#include "frontends/lyx_gui.h"
 
-#include <qpushbutton.h>
 #include <qcheckbox.h>
+#include "qcoloritem.h"
+#include <qcombobox.h>
+#include <qlabel.h>
 #include <qlineedit.h>
+#include <qpushbutton.h>
 #include <qspinbox.h>
-#include <qcombobox.h> 
-#include <qlistbox.h>
-typedef Qt2CB<ControlPrefs, Qt2DB<QPrefsDialog> > base_class;
 
+#include <boost/tuple/tuple.hpp>
+
+#include <iomanip>
+#include <sstream>
+
+using lyx::support::compare_no_case;
+
+using std::distance;
+using std::endl;
+using std::setfill;
+using std::setw;
+using std::string;
+using std::ostringstream;
+using std::pair;
+using std::vector;
+
+namespace lyx {
+namespace frontend {
 
-QPrefs::QPrefs()
-       : base_class(_("LyX: Preferences"))
+typedef QController<ControlPrefs, QView<QPrefsDialog> > base_class;
+
+QPrefs::QPrefs(Dialog & parent)
+       : base_class(parent, _("LyX: Preferences"))
+{
+}
+
+
+Converters & QPrefs::converters()
 {
+       return controller().converters();
+}
+
+
+Formats & QPrefs::formats()
+{
+       return controller().formats();
+}
+
+
+Movers & QPrefs::movers()
+{
+       return controller().movers();
 }
 
 
@@ -58,23 +104,39 @@ void QPrefs::build_dialog()
 {
        dialog_.reset(new QPrefsDialog(this));
 
-       bc().setOK(dialog_->savePB);
-       bc().setApply(dialog_->applyPB);
-       bc().setCancel(dialog_->closePB);
-       bc().setRestore(dialog_->restorePB);
+       bcview().setOK(dialog_->savePB);
+       bcview().setApply(dialog_->applyPB);
+       bcview().setCancel(dialog_->closePB);
+       bcview().setRestore(dialog_->restorePB);
+
+       dialog_->uiModule->lastfilesSB->setMaxValue(maxlastfiles);
+
        QPrefLanguageModule * langmod(dialog_->languageModule);
+
        langmod->defaultLanguageCO->clear();
        // store the lang identifiers for later
-       vector<frnt::LanguagePair> const langs = frnt::getLanguageData(false);
+       using lyx::frontend::LanguagePair;
+       vector<LanguagePair> const langs =
+               lyx::frontend::getLanguageData(false);
        lang_ = getSecond(langs);
 
-       vector<frnt::LanguagePair>::const_iterator lit  = langs.begin();
-       vector<frnt::LanguagePair>::const_iterator lend = langs.end();
+       vector<LanguagePair>::const_iterator lit  = langs.begin();
+       vector<LanguagePair>::const_iterator lend = langs.end();
        for (; lit != lend; ++lit) {
-               langmod->defaultLanguageCO->insertItem(lit->first.c_str());
+               langmod->defaultLanguageCO->insertItem(toqstr(lit->first));
        }
+
+       QPrefSpellcheckerModule * spellmod(dialog_->spellcheckerModule);
+       spellmod->spellCommandCO->insertItem(qt_("ispell"));
+       spellmod->spellCommandCO->insertItem(qt_("aspell"));
+       spellmod->spellCommandCO->insertItem(qt_("hspell"));
+#ifdef USE_PSPELL
+       spellmod->spellCommandCO->insertItem(qt_("pspell (library)"));
+#else
+#ifdef USE_ASPELL
+       spellmod->spellCommandCO->insertItem(qt_("aspell (library)"));
+#endif
+#endif
 }
 
 
@@ -82,112 +144,132 @@ void QPrefs::apply()
 {
        LyXRC & rc(controller().rc());
 
-       // do something ... 
-
        QPrefLanguageModule * langmod(dialog_->languageModule);
+
        // FIXME: remove rtl_support bool
        rc.rtl_support = langmod->rtlCB->isChecked();
-       rc.mark_foreign_language = langmod->markForeignCB->isChecked(); 
-       rc.language_auto_begin = langmod->autoBeginCB->isChecked(); 
-       rc.language_auto_end = langmod->autoEndCB->isChecked(); 
+       rc.mark_foreign_language = langmod->markForeignCB->isChecked();
+       rc.language_auto_begin = langmod->autoBeginCB->isChecked();
+       rc.language_auto_end = langmod->autoEndCB->isChecked();
        rc.language_use_babel = langmod->useBabelCB->isChecked();
        rc.language_global_options = langmod->globalCB->isChecked();
-       rc.language_package = langmod->languagePackageED->text().latin1();
-       rc.language_command_begin = langmod->startCommandED->text().latin1();
-       rc.language_command_end = langmod->endCommandED->text().latin1();
-        rc.default_language = lang_[langmod->defaultLanguageCO->currentItem()];
+       rc.language_package = fromqstr(langmod->languagePackageED->text());
+       rc.language_command_begin = fromqstr(langmod->startCommandED->text());
+       rc.language_command_end = fromqstr(langmod->endCommandED->text());
+       rc.default_language = lang_[langmod->defaultLanguageCO->currentItem()];
 
-       QPrefUIModule * uimod(dialog_->uiModule); 
+       QPrefUIModule * uimod(dialog_->uiModule);
 
-       rc.bind_file = uimod->uiFileED->text().latin1();
-       rc.ui_file = uimod->bindFileED->text().latin1();
-       rc.cursor_follows_scrollbar = uimod->cursorFollowsCB->isChecked(); 
+       rc.ui_file = fromqstr(uimod->uiFileED->text());
+       rc.bind_file = fromqstr(uimod->bindFileED->text());
+       rc.cursor_follows_scrollbar = uimod->cursorFollowsCB->isChecked();
        rc.wheel_jump = uimod->wheelMouseSB->value();
        rc.autosave = uimod->autoSaveSB->value() * 60;
        rc.make_backup = uimod->autoSaveCB->isChecked();
        rc.num_lastfiles = uimod->lastfilesSB->value();
+
+
        QPrefKeyboardModule * keymod(dialog_->keyboardModule);
 
-       // FIXME: can derive CB from the two EDs 
+       // FIXME: can derive CB from the two EDs
        rc.use_kbmap = keymod->keymapCB->isChecked();
-       rc.primary_kbmap = keymod->firstKeymapED->text().latin1();
-       rc.secondary_kbmap = keymod->secondKeymapED->text().latin1();
+       rc.primary_kbmap = fromqstr(keymod->firstKeymapED->text());
+       rc.secondary_kbmap = fromqstr(keymod->secondKeymapED->text());
+
 
        QPrefAsciiModule * ascmod(dialog_->asciiModule);
 
        rc.ascii_linelen = ascmod->asciiLinelengthSB->value();
-       rc.ascii_roff_command = ascmod->asciiRoffED->text().latin1();
+       rc.ascii_roff_command = fromqstr(ascmod->asciiRoffED->text());
 
 
        QPrefDateModule * datemod(dialog_->dateModule);
 
-       rc.date_insert_format = datemod->DateED->text().latin1();
+       rc.date_insert_format = fromqstr(datemod->DateED->text());
 
+#if defined(__CYGWIN__) || defined(__CYGWIN32__)
+       QPrefCygwinPathModule * cygwinmod(dialog_->cygwinpathModule);
+       rc.cygwin_path_fix = cygwinmod->pathCB->isChecked();
+#endif
 
        QPrefLatexModule * latexmod(dialog_->latexModule);
 
-       rc.fontenc = latexmod->latexEncodingED->text().latin1();
-       rc.chktex_command = latexmod->latexChecktexED->text().latin1(); 
+       rc.fontenc = fromqstr(latexmod->latexEncodingED->text());
+       rc.chktex_command = fromqstr(latexmod->latexChecktexED->text());
+       rc.bibtex_command = fromqstr(latexmod->latexBibtexED->text());
+       rc.index_command = fromqstr(latexmod->latexIndexED->text());
        rc.auto_reset_options = latexmod->latexAutoresetCB->isChecked();
-       rc.view_dvi_paper_option = latexmod->latexDviPaperED->text().latin1();
+       rc.view_dvi_paper_option = fromqstr(latexmod->latexDviPaperED->text());
        rc.default_papersize =
-               static_cast<BufferParams::PAPER_SIZE>(latexmod->latexPaperSizeCO->currentItem());
-
+               static_cast<PAPER_SIZE>(latexmod->latexPaperSizeCO->currentItem());
 
        QPrefDisplayModule * displaymod(dialog_->displayModule);
 
-       rc.preview = displaymod->previewCB->isChecked();
-       grfx::DisplayType dtype(grfx::ColorDisplay);
+       switch (displaymod->instantPreviewCO->currentItem()) {
+       case 0:
+               rc.preview = LyXRC::PREVIEW_OFF;
+               break;
+       case 1:
+               rc.preview = LyXRC::PREVIEW_NO_MATH;
+               break;
+       case 2:
+               rc.preview = LyXRC::PREVIEW_ON;
+               break;
+       }
+
+       lyx::graphics::DisplayType dtype(lyx::graphics::ColorDisplay);
+
        switch (displaymod->displayGraphicsCO->currentItem()) {
-               case 3: dtype = grfx::NoDisplay; break;
-               case 2: dtype = grfx::ColorDisplay; break;
-               case 1: dtype = grfx::GrayscaleDisplay; break;
-               case 0: dtype = grfx::MonochromeDisplay; break;
+       case 3: dtype = lyx::graphics::NoDisplay; break;
+       case 2: dtype = lyx::graphics::ColorDisplay; break;
+       case 1: dtype = lyx::graphics::GrayscaleDisplay;        break;
+       case 0: dtype = lyx::graphics::MonochromeDisplay; break;
        }
        rc.display_graphics = dtype;
+
 #ifdef WITH_WARNINGS
 #warning FIXME!! The graphics cache no longer has a changeDisplay method.
 #endif
 #if 0
        if (old_value != rc.display_graphics) {
-               grfx::GCache & gc = grfx::GCache::get();
+               lyx::graphics::GCache & gc = lyx::graphics::GCache::get();
                gc.changeDisplay();
        }
 #endif
-        
+
        QPrefPathsModule * pathsmod(dialog_->pathsModule);
-       rc.document_path = pathsmod->workingDirED->text().latin1();
-       rc.template_path = pathsmod->templateDirED->text().latin1();
-       rc.backupdir_path = pathsmod->backupDirED->text().latin1();
-       rc.use_tempdir = pathsmod->tempDirCB->isChecked();
-       rc.tempdir_path = pathsmod->tempDirED->text().latin1();
+
+       rc.document_path = fromqstr(pathsmod->workingDirED->text());
+       rc.template_path = fromqstr(pathsmod->templateDirED->text());
+       rc.backupdir_path = fromqstr(pathsmod->backupDirED->text());
+       rc.tempdir_path = fromqstr(pathsmod->tempDirED->text());
+       rc.path_prefix = fromqstr(pathsmod->pathPrefixED->text());
        // FIXME: should be a checkbox only
-       rc.lyxpipes = pathsmod->lyxserverDirED->text().latin1();
+       rc.lyxpipes = fromqstr(pathsmod->lyxserverDirED->text());
 
 
        QPrefSpellcheckerModule * spellmod(dialog_->spellcheckerModule);
 
-       if (spellmod->spellCommandCO->currentItem() == 0)
-               rc.isp_command = "ispell";
-       else
-               rc.isp_command = "aspell";
+       switch (spellmod->spellCommandCO->currentItem()) {
+               case 0:
+               case 1:
+               case 2:
+                       rc.use_spell_lib = false;
+                       rc.isp_command = fromqstr(spellmod->spellCommandCO->currentText());
+                       break;
+               case 3:
+                       rc.use_spell_lib = true;
+                       break;
+       }
+
        // FIXME: remove isp_use_alt_lang
-       rc.isp_alt_lang = spellmod->altLanguageED->text().latin1();
-       rc.isp_use_alt_lang = !rc.isp_alt_lang.empty(); 
-       // FIXME: remove isp_use_esc_chars 
-       rc.isp_esc_chars = spellmod->escapeCharactersED->text().latin1();
+       rc.isp_alt_lang = fromqstr(spellmod->altLanguageED->text());
+       rc.isp_use_alt_lang = !rc.isp_alt_lang.empty();
+       // FIXME: remove isp_use_esc_chars
+       rc.isp_esc_chars = fromqstr(spellmod->escapeCharactersED->text());
        rc.isp_use_esc_chars = !rc.isp_esc_chars.empty();
-       // FIXME: remove isp_use_pers_dict 
-       rc.isp_pers_dict = spellmod->persDictionaryED->text().latin1();
+       // FIXME: remove isp_use_pers_dict
+       rc.isp_pers_dict = fromqstr(spellmod->persDictionaryED->text());
        rc.isp_use_pers_dict = !rc.isp_pers_dict.empty();
        rc.isp_accept_compound = spellmod->compoundWordCB->isChecked();
        rc.isp_use_input_encoding = spellmod->inputEncodingCB->isChecked();
@@ -196,45 +278,53 @@ void QPrefs::apply()
        QPrefPrinterModule * printmod(dialog_->printerModule);
 
        rc.print_adapt_output = printmod->printerAdaptCB->isChecked();
-       rc.print_command = printmod->printerCommandED->text().latin1();
-       rc.printer = printmod->printerNameED->text().latin1();
-
-       rc.print_pagerange_flag = printmod->printerPageRangeED->text().latin1();
-       rc.print_copies_flag = printmod->printerCopiesED->text().latin1();
-       rc.print_reverse_flag = printmod->printerReverseED->text().latin1();
-       rc.print_to_printer = printmod->printerToPrinterED->text().latin1();
-       rc.print_file_extension = printmod->printerExtensionED->text().latin1();
-       rc.print_file_extension = printmod->printerSpoolCommandED->text().latin1();
-       rc.print_paper_flag = printmod->printerPaperTypeED->text().latin1();
-       rc.print_evenpage_flag = printmod->printerEvenED->text().latin1();
-       rc.print_oddpage_flag = printmod->printerOddED->text().latin1();
-       rc.print_collcopies_flag = printmod->printerCollatedED->text().latin1();
-       rc.print_landscape_flag = printmod->printerLandscapeED->text().latin1();
-       rc.print_to_file = printmod->printerToFileED->text().latin1();
-       rc.print_extra_options = printmod->printerExtraED->text().latin1();
-       rc.print_spool_printerprefix = printmod->printerSpoolPrefixED->text().latin1();
-       rc.print_paper_dimension_flag = printmod->printerPaperSizeED->text().latin1();
-
+       rc.print_command = fromqstr(printmod->printerCommandED->text());
+       rc.printer = fromqstr(printmod->printerNameED->text());
+
+       rc.print_pagerange_flag = fromqstr(printmod->printerPageRangeED->text());
+       rc.print_copies_flag = fromqstr(printmod->printerCopiesED->text());
+       rc.print_reverse_flag = fromqstr(printmod->printerReverseED->text());
+       rc.print_to_printer = fromqstr(printmod->printerToPrinterED->text());
+       rc.print_file_extension = fromqstr(printmod->printerExtensionED->text());
+       rc.print_spool_command = fromqstr(printmod->printerSpoolCommandED->text());
+       rc.print_paper_flag = fromqstr(printmod->printerPaperTypeED->text());
+       rc.print_evenpage_flag = fromqstr(printmod->printerEvenED->text());
+       rc.print_oddpage_flag = fromqstr(printmod->printerOddED->text());
+       rc.print_collcopies_flag = fromqstr(printmod->printerCollatedED->text());
+       rc.print_landscape_flag = fromqstr(printmod->printerLandscapeED->text());
+       rc.print_to_file = fromqstr(printmod->printerToFileED->text());
+       rc.print_extra_options = fromqstr(printmod->printerExtraED->text());
+       rc.print_spool_printerprefix = fromqstr(printmod->printerSpoolPrefixED->text());
+       rc.print_paper_dimension_flag = fromqstr(printmod->printerPaperSizeED->text());
+
+
+       QPrefIdentityModule * idmod(dialog_->identityModule);
+       rc.user_name = fromqstr(idmod->nameED->text());
+       rc.user_email = fromqstr(idmod->emailED->text());
 
        QPrefScreenFontsModule * fontmod(dialog_->screenfontsModule);
 
        LyXRC const oldrc(rc);
-       rc.roman_font_name = fontmod->screenRomanED->text().latin1();
-       rc.sans_font_name = fontmod->screenSansED->text().latin1();
-       rc.typewriter_font_name = fontmod->screenTypewriterED->text().latin1();
+
+       boost::tie(rc.roman_font_name, rc.roman_font_foundry)
+               = parseFontName(fromqstr(fontmod->screenRomanCO->currentText()));
+       boost::tie(rc.sans_font_name, rc.sans_font_foundry) =
+               parseFontName(fromqstr(fontmod->screenSansCO->currentText()));
+       boost::tie(rc.typewriter_font_name, rc.typewriter_font_foundry) =
+               parseFontName(fromqstr(fontmod->screenTypewriterCO->currentText()));
+
        rc.zoom = fontmod->screenZoomSB->value();
        rc.dpi = fontmod->screenDpiSB->value();
-       rc.font_sizes[LyXFont::SIZE_TINY] = strToDbl(fontmod->screenTinyED->text().latin1());
-       rc.font_sizes[LyXFont::SIZE_SCRIPT] = strToDbl(fontmod->screenSmallestED->text().latin1());
-       rc.font_sizes[LyXFont::SIZE_FOOTNOTE] = strToDbl(fontmod->screenSmallerED->text().latin1());
-       rc.font_sizes[LyXFont::SIZE_SMALL] = strToDbl(fontmod->screenSmallED->text().latin1());
-       rc.font_sizes[LyXFont::SIZE_NORMAL] = strToDbl(fontmod->screenNormalED->text().latin1());
-       rc.font_sizes[LyXFont::SIZE_LARGE] = strToDbl(fontmod->screenLargeED->text().latin1());
-       rc.font_sizes[LyXFont::SIZE_LARGER] = strToDbl(fontmod->screenLargerED->text().latin1());
-       rc.font_sizes[LyXFont::SIZE_LARGEST] = strToDbl(fontmod->screenLargestED->text().latin1());
-       rc.font_sizes[LyXFont::SIZE_HUGE] = strToDbl(fontmod->screenHugeED->text().latin1());
-       rc.font_sizes[LyXFont::SIZE_HUGER] = strToDbl(fontmod->screenHugerED->text().latin1());
+       rc.font_sizes[LyXFont::SIZE_TINY] = fromqstr(fontmod->screenTinyED->text());
+       rc.font_sizes[LyXFont::SIZE_SCRIPT] = fromqstr(fontmod->screenSmallestED->text());
+       rc.font_sizes[LyXFont::SIZE_FOOTNOTE] = fromqstr(fontmod->screenSmallerED->text());
+       rc.font_sizes[LyXFont::SIZE_SMALL] = fromqstr(fontmod->screenSmallED->text());
+       rc.font_sizes[LyXFont::SIZE_NORMAL] = fromqstr(fontmod->screenNormalED->text());
+       rc.font_sizes[LyXFont::SIZE_LARGE] = fromqstr(fontmod->screenLargeED->text());
+       rc.font_sizes[LyXFont::SIZE_LARGER] = fromqstr(fontmod->screenLargerED->text());
+       rc.font_sizes[LyXFont::SIZE_LARGEST] = fromqstr(fontmod->screenLargestED->text());
+       rc.font_sizes[LyXFont::SIZE_HUGE] = fromqstr(fontmod->screenHugeED->text());
+       rc.font_sizes[LyXFont::SIZE_HUGER] = fromqstr(fontmod->screenHugerED->text());
 
        if (rc.font_sizes != oldrc.font_sizes
                || rc.roman_font_name != oldrc.roman_font_name
@@ -243,57 +333,145 @@ void QPrefs::apply()
                || rc.zoom != oldrc.zoom || rc.dpi != oldrc.dpi) {
                controller().updateScreenFonts();
        }
-       // FIXME: here we read new converters/ formats
 
-       controller().setConverters(converters_);
-       controller().setFormats(formats_); 
+       QPrefColorsModule * colmod(dialog_->colorsModule);
+
+       unsigned int i;
 
-       // FIXME: controller().setColor(lc, hexname) 
+       for (i = 0; i < colmod->lyxObjectsLB->count(); ++i) {
+               QListBoxItem * ib(colmod->lyxObjectsLB->item(i));
+               QColorItem * ci(static_cast<QColorItem*>(ib));
+
+               LColor::color const col(dialog_->colors_[i]);
+               QColor const & qcol(lcolorcache.get(col));
+
+               // FIXME: dubious, but it's what xforms does
+               if (qcol != ci->color()) {
+                       ostringstream ostr;
+
+                       ostr << '#' << std::setbase(16) << setfill('0')
+                            << setw(2) << ci->color().red()
+                            << setw(2) << ci->color().green()
+                            << setw(2) << ci->color().blue();
+
+                       string newhex(ostr.str());
+                       controller().setColor(col, newhex);
+               }
+       }
 }
 
 
-// FIXME: move to helper_funcs.h 
+// FIXME: move to helper_funcs.h
 namespace {
+
 template<class A>
 typename std::vector<A>::size_type
 findPos(std::vector<A> const & vec, A const & val)
 {
-       typename std::vector<A>::const_iterator it =
-               std::find(vec.begin(), vec.end(), val);
+       typedef typename std::vector<A>::const_iterator Cit;
+
+       Cit it = std::find(vec.begin(), vec.end(), val);
        if (it == vec.end())
                return 0;
-       return std::distance(vec.begin(), it);
+       return distance(vec.begin(), it);
 }
 
+void setComboxFont(QComboBox * cb, string const & family, string const & foundry)
+{
+       string const name = makeFontName(family, foundry);
+       for (int i = 0; i < cb->count(); ++i) {
+               if (fromqstr(cb->text(i)) == name) {
+                       cb->setCurrentItem(i);
+                       return;
+               }
+       }
+
+       // Try matching without foundry name
+
+       // We count in reverse in order to prefer the Xft foundry
+       for (int i = cb->count() - 1; i >= 0; --i) {
+               pair<string, string> tmp = parseFontName(fromqstr(cb->text(i)));
+               if (compare_no_case(tmp.first, family) == 0) {
+                       cb->setCurrentItem(i);
+                       return;
+               }
+       }
+
+       // family alone can contain e.g. "Helvetica [Adobe]"
+       pair<string, string> tmpfam = parseFontName(family);
+
+       // We count in reverse in order to prefer the Xft foundry
+       for (int i = cb->count() - 1; i >= 0; --i) {
+               pair<string, string> tmp = parseFontName(fromqstr(cb->text(i)));
+               if (compare_no_case(tmp.first, tmpfam.first) == 0) {
+                       cb->setCurrentItem(i);
+                       return;
+               }
+       }
+
+       // Bleh, default fonts, and the names couldn't be found. Hack
+       // for bug 1063. Qt makes baby Jesus cry.
+
+       QFont font;
+
+       if (family == lyx_gui::roman_font_name()) {
+               font.setStyleHint(QFont::Serif);
+               font.setFamily(lyx_gui::roman_font_name().c_str());
+       } else if (family == lyx_gui::sans_font_name()) {
+               font.setStyleHint(QFont::SansSerif);
+               font.setFamily(lyx_gui::sans_font_name().c_str());
+       } else if (family == lyx_gui::typewriter_font_name()) {
+               font.setStyleHint(QFont::TypeWriter);
+               font.setFamily(lyx_gui::typewriter_font_name().c_str());
+       } else {
+               lyxerr << "FAILED to find the default font !"
+                       << foundry << ", " << family << endl;
+               return;
+       }
+
+       QFontInfo info(font);
+       lyxerr << "Apparent font is " << info.family() << endl;
+
+       for (int i = 0; i < cb->count(); ++i) {
+               lyxerr << "Looking at " << fromqstr(cb->text(i)) << endl;
+               if (compare_no_case(fromqstr(cb->text(i)), fromqstr(info.family())) == 0) {
+                       cb->setCurrentItem(i);
+                       return;
+               }
+       }
+
+       lyxerr << "FAILED to find the font !"
+               << foundry << ", " << family << endl;
 }
 
+} // end namespace anon
+
+
 void QPrefs::update_contents()
 {
        LyXRC const & rc(controller().rc());
 
        QPrefLanguageModule * langmod(dialog_->languageModule);
+
        // FIXME: remove rtl_support bool
        langmod->rtlCB->setChecked(rc.rtl_support);
-       langmod->markForeignCB->setChecked(rc.mark_foreign_language); 
-       langmod->autoBeginCB->setChecked(rc.language_auto_begin); 
-       langmod->autoEndCB->setChecked(rc.language_auto_end); 
+       langmod->markForeignCB->setChecked(rc.mark_foreign_language);
+       langmod->autoBeginCB->setChecked(rc.language_auto_begin);
+       langmod->autoEndCB->setChecked(rc.language_auto_end);
        langmod->useBabelCB->setChecked(rc.language_use_babel);
        langmod->globalCB->setChecked(rc.language_global_options);
-       langmod->languagePackageED->setText(rc.language_package.c_str());
-       langmod->startCommandED->setText(rc.language_command_begin.c_str());
-       langmod->endCommandED->setText(rc.language_command_end.c_str());
+       langmod->languagePackageED->setText(toqstr(rc.language_package));
+       langmod->startCommandED->setText(toqstr(rc.language_command_begin));
+       langmod->endCommandED->setText(toqstr(rc.language_command_end));
 
        int const pos = int(findPos(lang_, rc.default_language));
        langmod->defaultLanguageCO->setCurrentItem(pos);
 
-       QPrefUIModule * uimod(dialog_->uiModule); 
+       QPrefUIModule * uimod(dialog_->uiModule);
 
-       uimod->uiFileED->setText(rc.bind_file.c_str());
-       uimod->bindFileED->setText(rc.ui_file.c_str());
-       uimod->cursorFollowsCB->setChecked(rc.cursor_follows_scrollbar); 
+       uimod->uiFileED->setText(toqstr(rc.ui_file));
+       uimod->bindFileED->setText(toqstr(rc.bind_file));
+       uimod->cursorFollowsCB->setChecked(rc.cursor_follows_scrollbar);
        uimod->wheelMouseSB->setValue(rc.wheel_jump);
        // convert to minutes
        int mins(rc.autosave / 60);
@@ -302,72 +480,114 @@ void QPrefs::update_contents()
        uimod->autoSaveSB->setValue(mins);
        uimod->autoSaveCB->setChecked(rc.make_backup);
        uimod->lastfilesSB->setValue(rc.num_lastfiles);
+
+
+       QPrefIdentityModule * idmod(dialog_->identityModule);
+       idmod->nameED->setText(toqstr(rc.user_name));
+       idmod->emailED->setText(toqstr(rc.user_email));
+
+
        QPrefKeyboardModule * keymod(dialog_->keyboardModule);
 
-       // FIXME: can derive CB from the two EDs 
+       // FIXME: can derive CB from the two EDs
        keymod->keymapCB->setChecked(rc.use_kbmap);
-       keymod->firstKeymapED->setText(rc.primary_kbmap.c_str());
-       keymod->secondKeymapED->setText(rc.secondary_kbmap.c_str());
+       // no idea why we need these. Fscking Qt.
+       keymod->firstKeymapED->setEnabled(rc.use_kbmap);
+       keymod->firstKeymapPB->setEnabled(rc.use_kbmap);
+       keymod->firstKeymapLA->setEnabled(rc.use_kbmap);
+       keymod->secondKeymapED->setEnabled(rc.use_kbmap);
+       keymod->secondKeymapPB->setEnabled(rc.use_kbmap);
+       keymod->secondKeymapLA->setEnabled(rc.use_kbmap);
+       keymod->firstKeymapED->setText(toqstr(rc.primary_kbmap));
+       keymod->secondKeymapED->setText(toqstr(rc.secondary_kbmap));
+
 
        QPrefAsciiModule * ascmod(dialog_->asciiModule);
 
        ascmod->asciiLinelengthSB->setValue(rc.ascii_linelen);
-       ascmod->asciiRoffED->setText(rc.ascii_roff_command.c_str());
+       ascmod->asciiRoffED->setText(toqstr(rc.ascii_roff_command));
 
 
        QPrefDateModule * datemod(dialog_->dateModule);
 
-       datemod->DateED->setText(rc.date_insert_format.c_str());
+       datemod->DateED->setText(toqstr(rc.date_insert_format));
 
+#if defined(__CYGWIN__) || defined(__CYGWIN32__)
+       QPrefCygwinPathModule * cygwinmod(dialog_->cygwinpathModule);
+       cygwinmod->pathCB->setChecked(rc.cygwin_path_fix);
+#endif
 
        QPrefLatexModule * latexmod(dialog_->latexModule);
 
-       latexmod->latexEncodingED->setText(rc.fontenc.c_str());
-       latexmod->latexChecktexED->setText(rc.chktex_command.c_str()); 
+       latexmod->latexEncodingED->setText(toqstr(rc.fontenc));
+       latexmod->latexChecktexED->setText(toqstr(rc.chktex_command));
+       latexmod->latexBibtexED->setText(toqstr(rc.bibtex_command));
+       latexmod->latexIndexED->setText(toqstr(rc.index_command));
        latexmod->latexAutoresetCB->setChecked(rc.auto_reset_options);
-       latexmod->latexDviPaperED->setText(rc.view_dvi_paper_option.c_str());
+       latexmod->latexDviPaperED->setText(toqstr(rc.view_dvi_paper_option));
        latexmod->latexPaperSizeCO->setCurrentItem(rc.default_papersize);
 
 
        QPrefDisplayModule * displaymod(dialog_->displayModule);
 
-       displaymod->previewCB->setChecked(rc.preview);
+       switch (rc.preview) {
+       case LyXRC::PREVIEW_OFF:
+               displaymod->instantPreviewCO->setCurrentItem(0);
+               break;
+       case LyXRC::PREVIEW_NO_MATH :
+               displaymod->instantPreviewCO->setCurrentItem(1);
+               break;
+       case LyXRC::PREVIEW_ON :
+               displaymod->instantPreviewCO->setCurrentItem(2);
+               break;
+       }
+
        int item = 2;
+
        switch (rc.display_graphics) {
-               case grfx::NoDisplay:           item = 3; break;
-               case grfx::ColorDisplay:        item = 2; break;
-               case grfx::GrayscaleDisplay:    item = 1; break;
-               case grfx::MonochromeDisplay:   item = 0; break;
+               case lyx::graphics::NoDisplay:          item = 3; break;
+               case lyx::graphics::ColorDisplay:       item = 2; break;
+               case lyx::graphics::GrayscaleDisplay:   item = 1; break;
+               case lyx::graphics::MonochromeDisplay:  item = 0; break;
+               default: break;
        }
        displaymod->displayGraphicsCO->setCurrentItem(item);
+
 
        QPrefPathsModule * pathsmod(dialog_->pathsModule);
-       pathsmod->workingDirED->setText(rc.document_path.c_str());
-       pathsmod->templateDirED->setText(rc.template_path.c_str());
-       pathsmod->backupDirED->setText(rc.backupdir_path.c_str());
-       pathsmod->tempDirCB->setChecked(rc.use_tempdir);
-       pathsmod->tempDirED->setText(rc.tempdir_path.c_str());
-       // FIXME: should be a checkbox only
-       pathsmod->lyxserverDirED->setText(rc.lyxpipes.c_str());
 
+       pathsmod->workingDirED->setText(toqstr(rc.document_path));
+       pathsmod->templateDirED->setText(toqstr(rc.template_path));
+       pathsmod->backupDirED->setText(toqstr(rc.backupdir_path));
+       pathsmod->tempDirED->setText(toqstr(rc.tempdir_path));
+       pathsmod->pathPrefixED->setText(toqstr(rc.path_prefix));
+       // FIXME: should be a checkbox only
+       pathsmod->lyxserverDirED->setText(toqstr(rc.lyxpipes));
 
        QPrefSpellcheckerModule * spellmod(dialog_->spellcheckerModule);
 
-       item = (rc.isp_command == "ispell") ? 0 : 1;
-       spellmod->spellCommandCO->setCurrentItem(item);
+       spellmod->spellCommandCO->setCurrentItem(0);
+
+       if (rc.isp_command == "ispell") {
+               spellmod->spellCommandCO->setCurrentItem(0);
+       } else if (rc.isp_command == "aspell") {
+               spellmod->spellCommandCO->setCurrentItem(1);
+       } else if (rc.isp_command == "hspell") {
+               spellmod->spellCommandCO->setCurrentItem(2);
+       }
+
+       if (rc.use_spell_lib) {
+#if defined(USE_ASPELL) || defined(USE_PSPELL)
+               spellmod->spellCommandCO->setCurrentItem(3);
+#endif
+       }
+
        // FIXME: remove isp_use_alt_lang
-       spellmod->altLanguageED->setText(rc.isp_alt_lang.c_str());
-       // FIXME: remove isp_use_esc_chars 
-       spellmod->escapeCharactersED->setText(rc.isp_esc_chars.c_str());
-       // FIXME: remove isp_use_pers_dict 
-       spellmod->persDictionaryED->setText(rc.isp_pers_dict.c_str());
+       spellmod->altLanguageED->setText(toqstr(rc.isp_alt_lang));
+       // FIXME: remove isp_use_esc_chars
+       spellmod->escapeCharactersED->setText(toqstr(rc.isp_esc_chars));
+       // FIXME: remove isp_use_pers_dict
+       spellmod->persDictionaryED->setText(toqstr(rc.isp_pers_dict));
        spellmod->compoundWordCB->setChecked(rc.isp_accept_compound);
        spellmod->inputEncodingCB->setChecked(rc.isp_use_input_encoding);
 
@@ -375,52 +595,56 @@ void QPrefs::update_contents()
        QPrefPrinterModule * printmod(dialog_->printerModule);
 
        printmod->printerAdaptCB->setChecked(rc.print_adapt_output);
-       printmod->printerCommandED->setText(rc.print_command.c_str());
-       printmod->printerNameED->setText(rc.printer.c_str());
-
-       printmod->printerPageRangeED->setText(rc.print_pagerange_flag.c_str());
-       printmod->printerCopiesED->setText(rc.print_copies_flag.c_str());
-       printmod->printerReverseED->setText(rc.print_reverse_flag.c_str());
-       printmod->printerToPrinterED->setText(rc.print_to_printer.c_str());
-       printmod->printerExtensionED->setText(rc.print_file_extension.c_str());
-       printmod->printerSpoolCommandED->setText(rc.print_file_extension.c_str());
-       printmod->printerPaperTypeED->setText(rc.print_paper_flag.c_str());
-       printmod->printerEvenED->setText(rc.print_evenpage_flag.c_str());
-       printmod->printerOddED->setText(rc.print_oddpage_flag.c_str());
-       printmod->printerCollatedED->setText(rc.print_collcopies_flag.c_str());
-       printmod->printerLandscapeED->setText(rc.print_landscape_flag.c_str());
-       printmod->printerToFileED->setText(rc.print_to_file.c_str());
-       printmod->printerExtraED->setText(rc.print_extra_options.c_str());
-       printmod->printerSpoolPrefixED->setText(rc.print_spool_printerprefix.c_str());
-       printmod->printerPaperSizeED->setText(rc.print_paper_dimension_flag.c_str());
+       printmod->printerCommandED->setText(toqstr(rc.print_command));
+       printmod->printerNameED->setText(toqstr(rc.printer));
+
+       printmod->printerPageRangeED->setText(toqstr(rc.print_pagerange_flag));
+       printmod->printerCopiesED->setText(toqstr(rc.print_copies_flag));
+       printmod->printerReverseED->setText(toqstr(rc.print_reverse_flag));
+       printmod->printerToPrinterED->setText(toqstr(rc.print_to_printer));
+       printmod->printerExtensionED->setText(toqstr(rc.print_file_extension));
+       printmod->printerSpoolCommandED->setText(toqstr(rc.print_spool_command));
+       printmod->printerPaperTypeED->setText(toqstr(rc.print_paper_flag));
+       printmod->printerEvenED->setText(toqstr(rc.print_evenpage_flag));
+       printmod->printerOddED->setText(toqstr(rc.print_oddpage_flag));
+       printmod->printerCollatedED->setText(toqstr(rc.print_collcopies_flag));
+       printmod->printerLandscapeED->setText(toqstr(rc.print_landscape_flag));
+       printmod->printerToFileED->setText(toqstr(rc.print_to_file));
+       printmod->printerExtraED->setText(toqstr(rc.print_extra_options));
+       printmod->printerSpoolPrefixED->setText(toqstr(rc.print_spool_printerprefix));
+       printmod->printerPaperSizeED->setText(toqstr(rc.print_paper_dimension_flag));
 
 
        QPrefScreenFontsModule * fontmod(dialog_->screenfontsModule);
 
-       fontmod->screenRomanED->setText(rc.roman_font_name.c_str());
-       fontmod->screenSansED->setText(rc.sans_font_name.c_str());
-       fontmod->screenTypewriterED->setText(rc.typewriter_font_name.c_str());
+       setComboxFont(fontmod->screenRomanCO, rc.roman_font_name,
+                       rc.roman_font_foundry);
+       setComboxFont(fontmod->screenSansCO, rc.sans_font_name,
+                       rc.sans_font_foundry);
+       setComboxFont(fontmod->screenTypewriterCO, rc.typewriter_font_name,
+                       rc.typewriter_font_foundry);
+
+       dialog_->select_roman(fontmod->screenRomanCO->currentText());
+       dialog_->select_sans(fontmod->screenSansCO->currentText());
+       dialog_->select_typewriter(fontmod->screenTypewriterCO->currentText());
+
        fontmod->screenZoomSB->setValue(rc.zoom);
-       fontmod->screenDpiSB->setValue(int(rc.dpi));
-       fontmod->screenTinyED->setText(tostr(rc.font_sizes[LyXFont::SIZE_TINY]).c_str());
-       fontmod->screenSmallestED->setText(tostr(rc.font_sizes[LyXFont::SIZE_SCRIPT]).c_str());
-       fontmod->screenSmallerED->setText(tostr(rc.font_sizes[LyXFont::SIZE_FOOTNOTE]).c_str());
-       fontmod->screenSmallED->setText(tostr(rc.font_sizes[LyXFont::SIZE_SMALL]).c_str());
-       fontmod->screenNormalED->setText(tostr(rc.font_sizes[LyXFont::SIZE_NORMAL]).c_str());
-       fontmod->screenLargeED->setText(tostr(rc.font_sizes[LyXFont::SIZE_LARGE]).c_str());
-       fontmod->screenLargerED->setText(tostr(rc.font_sizes[LyXFont::SIZE_LARGER]).c_str());
-       fontmod->screenLargestED->setText(tostr(rc.font_sizes[LyXFont::SIZE_LARGEST]).c_str());
-       fontmod->screenHugeED->setText(tostr(rc.font_sizes[LyXFont::SIZE_HUGE]).c_str());
-       fontmod->screenHugerED->setText(tostr(rc.font_sizes[LyXFont::SIZE_HUGER]).c_str());
-
-       formats_ = formats;
+       fontmod->screenDpiSB->setValue(rc.dpi);
+       fontmod->screenTinyED->setText(toqstr(rc.font_sizes[LyXFont::SIZE_TINY]));
+       fontmod->screenSmallestED->setText(toqstr(rc.font_sizes[LyXFont::SIZE_SCRIPT]));
+       fontmod->screenSmallerED->setText(toqstr(rc.font_sizes[LyXFont::SIZE_FOOTNOTE]));
+       fontmod->screenSmallED->setText(toqstr(rc.font_sizes[LyXFont::SIZE_SMALL]));
+       fontmod->screenNormalED->setText(toqstr(rc.font_sizes[LyXFont::SIZE_NORMAL]));
+       fontmod->screenLargeED->setText(toqstr(rc.font_sizes[LyXFont::SIZE_LARGE]));
+       fontmod->screenLargerED->setText(toqstr(rc.font_sizes[LyXFont::SIZE_LARGER]));
+       fontmod->screenLargestED->setText(toqstr(rc.font_sizes[LyXFont::SIZE_LARGEST]));
+       fontmod->screenHugeED->setText(toqstr(rc.font_sizes[LyXFont::SIZE_HUGE]));
+       fontmod->screenHugerED->setText(toqstr(rc.font_sizes[LyXFont::SIZE_HUGER]));
 
        dialog_->updateFormats();
-       converters_ = converters;
-
        dialog_->updateConverters();
-       // FIXME: populate colors
+       dialog_->updateCopiers();
 }
+
+} // namespace frontend
+} // namespace lyx