]> git.lyx.org Git - lyx.git/blobdiff - src/kbsequence.h
make a CURSOR update if we inserted a character (fix #312).
[lyx.git] / src / kbsequence.h
index 8da2f19e4674e7e5dd054813956328ca73c1e179..e00382d34edb58e13938541f940c2fe2eef5e22c 100644 (file)
@@ -26,7 +26,7 @@ public:
        kb_sequence(kb_keymap * std, kb_keymap * cur)
                : stdmap(std), curmap(cur), length_(0), deleted_(false) {}
 
-       
+
 
        /**
         * Add a key to the key sequence and look it up in the curmap
@@ -46,28 +46,28 @@ public:
         * Prefixes are S-, C-, M- for shift, control, meta
         */
        string::size_type parse(string const & s);
-       
+
        /**
         * Return the current sequence as a string.
         * @see parse()
         */
        string const print() const;
-       
+
        /**
         * Return the current sequence and available options as
         * a string. No options are added if no curmap kb map exists.
         */
        string const printOptions() const;
-       
+
        /// Mark the sequence as deleted.
        void mark_deleted();
 
        /// Return the ISO value of the last keysym in sequence, or 0
        char getiso() const;
-       
+
        /// Reset sequence to become "deleted"
        void reset();
-       
+
        /// clear in full
        void clear();
 
@@ -82,23 +82,23 @@ public:
 
        /// Keymap to use if a new sequence is starting
        kb_keymap * stdmap;
-       
+
        /// Keymap to use for the next key
        kb_keymap * curmap;
-       
+
 private:
        /// get the keysym of last in sequence
        unsigned int getsym() const;
-       
+
        /**
         * Array holding the current key sequence.
         * If sequence[length-1] < 0xff it can be used as ISO8859 char
         */
        std::vector<unsigned int> sequence;
-       
+
        /// modifiers for keys in the sequence
        std::vector<unsigned int> modifiers;
-       
+
        /// Current length of key sequence
        std::vector<unsigned int>::size_type length_;