]> git.lyx.org Git - lyx.git/blob - src/insets/insettext.h
1300c1bf31629ce02868c0a10fa7c4021690f756
[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 "LColor.h"
25 #include "paragraph.h"
26 #include "lyxcursor.h"
27 #include <boost/smart_ptr.hpp>
28
29 class Painter;
30 class BufferView;
31 class Buffer;
32 class LyXCursor;
33 class LyXText;
34 class LyXScreen;
35 class Row;
36
37 /**
38  A text inset is like a TeX box to write full text
39  (including styles and other insets) in a given space. 
40  @author: Jürgen Vigna
41  */
42 class InsetText : public UpdatableInset {
43 public:
44         ///
45         /// numbers need because of test if codeA < codeB
46         ///
47         enum UpdateCodes {
48                 ///
49                 NONE = 0,
50                 ///
51                 CURSOR = 1,
52                 ///
53                 CLEAR_FRAME = 2,
54                 ///
55                 DRAW_FRAME = 4,
56                 ///
57                 SELECTION = 8,
58                 ///
59                 CURSOR_PAR = 16,
60                 ///
61                 FULL = 32,
62                 ///
63                 INIT = 64
64         };
65         ///
66         enum DrawFrame {
67                 ///
68                 NEVER = 0,
69                 ///
70                 LOCKED,
71                 ///
72                 ALWAYS
73         };
74         ///
75         InsetText();
76         ///
77         explicit
78         InsetText(InsetText const &, bool same_id = false);
79         ///
80         ~InsetText();
81         ///
82         Inset * clone(Buffer const &, bool same_id = false) const;
83         ///
84         InsetText & operator=(InsetText const & it);
85         ///
86         void clear();
87         ///
88         void read(Buffer const *, LyXLex &);
89         ///
90         void write(Buffer const *, std::ostream &) const;
91         ///
92         int ascent(BufferView *, LyXFont const &) const;
93         ///
94         int descent(BufferView *, LyXFont const &) const;
95         ///
96         int width(BufferView *, LyXFont const & f) const;
97         ///
98         int textWidth(BufferView *) const;
99         ///
100         void draw(BufferView *, LyXFont const &, int , float &, bool) const;
101         ///
102         void update(BufferView *, LyXFont const &, bool =false);
103         ///
104         void setUpdateStatus(BufferView *, int what) const;
105         ///
106         string const editMessage() const;
107         ///
108         void edit(BufferView *, int, int, unsigned int);
109         ///
110         bool isTextInset() const { return true; }
111         ///
112         bool doClearArea() const;
113         ///
114         void insetUnlock(BufferView *);
115         ///
116         bool lockInsetInInset(BufferView *, UpdatableInset *);
117         ///
118         bool unlockInsetInInset(BufferView *,
119                                 UpdatableInset *, bool lr = false);
120         ///
121         bool updateInsetInInset(BufferView *, Inset *);
122         ///
123         void insetButtonRelease(BufferView *, int, int, int);
124         ///
125         void insetButtonPress(BufferView *, int, int, int);
126         ///
127         void insetMotionNotify(BufferView *, int, int, int);
128         ///
129         void insetKeyPress(XKeyEvent *);
130         ///
131         UpdatableInset::RESULT localDispatch(BufferView *,
132                                              kb_action, string const &);
133         ///
134         int latex(Buffer const *, std::ostream &,
135                   bool fragile, bool free_spc) const;
136         ///
137         int ascii(Buffer const *, std::ostream &, int linelen) const;
138         ///
139         int linuxdoc(Buffer const *, std::ostream &) const { return 0; }
140         ///
141         int docBook(Buffer const *, std::ostream &) const ;
142         ///
143         void validate(LaTeXFeatures & features) const;
144         ///
145         Inset::Code lyxCode() const { return Inset::TEXT_CODE; }
146         ///
147         void getCursorPos(BufferView *, int & x, int & y) const;
148         ///
149         unsigned int insetInInsetY();
150         ///
151         void toggleInsetCursor(BufferView *);
152         ///
153         bool insertInset(BufferView *, Inset *);
154         ///
155         UpdatableInset * getLockingInset();
156         ///
157         UpdatableInset * getFirstLockingInsetOfType(Inset::Code);
158         ///
159         void setFont(BufferView *, LyXFont const &,
160                      bool toggleall = false,
161                      bool selectall = false);
162         ///
163         int getMaxWidth(BufferView *, UpdatableInset const *) const;
164         ///
165         void init(InsetText const * ins = 0, bool same_id = false);
166         ///
167         void writeParagraphData(Buffer const *, std::ostream &) const;
168         ///
169         void setParagraphData(Paragraph *);
170         ///
171         void setText(string const &);
172         ///
173         void setAutoBreakRows(bool);
174         ///
175         void setDrawFrame(BufferView *, DrawFrame);
176         ///
177         void setFrameColor(BufferView *, LColor::color);
178         ///
179         LyXText * getLyXText(BufferView const *,
180                              bool const recursive = false) const;
181         ///
182         void deleteLyXText(BufferView *, bool recursive = true) const;
183         ///
184         void resizeLyXText(BufferView *, bool force = false) const;
185         ///
186         bool showInsetDialog(BufferView *) const;
187         ///
188         std::vector<string> const getLabelList() const;
189         ///
190         bool nodraw() const;
191         ///
192         int scroll(bool recursive=true) const;
193         ///
194         void scroll(BufferView *bv, float sx) const {
195                 UpdatableInset::scroll(bv, sx);
196         }
197         ///
198         void scroll(BufferView *bv, int offset) const {
199                 UpdatableInset::scroll(bv, offset);
200         }
201         ///
202         void selectAll(BufferView *bv);
203         ///
204         void clearSelection(BufferView *bv);
205         ///
206         Paragraph * getParFromID(int id) const;
207         ///
208         Inset * getInsetFromID(int id) const;
209         ///
210         Paragraph * firstParagraph() const;
211         ///
212         LyXCursor const & cursor(BufferView *) const;
213         ///
214         Paragraph * paragraph() const;
215         ///
216         void paragraph(Paragraph *);
217         ///
218         mutable int need_update;
219
220 protected:
221         ///
222         void updateLocal(BufferView *, int what, bool mark_dirty);
223         ///
224         mutable int drawTextXOffset;
225         ///
226         mutable int drawTextYOffset;
227         ///
228         bool autoBreakRows;
229         ///
230         DrawFrame drawFrame_;
231         ///
232         LColor::color frame_color;
233
234 private:
235         ///
236         typedef std::map<BufferView *, boost::shared_ptr<LyXText> > Cache;
237         ///
238         typedef Cache::value_type value_type;
239         ///
240         int beginningOfMainBody(Buffer const *, Paragraph * par) const;
241         ///
242         void showInsetCursor(BufferView *, bool show=true);
243         ///
244         void hideInsetCursor(BufferView *);
245         ///
246         UpdatableInset::RESULT moveRight(BufferView *,
247                                          bool activate_inset = true,
248                                          bool selecting = false);
249         ///
250         UpdatableInset::RESULT moveLeft(BufferView *,
251                                         bool activate_inset = true,
252                                         bool selecting = false);
253         ///
254         UpdatableInset::RESULT moveRightIntern(BufferView *, bool behind,
255                                                bool activate_inset = true,
256                                                bool selecting = false);
257         ///
258         UpdatableInset::RESULT moveLeftIntern(BufferView *, bool behind, 
259                                               bool activate_inset = true,
260                                               bool selecting = false);
261
262         ///
263         UpdatableInset::RESULT moveUp(BufferView *);
264         ///
265         UpdatableInset::RESULT moveDown(BufferView *);
266         ///
267         void setCharFont(Buffer const *, int pos, LyXFont const & font);
268         ///
269         string const getText(int);
270         ///
271         bool checkAndActivateInset(BufferView * bv, bool behind);
272         ///
273         bool checkAndActivateInset(BufferView * bv, int x = 0, int y = 0,
274                                    int button = 0);
275         ///
276         void removeNewlines();
277         ///
278         int cx(BufferView *) const;
279         ///
280         int cy(BufferView *) const;
281         ///
282         Paragraph::size_type cpos(BufferView *) const;
283         ///
284         Paragraph * cpar(BufferView *) const;
285         ///
286         bool cboundary(BufferView *) const;
287         ///
288         Row * crow(BufferView *) const;
289         ///
290         void drawFrame(Painter &, bool cleared) const;
291         ///
292         void clearFrame(Painter &, bool cleared) const;
293         ///
294         void clearInset(Painter &, int baseline, bool & cleared) const;
295         
296         /* Private structures and variables */
297         ///
298         Paragraph * par;
299         ///
300         mutable bool locked;
301         ///
302         mutable int insetAscent;
303         ///
304         mutable int insetDescent;
305         ///
306         mutable int insetWidth;
307         ///
308         mutable int last_width;
309         ///
310         mutable int last_height;
311         ///
312         mutable int top_y;
313         ///
314         Paragraph * inset_par;
315         ///
316         Paragraph::size_type inset_pos;
317         ///
318         bool inset_boundary;
319         ///
320         mutable int inset_x;
321         ///
322         mutable int inset_y;
323         ///
324         mutable unsigned int old_max_width;
325         ///
326         bool no_selection;
327         ///
328         mutable float xpos;
329         ///
330         UpdatableInset * the_locking_inset;
331         ///
332         Paragraph * old_par;
333         /// The cache.
334         mutable Cache cache;
335         ///
336         mutable int last_drawn_width;
337         ///
338         mutable bool frame_is_visible;
339         ///
340         mutable BufferView * cached_bview;
341         ///
342         mutable boost::shared_ptr<LyXText> cached_text;
343 };
344 #endif