]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/xscreen.C
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / xscreen.C
index c917944ad308984a9eaad6845d9b22d6c895d4e2..4375e57a423fd6d78da22d50014a5784f739fa1f 100644 (file)
@@ -6,33 +6,21 @@
  * \author unknown
  * \author John Levon
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
-
-#include <algorithm>
-#include <X11/Xlib.h>
-
-#include "frontends/screen.h"
-#include "frontends/font_metrics.h"
-#include "XWorkArea.h"
 #include "xscreen.h"
-#include "lyxtext.h"
-#include "lyxrow.h"
-#include "Painter.h"
-#include "WorkArea.h"
-#include "buffer.h"
-#include "BufferView.h"
-#include "insets/insettext.h"
+
 #include "ColorHandler.h"
-#include "language.h"
+#include "XWorkArea.h"
+
 #include "debug.h"
+#include "LColor.h"
 
 using std::endl;
-using std::max;
-using std::min;
+
 
 namespace {
 
@@ -69,6 +57,12 @@ XScreen::~XScreen()
 }
 
 
+WorkArea & XScreen::workarea() const
+{
+       return owner_;
+}
+
+
 void XScreen::setCursorColor()
 {
        if (!lyxColorHandler.get())
@@ -169,16 +163,3 @@ void XScreen::expose(int x, int y, int w, int h)
                  x + owner_.xpos(),
                  y + owner_.ypos());
 }
-
-
-void XScreen::draw(LyXText * text, BufferView * bv, unsigned int y)
-{
-       int const old_first = text->top_y();
-       text->top_y(y);
-
-       // make a dumb new-draw
-       drawFromTo(text, bv, 0, owner_.workHeight(), 0, 0);
-       expose(0, 0, owner_.workWidth(), owner_.workHeight());
-
-       XSync(fl_get_display(), 0);
-}