]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/WorkArea.h
Allow multiple insertion of citation key with qualified citation lists
[lyx.git] / src / frontends / WorkArea.h
index eef1d018f574a578c2c6f0e1c6b2d98f33e5a318..743c1145a5ad5a0296ad6bbb24d836bb46240a76 100644 (file)
@@ -24,32 +24,22 @@ class KeySymbol;
 namespace frontend {
 
 /**
- * The work area class represents the widget that provides the
- * view onto a document. It is owned by the BufferView, and
- * is responsible for handing events back to its owning BufferView.
- * It works in concert with the BaseScreen class to update the
- * widget view of a document.
+ * The work area class represents the widget that provides the view
+ * onto a document. It owns the BufferView, and is responsible for
+ * handing events back to its BufferView.
  */
 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;
+       /// Update metrics if needed and schedule a paint event
+       virtual void scheduleRedraw(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;