]> git.lyx.org Git - lyx.git/blobdiff - src/BufferView_pimpl.h
redraw fix 1.
[lyx.git] / src / BufferView_pimpl.h
index 7fbc00a2f74f943cff7f64736e26dc725bbb5f79..05a390b28fed8b7aa3e659f5fe6e0e9e753b2c4a 100644 (file)
@@ -1,15 +1,21 @@
 // -*- C++ -*-
+/**
+ * \file BufferView_pimpl.h
+ * Copyright 2002 the LyX Team
+ * Read the file COPYING
+ *
+ * \author various
+ */
 
 #ifndef BUFFERVIEW_PIMPL_H
 #define BUFFERVIEW_PIMPL_H
 
 #include "BufferView.h"
 #include "commandtags.h"
-#include "frontends/mouse_state.h"
-#include "frontends/key_state.h"
 #include "frontends/Timeout.h"
-// FIXME remove me
-#include "frontends/WorkArea.h"
+#include "frontends/key_state.h"
+#include "frontends/mouse_state.h"
+#include "frontends/LyXKeySym.h"
 #include "box.h"
 #include "insets/insetspecialchar.h"
 #include "support/types.h"
 class LyXView;
 class WorkArea;
 class LyXScreen;
-
 ///
 struct BufferView::Pimpl : public boost::signals::trackable {
        ///
        Pimpl(BufferView * i, LyXView * o,
              int xpos, int ypos, int width, int height);
        ///
-       Painter & painter();
+       Painter & painter() const;
+       /// return the work area for this bview
+       WorkArea & workarea() const;
+       /// return the screen for this bview
+       LyXScreen & screen() const;
        ///
        void buffer(Buffer *);
-       ///
-       void resize(int xpos, int ypos, int width, int height);
-       ///
-       void resize();
-       ///
-       void redraw();
        /// Return true if the cursor was fitted.
        bool fitCursor();
        ///
@@ -50,26 +54,28 @@ struct BufferView::Pimpl : public boost::signals::trackable {
        void update();
        //
        void update(LyXText *, BufferView::UpdateCodes);
-       /// Update pixmap of screen
-       void updateScreen();
+       /**
+        * Repaint pixmap. Used for when we've made a visible
+        * change but don't need the full update() logic
+        */
+       void repaint();
        ///
-       void workAreaExpose();
+       void workAreaResize();
        ///
        void updateScrollbar();
        ///
-       void scrollCB(double value);
+       void scrollDocView(int value);
        /**
         * Returns an inset if inset was hit, or 0 if not.
         *
         * If hit, the coordinates are changed relative to the inset.
         */
        Inset * checkInsetHit(LyXText *, int & x, int & y);
+       /// wheel mouse scroll
+       int scroll(long time);
        ///
-       int scrollUp(long time);
-       ///
-       int scrollDown(long time);
-       ///
-       void workAreaKeyPress(KeySym, key_modifier::state state);
+       void workAreaKeyPress(LyXKeySymPtr key,
+                             key_modifier::state state);
        ///
        void workAreaMotionNotify(int x, int y, mouse_button::state state);
        ///
@@ -85,10 +91,6 @@ struct BufferView::Pimpl : public boost::signals::trackable {
        ///
        void selectionLost();
        ///
-       void enterView();
-       ///
-       void leaveView();
-       ///
        void cursorToggle();
        ///
        void cursorPrevious(LyXText *);
@@ -106,23 +108,9 @@ struct BufferView::Pimpl : public boost::signals::trackable {
        bool isSavedPosition(unsigned int i);
        ///
        void setState();
-#if 0
-       ///
-       void insetSleep();
-       ///
-       void insetWakeup();
-#endif
        ///
        void insetUnlock();
        ///
-       bool focus() const;
-       ///
-       void focus(bool);
-       ///
-       bool active() const;
-       ///
-       bool belowMouse() const;
-       ///
        void showCursor();
        ///
        void hideCursor();
@@ -178,12 +166,10 @@ private:
        ///
        boost::scoped_ptr<LyXScreen> screen_;
        ///
-       long current_scrollbar_value;
+       boost::scoped_ptr<WorkArea> workarea_;
        ///
        Timeout cursor_timeout;
        ///
-       WorkArea workarea_;
-       ///
        void pasteClipboard(bool asPara);
        ///
        void stuffClipboard(string const &) const;
@@ -211,7 +197,5 @@ private:
        Inset * getInsetByCode(Inset::Code code);
        ///
        void MenuInsertLyXFile(string const & filen);
-       ///
-       bool inset_slept;
 };
-#endif
+#endif // BUFFERVIEW_PIMPL_H