]> git.lyx.org Git - lyx.git/blob - src/rowpainter.h
mathed uglyfication
[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 PainterInfo;
19
20 /// paint the rows of the main text, return last drawn y value
21 int paintText(BufferView const & bv);
22
23 /// paint the rows of a text inset
24 void paintTextInset(LyXText const & text, PainterInfo & pi, int x, int y);
25
26 #endif // ROWPAINTER_H