]> git.lyx.org Git - lyx.git/blob - src/insets/InsetText.h
Some things did not need to be mutable after all
[lyx.git] / src / insets / InsetText.h
1 // -*- C++ -*-
2 /**
3  * \file InsetText.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jürgen Vigna
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef INSETTEXT_H
13 #define INSETTEXT_H
14
15 #include "Inset.h"
16
17 #include "ColorCode.h"
18 #include "Text.h"
19
20 namespace lyx {
21
22 class CompletionList;
23 class CursorSlice;
24 class Dimension;
25 class ParagraphList;
26 class InsetCaption;
27 class InsetTabular;
28
29 /**
30  A text inset is like a TeX box to write full text
31  (including styles and other insets) in a given space.
32  */
33 class InsetText : public Inset {
34 public:
35         enum UsePlain {
36                 DefaultLayout,
37                 PlainLayout
38         };
39         /// \param buffer
40         /// \param useplain whether to use the plain layout
41         /// This is needed because we cannot call the virtual function
42         /// usePlainLayout() from within the constructor.
43         explicit InsetText(Buffer * buffer, UsePlain type = DefaultLayout);
44         ///
45         InsetText(InsetText const &);
46         ///
47         void setBuffer(Buffer &);
48
49         ///
50         Dimension const dimension(BufferView const &) const;
51
52         /// empty inset to empty par
53         void clear();
54         ///
55         void read(Lexer & lex);
56         ///
57         void write(std::ostream & os) const;
58         ///
59         void metrics(MetricsInfo & mi, Dimension & dim) const;
60         ///
61         void draw(PainterInfo & pi, int x, int y) const;
62         ///
63         bool editable() const { return true; }
64         ///
65         bool canTrackChanges() const { return true; }
66         /// Rely on RowPainter to draw the cue of inline insets.
67         bool canPaintChange(BufferView const &) const { return allowMultiPar(); }
68         ///
69         InsetText * asInsetText() { return this; }
70         ///
71         InsetText const * asInsetText() const { return this; }
72         ///
73         Text & text() { return text_; }
74         Text const & text() const { return text_; }
75         ///
76         void latex(otexstream &, OutputParams const &) const;
77         ///
78         int plaintext(odocstringstream & ods, OutputParams const & op,
79                       size_t max_length = INT_MAX) const;
80         ///
81         int docbook(odocstream &, OutputParams const &) const;
82         ///
83         docstring xhtml(XHTMLStream &, OutputParams const &) const;
84         ///
85         enum XHTMLOptions {
86                 JustText = 0,
87                 WriteOuterTag = 1,
88                 WriteLabel = 2,
89                 WriteInnerTag = 4,
90                 WriteEverything = 7
91         };
92         ///
93         docstring insetAsXHTML(XHTMLStream &, OutputParams const &, 
94                                XHTMLOptions) const;
95         ///
96         void validate(LaTeXFeatures & features) const;
97         
98         /// return the argument(s) only
99         void getArgs(otexstream & os, OutputParams const &, bool const post = false) const;
100
101         /// return x,y of given position relative to the inset's baseline
102         void cursorPos(BufferView const & bv, CursorSlice const & sl,
103                 bool boundary, int & x, int & y) const;
104         ///
105         InsetCode lyxCode() const { return TEXT_CODE; }
106         ///
107         void setText(docstring const &, Font const &, bool trackChanges);
108         ///
109         void setDrawFrame(bool);
110         ///
111         ColorCode frameColor() const;
112         ///
113         void setFrameColor(ColorCode);
114         ///
115         Text * getText(int i) const {
116                 return (i == 0) ? const_cast<Text*>(&text_) : 0;
117         }
118         ///
119         virtual bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
120
121         ///
122         void fixParagraphsFont();
123
124         /// set the change for the entire inset
125         void setChange(Change const & change);
126         /// accept the changes within the inset
127         void acceptChanges();
128         /// reject the changes within the inset
129         void rejectChanges();
130
131         /// append text onto the existing text
132         void appendParagraphs(ParagraphList &);
133
134         ///
135         void addPreview(DocIterator const &, graphics::PreviewLoader &) const;
136
137         ///
138         void edit(Cursor & cur, bool front, EntryDirection entry_from);
139         ///
140         Inset * editXY(Cursor & cur, int x, int y);
141
142         /// number of cells in this inset
143         size_t nargs() const { return 1; }
144         ///
145         ParagraphList & paragraphs();
146         ///
147         ParagraphList const & paragraphs() const;
148         ///
149         bool insetAllowed(InsetCode) const;
150         ///
151         bool allowSpellCheck() const { return getLayout().spellcheck() && !getLayout().isPassThru(); }
152         ///
153         virtual bool isMacroScope() const { return false; }
154         ///
155         virtual bool allowMultiPar() const { return getLayout().isMultiPar(); }
156         ///
157         /// should paragraphs be forced to use the empty layout?
158         virtual bool forcePlainLayout(idx_type = 0) const
159                 { return getLayout().forcePlainLayout(); }
160         /// should the user be allowed to customize alignment, etc.?
161         virtual bool allowParagraphCustomization(idx_type = 0) const
162                 { return getLayout().allowParagraphCustomization(); }
163         /// should paragraphs be forced to use a local font language switch?
164         virtual bool forceLocalFontSwitch() const
165                 { return getLayout().forcelocalfontswitch(); }
166
167         /// Update the counters of this inset and of its contents
168         virtual void updateBuffer(ParIterator const &, UpdateType);
169         /// 
170         void setMacrocontextPositionRecursive(DocIterator const & pos);
171         ///
172         void toString(odocstream &) const;
173         ///
174         void forOutliner(docstring &, size_t const, bool const) const;
175         ///
176         void addToToc(DocIterator const & di, bool output_active,
177                                   UpdateType utype) const;
178         ///
179         Inset * clone() const { return new InsetText(*this); }
180         ///
181         bool notifyCursorLeaves(Cursor const & old, Cursor & cur);
182
183         ///
184         bool completionSupported(Cursor const &) const;
185         ///
186         bool inlineCompletionSupported(Cursor const & cur) const;
187         ///
188         bool automaticInlineCompletion() const;
189         ///
190         bool automaticPopupCompletion() const;
191         ///
192         bool showCompletionCursor() const;
193         ///
194         CompletionList const * createCompletionList(Cursor const & cur) const;
195         ///
196         docstring completionPrefix(Cursor const & cur) const;
197         ///
198         bool insertCompletion(Cursor & cur, docstring const & s, bool finished);
199         ///
200         void completionPosAndDim(Cursor const &, int & x, int & y, Dimension & dim) const;
201         /// returns the text to be used as tooltip
202         /// \param prefix: a string that will preced the tooltip,
203         /// e.g., "Index: ".
204         /// \param len: length of the resulting string
205         /// NOTE This routine is kind of slow. It's fine to use it within the 
206         /// GUI, but definitely do not try to use it in updateBuffer or anything
207         /// of that sort. (Note: unnecessary internal copies have been removed
208         /// since the previous note. The efficiency would have to be assessed
209         /// again by profiling.)
210         docstring toolTipText(docstring prefix = empty_docstring(),
211                               size_t len = 400) const;
212
213         ///
214         std::string contextMenu(BufferView const &, int, int) const;
215         ///
216         std::string contextMenuName() const;
217         ///
218         void doDispatch(Cursor & cur, FuncRequest & cmd);
219 protected:
220         ///
221         InsetCaption const * getCaptionInset() const;
222         ///
223         docstring getCaptionText(OutputParams const &) const;
224         ///
225         docstring getCaptionHTML(OutputParams const &) const;
226         ///
227         void iterateForToc(DocIterator const & cdit, bool output_active,
228                                            UpdateType utype) const;
229 private:
230         ///
231         bool drawFrame_;
232         ///
233         ColorCode frame_color_;
234         ///
235         Text text_;
236 };
237
238
239 InsetText::XHTMLOptions operator|(InsetText::XHTMLOptions a1, InsetText::XHTMLOptions a2);
240
241 } // namespace lyx
242
243 #endif