]> git.lyx.org Git - lyx.git/blob - src/TextMetrics.h
Provide proper fallback if a bibliography processor is not found
[lyx.git] / src / TextMetrics.h
1 // -*- C++ -*-
2 /**
3  * \file TextMetrics.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  * \author John Levon
9  * \author Abdelrazak Younes
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef TEXT_METRICS_H
15 #define TEXT_METRICS_H
16
17 #include "Font.h"
18 #include "InsetList.h"
19 #include "LayoutEnums.h"
20 #include "ParagraphMetrics.h"
21
22 #include "support/types.h"
23
24 namespace lyx {
25
26 class BufferView;
27 class Cursor;
28 class CursorSlice;
29 class DocIterator;
30 class MetricsInfo;
31 class Text;
32
33 /// A map from a Text to the map of paragraphs metrics
34 class TextMetrics
35 {
36 public:
37         /// Default constructor (only here for STL containers).
38         TextMetrics() : bv_(0), text_(0), max_width_(0) {}
39         /// The only useful constructor.
40         TextMetrics(BufferView *, Text *);
41
42         ///
43         bool contains(pit_type pit) const;
44         ///
45         ParagraphMetrics const & parMetrics(pit_type) const;
46         ///
47         std::pair<pit_type, ParagraphMetrics const *> first() const;
48         ///
49         std::pair<pit_type, ParagraphMetrics const *> last() const;
50
51         ///
52         Dimension const & dimension() const { return dim_; }
53         ///
54         Point const & origin() const { return origin_; }
55
56
57         /// compute text metrics.
58         bool metrics(MetricsInfo & mi, Dimension & dim, int min_width = 0);
59
60         ///
61         void newParMetricsDown();
62         ///
63         void newParMetricsUp();
64
65         /// The "nodraw" drawing stage for one single paragraph: set the
66         /// positions of the insets contained this paragraph in metrics
67         /// cache. Related to BufferView::updatePosCache.
68         void updatePosCache(pit_type pit) const;
69
70         /// Gets the fully instantiated font at a given position in a paragraph
71         /// Basically the same routine as Paragraph::getFont() in Paragraph.cpp.
72         /// The difference is that this one is used for displaying, and thus we
73         /// are allowed to make cosmetic improvements. For instance make footnotes
74         /// smaller. (Asger)
75         Font displayFont(pit_type pit, pos_type pos) const;
76
77         /// There are currently two font mechanisms in LyX:
78         /// 1. The font attributes in a lyxtext, and
79         /// 2. The inset-specific font properties, defined in an inset's
80         /// metrics() and draw() methods and handed down the inset chain through
81         /// the pi/mi parameters, and stored locally in a lyxtext in font_.
82         /// This is where the two are integrated in the final fully realized
83         /// font.
84         void applyOuterFont(Font &) const;
85
86         /// is this position in the paragraph right-to-left?
87         bool isRTL(CursorSlice const & sl, bool boundary) const;
88         /// is between pos-1 and pos an RTL<->LTR boundary?
89         bool isRTLBoundary(pit_type pit,
90           pos_type pos) const;
91         /// would be a RTL<->LTR boundary between pos and the given font?
92         bool isRTLBoundary(pit_type pit,
93           pos_type pos, Font const & font) const;
94
95
96         /// Rebreaks the given paragraph.
97         /// \retval true if a full screen redraw is needed.
98         /// \retval false if a single paragraph redraw is enough.
99         bool redoParagraph(pit_type const pit);
100         /// Clear cache of paragraph metrics
101         void clear() { par_metrics_.clear(); }
102         /// Is cache of paragraph metrics empty ?
103         bool empty() const { return par_metrics_.empty(); }
104
105         ///
106         int ascent() const { return dim_.asc; }
107         ///
108         int descent() const { return dim_.des; }
109         /// current text width.
110         int width() const { return dim_.wid; }
111         /// current text height.
112         int height() const { return dim_.height(); }
113
114         ///
115         int rightMargin(ParagraphMetrics const & pm) const;
116         int rightMargin(pit_type const pit) const;
117
118         ///
119         void draw(PainterInfo & pi, int x, int y) const;
120
121         void drawParagraph(PainterInfo & pi, pit_type pit, int x, int y) const;
122
123 private:
124         ///
125         ParagraphMetrics & parMetrics(pit_type, bool redo_paragraph);
126
127         /**
128          * Returns the left beginning of the text.
129          * This information cannot be taken from the layout object, because
130          * in LaTeX the beginning of the text fits in some cases
131          * (for example sections) exactly the label-width.
132          */
133         int leftMargin(pit_type pit, pos_type pos) const;
134         int leftMargin(pit_type pit) const;
135
136         /// the minimum space a manual label needs on the screen in pixels
137         int labelFill(Row const & row) const;
138
139         /// FIXME??
140         int labelEnd(pit_type const pit) const;
141
142         /// sets row.end to the pos value *after* which a row should break.
143         /// for example, the pos after which isNewLine(pos) == true
144         /// \return true when another row is required (after a newline)
145         bool breakRow(Row & row, int right_margin) const;
146
147         // Expand the alignment of row \param row in paragraph \param par
148         LyXAlignment getAlign(Paragraph const & par, Row const & row) const;
149         /** this calculates the specified parameters. needed when setting
150          * the cursor and when creating a visible row */
151         void computeRowMetrics(Row & row, int width) const;
152
153         /// Set the height of the row (without space above/below paragraph)
154         void setRowHeight(Row & row) const;
155         // Compute the space on top of a paragraph
156         int parTopSpacing(pit_type pit) const;
157         // Compute the space below a a paragraph
158         int parBottomSpacing(pit_type pit) const;
159
160         // Helper function for the other checkInsetHit method.
161         InsetList::InsetTable * checkInsetHit(pit_type pit, int x, int y);
162
163
164 // Temporary public:
165 public:
166         /// returns the position near the specified x-coordinate of the row.
167         /// x is an absolute screen coord, it is set to the real beginning
168         /// of this column. This takes in account horizontal cursor row scrolling.
169         pos_type getPosNearX(Row const & row, int & x, bool & boundary) const;
170
171         /// returns pos in given par at given x coord.
172         pos_type x2pos(pit_type pit, int row, int x) const;
173
174         // FIXME: is there a need for this?
175         //int pos2x(pit_type pit, pos_type pos) const;
176
177         /// returns the row near the specified y-coordinate in a given paragraph
178         /// (relative to the screen). If assert_in_view is true, it is made sure
179         /// that the row is on screen completely; this might change the given pit.
180         Row const & getPitAndRowNearY(int & y, pit_type & pit,
181                 bool assert_in_view, bool up);
182
183         /// returns the paragraph number closest to screen y-coordinate.
184         /// This method uses the BufferView CoordCache to locate the
185         /// paragraph. The y-coodinate is allowed to be off-screen and
186         /// the CoordCache will be automatically updated if needed. This is
187         /// the reason why we need a non const BufferView.
188         pit_type getPitNearY(int y);
189
190         /// sets cursor recursively descending into nested editable insets
191         /**
192         \return the inset pointer if x,y is covering that inset
193         \param x,y are absolute screen coordinates.
194         \param assert_in_view if true the cursor will be set on a row
195            that is completely visible
196         \param up whether we are going up or down (only used when
197            assert_in_view is true
198         \retval inset is null if the cursor is positioned over normal
199                text in the current Text object. Otherwise it is the inset
200                that the cursor points to, like for Inset::editXY.
201         */
202         /// FIXME: cleanup to use BufferView::getCoveringInset() and
203         /// setCursorFromCoordinates() instead of checkInsetHit().
204         Inset * editXY(Cursor & cur, int x, int y,
205                 bool assert_in_view = false, bool up = true);
206
207         /// sets cursor only within this Text.
208         /// x,y are screen coordinates
209         void setCursorFromCoordinates(Cursor & cur, int x, int y);
210
211         ///
212         int cursorX(CursorSlice const & cursor, bool boundary) const;
213         ///
214         int cursorY(CursorSlice const & cursor, bool boundary) const;
215
216         ///
217         bool cursorHome(Cursor & cur);
218         ///
219         bool cursorEnd(Cursor & cur);
220         ///
221         void deleteLineForward(Cursor & cur);
222
223         /// is this row the last in the text?
224         bool isLastRow(Row const & row) const;
225         /// is this row the first in the text?
226         bool isFirstRow(Row const & row) const;
227
228         /// Returns an inset if inset was hit, or 0 if not.
229         /// \warning This method is not recursive! It will return the
230         /// outermost inset within this Text.
231         /// \sa BufferView::getCoveringInset() to get the innermost inset.
232         Inset * checkInsetHit(int x, int y);
233
234         /// calculates the position of a completion popup
235         void completionPosAndDim(Cursor const & cur, int & x, int & y,
236                 Dimension & dim) const;
237
238 private:
239         friend class BufferView;
240
241         /// The BufferView owner.
242         BufferView * bv_;
243
244         /// The text contents (the model).
245         /// \todo FIXME: this should be const.
246         Text * text_;
247
248         /// A map from paragraph index number to paragraph metrics
249         typedef std::map<pit_type, ParagraphMetrics> ParMetricsCache;
250         ///
251         mutable ParMetricsCache par_metrics_;
252         Dimension dim_;
253         int max_width_;
254         mutable Point origin_;
255
256 // temporary public:
257 public:
258         /// our 'outermost' font.
259         /// This is handed down from the surrounding
260         /// inset through the pi/mi parameter (pi.base.font)
261         /// It is used in applyOuterFont() and setCharFont() for reasons
262         /// that are not clear... to hand hand the outermost language and
263         /// also for char style apparently.
264         Font font_;
265 };
266
267 /// return the default height of a row in pixels, considering font zoom
268 int defaultRowHeight();
269
270 } // namespace lyx
271
272 #endif // TEXT_METRICS_H