]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/WorkArea.h
hopefully fix tex2lyx linking.
[lyx.git] / src / frontends / WorkArea.h
index edd0742310ab84e904a0f9d92ecc2880c4edf61c..0db53ceaabda8aea8bfe3f75ef146ef71106b237 100644 (file)
  * Full author contact details are available in file CREDITS.
  */
 
-// X11 use a define called CursorShape, and we really want to use
-// that name our selves. Therefore we do something similar to what is done
-// in kde/fixx11h.h:
-namespace X {
-#ifdef CursorShape
-#ifndef FIXX11H_CursorShape
-#define FIXX11H_CursorShape
-int const XCursorShape = CursorShape;
-#undef CursorShape
-int const CursorShape = CursorShape;
-#endif
-#undef CursorShape
-#endif
-} // namespace X
-
-
 #ifndef BASE_WORKAREA_H
 #define BASE_WORKAREA_H
 
@@ -34,11 +18,17 @@ int const CursorShape = CursorShape;
 #include "frontends/LyXKeySym.h"
 #include "frontends/Timeout.h"
 
+#include "support/docstring.h"
+
+#include <boost/signals/trackable.hpp>
+
+
+namespace lyx {
 
 class BufferView;
 class FuncRequest;
+class LyXView;
 
-namespace lyx {
 namespace frontend {
 
 class Painter;
@@ -60,12 +50,14 @@ enum CursorShape {
  * It works in concert with the BaseScreen class to update the
  * widget view of a document.
  */
-class WorkArea {
+class WorkArea : public boost::signals::trackable {
 public:
-       WorkArea(BufferView * buffer_view = 0);
+       WorkArea(int id, LyXView & lyx_view);
 
        virtual ~WorkArea() {}
 
+       int const id() const { return id_; }
+
        void setBufferView(BufferView * buffer_view);
 
        ///
@@ -73,10 +65,9 @@ public:
        ///
        BufferView const & bufferView() const;
 
-
-       /// return the painter object for this work area
-       virtual Painter & getPainter() = 0;
-
+       /// \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;
 
@@ -92,53 +83,51 @@ public:
        virtual void setScrollbarParams(int height, int pos, int line_height) = 0;
 
        /// redraw the screen, without using existing pixmap
-       virtual void redraw();
-
-       /// grey out (no buffer)
-       void greyOut();
-
-       /// FIXME: should be protected, public until the qt3 and gtk frontends are
-       /// cleaned up.
-       void processKeySym(LyXKeySymPtr key, key_modifier::state state);
+       virtual void redraw(bool singlePar = false);
+       ///
+       void stopBlinkingCursor();
+       void startBlinkingCursor();
 
 protected:
+       ///
+       void processKeySym(LyXKeySymPtr key, key_modifier::state state);
        /// cause the display of the given area of the work area
        virtual void expose(int x, int y, int w, int h) = 0;
-
-public:
-       /// FIXME: This is public because of qt3 and gtk, should be protected
+       ///
        void dispatch(FuncRequest const & cmd0);
-
-protected:
        ///
        void resizeBufferView();
-
-
+       ///
+       void scrollBufferView(int position);
        /// hide the visible cursor, if it is visible
        void hideCursor();
-
        /// show the cursor if it is not visible
        void showCursor();
-
        /// toggle the cursor's visibility
        void toggleCursor();
-
        /// hide the cursor
        virtual void removeCursor() = 0;
-
        /// paint the cursor and store the background
        virtual void showCursor(int x, int y, int h, CursorShape shape) = 0;
+       ///
+       void updateScrollbar();
 
        ///
        BufferView * buffer_view_;
 
-private:
        ///
-       void checkAndGreyOut();
-
+       LyXView & lyx_view_;
        ///
        bool greyed_out_;
 
+private:
+       ///
+       int id_;
+       ///
+       void displayMessage(docstring const &);
+       /// buffer messages signal connection
+       boost::signals::connection message_connection_;
+
        /// is the cursor currently displayed
        bool cursor_visible_;