]> git.lyx.org Git - lyx.git/blobdiff - src/Encoding.h
Cleanup mouse/selection/context-menu interactions.
[lyx.git] / src / Encoding.h
index d7e1dded23a1524030a36e4acff5ea4b473e96e4..8537a221a6ec9e7f9fbbc093a30624e5c723e010 100644 (file)
@@ -55,9 +55,9 @@ public:
        ///
        void init() const;
        ///
-       std::string const & name() const { return Name_; }
+       std::string const & name() const { return name_; }
        ///
-       std::string const & latexName() const { return LatexName_; }
+       std::string const & latexName() const { return latexName_; }
        ///
        std::string const & iconvName() const { return iconvName_; }
        /**
@@ -75,9 +75,9 @@ public:
        std::vector<char_type> symbolsList() const;
 private:
        ///
-       std::string Name_;
+       std::string name_;
        ///
-       std::string LatexName_;
+       std::string latexName_;
        ///
        std::string iconvName_;
        /// Is this a fixed width encoding?
@@ -125,9 +125,9 @@ public:
        void read(support::FileName const & encfile,
                  support::FileName const & symbolsfile);
        /// Get encoding from LyX name \p name
-       Encoding const * getFromLyXName(std::string const & name) const;
+       Encoding const * fromLyXName(std::string const & name) const;
        /// Get encoding from LaTeX name \p name
-       Encoding const * getFromLaTeXName(std::string const & name) const;
+       Encoding const * fromLaTeXName(std::string const & name) const;
 
        ///
        const_iterator begin() const { return encodinglist.begin(); }
@@ -135,7 +135,7 @@ public:
        const_iterator end() const { return encodinglist.end(); }
 
        ///
-       enum Letter_Form {
+       enum LetterForm {
                ///
                FORM_ISOLATED,
                ///
@@ -146,15 +146,15 @@ public:
                FORM_MEDIAL
        };
        ///
-       static bool isComposeChar_hebrew(char_type c);
+       static bool isHebrewComposeChar(char_type c);
        ///
-       static bool isComposeChar_arabic(char_type c);
+       static bool isArabicComposeChar(char_type c);
        ///
-       static bool is_arabic_special(char_type c);
+       static bool isArabicSpecialChar(char_type c);
        ///
-       static bool is_arabic(char_type c);
+       static bool isArabicChar(char_type c);
        ///
-       static char_type transformChar(char_type c, Letter_Form form);
+       static char_type transformChar(char_type c, LetterForm form);
        /// Is this a combining char?
        static bool isCombiningChar(char_type c);
        /**