]> git.lyx.org Git - lyx.git/blobdiff - src/trans_mgr.h
LFUN_UNICODE_INSERT - unicode-insert
[lyx.git] / src / trans_mgr.h
index a9e45777eb364e0b5e26a37c0fb17054b6a696f6..74fdf1d8b90e5aec64cc015a460197429ed7494e 100644 (file)
@@ -19,6 +19,9 @@
 
 #include <boost/scoped_ptr.hpp>
 
+
+namespace lyx {
+
 class LyXText;
 class Trans;
 
@@ -156,15 +159,15 @@ public:
        ///
        ~TransManager();
        ///
-       int SetPrimary(std::string const &);
+       int setPrimary(std::string const &);
        ///
-       int SetSecondary(std::string const &);
+       int setSecondary(std::string const &);
        ///
-       void EnablePrimary();
+       void enablePrimary();
        ///
-       void EnableSecondary();
+       void enableSecondary();
        ///
-       void DisableKeymap();
+       void disableKeymap();
        ///
        bool setCharset(std::string const &);
        ///
@@ -172,7 +175,7 @@ public:
                return trans_fsm_.currentState->backspace();
        }
        ///
-       void TranslateAndInsert(char, LyXText *);
+       void translateAndInsert(char, LyXText *);
        ///
        std::string const deadkey(char, KmodInfo);
        ///
@@ -195,4 +198,7 @@ std::string const TransManager::deadkey(char c, KmodInfo t)
        return trans_fsm_.currentState->deadkey(c, t);
 }
 
+
+} // namespace lyx
+
 #endif // TRANS_MANAGER_H