]> git.lyx.org Git - lyx.git/blob - src/rowpainter.h
Point fix, earlier forgotten
[lyx.git] / src / rowpainter.h
1 // -*- C++ -*-
2 /**
3  * \file rowpainter.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author various
8  * \author John Levon
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef ROWPAINTER_H
14 #define ROWPAINTER_H
15
16 class LyXText;
17 class BufferView;
18 class VSpace;
19
20 /// return the pixel height of a space marker before/after a par
21 int getLengthMarkerHeight(BufferView const & bv, VSpace const & vsp);
22
23 /// paint the rows of the main text, return last drawn y value
24 int paintText(BufferView & bv);
25
26 /// paint the rows of a text inset
27 void paintTextInset(BufferView & bv, LyXText & text, int x, int y);
28
29 #endif // ROWPAINTER_H