]> git.lyx.org Git - features.git/blob - src/frontends/qt2/QPrefs.C
do not write colors to prefs when they have not been changed (Bug 1069)
[features.git] / src / frontends / qt2 / QPrefs.C
1 /**
2  * \file QPrefs.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #include <config.h>
12
13 #include "support/lstrings.h"
14 #include "Lsstream.h"
15 #include <iomanip>
16
17 #include "ControlPrefs.h"
18 #include "QPrefsDialog.h"
19 #include "ui/QPrefAsciiModule.h"
20 #include "ui/QPrefDateModule.h"
21 #include "ui/QPrefKeyboardModule.h"
22 #include "ui/QPrefLatexModule.h"
23 #include "ui/QPrefScreenFontsModule.h"
24 #include "ui/QPrefColorsModule.h"
25 #include "ui/QPrefDisplayModule.h"
26 #include "ui/QPrefPathsModule.h"
27 #include "ui/QPrefSpellcheckerModule.h"
28 #include "ui/QPrefConvertersModule.h"
29 #include "ui/QPrefFileformatsModule.h"
30 #include "ui/QPrefLanguageModule.h"
31 #include "ui/QPrefPrinterModule.h"
32 #include "ui/QPrefUIModule.h"
33 #include "ui/QPrefIdentityModule.h"
34 #include "lyx_gui.h"
35 #include "QPrefs.h"
36 #include "Qt2BC.h"
37 #include "lyxrc.h"
38 #include "frnt_lang.h"
39 #include "helper_funcs.h"
40 #include "qt_helpers.h"
41 #include "debug.h"
42
43 #include <boost/tuple/tuple.hpp>
44
45 #include <qpushbutton.h>
46 #include <qcheckbox.h>
47 #include <qlineedit.h>
48 #include <qspinbox.h>
49 #include <qcombobox.h>
50 #include <qlistbox.h>
51 #include <qlabel.h>
52 #include <qfontinfo.h>
53 #include "qcoloritem.h"
54
55 using std::vector;
56 using std::pair;
57 using std::ostringstream;
58 using std::setfill;
59 using std::setw;
60 using std::endl;
61
62 typedef Qt2CB<ControlPrefs, Qt2DB<QPrefsDialog> > base_class;
63
64
65 QPrefs::QPrefs()
66         : base_class(qt_("LyX: Preferences"))
67 {
68 }
69
70
71 void QPrefs::build_dialog()
72 {
73         dialog_.reset(new QPrefsDialog(this));
74
75         bcview().setOK(dialog_->savePB);
76         bcview().setApply(dialog_->applyPB);
77         bcview().setCancel(dialog_->closePB);
78         bcview().setRestore(dialog_->restorePB);
79
80         QPrefLanguageModule * langmod(dialog_->languageModule);
81
82         langmod->defaultLanguageCO->clear();
83         // store the lang identifiers for later
84         vector<frnt::LanguagePair> const langs = frnt::getLanguageData(false);
85         lang_ = getSecond(langs);
86
87         vector<frnt::LanguagePair>::const_iterator lit  = langs.begin();
88         vector<frnt::LanguagePair>::const_iterator lend = langs.end();
89         for (; lit != lend; ++lit) {
90                 langmod->defaultLanguageCO->insertItem(toqstr(lit->first));
91         }
92
93         QPrefSpellcheckerModule * spellmod(dialog_->spellcheckerModule);
94         spellmod->spellCommandCO->insertItem(qt_("ispell"));
95         spellmod->spellCommandCO->insertItem(qt_("aspell"));
96         spellmod->spellCommandCO->insertItem(qt_("hspell"));
97 #ifdef USE_PSPELL
98         spellmod->spellCommandCO->insertItem(qt_("pspell (library)"));
99 #else
100 #ifdef USE_ASPELL
101         spellmod->spellCommandCO->insertItem(qt_("aspell (library)"));
102 #endif
103 #endif
104 }
105
106
107 void QPrefs::apply()
108 {
109         LyXRC & rc(controller().rc());
110
111         QPrefLanguageModule * langmod(dialog_->languageModule);
112
113         // FIXME: remove rtl_support bool
114         rc.rtl_support = langmod->rtlCB->isChecked();
115         rc.mark_foreign_language = langmod->markForeignCB->isChecked();
116         rc.language_auto_begin = langmod->autoBeginCB->isChecked();
117         rc.language_auto_end = langmod->autoEndCB->isChecked();
118         rc.language_use_babel = langmod->useBabelCB->isChecked();
119         rc.language_global_options = langmod->globalCB->isChecked();
120         rc.language_package = fromqstr(langmod->languagePackageED->text());
121         rc.language_command_begin = fromqstr(langmod->startCommandED->text());
122         rc.language_command_end = fromqstr(langmod->endCommandED->text());
123         rc.default_language = lang_[langmod->defaultLanguageCO->currentItem()];
124
125         QPrefUIModule * uimod(dialog_->uiModule);
126
127         rc.ui_file = fromqstr(uimod->uiFileED->text());
128         rc.bind_file = fromqstr(uimod->bindFileED->text());
129         rc.cursor_follows_scrollbar = uimod->cursorFollowsCB->isChecked();
130         rc.wheel_jump = uimod->wheelMouseSB->value();
131         rc.autosave = uimod->autoSaveSB->value() * 60;
132         rc.make_backup = uimod->autoSaveCB->isChecked();
133         rc.num_lastfiles = uimod->lastfilesSB->value();
134
135
136         QPrefKeyboardModule * keymod(dialog_->keyboardModule);
137
138         // FIXME: can derive CB from the two EDs
139         rc.use_kbmap = keymod->keymapCB->isChecked();
140         rc.primary_kbmap = fromqstr(keymod->firstKeymapED->text());
141         rc.secondary_kbmap = fromqstr(keymod->secondKeymapED->text());
142
143
144         QPrefAsciiModule * ascmod(dialog_->asciiModule);
145
146         rc.ascii_linelen = ascmod->asciiLinelengthSB->value();
147         rc.ascii_roff_command = fromqstr(ascmod->asciiRoffED->text());
148
149
150         QPrefDateModule * datemod(dialog_->dateModule);
151
152         rc.date_insert_format = fromqstr(datemod->DateED->text());
153
154
155         QPrefLatexModule * latexmod(dialog_->latexModule);
156
157         rc.fontenc = fromqstr(latexmod->latexEncodingED->text());
158         rc.chktex_command = fromqstr(latexmod->latexChecktexED->text());
159         rc.auto_reset_options = latexmod->latexAutoresetCB->isChecked();
160         rc.view_dvi_paper_option = fromqstr(latexmod->latexDviPaperED->text());
161         rc.default_papersize =
162                 static_cast<BufferParams::PAPER_SIZE>(latexmod->latexPaperSizeCO->currentItem());
163
164
165         QPrefDisplayModule * displaymod(dialog_->displayModule);
166
167         rc.preview = displaymod->previewCB->isChecked();
168
169         grfx::DisplayType dtype(grfx::ColorDisplay);
170
171         switch (displaymod->displayGraphicsCO->currentItem()) {
172                 case 3: dtype = grfx::NoDisplay; break;
173                 case 2: dtype = grfx::ColorDisplay; break;
174                 case 1: dtype = grfx::GrayscaleDisplay; break;
175                 case 0: dtype = grfx::MonochromeDisplay; break;
176         }
177         rc.display_graphics = dtype;
178
179 #ifdef WITH_WARNINGS
180 #warning FIXME!! The graphics cache no longer has a changeDisplay method.
181 #endif
182 #if 0
183         if (old_value != rc.display_graphics) {
184                 grfx::GCache & gc = grfx::GCache::get();
185                 gc.changeDisplay();
186         }
187 #endif
188
189         QPrefPathsModule * pathsmod(dialog_->pathsModule);
190
191         rc.document_path = fromqstr(pathsmod->workingDirED->text());
192         rc.template_path = fromqstr(pathsmod->templateDirED->text());
193         rc.backupdir_path = fromqstr(pathsmod->backupDirED->text());
194         rc.use_tempdir = pathsmod->tempDirCB->isChecked();
195         rc.tempdir_path = fromqstr(pathsmod->tempDirED->text());
196         // FIXME: should be a checkbox only
197         rc.lyxpipes = fromqstr(pathsmod->lyxserverDirED->text());
198
199
200         QPrefSpellcheckerModule * spellmod(dialog_->spellcheckerModule);
201
202         switch (spellmod->spellCommandCO->currentItem()) {
203                 case 0:
204                 case 1:
205                 case 2:
206                         rc.use_spell_lib = false;
207                         rc.isp_command = fromqstr(spellmod->spellCommandCO->currentText());
208                         break;
209                 case 3:
210                         rc.use_spell_lib = true;
211                         break;
212         }
213
214         // FIXME: remove isp_use_alt_lang
215         rc.isp_alt_lang = fromqstr(spellmod->altLanguageED->text());
216         rc.isp_use_alt_lang = !rc.isp_alt_lang.empty();
217         // FIXME: remove isp_use_esc_chars
218         rc.isp_esc_chars = fromqstr(spellmod->escapeCharactersED->text());
219         rc.isp_use_esc_chars = !rc.isp_esc_chars.empty();
220         // FIXME: remove isp_use_pers_dict
221         rc.isp_pers_dict = fromqstr(spellmod->persDictionaryED->text());
222         rc.isp_use_pers_dict = !rc.isp_pers_dict.empty();
223         rc.isp_accept_compound = spellmod->compoundWordCB->isChecked();
224         rc.isp_use_input_encoding = spellmod->inputEncodingCB->isChecked();
225
226
227         QPrefPrinterModule * printmod(dialog_->printerModule);
228
229         rc.print_adapt_output = printmod->printerAdaptCB->isChecked();
230         rc.print_command = fromqstr(printmod->printerCommandED->text());
231         rc.printer = fromqstr(printmod->printerNameED->text());
232
233         rc.print_pagerange_flag = fromqstr(printmod->printerPageRangeED->text());
234         rc.print_copies_flag = fromqstr(printmod->printerCopiesED->text());
235         rc.print_reverse_flag = fromqstr(printmod->printerReverseED->text());
236         rc.print_to_printer = fromqstr(printmod->printerToPrinterED->text());
237         rc.print_file_extension = fromqstr(printmod->printerExtensionED->text());
238         rc.print_spool_command = fromqstr(printmod->printerSpoolCommandED->text());
239         rc.print_paper_flag = fromqstr(printmod->printerPaperTypeED->text());
240         rc.print_evenpage_flag = fromqstr(printmod->printerEvenED->text());
241         rc.print_oddpage_flag = fromqstr(printmod->printerOddED->text());
242         rc.print_collcopies_flag = fromqstr(printmod->printerCollatedED->text());
243         rc.print_landscape_flag = fromqstr(printmod->printerLandscapeED->text());
244         rc.print_to_file = fromqstr(printmod->printerToFileED->text());
245         rc.print_extra_options = fromqstr(printmod->printerExtraED->text());
246         rc.print_spool_printerprefix = fromqstr(printmod->printerSpoolPrefixED->text());
247         rc.print_paper_dimension_flag = fromqstr(printmod->printerPaperSizeED->text());
248
249
250         QPrefIdentityModule * idmod(dialog_->identityModule);
251         rc.user_name = fromqstr(idmod->nameED->text());
252         rc.user_email = fromqstr(idmod->emailED->text());
253
254         QPrefScreenFontsModule * fontmod(dialog_->screenfontsModule);
255
256         LyXRC const oldrc(rc);
257
258         boost::tie(rc.roman_font_name, rc.roman_font_foundry)
259                 = parseFontName(fromqstr(fontmod->screenRomanCO->currentText()));
260         boost::tie(rc.sans_font_name, rc.sans_font_foundry) =
261                 parseFontName(fromqstr(fontmod->screenSansCO->currentText()));
262         boost::tie(rc.typewriter_font_name, rc.typewriter_font_foundry) =
263                 parseFontName(fromqstr(fontmod->screenTypewriterCO->currentText()));
264
265         rc.zoom = fontmod->screenZoomSB->value();
266         rc.dpi = fontmod->screenDpiSB->value();
267         rc.font_sizes[LyXFont::SIZE_TINY] = strToDbl(fromqstr(fontmod->screenTinyED->text()));
268         rc.font_sizes[LyXFont::SIZE_SCRIPT] = strToDbl(fromqstr(fontmod->screenSmallestED->text()));
269         rc.font_sizes[LyXFont::SIZE_FOOTNOTE] = strToDbl(fromqstr(fontmod->screenSmallerED->text()));
270         rc.font_sizes[LyXFont::SIZE_SMALL] = strToDbl(fromqstr(fontmod->screenSmallED->text()));
271         rc.font_sizes[LyXFont::SIZE_NORMAL] = strToDbl(fromqstr(fontmod->screenNormalED->text()));
272         rc.font_sizes[LyXFont::SIZE_LARGE] = strToDbl(fromqstr(fontmod->screenLargeED->text()));
273         rc.font_sizes[LyXFont::SIZE_LARGER] = strToDbl(fromqstr(fontmod->screenLargerED->text()));
274         rc.font_sizes[LyXFont::SIZE_LARGEST] = strToDbl(fromqstr(fontmod->screenLargestED->text()));
275         rc.font_sizes[LyXFont::SIZE_HUGE] = strToDbl(fromqstr(fontmod->screenHugeED->text()));
276         rc.font_sizes[LyXFont::SIZE_HUGER] = strToDbl(fromqstr(fontmod->screenHugerED->text()));
277
278         if (rc.font_sizes != oldrc.font_sizes
279                 || rc.roman_font_name != oldrc.roman_font_name
280                 || rc.sans_font_name != oldrc.sans_font_name
281                 || rc.typewriter_font_name != oldrc.typewriter_font_name
282                 || rc.zoom != oldrc.zoom || rc.dpi != oldrc.dpi) {
283                 controller().updateScreenFonts();
284         }
285
286         controller().setFormats(formats_);
287         controller().setConverters(converters_);
288
289         QPrefColorsModule * colmod(dialog_->colorsModule);
290
291         unsigned int i;
292
293         for (i = 0; i < colmod->lyxObjectsLB->count(); ++i) {
294                 QListBoxItem * ib(colmod->lyxObjectsLB->item(i));
295                 QColorItem * ci(static_cast<QColorItem*>(ib));
296
297                 LColor::color const col(dialog_->colors_[i]);
298                 QColor const qcol(toqstr(lcolor.getX11Name(col)));
299
300                 // FIXME: dubious, but it's what xforms does
301                 if (qcol != ci->color()) {
302                         ostringstream ostr;
303                         
304                         ostr << '#' << std::setbase(16) << setfill('0')
305                              << setw(2) << ci->color().red()
306                              << setw(2) << ci->color().green()
307                              << setw(2) << ci->color().blue();
308
309                         string newhex(STRCONV(ostr.str()));
310                         controller().setColor(col, newhex);
311                 }
312         }
313 }
314
315
316 // FIXME: move to helper_funcs.h
317 namespace {
318
319 template<class A>
320 typename std::vector<A>::size_type
321 findPos(std::vector<A> const & vec, A const & val)
322 {
323         typename std::vector<A>::const_iterator it =
324                 std::find(vec.begin(), vec.end(), val);
325         if (it == vec.end())
326                 return 0;
327         return std::distance(vec.begin(), it);
328 }
329
330 void setComboxFont(QComboBox * cb, string const & family, string const & foundry)
331 {
332         string const name = makeFontName(family, foundry);
333         for (int i = 0; i < cb->count(); ++i) {
334                 if (fromqstr(cb->text(i)) == name) {
335                         cb->setCurrentItem(i);
336                         return;
337                 }
338         }
339
340         // Try matching without foundary name
341
342         // We count in reverse in order to prefer the Xft foundry
343         for (int i = cb->count() - 1; i >= 0; --i) {
344                 pair<string, string> tmp = parseFontName(fromqstr(cb->text(i)));
345                 if (compare_no_case(tmp.first, family) == 0) {
346                         cb->setCurrentItem(i);
347                         return;
348                 }
349         }
350
351         // Bleh, default fonts, and the names couldn't be found. Hack
352         // for bug 1063. Qt makes baby Jesus cry.
353         
354         QFont font;
355
356         if (family == lyx_gui::roman_font_name()) {
357                 font.setStyleHint(QFont::Serif);
358                 font.setFamily(lyx_gui::roman_font_name().c_str());
359         } else if (family == lyx_gui::sans_font_name()) {
360                 font.setStyleHint(QFont::SansSerif);
361                 font.setFamily(lyx_gui::sans_font_name().c_str());
362         } else if (family == lyx_gui::typewriter_font_name()) {
363                 font.setStyleHint(QFont::TypeWriter);
364                 font.setFamily(lyx_gui::typewriter_font_name().c_str());
365         } else {
366                 lyxerr << "FAILED to find the default font !"
367                         << foundry << ", " << family << endl;
368                 return;
369         }
370
371         QFontInfo info(font);
372         lyxerr << "Apparent font is " << info.family() << endl;
373
374         for (int i = 0; i < cb->count(); ++i) {
375                 lyxerr << "Looking at " << fromqstr(cb->text(i)) << endl;
376                 if (compare_no_case(cb->text(i).latin1(), info.family().latin1()) == 0) {
377                         cb->setCurrentItem(i);
378                         return;
379                 }
380         }
381
382         lyxerr << "FAILED to find the font !"
383                 << foundry << ", " << family << endl;
384 }
385
386 } // end namespace anon
387
388
389 void QPrefs::update_contents()
390 {
391         LyXRC const & rc(controller().rc());
392
393         QPrefLanguageModule * langmod(dialog_->languageModule);
394
395         // FIXME: remove rtl_support bool
396         langmod->rtlCB->setChecked(rc.rtl_support);
397         langmod->markForeignCB->setChecked(rc.mark_foreign_language);
398         langmod->autoBeginCB->setChecked(rc.language_auto_begin);
399         langmod->autoEndCB->setChecked(rc.language_auto_end);
400         langmod->useBabelCB->setChecked(rc.language_use_babel);
401         langmod->globalCB->setChecked(rc.language_global_options);
402         langmod->languagePackageED->setText(toqstr(rc.language_package));
403         langmod->startCommandED->setText(toqstr(rc.language_command_begin));
404         langmod->endCommandED->setText(toqstr(rc.language_command_end));
405
406         int const pos = int(findPos(lang_, rc.default_language));
407         langmod->defaultLanguageCO->setCurrentItem(pos);
408
409         QPrefUIModule * uimod(dialog_->uiModule);
410
411         uimod->uiFileED->setText(toqstr(rc.ui_file));
412         uimod->bindFileED->setText(toqstr(rc.bind_file));
413         uimod->cursorFollowsCB->setChecked(rc.cursor_follows_scrollbar);
414         uimod->wheelMouseSB->setValue(rc.wheel_jump);
415         // convert to minutes
416         int mins(rc.autosave / 60);
417         if (rc.autosave && !mins)
418                 mins = 1;
419         uimod->autoSaveSB->setValue(mins);
420         uimod->autoSaveCB->setChecked(rc.make_backup);
421         uimod->lastfilesSB->setValue(rc.num_lastfiles);
422
423
424         QPrefIdentityModule * idmod(dialog_->identityModule);
425         idmod->nameED->setText(toqstr(rc.user_name));
426         idmod->emailED->setText(toqstr(rc.user_email));
427
428
429         QPrefKeyboardModule * keymod(dialog_->keyboardModule);
430
431         // FIXME: can derive CB from the two EDs
432         keymod->keymapCB->setChecked(rc.use_kbmap);
433         // no idea why we need these. Fscking Qt.
434         keymod->firstKeymapED->setEnabled(rc.use_kbmap);
435         keymod->firstKeymapPB->setEnabled(rc.use_kbmap);
436         keymod->firstKeymapLA->setEnabled(rc.use_kbmap);
437         keymod->secondKeymapED->setEnabled(rc.use_kbmap);
438         keymod->secondKeymapPB->setEnabled(rc.use_kbmap);
439         keymod->secondKeymapLA->setEnabled(rc.use_kbmap);
440         keymod->firstKeymapED->setText(toqstr(rc.primary_kbmap));
441         keymod->secondKeymapED->setText(toqstr(rc.secondary_kbmap));
442
443
444         QPrefAsciiModule * ascmod(dialog_->asciiModule);
445
446         ascmod->asciiLinelengthSB->setValue(rc.ascii_linelen);
447         ascmod->asciiRoffED->setText(toqstr(rc.ascii_roff_command));
448
449
450         QPrefDateModule * datemod(dialog_->dateModule);
451
452         datemod->DateED->setText(toqstr(rc.date_insert_format));
453
454
455         QPrefLatexModule * latexmod(dialog_->latexModule);
456
457         latexmod->latexEncodingED->setText(toqstr(rc.fontenc));
458         latexmod->latexChecktexED->setText(toqstr(rc.chktex_command));
459         latexmod->latexAutoresetCB->setChecked(rc.auto_reset_options);
460         latexmod->latexDviPaperED->setText(toqstr(rc.view_dvi_paper_option));
461         latexmod->latexPaperSizeCO->setCurrentItem(rc.default_papersize);
462
463
464         QPrefDisplayModule * displaymod(dialog_->displayModule);
465
466         displaymod->previewCB->setChecked(rc.preview);
467
468         int item = 2;
469
470         switch (rc.display_graphics) {
471                 case grfx::NoDisplay:           item = 3; break;
472                 case grfx::ColorDisplay:        item = 2; break;
473                 case grfx::GrayscaleDisplay:    item = 1; break;
474                 case grfx::MonochromeDisplay:   item = 0; break;
475                 default: break;
476         }
477         displaymod->displayGraphicsCO->setCurrentItem(item);
478
479
480         QPrefPathsModule * pathsmod(dialog_->pathsModule);
481
482         pathsmod->workingDirED->setText(toqstr(rc.document_path));
483         pathsmod->templateDirED->setText(toqstr(rc.template_path));
484         pathsmod->backupDirED->setText(toqstr(rc.backupdir_path));
485         pathsmod->tempDirCB->setChecked(rc.use_tempdir);
486         pathsmod->tempDirED->setText(toqstr(rc.tempdir_path));
487         // FIXME: should be a checkbox only
488         pathsmod->lyxserverDirED->setText(toqstr(rc.lyxpipes));
489
490
491         QPrefSpellcheckerModule * spellmod(dialog_->spellcheckerModule);
492
493         spellmod->spellCommandCO->setCurrentItem(0);
494
495         if (rc.isp_command == "ispell") {
496                 spellmod->spellCommandCO->setCurrentItem(0);
497         } else if (rc.isp_command == "aspell") {
498                 spellmod->spellCommandCO->setCurrentItem(1);
499         } else if (rc.isp_command == "hspell") {
500                 spellmod->spellCommandCO->setCurrentItem(2);
501         }
502         
503         if (rc.use_spell_lib) {
504 #if defined(USE_ASPELL) || defined(USE_PSPELL)
505                 spellmod->spellCommandCO->setCurrentItem(3);
506 #endif
507         }
508
509         // FIXME: remove isp_use_alt_lang
510         spellmod->altLanguageED->setText(toqstr(rc.isp_alt_lang));
511         // FIXME: remove isp_use_esc_chars
512         spellmod->escapeCharactersED->setText(toqstr(rc.isp_esc_chars));
513         // FIXME: remove isp_use_pers_dict
514         spellmod->persDictionaryED->setText(toqstr(rc.isp_pers_dict));
515         spellmod->compoundWordCB->setChecked(rc.isp_accept_compound);
516         spellmod->inputEncodingCB->setChecked(rc.isp_use_input_encoding);
517
518
519         QPrefPrinterModule * printmod(dialog_->printerModule);
520
521         printmod->printerAdaptCB->setChecked(rc.print_adapt_output);
522         printmod->printerCommandED->setText(toqstr(rc.print_command));
523         printmod->printerNameED->setText(toqstr(rc.printer));
524
525         printmod->printerPageRangeED->setText(toqstr(rc.print_pagerange_flag));
526         printmod->printerCopiesED->setText(toqstr(rc.print_copies_flag));
527         printmod->printerReverseED->setText(toqstr(rc.print_reverse_flag));
528         printmod->printerToPrinterED->setText(toqstr(rc.print_to_printer));
529         printmod->printerExtensionED->setText(toqstr(rc.print_file_extension));
530         printmod->printerSpoolCommandED->setText(toqstr(rc.print_spool_command));
531         printmod->printerPaperTypeED->setText(toqstr(rc.print_paper_flag));
532         printmod->printerEvenED->setText(toqstr(rc.print_evenpage_flag));
533         printmod->printerOddED->setText(toqstr(rc.print_oddpage_flag));
534         printmod->printerCollatedED->setText(toqstr(rc.print_collcopies_flag));
535         printmod->printerLandscapeED->setText(toqstr(rc.print_landscape_flag));
536         printmod->printerToFileED->setText(toqstr(rc.print_to_file));
537         printmod->printerExtraED->setText(toqstr(rc.print_extra_options));
538         printmod->printerSpoolPrefixED->setText(toqstr(rc.print_spool_printerprefix));
539         printmod->printerPaperSizeED->setText(toqstr(rc.print_paper_dimension_flag));
540
541
542         QPrefScreenFontsModule * fontmod(dialog_->screenfontsModule);
543
544         setComboxFont(fontmod->screenRomanCO, rc.roman_font_name,
545                         rc.roman_font_foundry);
546         setComboxFont(fontmod->screenSansCO, rc.sans_font_name,
547                         rc.sans_font_foundry);
548         setComboxFont(fontmod->screenTypewriterCO, rc.typewriter_font_name,
549                         rc.typewriter_font_foundry);
550
551         dialog_->select_roman(fontmod->screenRomanCO->currentText());
552         dialog_->select_sans(fontmod->screenSansCO->currentText());
553         dialog_->select_typewriter(fontmod->screenTypewriterCO->currentText());
554
555         fontmod->screenZoomSB->setValue(rc.zoom);
556         fontmod->screenDpiSB->setValue(int(rc.dpi));
557         fontmod->screenTinyED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_TINY])));
558         fontmod->screenSmallestED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_SCRIPT])));
559         fontmod->screenSmallerED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_FOOTNOTE])));
560         fontmod->screenSmallED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_SMALL])));
561         fontmod->screenNormalED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_NORMAL])));
562         fontmod->screenLargeED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_LARGE])));
563         fontmod->screenLargerED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_LARGER])));
564         fontmod->screenLargestED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_LARGEST])));
565         fontmod->screenHugeED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_HUGE])));
566         fontmod->screenHugerED->setText(toqstr(tostr(rc.font_sizes[LyXFont::SIZE_HUGER])));
567
568         formats_ = formats;
569
570         dialog_->updateFormats();
571
572         converters_ = converters;
573
574         dialog_->updateConverters();
575 }