]> git.lyx.org Git - lyx.git/blobdiff - src/lyxfunc.h
Fix natbib bug spotted by JMarc.
[lyx.git] / src / lyxfunc.h
index 6eca3068a0dbb0c1529bad2b8dc8a2daec82cd61..89037ec0494b15f51ed0e395a992802e32de9e16 100644 (file)
@@ -17,6 +17,7 @@
 class LyXView;
 class LyXText;
 class FuncRequest;
+class BufferView;
 
 
 /** This class encapsulates all the LyX command operations.
@@ -36,7 +37,7 @@ public:
 
        /// Dispatch via a string argument
        void dispatch(string const & s, bool verbose = false);
+
        /// Dispatch via a pseudo action, also displaying shortcut/command name
        void dispatch(int ac, bool verbose = false);
 
@@ -72,9 +73,14 @@ public:
 
 private:
        ///
-       LyXView * owner;
+       BufferView * view() const;
+
        ///
-       static int psd_idx;
+       LyXView * owner;
+
+       /// the last character added to the key sequence, in ISO encoded form
+       char encoded_last_key;
+
        ///
        kb_sequence keyseq;
        ///
@@ -85,10 +91,6 @@ private:
        void moveCursorUpdate(bool flag = true, bool selecting = false);
        ///
        void setupLocalKeymap();
-       ///
-       kb_action lyx_dead_action;
-       ///
-       kb_action lyx_calling_dead_action;
        /// Error status, only Dispatch can change this flag
        mutable bool errorstat;