]> git.lyx.org Git - lyx.git/blob - src/insets/insettext.h
partial fix for bug 622, cosmetic rest remains open
[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 "updatableinset.h"
16 #include "RowList_fwd.h"
17 #include "lyxfont.h"
18 #include "lyxtext.h"
19
20 #include "support/types.h"
21
22 #include "frontends/mouse_state.h"
23
24 class Buffer;
25 class BufferParams;
26 class BufferView;
27 class Dimension;
28 class LColor_color;
29 class CursorSlice;
30 class Painter;
31 class ParagraphList;
32 class Row;
33
34
35 /**
36  A text inset is like a TeX box to write full text
37  (including styles and other insets) in a given space.
38  */
39 class InsetText : public UpdatableInset {
40 public:
41         ///
42         explicit InsetText(BufferParams const &);
43         ///
44         InsetText();
45         /// empty inset to empty par, or just mark as erased
46         void clear(bool just_mark_erased);
47         ///
48         void read(Buffer const & buf, LyXLex & lex);
49         ///
50         void write(Buffer const & buf, std::ostream & os) const;
51         ///
52         void metrics(MetricsInfo & mi, Dimension & dim) const;
53         ///
54         void draw(PainterInfo & pi, int x, int y) const;
55         /// draw inset selection
56         void drawSelection(PainterInfo & pi, int x, int y) const;
57         ///
58         std::string const editMessage() const;
59         ///
60         bool isTextInset() const { return true; }
61         ///
62         int latex(Buffer const &, std::ostream &,
63                   OutputParams const &) const;
64         ///
65         int plaintext(Buffer const &, std::ostream &,
66                   OutputParams const &) const;
67         ///
68         int linuxdoc(Buffer const &, std::ostream &,
69                      OutputParams const &) const;
70         ///
71         int docbook(Buffer const &, std::ostream &,
72                     OutputParams const &) const;
73         ///
74         void validate(LaTeXFeatures & features) const;
75
76         /// return x,y of given position relative to the inset's baseline
77         void getCursorPos(CursorSlice const & sl, int & x, int & y) const;
78         ///
79         Code lyxCode() const { return TEXT_CODE; }
80         ///
81         void setFont(BufferView *, LyXFont const &,
82                      bool toggleall = false,
83                      bool selectall = false);
84         ///
85         void setText(std::string const &, LyXFont const &);
86         ///
87         void setAutoBreakRows(bool);
88         ///
89         bool getAutoBreakRows() const { return text_.autoBreakRows_; }
90         ///
91         void setDrawFrame(bool);
92         ///
93         LColor_color frameColor() const;
94         ///
95         void setFrameColor(LColor_color);
96         ///
97         void setViewCache(BufferView const * bv) const;
98         ///
99         bool showInsetDialog(BufferView *) const;
100         /// Appends \c list with all labels found within this inset.
101         void getLabelList(Buffer const &, std::vector<std::string> & list) const;
102         ///
103         LyXText * getText(int) const;
104         ///
105         bool getStatus(LCursor & cur, FuncRequest const & cmd, FuncStatus &) const;
106
107         /// mark as erased for change tracking
108         void markErased() { clear(true); }
109         /**
110          * Mark as new. Used when pasting in tabular, and adding rows
111          * or columns. Note that pasting will ensure that tracking already
112          * happens, and this just resets the changes for the copied text,
113          * whereas for row/col add, we need to start tracking changes
114          * for the (empty) paragraph contained.
115          */
116         void markNew(bool track_changes = false);
117
118         /// append text onto the existing text
119         void appendParagraphs(Buffer * bp, ParagraphList &);
120
121         ///
122         void addPreview(lyx::graphics::PreviewLoader &) const;
123
124         ///
125         void edit(LCursor & cur, bool left);
126         ///
127         InsetBase * editXY(LCursor & cur, int x, int y);
128
129         /// number of cells in this inset
130         size_t nargs() const { return 1; }
131         ///
132         ParagraphList & paragraphs();
133         ///
134         ParagraphList const & paragraphs() const;
135         ///
136         bool insetAllowed(Code) const { return true; }
137         ///
138         bool allowSpellCheck() const { return true; }
139         ///
140         InsetText(InsetText const &);
141
142 protected:
143         ///
144         virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
145 private:
146         virtual std::auto_ptr<InsetBase> doClone() const;
147
148         ///
149         void updateLocal(LCursor &);
150         ///
151         void init();
152         ///
153         void setCharFont(Buffer const &, int pos, LyXFont const & font);
154         ///
155         void removeNewlines();
156         ///
157         void drawFrame(Painter &, int x, int y) const;
158         ///
159         void clearInset(Painter &, int x, int y) const;
160
161         ///
162         bool drawFrame_;
163         /** We store the LColor::color value as an int to get LColor.h out
164          *  of the header file.
165          */
166         int frame_color_;
167         ///
168         mutable lyx::pit_type old_pit;
169         ///
170         static int border_;
171 public:
172         ///
173         mutable LyXText text_;
174         ///
175         mutable LyXFont font_;
176 };
177 #endif