]> git.lyx.org Git - lyx.git/blob - src/insets/insettext.h
e340437e9e39b66456acdef2bf98bef87c5f9725
[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 *, bool fordraw = false) 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         void edit(BufferView *, bool front = true);
111         ///
112         bool isTextInset() const { return true; }
113         ///
114         bool doClearArea() const;
115         ///
116         void insetUnlock(BufferView *);
117         ///
118         bool lockInsetInInset(BufferView *, UpdatableInset *);
119         ///
120         bool unlockInsetInInset(BufferView *,
121                                 UpdatableInset *, bool lr = false);
122         ///
123         bool updateInsetInInset(BufferView *, Inset *);
124         ///
125         void insetButtonRelease(BufferView *, int, int, int);
126         ///
127         void insetButtonPress(BufferView *, int, int, int);
128         ///
129         void insetMotionNotify(BufferView *, int, int, int);
130         ///
131         void insetKeyPress(XKeyEvent *);
132         ///
133         UpdatableInset::RESULT localDispatch(BufferView *,
134                                              kb_action, string const &);
135         ///
136         int latex(Buffer const *, std::ostream &,
137                   bool fragile, bool free_spc) const;
138         ///
139         int ascii(Buffer const *, std::ostream &, int linelen) const;
140         ///
141         int linuxdoc(Buffer const *, std::ostream &) const { return 0; }
142         ///
143         int docBook(Buffer const *, std::ostream &) const ;
144         ///
145         void validate(LaTeXFeatures & features) const;
146         ///
147         Inset::Code lyxCode() const { return Inset::TEXT_CODE; }
148         ///
149         void getCursorPos(BufferView *, int & x, int & y) const;
150         ///
151         unsigned int insetInInsetY();
152         ///
153         void toggleInsetCursor(BufferView *);
154         ///
155         void showInsetCursor(BufferView *, bool show=true);
156         ///
157         void hideInsetCursor(BufferView *);
158         ///
159         void fitInsetCursor(BufferView *) const;
160         ///
161         bool insertInset(BufferView *, Inset *);
162         ///
163         bool insetAllowed(Inset::Code) const;
164         ///
165         UpdatableInset * getLockingInset() const;
166         ///
167         UpdatableInset * getFirstLockingInsetOfType(Inset::Code);
168         ///
169         void setFont(BufferView *, LyXFont const &,
170                      bool toggleall = false,
171                      bool selectall = false);
172         ///
173         int getMaxWidth(BufferView *, UpdatableInset const *) const;
174         ///
175         void init(InsetText const * ins = 0, bool same_id = false);
176         ///
177         void writeParagraphData(Buffer const *, std::ostream &) const;
178         ///
179         void setParagraphData(Paragraph *);
180         ///
181         void setText(string const &);
182         ///
183         void setAutoBreakRows(bool);
184         ///
185         bool getAutoBreakRows() const { return autoBreakRows; }
186         ///
187         void setDrawFrame(BufferView *, DrawFrame);
188         ///
189         void setFrameColor(BufferView *, LColor::color);
190         ///
191         LyXText * getLyXText(BufferView const *,
192                              bool const recursive = false) const;
193         ///
194         void deleteLyXText(BufferView *, bool recursive = true) const;
195         ///
196         void resizeLyXText(BufferView *, bool force = false) const;
197         ///
198         bool showInsetDialog(BufferView *) const;
199         ///
200         std::vector<string> const getLabelList() const;
201         ///
202         bool nodraw() const;
203         ///
204         int scroll(bool recursive=true) const;
205         ///
206         void scroll(BufferView *bv, float sx) const {
207                 UpdatableInset::scroll(bv, sx);
208         }
209         ///
210         void scroll(BufferView *bv, int offset) const {
211                 UpdatableInset::scroll(bv, offset);
212         }
213         ///
214         void selectAll(BufferView *bv);
215         ///
216         void clearSelection(BufferView *bv);
217         ///
218         Paragraph * getParFromID(int id) const;
219         ///
220         Inset * getInsetFromID(int id) const;
221         ///
222         Paragraph * firstParagraph() const;
223         ///
224         LyXCursor const & cursor(BufferView *) const;
225         ///
226         Paragraph * paragraph() const;
227         ///
228         void paragraph(Paragraph *);
229         ///
230         string const selectNextWord(BufferView *, float & value) const;
231         void selectSelectedWord(BufferView *);
232         void toggleSelection(BufferView *, bool kill_selection);
233         ///
234         bool searchForward(BufferView *, string const &,
235                            bool const & = true, bool const & = false);
236         bool searchBackward(BufferView *, string const &,
237                             bool const & = true, bool const & = false);
238         
239         //
240         // Public structures and variables
241         ///
242         mutable int need_update;
243
244 protected:
245         ///
246         void updateLocal(BufferView *, int what, bool mark_dirty) const;
247         ///
248         mutable int drawTextXOffset;
249         ///
250         mutable int drawTextYOffset;
251         ///
252         bool autoBreakRows;
253         ///
254         DrawFrame drawFrame_;
255         ///
256         LColor::color frame_color;
257
258 private:
259         struct InnerCache {
260                 InnerCache(boost::shared_ptr<LyXText>);
261
262                 boost::shared_ptr<LyXText> text;
263                 bool remove;
264         };
265         ///
266         typedef std::map<BufferView *, struct InnerCache > Cache;
267         ///
268         typedef Cache::value_type value_type;
269         ///
270         int beginningOfMainBody(Buffer const *, Paragraph * par) const;
271         ///
272         UpdatableInset::RESULT moveRight(BufferView *,
273                                          bool activate_inset = true,
274                                          bool selecting = false);
275         ///
276         UpdatableInset::RESULT moveLeft(BufferView *,
277                                         bool activate_inset = true,
278                                         bool selecting = false);
279         ///
280         UpdatableInset::RESULT moveRightIntern(BufferView *, bool behind,
281                                                bool activate_inset = true,
282                                                bool selecting = false);
283         ///
284         UpdatableInset::RESULT moveLeftIntern(BufferView *, bool behind, 
285                                               bool activate_inset = true,
286                                               bool selecting = false);
287
288         ///
289         UpdatableInset::RESULT moveUp(BufferView *);
290         ///
291         UpdatableInset::RESULT moveDown(BufferView *);
292         ///
293         void setCharFont(Buffer const *, int pos, LyXFont const & font);
294         ///
295         bool checkAndActivateInset(BufferView * bv, bool behind);
296         ///
297         bool checkAndActivateInset(BufferView * bv, int x = 0, int y = 0,
298                                    int button = 0);
299         ///
300         void removeNewlines();
301         ///
302         int cx(BufferView *) const;
303         ///
304         int cy(BufferView *) const;
305         ///
306         Paragraph::size_type cpos(BufferView *) const;
307         ///
308         Paragraph * cpar(BufferView *) const;
309         ///
310         bool cboundary(BufferView *) const;
311         ///
312         Row * crow(BufferView *) const;
313         ///
314         void drawFrame(Painter &, bool cleared) const;
315         ///
316         void clearFrame(Painter &, bool cleared) const;
317         ///
318         void clearInset(Painter &, int baseline, bool & cleared) const;
319         ///
320         void saveLyXTextState(LyXText *) const;
321         void restoreLyXTextState(BufferView *, LyXText *) const;
322         ///
323         void reinitLyXText() const;
324         
325         /* Private structures and variables */
326         ///
327         Paragraph * par;
328         ///
329         mutable bool locked;
330         ///
331         mutable int insetAscent;
332         ///
333         mutable int insetDescent;
334         ///
335         mutable int insetWidth;
336         ///
337         mutable int last_width;
338         ///
339         mutable int last_height;
340         ///
341         mutable int top_y;
342         ///
343         Paragraph * inset_par;
344         ///
345         Paragraph::size_type inset_pos;
346         ///
347         bool inset_boundary;
348         ///
349         mutable int inset_x;
350         ///
351         mutable int inset_y;
352         ///
353         mutable int old_max_width;
354         ///
355         bool no_selection;
356         ///
357         mutable float xpos;
358         ///
359         UpdatableInset * the_locking_inset;
360         ///
361         mutable Paragraph * old_par;
362         /// The cache.
363         mutable Cache cache;
364         ///
365         mutable int last_drawn_width;
366         ///
367         mutable bool frame_is_visible;
368         ///
369         mutable BufferView * cached_bview;
370         ///
371         mutable boost::shared_ptr<LyXText> cached_text;
372         ///
373         mutable struct save_state {
374                 Paragraph * lpar;
375                 Paragraph * selstartpar;
376                 Paragraph * selendpar;
377                 Paragraph::size_type pos;
378                 Paragraph::size_type selstartpos;
379                 Paragraph::size_type selendpos;
380                 bool boundary;
381                 bool selstartboundary;
382                 bool selendboundary;
383                 bool selection;
384                 bool mark_set;
385                 bool refresh;
386         } sstate;
387         ///
388         // this is needed globally so we know that we're using it actually and
389         // so the LyXText-Cache is not erased until used!
390         mutable LyXText * lt;
391         ///
392         // to remember old painted frame dimensions to clear it on the right spot!
393         ///
394         mutable int frame_x;
395         mutable int frame_y;
396         mutable int frame_w;
397         mutable int frame_h;
398         ///
399         bool in_update; /* as update is not reentrant! */
400 };
401 #endif