]> git.lyx.org Git - lyx.git/blobdiff - src/kbsequence.h
Collapse all those LFUN_XYZ_APPLY to a single LFUN_INSET_APPLY.
[lyx.git] / src / kbsequence.h
index 918d29fac20cd7aa78f83651d115220599f683d3..c63a9c72247a57f28239eed710e62205feebe8b0 100644 (file)
@@ -8,10 +8,6 @@
 #ifndef KBSEQUENCE_H
 #define KBSEQUENCE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #include <config.h>
 
 #include "frontends/key_state.h"
@@ -25,7 +21,7 @@ class kb_keymap;
 class kb_sequence {
 public:
        typedef std::vector<LyXKeySymPtr> KeySequence;
-       
+
        friend class kb_keymap;
 
        ///
@@ -71,13 +67,6 @@ public:
        /// Mark the sequence as deleted.
        void mark_deleted();
 
-       /**
-        * Return the value of the last keysym in the sequence
-        * in the local ISO encoding. If it does not encode
-        * in this encoding, return 0.
-        */
-       char getLastKeyEncoded() const;
-
        /// Reset sequence to become "deleted"
        void reset();
 
@@ -100,12 +89,9 @@ public:
        kb_keymap * curmap;
 
 private:
-       /// get the keysym of last in sequence
-       LyXKeySymPtr getsym() const;
-
        /**
         * Array holding the current key sequence as KeySyms.
-        * If sequence[length-1] < 0xff it can be used as ISO8859 char
+        * If sequence[length - 1] < 0xff it can be used as ISO8859 char
         */
        KeySequence sequence;