]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/WorkArea.h
* src/frontends/qt4/QListings.cpp:
[lyx.git] / src / frontends / WorkArea.h
index 01a77aed037c78ac241992ff1a31faf05ab147c9..f45e2eefd671de49049ef9a8668bfa833abef85c 100644 (file)
@@ -15,7 +15,7 @@
 #define BASE_WORKAREA_H
 
 #include "frontends/key_state.h"
-#include "frontends/LyXKeySym.h"
+#include "frontends/KeySymbol.h"
 #include "frontends/Timeout.h"
 
 #include "support/docstring.h"
@@ -67,7 +67,7 @@ public:
 
        /// \return true if has the keyboard input focus.
        virtual bool hasFocus() const = 0;
-       
+
        /// return the width of the work area in pixels
        virtual int width() const = 0;
 
@@ -82,6 +82,9 @@ public:
         */
        virtual void setScrollbarParams(int height, int pos, int line_height) = 0;
 
+       ///
+       virtual void scheduleRedraw() = 0;
+
        /// redraw the screen, without using existing pixmap
        virtual void redraw();
        ///
@@ -90,12 +93,13 @@ public:
 
        /// Process Key pressed event.
        /// This needs to be public because it is accessed externally by GuiView.
-       void processKeySym(LyXKeySymPtr key, key_modifier::state state);
+       void processKeySym(KeySymbolPtr key, key_modifier::state state);
 protected:
        /// cause the display of the given area of the work area
        virtual void expose(int x, int y, int w, int h) = 0;
        ///
-       void dispatch(FuncRequest const & cmd0);
+       void dispatch(FuncRequest const & cmd0,
+               key_modifier::state = key_modifier::none);
        ///
        void resizeBufferView();
        ///