]> git.lyx.org Git - lyx.git/blob - src/insets/insettext.h
7516a4a6b102c447d4748102195e264cd9bf5218
[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 "inset.h"
23 #include "LString.h"
24 #include "lyxcursor.h"
25
26 class Painter;
27 class BufferView;
28 class Buffer;
29 class LyXCursor;
30 class Paragraph;
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(BufferView *) 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) const;
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;
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                      bool selectall = false);
157         ///
158         int getMaxWidth(BufferView *, UpdatableInset const *) const;
159         ///
160         void init(InsetText const * ins = 0);
161         ///
162         void WriteParagraphData(Buffer const *, std::ostream &) const;
163         ///
164         void SetParagraphData(Paragraph *);
165         ///
166         void SetText(string const &);
167         ///
168         void SetAutoBreakRows(bool);
169         ///
170         void SetDrawFrame(BufferView *, DrawFrame);
171         ///
172         void SetFrameColor(BufferView *, LColor::color);
173         ///
174         LyXText * getLyXText(BufferView const *, bool const recursive=false) const;
175         ///
176         void deleteLyXText(BufferView *, bool recursive=true) const;
177         ///
178         void resizeLyXText(BufferView *, bool force=false) const;
179         ///
180         bool ShowInsetDialog(BufferView *) const;
181         ///
182         std::vector<string> const getLabelList() const;
183         ///
184         bool nodraw() const;
185         ///
186         int scroll(bool recursive=true) const;
187         void scroll(BufferView *bv, float sx) const {
188                 UpdatableInset::scroll(bv, sx);
189         }
190         void scroll(BufferView *bv, int offset) const {
191                 UpdatableInset::scroll(bv, offset);
192         }
193         ///
194         void selectAll(BufferView *bv);
195         ///
196         void clearSelection(BufferView *bv);
197
198         Paragraph * par;
199         ///
200         mutable int need_update;
201
202 protected:
203         ///
204         void UpdateLocal(BufferView *, int what, bool mark_dirty);
205         ///
206         mutable int drawTextXOffset;
207         ///
208         mutable int drawTextYOffset;
209         ///
210         bool autoBreakRows;
211         ///
212         DrawFrame drawFrame_;
213         ///
214         LColor::color frame_color;
215
216 private:
217         ///
218         typedef std::map<BufferView *, LyXText *> Cache;
219         ///
220         typedef Cache::value_type value_type;
221         ///
222         int BeginningOfMainBody(Buffer const *, Paragraph * par) const;
223         ///
224         void ShowInsetCursor(BufferView *, bool show=true);
225         ///
226         void HideInsetCursor(BufferView *);
227         ///
228         UpdatableInset::RESULT moveRight(BufferView *, bool activate_inset = true,
229                                          bool selecting = false);
230         ///
231         UpdatableInset::RESULT moveLeft(BufferView *, bool activate_inset = true,
232                                         bool selecting = false);
233         ///
234         UpdatableInset::RESULT moveRightIntern(BufferView *, bool behind,
235                                                bool activate_inset = true,
236                                                bool selecting = false);
237         ///
238         UpdatableInset::RESULT moveLeftIntern(BufferView *, bool behind, 
239                                               bool activate_inset = true,
240                                               bool selecting = false);
241
242         ///
243         UpdatableInset::RESULT moveUp(BufferView *);
244         ///
245         UpdatableInset::RESULT moveDown(BufferView *);
246         ///
247         void SetCharFont(Buffer const *, int pos, LyXFont const & font);
248         ///
249         string const getText(int);
250         ///
251         bool checkAndActivateInset(BufferView * bv, bool behind);
252         ///
253         bool checkAndActivateInset(BufferView * bv, int x = 0, int y = 0,
254                                    int button = 0);
255         ///
256         void removeNewlines();
257         ///
258         int cx(BufferView *) const;
259         ///
260         int cy(BufferView *) const;
261         ///
262         Paragraph::size_type cpos(BufferView *) const;
263         ///
264         Paragraph * cpar(BufferView *) const;
265         ///
266         bool cboundary(BufferView *) const;
267         ///
268         Row * crow(BufferView *) const;
269         ///
270         /// This instead of a macro
271         LyXText * TEXT(BufferView * bv) const {
272                 return getLyXText(bv);
273         }
274         ///
275         void drawFrame(Painter &, bool cleared) const;
276         void clearFrame(Painter &, bool cleared) const;
277         ///
278         void clearInset(Painter &, int baseline, bool & cleared) const;
279         
280         /* Private structures and variables */
281         ///
282         mutable bool locked;
283         ///
284         mutable int insetAscent;
285         ///
286         mutable int insetDescent;
287         ///
288         mutable int insetWidth;
289         ///
290         mutable int last_width;
291         ///
292         mutable int last_height;
293         ///
294         mutable int top_y;
295         ///
296         Paragraph * inset_par;
297         ///
298         Paragraph::size_type inset_pos;
299         ///
300         bool inset_boundary;
301         ///
302         mutable int inset_x;
303         ///
304         mutable int inset_y;
305         ///
306         mutable unsigned int old_max_width;
307         ///
308         bool no_selection;
309         ///
310         mutable float xpos;
311         ///
312         UpdatableInset * the_locking_inset;
313         ///
314         Paragraph * old_par;
315         /// The cache.
316         mutable Cache cache;
317         ///
318         mutable int last_drawn_width;
319         ///
320         mutable bool frame_is_visible;
321 };
322 #endif