]> git.lyx.org Git - features.git/blob - src/insets/inset.h
Store an InsetBase & in MailInset.
[features.git] / src / insets / inset.h
1 // -*- C++ -*-
2 /**
3  * \file inset.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Alejandro Aguilar Sierra
8  * \author Jürgen Vigna
9  * \author Lars Gullik Bjønnes
10  * \author Matthias Ettrich
11  *
12  * Full author contact details are available in file CREDITS
13  */
14
15 #ifndef INSET_H
16 #define INSET_H
17
18
19 #include <vector>
20 #include "LString.h"
21 #include "LColor.h"
22 #include "insetbase.h"
23 #include "frontends/mouse_state.h"
24 #include "support/types.h"
25
26 class LyXFont;
27 class Buffer;
28 class Painter;
29 class LyXText;
30 class LyXLex;
31 class Paragraph;
32 class LyXCursor;
33 class FuncRequest;
34 class WordLangTuple;
35
36 struct LaTeXFeatures;
37
38 namespace grfx {
39         class PreviewLoader;
40 }
41
42 /// Insets
43 class Inset : public InsetBase {
44 public:
45         /** This is not quite the correct place for this enum. I think
46             the correct would be to let each subclass of Inset declare
47             its own enum code. Actually the notion of an Inset::Code
48             should be avoided, but I am not sure how this could be done
49             in a cleaner way. */
50         enum Code {
51                 ///
52                 NO_CODE,
53                 ///
54                 TOC_CODE,  // do these insets really need a code? (ale)
55                 ///
56                 QUOTE_CODE,
57                 ///
58                 MARK_CODE,
59                 ///
60                 REF_CODE, // 5
61                 ///
62                 URL_CODE,
63                 ///
64                 HTMLURL_CODE,
65                 ///
66                 SEPARATOR_CODE,
67                 ///
68                 ENDING_CODE,
69                 ///
70                 LABEL_CODE, // 10
71                 ///
72                 NOTE_CODE,
73                 ///
74                 ACCENT_CODE,
75                 ///
76                 MATH_CODE,
77                 ///
78                 INDEX_CODE,
79                 ///
80                 INCLUDE_CODE, // 15
81                 ///
82                 GRAPHICS_CODE,
83                 ///
84                 PARENT_CODE,
85                 ///
86                 BIBITEM_CODE,
87                 ///
88                 BIBTEX_CODE,
89                 ///
90                 TEXT_CODE,
91                 ///
92                 ERT_CODE, // 20
93                 ///
94                 FOOT_CODE,
95                 ///
96                 MARGIN_CODE,
97                 ///
98                 FLOAT_CODE,
99                 ///
100                 WRAP_CODE,
101                 ///
102                 MINIPAGE_CODE,
103                 ///
104                 SPECIALCHAR_CODE, // 25
105                 ///
106                 TABULAR_CODE,
107                 ///
108                 EXTERNAL_CODE,
109 #if 0
110                 ///
111                 THEOREM_CODE,
112 #endif
113                 ///
114                 CAPTION_CODE,
115                 ///
116                 MATHMACRO_CODE, // 30
117                 ///
118                 ERROR_CODE,
119                 ///
120                 CITE_CODE,
121                 ///
122                 FLOAT_LIST_CODE,
123                 ///
124                 INDEX_PRINT_CODE,
125                 ///
126                 OPTARG_CODE
127         };
128
129         ///
130         enum {
131                 ///
132                 TEXT_TO_INSET_OFFSET = 2
133         };
134
135         ///
136         enum EDITABLE {
137                 ///
138                 NOT_EDITABLE = 0,
139                 ///
140                 IS_EDITABLE,
141                 ///
142                 HIGHLY_EDITABLE
143         };
144
145         ///
146         typedef dispatch_result RESULT;
147
148         ///
149         Inset();
150         ///
151         Inset(Inset const & in, bool same_id = false);
152         ///
153         virtual int ascent(BufferView *, LyXFont const &) const = 0;
154         ///
155         virtual int descent(BufferView *, LyXFont const &) const = 0;
156         ///
157         virtual int width(BufferView *, LyXFont const &) const = 0;
158         ///
159         virtual void draw(BufferView *, LyXFont const &,
160                           int baseline, float & x, bool cleared) const = 0;
161         /// update the inset representation
162         virtual void update(BufferView *, LyXFont const &, bool = false)
163                 {}
164         /// what appears in the minibuffer when opening
165         virtual string const editMessage() const;
166         ///
167         virtual void edit(BufferView *, int x, int y, mouse_button::state button);
168         ///
169         virtual void edit(BufferView *, bool front = true);
170         ///
171         virtual EDITABLE editable() const;
172         ///
173         virtual bool isTextInset() const { return false; }
174         ///
175         virtual bool doClearArea() const { return true; }
176         /// return true if the inset should be removed automatically
177         virtual bool autoDelete() const;
178         /// returns true the inset can hold an inset of given type
179         virtual bool insetAllowed(Inset::Code) const { return false; }
180         /// wrapper around the above
181         bool insetAllowed(Inset * in) const;
182         ///
183         virtual void write(Buffer const *, std::ostream &) const = 0;
184         ///
185         virtual void read(Buffer const *, LyXLex & lex) = 0;
186         /** returns the number of rows (\n's) of generated tex code.
187             fragile == true means, that the inset should take care about
188             fragile commands by adding a \protect before.
189             If the free_spc (freespacing) variable is set, then this inset
190             is in a free-spacing paragraph.
191         */
192         virtual int latex(Buffer const *, std::ostream &, bool fragile,
193                           bool free_spc) const = 0;
194         ///
195         virtual int ascii(Buffer const *,
196                           std::ostream &, int linelen = 0) const = 0;
197         ///
198         virtual int linuxdoc(Buffer const *, std::ostream &) const = 0;
199         ///
200         virtual int docbook(Buffer const *, std::ostream &, bool) const = 0;
201         /// Updates needed features for this inset.
202         virtual void validate(LaTeXFeatures & features) const;
203
204         /// returns LyX code associated with the inset. Used for TOC, ...)
205         virtual Inset::Code lyxCode() const { return NO_CODE; }
206
207         virtual std::vector<string> const getLabelList() const {
208                 return std::vector<string>();
209         }
210
211         ///
212         virtual Inset * clone(Buffer const &, bool same_ids = false) const = 0;
213
214         /// returns true to override begin and end inset in file
215         virtual bool directWrite() const;
216
217         /// Returns true if the inset should be centered alone
218         virtual bool display() const { return false; }
219         /// Changes the display state of the inset
220         virtual void display(bool) {}
221         ///
222         /// returns true if this inset needs a row on it's own
223         ///
224         virtual bool needFullRow() const { return false; }
225         ///
226         void setInsetName(string const & s) { name_ = s; }
227         ///
228         string const & getInsetName() const { return name_; }
229         ///
230         void setOwner(Inset * inset) { owner_ = inset; }
231         ///
232         Inset * owner() const { return owner_; }
233         ///
234         void parOwner(Paragraph * par) { par_owner_ = par; }
235         ///
236         Paragraph * parOwner() const { return par_owner_; }
237         ///
238         void setBackgroundColor(LColor::color);
239         ///
240         LColor::color backgroundColor() const;
241         ///
242         int x() const { return top_x; }
243         ///
244         int y() const { return top_baseline; }
245         //
246         // because we could have fake text insets and have to call this
247         // inside them without cast!!!
248         ///
249         virtual LyXText * getLyXText(BufferView const *,
250                                      bool const recursive = false) const;
251         ///
252         virtual void deleteLyXText(BufferView *, bool = true) const {}
253         ///
254         virtual void resizeLyXText(BufferView *, bool /*force*/= false) const {}
255         /// returns the actuall scroll-value
256         virtual int scroll(bool recursive=true) const {
257                 if (!recursive || !owner_)
258                         return scx;
259                 return 0;
260         }
261
262         /// try to get a inset pointer from it's id if we have
263         /// an inset to give back!
264         virtual Inset * getInsetFromID(int /*id*/) const { return 0; }
265         /// if this insets owns paragraphs (f.ex. InsetText) then it
266         /// should return it's very first one!
267         virtual Paragraph * firstParagraph() const { return 0; }
268         ///
269         virtual Paragraph * getFirstParagraph(int /*num*/) const { return 0; }
270
271         /// return the cursor if we own one otherwise giv'em just the
272         /// BufferView cursor to work with.
273         virtual LyXCursor const & cursor(BufferView * bview) const;
274         /// id functions
275         int id() const;
276         ///
277         void id(int id_arg);
278
279         /// used to toggle insets
280         // is the inset open?
281         virtual bool isOpen() const { return false; }
282         /// open the inset
283         virtual void open(BufferView *) {}
284         /// close the inset
285         virtual void close(BufferView *) const {}
286         /// check if the font of the char we want inserting is correct
287         /// and modify it if it is not.
288         virtual bool checkInsertChar(LyXFont &);
289         /// we need this here because collapsed insets are only EDITABLE
290         virtual void setFont(BufferView *, LyXFont const &,
291                          bool toggleall = false, bool selectall = false);
292         ///
293         // needed for spellchecking text
294         ///
295         virtual bool allowSpellcheck() const { return false; }
296
297         // should this inset be handled like a normal charater
298         virtual bool isChar() const { return false; }
299         // is this equivalent to a letter?
300         virtual bool isLetter() const { return false; }
301         // is this equivalent to a space (which is BTW different from
302         // a line separator)?
303         virtual bool isSpace() const { return false; }
304         // should we break lines after this inset?
305         virtual bool isLineSeparator() const { return false; }
306         // if this inset has paragraphs should they be output all as default
307         // paragraphs with "Standard" layout?
308         virtual bool forceDefaultParagraphs(Inset const *) const;
309         /** returns true if, when outputing LaTeX, font changes should
310             be closed before generating this inset. This is needed for
311             insets that may contain several paragraphs */
312         virtual bool noFontChange() const { return false; }
313         //
314         virtual void getDrawFont(LyXFont &) const {}
315         /* needed for widths which are % of something
316            returns the value of \textwidth in this inset. Most of the
317            time this is the width of the workarea, but if there is a
318            minipage somewhere, it will be the width of this minipage */
319         virtual int latexTextWidth(BufferView *) const;
320
321         /// mark the inset contents as erased (for change tracking)
322         virtual void markErased() {}
323  
324         /** Adds a LaTeX snippet to the Preview Loader for transformation
325          *  into a bitmap image. Does not start the laoding process.
326          *
327          *  Most insets have no interest in this capability, so the method
328          *  defaults to empty.
329          */
330         virtual void addPreview(grfx::PreviewLoader &) const {}
331
332         /** Find the PreviewLoader, add a LaTeX snippet to it and
333          *  start the loading process.
334          *
335          *  Most insets have no interest in this capability, so the method
336          *  defaults to empty.
337          */
338         virtual void generatePreview() const {}
339
340 protected:
341         ///
342         mutable int top_x;
343         ///
344         mutable bool topx_set; /* have we already drawn ourself! */
345         ///
346         mutable int top_baseline;
347         ///
348         mutable int scx;
349         ///
350         unsigned int id_;
351         ///
352         static unsigned int inset_id;
353
354 private:
355         ///
356         Inset * owner_;
357         /// the paragraph in which this inset has been inserted
358         Paragraph * par_owner_;
359         ///
360         string name_;
361         ///
362         LColor::color background_color_;
363 };
364
365
366 inline
367 bool Inset::insetAllowed(Inset * in) const
368 {
369         return insetAllowed(in->lyxCode());
370 }
371
372
373 inline
374 bool Inset::checkInsertChar(LyXFont &)
375 {
376         return false;
377 }
378
379 /**
380  * returns true if pointer argument is valid
381  * and points to an editable inset
382  */
383 inline bool isEditableInset(Inset const * i)
384 {
385         return i && i->editable();
386 }
387
388 /**
389  * returns true if pointer argument is valid
390  * and points to a highly editable inset
391  */
392 inline bool isHighlyEditableInset(Inset const * i)
393 {
394         return i && i->editable() == Inset::HIGHLY_EDITABLE;
395 }
396
397 #endif