]> git.lyx.org Git - lyx.git/blobdiff - src/WorkArea.h
remove Last when NEW_INSETS is defined
[lyx.git] / src / WorkArea.h
index 2dbfd3878346b37e432dd2ed0695a70a7e3eb973..7c00df597da8480065aa6e0f56b4d9b5d69df6c2 100644 (file)
 
 #include <utility>
 
+#include <sigc++/signal_system.h>
+
 #include FORMS_H_LOCATION
 #include "Painter.h"
 
-class BufferView;
+#ifdef SIGC_CXX_NAMESPACES
+using SigC::Signal0;
+using SigC::Signal1;
+using SigC::Signal2;
+using SigC::Signal3;
+#endif
 
-#define USE_FL_SCROLLBAR 1
 
+///
 class WorkArea {
 public:
        ///
-       WorkArea(BufferView *, int xpos, int ypos, int width, int height);
+       WorkArea(int xpos, int ypos, int width, int height);
        ///
        ~WorkArea();
        ///
        Painter & getPainter() { return painter_; }
        ///
-       unsigned int workWidth() const { return work_area->w; }
+       int workWidth() const { return work_area->w; }
        ///
        unsigned int width() const { return work_area->w + scrollbar->w; }
        ///
@@ -49,10 +56,6 @@ public:
        void redraw() const {
                fl_redraw_object(work_area);
                fl_redraw_object(scrollbar);
-#ifndef USE_FL_SCROLLBAR
-               fl_redraw_object(button_down);
-               fl_redraw_object(button_up);
-#endif
        }
        ///
        void setFocus() const;
@@ -72,11 +75,7 @@ public:
        void setScrollbar(double pos, double length_fraction) const;
        ///
        void setScrollbarValue(double y) const {
-#ifdef USE_FL_SCROLLBAR
                fl_set_scrollbar_value(scrollbar, y);
-#else
-               fl_set_slider_value(scrollbar, y);
-#endif
        }
        ///
        void setScrollbarBounds(double, double) const;
@@ -84,41 +83,51 @@ public:
        void setScrollbarIncrements(double inc) const;
        ///
        double getScrollbarValue() const {
-#ifdef USE_FL_SCROLLBAR
                return fl_get_scrollbar_value(scrollbar);
-#else
-               return fl_get_slider_value(scrollbar);
-#endif
        }
-#ifdef USE_FL_SCROLLBAR
        ///
-       std::pair<float, float> getScrollbarBounds() const {
+       std::pair<float, float> const getScrollbarBounds() const {
                std::pair<float, float> p;
                fl_get_scrollbar_bounds(scrollbar, &p.first, &p.second);
                return p;
        }
-#else
-       ///
-       std::pair<double, double> getScrollbarBounds() const {
-               std::pair<double, double> p;
-               fl_get_slider_bounds(scrollbar, &p.first, &p.second);
-               return p;
-       }
-#endif
        ///
        Pixmap getPixmap() const { return workareapixmap; }
        /// xforms callback
        static int work_area_handler(FL_OBJECT *, int event,
                                     FL_Coord, FL_Coord,
                                     int /*key*/, void * xev);
-#ifndef USE_FL_SCROLLBAR
-       /// xforms callback
-       static void up_cb(FL_OBJECT *, long);
-       /// xforms callback
-       static void down_cb(FL_OBJECT *, long);
-#endif
        /// xforms callback
        static void scroll_cb(FL_OBJECT *, long);
+       ///
+       string const getClipboard() const;
+       ///
+       void putClipboard(string const &) const;
+       // Signals
+       ///
+       Signal0<void> workAreaExpose;
+       ///
+       Signal1<void, double> scrollCB;
+       ///
+       Signal2<void, KeySym, unsigned int> workAreaKeyPress;
+       ///
+       Signal3<void, int, int, unsigned int> workAreaButtonPress;
+       ///
+       Signal3<void, int, int, unsigned int> workAreaButtonRelease;
+       ///
+       Signal3<void, int, int, unsigned int> workAreaMotionNotify;
+       ///
+       Signal0<void> workAreaFocus;
+       ///
+       Signal0<void> workAreaUnfocus;
+       ///
+       Signal0<void> workAreaEnter;
+       ///
+       Signal0<void> workAreaLeave;
+       ///
+       Signal3<void, int, int, unsigned int> workAreaDoubleClick;
+       ///
+       Signal3<void, int, int, unsigned int> workAreaTripleClick;
 private:
        ///
        void createPixmap(int, int);
@@ -128,19 +137,13 @@ private:
        FL_OBJECT * work_area;
        ///
        FL_OBJECT * scrollbar;
-#ifndef USE_FL_SCROLLBAR
-       ///
-       FL_OBJECT * button_down;
-       ///
-       FL_OBJECT * button_up;
-#endif
-       ///
-       BufferView * owner;
        /// The pixmap overlay on the workarea
        Pixmap workareapixmap;
        ///
        Painter painter_;
        ///
        FL_OBJECT * figinset_canvas;
+       /// if we call redraw with true needed for locking-insets
+       bool screen_cleared;
 };
 #endif