]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/WorkArea.h
Move the global formats and system_formats variables into the
[lyx.git] / src / frontends / WorkArea.h
index eef1d018f574a578c2c6f0e1c6b2d98f33e5a318..8e459ca37524f3aa11240b1947f81ca1d4d00591 100644 (file)
@@ -33,23 +33,15 @@ namespace frontend {
 class WorkArea
 {
 public:
-       ///
-       WorkArea() {}
        ///
        virtual ~WorkArea() {}
 
        /// redraw the screen, without using existing pixmap
-       virtual void redraw() = 0;
-
-       /// Process Key pressed event.
-       /// This needs to be public because it is accessed externally by GuiView.
-       virtual void processKeySym(KeySymbol const & key, KeyModifier mod) = 0;
+       virtual void redraw(bool update_metrics) = 0;
 
        /// close this work area.
        /// Slot for Buffer::closing signal.
        virtual void close() = 0;
-       /// This function is called when the buffer readonly status change.
-       virtual void setReadOnly(bool) = 0;
 
        /// Update window titles of all users.
        virtual void updateWindowTitle() = 0;