]> git.lyx.org Git - lyx.git/blob - src/insets/insettext.h
John's tiny FormGraphics patch and large GUI-I InsetInclude patch.
[lyx.git] / src / insets / insettext.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  * 
5  *           LyX, The Document Processor
6  *
7  *           Copyright 1998 The LyX Team.
8  *
9  *
10  *======================================================
11  */
12 // The pristine updatable inset: Text
13
14
15 #ifndef INSETTEXT_H
16 #define INSETTEXT_H
17
18 #ifdef __GNUG__
19 #pragma interface
20 #endif
21
22 #include "lyxinset.h"
23 #include "LString.h"
24 #include "lyxcursor.h"
25
26 class Painter;
27 class BufferView;
28 class Buffer;
29 class LyXCursor;
30 class LyXParagraph;
31 class LColor;
32 class LyXText;
33 class LyXScreen;
34
35 /**
36  A text inset is like a TeX box to write full text
37  (including styles and other insets) in a given space. 
38  @author: Jürgen Vigna
39  */
40 class InsetText : public UpdatableInset {
41 public:
42     ///
43     /// numbers need because of test if codeA < codeB
44     ///
45     enum UpdateCodes {
46         ///
47         NONE = 0,
48         ///
49         CURSOR = 1,
50         ///
51         CLEAR_FRAME = 2,
52         ///
53         DRAW_FRAME = 4,
54         ///
55         SELECTION = 8,
56         ///
57         CURSOR_PAR = 16,
58         ///
59         FULL = 32,
60         ///
61         INIT = 64
62     };
63     ///
64     enum DrawFrame {
65         ///
66         NEVER = 0,
67         ///
68         LOCKED,
69         ///
70         ALWAYS
71     };
72     ///
73     InsetText();
74     ///
75     explicit
76     InsetText(InsetText const &);
77     ///
78     ~InsetText();
79     ///
80     Inset * Clone(Buffer const &) const;
81     ///
82     InsetText & operator=(InsetText const & it);
83     ///
84     void clear();
85     ///
86     void Read(Buffer const *, LyXLex &);
87     ///
88     void Write(Buffer const *, std::ostream &) const;
89     ///
90     int ascent(BufferView *, LyXFont const &) const;
91     ///
92     int descent(BufferView *, LyXFont const &) const;
93     ///
94     int width(BufferView *, LyXFont const & f) const;
95     ///
96     int textWidth(Painter &) const;
97     ///
98     void draw(BufferView *, LyXFont const &, int , float &, bool) const;
99     ///
100     void update(BufferView *, LyXFont const &, bool =false);
101     ///
102     void SetUpdateStatus(BufferView *, int what);
103     ///
104     string const EditMessage() const;
105     ///
106     void Edit(BufferView *, int, int, unsigned int);
107     ///
108     bool IsTextInset() const { return true; }
109     ///
110     bool doClearArea() const { return !locked; }
111     ///
112     void InsetUnlock(BufferView *);
113     ///
114     bool LockInsetInInset(BufferView *, UpdatableInset *);
115     ///
116     bool UnlockInsetInInset(BufferView *, UpdatableInset *, bool lr = false);
117     ///
118     bool UpdateInsetInInset(BufferView *, Inset *);
119     ///
120     void InsetButtonRelease(BufferView *, int, int, int);
121     ///
122     void InsetButtonPress(BufferView *, int, int, int);
123     ///
124     void InsetMotionNotify(BufferView *, int, int, int);
125     ///
126     void InsetKeyPress(XKeyEvent *);
127     ///
128     UpdatableInset::RESULT LocalDispatch(BufferView *, kb_action, string const &);
129     ///
130     int Latex(Buffer const *, std::ostream &,
131               bool fragile, bool free_spc) const;
132     ///
133     int Ascii(Buffer const *, std::ostream &, int linelen) const;
134     ///
135     int Linuxdoc(Buffer const *, std::ostream &) const { return 0; }
136     ///
137     int DocBook(Buffer const *, std::ostream &) const ;
138     ///
139     void Validate(LaTeXFeatures & features) const;
140     ///
141     Inset::Code LyxCode() const { return Inset::TEXT_CODE; }
142     ///
143     void GetCursorPos(BufferView *, int & x, int & y) const;
144     ///
145     unsigned int InsetInInsetY();
146     ///
147     void ToggleInsetCursor(BufferView *);
148     ///
149     bool InsertInset(BufferView *, Inset *);
150     ///
151     UpdatableInset * GetLockingInset();
152     ///
153     UpdatableInset * GetFirstLockingInsetOfType(Inset::Code);
154     ///
155     void SetFont(BufferView *, LyXFont const &, bool toggleall = false);
156     ///
157     int getMaxWidth(Painter &, UpdatableInset const *) const;
158     ///
159     void init(InsetText const * ins = 0);
160     ///
161     void WriteParagraphData(Buffer const *, std::ostream &) const;
162     ///
163     void SetParagraphData(LyXParagraph *);
164     ///
165     void SetText(string const &);
166     ///
167     void SetAutoBreakRows(bool);
168     ///
169     void SetDrawFrame(BufferView *, DrawFrame);
170     ///
171     void SetFrameColor(BufferView *, LColor::color);
172     ///
173     LyXText * getLyXText(BufferView const *, bool const recursive=false) const;
174     ///
175     void deleteLyXText(BufferView *, bool recursive=true) const;
176     ///
177     void resizeLyXText(BufferView *) const;
178     ///
179     LyXParagraph * par;
180     ///
181     mutable int need_update;
182
183 protected:
184     ///
185     void UpdateLocal(BufferView *, int what, bool mark_dirty);
186     ///
187     mutable int drawTextXOffset;
188     ///
189     mutable int drawTextYOffset;
190     ///
191     bool autoBreakRows;
192     ///
193     DrawFrame drawFrame;
194     ///
195     LColor::color frame_color;
196
197 private:
198     ///
199     typedef std::map<BufferView *, LyXText *> Cache;
200     ///
201     typedef Cache::value_type value_type;
202     ///
203     int BeginningOfMainBody(Buffer const *, LyXParagraph * par) const;
204     ///
205     void ShowInsetCursor(BufferView *, bool show=true);
206     ///
207     void HideInsetCursor(BufferView *);
208     ///
209     UpdatableInset::RESULT moveRight(BufferView *, bool activate_inset = true,
210                                      bool selecting = false);
211     ///
212     UpdatableInset::RESULT moveLeft(BufferView *, bool activate_inset = true,
213                                     bool selecting = false);
214     ///
215     UpdatableInset::RESULT moveRightIntern(BufferView *, bool behind,
216                                            bool activate_inset = true,
217                                            bool selecting = false);
218     ///
219     UpdatableInset::RESULT moveLeftIntern(BufferView *, bool behind, 
220                                           bool activate_inset = true,
221                                           bool selecting = false);
222
223     ///
224     UpdatableInset::RESULT moveUp(BufferView *);
225     ///
226     UpdatableInset::RESULT moveDown(BufferView *);
227     ///
228     void SetCharFont(Buffer const *, int pos, LyXFont const & font);
229     ///
230     string const getText(int);
231     ///
232     bool checkAndActivateInset(BufferView * bv, bool behind);
233     ///
234     bool checkAndActivateInset(BufferView * bv, int x = 0, int y = 0,
235                                int button = 0);
236     void removeNewlines();
237
238     ///
239     int cx(BufferView *) const;
240     ///
241     int cy(BufferView *) const;
242     ///
243     LyXParagraph::size_type cpos(BufferView *) const;
244     ///
245     LyXParagraph * cpar(BufferView *) const;
246     ///
247     bool cboundary(BufferView *) const;
248     ///
249     Row * crow(BufferView *) const;
250
251     /// This instead of a macro
252     LyXText * TEXT(BufferView * bv) const {
253         return getLyXText(bv);
254     }
255         
256     /* Private structures and variables */
257     ///
258     mutable bool locked;
259     ///
260     mutable int insetAscent;
261     ///
262     mutable int insetDescent;
263     ///
264     mutable int insetWidth;
265     ///
266     mutable int last_width;
267     ///
268     mutable int last_height;
269     ///
270     mutable int top_y;
271     ///
272     LyXParagraph * inset_par;
273     ///
274     LyXParagraph::size_type inset_pos;
275     ///
276     bool inset_boundary;
277     ///
278     mutable int inset_x;
279     ///
280     mutable int inset_y;
281     ///
282     int interline_space;
283     ///
284     bool no_selection;
285     ///
286     mutable float xpos;
287     ///
288     UpdatableInset * the_locking_inset;
289     ///
290     LyXParagraph * old_par;
291     /// The cache.
292     mutable Cache cache;
293 };
294 #endif