]> git.lyx.org Git - features.git/blobdiff - src/frontends/qt2/QPrefs.C
Replace LString.h with support/std_string.h,
[features.git] / src / frontends / qt2 / QPrefs.C
index 4de813596f843bb82b250e155b134e7530752bab..895dde11cce50f84addcee9d9f438971530536c1 100644 (file)
@@ -5,17 +5,16 @@
  *
  * \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 "support/tostr.h"
+#include "support/std_sstream.h"
+#include <iomanip>
+
 #include "ControlPrefs.h"
 #include "QPrefsDialog.h"
 #include "ui/QPrefAsciiModule.h"
 #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 "ui/QPrefIdentityModule.h"
+#include "lyx_gui.h"
 #include "QPrefs.h"
 #include "Qt2BC.h"
-#include "lyxrc.h"
+#include "lyxfont.h"
+#include "frnt_lang.h"
+#include "helper_funcs.h"
+#include "qt_helpers.h"
+#include "lcolorcache.h"
+
+#include <boost/tuple/tuple.hpp>
 
 #include <qpushbutton.h>
 #include <qcheckbox.h>
 #include <qlineedit.h>
 #include <qspinbox.h>
+#include <qcombobox.h>
+#include <qlabel.h>
+#include "qcoloritem.h"
+
+using namespace lyx::support;
+
+using std::vector;
+using std::pair;
+using std::ostringstream;
+using std::setfill;
+using std::setw;
+using std::endl;
+
+
 typedef Qt2CB<ControlPrefs, Qt2DB<QPrefsDialog> > base_class;
 
 
@@ -54,10 +72,35 @@ 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);
+
+       QPrefLanguageModule * langmod(dialog_->languageModule);
+
+       langmod->defaultLanguageCO->clear();
+       // store the lang identifiers for later
+       vector<frnt::LanguagePair> const langs = frnt::getLanguageData(false);
+       lang_ = getSecond(langs);
+
+       vector<frnt::LanguagePair>::const_iterator lit  = langs.begin();
+       vector<frnt::LanguagePair>::const_iterator lend = langs.end();
+       for (; lit != lend; ++lit) {
+               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
 }
 
 
@@ -65,612 +108,479 @@ void QPrefs::apply()
 {
        LyXRC & rc(controller().rc());
 
-       // do something ... 
+       QPrefLanguageModule * langmod(dialog_->languageModule);
 
-#if 0
-       bool modifiedText = false;
-       bool modifiedBackground = false;
-
-       // Now do the same for the LyX LColors...
-       for (vector<NamedColor>::const_iterator cit = lyxColorDB.begin();
-            cit != lyxColorDB.end(); ++cit) {
-               LColor::color lc = lcolor.getFromGUIName(cit->getname());
-               if (lc == LColor::inherit) continue;
-
-               // Create a valid X11 name of the form "#rrggbb"
-               string const hexname = X11hexname(cit->color());
-
-               if (lcolor.getX11Name(lc) != hexname) {
-                       lyxerr[Debug::GUI]
-                               << "FormPreferences::Colors::apply: "
-                               << "resetting LColor " << lcolor.getGUIName(lc)
-                               << " from \"" << lcolor.getX11Name(lc)
-                               << "\" to \"" << hexname << "\"."
-                               << endl;
-
-                       parent_.controller().setColor(lc, hexname);
-               }
-       }
-}
-       parent_.controller().setConverters(local_converters);
-
-       parent_.controller().setFormats(local_formats);
-       rc.date_insert_format =
-               fl_get_input(dialog_->input_date_format);
-       rc.popup_normal_font =
-               fl_get_input(dialog_->input_popup_normal_font);
-       rc.popup_bold_font = fl_get_input(dialog_->input_popup_bold_font);
-       rc.popup_font_encoding =
-               fl_get_input(dialog_->input_popup_font_encoding);
-       rc.bind_file = fl_get_input(dialog_->input_bind_file);
-       rc.ui_file = fl_get_input(dialog_->input_ui_file);
-       rc.override_x_deadkeys =
-               fl_get_button(dialog_->check_override_x_dead_keys);
-}
-       int const pos = combo_default_lang->get();
-       rc.default_language = lang_[pos-1];
-
-       int button = fl_get_button(dialog_->check_use_kbmap);
-       string const name_1 = fl_get_input(dialog_->input_kbmap1);
-       string const name_2 = fl_get_input(dialog_->input_kbmap2);
-       if (button)
-               button = !(name_1.empty() && name_2.empty());
-       rc.use_kbmap = static_cast<bool>(button);
-
-       if (rc.use_kbmap) {
-               rc.primary_kbmap = name_1;
-               rc.secondary_kbmap = name_2;
-       }
+       // 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.language_use_babel = langmod->useBabelCB->isChecked();
+       rc.language_global_options = langmod->globalCB->isChecked();
+       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);
+
+       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
+       rc.use_kbmap = keymod->keymapCB->isChecked();
+       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 = fromqstr(ascmod->asciiRoffED->text());
+
+
+       QPrefDateModule * datemod(dialog_->dateModule);
 
-       button = fl_get_button(dialog_->check_rtl_support);
-       rc.rtl_support = static_cast<bool>(button);
-
-       button = fl_get_button(dialog_->check_mark_foreign);
-       rc.mark_foreign_language = static_cast<bool>(button);
-
-       button = fl_get_button(dialog_->check_auto_begin);
-       rc.language_auto_begin = static_cast<bool>(button);
-
-       button = fl_get_button(dialog_->check_auto_end);
-       rc.language_auto_end = static_cast<bool>(button);
-
-       button = fl_get_button(dialog_->check_use_babel);
-       rc.language_use_babel = static_cast<bool>(button);
-
-       button = fl_get_button(dialog_->check_global_options);
-       rc.language_global_options = static_cast<bool>(button);
-
-       rc.language_package = fl_get_input(dialog_->input_package);
-       rc.language_command_begin = fl_get_input(dialog_->input_command_begin);
-       rc.language_command_end = fl_get_input(dialog_->input_command_end);
-
-       // Ensure that all is self-consistent.
-       update(rc);
-
-       rc.auto_region_delete =
-               fl_get_button(dialog_->check_auto_region_delete);
-       rc.cursor_follows_scrollbar =
-               fl_get_button(dialog_->check_cursor_follows_scrollbar);
-       rc.dialogs_iconify_with_main =
-               fl_get_button(dialog_->check_dialogs_iconify_with_main);
-       rc.preview = fl_get_button(dialog_->check_preview_latex);
-       rc.autosave = static_cast<unsigned int>
-               (fl_get_counter_value(dialog_->counter_autosave));
-       rc.wheel_jump = static_cast<unsigned int>
-               (fl_get_counter_value(dialog_->counter_wm_jump));
-
-       // See FIXME below
-       // grfx::DisplayType old_value = rc.display_graphics;
-       switch (fl_get_choice(dialog_->choice_display)) {
-               case 4: rc.display_graphics = grfx::NoDisplay; break;
-               case 3: rc.display_graphics = grfx::ColorDisplay; break;
-               case 2: rc.display_graphics = grfx::GrayscaleDisplay; break;
-               case 1: rc.display_graphics = grfx::MonochromeDisplay; break;
-               default: rc.display_graphics = grfx::ColorDisplay; break;
+       rc.date_insert_format = fromqstr(datemod->DateED->text());
+
+
+       QPrefLatexModule * latexmod(dialog_->latexModule);
+
+       rc.fontenc = fromqstr(latexmod->latexEncodingED->text());
+       rc.chktex_command = fromqstr(latexmod->latexChecktexED->text());
+       rc.auto_reset_options = latexmod->latexAutoresetCB->isChecked();
+       rc.view_dvi_paper_option = fromqstr(latexmod->latexDviPaperED->text());
+       rc.default_papersize =
+               static_cast<PAPER_SIZE>(latexmod->latexPaperSizeCO->currentItem());
+
+       QPrefDisplayModule * displaymod(dialog_->displayModule);
+
+       rc.preview = displaymod->previewCB->isChecked();
+
+       lyx::graphics::DisplayType dtype(lyx::graphics::ColorDisplay);
+
+       switch (displaymod->displayGraphicsCO->currentItem()) {
+               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
-
-       rc.ascii_linelen = static_cast<unsigned int>
-               (fl_get_counter_value(dialog_->counter_line_len));
-       rc.fontenc = fl_get_input(dialog_->input_tex_encoding);
-
-       int const choice =
-               fl_get_choice(dialog_->choice_default_papersize) - 1;
-       rc.default_papersize = static_cast<BufferParams::PAPER_SIZE>(choice);
-
-       rc.ascii_roff_command = fl_get_input(dialog_->input_ascii_roff);
-       rc.chktex_command = fl_get_input(dialog_->input_checktex);
-       rc.view_dvi_paper_option = fl_get_input(dialog_->input_paperoption);
-       rc.auto_reset_options = fl_get_button(dialog_->check_autoreset_classopt);
-
-
-       rc.document_path = fl_get_input(dialog_->input_default_path);
-       rc.template_path = fl_get_input(dialog_->input_template_path);
-
-       int button = fl_get_button(dialog_->check_use_temp_dir);
-       string str  = fl_get_input(dialog_->input_temp_dir);
-       if (!button)
-               str.erase();
-
-       rc.use_tempdir = button;
-       rc.tempdir_path = str;
-
-       button = fl_get_button(dialog_->check_last_files);
-       str = fl_get_input(dialog_->input_lastfiles);
-       if (!button) str.erase();
-
-       rc.check_lastfiles = button;
-       rc.lastfiles = str;
-       rc.num_lastfiles = static_cast<unsigned int>
-               (fl_get_counter_value(dialog_->counter_lastfiles));
-
-       button = fl_get_button(dialog_->check_make_backups);
-       str = fl_get_input(dialog_->input_backup_path);
-       if (!button)
-               str.erase();
-
-       rc.make_backup = button;
-       rc.backupdir_path = str;
-
-       rc.lyxpipes = fl_get_input(dialog_->input_serverpipe);
-
-       // update view
-       update(rc);
-
-       rc.print_adapt_output = fl_get_button(dialog_->check_adapt_output);
-       rc.print_command = fl_get_input(dialog_->input_command);
-       rc.print_pagerange_flag = fl_get_input(dialog_->input_page_range);
-       rc.print_copies_flag = fl_get_input(dialog_->input_copies);
-       rc.print_reverse_flag = fl_get_input(dialog_->input_reverse);
-       rc.print_to_printer = fl_get_input(dialog_->input_to_printer);
-       rc.print_file_extension =
-               fl_get_input(dialog_->input_file_extension);
-       rc.print_spool_command =
-               fl_get_input(dialog_->input_spool_command);
-       rc.print_paper_flag = fl_get_input(dialog_->input_paper_type);
-       rc.print_evenpage_flag = fl_get_input(dialog_->input_even_pages);
-       rc.print_oddpage_flag = fl_get_input(dialog_->input_odd_pages);
-       rc.print_collcopies_flag = fl_get_input(dialog_->input_collated);
-       rc.print_landscape_flag = fl_get_input(dialog_->input_landscape);
-       rc.print_to_file = fl_get_input(dialog_->input_to_file);
-       rc.print_extra_options =
-               fl_get_input(dialog_->input_extra_options);
-       rc.print_spool_printerprefix =
-               fl_get_input(dialog_->input_spool_prefix);
-       rc.print_paper_dimension_flag =
-               fl_get_input(dialog_->input_paper_size);
-       rc.printer = fl_get_input(dialog_->input_name);
-
-
-       bool changed = false;
-
-       string str = fl_get_input(dialog_->input_roman);
-       if (rc.roman_font_name != str) {
-               changed = true;
-               rc.roman_font_name = str;
-       }
 
-       str = fl_get_input(dialog_->input_sans);
-       if (rc.sans_font_name != str) {
-               changed = true;
-               rc.sans_font_name = str;
+       QPrefPathsModule * pathsmod(dialog_->pathsModule);
+
+       rc.document_path = fromqstr(pathsmod->workingDirED->text());
+       rc.template_path = fromqstr(pathsmod->templateDirED->text());
+       rc.backupdir_path = fromqstr(pathsmod->backupDirED->text());
+       rc.use_tempdir = pathsmod->tempDirCB->isChecked();
+       rc.tempdir_path = fromqstr(pathsmod->tempDirED->text());
+       // FIXME: should be a checkbox only
+       rc.lyxpipes = fromqstr(pathsmod->lyxserverDirED->text());
+
+
+       QPrefSpellcheckerModule * spellmod(dialog_->spellcheckerModule);
+
+       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;
        }
 
-       str = fl_get_input(dialog_->input_typewriter);
-       if (rc.typewriter_font_name != str) {
-               changed = true;
-               rc.typewriter_font_name = str;
+       // FIXME: remove isp_use_alt_lang
+       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 = 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();
+
+
+       QPrefPrinterModule * printmod(dialog_->printerModule);
+
+       rc.print_adapt_output = printmod->printerAdaptCB->isChecked();
+       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);
+
+       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(fromqstr(fontmod->screenTinyED->text()));
+       rc.font_sizes[LyXFont::SIZE_SCRIPT] = strToDbl(fromqstr(fontmod->screenSmallestED->text()));
+       rc.font_sizes[LyXFont::SIZE_FOOTNOTE] = strToDbl(fromqstr(fontmod->screenSmallerED->text()));
+       rc.font_sizes[LyXFont::SIZE_SMALL] = strToDbl(fromqstr(fontmod->screenSmallED->text()));
+       rc.font_sizes[LyXFont::SIZE_NORMAL] = strToDbl(fromqstr(fontmod->screenNormalED->text()));
+       rc.font_sizes[LyXFont::SIZE_LARGE] = strToDbl(fromqstr(fontmod->screenLargeED->text()));
+       rc.font_sizes[LyXFont::SIZE_LARGER] = strToDbl(fromqstr(fontmod->screenLargerED->text()));
+       rc.font_sizes[LyXFont::SIZE_LARGEST] = strToDbl(fromqstr(fontmod->screenLargestED->text()));
+       rc.font_sizes[LyXFont::SIZE_HUGE] = strToDbl(fromqstr(fontmod->screenHugeED->text()));
+       rc.font_sizes[LyXFont::SIZE_HUGER] = strToDbl(fromqstr(fontmod->screenHugerED->text()));
+
+       if (rc.font_sizes != oldrc.font_sizes
+               || rc.roman_font_name != oldrc.roman_font_name
+               || rc.sans_font_name != oldrc.sans_font_name
+               || rc.typewriter_font_name != oldrc.typewriter_font_name
+               || rc.zoom != oldrc.zoom || rc.dpi != oldrc.dpi) {
+               controller().updateScreenFonts();
        }
 
-       str = fl_get_input(dialog_->input_screen_encoding);
-       if (rc.font_norm != str) {
-               changed = true;
-               rc.font_norm = str;
-       }
+       controller().setFormats(formats_);
+       controller().setConverters(converters_);
 
-       bool button = fl_get_button(dialog_->check_scalable);
-       if (rc.use_scalable_fonts != button) {
-               changed = true;
-               rc.use_scalable_fonts = button;
-       }
+       QPrefColorsModule * colmod(dialog_->colorsModule);
 
-       unsigned int ivalue = static_cast<unsigned int>
-               (fl_get_counter_value(dialog_->counter_zoom));
-       if (rc.zoom != ivalue) {
-               changed = true;
-               rc.zoom = ivalue;
-       }
+       unsigned int i;
 
-       ivalue = static_cast<unsigned int>
-               (fl_get_counter_value(dialog_->counter_dpi));
-       if (rc.dpi != ivalue) {
-               changed = true;
-               rc.dpi = ivalue;
-       }
+       for (i = 0; i < colmod->lyxObjectsLB->count(); ++i) {
+               QListBoxItem * ib(colmod->lyxObjectsLB->item(i));
+               QColorItem * ci(static_cast<QColorItem*>(ib));
 
-       double dvalue = strToDbl(fl_get_input(dialog_->input_tiny));
-       if (rc.font_sizes[LyXFont::SIZE_TINY] != dvalue) {
-               changed = true;
-               rc.font_sizes[LyXFont::SIZE_TINY] = dvalue;
-       }
+               LColor::color const col(dialog_->colors_[i]);
+               QColor const & qcol(lcolorcache.get(col));
 
-       dvalue = strToDbl(fl_get_input(dialog_->input_script));
-       if (rc.font_sizes[LyXFont::SIZE_SCRIPT] != dvalue) {
-               changed = true;
-               rc.font_sizes[LyXFont::SIZE_SCRIPT] = dvalue;
-       }
+               // FIXME: dubious, but it's what xforms does
+               if (qcol != ci->color()) {
+                       ostringstream ostr;
 
-       dvalue = strToDbl(fl_get_input(dialog_->input_footnote));
-       if (rc.font_sizes[LyXFont::SIZE_FOOTNOTE] != dvalue) {
-               changed = true;
-               rc.font_sizes[LyXFont::SIZE_FOOTNOTE] = dvalue;
-       }
+                       ostr << '#' << std::setbase(16) << setfill('0')
+                            << setw(2) << ci->color().red()
+                            << setw(2) << ci->color().green()
+                            << setw(2) << ci->color().blue();
 
-       dvalue = strToDbl(fl_get_input(dialog_->input_small));
-       if (rc.font_sizes[LyXFont::SIZE_SMALL] != dvalue) {
-               changed = true;
-               rc.font_sizes[LyXFont::SIZE_SMALL] = dvalue;
+                       string newhex(STRCONV(ostr.str()));
+                       controller().setColor(col, newhex);
+               }
        }
+}
 
-       dvalue = strToDbl(fl_get_input(dialog_->input_normal));
-       if (rc.font_sizes[LyXFont::SIZE_NORMAL] != dvalue) {
-               changed = true;
-               rc.font_sizes[LyXFont::SIZE_NORMAL] = dvalue;
-       }
 
-       dvalue = strToDbl(fl_get_input(dialog_->input_large));
-       if (rc.font_sizes[LyXFont::SIZE_LARGE] != dvalue) {
-               changed = true;
-               rc.font_sizes[LyXFont::SIZE_LARGE] = dvalue;
-       }
+// FIXME: move to helper_funcs.h
+namespace {
 
-       dvalue = strToDbl(fl_get_input(dialog_->input_larger));
-       if (rc.font_sizes[LyXFont::SIZE_LARGER] != dvalue) {
-               changed = true;
-               rc.font_sizes[LyXFont::SIZE_LARGER] = dvalue;
-       }
+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);
+       if (it == vec.end())
+               return 0;
+       return std::distance(vec.begin(), it);
+}
 
-       dvalue = strToDbl(fl_get_input(dialog_->input_largest));
-       if (rc.font_sizes[LyXFont::SIZE_LARGEST] != dvalue) {
-               changed = true;
-               rc.font_sizes[LyXFont::SIZE_LARGEST] = dvalue;
+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;
+               }
        }
 
-       dvalue = strToDbl(fl_get_input(dialog_->input_huge));
-       if (rc.font_sizes[LyXFont::SIZE_HUGE] != dvalue) {
-               changed = true;
-               rc.font_sizes[LyXFont::SIZE_HUGE] = dvalue;
-       }
+       // Try matching without foundry name
 
-       dvalue = strToDbl(fl_get_input(dialog_->input_huger));
-       if (rc.font_sizes[LyXFont::SIZE_HUGER] != dvalue) {
-               changed = true;
-               rc.font_sizes[LyXFont::SIZE_HUGER] = dvalue;
+       // 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;
+               }
        }
 
-       if (changed) {
-               // Now update the buffers
-               // Can anything below here affect the redraw process?
-               parent_.controller().updateScreenFonts();
-
-
-       string choice = fl_get_choice_text(dialog_->choice_spell_command);
-       choice = trim(choice);
-
-       rc.isp_command = choice;
+       // family alone can contain e.g. "Helvetica [Adobe]"
+       pair<string, string> tmpfam = parseFontName(family);
 
-#if 0
-       // If spell checker == "none", all other input set to off.
-       if (fl_get_choice(dialog_->choice_spell_command) == 1) {
-               rc.isp_use_alt_lang = false;
-               rc.isp_alt_lang.erase();
+       // 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;
+               }
+       }
 
-               rc.isp_use_esc_chars = false;
-               rc.isp_esc_chars.erase();
+       // Bleh, default fonts, and the names couldn't be found. Hack
+       // for bug 1063. Qt makes baby Jesus cry.
 
-               rc.isp_use_pers_dict = false;
-               rc.isp_pers_dict.erase();
+       QFont font;
 
-               rc.isp_accept_compound = false;
-               rc.isp_use_input_encoding = false;
+       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 {
-#else
-               int button = fl_get_button(dialog_->check_alt_lang);
-               choice = fl_get_input(dialog_->input_alt_lang);
-               if (button && choice.empty()) button = 0;
-               if (!button) choice.erase();
-
-               rc.isp_use_alt_lang = static_cast<bool>(button);
-               rc.isp_alt_lang = choice;
-
-               button = fl_get_button(dialog_->check_escape_chars);
-               choice = fl_get_input(dialog_->input_escape_chars);
-               if (button && choice.empty()) button = 0;
-               if (!button) choice.erase();
-
-               rc.isp_use_esc_chars = static_cast<bool>(button);
-               rc.isp_esc_chars = choice;
-
-               button = fl_get_button(dialog_->check_personal_dict);
-               choice = fl_get_input(dialog_->input_personal_dict);
-               if (button && choice.empty()) button = 0;
-               if (!button) choice.erase();
-
-               rc.isp_use_pers_dict = static_cast<bool>(button);
-               rc.isp_pers_dict = choice;
+               lyxerr << "FAILED to find the default font !"
+                       << foundry << ", " << family << endl;
+               return;
+       }
 
-               button = fl_get_button(dialog_->check_compound_words);
-               rc.isp_accept_compound = static_cast<bool>(button);
+       QFontInfo info(font);
+       lyxerr << "Apparent font is " << info.family() << endl;
 
-               button = fl_get_button(dialog_->check_input_enc);
-               rc.isp_use_input_encoding = static_cast<bool>(button);
-#endif
-#if 0
+       for (int i = 0; i < cb->count(); ++i) {
+               lyxerr << "Looking at " << fromqstr(cb->text(i)) << endl;
+               if (compare_no_case(cb->text(i).latin1(), info.family().latin1()) == 0) {
+                       cb->setCurrentItem(i);
+                       return;
+               }
        }
-#endif
 
-       // Reset view
-       update(rc);
-#endif
+       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);
        if (rc.autosave && !mins)
                mins = 1;
        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));
 
 
        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->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);
 
-#if 0 
-       local_converters = converters;
-       local_converters.update(local_formats);
-       UpdateBrowser();
 
-       local_formats = formats;
-       UpdateBrowser();
+       QPrefDisplayModule * displaymod(dialog_->displayModule);
 
-       int const pos = int(findPos(lang_, rc.default_language));
-       combo_default_lang->select(pos + 1);
+       displaymod->previewCB->setChecked(rc.preview);
 
-       fl_set_button(dialog_->check_preview_latex,
-                     rc.preview);
+       int item = 2;
 
        switch (rc.display_graphics) {
-               case grfx::NoDisplay:           fl_set_choice(dialog_->choice_display, 4); break;
-               case grfx::ColorDisplay:        fl_set_choice(dialog_->choice_display, 3); break;
-               case grfx::GrayscaleDisplay:    fl_set_choice(dialog_->choice_display, 2); break;
-               case grfx::MonochromeDisplay:   fl_set_choice(dialog_->choice_display, 1); break;
-               default:                        fl_set_choice(dialog_->choice_display, 3); 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);
 
-       fl_set_choice(dialog_->choice_default_papersize,
-                     rc.default_papersize + 1);
-
-       fl_set_input(dialog_->input_default_path,
-                    rc.document_path.c_str());
-       fl_set_input(dialog_->input_template_path,
-                    rc.template_path.c_str());
-
-       string str;
-       if (rc.make_backup)
-               str = rc.backupdir_path;
-
-       fl_set_button(dialog_->check_make_backups,
-                     rc.make_backup);
-       fl_set_input(dialog_->input_backup_path, str.c_str());
-
-       str.erase();
-       if (rc.use_tempdir)
-               str = rc.tempdir_path;
-
-       fl_set_button(dialog_->check_use_temp_dir,
-                     rc.use_tempdir);
-       fl_set_input(dialog_->input_temp_dir, str.c_str());
-
-       str.erase();
-       if (rc.check_lastfiles)
-               str = rc.lastfiles;
-
-       fl_set_button(dialog_->check_last_files,
-                     rc.check_lastfiles);
-       fl_set_input(dialog_->input_lastfiles, str.c_str());
-       fl_set_counter_value(dialog_->counter_lastfiles,
-                            rc.num_lastfiles);
-
-       fl_set_input(dialog_->input_serverpipe, rc.lyxpipes.c_str());
-
-       // Activate/Deactivate the input fields dependent on the state of the
-       // buttons.
-       input(0);
-
-
-       fl_set_button(dialog_->check_adapt_output,
-                     rc.print_adapt_output);
-       fl_set_input(dialog_->input_command,
-                    rc.print_command.c_str());
-       fl_set_input(dialog_->input_page_range,
-                    rc.print_pagerange_flag.c_str());
-       fl_set_input(dialog_->input_copies,
-                    rc.print_copies_flag.c_str());
-       fl_set_input(dialog_->input_reverse,
-                    rc.print_reverse_flag.c_str());
-       fl_set_input(dialog_->input_to_printer,
-                    rc.print_to_printer.c_str());
-       fl_set_input(dialog_->input_file_extension,
-                    rc.print_file_extension.c_str());
-       fl_set_input(dialog_->input_spool_command,
-                    rc.print_spool_command.c_str());
-       fl_set_input(dialog_->input_paper_type,
-                    rc.print_paper_flag.c_str());
-       fl_set_input(dialog_->input_even_pages,
-                    rc.print_evenpage_flag.c_str());
-       fl_set_input(dialog_->input_odd_pages,
-                    rc.print_oddpage_flag.c_str());
-       fl_set_input(dialog_->input_collated,
-                    rc.print_collcopies_flag.c_str());
-       fl_set_input(dialog_->input_landscape,
-                    rc.print_landscape_flag.c_str());
-       fl_set_input(dialog_->input_to_file,
-                    rc.print_to_file.c_str());
-       fl_set_input(dialog_->input_extra_options,
-                    rc.print_extra_options.c_str());
-       fl_set_input(dialog_->input_spool_prefix,
-                    rc.print_spool_printerprefix.c_str());
-       fl_set_input(dialog_->input_paper_size,
-                    rc.print_paper_dimension_flag.c_str());
-       fl_set_input(dialog_->input_name,
-                    rc.printer.c_str());
-
-
-
-       fl_set_input(dialog_->input_roman,
-                    rc.roman_font_name.c_str());
-       fl_set_input(dialog_->input_sans,
-                    rc.sans_font_name.c_str());
-       fl_set_input(dialog_->input_typewriter,
-                    rc.typewriter_font_name.c_str());
-       fl_set_counter_value(dialog_->counter_zoom, rc.zoom);
-       fl_set_counter_value(dialog_->counter_dpi,  rc.dpi);
-       fl_set_input(dialog_->input_tiny,
-                    tostr(rc.font_sizes[LyXFont::SIZE_TINY]).c_str());
-       fl_set_input(dialog_->input_script,
-                    tostr(rc.font_sizes[LyXFont::SIZE_SCRIPT]).c_str());
-       fl_set_input(dialog_->input_footnote,
-                    tostr(rc.font_sizes[LyXFont::SIZE_FOOTNOTE]).c_str());
-       fl_set_input(dialog_->input_small,
-                    tostr(rc.font_sizes[LyXFont::SIZE_SMALL]).c_str());
-       fl_set_input(dialog_->input_normal,
-                    tostr(rc.font_sizes[LyXFont::SIZE_NORMAL]).c_str());
-       fl_set_input(dialog_->input_large,
-                    tostr(rc.font_sizes[LyXFont::SIZE_LARGE]).c_str());
-       fl_set_input(dialog_->input_larger,
-                    tostr(rc.font_sizes[LyXFont::SIZE_LARGER]).c_str());
-       fl_set_input(dialog_->input_largest,
-                    tostr(rc.font_sizes[LyXFont::SIZE_LARGEST]).c_str());
-       fl_set_input(dialog_->input_huge,
-                    tostr(rc.font_sizes[LyXFont::SIZE_HUGE]).c_str());
-       fl_set_input(dialog_->input_huger,
-                    tostr(rc.font_sizes[LyXFont::SIZE_HUGER]).c_str());
-
-       int choice = 1;
-#if 0
-       if (rc.isp_command == "none")
-               choice = 1;
-       else if (rc.isp_command == "ispell")
-               choice = 2;
-       else if (rc.isp_command == "aspell")
-               choice = 3;
-#else
-       if (rc.isp_command == "ispell")
-               choice = 1;
-       else if (rc.isp_command == "aspell")
-               choice = 2;
-#endif
-       fl_set_choice(dialog_->choice_spell_command, choice);
 
-       string str;
-       if (rc.isp_use_alt_lang)
-               str = rc.isp_alt_lang;
+       QPrefPathsModule * pathsmod(dialog_->pathsModule);
 
-       fl_set_button(dialog_->check_alt_lang,
-                     rc.isp_use_alt_lang);
-       fl_set_input(dialog_->input_alt_lang, str.c_str());
+       pathsmod->workingDirED->setText(toqstr(rc.document_path));
+       pathsmod->templateDirED->setText(toqstr(rc.template_path));
+       pathsmod->backupDirED->setText(toqstr(rc.backupdir_path));
+       pathsmod->tempDirCB->setChecked(rc.use_tempdir);
+       pathsmod->tempDirED->setText(toqstr(rc.tempdir_path));
+       // FIXME: should be a checkbox only
+       pathsmod->lyxserverDirED->setText(toqstr(rc.lyxpipes));
 
-       str.erase();
-       if (rc.isp_use_esc_chars)
-               str = rc.isp_esc_chars;
 
-       fl_set_button(dialog_->check_escape_chars,
-                     rc.isp_use_esc_chars);
-       fl_set_input(dialog_->input_escape_chars, str.c_str());
+       QPrefSpellcheckerModule * spellmod(dialog_->spellcheckerModule);
 
-       str.erase();
-       if (rc.isp_use_pers_dict)
-               str = rc.isp_pers_dict;
+       spellmod->spellCommandCO->setCurrentItem(0);
 
-       fl_set_button(dialog_->check_personal_dict,
-                     rc.isp_use_pers_dict);
-       fl_set_input(dialog_->input_personal_dict, str.c_str());
+       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);
+       }
 
-       fl_set_button(dialog_->check_compound_words,
-                     rc.isp_accept_compound);
-       fl_set_button(dialog_->check_input_enc,
-                     rc.isp_use_input_encoding);
+       if (rc.use_spell_lib) {
+#if defined(USE_ASPELL) || defined(USE_PSPELL)
+               spellmod->spellCommandCO->setCurrentItem(3);
+#endif
+       }
 
-       // Activate/Deactivate the input fields dependent on the state of the
-       // buttons.
-       input(0);
-#endif 
+       // FIXME: remove isp_use_alt_lang
+       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);
+
+
+       QPrefPrinterModule * printmod(dialog_->printerModule);
+
+       printmod->printerAdaptCB->setChecked(rc.print_adapt_output);
+       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);
+
+       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(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_TINY])));
+       fontmod->screenSmallestED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_SCRIPT])));
+       fontmod->screenSmallerED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_FOOTNOTE])));
+       fontmod->screenSmallED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_SMALL])));
+       fontmod->screenNormalED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_NORMAL])));
+       fontmod->screenLargeED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_LARGE])));
+       fontmod->screenLargerED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_LARGER])));
+       fontmod->screenLargestED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_LARGEST])));
+       fontmod->screenHugeED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_HUGE])));
+       fontmod->screenHugerED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_HUGER])));
+
+       formats_ = formats;
+
+       dialog_->updateFormats();
+
+       converters_ = converters;
+
+       dialog_->updateConverters();
 }