lyx_mirror/src/rowpainter.h
André Pönitz 8aff4a1530 slimmer row painter interface
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7272 a592a061-630c-0410-9148-cb99ea01b6c8
2003-07-14 17:50:00 +00:00

32 lines
715 B
C++

// -*- C++ -*-
/**
* \file rowpainter.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author various
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef ROWPAINTER_H
#define ROWPAINTER_H
#include <config.h>
#include "RowList.h"
class LyXText;
class BufferView;
class VSpace;
/// initialise painter and paint the row
void paintRows(BufferView const & bv, LyXText const & text,
RowList::iterator rit, int y_offset, int x_offset, int y);
/// return the pixel height of a space marker before/after a par
int getLengthMarkerHeight(BufferView const & bv, VSpace const & vsp);
#endif // ROWPAINTER_H