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