]> git.lyx.org Git - lyx.git/blobdiff - src/WorkArea.h
fix typo that put too many include paths for most people
[lyx.git] / src / WorkArea.h
index c9f58b7fa9a3fe453cc815e0af8ff7a5527213e6..715f1f56e59b68a26958d310aa1f4dfd3a313acd 100644 (file)
@@ -1,9 +1,9 @@
 // -*- C++ -*-
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
- *        
+ *
  *           Copyright 1995 Matthias Ettrich
  *           Copyright 1995-2001 The LyX Team.
  *
@@ -95,6 +95,8 @@ public:
                                     int /*key*/, void * xev);
        /// xforms callback
        static void scroll_cb(FL_OBJECT *, long);
+       /// a selection exists
+       void haveSelection(bool) const;
        ///
        string const getClipboard() const;
        ///
@@ -124,12 +126,20 @@ public:
        SigC::Signal3<void, int, int, unsigned int> workAreaDoubleClick;
        ///
        SigC::Signal3<void, int, int, unsigned int> workAreaTripleClick;
+       /// emitted when an X client has requested our selection
+       SigC::Signal0<void> selectionRequested;
+       /// emitted when another X client has stolen our selection
+       SigC::Signal0<void> selectionLost;
+
+       /// handles SelectionRequest X Event, to fill the clipboard
+       int event_cb(XEvent * xev);
 private:
        ///
        void createPixmap(int, int);
+
        ///
        FL_OBJECT * backgroundbox;
-       ///     
+       ///
        FL_OBJECT * work_area;
        ///
        FL_OBJECT * scrollbar;
@@ -141,8 +151,6 @@ private:
        Pixmap workareapixmap;
        ///
        Painter painter_;
-       ///
-       FL_OBJECT * figinset_canvas;
        /// if we call redraw with true needed for locking-insets
        bool screen_cleared;
 };