]> git.lyx.org Git - features.git/blobdiff - src/WorkArea.h
make doc++ able to generate the source documentation for lyx
[features.git] / src / WorkArea.h
index 99cf3d538fbad3ec692ba1c5174b7775c232ba8a..85c85629c1c6d9211bd926ed2e44ff65bd032022 100644 (file)
 
 #include <utility>
 
+//#include <sigc++/signal_system.h>
+
 #include FORMS_H_LOCATION
 #include "Painter.h"
 
+//#ifdef SIGC_CXX_NAMESPACES
+//using SigC::Signal0;
+//using SigC::Signal3;
+//#endif
+
 class BufferView;
 
+///
 class WorkArea {
 public:
        ///
        WorkArea(BufferView *, int xpos, int ypos, int width, int height);
        ///
        ~WorkArea();
-#ifdef USE_PAINTER
        ///
        Painter & getPainter() { return painter_; }
-#endif
        ///
        int workWidth() const { return work_area->w; }
        ///
-       int width() const { return work_area->w + scrollbar->w; }
+       unsigned int width() const { return work_area->w + scrollbar->w; }
        ///
-       int height() const { return work_area->h; }
+       unsigned int height() const { return work_area->h; }
        ///
        int xpos() const { return work_area->x; }
        ///
@@ -49,8 +55,6 @@ public:
        void redraw() const {
                fl_redraw_object(work_area);
                fl_redraw_object(scrollbar);
-               fl_redraw_object(button_down);
-               fl_redraw_object(button_up);
        }
        ///
        void setFocus() const;
@@ -61,88 +65,82 @@ public:
        ///
        bool active() const { return work_area->active; }
        ///
+       bool belowMouse() const;
+       ///
        bool visible() const { return work_area->form->visible; }
        ///
        void greyOut() const;
        ///
        void setScrollbar(double pos, double length_fraction) const;
        ///
-       void setScrollbarValue(double y) const { fl_set_slider_value(scrollbar, y); }
+       void setScrollbarValue(double y) const {
+               fl_set_scrollbar_value(scrollbar, y);
+       }
        ///
        void setScrollbarBounds(double, double) const;
        ///
-       void setScrollbarIncrements(float inc) const;
+       void setScrollbarIncrements(double inc) const;
        ///
        double getScrollbarValue() const {
-               return fl_get_slider_value(scrollbar);
+               return fl_get_scrollbar_value(scrollbar);
        }
        ///
-       pair<double, double> getScrollbarBounds() const {
-               pair<double, double> p;
-               fl_get_slider_bounds(scrollbar, &p.first, &p.second);
+       std::pair<float, float> getScrollbarBounds() const {
+               std::pair<float, float> p;
+               fl_get_scrollbar_bounds(scrollbar, &p.first, &p.second);
                return p;
        }
        ///
        Pixmap getPixmap() const { return workareapixmap; }
-       ///
-       //Signal2<long, int> up;
-       ///
-       //Signal2<long, int> down;
-       ///
-       //Signal1<double> scroll;
-       ///
-       //Signal0 expose;
-       ///
-       //Signal3<int, int, unsigned int> buttonPress;
-       ///
-       //Signal3<int, int, unsigned int> buttonRelease;
-       ///
-       //Signal3<int, int, unsigned int> motion;
-       ///
-       //Signal0 focus;
-       ///
-       //Signal0 unfocus;
-       ///
-       //Signal0 enter;
-       ///
-       //Signal0 leave;
-       ///
-       //Signal3<int, int, unsigned int> doubleclick;
-       ///
-       //Signal3<int, int, unsigned int> trippleclick;
-       ///
-       //Signal2<Window, XEvent *> selection;
-private:
-       ///
-       void createPixmap(int, int);
        /// xforms callback
        static int work_area_handler(FL_OBJECT *, int event,
                                     FL_Coord, FL_Coord,
                                     int /*key*/, void * xev);
        /// xforms callback
-       static void up_cb(FL_OBJECT *, long);
-       /// xforms callback
-       static void down_cb(FL_OBJECT *, long);
-       /// xforms callback
        static void scroll_cb(FL_OBJECT *, long);
        ///
+       string getClipboard() const;
+       ///
+       void putClipboard(string const &) const;
+       ///
+       BufferView * owner() const { return owner_; }
+
+       // Signals
+       //
+       // Signal0<void> workAreaExpose;
+       //
+       // 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);
+       ///
        FL_OBJECT * backgroundbox;
        ///     
        FL_OBJECT * work_area;
        ///
        FL_OBJECT * scrollbar;
        ///
-       FL_OBJECT * button_down;
-       ///
-       FL_OBJECT * button_up;
-       ///
-       BufferView * owner;
+       BufferView * owner_;
        /// The pixmap overlay on the workarea
        Pixmap workareapixmap;
-#ifdef USE_PAINTER
        ///
        Painter painter_;
-#endif
        ///
        FL_OBJECT * figinset_canvas;
 };