]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/XWorkArea.h
remove some more unneeded focus stuff
[lyx.git] / src / frontends / xforms / XWorkArea.h
1 // -*- C++ -*-
2 /**
3  * \file XWorkArea.h
4  * Copyright 1995-2002 the LyX Team
5  * Read the file COPYING
6  *
7  * \author unknown
8  * \author John Levon <moz@compsoc.man.ac.uk>
9  */
10
11 #ifndef XWORKAREA_H
12 #define XWORKAREA_H
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "frontends/WorkArea.h"
19 #include "XPainter.h"
20
21 #include FORMS_H_LOCATION
22
23 ///
24 class XWorkArea : public WorkArea {
25 public:
26         ///
27         XWorkArea(int xpos, int ypos, int width, int height);
28         ///
29         ~XWorkArea();
30         ///
31         virtual Painter & getPainter() { return painter_; }
32         ///
33         virtual int workWidth() const { return work_area->w; }
34         ///
35         virtual int workHeight() const { return work_area->h; }
36         ///
37         virtual void resize(int xpos, int ypos, int width, int height);
38         ///
39         virtual void redraw() const {
40                 fl_redraw_object(work_area);
41                 fl_redraw_object(scrollbar);
42         }
43         ///
44         Window getWin() const { return work_area->form->window; }
45         ///
46         virtual void setScrollbarParams(int height, int pos, int line_height);
47         ///
48         Pixmap getPixmap() const { return workareapixmap; }
49         /// xforms callback
50         static int work_area_handler(FL_OBJECT *, int event,
51                                      FL_Coord, FL_Coord,
52                                      int /*key*/, void * xev);
53  
54         /// return x position of window
55         int xpos() const { return work_area->x; }
56         /// return y position of window
57         int ypos() const { return work_area->y; }
58  
59         /// xforms callback from scrollbar
60         void scroll_cb();
61         /// a selection exists
62         virtual void haveSelection(bool) const;
63         ///
64         virtual string const getClipboard() const;
65         ///
66         virtual void putClipboard(string const &) const;
67
68         /// handles SelectionRequest X Event, to fill the clipboard
69         int event_cb(XEvent * xev);
70 private:
71         ///
72         void createPixmap(int, int);
73
74         ///
75         FL_OBJECT * backgroundbox;
76         ///
77         FL_OBJECT * work_area;
78         ///
79         FL_OBJECT * scrollbar;
80         ///
81         mutable FL_OBJECT * splash_;
82         ///
83         mutable FL_OBJECT * splash_text_;
84         /// The pixmap overlay on the workarea
85         Pixmap workareapixmap;
86         ///
87         XPainter painter_;
88         /// if we call redraw with true needed for locking-insets
89         bool screen_cleared;
90         /// the current document's height (for scrollbar)
91         int doc_height_;
92 };
93  
94 #endif // XWORKAREA_H