]> git.lyx.org Git - lyx.git/blobdiff - src/BufferView_pimpl.h
citation patch from Angus
[lyx.git] / src / BufferView_pimpl.h
index 5f855c2e613edef8bc192f41719d97fe9b05ab3c..e0a33d4aa415f5c2acb2b324fd53f0894dd3803f 100644 (file)
@@ -16,7 +16,13 @@ class LyXView;
 class WorkArea;
 class LyXScreen;
 
-struct BufferView::Pimpl {
+#ifdef SIGC_CXX_NAMESPACES
+using SigC::Object;
+#endif
+
+///
+struct BufferView::Pimpl : public Object {
+       ///
        Pimpl(BufferView * i, LyXView * o,
              int xpos, int ypos, int width, int height);
        ///
@@ -37,7 +43,7 @@ struct BufferView::Pimpl {
        int resizeCurrentBuffer();
        ///
        void update();
-       ///
+       //
        void update(BufferView::UpdateCodes);
        ///
        void gotoError();
@@ -50,12 +56,15 @@ struct BufferView::Pimpl {
        ///
        void scrollCB(double value);
        ///
-       Inset * checkInsetHit(int & x, int & y, unsigned int button);
+       Inset * checkInsetHit(LyXText *, int & x, int & y,
+                             unsigned int button);
        /// 
        int scrollUp(long time);
        ///
        int scrollDown(long time);
        ///
+       void workAreaKeyPress(KeySym, unsigned int state);
+       ///
        void workAreaMotionNotify(int x, int y, unsigned int state);
        ///
        void workAreaButtonPress(int x, int y, unsigned int button);
@@ -122,10 +131,6 @@ struct BufferView::Pimpl {
        ///
        long current_scrollbar_value;
        ///
-       bool lyx_focus;
-       ///
-       bool work_area_focus;
-       ///
        FL_OBJECT * figinset_canvas;
        ///
        Timeout cursor_timeout;
@@ -142,6 +147,7 @@ struct BufferView::Pimpl {
        ///
        void stuffClipboard(string const &) const;
 private:
+       ///
        bool using_xterm_cursor;
 };
 #endif