]> git.lyx.org Git - lyx.git/blobdiff - src/Language.h
stickToCodingConventions.
[lyx.git] / src / Language.h
index f7ff5f2891a8aa183237e30227ca1e65c5a33e8f..575dd3339217ebbcf53efa4ab2920bd5c15b264e 100644 (file)
@@ -4,10 +4,10 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  * \author Jean-Marc Lasgouttes
  * \author Dekel Tsur
- * \author Jürgen Vigna
+ * \author Jürgen Vigna
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -48,6 +48,8 @@ public:
        ///
        std::string const & latex_options() const { return latex_options_; }
        ///
+       bool internalFontEncoding() const;
+       ///
        bool read(Lexer & lex);
 private:
        ///
@@ -94,10 +96,18 @@ private:
        LanguageList languagelist;
 };
 
+/// Global singleton instance.
 extern Languages languages;
+/// Default language defined in LyXRC
 extern Language const * default_language;
+/// Used to indicate that the language should be left unchanged when
+/// applying a font change.
 extern Language const * ignore_language;
+/// Default language defined in LyXRC
 extern Language const * latex_language;
+/// Used to indicate that the language should be reset to the Buffer
+// language when applying a font change.
+extern Language const * reset_language;
 
 
 } // namespace lyx