]> git.lyx.org Git - lyx.git/blob - src/insets/insettext.h
e2dd26bdf7ae8a6d5c9a22669d748d9e1cb6ae64
[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         bool insertInsetAllowed(Inset *) const { return true; }
156         ///
157         UpdatableInset * getLockingInset();
158         ///
159         UpdatableInset * getFirstLockingInsetOfType(Inset::Code);
160         ///
161         void setFont(BufferView *, LyXFont const &,
162                      bool toggleall = false,
163                      bool selectall = false);
164         ///
165         int getMaxWidth(BufferView *, UpdatableInset const *) const;
166         ///
167         void init(InsetText const * ins = 0, bool same_id = false);
168         ///
169         void writeParagraphData(Buffer const *, std::ostream &) const;
170         ///
171         void setParagraphData(Paragraph *);
172         ///
173         void setText(string const &);
174         ///
175         void setAutoBreakRows(bool);
176         ///
177         void setDrawFrame(BufferView *, DrawFrame);
178         ///
179         void setFrameColor(BufferView *, LColor::color);
180         ///
181         LyXText * getLyXText(BufferView const *,
182                              bool const recursive = false) const;
183         ///
184         void deleteLyXText(BufferView *, bool recursive = true) const;
185         ///
186         void resizeLyXText(BufferView *, bool force = false) const;
187         ///
188         bool showInsetDialog(BufferView *) const;
189         ///
190         std::vector<string> const getLabelList() const;
191         ///
192         bool nodraw() const;
193         ///
194         int scroll(bool recursive=true) const;
195         ///
196         void scroll(BufferView *bv, float sx) const {
197                 UpdatableInset::scroll(bv, sx);
198         }
199         ///
200         void scroll(BufferView *bv, int offset) const {
201                 UpdatableInset::scroll(bv, offset);
202         }
203         ///
204         void selectAll(BufferView *bv);
205         ///
206         void clearSelection(BufferView *bv);
207         ///
208         Paragraph * getParFromID(int id) const;
209         ///
210         Inset * getInsetFromID(int id) const;
211         ///
212         Paragraph * firstParagraph() const;
213         ///
214         LyXCursor const & cursor(BufferView *) const;
215         ///
216         Paragraph * paragraph() const;
217         ///
218         void paragraph(Paragraph *);
219         ///
220         mutable int need_update;
221
222 protected:
223         ///
224         void updateLocal(BufferView *, int what, bool mark_dirty);
225         ///
226         mutable int drawTextXOffset;
227         ///
228         mutable int drawTextYOffset;
229         ///
230         bool autoBreakRows;
231         ///
232         DrawFrame drawFrame_;
233         ///
234         LColor::color frame_color;
235
236 private:
237         ///
238         typedef std::map<BufferView *, boost::shared_ptr<LyXText> > Cache;
239         ///
240         typedef Cache::value_type value_type;
241         ///
242         int beginningOfMainBody(Buffer const *, Paragraph * par) const;
243         ///
244         void showInsetCursor(BufferView *, bool show=true);
245         ///
246         void hideInsetCursor(BufferView *);
247         ///
248         UpdatableInset::RESULT moveRight(BufferView *,
249                                          bool activate_inset = true,
250                                          bool selecting = false);
251         ///
252         UpdatableInset::RESULT moveLeft(BufferView *,
253                                         bool activate_inset = true,
254                                         bool selecting = false);
255         ///
256         UpdatableInset::RESULT moveRightIntern(BufferView *, bool behind,
257                                                bool activate_inset = true,
258                                                bool selecting = false);
259         ///
260         UpdatableInset::RESULT moveLeftIntern(BufferView *, bool behind, 
261                                               bool activate_inset = true,
262                                               bool selecting = false);
263
264         ///
265         UpdatableInset::RESULT moveUp(BufferView *);
266         ///
267         UpdatableInset::RESULT moveDown(BufferView *);
268         ///
269         void setCharFont(Buffer const *, int pos, LyXFont const & font);
270         ///
271         string const getText(int);
272         ///
273         bool checkAndActivateInset(BufferView * bv, bool behind);
274         ///
275         bool checkAndActivateInset(BufferView * bv, int x = 0, int y = 0,
276                                    int button = 0);
277         ///
278         void removeNewlines();
279         ///
280         int cx(BufferView *) const;
281         ///
282         int cy(BufferView *) const;
283         ///
284         Paragraph::size_type cpos(BufferView *) const;
285         ///
286         Paragraph * cpar(BufferView *) const;
287         ///
288         bool cboundary(BufferView *) const;
289         ///
290         Row * crow(BufferView *) const;
291         ///
292         void drawFrame(Painter &, bool cleared) const;
293         ///
294         void clearFrame(Painter &, bool cleared) const;
295         ///
296         void clearInset(Painter &, int baseline, bool & cleared) const;
297         
298         /* Private structures and variables */
299         ///
300         Paragraph * par;
301         ///
302         mutable bool locked;
303         ///
304         mutable int insetAscent;
305         ///
306         mutable int insetDescent;
307         ///
308         mutable int insetWidth;
309         ///
310         mutable int last_width;
311         ///
312         mutable int last_height;
313         ///
314         mutable int top_y;
315         ///
316         Paragraph * inset_par;
317         ///
318         Paragraph::size_type inset_pos;
319         ///
320         bool inset_boundary;
321         ///
322         mutable int inset_x;
323         ///
324         mutable int inset_y;
325         ///
326         mutable unsigned int old_max_width;
327         ///
328         bool no_selection;
329         ///
330         mutable float xpos;
331         ///
332         UpdatableInset * the_locking_inset;
333         ///
334         Paragraph * old_par;
335         /// The cache.
336         mutable Cache cache;
337         ///
338         mutable int last_drawn_width;
339         ///
340         mutable bool frame_is_visible;
341         ///
342         mutable BufferView * cached_bview;
343         ///
344         mutable boost::shared_ptr<LyXText> cached_text;
345 };
346 #endif