]> git.lyx.org Git - lyx.git/blob - src/insets/InsetText.h
64002f91d79888f850ef11c6dad28ca79bae05d9
[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 #include "insets/InsetLayout.h"
21
22 namespace lyx {
23
24 class CompletionList;
25 class CursorSlice;
26 class Dimension;
27 class ParagraphList;
28 class InsetCaption;
29 class InsetTabular;
30
31 /**
32  A text inset is like a TeX box to write full text
33  (including styles and other insets) in a given space.
34  */
35 class InsetText : public Inset {
36 public:
37         enum UsePlain {
38                 DefaultLayout,
39                 PlainLayout
40         };
41         /// \param buffer
42         /// \param useplain whether to use the plain layout
43         /// This is needed because we cannot call the virtual function
44         /// usePlainLayout() from within the constructor.
45         explicit InsetText(Buffer * buffer, UsePlain type = DefaultLayout);
46         ///
47         InsetText(InsetText const &);
48         ///
49         void setBuffer(Buffer &);
50
51         ///
52         Dimension const dimension(BufferView const &) const;
53
54         /// empty inset to empty par
55         void clear();
56         ///
57         void read(Lexer & lex);
58         ///
59         void write(std::ostream & os) const;
60         ///
61         void metrics(MetricsInfo & mi, Dimension & dim) const;
62         ///
63         void draw(PainterInfo & pi, int x, int y) const;
64         ///
65         bool editable() const { return true; }
66         ///
67         bool canTrackChanges() const { return true; }
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         int latex(odocstream &, OutputParams const &) const;
77         ///
78         int plaintext(odocstream &, OutputParams const &) const;
79         ///
80         int docbook(odocstream &, OutputParams const &) const;
81         ///
82         docstring xhtml(XHTMLStream &, OutputParams const &) const;
83         // FIXME XHTMLStream to be removed
84         docstring xhtml(odocstream &, OutputParams const &) const 
85                 { return docstring (); }
86         ///
87         void validate(LaTeXFeatures & features) const;
88
89         /// return x,y of given position relative to the inset's baseline
90         void cursorPos(BufferView const & bv, CursorSlice const & sl,
91                 bool boundary, int & x, int & y) const;
92         ///
93         InsetCode lyxCode() const { return TEXT_CODE; }
94         ///
95         void setText(docstring const &, Font const &, bool trackChanges);
96         ///
97         void setAutoBreakRows(bool);
98         ///
99         bool getAutoBreakRows() const { return text_.autoBreakRows_; }
100         ///
101         void setDrawFrame(bool);
102         ///
103         ColorCode frameColor() const;
104         ///
105         void setFrameColor(ColorCode);
106         ///
107         bool showInsetDialog(BufferView *) const;
108         ///
109         Text * getText(int i) const {
110                 return (i == 0) ? const_cast<Text*>(&text_) : 0;
111         }
112         ///
113         virtual bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus &) const;
114
115         ///
116         void fixParagraphsFont();
117
118         /// set the change for the entire inset
119         void setChange(Change const & change);
120         /// accept the changes within the inset
121         void acceptChanges();
122         /// reject the changes within the inset
123         void rejectChanges();
124
125         /// append text onto the existing text
126         void appendParagraphs(ParagraphList &);
127
128         ///
129         void addPreview(graphics::PreviewLoader &) const;
130
131         ///
132         void edit(Cursor & cur, bool front, EntryDirection entry_from);
133         ///
134         Inset * editXY(Cursor & cur, int x, int y);
135
136         /// number of cells in this inset
137         size_t nargs() const { return 1; }
138         ///
139         ParagraphList & paragraphs();
140         ///
141         ParagraphList const & paragraphs() const;
142         ///
143         bool insetAllowed(InsetCode) const { return !getLayout().isPassThru(); }
144         /// Allow spellchecking, except for insets with latex_language
145         bool allowSpellCheck() const { return !getLayout().isPassThru(); }
146         ///
147         virtual bool isMacroScope() const { return false; }
148         ///
149         virtual bool allowMultiPar() const { return getLayout().isMultiPar(); }
150         ///
151         /// should paragraphs be forced to use the empty layout?
152         virtual bool forcePlainLayout(idx_type = 0) const 
153                 { return getLayout().forcePlainLayout(); }
154         /// should the user be allowed to customize alignment, etc.?
155         virtual bool allowParagraphCustomization(idx_type = 0) const 
156                 { return getLayout().allowParagraphCustomization(); }
157
158         /// Update the counters of this inset and of its contents
159         virtual void updateLabels(ParIterator const &);
160         /// the string that is passed to the TOC
161         void tocString(odocstream &) const;
162         ///
163         void addToToc(DocIterator const &);
164         ///
165         Inset * clone() const { return new InsetText(*this); }
166         ///
167         bool notifyCursorLeaves(Cursor const & old, Cursor & cur);
168
169         ///
170         bool completionSupported(Cursor const &) const;
171         ///
172         bool inlineCompletionSupported(Cursor const & cur) const;
173         ///
174         bool automaticInlineCompletion() const;
175         ///
176         bool automaticPopupCompletion() const;
177         ///
178         bool showCompletionCursor() const;
179         ///
180         CompletionList const * createCompletionList(Cursor const & cur) const;
181         ///
182         docstring completionPrefix(Cursor const & cur) const;
183         ///
184         bool insertCompletion(Cursor & cur, docstring const & s, bool finished);
185         ///
186         void completionPosAndDim(Cursor const &, int & x, int & y, Dimension & dim) const;
187
188         ///
189         virtual docstring contextMenu(BufferView const & bv, int x, int y) const;
190         ///
191         void doDispatch(Cursor & cur, FuncRequest & cmd);
192 protected:
193         ///
194         InsetCaption const * getCaptionInset() const;
195         ///
196         docstring getCaptionText(OutputParams const &) const;
197         ///
198         docstring getCaptionHTML(OutputParams const &) const;
199 private:
200         ///
201         void initParagraphs(UsePlain type);
202         ///
203         void setParagraphOwner();
204         ///
205         bool drawFrame_;
206         ///
207         ColorCode frame_color_;
208         ///
209         mutable pit_type old_pit;
210         ///
211         mutable Text text_;
212 };
213
214 } // namespace lyx
215
216 #endif