X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxrc.C;h=8208bb2103d240b3632203685e0692ac3c14e77b;hb=d4f8fe124906af839a02d1ad3b7894e14fb69a37;hp=1129afb870dfdd60edea42102c5195bd62a36138;hpb=ffbc3708f4f8d25ab0eb903bb2887f2cf375f3f1;p=lyx.git diff --git a/src/lyxrc.C b/src/lyxrc.C index 1129afb870..8208bb2103 100644 --- a/src/lyxrc.C +++ b/src/lyxrc.C @@ -25,24 +25,33 @@ #include "converter.h" #include "format.h" #include "gettext.h" -#include "lastfiles.h" +#include "session.h" #include "LColor.h" #include "lyxlex.h" #include "lyxfont.h" +#include "mover.h" #include "graphics/GraphicsTypes.h" +#include "support/convert.h" +#include "support/environment.h" #include "support/filetools.h" #include "support/lstrings.h" -#include "support/tostr.h" +#include "support/os.h" #include "support/userinfo.h" -using lyx::support::ascii_lowercase; -using lyx::support::bformat; -using lyx::support::ExpandPath; -using lyx::support::GetEnv; -using lyx::support::LibFileSearch; -using lyx::support::token; + +namespace lyx { + +namespace os = support::os; + +using support::ascii_lowercase; +using support::bformat; +using support::expandPath; +using support::FileName; +using support::getEnv; +using support::libFileSearch; +using support::token; using std::cout; using std::endl; @@ -59,8 +68,6 @@ namespace { keyword_item lyxrcTags[] = { { "\\accept_compound", LyXRC::RC_ACCEPT_COMPOUND }, { "\\alternate_language", LyXRC::RC_ALT_LANG }, - { "\\ascii_linelen", LyXRC::RC_ASCII_LINELEN }, - { "\\ascii_roff_command", LyXRC::RC_ASCIIROFF_COMMAND }, { "\\auto_number", LyXRC::RC_AUTO_NUMBER }, { "\\auto_region_delete", LyXRC::RC_AUTOREGIONDELETE }, { "\\auto_reset_options", LyXRC::RC_AUTORESET_OPTIONS }, @@ -71,6 +78,8 @@ keyword_item lyxrcTags[] = { { "\\check_lastfiles", LyXRC::RC_CHECKLASTFILES }, { "\\chktex_command", LyXRC::RC_CHKTEX_COMMAND }, { "\\converter", LyXRC::RC_CONVERTER }, + { "\\converter_cache_maxage", LyXRC::RC_CONVERTER_CACHE_MAXAGE }, + { "\\copier", LyXRC::RC_COPIER }, { "\\cursor_follows_scrollbar", LyXRC::RC_CURSOR_FOLLOWS_SCROLLBAR }, { "\\custom_export_command", LyXRC::RC_CUSTOM_EXPORT_COMMAND }, { "\\custom_export_format", LyXRC::RC_CUSTOM_EXPORT_FORMAT }, @@ -97,11 +106,14 @@ keyword_item lyxrcTags[] = { { "\\language_global_options", LyXRC::RC_LANGUAGE_GLOBAL_OPTIONS }, { "\\language_package", LyXRC::RC_LANGUAGE_PACKAGE }, { "\\language_use_babel", LyXRC::RC_LANGUAGE_USE_BABEL }, - { "\\lastfiles", LyXRC::RC_LASTFILES }, + { "\\load_session", LyXRC::RC_LOADSESSION }, { "\\make_backup", LyXRC::RC_MAKE_BACKUP }, { "\\mark_foreign_language", LyXRC::RC_MARK_FOREIGN_LANGUAGE }, { "\\num_lastfiles", LyXRC::RC_NUMLASTFILES }, + { "\\path_prefix", LyXRC::RC_PATH_PREFIX }, { "\\personal_dictionary", LyXRC::RC_PERS_DICT }, + { "\\plaintext_linelen", LyXRC::RC_PLAINTEXT_LINELEN }, + { "\\plaintext_roff_command", LyXRC::RC_PLAINTEXT_ROFF_COMMAND }, { "\\popup_bold_font", LyXRC::RC_POPUP_BOLD_FONT }, { "\\popup_font_encoding", LyXRC::RC_POPUP_FONT_ENCODING }, { "\\popup_normal_font", LyXRC::RC_POPUP_NORMAL_FONT }, @@ -143,6 +155,9 @@ keyword_item lyxrcTags[] = { { "\\screen_font_sizes", LyXRC::RC_SCREEN_FONT_SIZES }, { "\\screen_font_typewriter", LyXRC::RC_SCREEN_FONT_TYPEWRITER }, { "\\screen_font_typewriter_foundry", LyXRC::RC_SCREEN_FONT_TYPEWRITER_FOUNDRY }, + { "\\screen_geometry_height", LyXRC::RC_SCREEN_GEOMETRY_HEIGHT }, + { "\\screen_geometry_width", LyXRC::RC_SCREEN_GEOMETRY_WIDTH }, + { "\\screen_geometry_xysaved", LyXRC::RC_SCREEN_GEOMETRY_XYSAVED }, { "\\screen_zoom", LyXRC::RC_SCREEN_ZOOM }, { "\\serverpipe", LyXRC::RC_SERVERPIPE }, { "\\set_color", LyXRC::RC_SET_COLOR }, @@ -150,10 +165,14 @@ keyword_item lyxrcTags[] = { { "\\spell_command", LyXRC::RC_SPELL_COMMAND }, { "\\tempdir_path", LyXRC::RC_TEMPDIRPATH }, { "\\template_path", LyXRC::RC_TEMPLATEPATH }, + { "\\tex_allows_spaces", LyXRC::RC_TEX_ALLOWS_SPACES }, + { "\\tex_expects_windows_paths", LyXRC::RC_TEX_EXPECTS_WINDOWS_PATHS }, { "\\ui_file", LyXRC::RC_UIFILE }, { "\\use_alt_language", LyXRC::RC_USE_ALT_LANG }, + { "\\use_converter_cache", LyXRC::RC_USE_CONVERTER_CACHE }, { "\\use_escape_chars", LyXRC::RC_USE_ESC_CHARS }, { "\\use_input_encoding", LyXRC::RC_USE_INP_ENC }, + { "\\use_lastfilepos", LyXRC::RC_USELASTFILEPOS }, { "\\use_personal_dictionary", LyXRC::RC_USE_PERS_DICT }, // compatibility with versions older than 1.4.0 only { "\\use_pspell", LyXRC::RC_USE_SPELL_LIB }, @@ -164,8 +183,7 @@ keyword_item lyxrcTags[] = { { "\\user_name", LyXRC::RC_USER_NAME }, { "\\view_dvi_paper_option", LyXRC::RC_VIEWDVI_PAPEROPTION }, // compatibility with versions older than 1.4.0 only - { "\\viewer" ,LyXRC::RC_VIEWER}, - { "\\wheel_jump", LyXRC::RC_WHEEL_JUMP } + { "\\viewer" ,LyXRC::RC_VIEWER} }; const int lyxrcCount = sizeof(lyxrcTags) / sizeof(keyword_item); @@ -184,7 +202,7 @@ void LyXRC::setDefaults() { ui_file = "default"; // Get printer from the environment. If fail, use default "", // assuming that everything is set up correctly. - printer = GetEnv("PRINTER"); + printer = getEnv("PRINTER"); print_adapt_output = false; print_command = "dvips"; print_evenpage_flag = "-B"; @@ -200,9 +218,8 @@ void LyXRC::setDefaults() { print_paper_flag = "-t"; print_paper_dimension_flag = "-T"; document_path.erase(); - tempdir_path = "/tmp"; view_dvi_paper_option.erase(); - default_papersize = PAPER_USLETTER; + default_papersize = PAPER_DEFAULT; custom_export_format = "ps"; chktex_command = "chktex -n1 -n3 -n6 -n9 -n22 -n25 -n30 -n38"; bibtex_command = "bibtex"; @@ -211,18 +228,20 @@ void LyXRC::setDefaults() { dpi = 75; // Because a screen typically is wider than a piece of paper: zoom = 150; - wheel_jump = 5; + geometry_width = 0; + geometry_height = 0; + geometry_xysaved = true; // Default LaTeX font size: - font_sizes[LyXFont::SIZE_TINY] = 5.0; - font_sizes[LyXFont::SIZE_SCRIPT] = 7.0; - font_sizes[LyXFont::SIZE_FOOTNOTE] = 8.0; - font_sizes[LyXFont::SIZE_SMALL] = 9.0; - font_sizes[LyXFont::SIZE_NORMAL] = 10.0; - font_sizes[LyXFont::SIZE_LARGE] = 12.0; - font_sizes[LyXFont::SIZE_LARGER] = 14.4; - font_sizes[LyXFont::SIZE_LARGEST] = 17.26; - font_sizes[LyXFont::SIZE_HUGE] = 20.74; - font_sizes[LyXFont::SIZE_HUGER] = 24.88; + font_sizes[LyXFont::SIZE_TINY] = "5.0"; + font_sizes[LyXFont::SIZE_SCRIPT] = "7.0"; + font_sizes[LyXFont::SIZE_FOOTNOTE] = "8.0"; + font_sizes[LyXFont::SIZE_SMALL] = "9.0"; + font_sizes[LyXFont::SIZE_NORMAL] = "10.0"; + font_sizes[LyXFont::SIZE_LARGE] = "12.0"; + font_sizes[LyXFont::SIZE_LARGER] = "14.4"; + font_sizes[LyXFont::SIZE_LARGEST] = "17.26"; + font_sizes[LyXFont::SIZE_HUGE] = "20.74"; + font_sizes[LyXFont::SIZE_HUGER] = "24.88"; use_scalable_fonts = true; roman_font_name = ""; sans_font_name = ""; @@ -235,12 +254,14 @@ void LyXRC::setDefaults() { autosave = 300; auto_region_delete = true; auto_reset_options = false; - ascii_linelen = 65; + plaintext_linelen = 65; num_lastfiles = maxlastfiles; check_lastfiles = true; + use_lastfilepos = true; + load_session = false; make_backup = true; backupdir_path.erase(); - display_graphics = lyx::graphics::ColorDisplay; + display_graphics = graphics::ColorDisplay; // Spellchecker settings: use_spell_lib = true; isp_command = "ispell"; @@ -262,19 +283,21 @@ void LyXRC::setDefaults() { language_command_local = "\\foreignlanguage{$$lang}{"; default_language = "english"; show_banner = true; - - // - date_insert_format = "%A, %e %B %Y"; + windows_style_tex_paths = false; + tex_allows_spaces = false; + date_insert_format = "%x"; cursor_follows_scrollbar = false; dialogs_iconify_with_main = false; label_init_length = 3; preview = PREVIEW_OFF; preview_hashed_labels = false; - preview_scale_factor = 0.9; + preview_scale_factor = "0.9"; + use_converter_cache = false; + converter_cache_maxage = 6 * 30 * 24 * 3600; // 6 months - user_name = lyx::support::user_name(); + user_name = to_utf8(support::user_name()); - user_email = lyx::support::user_email(); + user_email = to_utf8(support::user_email()); } @@ -293,7 +316,7 @@ void oldFontFormat(string & family, string & foundry) } // namespace anon -int LyXRC::read(string const & filename) +int LyXRC::read(FileName const & filename) { LyXLex lexrc(lyxrcTags, lyxrcCount); if (lyxerr.debugging(Debug::PARSER)) @@ -347,24 +370,24 @@ int LyXRC::read(LyXLex & lexrc) switch (static_cast(le)) { case RC_INPUT: // Include file if (lexrc.next()) { - string const tmp = - LibFileSearch(string(), + FileName const tmp = + libFileSearch(string(), lexrc.getString()); if (read(tmp)) { lexrc.printError("Error reading " - "included file: "+tmp); + "included file: " + tmp.absFilename()); } } break; - case RC_BINDFILE: // RVDK_PATCH_5 + case RC_BINDFILE: if (lexrc.next()) { - bind_file = lexrc.getString(); + bind_file = os::internal_path(lexrc.getString()); } break; case RC_UIFILE: if (lexrc.next()) { - ui_file = lexrc.getString(); + ui_file = os::internal_path(lexrc.getString()); } break; @@ -376,7 +399,19 @@ int LyXRC::read(LyXLex & lexrc) case RC_DISPLAY_GRAPHICS: if (lexrc.next()) { - display_graphics = lyx::graphics::displayTranslator().find(lexrc.getString()); + display_graphics = graphics::displayTranslator().find(lexrc.getString()); + } + break; + + case RC_TEX_EXPECTS_WINDOWS_PATHS: + if (lexrc.next()) { + windows_style_tex_paths = lexrc.getBool(); + } + break; + + case RC_TEX_ALLOWS_SPACES: + if (lexrc.next()) { + tex_allows_spaces = lexrc.getBool(); } break; @@ -388,10 +423,10 @@ int LyXRC::read(LyXLex & lexrc) case RC_KBMAP_PRIMARY: if (lexrc.next()) { - string const kmap(lexrc.getString()); + string const kmap(os::internal_path(lexrc.getString())); if (kmap.empty()) { // nothing - } else if (!LibFileSearch("kbd", kmap, + } else if (!libFileSearch("kbd", kmap, "kmap").empty()) { primary_kbmap = kmap; } else { @@ -402,10 +437,10 @@ int LyXRC::read(LyXLex & lexrc) case RC_KBMAP_SECONDARY: if (lexrc.next()) { - string const kmap(lexrc.getString()); + string const kmap(os::internal_path(lexrc.getString())); if (kmap.empty()) { // nothing - } else if (!LibFileSearch("kbd", kmap, + } else if (!libFileSearch("kbd", kmap, "kmap").empty()) { secondary_kbmap = kmap; } else { @@ -488,7 +523,7 @@ int LyXRC::read(LyXLex & lexrc) case RC_PRINTTOFILE: if (lexrc.next()) { - print_to_file = lexrc.getString(); + print_to_file = os::internal_path(lexrc.getString()); } break; @@ -549,22 +584,25 @@ int LyXRC::read(LyXLex & lexrc) PAPER_USLETTER; else if (size == "legal") default_papersize = - PAPER_LEGALPAPER; + PAPER_USLEGAL; else if (size == "executive") default_papersize = - PAPER_EXECUTIVEPAPER; + PAPER_USEXECUTIVE; else if (size == "a3") default_papersize = - PAPER_A3PAPER; + PAPER_A3; else if (size == "a4") default_papersize = - PAPER_A4PAPER; + PAPER_A4; else if (size == "a5") default_papersize = - PAPER_A5PAPER; + PAPER_A5; else if (size == "b5") default_papersize = - PAPER_B5PAPER; + PAPER_B5; + else if (size == "default") + default_papersize = + PAPER_DEFAULT; } break; @@ -606,52 +644,64 @@ int LyXRC::read(LyXLex & lexrc) } break; - case RC_WHEEL_JUMP: + case RC_SCREEN_GEOMETRY_HEIGHT: + if (lexrc.next()) { + geometry_height = lexrc.getInteger(); + } + break; + + case RC_SCREEN_GEOMETRY_WIDTH: + if (lexrc.next()) { + geometry_width = lexrc.getInteger(); + } + break; + + case RC_SCREEN_GEOMETRY_XYSAVED: if (lexrc.next()) { - wheel_jump = lexrc.getInteger(); + geometry_xysaved = lexrc.getBool(); } break; case RC_SCREEN_FONT_SIZES: if (lexrc.next()) { font_sizes[LyXFont::SIZE_TINY] = - lexrc.getFloat(); + lexrc.getString(); } if (lexrc.next()) { font_sizes[LyXFont::SIZE_SCRIPT] = - lexrc.getFloat(); + lexrc.getString(); } if (lexrc.next()) { font_sizes[LyXFont::SIZE_FOOTNOTE] = - lexrc.getFloat(); + lexrc.getString(); } if (lexrc.next()) { font_sizes[LyXFont::SIZE_SMALL] = - lexrc.getFloat(); + lexrc.getString(); } if (lexrc.next()) { font_sizes[LyXFont::SIZE_NORMAL] = - lexrc.getFloat(); + lexrc.getString(); } if (lexrc.next()) { font_sizes[LyXFont::SIZE_LARGE] = - lexrc.getFloat(); + lexrc.getString(); } if (lexrc.next()) { font_sizes[LyXFont::SIZE_LARGER] = - lexrc.getFloat(); + lexrc.getString(); } if (lexrc.next()) { font_sizes[LyXFont::SIZE_LARGEST] = - lexrc.getFloat(); + lexrc.getString(); } if (lexrc.next()) { font_sizes[LyXFont::SIZE_HUGE] = - lexrc.getFloat(); + lexrc.getString(); } if (lexrc.next()) { font_sizes[LyXFont::SIZE_HUGER] = - lexrc.getFloat(); + lexrc.getString(); } break; @@ -669,19 +719,22 @@ int LyXRC::read(LyXLex & lexrc) case RC_DOCUMENTPATH: if (lexrc.next()) { - document_path = ExpandPath(lexrc.getString()); + document_path = os::internal_path(lexrc.getString()); + document_path = expandPath(document_path); } break; case RC_TEMPLATEPATH: if (lexrc.next()) { - template_path = ExpandPath(lexrc.getString()); + template_path = os::internal_path(lexrc.getString()); + template_path = expandPath(template_path); } break; case RC_TEMPDIRPATH: if (lexrc.next()) { - tempdir_path = ExpandPath(lexrc.getString()); + tempdir_path = os::internal_path(lexrc.getString()); + tempdir_path = expandPath(tempdir_path); } break; @@ -691,9 +744,15 @@ int LyXRC::read(LyXLex & lexrc) } break; - case RC_LASTFILES: + case RC_USELASTFILEPOS: if (lexrc.next()) { - lastfiles = ExpandPath(lexrc.getString()); + use_lastfilepos = lexrc.getBool(); + } + break; + + case RC_LOADSESSION: + if (lexrc.next()) { + load_session = lexrc.getBool(); } break; @@ -816,7 +875,8 @@ int LyXRC::read(LyXLex & lexrc) case RC_SERVERPIPE: if (lexrc.next()) { - lyxpipes = ExpandPath(lexrc.getString()); + lyxpipes = os::internal_path(lexrc.getString()); + lyxpipes = expandPath(lyxpipes); } break; @@ -832,14 +892,14 @@ int LyXRC::read(LyXLex & lexrc) } break; - case RC_ASCIIROFF_COMMAND: + case RC_PLAINTEXT_ROFF_COMMAND: if (lexrc.next()) { - ascii_roff_command = lexrc.getString(); + plaintext_roff_command = lexrc.getString(); } break; - case RC_ASCII_LINELEN: + case RC_PLAINTEXT_LINELEN: if (lexrc.next()) { - ascii_linelen = lexrc.getInteger(); + plaintext_linelen = lexrc.getInteger(); } break; // Spellchecker settings: @@ -885,7 +945,7 @@ int LyXRC::read(LyXLex & lexrc) break; case RC_PERS_DICT: if (lexrc.next()) { - isp_pers_dict = lexrc.getString(); + isp_pers_dict = os::internal_path(lexrc.getString()); } break; case RC_ESC_CHARS: @@ -900,7 +960,8 @@ int LyXRC::read(LyXLex & lexrc) break; case RC_BACKUPDIR_PATH: if (lexrc.next()) { - backupdir_path = ExpandPath(lexrc.getString()); + backupdir_path = os::internal_path(lexrc.getString()); + backupdir_path = expandPath(backupdir_path); } break; case RC_DATE_INSERT_FORMAT: @@ -964,6 +1025,18 @@ int LyXRC::read(LyXLex & lexrc) } break; + case RC_COPIER: { + string fmt, command; + if (lexrc.next()) { + fmt = lexrc.getString(); + } + if (lexrc.next()) { + command = lexrc.getString(); + } + setMover(fmt, command); + break; + } + case RC_CONVERTER: { string from, to, command, flags; if (lexrc.next()) { @@ -978,11 +1051,10 @@ int LyXRC::read(LyXLex & lexrc) if (lexrc.next()) { flags = lexrc.getString(); } - if (command.empty() - || token(command, ' ', 0) == "none") { - converters.erase(from, to); + if (command.empty()) { + theConverters().erase(from, to); } else { - converters.add(from, to, command, flags); + theConverters().add(from, to, command, flags); } break; } @@ -994,8 +1066,6 @@ int LyXRC::read(LyXLex & lexrc) } if (lexrc.next()) { command = lexrc.getString(); - if (token(command, ' ', 0) == "none") - command.erase(); } formats.setViewer(format, command); break; @@ -1015,30 +1085,40 @@ int LyXRC::read(LyXLex & lexrc) shortcut = lexrc.getString(); } string viewer, editor; + if (lexrc.next()) + viewer = lexrc.getString(); + if (lexrc.next()) + editor = lexrc.getString(); + string flags; // Hack to ensure compatibility with versions older - // than 1.4.0 + // than 1.5.0 int le = lexrc.lex(); if (le != LyXLex::LEX_FEOF && le != LyXLex::LEX_UNDEF) { - viewer = lexrc.getString(); - if (le == LyXLex::LEX_DATA) { - if (token(viewer, ' ', 0) == "none") - viewer.erase(); - if (lexrc.next()) { - editor = lexrc.getString(); - if (token(editor, ' ', 0) == "none") - editor.erase(); - } - } else { + flags = lexrc.getString(); + if (le != LyXLex::LEX_DATA) { // We have got a known token. // Therefore this is an old style // format definition without - // viewer and editor. - lexrc.pushToken(viewer); - viewer.erase(); + // flags. + lexrc.pushToken(flags); + flags.erase(); } } + int flgs = Format::none; + while (!flags.empty()) { + string flag; + flags = support::split(flags, flag, ','); + if (flag == "document") + flgs |= Format::document; + else if (flag == "vector") + flgs |= Format::vector; + else + lyxerr << "Ignoring unknown flag `" + << flag << "' for format `" + << format << "'." << endl; + } if (prettyname.empty()) { - if (converters.formatIsUsed(format)) { + if (theConverters().formatIsUsed(format)) { lyxerr << "Can't delete format " << format << endl; } else { @@ -1046,7 +1126,7 @@ int LyXRC::read(LyXLex & lexrc) } } else { formats.add(format, extension, prettyname, - shortcut, viewer, editor); + shortcut, viewer, editor, flgs); } break; } @@ -1093,7 +1173,7 @@ int LyXRC::read(LyXLex & lexrc) case RC_PREVIEW_SCALE_FACTOR: if (lexrc.next()) { - preview_scale_factor = lexrc.getFloat(); + preview_scale_factor = lexrc.getString(); } break; @@ -1107,21 +1187,37 @@ int LyXRC::read(LyXLex & lexrc) user_email = lexrc.getString(); break; + case RC_PATH_PREFIX: + if (lexrc.next()) + path_prefix = lexrc.getString(); + break; + + case RC_USE_CONVERTER_CACHE: + if (lexrc.next()) + use_converter_cache = lexrc.getBool(); + break; + + case RC_CONVERTER_CACHE_MAXAGE: + if (lexrc.next()) + converter_cache_maxage = + convert(lexrc.getString()); + break; + case RC_LAST: break; // this is just a dummy } } /// Update converters data-structures - converters.update(formats); - converters.buildGraph(); + theConverters().update(formats); + theConverters().buildGraph(); return 0; } -void LyXRC::write(string const & filename, bool ignore_system_lyxrc) const +void LyXRC::write(FileName const & filename, bool ignore_system_lyxrc) const { - ofstream ofs(filename.c_str()); + ofstream ofs(filename.toFilesystemEncoding().c_str()); if (ofs) write(ofs, ignore_system_lyxrc); } @@ -1136,6 +1232,24 @@ void LyXRC::print() const } +class SameMover { +public: + typedef std::pair Data; + + SameMover(Data const & comparison) + : comparison_(comparison) {} + + bool operator()(Data const & data) const + { + return data.first == comparison_.first && + data.second.command() == comparison_.second.command(); + } + +private: + Data comparison_; +}; + + void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const { os << "### This file is part of\n" @@ -1164,7 +1278,8 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const case RC_BINDFILE: if (ignore_system_lyxrc || bind_file != system_lyxrc.bind_file) { - os << "\\bind_file " << bind_file << "\n"; + string const path = os::external_path(bind_file); + os << "\\bind_file \"" << path << "\"\n"; } // // Misc Section @@ -1174,17 +1289,25 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const << "#\n\n"; // bind files are not done here. + + case RC_PATH_PREFIX: + if (ignore_system_lyxrc || + path_prefix != system_lyxrc.path_prefix) { + os << "\\path_prefix \"" << path_prefix << "\"\n"; + } + case RC_UIFILE: if (ignore_system_lyxrc || ui_file != system_lyxrc.ui_file) { - os << "\\ui_file \"" << ui_file << "\"\n"; + string const path = os::external_path(ui_file); + os << "\\ui_file \"" << path << "\"\n"; } case RC_AUTOREGIONDELETE: if (ignore_system_lyxrc || auto_region_delete != system_lyxrc.auto_region_delete) { os << "# Set to false to inhibit automatic replacement of\n" << "# the current selection.\n" - << "\\auto_region_delete " << tostr(auto_region_delete) + << "\\auto_region_delete " << convert(auto_region_delete) << '\n'; } case RC_AUTORESET_OPTIONS: @@ -1192,7 +1315,8 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const auto_reset_options != system_lyxrc.auto_reset_options) { os << "# Set to false to inhibit automatic reset of\n" << "# the class options to defaults on class change.\n" - << "\\auto_reset_options " << tostr(auto_reset_options) + << "\\auto_reset_options " + << convert(auto_reset_options) << '\n'; } case RC_AUTOSAVE: @@ -1207,7 +1331,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const os << "# Display graphics within LyX\n" << "# monochrome|grayscale|color|none\n" << "\\display_graphics " - << lyx::graphics::displayTranslator().find(display_graphics) + << graphics::displayTranslator().find(display_graphics) << '\n'; } @@ -1226,21 +1350,25 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const os << "# The default papersize to use.\n" << "\\default_papersize \""; switch (default_papersize) { + case PAPER_DEFAULT: + os << "default"; break; case PAPER_USLETTER: os << "usletter"; break; - case PAPER_LEGALPAPER: + case PAPER_USLEGAL: os << "legal"; break; - case PAPER_EXECUTIVEPAPER: + case PAPER_USEXECUTIVE: os << "executive"; break; - case PAPER_A3PAPER: + case PAPER_A3: os << "a3"; break; - case PAPER_A4PAPER: + case PAPER_A4: os << "a4"; break; - case PAPER_A5PAPER: + case PAPER_A5: os << "a5"; break; - case PAPER_B5PAPER: + case PAPER_B5: os << "b5"; break; - case PAPER_DEFAULT: break; + case PAPER_CUSTOM: + case PAPER_B3: + case PAPER_B4: break; } os << "\"\n"; } @@ -1259,26 +1387,39 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const index_command != system_lyxrc.index_command) { os << "\\index_command \"" << index_command << "\"\n"; } + case RC_TEX_EXPECTS_WINDOWS_PATHS: + if (ignore_system_lyxrc || + windows_style_tex_paths != system_lyxrc.windows_style_tex_paths) { + os << "\\tex_expects_windows_paths " + << convert(windows_style_tex_paths) << '\n'; + } + case RC_TEX_ALLOWS_SPACES: + if (tex_allows_spaces != system_lyxrc.tex_allows_spaces) { + os << "\\tex_allows_spaces " + << convert(tex_allows_spaces) << '\n'; + } case RC_KBMAP: if (ignore_system_lyxrc || use_kbmap != system_lyxrc.use_kbmap) { - os << "\\kbmap " << tostr(use_kbmap) << '\n'; + os << "\\kbmap " << convert(use_kbmap) << '\n'; } case RC_KBMAP_PRIMARY: if (ignore_system_lyxrc || primary_kbmap != system_lyxrc.primary_kbmap) { - os << "\\kbmap_primary \"" << primary_kbmap << "\"\n"; + string const path = os::external_path(primary_kbmap); + os << "\\kbmap_primary \"" << path << "\"\n"; } case RC_KBMAP_SECONDARY: if (ignore_system_lyxrc || secondary_kbmap != system_lyxrc.secondary_kbmap) { - os << "\\kbmap_secondary \"" << secondary_kbmap - << "\"\n"; + string const path = os::external_path(secondary_kbmap); + os << "\\kbmap_secondary \"" << path << "\"\n"; } case RC_SERVERPIPE: if (ignore_system_lyxrc || lyxpipes != system_lyxrc.lyxpipes) { - os << "\\serverpipe \"" << lyxpipes << "\"\n"; + string const path = os::external_path(lyxpipes); + os << "\\serverpipe \"" << path << "\"\n"; } case RC_DATE_INSERT_FORMAT: if (ignore_system_lyxrc || @@ -1302,7 +1443,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const case RC_SHOW_BANNER: if (ignore_system_lyxrc || show_banner != system_lyxrc.show_banner) { - os << "\\show_banner " << tostr(show_banner) << '\n'; + os << "\\show_banner " << convert(show_banner) << '\n'; } case RC_PREVIEW: @@ -1328,7 +1469,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const preview_hashed_labels != system_lyxrc.preview_hashed_labels) { os << "\\preview_hashed_labels " - << tostr(preview_hashed_labels) << '\n'; + << convert(preview_hashed_labels) << '\n'; } case RC_PREVIEW_SCALE_FACTOR: @@ -1338,6 +1479,20 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const << preview_scale_factor << '\n'; } + case RC_USE_CONVERTER_CACHE: + if (ignore_system_lyxrc || + use_converter_cache != system_lyxrc.use_converter_cache) { + os << "\\use_converter_cache " + << convert(use_converter_cache) << '\n'; + } + + case RC_CONVERTER_CACHE_MAXAGE: + if (ignore_system_lyxrc || + converter_cache_maxage != system_lyxrc.converter_cache_maxage) { + os << "\\converter_cache_maxage " + << converter_cache_maxage << '\n'; + } + os << "\n#\n" << "# SCREEN & FONTS SECTION ############################\n" << "#\n\n"; @@ -1370,24 +1525,37 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const zoom != system_lyxrc.zoom) { os << "\\screen_zoom " << zoom << '\n'; } - case RC_WHEEL_JUMP: + case RC_SCREEN_GEOMETRY_HEIGHT: if (ignore_system_lyxrc || - wheel_jump != system_lyxrc.wheel_jump) { - os << "\\wheel_jump " << wheel_jump << '\n'; + geometry_height != system_lyxrc.geometry_height) { + os << "\\screen_geometry_height " << geometry_height + << '\n'; + } + case RC_SCREEN_GEOMETRY_WIDTH: + if (ignore_system_lyxrc || + geometry_width != system_lyxrc.geometry_width) { + os << "\\screen_geometry_width " << geometry_width + << '\n'; + } + case RC_SCREEN_GEOMETRY_XYSAVED: + if (ignore_system_lyxrc || + geometry_xysaved != system_lyxrc.geometry_xysaved) { + os << "\\screen_geometry_xysaved " << convert(geometry_xysaved) + << '\n'; } case RC_CURSOR_FOLLOWS_SCROLLBAR: if (ignore_system_lyxrc || cursor_follows_scrollbar != system_lyxrc.cursor_follows_scrollbar) { os << "\\cursor_follows_scrollbar " - << tostr(cursor_follows_scrollbar) << '\n'; + << convert(cursor_follows_scrollbar) << '\n'; } case RC_DIALOGS_ICONIFY_WITH_MAIN: if (ignore_system_lyxrc || dialogs_iconify_with_main != system_lyxrc.dialogs_iconify_with_main) { os << "\\dialogs_iconify_with_main " - << tostr(dialogs_iconify_with_main) << '\n'; + << convert(dialogs_iconify_with_main) << '\n'; } case RC_SCREEN_FONT_ROMAN: if (ignore_system_lyxrc || @@ -1430,7 +1598,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const if (ignore_system_lyxrc || use_scalable_fonts != system_lyxrc.use_scalable_fonts) { os << "\\screen_font_scalable " - << tostr(use_scalable_fonts) + << convert(use_scalable_fonts) << '\n'; } case RC_SCREEN_FONT_ENCODING: @@ -1507,7 +1675,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const if (ignore_system_lyxrc || print_adapt_output != system_lyxrc.print_adapt_output) { os << "\\print_adapt_output " - << tostr(print_adapt_output) + << convert(print_adapt_output) << '\n'; } case RC_PRINT_COMMAND: @@ -1600,7 +1768,8 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const case RC_PRINTTOFILE: if (ignore_system_lyxrc || print_to_file != system_lyxrc.print_to_file) { - os << "\\print_to_file \"" << print_to_file << "\"\n"; + string const path = os::external_path(print_to_file); + os << "\\print_to_file \"" << path << "\"\n"; } case RC_PRINTFILEEXTENSION: if (ignore_system_lyxrc || @@ -1647,12 +1816,20 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const case RC_DOCUMENTPATH: if (ignore_system_lyxrc || document_path != system_lyxrc.document_path) { - os << "\\document_path \"" << document_path << "\"\n"; + string const path = os::external_path(document_path); + os << "\\document_path \"" << path << "\"\n"; + } + case RC_USELASTFILEPOS: + if (ignore_system_lyxrc || + use_lastfilepos != system_lyxrc.use_lastfilepos) { + os << "\\use_lastfilepos " << convert(use_lastfilepos) + << '\n'; } - case RC_LASTFILES: + case RC_LOADSESSION: if (ignore_system_lyxrc || - lastfiles != system_lyxrc.lastfiles) { - os << "\\lastfiles \"" << lastfiles << "\"\n"; + load_session != system_lyxrc.load_session) { + os << "\\load_session " << convert(load_session) + << "\n"; } case RC_NUMLASTFILES: if (ignore_system_lyxrc || @@ -1662,45 +1839,48 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const case RC_CHECKLASTFILES: if (ignore_system_lyxrc || check_lastfiles != system_lyxrc.check_lastfiles) { - os << "\\check_lastfiles " << tostr(check_lastfiles) + os << "\\check_lastfiles " << convert(check_lastfiles) << '\n'; } case RC_TEMPLATEPATH: if (ignore_system_lyxrc || template_path != system_lyxrc.template_path) { - os << "\\template_path \"" << template_path << "\"\n"; + string const path = os::external_path(template_path); + os << "\\template_path \"" << path << "\"\n"; } case RC_TEMPDIRPATH: if (ignore_system_lyxrc || tempdir_path != system_lyxrc.tempdir_path) { - os << "\\tempdir_path \"" << tempdir_path << "\"\n"; + string const path = os::external_path(tempdir_path); + os << "\\tempdir_path \"" << path << "\"\n"; } case RC_USETEMPDIR: // Ignore it - case RC_ASCII_LINELEN: + case RC_PLAINTEXT_LINELEN: if (ignore_system_lyxrc || - ascii_linelen != system_lyxrc.ascii_linelen) { - os << "\\ascii_linelen " << ascii_linelen << '\n'; + plaintext_linelen != system_lyxrc.plaintext_linelen) { + os << "\\plaintext_linelen " << plaintext_linelen << '\n'; } case RC_MAKE_BACKUP: if (ignore_system_lyxrc || make_backup != system_lyxrc.make_backup) { - os << "\\make_backup " << tostr(make_backup) << '\n'; + os << "\\make_backup " << convert(make_backup) << '\n'; } case RC_BACKUPDIR_PATH: if (ignore_system_lyxrc || backupdir_path != system_lyxrc.backupdir_path) { - os << "\\backupdir_path \"" << backupdir_path << "\"\n"; + string const path = os::external_path(backupdir_path); + os << "\\backupdir_path \"" << path << "\"\n"; } os << "\n#\n" - << "# ASCII EXPORT SECTION ##############################\n" + << "# PLAIN TEXT EXPORT SECTION ##############################\n" << "#\n\n"; - case RC_ASCIIROFF_COMMAND: + case RC_PLAINTEXT_ROFF_COMMAND: if (ignore_system_lyxrc || - ascii_roff_command != system_lyxrc.ascii_roff_command) { - os << "\\ascii_roff_command \"" << ascii_roff_command + plaintext_roff_command != system_lyxrc.plaintext_roff_command) { + os << "\\plaintext_roff_command \"" << plaintext_roff_command << "\"\n"; } @@ -1710,7 +1890,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const case RC_USE_SPELL_LIB: if (ignore_system_lyxrc || use_spell_lib != system_lyxrc.use_spell_lib) { - os << "\\use_spell_lib " << tostr(use_spell_lib) << '\n'; + os << "\\use_spell_lib " << convert(use_spell_lib) << '\n'; } case RC_SPELL_COMMAND: if (ignore_system_lyxrc || @@ -1720,13 +1900,13 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const case RC_ACCEPT_COMPOUND: if (ignore_system_lyxrc || isp_accept_compound != system_lyxrc.isp_accept_compound) { - os << "\\accept_compound " << tostr(isp_accept_compound) + os << "\\accept_compound " << convert(isp_accept_compound) << '\n'; } case RC_USE_ALT_LANG: if (ignore_system_lyxrc || isp_use_alt_lang != system_lyxrc.isp_use_alt_lang) { - os << "\\use_alt_language " << tostr(isp_use_alt_lang) + os << "\\use_alt_language " << convert(isp_use_alt_lang) << '\n'; } case RC_ALT_LANG: @@ -1738,7 +1918,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const case RC_USE_ESC_CHARS: if (ignore_system_lyxrc || isp_use_esc_chars != system_lyxrc.isp_use_esc_chars) { - os << "\\use_escape_chars " << tostr(isp_use_esc_chars) + os << "\\use_escape_chars " << convert(isp_use_esc_chars) << '\n'; } case RC_ESC_CHARS: @@ -1750,20 +1930,20 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const if (ignore_system_lyxrc || isp_use_pers_dict != system_lyxrc.isp_use_pers_dict) { os << "\\use_personal_dictionary " - << tostr(isp_use_pers_dict) + << convert(isp_use_pers_dict) << '\n'; } case RC_PERS_DICT: if (isp_pers_dict != system_lyxrc.isp_pers_dict) { - os << "\\personal_dictionary \"" << isp_pers_dict - << "\"\n"; + string const path = os::external_path(isp_pers_dict); + os << "\\personal_dictionary \"" << path << "\"\n"; } case RC_USE_INP_ENC: if (ignore_system_lyxrc || isp_use_input_encoding != system_lyxrc.isp_use_input_encoding) { os << "\\use_input_encoding " - << tostr(isp_use_input_encoding) + << convert(isp_use_input_encoding) << '\n'; } @@ -1774,7 +1954,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const case RC_RTL_SUPPORT: if (ignore_system_lyxrc || rtl_support != system_lyxrc.rtl_support) { - os << "\\rtl " << tostr(rtl_support) << '\n'; + os << "\\rtl " << convert(rtl_support) << '\n'; } case RC_LANGUAGE_PACKAGE: if (ignore_system_lyxrc || @@ -1787,14 +1967,14 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const language_global_options != system_lyxrc.language_global_options) { os << "\\language_global_options \"" - << tostr(language_global_options) + << convert(language_global_options) << "\"\n"; } case RC_LANGUAGE_USE_BABEL: if (ignore_system_lyxrc || language_use_babel != system_lyxrc.language_use_babel) { os << "\\language_use_babel \"" - << tostr(language_use_babel) + << convert(language_use_babel) << "\"\n"; } case RC_LANGUAGE_COMMAND_BEGIN: @@ -1824,20 +2004,20 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const if (ignore_system_lyxrc || language_auto_begin != system_lyxrc.language_auto_begin) { os << "\\language_auto_begin " - << tostr(language_auto_begin) << '\n'; + << convert(language_auto_begin) << '\n'; } case RC_LANGUAGE_AUTO_END: if (ignore_system_lyxrc || language_auto_end != system_lyxrc.language_auto_end) { os << "\\language_auto_end " - << tostr(language_auto_end) << '\n'; + << convert(language_auto_end) << '\n'; } case RC_MARK_FOREIGN_LANGUAGE: if (ignore_system_lyxrc || mark_foreign_language != system_lyxrc.mark_foreign_language) { os << "\\mark_foreign_language " << - tostr(mark_foreign_language) << '\n'; + convert(mark_foreign_language) << '\n'; } os << "\n#\n" @@ -1847,7 +2027,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const case RC_AUTO_NUMBER: if (ignore_system_lyxrc || auto_number != system_lyxrc.auto_number) { - os << "\\auto_number " << tostr(auto_number) << '\n'; + os << "\\auto_number " << convert(auto_number) << '\n'; } case RC_DEFAULT_LANGUAGE: if (ignore_system_lyxrc || @@ -1860,7 +2040,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const << "#\n\n"; case RC_FORMAT: - // New/modifed formats + // New/modified formats for (Formats::const_iterator cit = formats.begin(); cit != formats.end(); ++cit) { Format const * format = @@ -1870,13 +2050,23 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const format->prettyname() != cit->prettyname() || format->shortcut() != cit->shortcut() || format->viewer() != cit->viewer() || - format->editor() != cit->editor()) + format->editor() != cit->editor() || + format->documentFormat() != cit->documentFormat() || + format->vectorFormat() != cit->vectorFormat()) { os << "\\format \"" << cit->name() << "\" \"" << cit->extension() << "\" \"" << cit->prettyname() << "\" \"" << cit->shortcut() << "\" \"" << cit->viewer() << "\" \"" - << cit->editor() << "\"\n"; + << cit->editor() << "\" \""; + std::vector flags; + if (cit->documentFormat()) + flags.push_back("document"); + if (cit->vectorFormat()) + flags.push_back("vector"); + os << support::getStringFromVector(flags); + os << "\"\n"; + } } // Look for deleted formats @@ -1884,7 +2074,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const cit != system_formats.end(); ++cit) if (!formats.getFormat(cit->name())) os << "\\format \"" << cit->name() - << "\" \"\" \"\" \"\" \"\" \"\"\n"; + << "\" \"\" \"\" \"\" \"\" \"\" \"\"\n"; case RC_VIEWER: // Ignore it @@ -1894,10 +2084,10 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const case RC_CONVERTER: // Look for new converters - for (Converters::const_iterator cit = converters.begin(); - cit != converters.end(); ++cit) { + for (Converters::const_iterator cit = theConverters().begin(); + cit != theConverters().end(); ++cit) { Converter const * converter = - system_converters.getConverter(cit->from, + theSystemConverters().getConverter(cit->from, cit->to); if (!converter || converter->command != cit->command || @@ -1909,13 +2099,41 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const } // New/modifed converters - for (Converters::const_iterator cit = system_converters.begin(); - cit != system_converters.end(); ++cit) - if (!converters.getConverter(cit->from, cit->to)) + for (Converters::const_iterator cit = theSystemConverters().begin(); + cit != theSystemConverters().end(); ++cit) + if (!theConverters().getConverter(cit->from, cit->to)) os << "\\converter \"" << cit->from << "\" \"" << cit->to << "\" \"\" \"\"\n"; + case RC_COPIER: + os << "\n#\n" + << "# COPIERS SECTION ##########################\n" + << "#\n\n"; + + // Look for new movers + Movers::const_iterator const sysbegin = theSystemMovers().begin(); + Movers::const_iterator const sysend = theSystemMovers().end(); + Movers::const_iterator it = theMovers().begin(); + Movers::const_iterator end = theMovers().end(); + + for (; it != end; ++it) { + Movers::const_iterator const sysit = + std::find_if(sysbegin, sysend, SameMover(*it)); + if (sysit == sysend) { + std::string const & fmt = it->first; + std::string const & command = + it->second.command(); + + os << "\\copier " << fmt + << " \"" << command << "\"\n"; + } + } + + // We don't actually delete SpecialisedMover(s) from the + // map, just clear their 'command', so there's no need + // to test for anything else. } + os.flush(); } @@ -1940,349 +2158,409 @@ void LyXRC::set_font_norm_type() } +#if 0 string const LyXRC::getDescription(LyXRCTags tag) { - string str; + docstring str; switch (tag) { - case RC_FONT_ENCODING: - str = _("The font encoding used for the LaTeX2e fontenc package. T1 is highly recommended for non-English languages."); + case RC_ACCEPT_COMPOUND: + str = _("Consider run-together words, such as \"diskdrive\" for \"disk drive\", as legal words?"); break; - case RC_PRINTER: - str = _("The default printer to print on. If none is specified, LyX will use the environment variable PRINTER."); + case RC_ALT_LANG: + case RC_USE_ALT_LANG: + str = _("Specify an alternate language. The default is to use the language of the document."); break; - case RC_PRINT_COMMAND: - str = _("Your favorite print program, e.g. \"dvips\", \"dvilj4\"."); + case RC_PLAINTEXT_ROFF_COMMAND: + str = _("Use to define an external program to render tables in plain text output. E.g. \"groff -t -Tlatin1 $$FName\" where $$FName is the input file. If \"\" is specified, an internal routine is used."); break; - case RC_PRINTEVENPAGEFLAG: - str = _("The option to print only even pages."); + case RC_PLAINTEXT_LINELEN: + str = _("The maximum line length of exported plain text/LaTeX/SGML files. If set to 0, paragraphs are output in a single line; if the line length is > 0, paragraphs are separated by a blank line."); break; - case RC_PRINTODDPAGEFLAG: - str = _("The option to print only odd pages."); + case RC_AUTOREGIONDELETE: + str = _("De-select if you don't want the current selection to be replaced automatically by what you type."); break; - case RC_PRINTPAGERANGEFLAG: - str = _("The option for specifying a comma-separated list of pages to print."); + case RC_AUTORESET_OPTIONS: + str = _("De-select if you don't want the class options to be reset to defaults after class change."); break; - case RC_PRINTCOPIESFLAG: - str = _("The option for specifying the number of copies to print."); + case RC_AUTOSAVE: + str = _("The time interval between auto-saves (in seconds). 0 means no auto-save."); break; - case RC_PRINTCOLLCOPIESFLAG: - str = _("The option for specifying whether the copies should be collated."); + case RC_AUTO_NUMBER: break; - case RC_PRINTREVERSEFLAG: - str = _("The option to reverse the order of the pages printed."); + case RC_BACKUPDIR_PATH: + str = _("The path for storing backup files. If it is an empty string, LyX will store the backup file in the same directory as the original file."); break; - case RC_PRINTLANDSCAPEFLAG: - str = _("The option to print out in landscape."); + case RC_BIBTEX_COMMAND: + str = _("Define the options of bibtex (cf. man bibtex) or select an alternative compiler (e.g. mlbibtex or bibulus)."); break; - case RC_PRINTPAPERFLAG: - str = _("The option to specify paper type."); + case RC_BINDFILE: + str = _("Keybindings file. Can either specify an absolute path, or LyX will look in its global and local bind/ directories."); break; - case RC_PRINTPAPERDIMENSIONFLAG: - str = _("Option to specify the dimensions of the print paper."); + case RC_CHECKLASTFILES: + str = _("Select to check whether the lastfiles still exist."); break; - case RC_PRINTTOPRINTER: - str = _("Option to pass to the print program to print on a specific printer."); + case RC_CHKTEX_COMMAND: + str = _("Define how to run chktex. E.g. \"chktex -n11 -n1 -n3 -n6 -n9 -22 -n25 -n30 -n38\" Refer to the ChkTeX documentation."); break; - case RC_PRINT_ADAPTOUTPUT: - str = _("Select for LyX to pass the name of the destination printer to your print command."); + case RC_CONVERTER: break; - case RC_PRINTTOFILE: - str = _("Option to pass to the print program to print to a file."); + case RC_COPIER: break; - case RC_PRINTFILEEXTENSION: - str = _("Extension of printer program output file. Usually \".ps\"."); + case RC_CURSOR_FOLLOWS_SCROLLBAR: + str = _("LyX normally doesn't update the cursor position if you move the scrollbar. Set to true if you'd prefer to always have the cursor on screen."); break; - case RC_PRINTEXSTRAOPTIONS: - str = _("Extra options to pass to printing program after everything else, but before the filename of the DVI file to be printed."); + case RC_CUSTOM_EXPORT_COMMAND: break; - case RC_PRINTSPOOL_COMMAND: - str = _("When set, this printer option automatically prints to a file and then calls a separate print spooling program on that file with the given name and arguments."); + case RC_CUSTOM_EXPORT_FORMAT: break; - case RC_PRINTSPOOL_PRINTERPREFIX: - str = _("If you specify a printer name in the print dialog, the following argument is prepended along with the printer name after the spool command."); + case RC_DATE_INSERT_FORMAT: + //xgettext:no-c-format + str = _("This accepts the normal strftime formats; see man strftime for full details. E.g.\"%A, %e. %B %Y\"."); break; - case RC_SCREEN_DPI: - str = _("DPI (dots per inch) of your monitor is auto-detected by LyX. If that goes wrong, override the setting here."); + case RC_DEFAULT_LANGUAGE: + str = _("New documents will be assigned this language."); break; - case RC_SCREEN_ZOOM: - //xgettext:no-c-format - str = _("The zoom percentage for screen fonts. A setting of 100% will make the fonts roughly the same size as on paper."); + case RC_DEFAULT_PAPERSIZE: + str = _("Specify the default paper size."); break; - case RC_SCREEN_FONT_SIZES: - str = _("The font sizes used for calculating the scaling of the screen fonts."); + case RC_DIALOGS_ICONIFY_WITH_MAIN: + str = _("Iconify the dialogs when the main window is iconified. (Affects only dialogs shown after the change has been made.)"); break; - case RC_SCREEN_FONT_ROMAN: - case RC_SCREEN_FONT_SANS: - case RC_SCREEN_FONT_TYPEWRITER: - str = _("The screen fonts used to display the text while editing."); + case RC_DISPLAY_GRAPHICS: + str = _("Select how LyX will display any graphics."); break; - case RC_POPUP_BOLD_FONT: - str = _("The bold font in the dialogs."); + case RC_DOCUMENTPATH: + str = _("The default path for your documents. An empty value selects the directory LyX was started from."); break; - case RC_POPUP_NORMAL_FONT: - str = _("The normal font in the dialogs."); + case RC_ESC_CHARS: + case RC_USE_ESC_CHARS: + str = _("Specify additional chars that can be part of a word."); break; - case RC_SCREEN_FONT_ENCODING: - str = _("The encoding for the screen fonts."); + case RC_FONT_ENCODING: + str = _("The font encoding used for the LaTeX2e fontenc package. T1 is highly recommended for non-English languages."); break; - case RC_POPUP_FONT_ENCODING: - str = _("The encoding for the menu/popups fonts."); + case RC_FORMAT: break; - case RC_SET_COLOR: + case RC_INDEX_COMMAND: + str = _("Define the options of makeindex (cf. man makeindex) or select an alternative compiler. E.g., using xindy/make-rules, the command string would be \"makeindex.sh -m $$lang\"."); break; - case RC_AUTOSAVE: - str = _("The time interval between auto-saves (in seconds). 0 means no auto-save."); + case RC_INPUT: break; - case RC_DOCUMENTPATH: - str = _("The default path for your documents. An empty value selects the directory LyX was started from."); + case RC_KBMAP: + case RC_KBMAP_PRIMARY: + case RC_KBMAP_SECONDARY: + str = _("Use this to set the correct mapping file for your keyboard. You'll need this if you for instance want to type German documents on an American keyboard."); break; - case RC_TEMPLATEPATH: - str = _("The path that LyX will set when offering to choose a template. An empty value selects the directory LyX was started from."); + case RC_LABEL_INIT_LENGTH: + str = _("Maximum number of words in the initialization string for a new label"); break; - case RC_TEMPDIRPATH: - str = _("LyX will place its temporary directories in this path. They will be deleted when you quit LyX."); + case RC_LANGUAGE_AUTO_BEGIN: + str = _("Select if a language switching command is needed at the beginning of the document."); break; - case RC_LASTFILES: - str = _("The file where the last-files information should be stored."); + case RC_LANGUAGE_AUTO_END: + str = _("Select if a language switching command is needed at the end of the document."); break; - case RC_AUTOREGIONDELETE: - str = _("De-select if you don't want the current selection to be replaced automatically by what you type."); + case RC_LANGUAGE_COMMAND_BEGIN: + str = _("The LaTeX command for changing from the language of the document to another language. E.g. \\selectlanguage{$$lang} where $$lang is substituted by the name of the second language."); break; - case RC_AUTORESET_OPTIONS: - str = _("De-select if you don't want the class options to be reset to defaults after class change."); + case RC_LANGUAGE_COMMAND_END: + str = _("The LaTeX command for changing back to the language of the document."); break; - case RC_SERVERPIPE: - str = _("This starts the lyxserver. The pipes get an additional extension \".in\" and \".out\". Only for advanced users."); + case RC_LANGUAGE_COMMAND_LOCAL: + str = _("The LaTeX command for local changing of the language."); break; - case RC_BINDFILE: - str = _("Keybindings file. Can either specify an absolute path, or LyX will look in its global and local bind/ directories."); + case RC_LANGUAGE_GLOBAL_OPTIONS: + str = _("De-select if you don't want the language(s) used as an argument to \\documentclass."); break; - case RC_UIFILE: - str = _("The UI (user interface) file. Can either specify an absolute path, or LyX will look in its global and local ui/ directories."); + case RC_LANGUAGE_PACKAGE: + str = _("The LaTeX command for loading the language package. E.g. \"\\usepackage{babel}\", \"\\usepackage{omega}\"."); break; - case RC_KBMAP: - case RC_KBMAP_PRIMARY: - case RC_KBMAP_SECONDARY: - str = _("Use this to set the correct mapping file for your keyboard. You'll need this if you for instance want to type German documents on an American keyboard."); + case RC_LANGUAGE_USE_BABEL: + str = _("De-select if you don't want babel to be used when the language of the document is the default language."); break; - case RC_ASCIIROFF_COMMAND: - str = _("Use to define an external program to render tables in the ASCII output. E.g. \"groff -t -Tlatin1 $$FName\" where $$FName is the input file. If \"none\" is specified, an internal routine is used."); + case RC_USELASTFILEPOS: + str = _("De-select if you do not want LyX to scroll to saved position."); break; - case RC_ASCII_LINELEN: - str = _("This is the maximum line length of an exported ASCII file (LaTeX, SGML or plain text)."); + case RC_LOADSESSION: + str = _("De-select to prevent loading files opened from the last lyx session."); + break; + + case RC_MAKE_BACKUP: + str = _("De-select if you don't want LyX to create backup files."); + break; + + case RC_MARK_FOREIGN_LANGUAGE: + str = _("Select to control the highlighting of words with a language foreign to that of the document."); break; case RC_NUMLASTFILES: - str = bformat(_("Maximal number of lastfiles. Up to %1$s can appear in the file menu."), tostr(maxlastfiles)); + str = bformat(_("Maximal number of lastfiles. Up to %1$d can appear in the file menu."), + maxlastfiles); break; - case RC_CHECKLASTFILES: - str = _("Select to check whether the lastfiles still exist."); + case RC_PATH_PREFIX: + str = _("Specify those directories which should be " + "prepended to the PATH environment variable. " + "Use the OS native format."); break; - case RC_VIEWDVI_PAPEROPTION: - str = _("Specify the paper command to DVI viewer (leave empty or use \"-paper\")"); + case RC_PERS_DICT: + case RC_USE_PERS_DICT: + str = _("Specify an alternate personal dictionary file. E.g. \".ispell_english\"."); break; - case RC_DEFAULT_PAPERSIZE: - str = _("Specify the default paper size."); + case RC_POPUP_BOLD_FONT: + str = _("The bold font in the dialogs."); break; - case RC_ACCEPT_COMPOUND: - str = _("Consider run-together words, such as \"diskdrive\" for \"disk drive\", as legal words?"); + case RC_POPUP_FONT_ENCODING: + str = _("The encoding for the menu/popups fonts."); break; - case RC_SPELL_COMMAND: - str = _("What command runs the spell checker?"); + case RC_POPUP_NORMAL_FONT: + str = _("The normal font in the dialogs."); break; - case RC_USE_INP_ENC: - str = _("Specify whether to pass the -T input encoding option to ispell. Enable this if you can't spellcheck words with international letters in them. This may not work with all dictionaries."); + case RC_PREVIEW: + str = _("Shows a typeset preview of things such as math"); break; - case RC_USE_ALT_LANG: - case RC_ALT_LANG: - str = _("Specify an alternate language. The default is to use the language of the document."); + case RC_PREVIEW_HASHED_LABELS: + str = _("Previewed equations will have \"(#)\" labels rather than numbered ones"); break; - case RC_USE_PERS_DICT: - case RC_PERS_DICT: - str = _("Specify an alternate personal dictionary file. E.g. \".ispell_english\"."); + case RC_PREVIEW_SCALE_FACTOR: + str = _("Scale the preview size to suit."); break; - case RC_USE_ESC_CHARS: - case RC_ESC_CHARS: - str = _("Specify additional chars that can be part of a word."); + case RC_PRINTCOLLCOPIESFLAG: + str = _("The option for specifying whether the copies should be collated."); break; - case RC_SCREEN_FONT_SCALABLE: - str = _("Allow bitmap fonts to be resized. If you are using a bitmap font, selecting this option may make some fonts look blocky in LyX. Deselecting this option makes LyX use the nearest bitmap font size available, instead of scaling."); + case RC_PRINTCOPIESFLAG: + str = _("The option for specifying the number of copies to print."); break; - case RC_CHKTEX_COMMAND: - str = _("Define how to run chktex. E.g. \"chktex -n11 -n1 -n3 -n6 -n9 -22 -n25 -n30 -n38\" Refer to the ChkTeX documentation."); + case RC_PRINTER: + str = _("The default printer to print on. If none is specified, LyX will use the environment variable PRINTER."); break; - case RC_BIBTEX_COMMAND: - str = _("Define the options of bibtex (cf. man bibtex) or select an alternative compiler (e.g. mlbibtex or bibulus)."); + case RC_PRINTEVENPAGEFLAG: + str = _("The option to print only even pages."); break; - case RC_INDEX_COMMAND: - str = _("Define the options of makeindex (cf. man makeindex) or select an alternative compiler. E.g., using xindy/make-rules, the command string would be \"makeindex.sh -m $$lang\"."); + case RC_PRINTEXSTRAOPTIONS: + str = _("Extra options to pass to printing program after everything else, but before the filename of the DVI file to be printed."); break; - case RC_CURSOR_FOLLOWS_SCROLLBAR: - str = _("LyX normally doesn't update the cursor position if you move the scrollbar. Set to true if you'd prefer to always have the cursor on screen."); + case RC_PRINTFILEEXTENSION: + str = _("Extension of printer program output file. Usually \".ps\"."); break; - case RC_DIALOGS_ICONIFY_WITH_MAIN: - str = _("Iconify the dialogs when the main window is iconified. (Affects only dialogs shown after the change has been made.)"); + case RC_PRINTLANDSCAPEFLAG: + str = _("The option to print out in landscape."); break; - case RC_DISPLAY_GRAPHICS: - str = _("Select how LyX will display any graphics."); + case RC_PRINTODDPAGEFLAG: + str = _("The option to print only odd pages."); break; - case RC_MAKE_BACKUP: - str = _("De-select if you don't want LyX to create backup files."); + case RC_PRINTPAGERANGEFLAG: + str = _("The option for specifying a comma-separated list of pages to print."); break; - case RC_BACKUPDIR_PATH: - str = _("The path for storing backup files. If it is an empty string, LyX will store the backup file in the same directory as the original file."); + case RC_PRINTPAPERDIMENSIONFLAG: + str = _("Option to specify the dimensions of the print paper."); + break; + + case RC_PRINTPAPERFLAG: + str = _("The option to specify paper type."); + break; + + case RC_PRINTREVERSEFLAG: + str = _("The option to reverse the order of the pages printed."); + break; + + case RC_PRINTSPOOL_COMMAND: + str = _("When set, this printer option automatically prints to a file and then calls a separate print spooling program on that file with the given name and arguments."); + break; + + case RC_PRINTSPOOL_PRINTERPREFIX: + str = _("If you specify a printer name in the print dialog, the following argument is prepended along with the printer name after the spool command."); + break; + + case RC_PRINTTOFILE: + str = _("Option to pass to the print program to print to a file."); + break; + + case RC_PRINTTOPRINTER: + str = _("Option to pass to the print program to print on a specific printer."); + break; + + case RC_PRINT_ADAPTOUTPUT: + str = _("Select for LyX to pass the name of the destination printer to your print command."); + break; + + case RC_PRINT_COMMAND: + str = _("Your favorite print program, e.g. \"dvips\", \"dvilj4\"."); break; case RC_RTL_SUPPORT: str = _("Select to enable support of right-to-left languages (e.g. Hebrew, Arabic)."); break; - case RC_MARK_FOREIGN_LANGUAGE: - str = _("Select to control the highlighting of words with a language foreign to that of the document."); + case RC_SCREEN_DPI: + str = _("DPI (dots per inch) of your monitor is auto-detected by LyX. If that goes wrong, override the setting here."); break; - case RC_LANGUAGE_PACKAGE: - str = _("The LaTeX command for loading the language package. E.g. \"\\usepackage{babel}\", \"\\usepackage{omega}\"."); + case RC_SCREEN_FONT_ENCODING: + str = _("The encoding for the screen fonts."); break; - case RC_LANGUAGE_GLOBAL_OPTIONS: - str = _("De-select if you don't want the language(s) used as an argument to \\documentclass."); + case RC_SCREEN_FONT_ROMAN: + case RC_SCREEN_FONT_SANS: + case RC_SCREEN_FONT_TYPEWRITER: + str = _("The screen fonts used to display the text while editing."); break; - case RC_LANGUAGE_USE_BABEL: - str = _("De-select if you don't want babel to be used when the language of the document is the default language."); + case RC_SCREEN_FONT_ROMAN_FOUNDRY: + case RC_SCREEN_FONT_SANS_FOUNDRY: + case RC_SCREEN_FONT_TYPEWRITER_FOUNDRY: break; - case RC_LANGUAGE_AUTO_BEGIN: - str = _("Select if a language switching command is needed at the beginning of the document."); + case RC_SCREEN_FONT_SCALABLE: + str = _("Allow bitmap fonts to be resized. If you are using a bitmap font, selecting this option may make some fonts look blocky in LyX. Deselecting this option makes LyX use the nearest bitmap font size available, instead of scaling."); break; - case RC_LANGUAGE_AUTO_END: - str = _("Select if a language switching command is needed at the end of the document."); + case RC_SCREEN_FONT_SIZES: + str = _("The font sizes used for calculating the scaling of the screen fonts."); break; - case RC_LANGUAGE_COMMAND_BEGIN: - str = _("The LaTeX command for changing from the language of the document to another language. E.g. \\selectlanguage{$$lang} where $$lang is substituted by the name of the second language."); + case RC_SCREEN_ZOOM: + //xgettext:no-c-format + str = _("The zoom percentage for screen fonts. A setting of 100% will make the fonts roughly the same size as on paper."); break; - case RC_LANGUAGE_COMMAND_END: - str = _("The LaTeX command for changing back to the language of the document."); + case RC_SCREEN_GEOMETRY_HEIGHT: + case RC_SCREEN_GEOMETRY_WIDTH: + str = _("Specify geometry of the main view in width x height (values from last session will not be used if non-zero values are specified)."); break; - case RC_LANGUAGE_COMMAND_LOCAL: - str = _("The LaTeX command for local changing of the language."); + case RC_SCREEN_GEOMETRY_XYSAVED: + str = _("Allow session manager to save and restore windows position."); break; - case RC_DATE_INSERT_FORMAT: - //xgettext:no-c-format - str = _("This accepts the normal strftime formats; see man strftime for full details. E.g.\"%A, %e. %B %Y\"."); + case RC_SERVERPIPE: + str = _("This starts the lyxserver. The pipes get an additional extension \".in\" and \".out\". Only for advanced users."); + break; + + case RC_SET_COLOR: break; case RC_SHOW_BANNER: str = _("De-select if you don't want the startup banner."); break; - case RC_WHEEL_JUMP: - str = _("The number of lines that are scrolled by mice with wheels or five button mice."); + case RC_SPELL_COMMAND: + str = _("What command runs the spellchecker?"); break; - case RC_CONVERTER: + case RC_TEMPDIRPATH: + str = _("LyX will place its temporary directories in this path. They will be deleted when you quit LyX."); break; - case RC_VIEWER: + case RC_TEMPLATEPATH: + str = _("The path that LyX will set when offering to choose a template. An empty value selects the directory LyX was started from."); break; - case RC_FORMAT: + case RC_TEX_ALLOWS_SPACES: break; - case RC_DEFAULT_LANGUAGE: - str = _("New documents will be assigned this language."); + case RC_TEX_EXPECTS_WINDOWS_PATHS: break; - case RC_LABEL_INIT_LENGTH: - str = _("Maximum number of words in the initialization string for a new label"); + case RC_UIFILE: + str = _("The UI (user interface) file. Can either specify an absolute path, or LyX will look in its global and local ui/ directories."); break; - case RC_PREVIEW: - str = _("Shows a typeset preview of things such as math"); + case RC_USER_EMAIL: break; - case RC_PREVIEW_HASHED_LABELS: - str = _("Previewed equations will have \"(#)\" labels rather than numbered ones"); + case RC_USER_NAME: break; - case RC_PREVIEW_SCALE_FACTOR: - str = _("Scale the preview size to suit."); + case RC_USETEMPDIR: break; - default: + case RC_USE_INP_ENC: + str = _("Specify whether to pass the -T input encoding option to ispell. Enable this if you cannot check the spelling of words containing accented letters. This may not work with all dictionaries."); + break; + + case RC_USE_SPELL_LIB: + break; + + case RC_VIEWDVI_PAPEROPTION: + _("Specify the paper command to DVI viewer (leave empty or use \"-paper\")"); + break; + + case RC_VIEWER: + break; + + case RC_LAST: break; } return str; } +#endif + // The global instance LyXRC lyxrc; // The global copy of the system lyxrc entries (everything except preferences) LyXRC system_lyxrc; + + +} // namespace lyx