]> git.lyx.org Git - lyx.git/blob - src/insets/insettext.h
Fix working of the spellchecker dialog with ispell when there are no
[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         Paragraph * getFirstParagraph(int) const;
225         ///
226         LyXCursor const & cursor(BufferView *) const;
227         ///
228         Paragraph * paragraph() const;
229         ///
230         void paragraph(Paragraph *);
231         ///
232         string const selectNextWordToSpellcheck(BufferView *, float & value) const;
233         void selectSelectedWord(BufferView *);
234         void toggleSelection(BufferView *, bool kill_selection);
235         ///
236         bool searchForward(BufferView *, string const &,
237                            bool const & = true, bool const & = false);
238         bool searchBackward(BufferView *, string const &,
239                             bool const & = true, bool const & = false);
240         
241         //
242         // Public structures and variables
243         ///
244         mutable int need_update;
245
246 protected:
247         ///
248         void updateLocal(BufferView *, int what, bool mark_dirty) const;
249         ///
250         mutable int drawTextXOffset;
251         ///
252         mutable int drawTextYOffset;
253         ///
254         bool autoBreakRows;
255         ///
256         DrawFrame drawFrame_;
257         ///
258         LColor::color frame_color;
259
260 private:
261         struct InnerCache {
262                 InnerCache(boost::shared_ptr<LyXText>);
263
264                 boost::shared_ptr<LyXText> text;
265                 bool remove;
266         };
267         ///
268         typedef std::map<BufferView *, struct InnerCache > Cache;
269         ///
270         typedef Cache::value_type value_type;
271         ///
272         int beginningOfMainBody(Buffer const *, Paragraph * par) const;
273         ///
274         UpdatableInset::RESULT moveRight(BufferView *,
275                                          bool activate_inset = true,
276                                          bool selecting = false);
277         ///
278         UpdatableInset::RESULT moveLeft(BufferView *,
279                                         bool activate_inset = true,
280                                         bool selecting = false);
281         ///
282         UpdatableInset::RESULT moveRightIntern(BufferView *, bool behind,
283                                                bool activate_inset = true,
284                                                bool selecting = false);
285         ///
286         UpdatableInset::RESULT moveLeftIntern(BufferView *, bool behind, 
287                                               bool activate_inset = true,
288                                               bool selecting = false);
289
290         ///
291         UpdatableInset::RESULT moveUp(BufferView *);
292         ///
293         UpdatableInset::RESULT moveDown(BufferView *);
294         ///
295         void setCharFont(Buffer const *, int pos, LyXFont const & font);
296         ///
297         bool checkAndActivateInset(BufferView * bv, bool behind);
298         ///
299         bool checkAndActivateInset(BufferView * bv, int x = 0, int y = 0,
300                                    int button = 0);
301         ///
302         void removeNewlines();
303         ///
304         int cx(BufferView *) const;
305         ///
306         int cy(BufferView *) const;
307         ///
308         Paragraph::size_type cpos(BufferView *) const;
309         ///
310         Paragraph * cpar(BufferView *) const;
311         ///
312         bool cboundary(BufferView *) const;
313         ///
314         Row * crow(BufferView *) const;
315         ///
316         void drawFrame(Painter &, bool cleared) const;
317         ///
318         void clearFrame(Painter &, bool cleared) const;
319         ///
320         void clearInset(Painter &, int baseline, bool & cleared) const;
321         ///
322         void saveLyXTextState(LyXText *) const;
323         void restoreLyXTextState(BufferView *, LyXText *) const;
324         ///
325         void reinitLyXText() const;
326         
327         /* Private structures and variables */
328         ///
329         Paragraph * par;
330         ///
331         mutable bool locked;
332         ///
333         mutable int insetAscent;
334         ///
335         mutable int insetDescent;
336         ///
337         mutable int insetWidth;
338         ///
339         mutable int last_width;
340         ///
341         mutable int last_height;
342         ///
343         mutable int top_y;
344         ///
345         Paragraph * inset_par;
346         ///
347         Paragraph::size_type inset_pos;
348         ///
349         bool inset_boundary;
350         ///
351         mutable int inset_x;
352         ///
353         mutable int inset_y;
354         ///
355         mutable int old_max_width;
356         ///
357         bool no_selection;
358         ///
359         mutable float xpos;
360         ///
361         UpdatableInset * the_locking_inset;
362         ///
363         mutable Paragraph * old_par;
364         /// The cache.
365         mutable Cache cache;
366         ///
367         mutable int last_drawn_width;
368         ///
369         mutable bool frame_is_visible;
370         ///
371         mutable BufferView * cached_bview;
372         ///
373         mutable boost::shared_ptr<LyXText> cached_text;
374         ///
375         mutable struct save_state {
376                 Paragraph * lpar;
377                 Paragraph * selstartpar;
378                 Paragraph * selendpar;
379                 Paragraph::size_type pos;
380                 Paragraph::size_type selstartpos;
381                 Paragraph::size_type selendpos;
382                 bool boundary;
383                 bool selstartboundary;
384                 bool selendboundary;
385                 bool selection;
386                 bool mark_set;
387                 bool refresh;
388         } sstate;
389         ///
390         // this is needed globally so we know that we're using it actually and
391         // so the LyXText-Cache is not erased until used!
392         mutable LyXText * lt;
393         ///
394         // to remember old painted frame dimensions to clear it on the right spot!
395         ///
396         mutable int frame_x;
397         mutable int frame_y;
398         mutable int frame_w;
399         mutable int frame_h;
400         ///
401         bool in_update; /* as update is not reentrant! */
402         mutable BufferView * do_resize;
403         mutable bool do_reinit;
404 };
405 #endif