]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormPreferences.C
some mods I had in my local tree, mostly small stuff, perhaps minus the the Makefile...
[lyx.git] / src / frontends / xforms / FormPreferences.C
index 4e183e98a2240f150d49bde8dc4ca887714c63a4..d43c4ef22d9314a1dccc8ca95c50d305ae4f02e5 100644 (file)
@@ -37,6 +37,7 @@
 #include "combox.h"
 #include "debug.h"
 #include "support/filetools.h"
+#include "support/LAssert.h"
 #include "lyx_gui_misc.h" // idex, scex
 #include "lyxlex.h"
 #include "input_validators.h"
@@ -68,35 +69,18 @@ Converters local_converters;
 
 
 FormPreferences::FormPreferences(LyXView * lv, Dialogs * d)
-       : FormBaseBI(lv, d, _("Preferences")),
+       : FormBaseBI(lv, d, _("Preferences"), false),
          warningPosted(false),
          colors_(*this), converters_(*this), inputs_misc_(*this),
          formats_(*this), interface_(*this), language_(*this), 
          lnf_misc_(*this), outputs_misc_(*this), paths_(*this),
-         printer_(*this), screen_fonts_(*this), spellchecker_(*this)
+         printer_(*this), screen_fonts_(*this), spelloptions_(*this)
 {
        // let the dialog be shown
        // This is a permanent connection so we won't bother
        // storing a copy because we won't be disconnecting.
        d->showPreferences.connect(slot(this, &FormPreferences::show));
-}
-
-
-void FormPreferences::connect()
-{
-       fl_set_form_maxsize( dialog_->form, minw_, minh_ );
-
-       FormBaseBI::connect();
-}
-
-
-void FormPreferences::disconnect()
-{
-       // colors_->disconnect();
-       // converters_->disconnect(); //local_converters.Clear();
-       // formats_->disconnect();    //local_formats.Clear();
-
-       FormBaseBI::disconnect();
+       d->showSpellcheckerPreferences.connect(slot(this, &FormPreferences::showSpellPref));
 }
 
 
@@ -139,6 +123,14 @@ FL_FORM * FormPreferences::form() const
 }
 
 
+void FormPreferences::showSpellPref()
+{
+       show();
+       fl_set_folder(dialog_->tabfolder_prefs, lang_opts_tab_->form);
+       fl_set_folder(lang_opts_tab_->tabfolder_outer, spelloptions_.dialog()->form);
+}
+
+
 void FormPreferences::ok()
 {
        FormBaseDeprecated::ok();
@@ -149,7 +141,7 @@ void FormPreferences::ok()
                colors_.modifiedXformsPrefs = !XformsColor::write(filename);
        }
        
-       lv_->getLyXFunc()->Dispatch(LFUN_SAVEPREFERENCES);
+       lv_->getLyXFunc()->dispatch(LFUN_SAVEPREFERENCES);
 }
 
 
@@ -196,7 +188,7 @@ void FormPreferences::build()
        paths_.build();
        printer_.build();
        screen_fonts_.build();
-       spellchecker_.build();
+       spelloptions_.build();
 
        // Now add them to the tabfolder
        fl_addto_tabfolder(dialog_->tabfolder_prefs,
@@ -258,7 +250,7 @@ void FormPreferences::build()
        // then building usage
        fl_addto_tabfolder(lang_opts_tab_->tabfolder_outer,
                           _("Spell checker"),
-                          spellchecker_.dialog()->form);
+                          spelloptions_.dialog()->form);
        fl_addto_tabfolder(lang_opts_tab_->tabfolder_outer,
                           _("Language"),
                           language_.dialog()->form);
@@ -289,7 +281,7 @@ void FormPreferences::apply()
        paths_.apply();
        printer_.apply();
        screen_fonts_.apply();
-       spellchecker_.apply();
+       spelloptions_.apply();
 }
 
 
@@ -321,8 +313,8 @@ void FormPreferences::feedback(FL_OBJECT * ob)
                str = printer_.feedback(ob);
        } else if (ob->form->fdui == screen_fonts_.dialog()) {
                str = screen_fonts_.feedback(ob);
-       } else if (ob->form->fdui == spellchecker_.dialog()) {
-               str = spellchecker_.feedback(ob);
+       } else if (ob->form->fdui == spelloptions_.dialog()) {
+               str = spelloptions_.feedback(ob);
        }
 
        str = formatted(_(str), dialog_->text_warning->w-10, FL_SMALL_SIZE);
@@ -355,8 +347,8 @@ bool FormPreferences::input(FL_OBJECT * ob, long)
                return paths_.input(ob);
        else if (ob->form->fdui == screen_fonts_.dialog())
                return screen_fonts_.input();
-       else if (ob->form->fdui == spellchecker_.dialog())
-               return spellchecker_.input(ob);
+       else if (ob->form->fdui == spelloptions_.dialog())
+               return spelloptions_.input(ob);
 
        return true;
 }
@@ -378,12 +370,12 @@ void FormPreferences::update()
        paths_.update();
        printer_.update();
        screen_fonts_.update();
-       spellchecker_.update();
+       spelloptions_.update();
 }
 
 
 FormPreferences::Colors::Colors(FormPreferences & p)
-       : parent_(p)
+       : modifiedXformsPrefs(false), parent_(p)
 {}
 
 
@@ -401,12 +393,12 @@ void FormPreferences::Colors::apply()
        for (vector<XformsColor>::const_iterator cit = xformsColorDB.begin();
             cit != xformsColorDB.end(); ++cit) {
                RGBColor col;
-               fl_getmcolor((*cit).colorID, &col.r, &col.g, &col.b);
-               if (col != (*cit).color()) {
+               fl_getmcolor(cit->colorID, &col.r, &col.g, &col.b);
+               if (col != cit->color()) {
                        modifiedXformsPrefs = true;
-                       if ((*cit).colorID == FL_BLACK)
+                       if (cit->colorID == FL_BLACK)
                                modifiedText = true;
-                       if ((*cit).colorID == FL_COL1)
+                       if (cit->colorID == FL_COL1)
                                modifiedBackground = true;
                }
        }
@@ -415,14 +407,13 @@ void FormPreferences::Colors::apply()
                for (vector<XformsColor>::const_iterator cit =
                             xformsColorDB.begin(); 
                     cit != xformsColorDB.end(); ++cit) {
-                       fl_mapcolor((*cit).colorID,
-                                   (*cit).r, (*cit).g, (*cit).b);
+                       fl_mapcolor(cit->colorID, cit->r, cit->g, cit->b);
 
-                       if (modifiedText && (*cit).colorID == FL_BLACK) {
+                       if (modifiedText && cit->colorID == FL_BLACK) {
                                AdjustVal(FL_INACTIVE, FL_BLACK, 0.5);
                        }
 
-                       if (modifiedBackground && (*cit).colorID == FL_COL1) {
+                       if (modifiedBackground && cit->colorID == FL_COL1) {
                                AdjustVal(FL_MCOL,      FL_COL1, 0.1);
                                AdjustVal(FL_TOP_BCOL,  FL_COL1, 0.1);
                                AdjustVal(FL_LEFT_BCOL, FL_COL1, 0.1);
@@ -431,9 +422,9 @@ void FormPreferences::Colors::apply()
                                AdjustVal(FL_BOTTOM_BCOL, FL_COL1, -0.5);
                        }
 
-                       if ((*cit).colorID == GUI_COLOR_CURSOR) {
+                       if (cit->colorID == GUI_COLOR_CURSOR) {
                                fl_mapcolor(GUI_COLOR_CURSOR,
-                                           (*cit).r, (*cit).g, (*cit).b);
+                                           cit->r, cit->g, cit->b);
                                fl_set_cursor_color(FL_DEFAULT_CURSOR,
                                                    GUI_COLOR_CURSOR, FL_WHITE);
                        }
@@ -444,11 +435,11 @@ void FormPreferences::Colors::apply()
        // 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());
+               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());
+               string const hexname = X11hexname(cit->color());
                
                if (lcolor.getX11Name(lc) != hexname) {
                        lyxerr[Debug::GUI]
@@ -460,7 +451,7 @@ void FormPreferences::Colors::apply()
 
                        string const s = lcolor.getLyXName(lc) + string(" ") +
                                hexname;
-                       parent_.lv_->getLyXFunc()->Dispatch(LFUN_SET_COLOR, s);
+                       parent_.lv_->getLyXFunc()->dispatch(LFUN_SET_COLOR, s);
                }
        }
 }
@@ -770,7 +761,7 @@ void FormPreferences::Colors::LoadBrowserLyX()
 
                        string const arg = lcolor.getLyXName(lc) + " black";
                        parent_.lv_->getLyXFunc()->
-                               Dispatch(LFUN_SET_COLOR, arg);
+                               dispatch(LFUN_SET_COLOR, arg);
                        continue;
                }
 
@@ -807,11 +798,11 @@ void FormPreferences::Colors::LoadBrowserLyX()
        fl_clear_browser(colbr);
        for (vector<XformsColor>::const_iterator cit = xformsColorDB.begin();
             cit != xformsColorDB.end(); ++cit) {
-               fl_addto_browser(colbr, (*cit).getname().c_str());
+               fl_addto_browser(colbr, cit->getname().c_str());
        }
        for (vector<NamedColor>::const_iterator cit = lyxColorDB.begin();
             cit != lyxColorDB.end(); ++cit) {
-               fl_addto_browser(colbr, (*cit).getname().c_str());
+               fl_addto_browser(colbr, cit->getname().c_str());
        }
 
        // just to be safe...
@@ -948,8 +939,8 @@ FD_form_converters const * FormPreferences::Converters::dialog()
 void FormPreferences::Converters::apply() const
 {
        converters = local_converters;
-       converters.Update(formats);
-       converters.BuildGraph();
+       converters.update(formats);
+       converters.buildGraph();
 }
 
 
@@ -1014,7 +1005,7 @@ bool FormPreferences::Converters::input(FL_OBJECT const * const ob)
                return Add();
 
        } else if (ob == dialog_->button_delete) {
-               return Delete();
+               return erase();
        }
 
        return true;
@@ -1024,21 +1015,21 @@ bool FormPreferences::Converters::input(FL_OBJECT const * const ob)
 void FormPreferences::Converters::update()
 {
        local_converters = converters;
-       local_converters.Update(local_formats);
+       local_converters.update(local_formats);
        UpdateBrowser();
 }
 
 
 void FormPreferences::Converters::UpdateBrowser()
 {
-       local_converters.Sort();
+       local_converters.sort();
 
        fl_freeze_form(dialog_->form);
        fl_clear_browser(dialog_->browser_all);
        for (::Converters::const_iterator cit = local_converters.begin();
             cit != local_converters.end(); ++cit) {
-               string const name = (*cit).From->prettyname() + " -> "
-                       + (*cit).To->prettyname();
+               string const name = cit->From->prettyname() + " -> "
+                       + cit->To->prettyname();
                fl_addto_browser(dialog_->browser_all, name.c_str());
        }
        Input();
@@ -1053,10 +1044,10 @@ bool FormPreferences::Converters::Add()
        string const command = fl_get_input(dialog_->input_converter);
        string const flags = fl_get_input(dialog_->input_flags);
 
-       Converter const * old = local_converters.GetConverter(from, to);
-       local_converters.Add(from, to, command, flags);
+       Converter const * old = local_converters.getConverter(from, to);
+       local_converters.add(from, to, command, flags);
        if (!old) {
-               local_converters.UpdateLast(local_formats);
+               local_converters.updateLast(local_formats);
                UpdateBrowser();
        }
        setEnabled(dialog_->button_add, false);
@@ -1072,14 +1063,14 @@ bool FormPreferences::Converters::Browser()
 
        fl_freeze_form(dialog_->form);
 
-       Converter const & c = local_converters.Get(i-1);
-       int j = local_formats.GetNumber(c.from);
+       Converter const & c = local_converters.get(i - 1);
+       int j = local_formats.getNumber(c.from);
        if (j >= 0)
-               fl_set_choice(dialog_->choice_from, j+1);
+               fl_set_choice(dialog_->choice_from, j + 1);
 
-       j = local_formats.GetNumber(c.to);
+       j = local_formats.getNumber(c.to);
        if (j >= 0)
-               fl_set_choice(dialog_->choice_to, j+1);
+               fl_set_choice(dialog_->choice_to, j + 1);
 
        fl_set_input(dialog_->input_converter, c.command.c_str());
        fl_set_input(dialog_->input_flags, c.flags.c_str());
@@ -1095,12 +1086,12 @@ bool FormPreferences::Converters::Browser()
 }
 
 
-bool FormPreferences::Converters::Delete()
+bool FormPreferences::Converters::erase()
 {
        string const from = GetFrom();
        string const to = GetTo();
 
-       local_converters.Delete(from, to);
+       local_converters.erase(from, to);
        UpdateBrowser();
        return true;
 }
@@ -1110,7 +1101,7 @@ bool FormPreferences::Converters::Input()
 {
        string const from = GetFrom();
        string const to = GetTo();
-       int const sel = local_converters.GetNumber(from, to);
+       int const sel = local_converters.getNumber(from, to);
        
        fl_freeze_form(dialog_->form);
 
@@ -1148,7 +1139,7 @@ string const FormPreferences::Converters::GetFrom() const
                fl_get_choice(dialog_->choice_from);
 
        if (i > 0 && i <= local_formats.size())
-               return local_formats.Get(i-1).name();
+               return local_formats.get(i - 1).name();
        else {
                lyxerr << "FormPreferences::Converters::GetFrom: No choice!"
                       << endl;
@@ -1163,7 +1154,7 @@ string const FormPreferences::Converters::GetTo() const
                fl_get_choice(dialog_->choice_to);
 
        if (i > 0 && i <= local_formats.size())
-               return local_formats.Get(i-1).name();
+               return local_formats.get(i - 1).name();
        else {
                lyxerr << "FormPreferences::Converters::GetTo: No choice!"
                       << endl;
@@ -1181,7 +1172,7 @@ void FormPreferences::Converters::UpdateChoices() const
                        choice += " | ";
                else
                        choice += " ";
-               choice += (*cit).prettyname();
+               choice += cit->prettyname();
        }
        choice += " ";
 
@@ -1280,7 +1271,7 @@ bool FormPreferences::Formats::input(FL_OBJECT const * const ob)
                return Add();
 
        } else if (ob == dialog_->button_delete) {
-               return Delete();
+               return erase();
        }
 
        return false;
@@ -1296,7 +1287,7 @@ void FormPreferences::Formats::update()
 
 void FormPreferences::Formats::UpdateBrowser()
 {
-       local_formats.Sort();
+       local_formats.sort();
 
        fl_freeze_form(dialog_->form);
        fl_deselect_browser(dialog_->browser_all);
@@ -1304,14 +1295,14 @@ void FormPreferences::Formats::UpdateBrowser()
        for (::Formats::const_iterator cit = local_formats.begin();
             cit != local_formats.end(); ++cit)
                fl_addto_browser(dialog_->browser_all,
-                                (*cit).prettyname().c_str());
+                                cit->prettyname().c_str());
 
        Input();
        fl_unfreeze_form(dialog_->form);
 
        // Mustn't forget to update the Formats available to the converters_
        parent_.converters_.UpdateChoices();
-       local_converters.Update(local_formats);
+       local_converters.update(local_formats);
 }
 
 
@@ -1323,10 +1314,10 @@ bool FormPreferences::Formats::Add()
        string const shortcut =  fl_get_input(dialog_->input_shrtcut);
        string const viewer =  fl_get_input(dialog_->input_viewer);
 
-       Format const * old = local_formats.GetFormat(name);
+       Format const * old = local_formats.getFormat(name);
        string const old_prettyname = old ? old->prettyname() : string();
-       local_formats.Add(name, extension, prettyname, shortcut);
-       local_formats.SetViewer(name, viewer);
+       local_formats.add(name, extension, prettyname, shortcut);
+       local_formats.setViewer(name, viewer);
        if (!old || prettyname != old_prettyname) {
                UpdateBrowser();
                if (old)
@@ -1345,7 +1336,7 @@ bool FormPreferences::Formats::Browser()
 
        fl_freeze_form(dialog_->form);
 
-       Format const & f = local_formats.Get(i-1);
+       Format const & f = local_formats.get(i - 1);
 
        fl_set_input(dialog_->input_format, f.name().c_str());
        fl_set_input(dialog_->input_gui_name, f.prettyname().c_str());
@@ -1364,17 +1355,17 @@ bool FormPreferences::Formats::Browser()
 }
 
 
-bool FormPreferences::Formats::Delete()
+bool FormPreferences::Formats::erase()
 {
        string const name = fl_get_input(dialog_->input_format);
 
-       if (local_converters.FormatIsUsed(name)) {
+       if (local_converters.formatIsUsed(name)) {
                parent_.printWarning(_("Cannot remove a Format used by a Converter. Remove the converter first."));
                setEnabled(dialog_->button_delete, false);
                return false;
        }
 
-       local_formats.Delete(name);
+       local_formats.erase(name);
        UpdateBrowser();
        return true;
 }
@@ -1383,7 +1374,7 @@ bool FormPreferences::Formats::Delete()
 bool FormPreferences::Formats::Input()
 {
        string const name = fl_get_input(dialog_->input_format);
-       int const sel = local_formats.GetNumber(name);
+       int const sel = local_formats.getNumber(name);
        fl_freeze_form(dialog_->form);
 
        if (sel < 0) {
@@ -1660,7 +1651,7 @@ void FormPreferences::Language::build()
 
        for (Languages::const_iterator cit = languages.begin();
            cit != languages.end(); ++cit) {
-               combo_default_lang->addto((*cit).second.lang());
+               combo_default_lang->addto(cit->second.lang());
        }
 
        fl_end_form();
@@ -1772,7 +1763,7 @@ void FormPreferences::Language::update()
        fl_set_button(dialog_->check_use_kbmap,
                      lyxrc.use_kbmap);
 
-       combo_default_lang->select_text(lyxrc.default_language);
+       combo_default_lang->select(lyxrc.default_language);
 
        if (lyxrc.use_kbmap) {
                fl_set_input(dialog_->input_kbmap1,
@@ -1837,6 +1828,8 @@ void FormPreferences::LnFmisc::apply() const
        lyxrc.new_ask_filename = fl_get_button(dialog_->check_ask_new_file);
        lyxrc.cursor_follows_scrollbar =
                fl_get_button(dialog_->check_cursor_follows_scrollbar);
+       lyxrc.dialogs_iconify_with_main =
+               fl_get_button(dialog_->check_dialogs_iconify_with_main);
        lyxrc.autosave = static_cast<unsigned int>
                (fl_get_counter_value(dialog_->counter_autosave));
        lyxrc.wheel_jump = static_cast<unsigned int>
@@ -1862,6 +1855,7 @@ void FormPreferences::LnFmisc::build()
        setPreHandler(dialog_->counter_autosave);
        setPreHandler(dialog_->check_ask_new_file);
        setPreHandler(dialog_->check_cursor_follows_scrollbar);
+       setPreHandler(dialog_->check_dialogs_iconify_with_main);
        setPreHandler(dialog_->counter_wm_jump);
 }
 
@@ -1883,6 +1877,8 @@ FormPreferences::LnFmisc::feedback(FL_OBJECT const * const ob) const
                str = lyxrc.getDescription(LyXRC::RC_NEW_ASK_FILENAME);
        else if (ob == dialog_->check_cursor_follows_scrollbar)
                str = lyxrc.getDescription(LyXRC::RC_CURSOR_FOLLOWS_SCROLLBAR);
+       else if (ob == dialog_->check_dialogs_iconify_with_main)
+               str = lyxrc.getDescription(LyXRC::RC_DIALOGS_ICONIFY_WITH_MAIN);
        else if (ob == dialog_->counter_autosave)
                str = lyxrc.getDescription(LyXRC::RC_AUTOSAVE);
        else if (ob == dialog_->counter_wm_jump)
@@ -1902,6 +1898,8 @@ void FormPreferences::LnFmisc::update()
        fl_set_button(dialog_->check_ask_new_file, lyxrc.new_ask_filename);
        fl_set_button(dialog_->check_cursor_follows_scrollbar,
                      lyxrc.cursor_follows_scrollbar);
+       fl_set_button(dialog_->check_dialogs_iconify_with_main,
+                     lyxrc.dialogs_iconify_with_main);
        fl_set_counter_value(dialog_->counter_autosave, lyxrc.autosave);
        fl_set_counter_value(dialog_->counter_wm_jump, lyxrc.wheel_jump);
 }
@@ -1930,6 +1928,7 @@ void FormPreferences::OutputsMisc::apply() const
 
        lyxrc.ascii_roff_command = fl_get_input(dialog_->input_ascii_roff);
        lyxrc.chktex_command = fl_get_input(dialog_->input_checktex);
+       lyxrc.view_dvi_paper_option = fl_get_input(dialog_->input_paperoption);
 }
 
 
@@ -1943,6 +1942,7 @@ void FormPreferences::OutputsMisc::build()
        fl_set_input_return(dialog_->input_tex_encoding, FL_RETURN_CHANGED);
        fl_set_input_return(dialog_->input_ascii_roff,   FL_RETURN_CHANGED);
        fl_set_input_return(dialog_->input_checktex,     FL_RETURN_CHANGED);
+       fl_set_input_return(dialog_->input_paperoption,  FL_RETURN_CHANGED);
 
        fl_addto_choice(dialog_->choice_default_papersize,
                        _(" default | US letter | legal | executive | A3 | A4 | A5 | B5 "));
@@ -1953,6 +1953,7 @@ void FormPreferences::OutputsMisc::build()
        setPreHandler(dialog_->choice_default_papersize);
        setPreHandler(dialog_->input_ascii_roff);
        setPreHandler(dialog_->input_checktex);
+       setPreHandler(dialog_->input_paperoption);
 }
 
 
@@ -1971,6 +1972,8 @@ FormPreferences::OutputsMisc::feedback(FL_OBJECT const * const ob) const
                str = lyxrc.getDescription(LyXRC::RC_CHKTEX_COMMAND);
        else if (ob == dialog_->choice_default_papersize)
                str = lyxrc.getDescription(LyXRC::RC_DEFAULT_PAPERSIZE);
+       else if (ob == dialog_->input_paperoption)
+               str = lyxrc.getDescription(LyXRC::RC_VIEWDVI_PAPEROPTION);
 
        return str;
 }
@@ -1988,6 +1991,8 @@ void FormPreferences::OutputsMisc::update()
                     lyxrc.ascii_roff_command.c_str());
        fl_set_input(dialog_->input_checktex,
                     lyxrc.chktex_command.c_str());
+       fl_set_input(dialog_->input_paperoption,
+                     lyxrc.view_dvi_paper_option.c_str());
 }
 
 
@@ -2088,7 +2093,6 @@ FormPreferences::Paths::feedback(FL_OBJECT const * const ob) const
                str = lyxrc.getDescription(LyXRC::RC_BACKUPDIR_PATH);
        else if (ob == dialog_->input_serverpipe) {
                str = lyxrc.getDescription(LyXRC::RC_SERVERPIPE);
-               str += " Enter either the input pipe, xxx.in, or the output pipe, xxx.out.";
        }
 
        return str;
@@ -2546,7 +2550,7 @@ void FormPreferences::ScreenFonts::apply() const
        if (changed) {
                // Now update the buffers
                // Can anything below here affect the redraw process?
-               parent_.lv_->getLyXFunc()->Dispatch(LFUN_SCREEN_FONT_UPDATE);
+               parent_.lv_->getLyXFunc()->dispatch(LFUN_SCREEN_FONT_UPDATE);
        }
 }
 
@@ -2732,18 +2736,18 @@ void FormPreferences::ScreenFonts::update()
 
 
 
-FormPreferences::SpellChecker::SpellChecker( FormPreferences &  p )
+FormPreferences::SpellOptions::SpellOptions( FormPreferences &  p )
        : parent_(p)
 {}
 
 
-FD_form_spellchecker const * FormPreferences::SpellChecker::dialog()
+FD_form_spelloptions const * FormPreferences::SpellOptions::dialog()
 {
        return dialog_.get();
 }
 
 
-void FormPreferences::SpellChecker::apply()
+void FormPreferences::SpellOptions::apply()
 {
 
        string choice = fl_get_choice_text(dialog_->choice_spell_command);
@@ -2751,6 +2755,7 @@ void FormPreferences::SpellChecker::apply()
        
        lyxrc.isp_command = choice;
 
+#if 0
        // If spell checker == "none", all other input set to off.
        if (fl_get_choice(dialog_->choice_spell_command) == 1) {
                lyxrc.isp_use_alt_lang = false;
@@ -2765,6 +2770,7 @@ void FormPreferences::SpellChecker::apply()
                lyxrc.isp_accept_compound = false;
                lyxrc.isp_use_input_encoding = false;
        } 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;
@@ -2794,19 +2800,26 @@ void FormPreferences::SpellChecker::apply()
 
                button = fl_get_button(dialog_->check_input_enc);
                lyxrc.isp_use_input_encoding = static_cast<bool>(button);
+#endif
+#if 0
        }
+#endif
 
        // Reset view
        update();
 }
 
 
-void FormPreferences::SpellChecker::build()
+void FormPreferences::SpellOptions::build()
 {
-       dialog_.reset(parent_.build_spellchecker());
+       dialog_.reset(parent_.build_spelloptions());
 
        fl_addto_choice(dialog_->choice_spell_command,
+#if 0
                        _(" none | ispell | aspell "));
+#else
+                       _(" ispell | aspell "));
+#endif
        fl_set_input_return(dialog_->input_alt_lang,      FL_RETURN_CHANGED);
        fl_set_input_return(dialog_->input_escape_chars,  FL_RETURN_CHANGED);
        fl_set_input_return(dialog_->input_personal_dict, FL_RETURN_CHANGED);
@@ -2826,7 +2839,7 @@ void FormPreferences::SpellChecker::build()
 
 
 string const
-FormPreferences::SpellChecker::feedback(FL_OBJECT const * const ob) const
+FormPreferences::SpellOptions::feedback(FL_OBJECT const * const ob) const
 {
        string str;
 
@@ -2853,12 +2866,13 @@ FormPreferences::SpellChecker::feedback(FL_OBJECT const * const ob) const
 }
 
 
-bool FormPreferences::SpellChecker::input(FL_OBJECT const * const ob)
+bool FormPreferences::SpellOptions::input(FL_OBJECT const * const ob)
 {
-       // !ob if function is called from updateSpellChecker() to de/activate
+       // !ob if function is called from updateSpellOptions() to de/activate
        // objects,
        // otherwise the function is called by an xforms CB via input().
 
+#if 0
        // If spell checker == "none", disable all input.
        if (!ob || ob == dialog_->choice_spell_command) {
                if (fl_get_choice(dialog_->choice_spell_command) == 1) {
@@ -2879,6 +2893,7 @@ bool FormPreferences::SpellChecker::input(FL_OBJECT const * const ob)
                        fl_activate_object(dialog_->check_input_enc);
                }
        }
+#endif
 
        if (!ob || ob == dialog_->check_alt_lang) {
                bool const enable = fl_get_button(dialog_->check_alt_lang);
@@ -2906,15 +2921,22 @@ bool FormPreferences::SpellChecker::input(FL_OBJECT const * const ob)
 }
 
 
-void FormPreferences::SpellChecker::update()
+void FormPreferences::SpellOptions::update()
 {
        int choice = 1;
+#if 0
        if (lyxrc.isp_command == "none")
                choice = 1;
        else if (lyxrc.isp_command == "ispell")
                choice = 2;
        else if (lyxrc.isp_command == "aspell")
                choice = 3;
+#else
+       if (lyxrc.isp_command == "ispell")
+               choice = 1;
+       else if (lyxrc.isp_command == "aspell")
+               choice = 2;
+#endif
        fl_set_choice(dialog_->choice_spell_command, choice);
        
        string str;
@@ -2983,13 +3005,20 @@ void FormPreferences::browse(FL_OBJECT * inpt,
 
 
 // C function wrapper, required by xforms.
-extern "C" int C_FormPreferencesFeedbackCB(FL_OBJECT * ob, int event,
-                                          FL_Coord mx, FL_Coord my,
-                                          int key, void * xev)
-{
-       return FormPreferences::FeedbackCB(ob, event, mx, my, key, xev);
+extern "C" {
+       
+       static
+       int C_FormPreferencesFeedbackCB(FL_OBJECT * ob, int event,
+                                       FL_Coord mx, FL_Coord my,
+                                       int key, void * xev)
+       {
+               return FormPreferences::FeedbackCB(ob, event,
+                                                  mx, my, key, xev);
+       }
+       
 }
 
+
 int FormPreferences::FeedbackCB(FL_OBJECT * ob, int event,
                                FL_Coord, FL_Coord, int, void *)
 {