]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/XWorkArea.h
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / xforms / XWorkArea.h
index 7f60e4315292ed407d40d9105fca776c6219bdd9..d5f6d403d1f2c112bf7eb9b6133ffd83d9ad68f4 100644 (file)
 #ifndef XWORKAREA_H
 #define XWORKAREA_H
 
-
 #include "frontends/WorkArea.h"
 #include "XPainter.h"
 
+#include "LayoutEngine.h"
+
 #include "lyx_forms.h"
 
-///
+class LyXView;
+
+namespace lyx {
+namespace frontend {
+
 class XWorkArea : public WorkArea {
 public:
        ///
-       XWorkArea(int xpos, int ypos, int width, int height);
+       XWorkArea(LyXView & owner, int width, int height);
        ///
        ~XWorkArea();
        ///
@@ -53,16 +58,19 @@ public:
        /// a selection exists
        virtual void haveSelection(bool) const;
        ///
-       virtual string const getClipboard() const;
+       virtual std::string const getClipboard() const;
        ///
-       virtual void putClipboard(string const &) const;
+       virtual void putClipboard(std::string const &) const;
 
        /// handles SelectionRequest X Event, to fill the clipboard
        int event_cb(XEvent * xev);
 private:
        /// generate the pixmap, and copy backing pixmap to it,
        /// and send resize event if needed
-       void redraw(int, int);
+       void updateGeometry(int, int);
+
+       ///
+       void paint(int x, int y, int w, int h);
 
        /// GC used for copying to the screen
        GC copy_gc;
@@ -79,6 +87,13 @@ private:
        bool screen_cleared;
        /// the current document's height (for scrollbar)
        int doc_height_;
+       ///
+       boost::shared_ptr<Box> wa_box_;
+       ///
+       WidgetMap widgets_;
 };
 
+} // namespace frontend
+} // namespace lyx
+
 #endif // XWORKAREA_H